This repository has been archived by the owner on Jan 29, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Publishing perf-test results for End2EndSimulation run.
- Loading branch information
1 parent
7cbbc38
commit 88f2d61
Showing
40 changed files
with
25,742 additions
and
0 deletions.
There are no files selected for viewing
1,070 changes: 1,070 additions & 0 deletions
1,070
2024-01-24/End2EndSimulation/07.45.31-30u-600i/index.html
Large diffs are not rendered by default.
Oops, something went wrong.
11 changes: 11 additions & 0 deletions
11
2024-01-24/End2EndSimulation/07.45.31-30u-600i/js/all_sessions.js
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
10 changes: 10 additions & 0 deletions
10
2024-01-24/End2EndSimulation/07.45.31-30u-600i/js/assertions.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"simulation": "simulations.End2EndSimulation", | ||
"simulationId": "end2endsimulation", | ||
"start": 1706081965664, | ||
"description": "", | ||
"scenarios": ["E2E Service Registry Simulation"], | ||
"assertions": [ | ||
|
||
] | ||
} |
3 changes: 3 additions & 0 deletions
3
2024-01-24/End2EndSimulation/07.45.31-30u-600i/js/assertions.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
<testsuite name="simulations.End2EndSimulation" tests="0" errors="0" failures="0" time="0"> | ||
|
||
</testsuite> |
7 changes: 7 additions & 0 deletions
7
2024-01-24/End2EndSimulation/07.45.31-30u-600i/js/bootstrap.min.js
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
139 changes: 139 additions & 0 deletions
139
2024-01-24/End2EndSimulation/07.45.31-30u-600i/js/gatling.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,139 @@ | ||
/* | ||
* Copyright 2011-2014 eBusiness Information, Groupe Excilys (www.ebusinessinformation.fr) | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
(function ($) { | ||
$.fn.expandable = function () { | ||
var scope = this; | ||
|
||
this.find('.expand-button:not([class*=hidden])').addClass('collapse').on('click', function () { | ||
var $this = $(this); | ||
|
||
if ($this.hasClass('expand')) | ||
$this.expand(scope); | ||
else | ||
$this.collapse(scope); | ||
}); | ||
|
||
this.find('.expand-all-button').on('click', function () { | ||
$(this).expandAll(scope); | ||
}); | ||
|
||
this.find('.collapse-all-button').on('click', function () { | ||
$(this).collapseAll(scope); | ||
}); | ||
|
||
this.collapseAll(this); | ||
|
||
return this; | ||
}; | ||
|
||
$.fn.expand = function (scope, recursive) { | ||
return this.each(function () { | ||
var $this = $(this); | ||
|
||
if (recursive) { | ||
scope.find('.child-of-' + $this.attr('id') + ' .expand-button.expand').expand(scope, true); | ||
scope.find('.child-of-' + $this.attr('id') + ' .expand-button.collapse').expand(scope, true); | ||
} | ||
|
||
if ($this.hasClass('expand')) { | ||
scope.find('.child-of-' + $this.attr('id')).toggle(true); | ||
$this.toggleClass('expand').toggleClass('collapse'); | ||
} | ||
}); | ||
}; | ||
|
||
$.fn.expandAll = function (scope) { | ||
$('.child-of-ROOT .expand-button.expand').expand(scope, true); | ||
$('.child-of-ROOT .expand-button.collapse').expand(scope, true); | ||
}; | ||
|
||
$.fn.collapse = function (scope) { | ||
return this.each(function () { | ||
var $this = $(this); | ||
|
||
scope.find('.child-of-' + $this.attr('id') + ' .expand-button.collapse').collapse(scope); | ||
scope.find('.child-of-' + $this.attr('id')).toggle(false); | ||
$this.toggleClass('expand').toggleClass('collapse'); | ||
}); | ||
}; | ||
|
||
$.fn.collapseAll = function (scope) { | ||
$('.child-of-ROOT .expand-button.collapse').collapse(scope); | ||
}; | ||
|
||
$.fn.sortable = function (target) { | ||
var table = this; | ||
|
||
this.find('thead .sortable').on('click', function () { | ||
var $this = $(this); | ||
|
||
if ($this.hasClass('sorted-down')) { | ||
var desc = false; | ||
var style = 'sorted-up'; | ||
} | ||
else { | ||
var desc = true; | ||
var style = 'sorted-down'; | ||
} | ||
|
||
$(target).sortTable($this.attr('id'), desc); | ||
|
||
table.find('thead .sortable').removeClass('sorted-up sorted-down'); | ||
$this.addClass(style); | ||
|
||
return false; | ||
}); | ||
|
||
return this; | ||
}; | ||
|
||
$.fn.sortTable = function (col, desc) { | ||
function getValue(line) { | ||
var cell = $(line).find('.' + col); | ||
|
||
if (cell.hasClass('value')) | ||
var value = cell.text(); | ||
else | ||
var value = cell.find('.value').text(); | ||
|
||
return parseInt(value); | ||
} | ||
|
||
function sortLines (lines, group) { | ||
var notErrorTable = col.search("error") == -1; | ||
var linesToSort = notErrorTable ? lines.filter('.child-of-' + group) : lines; | ||
|
||
var sortedLines = linesToSort.sort(function (a, b) { | ||
return desc ? getValue(b) - getValue(a): getValue(a) - getValue(b); | ||
}).toArray(); | ||
|
||
var result = []; | ||
$.each(sortedLines, function (i, line) { | ||
result.push(line); | ||
if (notErrorTable) | ||
result = result.concat(sortLines(lines, $(line).attr('id'))); | ||
}); | ||
|
||
return result; | ||
} | ||
|
||
this.find('tbody').append(sortLines(this.find('tbody tr').detach(), 'ROOT')); | ||
|
||
return this; | ||
}; | ||
})(jQuery); | ||
|
||
|
73 changes: 73 additions & 0 deletions
73
2024-01-24/End2EndSimulation/07.45.31-30u-600i/js/global_stats.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
{ | ||
"name": "Global Information", | ||
"numberOfRequests": { | ||
"total": 390, | ||
"ok": 0, | ||
"ko": 390 | ||
}, | ||
"minResponseTime": { | ||
"total": 13, | ||
"ok": 0, | ||
"ko": 13 | ||
}, | ||
"maxResponseTime": { | ||
"total": 92, | ||
"ok": 0, | ||
"ko": 92 | ||
}, | ||
"meanResponseTime": { | ||
"total": 24, | ||
"ok": 0, | ||
"ko": 24 | ||
}, | ||
"standardDeviation": { | ||
"total": 8, | ||
"ok": 0, | ||
"ko": 8 | ||
}, | ||
"percentiles1": { | ||
"total": 22, | ||
"ok": 0, | ||
"ko": 22 | ||
}, | ||
"percentiles2": { | ||
"total": 28, | ||
"ok": 0, | ||
"ko": 28 | ||
}, | ||
"percentiles3": { | ||
"total": 39, | ||
"ok": 0, | ||
"ko": 39 | ||
}, | ||
"percentiles4": { | ||
"total": 51, | ||
"ok": 0, | ||
"ko": 51 | ||
}, | ||
"group1": { | ||
"name": "t < 800 ms", | ||
"count": 0, | ||
"percentage": 0 | ||
}, | ||
"group2": { | ||
"name": "800 ms < t < 1200 ms", | ||
"count": 0, | ||
"percentage": 0 | ||
}, | ||
"group3": { | ||
"name": "t > 1200 ms", | ||
"count": 0, | ||
"percentage": 0 | ||
}, | ||
"group4": { | ||
"name": "failed", | ||
"count": 390, | ||
"percentage": 100 | ||
}, | ||
"meanNumberOfRequestsPerSecond": { | ||
"total": 1.1016949152542372, | ||
"ok": 0, | ||
"ko": 1.1016949152542372 | ||
} | ||
} |
Oops, something went wrong.