-
Notifications
You must be signed in to change notification settings - Fork 923
/
Copy pathindex.html
1205 lines (1135 loc) · 94.6 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="shortcut icon" type="image/x-icon" href="style/favicon.ico"/>
<link href="style/style.css" rel="stylesheet" type="text/css" />
<link href="style/bootstrap.min.css" rel="stylesheet" type="text/css" />
<script src="js/jquery-3.5.1.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/gatling.js"></script>
<script src="js/menu.js"></script>
<script src="js/ellipsis.js"></script>
<script src="js/all_sessions.js"></script>
<script src="js/stats.js"></script>
<script src="js/highstock.js"></script>
<script src="js/highcharts-more.js"></script>
<script src="js/theme.js"></script>
<script src="js/unpack.js"></script>
<title>Gatling Stats - Global Information</title>
</head>
<body>
<script>
const storedTheme = localStorage.getItem('theme') || (window.matchMedia("(prefers-color-scheme: dark)").matches ? "dark" : "light");
if (storedTheme) document.documentElement.setAttribute('data-theme', storedTheme)
function toggleTheme() {
const currentTheme = document.documentElement.getAttribute("data-theme");
const targetTheme = currentTheme === "light" ? "dark" : "light";
document.documentElement.setAttribute('data-theme', targetTheme)
localStorage.setItem('theme', targetTheme);
};
</script>
<div class="app-container">
<div class="frise"></div>
<div class="head">
<div class="gatling-open-source">
<a class="gatling-logo gatling-logo-light" href="https://gatling.io" target="blank_" title="Gatling Home Page"><img alt="Gatling" src="style/logo-light.svg"/></a>
<a class="gatling-logo gatling-logo-dark" href="https://gatling.io" target="blank_" title="Gatling Home Page"><img alt="Gatling" src="style/logo-dark.svg"/></a>
<a class="gatling-documentation" href="https://gatling.io/docs/" target="_blank">Documentation</a>
</div>
<div class="nav spacer"></div>
<a class="enterprise" href="https://gatling.io/enterprise/next-step/" target="_blank"><strong>Try</strong>
<img class="logo-enterprise-light" alt="Gatling Enterprise" src="style/logo-enterprise-light.svg"/>
<img class="logo-enterprise-dark" alt="Gatling Enterprise" src="style/logo-enterprise-dark.svg"/>
</a>
<button id="theme-toggle" class="theme-toggle" type="button" onclick="toggleTheme()" aria-label="Toggle user interface mode">
<span class="toggle-dark"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-moon"><path d="M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z"></path></svg></span>
<span class="toggle-light"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-sun"><circle cx="12" cy="12" r="5"></circle><line x1="12" y1="1" x2="12" y2="3"></line><line x1="12" y1="21" x2="12" y2="23"></line><line x1="4.22" y1="4.22" x2="5.64" y2="5.64"></line><line x1="18.36" y1="18.36" x2="19.78" y2="19.78"></line><line x1="1" y1="12" x2="3" y2="12"></line><line x1="21" y1="12" x2="23" y2="12"></line><line x1="4.22" y1="19.78" x2="5.64" y2="18.36"></line><line x1="18.36" y1="5.64" x2="19.78" y2="4.22"></line></svg></span>
</button>
</div>
<div class="container details">
<div class="nav">
<ul></ul>
</div>
<div class="cadre">
<div class="content">
<div class="content-header">
<div class="onglet">
RinhaBackendCrebitosSimulation
</div>
<div class="sous-menu" id="sousMenu">
<div class="sous-menu-spacer">
<div class="item ouvert"><a href="index.html">Global</a></div>
<div class="item "><a id="details_link" href="#">Details</a></div>
</div>
</div>
</div>
<div class="content-in">
<div class="container-article">
<div class="article">
<div class="schema-container">
<div id="ranges" class="schema ranges">
</div>
<div class="schema polar">
<div id="container_number_of_requests"></div>
</div>
<div class="simulation-card">
<div class="simulation-version-information">
<span class="simulation-information-title">Gatling Version</span>
<span class="simulation-information-item">
<span class="simulation-information-label">Version: </span>
<span>3.10.3</span>
</span>
<span class="simulation-information-item">
<span class="simulation-information-label">Released: </span>
<span>2023-12-20</span>
</span>
</div>
<div id="simulation-information" class="simulation-version-information">
<span class="simulation-information-title">Run Information</span>
<div class="simulation-information-container">
<span class="simulation-information-item">
<span class="simulation-information-label">Date: </span>
<span>2024-03-11 03:38:20 GMT</span>
</span>
<span class="simulation-information-item">
<span class="simulation-information-label">Duration: </span>
<span>4m 4s </span>
</span>
<span class="simulation-tooltip simulation-information-item description" title="Description" data-content="Rinha de Backend - 2024/Q1: Crébito - g-otn">
<span class="simulation-information-label">Description: </span>
<span>Rinha de Backend - 2024/Q1: Crébito - g-otn</span>
</span>
</div>
</div>
</div>
</div>
<div id="statistics_table_container">
<div id="stats" class="statistics extensible-geant collapsed">
<div class="title">
<div id="statistics_title" class="title_base"><span class="title_base_stats">Stats</span><span class="expand-table">Fixed height</span><span id="toggle-stats" class="toggle-table"></span><span class="collapse-table">Full size</span></div>
<div class="right">
<button class="statistics-button expand-all-button">Expand all groups</button>
<button class="statistics-button collapse-all-button">Collapse all groups</button>
<button id="statistics_full_screen" class="statistics-button" onclick="openStatisticsTableModal()"><img alt="Fullscreen" src="style/fullscreen.svg"></button>
</div>
</div>
<div class="scrollable">
<table id="container_statistics_head" class="statistics-in extensible-geant">
<thead>
<tr>
<th rowspan="2" id="col-1" class="header sortable sorted-up"><span>Requests</span></th>
<th colspan="5" class="header"><span class="executions">Executions</span></th>
<th colspan="8" class="header"><span class="response-time">Response Time (ms)</span></th>
</tr>
<tr>
<th id="col-2" class="header sortable"><span>Total</span></th>
<th id="col-3" class="header sortable"><span>OK</span></th>
<th id="col-4" class="header sortable"><span>KO</span></th>
<th id="col-5" class="header sortable"><span>% KO</span></th>
<th id="col-6" class="header sortable"><span><abbr title="Count of events per second">Cnt/s</abbr></span></th>
<th id="col-7" class="header sortable"><span>Min</span></th>
<th id="col-8" class="header sortable"><span>50th pct</span></th>
<th id="col-9" class="header sortable"><span>75th pct</span></th>
<th id="col-10" class="header sortable"><span>95th pct</span></th>
<th id="col-11" class="header sortable"><span>99th pct</span></th>
<th id="col-12" class="header sortable"><span>Max</span></th>
<th id="col-13" class="header sortable"><span>Mean</span></th>
<th id="col-14" class="header sortable"><span><abbr title="Standard Deviation">Std Dev</abbr></span></th>
</tr>
</thead>
<tbody></tbody>
</table>
<table id="container_statistics_body" class="statistics-in extensible-geant">
<tbody></tbody>
</table>
</div>
</div>
</div>
<dialog id="statistics_table_modal" class="statistics-table-modal">
<div class="statistics-table-modal-header"><button class="button-modal" onclick="closeStatisticsTableModal()"><img alt="Close" src="style/close.svg"></button></div>
<div class="statistics-table-modal-container">
<div id="statistics_table_modal_content" class="statistics-table-modal-content"></div>
</div>
</dialog>
<script>
function openStatisticsTableModal () {
const statsTable = document.getElementById("stats");
const statsTableModal = document.getElementById("statistics_table_modal");
const fullScreenButton = document.getElementById("statistics_full_screen");
fullScreenButton.disabled = true;
if (typeof statsTableModal.showModal === "function") {
const statsTableModalContent = document.getElementById("statistics_table_modal_content");
statsTableModalContent.innerHTML = "";
statsTableModalContent.appendChild(statsTable);
statsTableModal.showModal();
statsTableModal.addEventListener("close", function () {
const container = document.getElementById("statistics_table_container");
container.appendChild(statsTable);
fullScreenButton.disabled = false;
});
} else {
const incompatibleBrowserVersionMessage = document.createElement("div");
incompatibleBrowserVersionMessage.innerText = "Sorry, the <dialog> API is not supported by this browser.";
statsTable.insertBefore(incompatibleBrowserVersionMessage, statsTable.children[0]);
}
}
function closeStatisticsTableModal () {
const statsTableModal = document.getElementById("statistics_table_modal");
statsTableModal.close();
}
</script>
<div class="statistics extensible-geant collapsed">
<div class="title">
Errors
</div>
<table id="container_errors" class="statistics-in extensible-geant">
<thead>
<tr>
<th id="error-col-1" class="header sortable"><span>Error</span></th>
<th id="error-col-2" class="header sortable"><span>Count</span></th>
<th id="error-col-3" class="header sortable"><span>Percentage</span></th>
</tr>
</thead>
<tbody>
<tr>
<td class="error-col-1 total ko">jmesPath(ultimas_transacoes[0].descricao).find.is(danada), but actually found devolve<span class="value" style="display:none">0</span></td>
<td class="value error-col-2 total ko">16</td>
<td class="value error-col-3 total ko">76.19 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">jmesPath(ultimas_transacoes[0].descricao).find.is(danada), but actually found validacao<span class="value" style="display:none">1</span></td>
<td class="value error-col-2 total ko">4</td>
<td class="value error-col-3 total ko">19.048 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">jmesPath(ultimas_transacoes[0].descricao).find.is(devolve), but actually found validacao<span class="value" style="display:none">2</span></td>
<td class="value error-col-2 total ko">1</td>
<td class="value error-col-3 total ko">4.762 %</td>
</tr>
</tbody>
</table>
</div>
<div class="schema geant">
<div id="active_users" class="geant"></div>
</div>
<div class="schema geant">
<div id="responsetimeDistributionContainer" class="geant"></div>
</div>
<div class="schema geant">
<div id="responsetimepercentilesovertimeokPercentilesContainer" class="geant"></div>
</div>
<div class="schema geant">
<div id="requests" class="geant"></div>
</div>
<div class="schema geant">
<div id="responses" class="geant"></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<script>
var pageStats = stats.stats;
$(document).ready(function() {
$('.simulation-tooltip').popover({trigger:'hover', placement:'left'});
setDetailsLinkUrl();
setGlobalMenu();
setActiveMenu();
fillStats(pageStats);
Highcharts.setOptions({
global: { useUTC: false }
});
var rangesChart = new Highcharts.Chart({
chart: {
renderTo: 'ranges',
marginRight: 100
},
credits: { enabled: false },
legend: { enabled: false },
title: { text: 'A title to let highcharts reserve the place for the title set later' },
xAxis: {
categories: [
pageStats.group1.htmlName,
pageStats.group2.htmlName,
pageStats.group3.htmlName,
pageStats.group4.htmlName
]
},
yAxis: {
title: { text: 'Number of Requests' },
reversedStacks: false
},
tooltip: {
formatter: function() {
var s;
if (this.point.name) { // the pie chart
s = ''+ this.point.name +': '+ this.y +'% requests';
} else {
s = ''+ this.y + ' requests';
}
return s;
}
},
plotOptions: {
series: {
stacking: 'normal',
shadow: true
}
},
series: [
{
type: 'column',
data: [{
color: '#68b65c',
y: pageStats.group1.count
},
{
color: '#FFDD00',
y: pageStats.group2.count
},
{
color: '#FFA900',
y: pageStats.group3.count
},
{
color: '#f15b4f',
y: pageStats.group4.count
}]
},
{
type: 'pie',
name: 'Percentages',
data: [
{
name: pageStats.group1.name,
y: pageStats.group1.percentage,
color: '#68b65c'
},
{
name: pageStats.group2.name,
y: pageStats.group2.percentage,
color: '#FFDD00'
},
{
name: pageStats.group3.name,
y: pageStats.group3.percentage,
color: '#FFA900'
},
{
name: pageStats.group4.name,
y: pageStats.group4.percentage,
color: '#f15b4f'
}
],
center: [345, 0],
size: 90,
showInLegend: false,
dataLabels: { enabled: false }
}
]
});
rangesChart.setTitle({
text: '<span class="chart_title">Response Time Ranges</span>',
useHTML: true
});
function numberOfRequestsDataForGroup(group) {
var data = {names: [], oks: [], kos: []};
$.each(group.contents, function(contentName, content) {
if (content.type == 'GROUP') {
var result = numberOfRequestsDataForGroup(content);
data.names = data.names.concat(result.names);
data.oks = data.oks.concat(result.oks);
data.kos = data.kos.concat(result.kos);
}
else if (content.type == 'REQUEST') {
data.names.push(content.path);
data.oks.push(parseInt(content.stats.numberOfRequests.ok));
data.kos.push(parseInt(content.stats.numberOfRequests.ko));
}
});
return data;
}
var numberOfRequestsData = numberOfRequestsDataForGroup(stats);
var tickInterval = Math.ceil(numberOfRequestsData.names.length / 1000);
new Highcharts.Chart({
chart: {
renderTo:'container_number_of_requests',
polar:true,
type:'column',
height:330
},
credits:{
enabled:false
},
title:{
text:'<span class="chart_title">Number of requests</span>',
useHTML: true,
widthAdjust:-20
},
xAxis:{
tickmarkPlacement:'on',
tickInterval: tickInterval,
categories:numberOfRequestsData.names,
labels:{ enabled:false }
},
yAxis:{
min:0,
reversedStacks: false
},
plotOptions:{
series:{
stacking:'normal',
groupPadding:0,
pointPlacement:'on',
shadow: true
}
},
legend: {
borderWidth: 0,
itemStyle: { fontWeight: "normal" },
symbolRadius: 0
},
series:[
{
name:'OK',
data:numberOfRequestsData.oks,
color:"#68b65c"
},
{
name:'KO',
data:numberOfRequestsData.kos,
color:"#f15b4f"
}
]
});
$('#container_exceptions').sortable('#container_exceptions');
function generateHtmlRow(request, level, index, parent, group) {
if (request.name == 'All Requests')
var url = 'index.html';
else
var url = request.pathFormatted + '.html';
if (group)
var expandButtonStyle = '';
else
var expandButtonStyle = ' hidden';
if (request.stats.numberOfRequests.total != 0)
var koPercent = (request.stats.numberOfRequests.ko * 100 / request.stats.numberOfRequests.total).toFixed(0) + '%';
else
var koPercent = '-'
return '<tr id="' + request.pathFormatted + '" data-parent=' + parent + '> \
<td class="total col-1"> \
<div class="expandable-container"> \
<span id="' + request.pathFormatted + '" style="margin-left: ' + (level * 10) + 'px;" class="expand-button' + expandButtonStyle + '"> </span> \
<a href="' + url +'" class="withTooltip">' + ellipsedLabel({ name: request.name, parentClass: "table-cell-tooltip" }) + '</a><span class="value" style="display:none;">' + index + '</span> \
</div> \
</td> \
<td class="value total col-2">' + request.stats.numberOfRequests.total + '</td> \
<td class="value ok col-3">' + request.stats.numberOfRequests.ok + '</td> \
<td class="value ko col-4">' + request.stats.numberOfRequests.ko + '</td> \
<td class="value ko col-5">' + koPercent + '</td> \
<td class="value total col-6">' + request.stats.meanNumberOfRequestsPerSecond.total + '</td> \
<td class="value total col-7">' + request.stats.minResponseTime.total + '</td> \
<td class="value total col-8">' + request.stats.percentiles1.total + '</td> \
<td class="value total col-9">' + request.stats.percentiles2.total + '</td> \
<td class="value total col-10">' + request.stats.percentiles3.total + '</td> \
<td class="value total col-11">' + request.stats.percentiles4.total + '</td> \
<td class="value total col-12">' + request.stats.maxResponseTime.total + '</td> \
<td class="value total col-13">' + request.stats.meanResponseTime.total + '</td> \
<td class="value total col-14">' + request.stats.standardDeviation.total + '</td> \
</tr>';
}
function generateHtmlRowsForGroup(group, level, index, parent) {
var buffer = '';
if (!parent)
parent = 'ROOT';
else {
buffer += generateHtmlRow(group, level - 1, index, parent, true);
index++;
parent = group.pathFormatted;
}
$.each(group.contents, function(contentName, content) {
if (content.type == 'GROUP') {
var result = generateHtmlRowsForGroup(content, level + 1, index, parent);
buffer += result.html;
index = result.index;
}
else if (content.type == 'REQUEST') {
buffer += generateHtmlRow(content, level, index, parent);
index++;
}
});
return { html: buffer, index: index };
}
$('#container_statistics_head tbody').append(generateHtmlRow(stats, 0, 0));
var lines = generateHtmlRowsForGroup(stats, 0, 0);
$('#container_statistics_body tbody').append(lines.html);
$('#container_statistics_head').sortable('#container_statistics_body');
$('.statistics').expandable();
if (lines.index < 30) {
$('#statistics_title span').attr('style', 'display: none;');
} else {
$('#statistics_title').addClass('title_collapsed');
$('#statistics_title').click(function() {
$('#toggle-stats').toggleClass("off");
$(this).toggleClass('title_collapsed').toggleClass('title_expanded');
$('#container_statistics_body').parent().toggleClass('scrollable').toggleClass('');
});
}
$('.table-cell-tooltip').popover({trigger:'hover'});
$('#container_errors').sortable('#container_errors');
allUsersData.yAxis = 0;
var allUsersChart = new Highcharts.StockChart({
chart: {
renderTo: 'active_users',
zoomType: 'x'
},
credits: { enabled: false },
legend: {
enabled: true,
floating: true,
align: 'right',
verticalAlign: 'top',
layout: 'vertical',
borderWidth: 0,
itemStyle: { fontWeight: "normal" },
symbolRadius: 0
},
title: { text: 'A title to let highcharts reserve the place for the title set later' },
navigator: {
maskInside: false
},
rangeSelector: {
buttonSpacing: 0,
buttonTheme: {
fill: '#CFC9C6',
padding: 1,
stroke: '#000000',
'stroke-width': 0.25,
style: {
color: '#000000',
fontWeight: 'bold',
},
states: {
stroke: '#000000',
'stroke-width': 0.25,
hover: {
fill: '#92918C',
style: { color: 'black' }
},
select: {
fill: '#FFA900',
style: { color: 'white' }
}
}
},
buttons : [
{
type : 'minute',
count : 1,
text : '1m'
}, {
type : 'minute',
count : 10,
text : '10m'
}, {
type : 'hour',
count : 1,
text : '1h'
}, {
type : 'all',
count : 1,
text : 'All'
}
],
selected : 3,
inputEnabled : false
},
xAxis: {
type: 'datetime',
ordinal: false,
maxZoom: 10000 // three days
},
yAxis: {
title: { text: 'Number of Active Users' },
opposite: false,
min: 0
},
series: [
{
color: '#5E7BE2',
name: 'créditos',
data: [
[1710128301000,0],[1710128302000,0],[1710128303000,0],[1710128304000,0],[1710128305000,0],[1710128306000,2],[1710128307000,2],[1710128308000,4],[1710128309000,4],[1710128310000,5],[1710128311000,6],[1710128312000,7],[1710128313000,8],[1710128314000,8],[1710128315000,10],[1710128316000,10],[1710128317000,12],[1710128318000,12],[1710128319000,14],[1710128320000,14],[1710128321000,15],[1710128322000,16],[1710128323000,17],[1710128324000,17],[1710128325000,19],[1710128326000,20],[1710128327000,20],[1710128328000,22],[1710128329000,22],[1710128330000,23],[1710128331000,25],[1710128332000,25],[1710128333000,26],[1710128334000,26],[1710128335000,28],[1710128336000,29],[1710128337000,30],[1710128338000,30],[1710128339000,32],[1710128340000,32],[1710128341000,33],[1710128342000,34],[1710128343000,35],[1710128344000,36],[1710128345000,37],[1710128346000,38],[1710128347000,39],[1710128348000,39],[1710128349000,41],[1710128350000,41],[1710128351000,43],[1710128352000,43],[1710128353000,44],[1710128354000,45],[1710128355000,46],[1710128356000,47],[1710128357000,48],[1710128358000,48],[1710128359000,50],[1710128360000,50],[1710128361000,52],[1710128362000,53],[1710128363000,54],[1710128364000,55],[1710128365000,57],[1710128366000,56],[1710128367000,57],[1710128368000,58],[1710128369000,59],[1710128370000,59],[1710128371000,61],[1710128372000,61],[1710128373000,63],[1710128374000,63],[1710128375000,64],[1710128376000,65],[1710128377000,66],[1710128378000,67],[1710128379000,68],[1710128380000,68],[1710128381000,70],[1710128382000,70],[1710128383000,72],[1710128384000,72],[1710128385000,73],[1710128386000,74],[1710128387000,75],[1710128388000,76],[1710128389000,77],[1710128390000,78],[1710128391000,79],[1710128392000,79],[1710128393000,81],[1710128394000,81],[1710128395000,82],[1710128396000,83],[1710128397000,85],[1710128398000,85],[1710128399000,86],[1710128400000,86],[1710128401000,88],[1710128402000,89],[1710128403000,89],[1710128404000,91],[1710128405000,91],[1710128406000,92],[1710128407000,94],[1710128408000,94],[1710128409000,95],[1710128410000,96],[1710128411000,97],[1710128412000,97],[1710128413000,99],[1710128414000,99],[1710128415000,101],[1710128416000,101],[1710128417000,103],[1710128418000,103],[1710128419000,104],[1710128420000,105],[1710128421000,107],[1710128422000,108],[1710128423000,107],[1710128424000,110],[1710128425000,111],[1710128426000,111],[1710128427000,111],[1710128428000,111],[1710128429000,111],[1710128430000,110],[1710128431000,111],[1710128432000,111],[1710128433000,111],[1710128434000,111],[1710128435000,111],[1710128436000,111],[1710128437000,111],[1710128438000,111],[1710128439000,111],[1710128440000,110],[1710128441000,111],[1710128442000,111],[1710128443000,111],[1710128444000,111],[1710128445000,111],[1710128446000,111],[1710128447000,111],[1710128448000,111],[1710128449000,110],[1710128450000,111],[1710128451000,111],[1710128452000,111],[1710128453000,110],[1710128454000,111],[1710128455000,111],[1710128456000,111],[1710128457000,111],[1710128458000,111],[1710128459000,111],[1710128460000,110],[1710128461000,111],[1710128462000,111],[1710128463000,111],[1710128464000,111],[1710128465000,111],[1710128466000,111],[1710128467000,110],[1710128468000,111],[1710128469000,111],[1710128470000,111],[1710128471000,111],[1710128472000,111],[1710128473000,111],[1710128474000,111],[1710128475000,111],[1710128476000,111],[1710128477000,111],[1710128478000,111],[1710128479000,111],[1710128480000,111],[1710128481000,111],[1710128482000,111],[1710128483000,111],[1710128484000,110],[1710128485000,111],[1710128486000,110],[1710128487000,111],[1710128488000,111],[1710128489000,111],[1710128490000,111],[1710128491000,111],[1710128492000,111],[1710128493000,111],[1710128494000,110],[1710128495000,111],[1710128496000,111],[1710128497000,111],[1710128498000,111],[1710128499000,110],[1710128500000,111],[1710128501000,111],[1710128502000,111],[1710128503000,111],[1710128504000,111],[1710128505000,111],[1710128506000,110],[1710128507000,111],[1710128508000,111],[1710128509000,111],[1710128510000,111],[1710128511000,111],[1710128512000,111],[1710128513000,111],[1710128514000,111],[1710128515000,111],[1710128516000,111],[1710128517000,111],[1710128518000,111],[1710128519000,110],[1710128520000,111],[1710128521000,111],[1710128522000,111],[1710128523000,111],[1710128524000,111],[1710128525000,110],[1710128526000,110],[1710128527000,111],[1710128528000,111],[1710128529000,111],[1710128530000,111],[1710128531000,111],[1710128532000,111],[1710128533000,111],[1710128534000,110],[1710128535000,111],[1710128536000,111],[1710128537000,111],[1710128538000,110],[1710128539000,111],[1710128540000,111],[1710128541000,111],[1710128542000,111],[1710128543000,110],[1710128544000,111],[1710128545000,108]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#68b65c',
name: 'extratos',
data: [
[1710128301000,0],[1710128302000,0],[1710128303000,0],[1710128304000,0],[1710128305000,1],[1710128306000,2],[1710128307000,1],[1710128308000,1],[1710128309000,1],[1710128310000,1],[1710128311000,2],[1710128312000,1],[1710128313000,2],[1710128314000,2],[1710128315000,1],[1710128316000,2],[1710128317000,2],[1710128318000,2],[1710128319000,3],[1710128320000,2],[1710128321000,2],[1710128322000,2],[1710128323000,3],[1710128324000,2],[1710128325000,3],[1710128326000,2],[1710128327000,3],[1710128328000,2],[1710128329000,3],[1710128330000,3],[1710128331000,3],[1710128332000,3],[1710128333000,3],[1710128334000,3],[1710128335000,3],[1710128336000,4],[1710128337000,3],[1710128338000,3],[1710128339000,4],[1710128340000,3],[1710128341000,4],[1710128342000,4],[1710128343000,4],[1710128344000,4],[1710128345000,4],[1710128346000,4],[1710128347000,4],[1710128348000,4],[1710128349000,4],[1710128350000,4],[1710128351000,5],[1710128352000,4],[1710128353000,5],[1710128354000,5],[1710128355000,4],[1710128356000,5],[1710128357000,5],[1710128358000,5],[1710128359000,5],[1710128360000,5],[1710128361000,5],[1710128362000,5],[1710128363000,6],[1710128364000,5],[1710128365000,6],[1710128366000,5],[1710128367000,6],[1710128368000,5],[1710128369000,6],[1710128370000,6],[1710128371000,6],[1710128372000,6],[1710128373000,6],[1710128374000,6],[1710128375000,6],[1710128376000,7],[1710128377000,6],[1710128378000,6],[1710128379000,7],[1710128380000,6],[1710128381000,7],[1710128382000,7],[1710128383000,7],[1710128384000,7],[1710128385000,7],[1710128386000,7],[1710128387000,7],[1710128388000,7],[1710128389000,7],[1710128390000,7],[1710128391000,8],[1710128392000,7],[1710128393000,8],[1710128394000,8],[1710128395000,7],[1710128396000,8],[1710128397000,8],[1710128398000,8],[1710128399000,8],[1710128400000,8],[1710128401000,8],[1710128402000,8],[1710128403000,9],[1710128404000,8],[1710128405000,9],[1710128406000,8],[1710128407000,9],[1710128408000,8],[1710128409000,9],[1710128410000,9],[1710128411000,9],[1710128412000,9],[1710128413000,9],[1710128414000,9],[1710128415000,9],[1710128416000,10],[1710128417000,9],[1710128418000,9],[1710128419000,10],[1710128420000,9],[1710128421000,10],[1710128422000,10],[1710128423000,10],[1710128424000,10],[1710128425000,10],[1710128426000,10],[1710128427000,10],[1710128428000,10],[1710128429000,10],[1710128430000,10],[1710128431000,10],[1710128432000,10],[1710128433000,10],[1710128434000,10],[1710128435000,10],[1710128436000,10],[1710128437000,10],[1710128438000,10],[1710128439000,10],[1710128440000,10],[1710128441000,10],[1710128442000,10],[1710128443000,10],[1710128444000,10],[1710128445000,10],[1710128446000,10],[1710128447000,10],[1710128448000,10],[1710128449000,10],[1710128450000,10],[1710128451000,10],[1710128452000,10],[1710128453000,10],[1710128454000,10],[1710128455000,10],[1710128456000,10],[1710128457000,10],[1710128458000,10],[1710128459000,10],[1710128460000,10],[1710128461000,10],[1710128462000,10],[1710128463000,10],[1710128464000,10],[1710128465000,10],[1710128466000,10],[1710128467000,10],[1710128468000,10],[1710128469000,10],[1710128470000,10],[1710128471000,10],[1710128472000,10],[1710128473000,10],[1710128474000,10],[1710128475000,10],[1710128476000,10],[1710128477000,10],[1710128478000,10],[1710128479000,10],[1710128480000,10],[1710128481000,10],[1710128482000,10],[1710128483000,10],[1710128484000,10],[1710128485000,10],[1710128486000,10],[1710128487000,10],[1710128488000,10],[1710128489000,10],[1710128490000,10],[1710128491000,10],[1710128492000,10],[1710128493000,10],[1710128494000,10],[1710128495000,10],[1710128496000,10],[1710128497000,10],[1710128498000,10],[1710128499000,10],[1710128500000,10],[1710128501000,10],[1710128502000,10],[1710128503000,10],[1710128504000,10],[1710128505000,10],[1710128506000,10],[1710128507000,10],[1710128508000,10],[1710128509000,10],[1710128510000,10],[1710128511000,10],[1710128512000,10],[1710128513000,10],[1710128514000,10],[1710128515000,10],[1710128516000,10],[1710128517000,10],[1710128518000,10],[1710128519000,10],[1710128520000,10],[1710128521000,10],[1710128522000,10],[1710128523000,10],[1710128524000,10],[1710128525000,10],[1710128526000,10],[1710128527000,10],[1710128528000,10],[1710128529000,10],[1710128530000,10],[1710128531000,10],[1710128532000,10],[1710128533000,10],[1710128534000,10],[1710128535000,10],[1710128536000,10],[1710128537000,10],[1710128538000,10],[1710128539000,10],[1710128540000,10],[1710128541000,10],[1710128542000,10],[1710128543000,10],[1710128544000,10],[1710128545000,9]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#f15b4f',
name: 'débitos',
data: [
[1710128301000,0],[1710128302000,0],[1710128303000,0],[1710128304000,0],[1710128305000,1],[1710128306000,2],[1710128307000,4],[1710128308000,6],[1710128309000,7],[1710128310000,9],[1710128311000,11],[1710128312000,13],[1710128313000,15],[1710128314000,16],[1710128315000,19],[1710128316000,20],[1710128317000,22],[1710128318000,24],[1710128319000,25],[1710128320000,28],[1710128321000,29],[1710128322000,31],[1710128323000,33],[1710128324000,35],[1710128325000,37],[1710128326000,38],[1710128327000,40],[1710128328000,42],[1710128329000,44],[1710128330000,46],[1710128331000,47],[1710128332000,50],[1710128333000,51],[1710128334000,54],[1710128335000,56],[1710128336000,57],[1710128337000,59],[1710128338000,60],[1710128339000,62],[1710128340000,64],[1710128341000,66],[1710128342000,68],[1710128343000,69],[1710128344000,71],[1710128345000,74],[1710128346000,74],[1710128347000,77],[1710128348000,79],[1710128349000,80],[1710128350000,82],[1710128351000,84],[1710128352000,86],[1710128353000,88],[1710128354000,89],[1710128355000,92],[1710128356000,93],[1710128357000,95],[1710128358000,97],[1710128359000,98],[1710128360000,101],[1710128361000,102],[1710128362000,105],[1710128363000,107],[1710128364000,109],[1710128365000,111],[1710128366000,112],[1710128367000,113],[1710128368000,115],[1710128369000,117],[1710128370000,119],[1710128371000,120],[1710128372000,123],[1710128373000,124],[1710128374000,126],[1710128375000,128],[1710128376000,129],[1710128377000,132],[1710128378000,133],[1710128379000,135],[1710128380000,137],[1710128381000,139],[1710128382000,141],[1710128383000,142],[1710128384000,144],[1710128385000,147],[1710128386000,147],[1710128387000,150],[1710128388000,152],[1710128389000,153],[1710128390000,155],[1710128391000,158],[1710128392000,160],[1710128393000,162],[1710128394000,163],[1710128395000,166],[1710128396000,167],[1710128397000,168],[1710128398000,170],[1710128399000,171],[1710128400000,175],[1710128401000,175],[1710128402000,177],[1710128403000,179],[1710128404000,181],[1710128405000,183],[1710128406000,184],[1710128407000,186],[1710128408000,188],[1710128409000,190],[1710128410000,192],[1710128411000,193],[1710128412000,196],[1710128413000,197],[1710128414000,199],[1710128415000,201],[1710128416000,202],[1710128417000,205],[1710128418000,206],[1710128419000,208],[1710128420000,211],[1710128421000,212],[1710128422000,214],[1710128423000,216],[1710128424000,218],[1710128425000,221],[1710128426000,221],[1710128427000,221],[1710128428000,221],[1710128429000,220],[1710128430000,221],[1710128431000,221],[1710128432000,221],[1710128433000,221],[1710128434000,221],[1710128435000,221],[1710128436000,221],[1710128437000,220],[1710128438000,220],[1710128439000,221],[1710128440000,221],[1710128441000,221],[1710128442000,221],[1710128443000,221],[1710128444000,221],[1710128445000,221],[1710128446000,220],[1710128447000,221],[1710128448000,220],[1710128449000,221],[1710128450000,221],[1710128451000,221],[1710128452000,220],[1710128453000,221],[1710128454000,221],[1710128455000,221],[1710128456000,221],[1710128457000,221],[1710128458000,221],[1710128459000,221],[1710128460000,221],[1710128461000,221],[1710128462000,221],[1710128463000,221],[1710128464000,221],[1710128465000,220],[1710128466000,221],[1710128467000,220],[1710128468000,221],[1710128469000,221],[1710128470000,221],[1710128471000,221],[1710128472000,220],[1710128473000,220],[1710128474000,221],[1710128475000,220],[1710128476000,221],[1710128477000,220],[1710128478000,221],[1710128479000,221],[1710128480000,221],[1710128481000,221],[1710128482000,221],[1710128483000,220],[1710128484000,220],[1710128485000,221],[1710128486000,221],[1710128487000,221],[1710128488000,220],[1710128489000,221],[1710128490000,221],[1710128491000,221],[1710128492000,221],[1710128493000,221],[1710128494000,221],[1710128495000,221],[1710128496000,221],[1710128497000,221],[1710128498000,221],[1710128499000,220],[1710128500000,221],[1710128501000,221],[1710128502000,221],[1710128503000,221],[1710128504000,221],[1710128505000,221],[1710128506000,221],[1710128507000,221],[1710128508000,221],[1710128509000,221],[1710128510000,221],[1710128511000,221],[1710128512000,220],[1710128513000,221],[1710128514000,221],[1710128515000,221],[1710128516000,221],[1710128517000,221],[1710128518000,221],[1710128519000,221],[1710128520000,221],[1710128521000,221],[1710128522000,220],[1710128523000,221],[1710128524000,221],[1710128525000,220],[1710128526000,221],[1710128527000,221],[1710128528000,221],[1710128529000,221],[1710128530000,221],[1710128531000,221],[1710128532000,221],[1710128533000,221],[1710128534000,221],[1710128535000,221],[1710128536000,221],[1710128537000,221],[1710128538000,221],[1710128539000,221],[1710128540000,221],[1710128541000,221],[1710128542000,220],[1710128543000,221],[1710128544000,221],[1710128545000,216]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FFDD00',
name: 'validações',
data: [
[1710128301000,0],[1710128302000,0],[1710128303000,0],[1710128304000,5],[1710128305000,5],[1710128306000,0],[1710128307000,0],[1710128308000,0],[1710128309000,0],[1710128310000,0],[1710128311000,0],[1710128312000,0],[1710128313000,0],[1710128314000,0],[1710128315000,0],[1710128316000,0],[1710128317000,0],[1710128318000,0],[1710128319000,0],[1710128320000,0],[1710128321000,0],[1710128322000,0],[1710128323000,0],[1710128324000,0],[1710128325000,0],[1710128326000,0],[1710128327000,0],[1710128328000,0],[1710128329000,0],[1710128330000,0],[1710128331000,0],[1710128332000,0],[1710128333000,0],[1710128334000,0],[1710128335000,0],[1710128336000,0],[1710128337000,0],[1710128338000,0],[1710128339000,0],[1710128340000,0],[1710128341000,0],[1710128342000,0],[1710128343000,0],[1710128344000,0],[1710128345000,0],[1710128346000,0],[1710128347000,0],[1710128348000,0],[1710128349000,0],[1710128350000,0],[1710128351000,0],[1710128352000,0],[1710128353000,0],[1710128354000,0],[1710128355000,0],[1710128356000,0],[1710128357000,0],[1710128358000,0],[1710128359000,0],[1710128360000,0],[1710128361000,0],[1710128362000,0],[1710128363000,0],[1710128364000,0],[1710128365000,0],[1710128366000,0],[1710128367000,0],[1710128368000,0],[1710128369000,0],[1710128370000,0],[1710128371000,0],[1710128372000,0],[1710128373000,0],[1710128374000,0],[1710128375000,0],[1710128376000,0],[1710128377000,0],[1710128378000,0],[1710128379000,0],[1710128380000,0],[1710128381000,0],[1710128382000,0],[1710128383000,0],[1710128384000,0],[1710128385000,0],[1710128386000,0],[1710128387000,0],[1710128388000,0],[1710128389000,0],[1710128390000,0],[1710128391000,0],[1710128392000,0],[1710128393000,0],[1710128394000,0],[1710128395000,0],[1710128396000,0],[1710128397000,0],[1710128398000,0],[1710128399000,0],[1710128400000,0],[1710128401000,0],[1710128402000,0],[1710128403000,0],[1710128404000,0],[1710128405000,0],[1710128406000,0],[1710128407000,0],[1710128408000,0],[1710128409000,0],[1710128410000,0],[1710128411000,0],[1710128412000,0],[1710128413000,0],[1710128414000,0],[1710128415000,0],[1710128416000,0],[1710128417000,0],[1710128418000,0],[1710128419000,0],[1710128420000,0],[1710128421000,0],[1710128422000,0],[1710128423000,0],[1710128424000,0],[1710128425000,0],[1710128426000,0],[1710128427000,0],[1710128428000,0],[1710128429000,0],[1710128430000,0],[1710128431000,0],[1710128432000,0],[1710128433000,0],[1710128434000,0],[1710128435000,0],[1710128436000,0],[1710128437000,0],[1710128438000,0],[1710128439000,0],[1710128440000,0],[1710128441000,0],[1710128442000,0],[1710128443000,0],[1710128444000,0],[1710128445000,0],[1710128446000,0],[1710128447000,0],[1710128448000,0],[1710128449000,0],[1710128450000,0],[1710128451000,0],[1710128452000,0],[1710128453000,0],[1710128454000,0],[1710128455000,0],[1710128456000,0],[1710128457000,0],[1710128458000,0],[1710128459000,0],[1710128460000,0],[1710128461000,0],[1710128462000,0],[1710128463000,0],[1710128464000,0],[1710128465000,0],[1710128466000,0],[1710128467000,0],[1710128468000,0],[1710128469000,0],[1710128470000,0],[1710128471000,0],[1710128472000,0],[1710128473000,0],[1710128474000,0],[1710128475000,0],[1710128476000,0],[1710128477000,0],[1710128478000,0],[1710128479000,0],[1710128480000,0],[1710128481000,0],[1710128482000,0],[1710128483000,0],[1710128484000,0],[1710128485000,0],[1710128486000,0],[1710128487000,0],[1710128488000,0],[1710128489000,0],[1710128490000,0],[1710128491000,0],[1710128492000,0],[1710128493000,0],[1710128494000,0],[1710128495000,0],[1710128496000,0],[1710128497000,0],[1710128498000,0],[1710128499000,0],[1710128500000,0],[1710128501000,0],[1710128502000,0],[1710128503000,0],[1710128504000,0],[1710128505000,0],[1710128506000,0],[1710128507000,0],[1710128508000,0],[1710128509000,0],[1710128510000,0],[1710128511000,0],[1710128512000,0],[1710128513000,0],[1710128514000,0],[1710128515000,0],[1710128516000,0],[1710128517000,0],[1710128518000,0],[1710128519000,0],[1710128520000,0],[1710128521000,0],[1710128522000,0],[1710128523000,0],[1710128524000,0],[1710128525000,0],[1710128526000,0],[1710128527000,0],[1710128528000,0],[1710128529000,0],[1710128530000,0],[1710128531000,0],[1710128532000,0],[1710128533000,0],[1710128534000,0],[1710128535000,0],[1710128536000,0],[1710128537000,0],[1710128538000,0],[1710128539000,0],[1710128540000,0],[1710128541000,0],[1710128542000,0],[1710128543000,0],[1710128544000,0],[1710128545000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00D5FF',
name: 'validação HTTP 404',
data: [
[1710128301000,0],[1710128302000,0],[1710128303000,0],[1710128304000,1],[1710128305000,0],[1710128306000,0],[1710128307000,0],[1710128308000,0],[1710128309000,0],[1710128310000,0],[1710128311000,0],[1710128312000,0],[1710128313000,0],[1710128314000,0],[1710128315000,0],[1710128316000,0],[1710128317000,0],[1710128318000,0],[1710128319000,0],[1710128320000,0],[1710128321000,0],[1710128322000,0],[1710128323000,0],[1710128324000,0],[1710128325000,0],[1710128326000,0],[1710128327000,0],[1710128328000,0],[1710128329000,0],[1710128330000,0],[1710128331000,0],[1710128332000,0],[1710128333000,0],[1710128334000,0],[1710128335000,0],[1710128336000,0],[1710128337000,0],[1710128338000,0],[1710128339000,0],[1710128340000,0],[1710128341000,0],[1710128342000,0],[1710128343000,0],[1710128344000,0],[1710128345000,0],[1710128346000,0],[1710128347000,0],[1710128348000,0],[1710128349000,0],[1710128350000,0],[1710128351000,0],[1710128352000,0],[1710128353000,0],[1710128354000,0],[1710128355000,0],[1710128356000,0],[1710128357000,0],[1710128358000,0],[1710128359000,0],[1710128360000,0],[1710128361000,0],[1710128362000,0],[1710128363000,0],[1710128364000,0],[1710128365000,0],[1710128366000,0],[1710128367000,0],[1710128368000,0],[1710128369000,0],[1710128370000,0],[1710128371000,0],[1710128372000,0],[1710128373000,0],[1710128374000,0],[1710128375000,0],[1710128376000,0],[1710128377000,0],[1710128378000,0],[1710128379000,0],[1710128380000,0],[1710128381000,0],[1710128382000,0],[1710128383000,0],[1710128384000,0],[1710128385000,0],[1710128386000,0],[1710128387000,0],[1710128388000,0],[1710128389000,0],[1710128390000,0],[1710128391000,0],[1710128392000,0],[1710128393000,0],[1710128394000,0],[1710128395000,0],[1710128396000,0],[1710128397000,0],[1710128398000,0],[1710128399000,0],[1710128400000,0],[1710128401000,0],[1710128402000,0],[1710128403000,0],[1710128404000,0],[1710128405000,0],[1710128406000,0],[1710128407000,0],[1710128408000,0],[1710128409000,0],[1710128410000,0],[1710128411000,0],[1710128412000,0],[1710128413000,0],[1710128414000,0],[1710128415000,0],[1710128416000,0],[1710128417000,0],[1710128418000,0],[1710128419000,0],[1710128420000,0],[1710128421000,0],[1710128422000,0],[1710128423000,0],[1710128424000,0],[1710128425000,0],[1710128426000,0],[1710128427000,0],[1710128428000,0],[1710128429000,0],[1710128430000,0],[1710128431000,0],[1710128432000,0],[1710128433000,0],[1710128434000,0],[1710128435000,0],[1710128436000,0],[1710128437000,0],[1710128438000,0],[1710128439000,0],[1710128440000,0],[1710128441000,0],[1710128442000,0],[1710128443000,0],[1710128444000,0],[1710128445000,0],[1710128446000,0],[1710128447000,0],[1710128448000,0],[1710128449000,0],[1710128450000,0],[1710128451000,0],[1710128452000,0],[1710128453000,0],[1710128454000,0],[1710128455000,0],[1710128456000,0],[1710128457000,0],[1710128458000,0],[1710128459000,0],[1710128460000,0],[1710128461000,0],[1710128462000,0],[1710128463000,0],[1710128464000,0],[1710128465000,0],[1710128466000,0],[1710128467000,0],[1710128468000,0],[1710128469000,0],[1710128470000,0],[1710128471000,0],[1710128472000,0],[1710128473000,0],[1710128474000,0],[1710128475000,0],[1710128476000,0],[1710128477000,0],[1710128478000,0],[1710128479000,0],[1710128480000,0],[1710128481000,0],[1710128482000,0],[1710128483000,0],[1710128484000,0],[1710128485000,0],[1710128486000,0],[1710128487000,0],[1710128488000,0],[1710128489000,0],[1710128490000,0],[1710128491000,0],[1710128492000,0],[1710128493000,0],[1710128494000,0],[1710128495000,0],[1710128496000,0],[1710128497000,0],[1710128498000,0],[1710128499000,0],[1710128500000,0],[1710128501000,0],[1710128502000,0],[1710128503000,0],[1710128504000,0],[1710128505000,0],[1710128506000,0],[1710128507000,0],[1710128508000,0],[1710128509000,0],[1710128510000,0],[1710128511000,0],[1710128512000,0],[1710128513000,0],[1710128514000,0],[1710128515000,0],[1710128516000,0],[1710128517000,0],[1710128518000,0],[1710128519000,0],[1710128520000,0],[1710128521000,0],[1710128522000,0],[1710128523000,0],[1710128524000,0],[1710128525000,0],[1710128526000,0],[1710128527000,0],[1710128528000,0],[1710128529000,0],[1710128530000,0],[1710128531000,0],[1710128532000,0],[1710128533000,0],[1710128534000,0],[1710128535000,0],[1710128536000,0],[1710128537000,0],[1710128538000,0],[1710128539000,0],[1710128540000,0],[1710128541000,0],[1710128542000,0],[1710128543000,0],[1710128544000,0],[1710128545000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00FF00',
name: 'validação concorrência saldo - 0',
data: [
[1710128301000,0],[1710128302000,0],[1710128303000,1],[1710128304000,0],[1710128305000,0],[1710128306000,0],[1710128307000,0],[1710128308000,0],[1710128309000,0],[1710128310000,0],[1710128311000,0],[1710128312000,0],[1710128313000,0],[1710128314000,0],[1710128315000,0],[1710128316000,0],[1710128317000,0],[1710128318000,0],[1710128319000,0],[1710128320000,0],[1710128321000,0],[1710128322000,0],[1710128323000,0],[1710128324000,0],[1710128325000,0],[1710128326000,0],[1710128327000,0],[1710128328000,0],[1710128329000,0],[1710128330000,0],[1710128331000,0],[1710128332000,0],[1710128333000,0],[1710128334000,0],[1710128335000,0],[1710128336000,0],[1710128337000,0],[1710128338000,0],[1710128339000,0],[1710128340000,0],[1710128341000,0],[1710128342000,0],[1710128343000,0],[1710128344000,0],[1710128345000,0],[1710128346000,0],[1710128347000,0],[1710128348000,0],[1710128349000,0],[1710128350000,0],[1710128351000,0],[1710128352000,0],[1710128353000,0],[1710128354000,0],[1710128355000,0],[1710128356000,0],[1710128357000,0],[1710128358000,0],[1710128359000,0],[1710128360000,0],[1710128361000,0],[1710128362000,0],[1710128363000,0],[1710128364000,0],[1710128365000,0],[1710128366000,0],[1710128367000,0],[1710128368000,0],[1710128369000,0],[1710128370000,0],[1710128371000,0],[1710128372000,0],[1710128373000,0],[1710128374000,0],[1710128375000,0],[1710128376000,0],[1710128377000,0],[1710128378000,0],[1710128379000,0],[1710128380000,0],[1710128381000,0],[1710128382000,0],[1710128383000,0],[1710128384000,0],[1710128385000,0],[1710128386000,0],[1710128387000,0],[1710128388000,0],[1710128389000,0],[1710128390000,0],[1710128391000,0],[1710128392000,0],[1710128393000,0],[1710128394000,0],[1710128395000,0],[1710128396000,0],[1710128397000,0],[1710128398000,0],[1710128399000,0],[1710128400000,0],[1710128401000,0],[1710128402000,0],[1710128403000,0],[1710128404000,0],[1710128405000,0],[1710128406000,0],[1710128407000,0],[1710128408000,0],[1710128409000,0],[1710128410000,0],[1710128411000,0],[1710128412000,0],[1710128413000,0],[1710128414000,0],[1710128415000,0],[1710128416000,0],[1710128417000,0],[1710128418000,0],[1710128419000,0],[1710128420000,0],[1710128421000,0],[1710128422000,0],[1710128423000,0],[1710128424000,0],[1710128425000,0],[1710128426000,0],[1710128427000,0],[1710128428000,0],[1710128429000,0],[1710128430000,0],[1710128431000,0],[1710128432000,0],[1710128433000,0],[1710128434000,0],[1710128435000,0],[1710128436000,0],[1710128437000,0],[1710128438000,0],[1710128439000,0],[1710128440000,0],[1710128441000,0],[1710128442000,0],[1710128443000,0],[1710128444000,0],[1710128445000,0],[1710128446000,0],[1710128447000,0],[1710128448000,0],[1710128449000,0],[1710128450000,0],[1710128451000,0],[1710128452000,0],[1710128453000,0],[1710128454000,0],[1710128455000,0],[1710128456000,0],[1710128457000,0],[1710128458000,0],[1710128459000,0],[1710128460000,0],[1710128461000,0],[1710128462000,0],[1710128463000,0],[1710128464000,0],[1710128465000,0],[1710128466000,0],[1710128467000,0],[1710128468000,0],[1710128469000,0],[1710128470000,0],[1710128471000,0],[1710128472000,0],[1710128473000,0],[1710128474000,0],[1710128475000,0],[1710128476000,0],[1710128477000,0],[1710128478000,0],[1710128479000,0],[1710128480000,0],[1710128481000,0],[1710128482000,0],[1710128483000,0],[1710128484000,0],[1710128485000,0],[1710128486000,0],[1710128487000,0],[1710128488000,0],[1710128489000,0],[1710128490000,0],[1710128491000,0],[1710128492000,0],[1710128493000,0],[1710128494000,0],[1710128495000,0],[1710128496000,0],[1710128497000,0],[1710128498000,0],[1710128499000,0],[1710128500000,0],[1710128501000,0],[1710128502000,0],[1710128503000,0],[1710128504000,0],[1710128505000,0],[1710128506000,0],[1710128507000,0],[1710128508000,0],[1710128509000,0],[1710128510000,0],[1710128511000,0],[1710128512000,0],[1710128513000,0],[1710128514000,0],[1710128515000,0],[1710128516000,0],[1710128517000,0],[1710128518000,0],[1710128519000,0],[1710128520000,0],[1710128521000,0],[1710128522000,0],[1710128523000,0],[1710128524000,0],[1710128525000,0],[1710128526000,0],[1710128527000,0],[1710128528000,0],[1710128529000,0],[1710128530000,0],[1710128531000,0],[1710128532000,0],[1710128533000,0],[1710128534000,0],[1710128535000,0],[1710128536000,0],[1710128537000,0],[1710128538000,0],[1710128539000,0],[1710128540000,0],[1710128541000,0],[1710128542000,0],[1710128543000,0],[1710128544000,0],[1710128545000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#9D00FF',
name: 'validação concorrência transações - c',
data: [
[1710128301000,0],[1710128302000,25],[1710128303000,23],[1710128304000,0],[1710128305000,0],[1710128306000,0],[1710128307000,0],[1710128308000,0],[1710128309000,0],[1710128310000,0],[1710128311000,0],[1710128312000,0],[1710128313000,0],[1710128314000,0],[1710128315000,0],[1710128316000,0],[1710128317000,0],[1710128318000,0],[1710128319000,0],[1710128320000,0],[1710128321000,0],[1710128322000,0],[1710128323000,0],[1710128324000,0],[1710128325000,0],[1710128326000,0],[1710128327000,0],[1710128328000,0],[1710128329000,0],[1710128330000,0],[1710128331000,0],[1710128332000,0],[1710128333000,0],[1710128334000,0],[1710128335000,0],[1710128336000,0],[1710128337000,0],[1710128338000,0],[1710128339000,0],[1710128340000,0],[1710128341000,0],[1710128342000,0],[1710128343000,0],[1710128344000,0],[1710128345000,0],[1710128346000,0],[1710128347000,0],[1710128348000,0],[1710128349000,0],[1710128350000,0],[1710128351000,0],[1710128352000,0],[1710128353000,0],[1710128354000,0],[1710128355000,0],[1710128356000,0],[1710128357000,0],[1710128358000,0],[1710128359000,0],[1710128360000,0],[1710128361000,0],[1710128362000,0],[1710128363000,0],[1710128364000,0],[1710128365000,0],[1710128366000,0],[1710128367000,0],[1710128368000,0],[1710128369000,0],[1710128370000,0],[1710128371000,0],[1710128372000,0],[1710128373000,0],[1710128374000,0],[1710128375000,0],[1710128376000,0],[1710128377000,0],[1710128378000,0],[1710128379000,0],[1710128380000,0],[1710128381000,0],[1710128382000,0],[1710128383000,0],[1710128384000,0],[1710128385000,0],[1710128386000,0],[1710128387000,0],[1710128388000,0],[1710128389000,0],[1710128390000,0],[1710128391000,0],[1710128392000,0],[1710128393000,0],[1710128394000,0],[1710128395000,0],[1710128396000,0],[1710128397000,0],[1710128398000,0],[1710128399000,0],[1710128400000,0],[1710128401000,0],[1710128402000,0],[1710128403000,0],[1710128404000,0],[1710128405000,0],[1710128406000,0],[1710128407000,0],[1710128408000,0],[1710128409000,0],[1710128410000,0],[1710128411000,0],[1710128412000,0],[1710128413000,0],[1710128414000,0],[1710128415000,0],[1710128416000,0],[1710128417000,0],[1710128418000,0],[1710128419000,0],[1710128420000,0],[1710128421000,0],[1710128422000,0],[1710128423000,0],[1710128424000,0],[1710128425000,0],[1710128426000,0],[1710128427000,0],[1710128428000,0],[1710128429000,0],[1710128430000,0],[1710128431000,0],[1710128432000,0],[1710128433000,0],[1710128434000,0],[1710128435000,0],[1710128436000,0],[1710128437000,0],[1710128438000,0],[1710128439000,0],[1710128440000,0],[1710128441000,0],[1710128442000,0],[1710128443000,0],[1710128444000,0],[1710128445000,0],[1710128446000,0],[1710128447000,0],[1710128448000,0],[1710128449000,0],[1710128450000,0],[1710128451000,0],[1710128452000,0],[1710128453000,0],[1710128454000,0],[1710128455000,0],[1710128456000,0],[1710128457000,0],[1710128458000,0],[1710128459000,0],[1710128460000,0],[1710128461000,0],[1710128462000,0],[1710128463000,0],[1710128464000,0],[1710128465000,0],[1710128466000,0],[1710128467000,0],[1710128468000,0],[1710128469000,0],[1710128470000,0],[1710128471000,0],[1710128472000,0],[1710128473000,0],[1710128474000,0],[1710128475000,0],[1710128476000,0],[1710128477000,0],[1710128478000,0],[1710128479000,0],[1710128480000,0],[1710128481000,0],[1710128482000,0],[1710128483000,0],[1710128484000,0],[1710128485000,0],[1710128486000,0],[1710128487000,0],[1710128488000,0],[1710128489000,0],[1710128490000,0],[1710128491000,0],[1710128492000,0],[1710128493000,0],[1710128494000,0],[1710128495000,0],[1710128496000,0],[1710128497000,0],[1710128498000,0],[1710128499000,0],[1710128500000,0],[1710128501000,0],[1710128502000,0],[1710128503000,0],[1710128504000,0],[1710128505000,0],[1710128506000,0],[1710128507000,0],[1710128508000,0],[1710128509000,0],[1710128510000,0],[1710128511000,0],[1710128512000,0],[1710128513000,0],[1710128514000,0],[1710128515000,0],[1710128516000,0],[1710128517000,0],[1710128518000,0],[1710128519000,0],[1710128520000,0],[1710128521000,0],[1710128522000,0],[1710128523000,0],[1710128524000,0],[1710128525000,0],[1710128526000,0],[1710128527000,0],[1710128528000,0],[1710128529000,0],[1710128530000,0],[1710128531000,0],[1710128532000,0],[1710128533000,0],[1710128534000,0],[1710128535000,0],[1710128536000,0],[1710128537000,0],[1710128538000,0],[1710128539000,0],[1710128540000,0],[1710128541000,0],[1710128542000,0],[1710128543000,0],[1710128544000,0],[1710128545000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FF00E1',
name: 'validação concorrência saldo - -25',
data: [
[1710128301000,1],[1710128302000,1],[1710128303000,0],[1710128304000,0],[1710128305000,0],[1710128306000,0],[1710128307000,0],[1710128308000,0],[1710128309000,0],[1710128310000,0],[1710128311000,0],[1710128312000,0],[1710128313000,0],[1710128314000,0],[1710128315000,0],[1710128316000,0],[1710128317000,0],[1710128318000,0],[1710128319000,0],[1710128320000,0],[1710128321000,0],[1710128322000,0],[1710128323000,0],[1710128324000,0],[1710128325000,0],[1710128326000,0],[1710128327000,0],[1710128328000,0],[1710128329000,0],[1710128330000,0],[1710128331000,0],[1710128332000,0],[1710128333000,0],[1710128334000,0],[1710128335000,0],[1710128336000,0],[1710128337000,0],[1710128338000,0],[1710128339000,0],[1710128340000,0],[1710128341000,0],[1710128342000,0],[1710128343000,0],[1710128344000,0],[1710128345000,0],[1710128346000,0],[1710128347000,0],[1710128348000,0],[1710128349000,0],[1710128350000,0],[1710128351000,0],[1710128352000,0],[1710128353000,0],[1710128354000,0],[1710128355000,0],[1710128356000,0],[1710128357000,0],[1710128358000,0],[1710128359000,0],[1710128360000,0],[1710128361000,0],[1710128362000,0],[1710128363000,0],[1710128364000,0],[1710128365000,0],[1710128366000,0],[1710128367000,0],[1710128368000,0],[1710128369000,0],[1710128370000,0],[1710128371000,0],[1710128372000,0],[1710128373000,0],[1710128374000,0],[1710128375000,0],[1710128376000,0],[1710128377000,0],[1710128378000,0],[1710128379000,0],[1710128380000,0],[1710128381000,0],[1710128382000,0],[1710128383000,0],[1710128384000,0],[1710128385000,0],[1710128386000,0],[1710128387000,0],[1710128388000,0],[1710128389000,0],[1710128390000,0],[1710128391000,0],[1710128392000,0],[1710128393000,0],[1710128394000,0],[1710128395000,0],[1710128396000,0],[1710128397000,0],[1710128398000,0],[1710128399000,0],[1710128400000,0],[1710128401000,0],[1710128402000,0],[1710128403000,0],[1710128404000,0],[1710128405000,0],[1710128406000,0],[1710128407000,0],[1710128408000,0],[1710128409000,0],[1710128410000,0],[1710128411000,0],[1710128412000,0],[1710128413000,0],[1710128414000,0],[1710128415000,0],[1710128416000,0],[1710128417000,0],[1710128418000,0],[1710128419000,0],[1710128420000,0],[1710128421000,0],[1710128422000,0],[1710128423000,0],[1710128424000,0],[1710128425000,0],[1710128426000,0],[1710128427000,0],[1710128428000,0],[1710128429000,0],[1710128430000,0],[1710128431000,0],[1710128432000,0],[1710128433000,0],[1710128434000,0],[1710128435000,0],[1710128436000,0],[1710128437000,0],[1710128438000,0],[1710128439000,0],[1710128440000,0],[1710128441000,0],[1710128442000,0],[1710128443000,0],[1710128444000,0],[1710128445000,0],[1710128446000,0],[1710128447000,0],[1710128448000,0],[1710128449000,0],[1710128450000,0],[1710128451000,0],[1710128452000,0],[1710128453000,0],[1710128454000,0],[1710128455000,0],[1710128456000,0],[1710128457000,0],[1710128458000,0],[1710128459000,0],[1710128460000,0],[1710128461000,0],[1710128462000,0],[1710128463000,0],[1710128464000,0],[1710128465000,0],[1710128466000,0],[1710128467000,0],[1710128468000,0],[1710128469000,0],[1710128470000,0],[1710128471000,0],[1710128472000,0],[1710128473000,0],[1710128474000,0],[1710128475000,0],[1710128476000,0],[1710128477000,0],[1710128478000,0],[1710128479000,0],[1710128480000,0],[1710128481000,0],[1710128482000,0],[1710128483000,0],[1710128484000,0],[1710128485000,0],[1710128486000,0],[1710128487000,0],[1710128488000,0],[1710128489000,0],[1710128490000,0],[1710128491000,0],[1710128492000,0],[1710128493000,0],[1710128494000,0],[1710128495000,0],[1710128496000,0],[1710128497000,0],[1710128498000,0],[1710128499000,0],[1710128500000,0],[1710128501000,0],[1710128502000,0],[1710128503000,0],[1710128504000,0],[1710128505000,0],[1710128506000,0],[1710128507000,0],[1710128508000,0],[1710128509000,0],[1710128510000,0],[1710128511000,0],[1710128512000,0],[1710128513000,0],[1710128514000,0],[1710128515000,0],[1710128516000,0],[1710128517000,0],[1710128518000,0],[1710128519000,0],[1710128520000,0],[1710128521000,0],[1710128522000,0],[1710128523000,0],[1710128524000,0],[1710128525000,0],[1710128526000,0],[1710128527000,0],[1710128528000,0],[1710128529000,0],[1710128530000,0],[1710128531000,0],[1710128532000,0],[1710128533000,0],[1710128534000,0],[1710128535000,0],[1710128536000,0],[1710128537000,0],[1710128538000,0],[1710128539000,0],[1710128540000,0],[1710128541000,0],[1710128542000,0],[1710128543000,0],[1710128544000,0],[1710128545000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#AECAEB',
name: 'validação concorrência transações - d',
data: [
[1710128301000,25],[1710128302000,0],[1710128303000,0],[1710128304000,0],[1710128305000,0],[1710128306000,0],[1710128307000,0],[1710128308000,0],[1710128309000,0],[1710128310000,0],[1710128311000,0],[1710128312000,0],[1710128313000,0],[1710128314000,0],[1710128315000,0],[1710128316000,0],[1710128317000,0],[1710128318000,0],[1710128319000,0],[1710128320000,0],[1710128321000,0],[1710128322000,0],[1710128323000,0],[1710128324000,0],[1710128325000,0],[1710128326000,0],[1710128327000,0],[1710128328000,0],[1710128329000,0],[1710128330000,0],[1710128331000,0],[1710128332000,0],[1710128333000,0],[1710128334000,0],[1710128335000,0],[1710128336000,0],[1710128337000,0],[1710128338000,0],[1710128339000,0],[1710128340000,0],[1710128341000,0],[1710128342000,0],[1710128343000,0],[1710128344000,0],[1710128345000,0],[1710128346000,0],[1710128347000,0],[1710128348000,0],[1710128349000,0],[1710128350000,0],[1710128351000,0],[1710128352000,0],[1710128353000,0],[1710128354000,0],[1710128355000,0],[1710128356000,0],[1710128357000,0],[1710128358000,0],[1710128359000,0],[1710128360000,0],[1710128361000,0],[1710128362000,0],[1710128363000,0],[1710128364000,0],[1710128365000,0],[1710128366000,0],[1710128367000,0],[1710128368000,0],[1710128369000,0],[1710128370000,0],[1710128371000,0],[1710128372000,0],[1710128373000,0],[1710128374000,0],[1710128375000,0],[1710128376000,0],[1710128377000,0],[1710128378000,0],[1710128379000,0],[1710128380000,0],[1710128381000,0],[1710128382000,0],[1710128383000,0],[1710128384000,0],[1710128385000,0],[1710128386000,0],[1710128387000,0],[1710128388000,0],[1710128389000,0],[1710128390000,0],[1710128391000,0],[1710128392000,0],[1710128393000,0],[1710128394000,0],[1710128395000,0],[1710128396000,0],[1710128397000,0],[1710128398000,0],[1710128399000,0],[1710128400000,0],[1710128401000,0],[1710128402000,0],[1710128403000,0],[1710128404000,0],[1710128405000,0],[1710128406000,0],[1710128407000,0],[1710128408000,0],[1710128409000,0],[1710128410000,0],[1710128411000,0],[1710128412000,0],[1710128413000,0],[1710128414000,0],[1710128415000,0],[1710128416000,0],[1710128417000,0],[1710128418000,0],[1710128419000,0],[1710128420000,0],[1710128421000,0],[1710128422000,0],[1710128423000,0],[1710128424000,0],[1710128425000,0],[1710128426000,0],[1710128427000,0],[1710128428000,0],[1710128429000,0],[1710128430000,0],[1710128431000,0],[1710128432000,0],[1710128433000,0],[1710128434000,0],[1710128435000,0],[1710128436000,0],[1710128437000,0],[1710128438000,0],[1710128439000,0],[1710128440000,0],[1710128441000,0],[1710128442000,0],[1710128443000,0],[1710128444000,0],[1710128445000,0],[1710128446000,0],[1710128447000,0],[1710128448000,0],[1710128449000,0],[1710128450000,0],[1710128451000,0],[1710128452000,0],[1710128453000,0],[1710128454000,0],[1710128455000,0],[1710128456000,0],[1710128457000,0],[1710128458000,0],[1710128459000,0],[1710128460000,0],[1710128461000,0],[1710128462000,0],[1710128463000,0],[1710128464000,0],[1710128465000,0],[1710128466000,0],[1710128467000,0],[1710128468000,0],[1710128469000,0],[1710128470000,0],[1710128471000,0],[1710128472000,0],[1710128473000,0],[1710128474000,0],[1710128475000,0],[1710128476000,0],[1710128477000,0],[1710128478000,0],[1710128479000,0],[1710128480000,0],[1710128481000,0],[1710128482000,0],[1710128483000,0],[1710128484000,0],[1710128485000,0],[1710128486000,0],[1710128487000,0],[1710128488000,0],[1710128489000,0],[1710128490000,0],[1710128491000,0],[1710128492000,0],[1710128493000,0],[1710128494000,0],[1710128495000,0],[1710128496000,0],[1710128497000,0],[1710128498000,0],[1710128499000,0],[1710128500000,0],[1710128501000,0],[1710128502000,0],[1710128503000,0],[1710128504000,0],[1710128505000,0],[1710128506000,0],[1710128507000,0],[1710128508000,0],[1710128509000,0],[1710128510000,0],[1710128511000,0],[1710128512000,0],[1710128513000,0],[1710128514000,0],[1710128515000,0],[1710128516000,0],[1710128517000,0],[1710128518000,0],[1710128519000,0],[1710128520000,0],[1710128521000,0],[1710128522000,0],[1710128523000,0],[1710128524000,0],[1710128525000,0],[1710128526000,0],[1710128527000,0],[1710128528000,0],[1710128529000,0],[1710128530000,0],[1710128531000,0],[1710128532000,0],[1710128533000,0],[1710128534000,0],[1710128535000,0],[1710128536000,0],[1710128537000,0],[1710128538000,0],[1710128539000,0],[1710128540000,0],[1710128541000,0],[1710128542000,0],[1710128543000,0],[1710128544000,0],[1710128545000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
allUsersData
]
});
allUsersChart.setTitle({
text: '<span class="chart_title">Active Users along the Simulation</span>',
useHTML: true
});
allUsersData.yAxis = 1;
var responsetimeDistributionChart = new Highcharts.Chart({
chart: {
renderTo: 'responsetimeDistributionContainer',
type: 'column',
marginBottom: 60
},
credits: { enabled: false },
legend: {
enabled: true,
floating: true,
y: 5,
borderWidth: 0,
itemStyle: { fontWeight: "normal" },
symbolRadius: 0
},
title: { text: 'A title to let highcharts reserve the place for the title set later' },
navigator: {
maskInside: false
},
xAxis: {
categories: ['2', '5', '8', '12', '15', '18', '22', '25', '29', '32', '35', '39', '42', '45', '49', '52', '55', '59', '62', '66', '69', '72', '76', '79', '82', '86', '89', '92', '96', '99', '102', '106', '109', '113', '116', '119', '123', '126', '129', '133', '136', '139', '143', '146', '150', '153', '156', '160', '163', '166', '170', '173', '176', '180', '183', '186', '190', '193', '197', '200', '203', '207', '210', '213', '217', '220', '223', '227', '230', '234', '237', '240', '244', '247', '250', '254', '257', '260', '264', '267', '270', '274', '277', '281', '284', '287', '291', '294', '297', '301', '304', '307', '311', '314', '318', '321', '324', '328', '331', '334'],
tickInterval: 20
},
yAxis: {
min: 0,
title: { text: 'Percentage of Requests' },
reversedStacks: false
},
tooltip: {
formatter: function() {
return '<b>'+ this.x +' ms</b><br/>'+
this.series.name +': '+ this.y +' %<br/>'+
'Total: '+ this.point.stackTotal + ' %';
}
},
plotOptions: {
series: {
groupPadding: 0,
stacking: 'normal',
shadow: true
}
},
series: [
{
type: 'column',
color: '#68b65c',
name: 'OK',
data: [
95.67,2.2,1.07,0.62,0.15,0.03,0.01,0.02,0.01,0.01,0.0,0.0,0.0,0.01,0.0,0.0,0.0,0.0,0.0,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
],
tooltip: { yDecimals: 0, ySuffix: 'ms' }
},
{
type: 'column',
color: '#f15b4f',
name: 'KO',
data: [
0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
],
tooltip: { yDecimals: 0, ySuffix: 'ms' }
}
]
});
responsetimeDistributionChart.setTitle({
text: '<span class="chart_title">Response Time Distribution</span>',
useHTML: true
});
var responsetimepercentilesovertimeokPercentiles = unpack([[1710128301,[37,58,141,238,242,279,329,334,335,336]],[1710128302,[4,4,4,4,4,4,4,4,4,4]],[1710128303,[12,26,33,64,84,152,152,153,156,158]],[1710128304,[4,4,4,4,4,4,4,4,4,4]],[1710128305,[0,1,2,5,6,6,6,7,9,9]],[1710128306,[5,6,7,7,7,7,7,7,7,8]],[1710128307,[3,3,3,3,4,4,4,4,4,5]],[1710128308,[2,3,3,3,3,3,4,4,4,5]],[1710128309,[2,3,3,3,4,4,4,4,4,5]],[1710128310,[2,2,3,3,3,3,3,4,4,4]],[1710128311,[2,2,3,3,3,3,3,4,4,5]],[1710128312,[2,2,2,2,3,3,3,3,3,3]],[1710128313,[1,2,2,3,3,3,3,3,3,4]],[1710128314,[2,2,2,2,3,3,3,3,3,3]],[1710128315,[2,2,2,3,3,3,3,3,4,4]],[1710128316,[1,2,2,3,3,3,3,3,3,3]],[1710128317,[1,2,2,2,2,3,3,3,3,3]],[1710128318,[1,2,2,2,2,2,2,3,23,35]],[1710128319,[1,2,2,2,2,2,3,4,37,52]],[1710128320,[1,1,2,2,2,2,3,4,61,82]],[1710128321,[1,1,2,2,2,2,2,2,3,4]],[1710128322,[1,1,2,2,2,2,2,2,2,3]],[1710128323,[1,1,2,2,2,2,2,2,2,3]],[1710128324,[1,1,1,2,2,2,2,2,2,3]],[1710128325,[1,1,2,2,2,2,2,2,2,2]],[1710128326,[1,1,1,2,2,2,2,2,3,4]],[1710128327,[1,1,1,2,2,2,2,3,49,55]],[1710128328,[1,1,1,2,2,2,2,2,20,51]],[1710128329,[1,1,1,2,2,2,2,2,2,2]],[1710128330,[1,1,1,2,2,2,2,2,2,3]],[1710128331,[1,1,2,2,2,2,2,2,2,2]],[1710128332,[1,1,1,2,2,2,2,2,2,3]],[1710128333,[1,1,1,2,2,2,2,2,3,3]],[1710128334,[1,1,1,2,2,2,2,2,3,3]],[1710128335,[1,1,2,2,2,2,2,2,2,3]],[1710128336,[1,1,1,2,2,2,2,2,2,3]],[1710128337,[1,1,1,1,1,2,2,2,2,3]],[1710128338,[1,1,1,2,2,2,2,2,2,3]],[1710128339,[1,1,1,2,2,2,2,2,3,3]],[1710128340,[1,1,1,2,2,2,2,2,3,3]],[1710128341,[1,1,1,1,2,2,2,2,3,3]],[1710128342,[1,1,1,2,2,2,2,2,2,3]],[1710128343,[1,1,2,2,2,2,2,2,2,3]],[1710128344,[1,1,1,2,2,2,2,2,2,3]],[1710128345,[1,1,1,2,2,2,2,2,2,3]],[1710128346,[1,1,1,1,2,2,2,2,2,3]],[1710128347,[1,1,1,1,1,1,2,2,2,3]],[1710128348,[1,1,1,1,2,2,2,2,3,3]],[1710128349,[1,1,1,1,2,2,2,2,2,2]],[1710128350,[1,1,1,1,2,2,2,2,2,3]],[1710128351,[1,1,1,1,2,2,2,2,3,5]],[1710128352,[1,1,1,1,1,2,2,2,2,2]],[1710128353,[1,1,1,1,2,2,2,2,2,3]],[1710128354,[0,1,1,1,1,1,1,2,2,3]],[1710128355,[1,1,1,2,2,2,2,2,2,4]],[1710128356,[0,1,1,1,2,2,2,2,3,3]],[1710128357,[1,1,1,1,1,1,1,2,3,3]],[1710128358,[1,1,1,1,1,1,1,1,3,3]],[1710128359,[1,1,1,1,1,1,2,2,3,5]],[1710128360,[0,1,1,1,2,2,2,2,2,2]],[1710128361,[0,1,1,1,1,1,1,2,3,4]],[1710128362,[0,1,1,1,1,2,2,2,2,3]],[1710128363,[0,1,1,1,2,2,2,2,2,3]],[1710128364,[1,1,1,1,1,2,2,2,3,3]],[1710128365,[0,1,1,1,2,2,2,2,3,5]],[1710128366,[1,1,1,1,1,1,2,2,3,4]],[1710128367,[1,1,1,1,1,1,1,2,3,5]],[1710128368,[0,1,1,1,1,1,1,2,3,3]],[1710128369,[0,1,1,1,1,1,1,1,3,3]],[1710128370,[0,1,1,1,1,1,1,1,2,3]],[1710128371,[0,0,1,1,1,1,1,2,2,5]],[1710128372,[0,1,1,1,1,1,1,2,3,3]],[1710128373,[1,1,1,1,1,1,1,1,3,4]],[1710128374,[1,1,1,1,1,1,1,1,3,3]],[1710128375,[1,1,1,1,1,1,2,2,3,3]],[1710128376,[0,1,1,1,1,1,2,2,3,5]],[1710128377,[0,1,1,1,1,1,2,2,3,3]],[1710128378,[0,1,1,1,1,2,2,2,3,4]],[1710128379,[1,1,1,1,1,1,2,2,3,5]],[1710128380,[1,1,1,1,1,1,2,2,3,4]],[1710128381,[0,1,1,1,1,1,1,1,3,3]],[1710128382,[0,1,1,1,1,1,1,2,3,3]],[1710128383,[0,1,1,1,1,1,1,2,3,4]],[1710128384,[0,1,1,1,1,1,1,2,3,4]],[1710128385,[0,1,1,1,1,1,1,1,3,4]],[1710128386,[0,1,1,1,1,1,2,2,3,3]],[1710128387,[0,1,1,1,1,1,2,2,3,4]],[1710128388,[1,1,1,1,1,1,2,2,3,4]],[1710128389,[0,1,1,1,1,1,1,2,3,3]],[1710128390,[0,1,1,1,1,1,1,2,3,4]],[1710128391,[0,1,1,1,1,2,2,2,3,4]],[1710128392,[0,1,1,1,1,1,2,2,3,4]],[1710128393,[0,1,1,1,1,1,1,2,3,4]],[1710128394,[0,1,1,1,1,1,2,2,3,4]],[1710128395,[0,1,1,1,1,1,2,2,3,4]],[1710128396,[0,1,1,1,1,1,2,2,3,4]],[1710128397,[0,1,1,1,1,1,1,2,3,4]],[1710128398,[1,1,1,1,1,2,2,2,4,5]],[1710128399,[1,1,1,1,1,1,2,2,4,4]],[1710128400,[0,1,1,1,1,1,2,2,4,5]],[1710128401,[0,1,1,1,1,1,1,2,4,5]],[1710128402,[0,0,0,1,1,1,1,1,3,3]],[1710128403,[0,1,1,1,1,1,1,1,4,4]],[1710128404,[0,1,1,1,1,1,1,2,4,6]],[1710128405,[0,1,1,1,1,1,1,2,4,4]],[1710128406,[0,0,1,1,1,1,1,2,4,5]],[1710128407,[0,0,1,1,1,1,1,2,4,5]],[1710128408,[0,1,1,1,1,1,1,2,4,5]],[1710128409,[0,1,1,1,1,1,1,2,4,5]],[1710128410,[0,1,1,1,1,1,2,2,5,6]],[1710128411,[0,1,1,1,1,1,2,2,4,5]],[1710128412,[0,1,1,1,1,1,1,1,4,5]],[1710128413,[0,0,1,1,1,1,1,1,4,5]],[1710128414,[0,0,1,1,1,1,1,2,8,20]],[1710128415,[0,0,1,1,1,1,1,2,4,4]],[1710128416,[0,1,1,1,1,1,2,2,4,6]],[1710128417,[1,1,1,2,2,2,2,3,5,6]],[1710128418,[0,1,1,2,2,2,2,3,4,6]],[1710128419,[1,2,3,3,3,3,3,4,15,44]],[1710128420,[0,1,1,2,2,2,3,3,5,7]],[1710128421,[1,2,2,3,3,3,3,4,7,9]],[1710128422,[0,0,0,2,2,2,2,3,5,7]],[1710128423,[0,1,2,2,2,2,3,3,7,8]],[1710128424,[0,0,1,2,2,2,2,2,5,8]],[1710128425,[0,1,2,3,3,3,4,4,7,10]],[1710128426,[0,1,1,2,2,2,3,3,6,9]],[1710128427,[0,1,2,3,3,3,3,4,7,11]],[1710128428,[1,1,2,3,3,3,3,4,7,9]],[1710128429,[1,1,2,3,3,3,4,4,7,8]],[1710128430,[0,0,2,3,3,3,3,4,7,15]],[1710128431,[0,1,1,2,3,3,3,4,6,8]],[1710128432,[1,1,2,2,2,2,3,3,7,8]],[1710128433,[0,1,1,2,3,3,3,3,7,8]],[1710128434,[1,1,2,2,3,3,3,3,7,8]],[1710128435,[1,1,1,2,3,3,3,4,7,24]],[1710128436,[0,1,2,3,3,3,3,4,8,8]],[1710128437,[0,1,1,1,2,2,2,3,6,8]],[1710128438,[0,0,2,2,2,2,2,3,8,10]],[1710128439,[0,0,0,1,1,1,2,2,7,8]],[1710128440,[0,1,2,2,2,3,3,3,8,18]],[1710128441,[0,0,0,1,1,1,1,2,6,10]],[1710128442,[1,2,2,3,3,3,3,4,8,11]],[1710128443,[1,1,1,1,1,1,1,1,6,7]],[1710128444,[1,2,2,3,3,3,3,4,9,13]],[1710128445,[0,1,1,1,1,1,1,1,7,7]],[1710128446,[0,1,2,3,3,3,3,3,8,11]],[1710128447,[0,1,1,1,1,1,1,1,6,7]],[1710128448,[0,1,2,3,3,3,3,3,9,11]],[1710128449,[0,0,1,1,1,1,1,2,7,8]],[1710128450,[0,1,2,3,3,3,3,4,9,23]],[1710128451,[1,1,1,1,1,1,1,2,7,7]],[1710128452,[1,1,2,3,3,3,3,4,9,13]],[1710128453,[0,0,1,1,1,1,1,2,7,8]],[1710128454,[0,1,2,2,3,3,3,3,9,12]],[1710128455,[1,1,1,2,2,7,23,44,70,84]],[1710128456,[1,1,2,2,3,3,3,4,9,11]],[1710128457,[1,1,1,1,1,2,2,3,7,10]],[1710128458,[1,1,1,3,3,3,3,4,8,11]],[1710128459,[0,1,1,1,2,2,3,3,7,10]],[1710128460,[1,1,1,2,2,2,3,3,9,13]],[1710128461,[0,1,1,2,2,2,3,3,7,11]],[1710128462,[0,1,1,2,2,2,3,4,7,12]],[1710128463,[1,1,1,2,2,3,3,3,7,10]],[1710128464,[1,1,1,2,2,2,3,4,7,10]],[1710128465,[0,1,1,2,3,3,3,4,15,33]],[1710128466,[1,1,1,1,1,1,2,3,7,12]],[1710128467,[1,1,1,2,2,2,2,3,8,11]],[1710128468,[0,0,1,1,1,1,1,2,8,9]],[1710128469,[0,1,1,2,2,2,3,3,8,12]],[1710128470,[1,1,1,1,1,1,2,2,7,15]],[1710128471,[1,1,1,2,2,3,3,4,10,17]],[1710128472,[0,1,1,1,1,1,2,2,8,9]],[1710128473,[0,0,1,2,2,2,3,4,8,11]],[1710128474,[0,0,1,1,1,1,1,1,8,9]],[1710128475,[1,1,1,2,2,2,2,3,8,15]],[1710128476,[0,0,1,1,1,1,1,2,15,25]],[1710128477,[0,1,1,2,2,2,2,3,8,13]],[1710128478,[0,1,1,1,1,1,2,2,8,9]],[1710128479,[1,1,1,1,2,2,3,3,9,13]],[1710128480,[1,1,1,2,2,3,3,3,9,12]],[1710128481,[1,1,2,3,3,3,3,4,10,12]],[1710128482,[1,1,2,3,3,3,3,4,11,13]],[1710128483,[1,1,2,3,3,3,3,4,12,15]],[1710128484,[0,1,1,2,2,2,2,3,9,14]],[1710128485,[0,2,2,2,2,2,3,3,10,13]],[1710128486,[0,1,1,2,2,3,3,4,10,13]],[1710128487,[0,2,2,3,3,3,3,4,11,13]],[1710128488,[0,1,1,1,2,2,3,4,9,14]],[1710128489,[0,2,2,3,3,3,3,4,12,14]],[1710128490,[0,1,1,1,1,2,2,3,9,13]],[1710128491,[0,2,3,3,3,4,4,4,13,24]],[1710128492,[0,1,1,1,1,1,2,2,9,12]],[1710128493,[1,2,3,3,3,3,3,4,12,14]],[1710128494,[1,1,1,1,1,2,2,2,9,10]],[1710128495,[1,2,2,3,3,3,3,4,12,13]],[1710128496,[0,1,1,1,1,1,2,2,9,22]],[1710128497,[1,2,2,3,3,3,3,4,13,14]],[1710128498,[0,1,1,2,2,2,2,3,9,10]],[1710128499,[0,2,3,3,3,3,4,4,12,15]],[1710128500,[0,0,1,1,1,2,2,3,9,13]],[1710128501,[0,1,2,3,3,3,3,4,15,24]],[1710128502,[0,1,1,2,2,3,3,4,15,44]],[1710128503,[1,1,2,3,3,3,3,3,12,16]],[1710128504,[0,1,1,2,2,2,2,3,10,13]],[1710128505,[0,1,2,2,3,3,3,4,11,14]],[1710128506,[1,1,1,2,2,2,3,3,10,13]],[1710128507,[0,1,1,3,3,3,3,4,12,18]],[1710128508,[0,1,1,2,2,3,3,3,10,15]],[1710128509,[0,1,1,2,2,3,3,4,12,14]],[1710128510,[1,1,1,2,2,2,3,3,10,15]],[1710128511,[0,1,1,2,2,2,3,3,11,15]],[1710128512,[0,1,1,2,2,2,3,3,11,13]],[1710128513,[0,1,1,1,2,2,2,2,10,13]],[1710128514,[0,0,1,2,2,2,2,3,10,14]],[1710128515,[0,0,1,2,2,3,3,7,26,58]],[1710128516,[1,1,2,3,3,4,4,8,22,54]],[1710128517,[1,1,1,1,1,1,2,3,11,13]],[1710128518,[1,1,2,3,3,3,3,3,14,15]],[1710128519,[1,1,1,1,1,1,1,2,11,12]],[1710128520,[0,1,2,3,3,3,4,4,12,15]],[1710128521,[0,1,1,1,1,1,2,2,11,13]],[1710128522,[0,1,2,3,3,3,3,4,13,16]],[1710128523,[0,1,1,1,1,1,1,2,11,12]],[1710128524,[0,1,2,2,2,3,3,3,12,14]],[1710128525,[1,1,1,1,1,1,1,2,11,16]],[1710128526,[0,1,2,3,3,3,3,4,12,15]],[1710128527,[0,0,1,1,1,1,1,2,10,23]],[1710128528,[0,1,1,2,3,3,3,3,13,15]],[1710128529,[1,1,1,1,1,1,2,2,11,12]],[1710128530,[1,1,1,2,2,3,3,4,13,14]],[1710128531,[0,1,1,1,1,1,1,1,11,13]],[1710128532,[0,1,1,2,2,3,3,4,12,16]],[1710128533,[1,1,1,1,1,1,2,2,12,13]],[1710128534,[0,1,1,2,2,3,3,4,11,17]],[1710128535,[0,1,1,1,1,1,1,2,12,13]],[1710128536,[0,1,1,2,3,3,3,4,12,15]],[1710128537,[0,1,1,1,1,1,1,2,12,15]],[1710128538,[0,1,1,2,2,3,3,3,12,17]],[1710128539,[0,1,1,1,1,2,2,3,12,13]],[1710128540,[0,1,1,2,2,2,3,3,12,16]],[1710128541,[1,1,1,1,1,2,2,3,12,13]],[1710128542,[1,1,2,3,3,3,3,4,16,24]],[1710128543,[0,0,1,1,1,2,3,4,12,18]],[1710128544,[0,2,2,3,3,3,3,4,15,16]],[1710128545,[0,1,1,2,3,3,3,3,13,18]]]);
var responsetimepercentilesovertimeokPercentilesChart = new Highcharts.StockChart({
chart: {
renderTo: 'responsetimepercentilesovertimeokPercentilesContainer',
zoomType: 'x',
marginBottom: 60
},
colors: ['#c4fd90', '#7ff77f', '#6ff2ad', '#61ede6', '#58c7e0', '#4ea1d4', '#487ad9', '#3f52cc', '#7335dc', '#c73905', '#FFA900'],
credits: { enabled: false },
legend: {
enabled: true,
floating: true,
y: -65,
borderWidth: 0,
itemStyle: { fontWeight: "normal" },
symbolRadius: 0
},
title: { text: 'A title to let highcharts reserve the place for the title set later' },
navigator: {
maskInside: false,
baseSeries: 9
},
rangeSelector: {
rangeSelector: { align: "left" },
buttonSpacing: 0,
buttonTheme: {
fill: '#CFC9C6',
padding: 1,
stroke: '#000000',
'stroke-width': 0.25,
style: {
color: '#000000',
fontWeight: 'bold',
},
states: {
stroke: '#92918C',
'stroke-width': 0.25,
hover: {
fill: '#92918C',
style: { color: 'black' }
},
select: {
fill: '#FFA900',
style: { color: 'white' }
}
}
},
buttons : [
{
type : 'minute',
count : 1,
text : '1m'
}, {
type : 'minute',
count : 10,
text : '10m'
}, {
type : 'hour',
count : 1,
text : '1h'
}, {
type : 'all',
count : 1,
text : 'All'
}
],
selected : 3,
inputEnabled : false
},
xAxis: {
type: 'datetime',
ordinal: false,
maxZoom: 10000 // three days
},
yAxis:[
{
min: 0,
title: { text: 'Response Time (ms)' },
opposite: false
}, {
min: 0,
title: {
text: 'Active Users',
style: { color: '#FFA900' }
},
opposite: true
}
],
plotOptions: {
arearange: { lineWidth: 1 },
series: {
dataGrouping: { enabled: false }
}
},
series: [
{
pointInterval: 1000,
name: 'min',
data: responsetimepercentilesovertimeokPercentiles[0],
tooltip: { yDecimals: 0, ySuffix: 'ms' },
type : 'area',
yAxis: 0,
zIndex: 10
},
{
pointInterval: 1000,
name: '25%',
data: responsetimepercentilesovertimeokPercentiles[1],
tooltip: { yDecimals: 0, ySuffix: 'ms' },
type : 'area',
yAxis: 0,
zIndex: 9
},
{
pointInterval: 1000,
name: '50%',
data: responsetimepercentilesovertimeokPercentiles[2],
tooltip: { yDecimals: 0, ySuffix: 'ms' },
type : 'area',
yAxis: 0,
zIndex: 8
},
{
pointInterval: 1000,
name: '75%',
data: responsetimepercentilesovertimeokPercentiles[3],
tooltip: { yDecimals: 0, ySuffix: 'ms' },
type : 'area',
yAxis: 0,
zIndex: 7
},
{
pointInterval: 1000,
name: '80%',
data: responsetimepercentilesovertimeokPercentiles[4],
tooltip: { yDecimals: 0, ySuffix: 'ms' },
type : 'area',
yAxis: 0,
zIndex: 6
},
{
pointInterval: 1000,
name: '85%',
data: responsetimepercentilesovertimeokPercentiles[5],
tooltip: { yDecimals: 0, ySuffix: 'ms' },
type : 'area',
yAxis: 0,
zIndex: 5
},
{
pointInterval: 1000,
name: '90%',
data: responsetimepercentilesovertimeokPercentiles[6],
tooltip: { yDecimals: 0, ySuffix: 'ms' },
type : 'area',
yAxis: 0,
zIndex: 4
},
{
pointInterval: 1000,
name: '95%',
data: responsetimepercentilesovertimeokPercentiles[7],
tooltip: { yDecimals: 0, ySuffix: 'ms' },
type : 'area',
yAxis: 0,
zIndex: 3
},
{
pointInterval: 1000,
name: '99%',
data: responsetimepercentilesovertimeokPercentiles[8],
tooltip: { yDecimals: 0, ySuffix: 'ms' },
type : 'area',
yAxis: 0,
zIndex: 2
},
{
pointInterval: 1000,
name: 'max',
data: responsetimepercentilesovertimeokPercentiles[9],
tooltip: { yDecimals: 0, ySuffix: 'ms' },
type : 'area',
yAxis: 0,
zIndex: 1
},
allUsersData
]
});
responsetimepercentilesovertimeokPercentilesChart.setTitle({
text: '<span class="chart_title chart_title_">Response Time Percentiles over Time (OK)</span>',
useHTML: true
});
var requests = unpack([[1710128301,[25,25,0]],[1710128302,[1,1,0]],[1710128303,[25,25,0]],[1710128304,[1,1,0]],[1710128305,[71,50,21]],[1710128306,[3,3,0]],[1710128307,[6,6,0]],[1710128308,[9,9,0]],[1710128309,[11,11,0]],[1710128310,[13,13,0]],[1710128311,[18,18,0]],[1710128312,[19,19,0]],[1710128313,[24,24,0]],[1710128314,[26,26,0]],[1710128315,[27,27,0]],[1710128316,[32,32,0]],[1710128317,[34,34,0]],[1710128318,[37,37,0]],[1710128319,[39,39,0]],[1710128320,[43,43,0]],[1710128321,[44,44,0]],[1710128322,[49,49,0]],[1710128323,[50,50,0]],[1710128324,[54,54,0]],[1710128325,[56,56,0]],[1710128326,[60,60,0]],[1710128327,[61,61,0]],[1710128328,[65,65,0]],[1710128329,[67,67,0]],[1710128330,[70,70,0]],[1710128331,[74,74,0]],[1710128332,[76,76,0]],[1710128333,[80,80,0]],[1710128334,[81,81,0]],[1710128335,[84,84,0]],[1710128336,[88,88,0]],[1710128337,[90,90,0]],[1710128338,[93,93,0]],[1710128339,[96,96,0]],[1710128340,[98,98,0]],[1710128341,[102,102,0]],[1710128342,[104,104,0]],[1710128343,[107,107,0]],[1710128344,[109,109,0]],[1710128345,[114,114,0]],[1710128346,[115,115,0]],[1710128347,[118,118,0]],[1710128348,[121,121,0]],[1710128349,[124,124,0]],[1710128350,[126,126,0]],[1710128351,[129,129,0]],[1710128352,[133,133,0]],[1710128353,[134,134,0]],[1710128354,[139,139,0]],[1710128355,[140,140,0]],[1710128356,[144,144,0]],[1710128357,[146,146,0]],[1710128358,[149,149,0]],[1710128359,[151,151,0]],[1710128360,[155,155,0]],[1710128361,[157,157,0]],[1710128362,[160,160,0]],[1710128363,[164,164,0]],[1710128364,[165,165,0]],[1710128365,[171,171,0]],[1710128366,[171,171,0]],[1710128367,[174,174,0]],[1710128368,[177,177,0]],[1710128369,[180,180,0]],[1710128370,[183,183,0]],[1710128371,[186,186,0]],[1710128372,[188,188,0]],[1710128373,[192,192,0]],[1710128374,[194,194,0]],[1710128375,[197,197,0]],[1710128376,[198,198,0]],[1710128377,[204,204,0]],[1710128378,[204,204,0]],[1710128379,[208,208,0]],[1710128380,[211,211,0]],[1710128381,[213,213,0]],[1710128382,[218,218,0]],[1710128383,[219,219,0]],[1710128384,[222,222,0]],[1710128385,[225,225,0]],[1710128386,[228,228,0]],[1710128387,[229,229,0]],[1710128388,[234,234,0]],[1710128389,[236,236,0]],[1710128390,[239,239,0]],[1710128391,[242,242,0]],[1710128392,[244,244,0]],[1710128393,[248,248,0]],[1710128394,[250,250,0]],[1710128395,[253,253,0]],[1710128396,[255,255,0]],[1710128397,[261,261,0]],[1710128398,[262,262,0]],[1710128399,[263,263,0]],[1710128400,[267,267,0]],[1710128401,[269,269,0]],[1710128402,[273,273,0]],[1710128403,[275,275,0]],[1710128404,[279,279,0]],[1710128405,[281,281,0]],[1710128406,[284,284,0]],[1710128407,[286,286,0]],[1710128408,[290,290,0]],[1710128409,[292,292,0]],[1710128410,[295,295,0]],[1710128411,[298,298,0]],[1710128412,[301,301,0]],[1710128413,[303,303,0]],[1710128414,[307,307,0]],[1710128415,[309,309,0]],[1710128416,[312,312,0]],[1710128417,[315,315,0]],[1710128418,[317,317,0]],[1710128419,[320,320,0]],[1710128420,[323,323,0]],[1710128421,[326,326,0]],[1710128422,[330,330,0]],[1710128423,[332,332,0]],[1710128424,[334,334,0]],[1710128425,[337,337,0]],[1710128426,[340,340,0]],[1710128427,[340,340,0]],[1710128428,[340,340,0]],[1710128429,[340,340,0]],[1710128430,[340,340,0]],[1710128431,[340,340,0]],[1710128432,[340,340,0]],[1710128433,[340,340,0]],[1710128434,[340,340,0]],[1710128435,[340,340,0]],[1710128436,[340,340,0]],[1710128437,[340,340,0]],[1710128438,[340,340,0]],[1710128439,[340,340,0]],[1710128440,[340,340,0]],[1710128441,[340,340,0]],[1710128442,[340,340,0]],[1710128443,[340,340,0]],[1710128444,[340,340,0]],[1710128445,[340,340,0]],[1710128446,[340,340,0]],[1710128447,[340,340,0]],[1710128448,[340,340,0]],[1710128449,[340,340,0]],[1710128450,[340,340,0]],[1710128451,[340,340,0]],[1710128452,[340,340,0]],[1710128453,[340,340,0]],[1710128454,[340,340,0]],[1710128455,[340,340,0]],[1710128456,[340,340,0]],[1710128457,[340,340,0]],[1710128458,[340,340,0]],[1710128459,[340,340,0]],[1710128460,[340,340,0]],[1710128461,[340,340,0]],[1710128462,[340,340,0]],[1710128463,[340,340,0]],[1710128464,[340,340,0]],[1710128465,[340,340,0]],[1710128466,[340,340,0]],[1710128467,[340,340,0]],[1710128468,[340,340,0]],[1710128469,[340,340,0]],[1710128470,[340,340,0]],[1710128471,[340,340,0]],[1710128472,[340,340,0]],[1710128473,[340,340,0]],[1710128474,[340,340,0]],[1710128475,[340,340,0]],[1710128476,[340,340,0]],[1710128477,[340,340,0]],[1710128478,[340,340,0]],[1710128479,[340,340,0]],[1710128480,[340,340,0]],[1710128481,[340,340,0]],[1710128482,[340,340,0]],[1710128483,[340,340,0]],[1710128484,[340,340,0]],[1710128485,[340,340,0]],[1710128486,[340,340,0]],[1710128487,[340,340,0]],[1710128488,[340,340,0]],[1710128489,[340,340,0]],[1710128490,[340,340,0]],[1710128491,[340,340,0]],[1710128492,[340,340,0]],[1710128493,[340,340,0]],[1710128494,[340,340,0]],[1710128495,[340,340,0]],[1710128496,[340,340,0]],[1710128497,[340,340,0]],[1710128498,[340,340,0]],[1710128499,[340,340,0]],[1710128500,[340,340,0]],[1710128501,[340,340,0]],[1710128502,[340,340,0]],[1710128503,[340,340,0]],[1710128504,[340,340,0]],[1710128505,[340,340,0]],[1710128506,[340,340,0]],[1710128507,[340,340,0]],[1710128508,[340,340,0]],[1710128509,[340,340,0]],[1710128510,[340,340,0]],[1710128511,[340,340,0]],[1710128512,[340,340,0]],[1710128513,[340,340,0]],[1710128514,[340,340,0]],[1710128515,[340,340,0]],[1710128516,[340,340,0]],[1710128517,[340,340,0]],[1710128518,[340,340,0]],[1710128519,[340,340,0]],[1710128520,[340,340,0]],[1710128521,[340,340,0]],[1710128522,[340,340,0]],[1710128523,[340,340,0]],[1710128524,[340,340,0]],[1710128525,[340,340,0]],[1710128526,[340,340,0]],[1710128527,[340,340,0]],[1710128528,[340,340,0]],[1710128529,[340,340,0]],[1710128530,[340,340,0]],[1710128531,[340,340,0]],[1710128532,[340,340,0]],[1710128533,[340,340,0]],[1710128534,[340,340,0]],[1710128535,[340,340,0]],[1710128536,[340,340,0]],[1710128537,[340,340,0]],[1710128538,[340,340,0]],[1710128539,[340,340,0]],[1710128540,[340,340,0]],[1710128541,[340,340,0]],[1710128542,[340,340,0]],[1710128543,[340,340,0]],[1710128544,[340,340,0]],[1710128545,[503,503,0]]]);
var requestsChart = new Highcharts.StockChart({
chart: {
renderTo: 'requests',
zoomType: 'x',
marginBottom: 60
},
credits: { enabled: false },
legend: {
enabled: true,
floating: true,
y: -65,
borderWidth: 0,
itemStyle: { fontWeight: "normal" },
symbolRadius: 0
},
title: { text: 'A title to let highcharts reserve the place for the title set later' },
navigator: {
maskInside: false
},
rangeSelector: {
buttonSpacing: 0,
buttonTheme: {
fill: '#CFC9C6',
padding: 1,
stroke: '#000000',
'stroke-width': 0.25,
style: {
color: '#000000',
fontWeight: 'bold',
},
states: {
stroke: '#000000',
'stroke-width': 0.25,
hover: {
fill: '#92918C',
style: { color: 'black' }
},
select: {
fill: '#FFA900',
style: { color: 'white' }
}
}
},
buttons : [
{
type : 'minute',
count : 1,