forked from Arquisoft/wiq_en3a
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
322 changed files
with
153,823 additions
and
0 deletions.
There are no files selected for viewing
1,159 changes: 1,159 additions & 0 deletions
1,159
gatewayservice/monitoring/grafana/provisioning/load_testing/10users-1cpu/index.html
Large diffs are not rendered by default.
Oops, something went wrong.
11 changes: 11 additions & 0 deletions
11
gatewayservice/monitoring/grafana/provisioning/load_testing/10users-1cpu/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.
3 changes: 3 additions & 0 deletions
3
gatewayservice/monitoring/grafana/provisioning/load_testing/10users-1cpu/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="wiq.RecordedSimulation" tests="0" errors="0" failures="0" time="0"> | ||
|
||
</testsuite> |
7 changes: 7 additions & 0 deletions
7
gatewayservice/monitoring/grafana/provisioning/load_testing/10users-1cpu/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.
26 changes: 26 additions & 0 deletions
26
gatewayservice/monitoring/grafana/provisioning/load_testing/10users-1cpu/js/ellipsis.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,26 @@ | ||
function parentId(name) { | ||
return "parent-" + name; | ||
} | ||
|
||
function isEllipsed(name) { | ||
const child = document.getElementById(name); | ||
const parent = document.getElementById(parentId(name)); | ||
const emptyData = parent.getAttribute("data-content") === ""; | ||
const hasOverflow = child.clientWidth < child.scrollWidth; | ||
|
||
if (hasOverflow) { | ||
if (emptyData) { | ||
parent.setAttribute("data-content", name); | ||
} | ||
} else { | ||
if (!emptyData) { | ||
parent.setAttribute("data-content", ""); | ||
} | ||
} | ||
} | ||
|
||
function ellipsedLabel ({ name, parentClass = "", childClass = "" }) { | ||
const child = "<span onmouseover='isEllipsed(\"" + name + "\")' id='" + name + "' class='ellipsed-name " + childClass + "'>" + name + "</span>"; | ||
|
||
return "<span class='" + parentClass + "' id='" + parentId(name) + "' data-toggle='popover' data-placement='right' data-container='body' data-content=''>" + child + "</span>"; | ||
} |
Oops, something went wrong.