-
Notifications
You must be signed in to change notification settings - Fork 923
/
Copy pathindex.html
1173 lines (1104 loc) · 95.3 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-03 01:20:09 GMT</span>
</span>
<span class="simulation-information-item">
<span class="simulation-information-label">Duration: </span>
<span>4m 7s </span>
</span>
<span class="simulation-tooltip simulation-information-item description" title="Description" data-content="Rinha de Backend - 2024/Q1: Crébito - daniloflorenzano">
<span class="simulation-information-label">Description: </span>
<span>Rinha de Backend - 2024/Q1: Crébito - daniloflorenzano</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="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: [
[1709428810000,0],[1709428811000,0],[1709428812000,0],[1709428813000,0],[1709428814000,0],[1709428815000,0],[1709428816000,1],[1709428817000,2],[1709428818000,2],[1709428819000,4],[1709428820000,4],[1709428821000,5],[1709428822000,7],[1709428823000,7],[1709428824000,8],[1709428825000,8],[1709428826000,10],[1709428827000,10],[1709428828000,12],[1709428829000,13],[1709428830000,14],[1709428831000,17],[1709428832000,17],[1709428833000,17],[1709428834000,20],[1709428835000,17],[1709428836000,19],[1709428837000,20],[1709428838000,21],[1709428839000,22],[1709428840000,22],[1709428841000,26],[1709428842000,28],[1709428843000,25],[1709428844000,26],[1709428845000,27],[1709428846000,28],[1709428847000,29],[1709428848000,30],[1709428849000,31],[1709428850000,35],[1709428851000,32],[1709428852000,41],[1709428853000,36],[1709428854000,38],[1709428855000,37],[1709428856000,39],[1709428857000,41],[1709428858000,40],[1709428859000,40],[1709428860000,42],[1709428861000,43],[1709428862000,50],[1709428863000,44],[1709428864000,50],[1709428865000,52],[1709428866000,47],[1709428867000,56],[1709428868000,48],[1709428869000,54],[1709428870000,50],[1709428871000,51],[1709428872000,57],[1709428873000,55],[1709428874000,62],[1709428875000,61],[1709428876000,56],[1709428877000,58],[1709428878000,59],[1709428879000,59],[1709428880000,61],[1709428881000,62],[1709428882000,62],[1709428883000,61],[1709428884000,63],[1709428885000,65],[1709428886000,71],[1709428887000,70],[1709428888000,73],[1709428889000,82],[1709428890000,80],[1709428891000,73],[1709428892000,72],[1709428893000,74],[1709428894000,77],[1709428895000,75],[1709428896000,84],[1709428897000,79],[1709428898000,81],[1709428899000,77],[1709428900000,90],[1709428901000,84],[1709428902000,88],[1709428903000,88],[1709428904000,82],[1709428905000,86],[1709428906000,94],[1709428907000,90],[1709428908000,106],[1709428909000,92],[1709428910000,101],[1709428911000,92],[1709428912000,90],[1709428913000,97],[1709428914000,91],[1709428915000,93],[1709428916000,97],[1709428917000,98],[1709428918000,105],[1709428919000,101],[1709428920000,104],[1709428921000,104],[1709428922000,109],[1709428923000,101],[1709428924000,110],[1709428925000,104],[1709428926000,107],[1709428927000,108],[1709428928000,119],[1709428929000,113],[1709428930000,106],[1709428931000,117],[1709428932000,126],[1709428933000,122],[1709428934000,126],[1709428935000,116],[1709428936000,118],[1709428937000,121],[1709428938000,124],[1709428939000,111],[1709428940000,124],[1709428941000,110],[1709428942000,121],[1709428943000,127],[1709428944000,114],[1709428945000,126],[1709428946000,122],[1709428947000,127],[1709428948000,131],[1709428949000,125],[1709428950000,127],[1709428951000,121],[1709428952000,121],[1709428953000,129],[1709428954000,114],[1709428955000,122],[1709428956000,116],[1709428957000,128],[1709428958000,121],[1709428959000,120],[1709428960000,120],[1709428961000,124],[1709428962000,128],[1709428963000,114],[1709428964000,120],[1709428965000,111],[1709428966000,111],[1709428967000,110],[1709428968000,123],[1709428969000,119],[1709428970000,132],[1709428971000,122],[1709428972000,122],[1709428973000,123],[1709428974000,125],[1709428975000,121],[1709428976000,125],[1709428977000,117],[1709428978000,122],[1709428979000,111],[1709428980000,127],[1709428981000,124],[1709428982000,128],[1709428983000,126],[1709428984000,122],[1709428985000,123],[1709428986000,122],[1709428987000,126],[1709428988000,124],[1709428989000,123],[1709428990000,123],[1709428991000,128],[1709428992000,125],[1709428993000,123],[1709428994000,121],[1709428995000,125],[1709428996000,121],[1709428997000,111],[1709428998000,120],[1709428999000,121],[1709429000000,113],[1709429001000,120],[1709429002000,126],[1709429003000,112],[1709429004000,119],[1709429005000,119],[1709429006000,120],[1709429007000,126],[1709429008000,113],[1709429009000,128],[1709429010000,128],[1709429011000,120],[1709429012000,124],[1709429013000,125],[1709429014000,125],[1709429015000,114],[1709429016000,119],[1709429017000,121],[1709429018000,124],[1709429019000,123],[1709429020000,124],[1709429021000,121],[1709429022000,110],[1709429023000,127],[1709429024000,127],[1709429025000,127],[1709429026000,126],[1709429027000,125],[1709429028000,121],[1709429029000,125],[1709429030000,115],[1709429031000,120],[1709429032000,125],[1709429033000,112],[1709429034000,118],[1709429035000,121],[1709429036000,115],[1709429037000,112],[1709429038000,119],[1709429039000,114],[1709429040000,122],[1709429041000,128],[1709429042000,121],[1709429043000,121],[1709429044000,124],[1709429045000,119],[1709429046000,118],[1709429047000,122],[1709429048000,130],[1709429049000,112],[1709429050000,110],[1709429051000,118],[1709429052000,122],[1709429053000,123],[1709429054000,111],[1709429055000,117],[1709429056000,120],[1709429057000,3]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#68b65c',
name: 'débitos',
data: [
[1709428810000,0],[1709428811000,0],[1709428812000,0],[1709428813000,0],[1709428814000,0],[1709428815000,0],[1709428816000,1],[1709428817000,2],[1709428818000,4],[1709428819000,7],[1709428820000,7],[1709428821000,9],[1709428822000,11],[1709428823000,13],[1709428824000,16],[1709428825000,16],[1709428826000,19],[1709428827000,20],[1709428828000,23],[1709428829000,24],[1709428830000,27],[1709428831000,32],[1709428832000,29],[1709428833000,32],[1709428834000,35],[1709428835000,35],[1709428836000,39],[1709428837000,39],[1709428838000,40],[1709428839000,46],[1709428840000,45],[1709428841000,49],[1709428842000,47],[1709428843000,50],[1709428844000,55],[1709428845000,53],[1709428846000,55],[1709428847000,57],[1709428848000,59],[1709428849000,60],[1709428850000,63],[1709428851000,64],[1709428852000,69],[1709428853000,71],[1709428854000,70],[1709428855000,72],[1709428856000,78],[1709428857000,83],[1709428858000,79],[1709428859000,80],[1709428860000,80],[1709428861000,84],[1709428862000,84],[1709428863000,86],[1709428864000,90],[1709428865000,90],[1709428866000,92],[1709428867000,95],[1709428868000,96],[1709428869000,98],[1709428870000,98],[1709428871000,101],[1709428872000,103],[1709428873000,105],[1709428874000,106],[1709428875000,109],[1709428876000,113],[1709428877000,112],[1709428878000,114],[1709428879000,118],[1709428880000,119],[1709428881000,120],[1709428882000,122],[1709428883000,126],[1709428884000,128],[1709428885000,130],[1709428886000,129],[1709428887000,129],[1709428888000,134],[1709428889000,136],[1709428890000,138],[1709428891000,140],[1709428892000,147],[1709428893000,144],[1709428894000,146],[1709428895000,149],[1709428896000,150],[1709428897000,154],[1709428898000,154],[1709428899000,166],[1709428900000,156],[1709428901000,158],[1709428902000,158],[1709428903000,161],[1709428904000,165],[1709428905000,165],[1709428906000,170],[1709428907000,171],[1709428908000,171],[1709428909000,175],[1709428910000,173],[1709428911000,176],[1709428912000,177],[1709428913000,180],[1709428914000,185],[1709428915000,181],[1709428916000,183],[1709428917000,191],[1709428918000,188],[1709428919000,193],[1709428920000,193],[1709428921000,200],[1709428922000,203],[1709428923000,201],[1709428924000,209],[1709428925000,200],[1709428926000,210],[1709428927000,208],[1709428928000,212],[1709428929000,212],[1709428930000,226],[1709428931000,222],[1709428932000,222],[1709428933000,223],[1709428934000,219],[1709428935000,227],[1709428936000,225],[1709428937000,228],[1709428938000,226],[1709428939000,235],[1709428940000,232],[1709428941000,236],[1709428942000,230],[1709428943000,227],[1709428944000,230],[1709428945000,221],[1709428946000,223],[1709428947000,228],[1709428948000,245],[1709428949000,233],[1709428950000,228],[1709428951000,229],[1709428952000,230],[1709428953000,227],[1709428954000,238],[1709428955000,232],[1709428956000,232],[1709428957000,231],[1709428958000,233],[1709428959000,226],[1709428960000,226],[1709428961000,230],[1709428962000,233],[1709428963000,251],[1709428964000,235],[1709428965000,243],[1709428966000,241],[1709428967000,234],[1709428968000,229],[1709428969000,254],[1709428970000,233],[1709428971000,229],[1709428972000,230],[1709428973000,226],[1709428974000,226],[1709428975000,226],[1709428976000,228],[1709428977000,228],[1709428978000,224],[1709428979000,239],[1709428980000,230],[1709428981000,230],[1709428982000,227],[1709428983000,229],[1709428984000,229],[1709428985000,227],[1709428986000,231],[1709428987000,233],[1709428988000,232],[1709428989000,230],[1709428990000,225],[1709428991000,227],[1709428992000,230],[1709428993000,229],[1709428994000,233],[1709428995000,227],[1709428996000,233],[1709428997000,239],[1709428998000,229],[1709428999000,226],[1709429000000,229],[1709429001000,233],[1709429002000,229],[1709429003000,235],[1709429004000,231],[1709429005000,227],[1709429006000,232],[1709429007000,231],[1709429008000,242],[1709429009000,227],[1709429010000,233],[1709429011000,230],[1709429012000,227],[1709429013000,226],[1709429014000,229],[1709429015000,238],[1709429016000,227],[1709429017000,229],[1709429018000,228],[1709429019000,228],[1709429020000,229],[1709429021000,230],[1709429022000,243],[1709429023000,243],[1709429024000,226],[1709429025000,227],[1709429026000,232],[1709429027000,230],[1709429028000,227],[1709429029000,230],[1709429030000,228],[1709429031000,230],[1709429032000,230],[1709429033000,242],[1709429034000,236],[1709429035000,228],[1709429036000,227],[1709429037000,241],[1709429038000,231],[1709429039000,234],[1709429040000,238],[1709429041000,226],[1709429042000,225],[1709429043000,231],[1709429044000,227],[1709429045000,235],[1709429046000,230],[1709429047000,229],[1709429048000,224],[1709429049000,235],[1709429050000,233],[1709429051000,232],[1709429052000,225],[1709429053000,231],[1709429054000,234],[1709429055000,233],[1709429056000,225],[1709429057000,14]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#f15b4f',
name: 'extratos',
data: [
[1709428810000,0],[1709428811000,0],[1709428812000,0],[1709428813000,0],[1709428814000,0],[1709428815000,0],[1709428816000,1],[1709428817000,2],[1709428818000,1],[1709428819000,1],[1709428820000,1],[1709428821000,1],[1709428822000,2],[1709428823000,1],[1709428824000,2],[1709428825000,2],[1709428826000,1],[1709428827000,2],[1709428828000,2],[1709428829000,3],[1709428830000,2],[1709428831000,2],[1709428832000,2],[1709428833000,2],[1709428834000,3],[1709428835000,2],[1709428836000,4],[1709428837000,2],[1709428838000,3],[1709428839000,2],[1709428840000,3],[1709428841000,3],[1709428842000,3],[1709428843000,3],[1709428844000,3],[1709428845000,3],[1709428846000,3],[1709428847000,4],[1709428848000,3],[1709428849000,3],[1709428850000,4],[1709428851000,3],[1709428852000,4],[1709428853000,4],[1709428854000,4],[1709428855000,4],[1709428856000,4],[1709428857000,4],[1709428858000,4],[1709428859000,4],[1709428860000,4],[1709428861000,4],[1709428862000,5],[1709428863000,4],[1709428864000,5],[1709428865000,5],[1709428866000,4],[1709428867000,5],[1709428868000,5],[1709428869000,5],[1709428870000,5],[1709428871000,5],[1709428872000,5],[1709428873000,5],[1709428874000,6],[1709428875000,5],[1709428876000,6],[1709428877000,5],[1709428878000,6],[1709428879000,5],[1709428880000,6],[1709428881000,6],[1709428882000,6],[1709428883000,6],[1709428884000,6],[1709428885000,6],[1709428886000,6],[1709428887000,7],[1709428888000,6],[1709428889000,6],[1709428890000,7],[1709428891000,6],[1709428892000,7],[1709428893000,7],[1709428894000,7],[1709428895000,7],[1709428896000,7],[1709428897000,7],[1709428898000,7],[1709428899000,7],[1709428900000,7],[1709428901000,7],[1709428902000,8],[1709428903000,7],[1709428904000,8],[1709428905000,8],[1709428906000,7],[1709428907000,8],[1709428908000,8],[1709428909000,8],[1709428910000,8],[1709428911000,8],[1709428912000,8],[1709428913000,8],[1709428914000,9],[1709428915000,8],[1709428916000,9],[1709428917000,8],[1709428918000,9],[1709428919000,8],[1709428920000,9],[1709428921000,9],[1709428922000,9],[1709428923000,9],[1709428924000,9],[1709428925000,9],[1709428926000,9],[1709428927000,10],[1709428928000,9],[1709428929000,9],[1709428930000,10],[1709428931000,9],[1709428932000,10],[1709428933000,10],[1709428934000,10],[1709428935000,10],[1709428936000,10],[1709428937000,10],[1709428938000,10],[1709428939000,10],[1709428940000,10],[1709428941000,10],[1709428942000,10],[1709428943000,10],[1709428944000,10],[1709428945000,10],[1709428946000,10],[1709428947000,10],[1709428948000,10],[1709428949000,10],[1709428950000,10],[1709428951000,10],[1709428952000,10],[1709428953000,10],[1709428954000,10],[1709428955000,10],[1709428956000,10],[1709428957000,10],[1709428958000,10],[1709428959000,10],[1709428960000,10],[1709428961000,10],[1709428962000,10],[1709428963000,10],[1709428964000,10],[1709428965000,10],[1709428966000,10],[1709428967000,10],[1709428968000,10],[1709428969000,10],[1709428970000,10],[1709428971000,10],[1709428972000,10],[1709428973000,10],[1709428974000,10],[1709428975000,10],[1709428976000,10],[1709428977000,10],[1709428978000,10],[1709428979000,10],[1709428980000,10],[1709428981000,10],[1709428982000,10],[1709428983000,10],[1709428984000,10],[1709428985000,10],[1709428986000,10],[1709428987000,10],[1709428988000,10],[1709428989000,10],[1709428990000,10],[1709428991000,10],[1709428992000,10],[1709428993000,10],[1709428994000,10],[1709428995000,10],[1709428996000,10],[1709428997000,10],[1709428998000,10],[1709428999000,10],[1709429000000,10],[1709429001000,10],[1709429002000,10],[1709429003000,10],[1709429004000,10],[1709429005000,10],[1709429006000,10],[1709429007000,10],[1709429008000,10],[1709429009000,10],[1709429010000,10],[1709429011000,10],[1709429012000,10],[1709429013000,10],[1709429014000,10],[1709429015000,10],[1709429016000,10],[1709429017000,10],[1709429018000,10],[1709429019000,10],[1709429020000,10],[1709429021000,10],[1709429022000,10],[1709429023000,11],[1709429024000,10],[1709429025000,10],[1709429026000,10],[1709429027000,10],[1709429028000,10],[1709429029000,10],[1709429030000,10],[1709429031000,10],[1709429032000,10],[1709429033000,10],[1709429034000,10],[1709429035000,10],[1709429036000,10],[1709429037000,10],[1709429038000,10],[1709429039000,10],[1709429040000,10],[1709429041000,10],[1709429042000,10],[1709429043000,10],[1709429044000,10],[1709429045000,10],[1709429046000,10],[1709429047000,10],[1709429048000,10],[1709429049000,10],[1709429050000,10],[1709429051000,10],[1709429052000,10],[1709429053000,10],[1709429054000,10],[1709429055000,10],[1709429056000,9],[1709429057000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FFDD00',
name: 'validações',
data: [
[1709428810000,0],[1709428811000,0],[1709428812000,0],[1709428813000,0],[1709428814000,0],[1709428815000,5],[1709428816000,5],[1709428817000,0],[1709428818000,0],[1709428819000,0],[1709428820000,0],[1709428821000,0],[1709428822000,0],[1709428823000,0],[1709428824000,0],[1709428825000,0],[1709428826000,0],[1709428827000,0],[1709428828000,0],[1709428829000,0],[1709428830000,0],[1709428831000,0],[1709428832000,0],[1709428833000,0],[1709428834000,0],[1709428835000,0],[1709428836000,0],[1709428837000,0],[1709428838000,0],[1709428839000,0],[1709428840000,0],[1709428841000,0],[1709428842000,0],[1709428843000,0],[1709428844000,0],[1709428845000,0],[1709428846000,0],[1709428847000,0],[1709428848000,0],[1709428849000,0],[1709428850000,0],[1709428851000,0],[1709428852000,0],[1709428853000,0],[1709428854000,0],[1709428855000,0],[1709428856000,0],[1709428857000,0],[1709428858000,0],[1709428859000,0],[1709428860000,0],[1709428861000,0],[1709428862000,0],[1709428863000,0],[1709428864000,0],[1709428865000,0],[1709428866000,0],[1709428867000,0],[1709428868000,0],[1709428869000,0],[1709428870000,0],[1709428871000,0],[1709428872000,0],[1709428873000,0],[1709428874000,0],[1709428875000,0],[1709428876000,0],[1709428877000,0],[1709428878000,0],[1709428879000,0],[1709428880000,0],[1709428881000,0],[1709428882000,0],[1709428883000,0],[1709428884000,0],[1709428885000,0],[1709428886000,0],[1709428887000,0],[1709428888000,0],[1709428889000,0],[1709428890000,0],[1709428891000,0],[1709428892000,0],[1709428893000,0],[1709428894000,0],[1709428895000,0],[1709428896000,0],[1709428897000,0],[1709428898000,0],[1709428899000,0],[1709428900000,0],[1709428901000,0],[1709428902000,0],[1709428903000,0],[1709428904000,0],[1709428905000,0],[1709428906000,0],[1709428907000,0],[1709428908000,0],[1709428909000,0],[1709428910000,0],[1709428911000,0],[1709428912000,0],[1709428913000,0],[1709428914000,0],[1709428915000,0],[1709428916000,0],[1709428917000,0],[1709428918000,0],[1709428919000,0],[1709428920000,0],[1709428921000,0],[1709428922000,0],[1709428923000,0],[1709428924000,0],[1709428925000,0],[1709428926000,0],[1709428927000,0],[1709428928000,0],[1709428929000,0],[1709428930000,0],[1709428931000,0],[1709428932000,0],[1709428933000,0],[1709428934000,0],[1709428935000,0],[1709428936000,0],[1709428937000,0],[1709428938000,0],[1709428939000,0],[1709428940000,0],[1709428941000,0],[1709428942000,0],[1709428943000,0],[1709428944000,0],[1709428945000,0],[1709428946000,0],[1709428947000,0],[1709428948000,0],[1709428949000,0],[1709428950000,0],[1709428951000,0],[1709428952000,0],[1709428953000,0],[1709428954000,0],[1709428955000,0],[1709428956000,0],[1709428957000,0],[1709428958000,0],[1709428959000,0],[1709428960000,0],[1709428961000,0],[1709428962000,0],[1709428963000,0],[1709428964000,0],[1709428965000,0],[1709428966000,0],[1709428967000,0],[1709428968000,0],[1709428969000,0],[1709428970000,0],[1709428971000,0],[1709428972000,0],[1709428973000,0],[1709428974000,0],[1709428975000,0],[1709428976000,0],[1709428977000,0],[1709428978000,0],[1709428979000,0],[1709428980000,0],[1709428981000,0],[1709428982000,0],[1709428983000,0],[1709428984000,0],[1709428985000,0],[1709428986000,0],[1709428987000,0],[1709428988000,0],[1709428989000,0],[1709428990000,0],[1709428991000,0],[1709428992000,0],[1709428993000,0],[1709428994000,0],[1709428995000,0],[1709428996000,0],[1709428997000,0],[1709428998000,0],[1709428999000,0],[1709429000000,0],[1709429001000,0],[1709429002000,0],[1709429003000,0],[1709429004000,0],[1709429005000,0],[1709429006000,0],[1709429007000,0],[1709429008000,0],[1709429009000,0],[1709429010000,0],[1709429011000,0],[1709429012000,0],[1709429013000,0],[1709429014000,0],[1709429015000,0],[1709429016000,0],[1709429017000,0],[1709429018000,0],[1709429019000,0],[1709429020000,0],[1709429021000,0],[1709429022000,0],[1709429023000,0],[1709429024000,0],[1709429025000,0],[1709429026000,0],[1709429027000,0],[1709429028000,0],[1709429029000,0],[1709429030000,0],[1709429031000,0],[1709429032000,0],[1709429033000,0],[1709429034000,0],[1709429035000,0],[1709429036000,0],[1709429037000,0],[1709429038000,0],[1709429039000,0],[1709429040000,0],[1709429041000,0],[1709429042000,0],[1709429043000,0],[1709429044000,0],[1709429045000,0],[1709429046000,0],[1709429047000,0],[1709429048000,0],[1709429049000,0],[1709429050000,0],[1709429051000,0],[1709429052000,0],[1709429053000,0],[1709429054000,0],[1709429055000,0],[1709429056000,0],[1709429057000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00D5FF',
name: 'validação HTTP 404',
data: [
[1709428810000,0],[1709428811000,0],[1709428812000,0],[1709428813000,0],[1709428814000,0],[1709428815000,1],[1709428816000,0],[1709428817000,0],[1709428818000,0],[1709428819000,0],[1709428820000,0],[1709428821000,0],[1709428822000,0],[1709428823000,0],[1709428824000,0],[1709428825000,0],[1709428826000,0],[1709428827000,0],[1709428828000,0],[1709428829000,0],[1709428830000,0],[1709428831000,0],[1709428832000,0],[1709428833000,0],[1709428834000,0],[1709428835000,0],[1709428836000,0],[1709428837000,0],[1709428838000,0],[1709428839000,0],[1709428840000,0],[1709428841000,0],[1709428842000,0],[1709428843000,0],[1709428844000,0],[1709428845000,0],[1709428846000,0],[1709428847000,0],[1709428848000,0],[1709428849000,0],[1709428850000,0],[1709428851000,0],[1709428852000,0],[1709428853000,0],[1709428854000,0],[1709428855000,0],[1709428856000,0],[1709428857000,0],[1709428858000,0],[1709428859000,0],[1709428860000,0],[1709428861000,0],[1709428862000,0],[1709428863000,0],[1709428864000,0],[1709428865000,0],[1709428866000,0],[1709428867000,0],[1709428868000,0],[1709428869000,0],[1709428870000,0],[1709428871000,0],[1709428872000,0],[1709428873000,0],[1709428874000,0],[1709428875000,0],[1709428876000,0],[1709428877000,0],[1709428878000,0],[1709428879000,0],[1709428880000,0],[1709428881000,0],[1709428882000,0],[1709428883000,0],[1709428884000,0],[1709428885000,0],[1709428886000,0],[1709428887000,0],[1709428888000,0],[1709428889000,0],[1709428890000,0],[1709428891000,0],[1709428892000,0],[1709428893000,0],[1709428894000,0],[1709428895000,0],[1709428896000,0],[1709428897000,0],[1709428898000,0],[1709428899000,0],[1709428900000,0],[1709428901000,0],[1709428902000,0],[1709428903000,0],[1709428904000,0],[1709428905000,0],[1709428906000,0],[1709428907000,0],[1709428908000,0],[1709428909000,0],[1709428910000,0],[1709428911000,0],[1709428912000,0],[1709428913000,0],[1709428914000,0],[1709428915000,0],[1709428916000,0],[1709428917000,0],[1709428918000,0],[1709428919000,0],[1709428920000,0],[1709428921000,0],[1709428922000,0],[1709428923000,0],[1709428924000,0],[1709428925000,0],[1709428926000,0],[1709428927000,0],[1709428928000,0],[1709428929000,0],[1709428930000,0],[1709428931000,0],[1709428932000,0],[1709428933000,0],[1709428934000,0],[1709428935000,0],[1709428936000,0],[1709428937000,0],[1709428938000,0],[1709428939000,0],[1709428940000,0],[1709428941000,0],[1709428942000,0],[1709428943000,0],[1709428944000,0],[1709428945000,0],[1709428946000,0],[1709428947000,0],[1709428948000,0],[1709428949000,0],[1709428950000,0],[1709428951000,0],[1709428952000,0],[1709428953000,0],[1709428954000,0],[1709428955000,0],[1709428956000,0],[1709428957000,0],[1709428958000,0],[1709428959000,0],[1709428960000,0],[1709428961000,0],[1709428962000,0],[1709428963000,0],[1709428964000,0],[1709428965000,0],[1709428966000,0],[1709428967000,0],[1709428968000,0],[1709428969000,0],[1709428970000,0],[1709428971000,0],[1709428972000,0],[1709428973000,0],[1709428974000,0],[1709428975000,0],[1709428976000,0],[1709428977000,0],[1709428978000,0],[1709428979000,0],[1709428980000,0],[1709428981000,0],[1709428982000,0],[1709428983000,0],[1709428984000,0],[1709428985000,0],[1709428986000,0],[1709428987000,0],[1709428988000,0],[1709428989000,0],[1709428990000,0],[1709428991000,0],[1709428992000,0],[1709428993000,0],[1709428994000,0],[1709428995000,0],[1709428996000,0],[1709428997000,0],[1709428998000,0],[1709428999000,0],[1709429000000,0],[1709429001000,0],[1709429002000,0],[1709429003000,0],[1709429004000,0],[1709429005000,0],[1709429006000,0],[1709429007000,0],[1709429008000,0],[1709429009000,0],[1709429010000,0],[1709429011000,0],[1709429012000,0],[1709429013000,0],[1709429014000,0],[1709429015000,0],[1709429016000,0],[1709429017000,0],[1709429018000,0],[1709429019000,0],[1709429020000,0],[1709429021000,0],[1709429022000,0],[1709429023000,0],[1709429024000,0],[1709429025000,0],[1709429026000,0],[1709429027000,0],[1709429028000,0],[1709429029000,0],[1709429030000,0],[1709429031000,0],[1709429032000,0],[1709429033000,0],[1709429034000,0],[1709429035000,0],[1709429036000,0],[1709429037000,0],[1709429038000,0],[1709429039000,0],[1709429040000,0],[1709429041000,0],[1709429042000,0],[1709429043000,0],[1709429044000,0],[1709429045000,0],[1709429046000,0],[1709429047000,0],[1709429048000,0],[1709429049000,0],[1709429050000,0],[1709429051000,0],[1709429052000,0],[1709429053000,0],[1709429054000,0],[1709429055000,0],[1709429056000,0],[1709429057000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00FF00',
name: 'validação concorrência saldo - 0',
data: [
[1709428810000,0],[1709428811000,0],[1709428812000,0],[1709428813000,0],[1709428814000,1],[1709428815000,0],[1709428816000,0],[1709428817000,0],[1709428818000,0],[1709428819000,0],[1709428820000,0],[1709428821000,0],[1709428822000,0],[1709428823000,0],[1709428824000,0],[1709428825000,0],[1709428826000,0],[1709428827000,0],[1709428828000,0],[1709428829000,0],[1709428830000,0],[1709428831000,0],[1709428832000,0],[1709428833000,0],[1709428834000,0],[1709428835000,0],[1709428836000,0],[1709428837000,0],[1709428838000,0],[1709428839000,0],[1709428840000,0],[1709428841000,0],[1709428842000,0],[1709428843000,0],[1709428844000,0],[1709428845000,0],[1709428846000,0],[1709428847000,0],[1709428848000,0],[1709428849000,0],[1709428850000,0],[1709428851000,0],[1709428852000,0],[1709428853000,0],[1709428854000,0],[1709428855000,0],[1709428856000,0],[1709428857000,0],[1709428858000,0],[1709428859000,0],[1709428860000,0],[1709428861000,0],[1709428862000,0],[1709428863000,0],[1709428864000,0],[1709428865000,0],[1709428866000,0],[1709428867000,0],[1709428868000,0],[1709428869000,0],[1709428870000,0],[1709428871000,0],[1709428872000,0],[1709428873000,0],[1709428874000,0],[1709428875000,0],[1709428876000,0],[1709428877000,0],[1709428878000,0],[1709428879000,0],[1709428880000,0],[1709428881000,0],[1709428882000,0],[1709428883000,0],[1709428884000,0],[1709428885000,0],[1709428886000,0],[1709428887000,0],[1709428888000,0],[1709428889000,0],[1709428890000,0],[1709428891000,0],[1709428892000,0],[1709428893000,0],[1709428894000,0],[1709428895000,0],[1709428896000,0],[1709428897000,0],[1709428898000,0],[1709428899000,0],[1709428900000,0],[1709428901000,0],[1709428902000,0],[1709428903000,0],[1709428904000,0],[1709428905000,0],[1709428906000,0],[1709428907000,0],[1709428908000,0],[1709428909000,0],[1709428910000,0],[1709428911000,0],[1709428912000,0],[1709428913000,0],[1709428914000,0],[1709428915000,0],[1709428916000,0],[1709428917000,0],[1709428918000,0],[1709428919000,0],[1709428920000,0],[1709428921000,0],[1709428922000,0],[1709428923000,0],[1709428924000,0],[1709428925000,0],[1709428926000,0],[1709428927000,0],[1709428928000,0],[1709428929000,0],[1709428930000,0],[1709428931000,0],[1709428932000,0],[1709428933000,0],[1709428934000,0],[1709428935000,0],[1709428936000,0],[1709428937000,0],[1709428938000,0],[1709428939000,0],[1709428940000,0],[1709428941000,0],[1709428942000,0],[1709428943000,0],[1709428944000,0],[1709428945000,0],[1709428946000,0],[1709428947000,0],[1709428948000,0],[1709428949000,0],[1709428950000,0],[1709428951000,0],[1709428952000,0],[1709428953000,0],[1709428954000,0],[1709428955000,0],[1709428956000,0],[1709428957000,0],[1709428958000,0],[1709428959000,0],[1709428960000,0],[1709428961000,0],[1709428962000,0],[1709428963000,0],[1709428964000,0],[1709428965000,0],[1709428966000,0],[1709428967000,0],[1709428968000,0],[1709428969000,0],[1709428970000,0],[1709428971000,0],[1709428972000,0],[1709428973000,0],[1709428974000,0],[1709428975000,0],[1709428976000,0],[1709428977000,0],[1709428978000,0],[1709428979000,0],[1709428980000,0],[1709428981000,0],[1709428982000,0],[1709428983000,0],[1709428984000,0],[1709428985000,0],[1709428986000,0],[1709428987000,0],[1709428988000,0],[1709428989000,0],[1709428990000,0],[1709428991000,0],[1709428992000,0],[1709428993000,0],[1709428994000,0],[1709428995000,0],[1709428996000,0],[1709428997000,0],[1709428998000,0],[1709428999000,0],[1709429000000,0],[1709429001000,0],[1709429002000,0],[1709429003000,0],[1709429004000,0],[1709429005000,0],[1709429006000,0],[1709429007000,0],[1709429008000,0],[1709429009000,0],[1709429010000,0],[1709429011000,0],[1709429012000,0],[1709429013000,0],[1709429014000,0],[1709429015000,0],[1709429016000,0],[1709429017000,0],[1709429018000,0],[1709429019000,0],[1709429020000,0],[1709429021000,0],[1709429022000,0],[1709429023000,0],[1709429024000,0],[1709429025000,0],[1709429026000,0],[1709429027000,0],[1709429028000,0],[1709429029000,0],[1709429030000,0],[1709429031000,0],[1709429032000,0],[1709429033000,0],[1709429034000,0],[1709429035000,0],[1709429036000,0],[1709429037000,0],[1709429038000,0],[1709429039000,0],[1709429040000,0],[1709429041000,0],[1709429042000,0],[1709429043000,0],[1709429044000,0],[1709429045000,0],[1709429046000,0],[1709429047000,0],[1709429048000,0],[1709429049000,0],[1709429050000,0],[1709429051000,0],[1709429052000,0],[1709429053000,0],[1709429054000,0],[1709429055000,0],[1709429056000,0],[1709429057000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#9D00FF',
name: 'validação concorrência transações - c',
data: [
[1709428810000,0],[1709428811000,0],[1709428812000,25],[1709428813000,25],[1709428814000,3],[1709428815000,0],[1709428816000,0],[1709428817000,0],[1709428818000,0],[1709428819000,0],[1709428820000,0],[1709428821000,0],[1709428822000,0],[1709428823000,0],[1709428824000,0],[1709428825000,0],[1709428826000,0],[1709428827000,0],[1709428828000,0],[1709428829000,0],[1709428830000,0],[1709428831000,0],[1709428832000,0],[1709428833000,0],[1709428834000,0],[1709428835000,0],[1709428836000,0],[1709428837000,0],[1709428838000,0],[1709428839000,0],[1709428840000,0],[1709428841000,0],[1709428842000,0],[1709428843000,0],[1709428844000,0],[1709428845000,0],[1709428846000,0],[1709428847000,0],[1709428848000,0],[1709428849000,0],[1709428850000,0],[1709428851000,0],[1709428852000,0],[1709428853000,0],[1709428854000,0],[1709428855000,0],[1709428856000,0],[1709428857000,0],[1709428858000,0],[1709428859000,0],[1709428860000,0],[1709428861000,0],[1709428862000,0],[1709428863000,0],[1709428864000,0],[1709428865000,0],[1709428866000,0],[1709428867000,0],[1709428868000,0],[1709428869000,0],[1709428870000,0],[1709428871000,0],[1709428872000,0],[1709428873000,0],[1709428874000,0],[1709428875000,0],[1709428876000,0],[1709428877000,0],[1709428878000,0],[1709428879000,0],[1709428880000,0],[1709428881000,0],[1709428882000,0],[1709428883000,0],[1709428884000,0],[1709428885000,0],[1709428886000,0],[1709428887000,0],[1709428888000,0],[1709428889000,0],[1709428890000,0],[1709428891000,0],[1709428892000,0],[1709428893000,0],[1709428894000,0],[1709428895000,0],[1709428896000,0],[1709428897000,0],[1709428898000,0],[1709428899000,0],[1709428900000,0],[1709428901000,0],[1709428902000,0],[1709428903000,0],[1709428904000,0],[1709428905000,0],[1709428906000,0],[1709428907000,0],[1709428908000,0],[1709428909000,0],[1709428910000,0],[1709428911000,0],[1709428912000,0],[1709428913000,0],[1709428914000,0],[1709428915000,0],[1709428916000,0],[1709428917000,0],[1709428918000,0],[1709428919000,0],[1709428920000,0],[1709428921000,0],[1709428922000,0],[1709428923000,0],[1709428924000,0],[1709428925000,0],[1709428926000,0],[1709428927000,0],[1709428928000,0],[1709428929000,0],[1709428930000,0],[1709428931000,0],[1709428932000,0],[1709428933000,0],[1709428934000,0],[1709428935000,0],[1709428936000,0],[1709428937000,0],[1709428938000,0],[1709428939000,0],[1709428940000,0],[1709428941000,0],[1709428942000,0],[1709428943000,0],[1709428944000,0],[1709428945000,0],[1709428946000,0],[1709428947000,0],[1709428948000,0],[1709428949000,0],[1709428950000,0],[1709428951000,0],[1709428952000,0],[1709428953000,0],[1709428954000,0],[1709428955000,0],[1709428956000,0],[1709428957000,0],[1709428958000,0],[1709428959000,0],[1709428960000,0],[1709428961000,0],[1709428962000,0],[1709428963000,0],[1709428964000,0],[1709428965000,0],[1709428966000,0],[1709428967000,0],[1709428968000,0],[1709428969000,0],[1709428970000,0],[1709428971000,0],[1709428972000,0],[1709428973000,0],[1709428974000,0],[1709428975000,0],[1709428976000,0],[1709428977000,0],[1709428978000,0],[1709428979000,0],[1709428980000,0],[1709428981000,0],[1709428982000,0],[1709428983000,0],[1709428984000,0],[1709428985000,0],[1709428986000,0],[1709428987000,0],[1709428988000,0],[1709428989000,0],[1709428990000,0],[1709428991000,0],[1709428992000,0],[1709428993000,0],[1709428994000,0],[1709428995000,0],[1709428996000,0],[1709428997000,0],[1709428998000,0],[1709428999000,0],[1709429000000,0],[1709429001000,0],[1709429002000,0],[1709429003000,0],[1709429004000,0],[1709429005000,0],[1709429006000,0],[1709429007000,0],[1709429008000,0],[1709429009000,0],[1709429010000,0],[1709429011000,0],[1709429012000,0],[1709429013000,0],[1709429014000,0],[1709429015000,0],[1709429016000,0],[1709429017000,0],[1709429018000,0],[1709429019000,0],[1709429020000,0],[1709429021000,0],[1709429022000,0],[1709429023000,0],[1709429024000,0],[1709429025000,0],[1709429026000,0],[1709429027000,0],[1709429028000,0],[1709429029000,0],[1709429030000,0],[1709429031000,0],[1709429032000,0],[1709429033000,0],[1709429034000,0],[1709429035000,0],[1709429036000,0],[1709429037000,0],[1709429038000,0],[1709429039000,0],[1709429040000,0],[1709429041000,0],[1709429042000,0],[1709429043000,0],[1709429044000,0],[1709429045000,0],[1709429046000,0],[1709429047000,0],[1709429048000,0],[1709429049000,0],[1709429050000,0],[1709429051000,0],[1709429052000,0],[1709429053000,0],[1709429054000,0],[1709429055000,0],[1709429056000,0],[1709429057000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FF00E1',
name: 'validação concorrência saldo - -25',
data: [
[1709428810000,0],[1709428811000,1],[1709428812000,1],[1709428813000,0],[1709428814000,0],[1709428815000,0],[1709428816000,0],[1709428817000,0],[1709428818000,0],[1709428819000,0],[1709428820000,0],[1709428821000,0],[1709428822000,0],[1709428823000,0],[1709428824000,0],[1709428825000,0],[1709428826000,0],[1709428827000,0],[1709428828000,0],[1709428829000,0],[1709428830000,0],[1709428831000,0],[1709428832000,0],[1709428833000,0],[1709428834000,0],[1709428835000,0],[1709428836000,0],[1709428837000,0],[1709428838000,0],[1709428839000,0],[1709428840000,0],[1709428841000,0],[1709428842000,0],[1709428843000,0],[1709428844000,0],[1709428845000,0],[1709428846000,0],[1709428847000,0],[1709428848000,0],[1709428849000,0],[1709428850000,0],[1709428851000,0],[1709428852000,0],[1709428853000,0],[1709428854000,0],[1709428855000,0],[1709428856000,0],[1709428857000,0],[1709428858000,0],[1709428859000,0],[1709428860000,0],[1709428861000,0],[1709428862000,0],[1709428863000,0],[1709428864000,0],[1709428865000,0],[1709428866000,0],[1709428867000,0],[1709428868000,0],[1709428869000,0],[1709428870000,0],[1709428871000,0],[1709428872000,0],[1709428873000,0],[1709428874000,0],[1709428875000,0],[1709428876000,0],[1709428877000,0],[1709428878000,0],[1709428879000,0],[1709428880000,0],[1709428881000,0],[1709428882000,0],[1709428883000,0],[1709428884000,0],[1709428885000,0],[1709428886000,0],[1709428887000,0],[1709428888000,0],[1709428889000,0],[1709428890000,0],[1709428891000,0],[1709428892000,0],[1709428893000,0],[1709428894000,0],[1709428895000,0],[1709428896000,0],[1709428897000,0],[1709428898000,0],[1709428899000,0],[1709428900000,0],[1709428901000,0],[1709428902000,0],[1709428903000,0],[1709428904000,0],[1709428905000,0],[1709428906000,0],[1709428907000,0],[1709428908000,0],[1709428909000,0],[1709428910000,0],[1709428911000,0],[1709428912000,0],[1709428913000,0],[1709428914000,0],[1709428915000,0],[1709428916000,0],[1709428917000,0],[1709428918000,0],[1709428919000,0],[1709428920000,0],[1709428921000,0],[1709428922000,0],[1709428923000,0],[1709428924000,0],[1709428925000,0],[1709428926000,0],[1709428927000,0],[1709428928000,0],[1709428929000,0],[1709428930000,0],[1709428931000,0],[1709428932000,0],[1709428933000,0],[1709428934000,0],[1709428935000,0],[1709428936000,0],[1709428937000,0],[1709428938000,0],[1709428939000,0],[1709428940000,0],[1709428941000,0],[1709428942000,0],[1709428943000,0],[1709428944000,0],[1709428945000,0],[1709428946000,0],[1709428947000,0],[1709428948000,0],[1709428949000,0],[1709428950000,0],[1709428951000,0],[1709428952000,0],[1709428953000,0],[1709428954000,0],[1709428955000,0],[1709428956000,0],[1709428957000,0],[1709428958000,0],[1709428959000,0],[1709428960000,0],[1709428961000,0],[1709428962000,0],[1709428963000,0],[1709428964000,0],[1709428965000,0],[1709428966000,0],[1709428967000,0],[1709428968000,0],[1709428969000,0],[1709428970000,0],[1709428971000,0],[1709428972000,0],[1709428973000,0],[1709428974000,0],[1709428975000,0],[1709428976000,0],[1709428977000,0],[1709428978000,0],[1709428979000,0],[1709428980000,0],[1709428981000,0],[1709428982000,0],[1709428983000,0],[1709428984000,0],[1709428985000,0],[1709428986000,0],[1709428987000,0],[1709428988000,0],[1709428989000,0],[1709428990000,0],[1709428991000,0],[1709428992000,0],[1709428993000,0],[1709428994000,0],[1709428995000,0],[1709428996000,0],[1709428997000,0],[1709428998000,0],[1709428999000,0],[1709429000000,0],[1709429001000,0],[1709429002000,0],[1709429003000,0],[1709429004000,0],[1709429005000,0],[1709429006000,0],[1709429007000,0],[1709429008000,0],[1709429009000,0],[1709429010000,0],[1709429011000,0],[1709429012000,0],[1709429013000,0],[1709429014000,0],[1709429015000,0],[1709429016000,0],[1709429017000,0],[1709429018000,0],[1709429019000,0],[1709429020000,0],[1709429021000,0],[1709429022000,0],[1709429023000,0],[1709429024000,0],[1709429025000,0],[1709429026000,0],[1709429027000,0],[1709429028000,0],[1709429029000,0],[1709429030000,0],[1709429031000,0],[1709429032000,0],[1709429033000,0],[1709429034000,0],[1709429035000,0],[1709429036000,0],[1709429037000,0],[1709429038000,0],[1709429039000,0],[1709429040000,0],[1709429041000,0],[1709429042000,0],[1709429043000,0],[1709429044000,0],[1709429045000,0],[1709429046000,0],[1709429047000,0],[1709429048000,0],[1709429049000,0],[1709429050000,0],[1709429051000,0],[1709429052000,0],[1709429053000,0],[1709429054000,0],[1709429055000,0],[1709429056000,0],[1709429057000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#AECAEB',
name: 'validação concorrência transações - d',
data: [
[1709428810000,25],[1709428811000,9],[1709428812000,0],[1709428813000,0],[1709428814000,0],[1709428815000,0],[1709428816000,0],[1709428817000,0],[1709428818000,0],[1709428819000,0],[1709428820000,0],[1709428821000,0],[1709428822000,0],[1709428823000,0],[1709428824000,0],[1709428825000,0],[1709428826000,0],[1709428827000,0],[1709428828000,0],[1709428829000,0],[1709428830000,0],[1709428831000,0],[1709428832000,0],[1709428833000,0],[1709428834000,0],[1709428835000,0],[1709428836000,0],[1709428837000,0],[1709428838000,0],[1709428839000,0],[1709428840000,0],[1709428841000,0],[1709428842000,0],[1709428843000,0],[1709428844000,0],[1709428845000,0],[1709428846000,0],[1709428847000,0],[1709428848000,0],[1709428849000,0],[1709428850000,0],[1709428851000,0],[1709428852000,0],[1709428853000,0],[1709428854000,0],[1709428855000,0],[1709428856000,0],[1709428857000,0],[1709428858000,0],[1709428859000,0],[1709428860000,0],[1709428861000,0],[1709428862000,0],[1709428863000,0],[1709428864000,0],[1709428865000,0],[1709428866000,0],[1709428867000,0],[1709428868000,0],[1709428869000,0],[1709428870000,0],[1709428871000,0],[1709428872000,0],[1709428873000,0],[1709428874000,0],[1709428875000,0],[1709428876000,0],[1709428877000,0],[1709428878000,0],[1709428879000,0],[1709428880000,0],[1709428881000,0],[1709428882000,0],[1709428883000,0],[1709428884000,0],[1709428885000,0],[1709428886000,0],[1709428887000,0],[1709428888000,0],[1709428889000,0],[1709428890000,0],[1709428891000,0],[1709428892000,0],[1709428893000,0],[1709428894000,0],[1709428895000,0],[1709428896000,0],[1709428897000,0],[1709428898000,0],[1709428899000,0],[1709428900000,0],[1709428901000,0],[1709428902000,0],[1709428903000,0],[1709428904000,0],[1709428905000,0],[1709428906000,0],[1709428907000,0],[1709428908000,0],[1709428909000,0],[1709428910000,0],[1709428911000,0],[1709428912000,0],[1709428913000,0],[1709428914000,0],[1709428915000,0],[1709428916000,0],[1709428917000,0],[1709428918000,0],[1709428919000,0],[1709428920000,0],[1709428921000,0],[1709428922000,0],[1709428923000,0],[1709428924000,0],[1709428925000,0],[1709428926000,0],[1709428927000,0],[1709428928000,0],[1709428929000,0],[1709428930000,0],[1709428931000,0],[1709428932000,0],[1709428933000,0],[1709428934000,0],[1709428935000,0],[1709428936000,0],[1709428937000,0],[1709428938000,0],[1709428939000,0],[1709428940000,0],[1709428941000,0],[1709428942000,0],[1709428943000,0],[1709428944000,0],[1709428945000,0],[1709428946000,0],[1709428947000,0],[1709428948000,0],[1709428949000,0],[1709428950000,0],[1709428951000,0],[1709428952000,0],[1709428953000,0],[1709428954000,0],[1709428955000,0],[1709428956000,0],[1709428957000,0],[1709428958000,0],[1709428959000,0],[1709428960000,0],[1709428961000,0],[1709428962000,0],[1709428963000,0],[1709428964000,0],[1709428965000,0],[1709428966000,0],[1709428967000,0],[1709428968000,0],[1709428969000,0],[1709428970000,0],[1709428971000,0],[1709428972000,0],[1709428973000,0],[1709428974000,0],[1709428975000,0],[1709428976000,0],[1709428977000,0],[1709428978000,0],[1709428979000,0],[1709428980000,0],[1709428981000,0],[1709428982000,0],[1709428983000,0],[1709428984000,0],[1709428985000,0],[1709428986000,0],[1709428987000,0],[1709428988000,0],[1709428989000,0],[1709428990000,0],[1709428991000,0],[1709428992000,0],[1709428993000,0],[1709428994000,0],[1709428995000,0],[1709428996000,0],[1709428997000,0],[1709428998000,0],[1709428999000,0],[1709429000000,0],[1709429001000,0],[1709429002000,0],[1709429003000,0],[1709429004000,0],[1709429005000,0],[1709429006000,0],[1709429007000,0],[1709429008000,0],[1709429009000,0],[1709429010000,0],[1709429011000,0],[1709429012000,0],[1709429013000,0],[1709429014000,0],[1709429015000,0],[1709429016000,0],[1709429017000,0],[1709429018000,0],[1709429019000,0],[1709429020000,0],[1709429021000,0],[1709429022000,0],[1709429023000,0],[1709429024000,0],[1709429025000,0],[1709429026000,0],[1709429027000,0],[1709429028000,0],[1709429029000,0],[1709429030000,0],[1709429031000,0],[1709429032000,0],[1709429033000,0],[1709429034000,0],[1709429035000,0],[1709429036000,0],[1709429037000,0],[1709429038000,0],[1709429039000,0],[1709429040000,0],[1709429041000,0],[1709429042000,0],[1709429043000,0],[1709429044000,0],[1709429045000,0],[1709429046000,0],[1709429047000,0],[1709429048000,0],[1709429049000,0],[1709429050000,0],[1709429051000,0],[1709429052000,0],[1709429053000,0],[1709429054000,0],[1709429055000,0],[1709429056000,0],[1709429057000,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: ['21', '62', '102', '142', '183', '223', '264', '304', '345', '385', '425', '466', '506', '547', '587', '628', '668', '708', '749', '789', '830', '870', '910', '951', '991', '1032', '1072', '1113', '1153', '1193', '1234', '1274', '1315', '1355', '1395', '1436', '1476', '1517', '1557', '1598', '1638', '1678', '1719', '1759', '1800', '1840', '1881', '1921', '1961', '2002', '2042', '2083', '2123', '2163', '2204', '2244', '2285', '2325', '2366', '2406', '2446', '2487', '2527', '2568', '2608', '2649', '2689', '2729', '2770', '2810', '2851', '2891', '2931', '2972', '3012', '3053', '3093', '3134', '3174', '3214', '3255', '3295', '3336', '3376', '3416', '3457', '3497', '3538', '3578', '3619', '3659', '3699', '3740', '3780', '3821', '3861', '3902', '3942', '3982', '4023'],
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: [
92.95,0.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.39,0.44,0.41,0.38,0.39,0.39,0.4,0.41,0.45,0.41,0.38,0.41,0.42,0.49,0.33,0.03,0.02,0.03,0.03,0.03,0.03,0.03,0.04,0.05,0.05,0.05,0.03,0.03,0.02,0.03,0.03,0.02,0.01,0.0,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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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([[1709428810,[136,659,825,1028,1060,1125,1160,1192,1201,1202]],[1709428811,null],[1709428812,[11,11,11,11,11,11,11,11,11,11]],[1709428813,[12,503,685,932,949,985,1004,1316,1776,1898]],[1709428814,null],[1709428815,[4,4,4,4,4,4,4,4,4,4]],[1709428816,[1,2,6,13,14,16,19,44,55,58]],[1709428817,[5,5,5,5,5,5,5,5,5,6]],[1709428818,[3,5,6,24,31,31,31,31,31,32]],[1709428819,[4,4,5,5,6,7,116,331,504,548]],[1709428820,[4,4,4,5,5,5,5,5,5,6]],[1709428821,[3,4,4,4,4,5,5,5,5,6]],[1709428822,[2,4,4,5,5,5,13,87,346,411]],[1709428823,[3,4,4,4,4,5,5,5,6,7]],[1709428824,[3,4,4,4,4,5,5,14,653,844]],[1709428825,[3,4,4,5,6,6,6,7,25,31]],[1709428826,[2,3,4,4,4,4,4,5,6,6]],[1709428827,[2,3,4,4,4,5,5,5,6,6]],[1709428828,[2,3,4,4,5,5,5,14,513,751]],[1709428829,[3,4,4,5,5,6,30,691,1013,1177]],[1709428830,[2,3,4,4,4,255,310,711,1483,1687]],[1709428831,[2,4,4,6,21,43,379,591,907,991]],[1709428832,[1,3,3,4,4,5,5,6,591,724]],[1709428833,[2,3,3,4,4,4,4,4,653,833]],[1709428834,[2,3,3,4,5,17,30,277,848,1033]],[1709428835,[1,3,3,4,4,5,27,37,504,1004]],[1709428836,[2,3,3,17,29,39,50,153,899,939]],[1709428837,[2,3,3,3,3,3,4,8,211,450]],[1709428838,[1,3,3,3,4,4,5,514,900,908]],[1709428839,[2,2,3,3,3,4,4,444,834,973]],[1709428840,[2,3,3,4,4,4,4,5,305,889]],[1709428841,[1,3,3,4,5,5,6,484,599,766]],[1709428842,[1,2,3,4,4,4,5,8,596,634]],[1709428843,[1,3,3,3,4,4,4,5,652,844]],[1709428844,[2,2,2,3,3,4,4,6,667,924]],[1709428845,[2,3,3,3,3,3,4,4,723,845]],[1709428846,[1,3,3,3,3,3,3,3,5,8]],[1709428847,[1,3,3,3,3,4,4,5,627,713]],[1709428848,[1,2,3,3,3,3,4,4,51,454]],[1709428849,[1,2,2,3,3,4,4,188,908,981]],[1709428850,[1,2,3,3,3,4,4,4,612,852]],[1709428851,[1,3,3,3,4,4,4,82,994,1780]],[1709428852,[1,3,3,4,4,4,5,549,926,947]],[1709428853,[1,3,3,3,4,4,4,5,1241,1628]],[1709428854,[1,2,3,3,3,4,4,4,4,4]],[1709428855,[1,3,3,3,3,3,3,4,397,692]],[1709428856,[1,3,3,3,3,4,44,588,937,1647]],[1709428857,[1,2,2,3,3,3,4,488,899,944]],[1709428858,[1,2,3,3,3,3,3,4,684,934]],[1709428859,[1,2,2,3,3,3,3,4,918,1235]],[1709428860,[1,2,3,3,3,3,3,4,494,985]],[1709428861,[1,2,3,3,3,4,4,5,791,808]],[1709428862,[1,2,3,3,3,4,4,5,792,1004]],[1709428863,[1,2,3,3,3,4,4,4,607,650]],[1709428864,[1,3,3,4,4,4,4,735,949,1429]],[1709428865,[1,2,3,3,3,3,4,624,929,981]],[1709428866,[1,2,3,3,4,4,4,556,965,985]],[1709428867,[1,2,3,3,3,4,4,417,790,931]],[1709428868,[1,2,2,2,2,2,3,3,320,793]],[1709428869,[1,2,2,3,3,3,3,291,910,993]],[1709428870,[1,2,2,3,3,3,3,3,305,799]],[1709428871,[1,2,2,3,3,3,3,3,4,707]],[1709428872,[1,2,2,3,3,3,3,4,922,1308]],[1709428873,[2,2,3,3,3,4,4,35,942,1509]],[1709428874,[1,2,3,3,4,4,4,679,869,985]],[1709428875,[1,2,2,2,3,3,4,4,615,982]],[1709428876,[1,2,2,2,2,2,3,3,950,1416]],[1709428877,[1,2,2,3,3,3,3,3,861,928]],[1709428878,[1,2,2,3,3,3,3,3,817,1233]],[1709428879,[1,2,2,2,2,2,2,3,665,1502]],[1709428880,[1,2,2,3,3,3,3,4,706,761]],[1709428881,[1,2,2,3,3,3,3,4,773,884]],[1709428882,[1,2,2,3,3,3,3,4,724,878]],[1709428883,[2,2,2,3,3,3,3,4,438,517]],[1709428884,[1,2,3,3,3,3,3,4,922,1339]],[1709428885,[1,2,3,3,3,3,4,516,941,973]],[1709428886,[1,3,3,3,4,4,4,4,802,973]],[1709428887,[1,2,2,3,3,3,4,4,620,1289]],[1709428888,[1,2,2,3,3,4,4,660,1581,1847]],[1709428889,[1,2,2,3,3,4,4,547,967,1199]],[1709428890,[1,2,3,3,3,3,4,747,983,1516]],[1709428891,[1,2,2,3,3,3,3,4,612,962]],[1709428892,[1,2,2,3,3,3,3,174,913,963]],[1709428893,[2,2,2,3,3,3,3,4,798,970]],[1709428894,[2,2,2,3,3,3,3,4,705,1424]],[1709428895,[1,2,3,3,4,4,4,6,858,1460]],[1709428896,[1,2,2,3,3,4,4,564,961,1388]],[1709428897,[1,2,2,3,3,3,3,348,940,1441]],[1709428898,[1,2,3,3,3,3,4,593,938,1487]],[1709428899,[1,2,3,3,3,4,4,510,1228,1529]],[1709428900,[1,2,3,3,3,4,4,445,942,1386]],[1709428901,[1,2,3,3,3,3,3,14,800,861]],[1709428902,[2,2,2,3,3,3,3,4,949,1086]],[1709428903,[1,2,3,3,3,3,4,459,823,984]],[1709428904,[1,2,3,3,3,3,3,4,656,1726]],[1709428905,[1,2,2,3,3,4,4,4,932,1359]],[1709428906,[1,2,3,4,4,4,6,693,938,1472]],[1709428907,[2,2,2,3,3,4,4,635,975,1717]],[1709428908,[2,2,3,3,4,4,4,576,934,2062]],[1709428909,[1,2,3,3,3,4,4,691,1125,1663]],[1709428910,[2,2,3,3,4,4,4,5,806,976]],[1709428911,[1,2,2,3,3,3,3,4,758,856]],[1709428912,[1,2,2,3,3,3,3,7,892,1534]],[1709428913,[1,2,3,3,3,3,4,229,984,1566]],[1709428914,[1,2,3,3,3,3,3,4,489,952]],[1709428915,[1,2,2,2,3,3,3,3,3,536]],[1709428916,[2,2,2,3,3,3,4,4,954,1447]],[1709428917,[2,2,3,3,3,4,4,424,830,953]],[1709428918,[1,2,3,3,3,4,4,5,971,1562]],[1709428919,[2,2,3,3,4,4,4,652,953,1556]],[1709428920,[2,2,3,3,4,4,4,435,945,1259]],[1709428921,[2,2,3,4,4,4,40,727,1367,1894]],[1709428922,[2,2,3,3,4,4,4,545,939,2246]],[1709428923,[2,2,3,3,4,4,496,844,1030,1479]],[1709428924,[2,2,3,3,3,3,4,4,623,971]],[1709428925,[2,2,3,3,3,3,4,4,719,1126]],[1709428926,[2,2,2,3,3,3,4,664,980,2058]],[1709428927,[2,2,3,3,4,4,5,674,1547,1972]],[1709428928,[1,2,3,3,3,4,4,512,922,984]],[1709428929,[1,3,3,4,4,4,5,656,991,1582]],[1709428930,[1,2,2,3,4,4,6,685,1506,2033]],[1709428931,[2,3,4,5,5,5,6,764,963,1664]],[1709428932,[2,2,3,3,4,4,5,631,966,1522]],[1709428933,[3,4,4,5,5,6,6,730,986,1528]],[1709428934,[2,2,3,3,4,4,5,512,1041,1820]],[1709428935,[3,3,3,4,4,4,5,6,879,1795]],[1709428936,[1,2,2,3,3,4,4,529,944,1582]],[1709428937,[2,3,4,5,5,5,5,415,912,992]],[1709428938,[2,2,3,4,4,4,5,582,936,1690]],[1709428939,[2,3,4,5,5,6,6,673,997,1629]],[1709428940,[1,2,3,3,3,4,4,519,978,1439]],[1709428941,[2,3,4,5,5,5,6,666,967,1327]],[1709428942,[2,2,3,4,4,4,5,454,1151,1415]],[1709428943,[2,3,4,5,5,6,6,589,955,2201]],[1709428944,[2,2,3,4,4,5,5,518,947,960]],[1709428945,[2,3,3,4,5,5,5,6,983,1892]],[1709428946,[2,2,3,4,4,5,6,686,980,1443]],[1709428947,[2,2,3,4,5,5,6,805,1723,2775]],[1709428948,[2,2,3,4,5,38,572,882,1402,2957]],[1709428949,[2,2,3,4,5,5,6,749,1268,2059]],[1709428950,[2,3,3,4,4,5,5,467,868,1370]],[1709428951,[2,3,3,4,5,5,6,673,976,1654]],[1709428952,[2,3,4,4,5,5,6,701,1088,1727]],[1709428953,[1,2,3,4,4,5,6,729,1057,1635]],[1709428954,[2,3,3,4,4,4,5,635,995,2507]],[1709428955,[2,2,3,4,4,5,6,704,1052,1727]],[1709428956,[1,3,4,5,5,5,6,564,986,1584]],[1709428957,[1,2,3,4,4,4,6,674,1056,2224]],[1709428958,[2,3,4,4,5,5,6,543,893,1697]],[1709428959,[2,2,3,4,4,4,4,455,927,1151]],[1709428960,[2,3,4,5,5,5,6,708,1319,2392]],[1709428961,[2,2,3,4,4,4,5,774,1306,2801]],[1709428962,[2,3,3,4,5,5,6,595,917,1652]],[1709428963,[2,2,3,4,4,25,517,786,1391,1792]],[1709428964,[1,3,3,4,5,5,6,632,959,2822]],[1709428965,[1,2,2,2,2,3,4,522,1086,1459]],[1709428966,[1,2,3,4,4,4,5,455,857,1082]],[1709428967,[1,2,2,3,4,4,5,587,991,1303]],[1709428968,[2,3,3,4,4,5,6,632,991,1641]],[1709428969,[2,2,3,4,5,460,759,937,1514,2862]],[1709428970,[2,3,4,5,5,6,8,737,988,2289]],[1709428971,[2,2,2,3,3,4,4,616,986,1399]],[1709428972,[2,2,3,4,5,5,6,626,1011,2780]],[1709428973,[2,2,2,3,3,4,4,687,980,1868]],[1709428974,[2,2,3,4,4,5,5,542,905,1188]],[1709428975,[2,2,2,3,4,4,4,552,935,2647]],[1709428976,[2,2,3,4,4,5,6,650,931,1619]],[1709428977,[2,2,3,4,4,4,4,29,862,1809]],[1709428978,[1,2,3,4,4,4,5,491,930,1331]],[1709428979,[2,2,2,3,4,4,5,627,1294,2069]],[1709428980,[2,2,3,4,4,5,414,771,1277,2415]],[1709428981,[1,2,3,3,4,4,5,629,1061,2893]],[1709428982,[2,2,3,4,4,4,6,691,943,1491]],[1709428983,[2,2,3,4,4,5,5,589,982,2019]],[1709428984,[2,2,3,4,4,5,5,613,960,1370]],[1709428985,[2,2,3,4,4,5,7,662,970,1585]],[1709428986,[2,2,3,4,4,4,6,742,1178,2091]],[1709428987,[2,2,3,4,4,5,6,709,1265,1968]],[1709428988,[2,2,3,4,4,4,5,628,1042,1782]],[1709428989,[2,2,3,4,4,5,6,608,1042,1519]],[1709428990,[2,2,3,4,4,4,5,624,1257,4043]],[1709428991,[1,3,3,4,5,5,6,639,872,966]],[1709428992,[2,3,4,5,5,5,7,702,1072,3568]],[1709428993,[2,2,3,4,5,5,6,500,929,1339]],[1709428994,[2,3,4,5,5,6,15,733,1165,1704]],[1709428995,[2,3,3,4,5,5,6,612,1079,1300]],[1709428996,[2,3,3,4,5,5,6,643,982,1795]],[1709428997,[2,3,3,4,4,4,5,411,931,1557]],[1709428998,[2,3,4,4,4,5,7,574,928,1571]],[1709428999,[1,2,3,4,4,5,5,7,904,1655]],[1709429000,[2,2,3,5,5,6,6,437,1341,1509]],[1709429001,[2,3,4,5,5,5,7,626,1253,1694]],[1709429002,[2,2,3,4,4,4,5,516,937,1407]],[1709429003,[2,3,3,4,4,4,5,487,948,1297]],[1709429004,[2,2,3,4,4,5,6,656,972,1880]],[1709429005,[2,3,3,5,5,5,6,582,808,1814]],[1709429006,[1,2,3,4,4,5,7,700,967,1600]],[1709429007,[1,3,3,4,5,5,539,857,1337,1682]],[1709429008,[1,2,3,4,4,5,6,664,964,2629]],[1709429009,[2,4,4,5,5,6,8,765,955,1652]],[1709429010,[2,2,3,4,4,5,410,745,987,1510]],[1709429011,[2,3,4,5,5,5,6,535,968,1370]],[1709429012,[2,2,2,3,3,4,6,716,981,1583]],[1709429013,[2,3,4,5,5,5,7,554,988,1993]],[1709429014,[2,2,2,3,3,3,5,578,962,2389]],[1709429015,[1,3,4,4,5,6,8,604,970,1642]],[1709429016,[1,2,3,3,4,4,5,550,834,1340]],[1709429017,[2,3,4,5,5,6,8,710,1143,2037]],[1709429018,[2,2,2,3,3,4,6,606,929,1886]],[1709429019,[2,3,4,5,5,6,6,658,945,1728]],[1709429020,[2,2,3,4,4,5,6,755,974,1840]],[1709429021,[2,3,3,4,4,6,93,683,1059,2447]],[1709429022,[1,2,3,3,4,4,6,550,1530,2419]],[1709429023,[2,3,4,5,6,8,484,806,1206,2346]],[1709429024,[2,3,3,4,4,5,6,610,843,1285]],[1709429025,[1,3,4,5,5,6,489,790,1464,1986]],[1709429026,[2,2,3,4,4,5,6,620,911,1546]],[1709429027,[2,2,3,4,5,6,8,790,1020,1347]],[1709429028,[2,2,3,4,5,5,6,530,954,1334]],[1709429029,[2,3,3,4,5,5,6,524,980,1564]],[1709429030,[1,2,3,4,4,5,6,620,974,1468]],[1709429031,[2,2,3,4,5,6,7,677,998,2077]],[1709429032,[1,2,3,4,5,6,6,742,980,1345]],[1709429033,[2,2,2,4,4,5,6,626,1083,1484]],[1709429034,[2,2,3,4,5,5,6,643,991,1536]],[1709429035,[2,2,2,4,4,4,5,473,921,1003]],[1709429036,[1,2,3,4,5,5,6,584,1413,1559]],[1709429037,[2,2,3,4,4,5,6,567,926,1326]],[1709429038,[1,2,3,5,5,6,6,435,748,1882]],[1709429039,[1,2,2,3,3,4,6,697,1130,1577]],[1709429040,[2,2,3,5,5,6,458,756,995,1445]],[1709429041,[2,2,2,3,3,4,6,532,951,1206]],[1709429042,[1,2,3,4,4,5,6,478,786,1334]],[1709429043,[2,2,3,4,4,5,7,719,1297,1829]],[1709429044,[2,3,3,4,5,5,7,678,1050,1458]],[1709429045,[2,2,3,4,4,4,5,638,1131,1476]],[1709429046,[2,2,3,4,5,5,6,525,1527,2269]],[1709429047,[2,2,3,4,4,4,5,577,997,1769]],[1709429048,[1,2,3,4,4,5,7,668,997,1491]],[1709429049,[1,2,2,3,3,3,4,518,952,1523]],[1709429050,[1,2,2,3,4,4,5,605,937,1377]],[1709429051,[2,2,3,4,4,4,7,629,894,1497]],[1709429052,[2,3,3,4,4,5,6,455,941,1513]],[1709429053,[1,2,2,3,4,4,6,571,956,1698]],[1709429054,[2,3,3,4,5,5,6,570,980,1629]],[1709429055,[2,2,3,4,4,5,7,607,1220,1782]],[1709429056,[2,3,4,5,5,6,9,682,922,1440]],[1709429057,[2,2,2,3,3,4,4,627,872,985]]]);
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([[1709428810,[25,25,0]],[1709428811,[0,0,0]],[1709428812,[1,1,0]],[1709428813,[25,25,0]],[1709428814,[0,0,0]],[1709428815,[1,1,0]],[1709428816,[71,71,0]],[1709428817,[3,3,0]],[1709428818,[6,6,0]],[1709428819,[9,9,0]],[1709428820,[11,11,0]],[1709428821,[13,13,0]],[1709428822,[18,18,0]],[1709428823,[19,19,0]],[1709428824,[24,24,0]],[1709428825,[26,26,0]],[1709428826,[27,27,0]],[1709428827,[32,32,0]],[1709428828,[34,34,0]],[1709428829,[37,37,0]],[1709428830,[39,39,0]],[1709428831,[43,43,0]],[1709428832,[44,44,0]],[1709428833,[48,48,0]],[1709428834,[50,50,0]],[1709428835,[54,54,0]],[1709428836,[57,57,0]],[1709428837,[60,60,0]],[1709428838,[61,61,0]],[1709428839,[65,65,0]],[1709428840,[67,67,0]],[1709428841,[70,70,0]],[1709428842,[74,74,0]],[1709428843,[76,76,0]],[1709428844,[80,80,0]],[1709428845,[81,81,0]],[1709428846,[84,84,0]],[1709428847,[87,87,0]],[1709428848,[91,91,0]],[1709428849,[92,92,0]],[1709428850,[96,96,0]],[1709428851,[98,98,0]],[1709428852,[101,101,0]],[1709428853,[105,105,0]],[1709428854,[107,107,0]],[1709428855,[110,110,0]],[1709428856,[113,113,0]],[1709428857,[115,115,0]],[1709428858,[119,119,0]],[1709428859,[121,121,0]],[1709428860,[124,124,0]],[1709428861,[126,126,0]],[1709428862,[129,129,0]],[1709428863,[133,133,0]],[1709428864,[134,134,0]],[1709428865,[138,138,0]],[1709428866,[141,141,0]],[1709428867,[143,143,0]],[1709428868,[146,146,0]],[1709428869,[149,149,0]],[1709428870,[152,152,0]],[1709428871,[154,154,0]],[1709428872,[158,158,0]],[1709428873,[160,160,0]],[1709428874,[164,164,0]],[1709428875,[165,165,0]],[1709428876,[170,170,0]],[1709428877,[172,172,0]],[1709428878,[173,173,0]],[1709428879,[176,176,0]],[1709428880,[182,182,0]],[1709428881,[183,183,0]],[1709428882,[185,185,0]],[1709428883,[189,189,0]],[1709428884,[191,191,0]],[1709428885,[194,194,0]],[1709428886,[196,196,0]],[1709428887,[200,200,0]],[1709428888,[202,202,0]],[1709428889,[206,206,0]],[1709428890,[207,207,0]],[1709428891,[211,211,0]],[1709428892,[213,213,0]],[1709428893,[217,217,0]],[1709428894,[220,220,0]],[1709428895,[223,223,0]],[1709428896,[224,224,0]],[1709428897,[227,227,0]],[1709428898,[230,230,0]],[1709428899,[235,235,0]],[1709428900,[235,235,0]],[1709428901,[239,239,0]],[1709428902,[242,242,0]],[1709428903,[244,244,0]],[1709428904,[248,248,0]],[1709428905,[251,251,0]],[1709428906,[252,252,0]],[1709428907,[256,256,0]],[1709428908,[259,259,0]],[1709428909,[262,262,0]],[1709428910,[264,264,0]],[1709428911,[267,267,0]],[1709428912,[269,269,0]],[1709428913,[272,272,0]],[1709428914,[276,276,0]],[1709428915,[278,278,0]],[1709428916,[282,282,0]],[1709428917,[284,284,0]],[1709428918,[286,286,0]],[1709428919,[290,290,0]],[1709428920,[291,291,0]],[1709428921,[296,296,0]],[1709428922,[298,298,0]],[1709428923,[300,300,0]],[1709428924,[304,304,0]],[1709428925,[306,306,0]],[1709428926,[309,309,0]],[1709428927,[312,312,0]],[1709428928,[315,315,0]],[1709428929,[317,317,0]],[1709428930,[321,321,0]],[1709428931,[322,322,0]],[1709428932,[327,327,0]],[1709428933,[329,329,0]],[1709428934,[332,332,0]],[1709428935,[335,335,0]],[1709428936,[338,338,0]],[1709428937,[340,340,0]],[1709428938,[339,339,0]],[1709428939,[341,341,0]],[1709428940,[339,339,0]],[1709428941,[341,341,0]],[1709428942,[340,340,0]],[1709428943,[340,340,0]],[1709428944,[340,340,0]],[1709428945,[340,340,0]],[1709428946,[340,340,0]],[1709428947,[340,340,0]],[1709428948,[340,340,0]],[1709428949,[340,340,0]],[1709428950,[340,340,0]],[1709428951,[340,340,0]],[1709428952,[340,340,0]],[1709428953,[339,339,0]],[1709428954,[341,341,0]],[1709428955,[340,340,0]],[1709428956,[339,339,0]],[1709428957,[341,341,0]],[1709428958,[340,340,0]],[1709428959,[340,340,0]],[1709428960,[340,340,0]],[1709428961,[340,340,0]],[1709428962,[339,339,0]],[1709428963,[341,341,0]],[1709428964,[339,339,0]],[1709428965,[340,340,0]],[1709428966,[340,340,0]],[1709428967,[341,341,0]],[1709428968,[339,339,0]],[1709428969,[341,341,0]],[1709428970,[340,340,0]],[1709428971,[340,340,0]],[1709428972,[340,340,0]],[1709428973,[340,340,0]],[1709428974,[340,340,0]],[1709428975,[340,340,0]],[1709428976,[340,340,0]],[1709428977,[340,340,0]],[1709428978,[339,339,0]],[1709428979,[341,341,0]],[1709428980,[339,339,0]],[1709428981,[341,341,0]],[1709428982,[340,340,0]],[1709428983,[340,340,0]],[1709428984,[340,340,0]],[1709428985,[340,340,0]],[1709428986,[340,340,0]],[1709428987,[340,340,0]],[1709428988,[340,340,0]],[1709428989,[340,340,0]],[1709428990,[340,340,0]],[1709428991,[339,339,0]],[1709428992,[341,341,0]],[1709428993,[340,340,0]],[1709428994,[340,340,0]],[1709428995,[340,340,0]],[1709428996,[339,339,0]],[1709428997,[341,341,0]],[1709428998,[340,340,0]],[1709428999,[339,339,0]],[1709429000,[341,341,0]],[1709429001,[340,340,0]],[1709429002,[339,339,0]],[1709429003,[341,341,0]],[1709429004,[340,340,0]],[1709429005,[340,340,0]],[1709429006,[339,339,0]],[1709429007,[340,340,0]],[1709429008,[341,341,0]],[1709429009,[340,340,0]],[1709429010,[340,340,0]],[1709429011,[340,340,0]],[1709429012,[340,340,0]],[1709429013,[340,340,0]],[1709429014,[339,339,0]],[1709429015,[340,340,0]],[1709429016,[341,341,0]],[1709429017,[340,340,0]],[1709429018,[340,340,0]],[1709429019,[340,340,0]],[1709429020,[340,340,0]],[1709429021,[339,339,0]],[1709429022,[341,341,0]],[1709429023,[340,340,0]],[1709429024,[340,340,0]],[1709429025,[340,340,0]],[1709429026,[340,340,0]],[1709429027,[340,340,0]],[1709429028,[340,340,0]],[1709429029,[340,340,0]],[1709429030,[340,340,0]],[1709429031,[340,340,0]],[1709429032,[339,339,0]],[1709429033,[341,341,0]],[1709429034,[340,340,0]],[1709429035,[340,340,0]],[1709429036,[339,339,0]],[1709429037,[341,341,0]],[1709429038,[339,339,0]],[1709429039,[341,341,0]],[1709429040,[340,340,0]],[1709429041,[340,340,0]],[1709429042,[340,340,0]],[1709429043,[340,340,0]],[1709429044,[340,340,0]],[1709429045,[340,340,0]],[1709429046,[340,340,0]],[1709429047,[340,340,0]],[1709429048,[339,339,0]],[1709429049,[340,340,0]],[1709429050,[341,341,0]],[1709429051,[340,340,0]],[1709429052,[340,340,0]],[1709429053,[339,339,0]],[1709429054,[341,341,0]],[1709429055,[340,340,0]],[1709429056,[340,340,0]],[1709429057,[163,163,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,
text : '1m'
}, {
type : 'minute',
count : 10,
text : '10m'
}, {
type : 'hour',
count : 1,
text : '1h'
}, {
type : 'all',
count : 1,
text : 'All'
}
],
selected : 3,
inputEnabled : false
},
plotOptions: {
series: {
dataGrouping: { enabled: false }
},
area: {
stacking: 'normal'
}
},
xAxis: {
type: 'datetime',
ordinal: false,
maxZoom: 10000 // three days
},
yAxis:[