-
Notifications
You must be signed in to change notification settings - Fork 923
/
Copy pathindex.html
1195 lines (1125 loc) · 101 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-02-29 15:52:33 GMT</span>
</span>
<span class="simulation-information-item">
<span class="simulation-information-label">Duration: </span>
<span>4m 8s </span>
</span>
<span class="simulation-tooltip simulation-information-item description" title="Description" data-content="Rinha de Backend - 2024/Q1: Crébito - thiper01-django">
<span class="simulation-information-label">Description: </span>
<span>Rinha de Backend - 2024/Q1: Crébito - thiper01-django</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">j.i.IOException: Premature close<span class="value" style="display:none">0</span></td>
<td class="value error-col-2 total ko">35280</td>
<td class="value error-col-3 total ko">100 %</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: [
[1709221953000,0],[1709221954000,0],[1709221955000,0],[1709221956000,0],[1709221957000,1],[1709221958000,2],[1709221959000,2],[1709221960000,4],[1709221961000,4],[1709221962000,5],[1709221963000,6],[1709221964000,7],[1709221965000,8],[1709221966000,8],[1709221967000,10],[1709221968000,10],[1709221969000,12],[1709221970000,12],[1709221971000,14],[1709221972000,14],[1709221973000,15],[1709221974000,16],[1709221975000,17],[1709221976000,17],[1709221977000,19],[1709221978000,20],[1709221979000,20],[1709221980000,22],[1709221981000,22],[1709221982000,23],[1709221983000,25],[1709221984000,25],[1709221985000,26],[1709221986000,26],[1709221987000,28],[1709221988000,29],[1709221989000,30],[1709221990000,30],[1709221991000,32],[1709221992000,32],[1709221993000,33],[1709221994000,34],[1709221995000,35],[1709221996000,36],[1709221997000,37],[1709221998000,38],[1709221999000,39],[1709222000000,39],[1709222001000,41],[1709222002000,41],[1709222003000,43],[1709222004000,43],[1709222005000,44],[1709222006000,45],[1709222007000,47],[1709222008000,50],[1709222009000,56],[1709222010000,83],[1709222011000,106],[1709222012000,128],[1709222013000,139],[1709222014000,158],[1709222015000,169],[1709222016000,192],[1709222017000,203],[1709222018000,222],[1709222019000,220],[1709222020000,227],[1709222021000,228],[1709222022000,226],[1709222023000,230],[1709222024000,234],[1709222025000,231],[1709222026000,230],[1709222027000,230],[1709222028000,225],[1709222029000,228],[1709222030000,227],[1709222031000,234],[1709222032000,233],[1709222033000,236],[1709222034000,235],[1709222035000,237],[1709222036000,240],[1709222037000,237],[1709222038000,241],[1709222039000,243],[1709222040000,240],[1709222041000,237],[1709222042000,237],[1709222043000,239],[1709222044000,241],[1709222045000,247],[1709222046000,239],[1709222047000,240],[1709222048000,241],[1709222049000,240],[1709222050000,244],[1709222051000,254],[1709222052000,257],[1709222053000,260],[1709222054000,260],[1709222055000,258],[1709222056000,260],[1709222057000,255],[1709222058000,258],[1709222059000,257],[1709222060000,259],[1709222061000,259],[1709222062000,259],[1709222063000,260],[1709222064000,258],[1709222065000,260],[1709222066000,261],[1709222067000,264],[1709222068000,265],[1709222069000,261],[1709222070000,262],[1709222071000,255],[1709222072000,252],[1709222073000,256],[1709222074000,256],[1709222075000,265],[1709222076000,276],[1709222077000,279],[1709222078000,279],[1709222079000,276],[1709222080000,278],[1709222081000,278],[1709222082000,282],[1709222083000,283],[1709222084000,276],[1709222085000,281],[1709222086000,266],[1709222087000,267],[1709222088000,264],[1709222089000,258],[1709222090000,253],[1709222091000,248],[1709222092000,239],[1709222093000,241],[1709222094000,246],[1709222095000,251],[1709222096000,251],[1709222097000,254],[1709222098000,257],[1709222099000,256],[1709222100000,264],[1709222101000,261],[1709222102000,258],[1709222103000,253],[1709222104000,250],[1709222105000,247],[1709222106000,246],[1709222107000,241],[1709222108000,243],[1709222109000,240],[1709222110000,238],[1709222111000,254],[1709222112000,252],[1709222113000,249],[1709222114000,254],[1709222115000,250],[1709222116000,243],[1709222117000,245],[1709222118000,242],[1709222119000,253],[1709222120000,253],[1709222121000,264],[1709222122000,266],[1709222123000,261],[1709222124000,266],[1709222125000,265],[1709222126000,263],[1709222127000,257],[1709222128000,245],[1709222129000,236],[1709222130000,244],[1709222131000,247],[1709222132000,257],[1709222133000,260],[1709222134000,254],[1709222135000,259],[1709222136000,263],[1709222137000,256],[1709222138000,251],[1709222139000,256],[1709222140000,257],[1709222141000,252],[1709222142000,253],[1709222143000,256],[1709222144000,246],[1709222145000,242],[1709222146000,243],[1709222147000,236],[1709222148000,244],[1709222149000,246],[1709222150000,253],[1709222151000,253],[1709222152000,251],[1709222153000,249],[1709222154000,240],[1709222155000,246],[1709222156000,245],[1709222157000,254],[1709222158000,259],[1709222159000,261],[1709222160000,253],[1709222161000,245],[1709222162000,239],[1709222163000,242],[1709222164000,246],[1709222165000,251],[1709222166000,248],[1709222167000,247],[1709222168000,252],[1709222169000,247],[1709222170000,248],[1709222171000,236],[1709222172000,227],[1709222173000,224],[1709222174000,224],[1709222175000,226],[1709222176000,226],[1709222177000,234],[1709222178000,234],[1709222179000,251],[1709222180000,253],[1709222181000,255],[1709222182000,258],[1709222183000,258],[1709222184000,254],[1709222185000,245],[1709222186000,248],[1709222187000,252],[1709222188000,245],[1709222189000,255],[1709222190000,255],[1709222191000,243],[1709222192000,240],[1709222193000,236],[1709222194000,232],[1709222195000,232],[1709222196000,229],[1709222197000,236],[1709222198000,141],[1709222199000,107],[1709222200000,79],[1709222201000,33]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#68b65c',
name: 'débitos',
data: [
[1709221953000,0],[1709221954000,0],[1709221955000,0],[1709221956000,0],[1709221957000,1],[1709221958000,2],[1709221959000,4],[1709221960000,6],[1709221961000,7],[1709221962000,9],[1709221963000,11],[1709221964000,13],[1709221965000,15],[1709221966000,16],[1709221967000,19],[1709221968000,20],[1709221969000,22],[1709221970000,24],[1709221971000,25],[1709221972000,28],[1709221973000,29],[1709221974000,31],[1709221975000,33],[1709221976000,35],[1709221977000,37],[1709221978000,38],[1709221979000,40],[1709221980000,42],[1709221981000,44],[1709221982000,46],[1709221983000,47],[1709221984000,51],[1709221985000,52],[1709221986000,54],[1709221987000,56],[1709221988000,57],[1709221989000,60],[1709221990000,61],[1709221991000,63],[1709221992000,65],[1709221993000,67],[1709221994000,68],[1709221995000,69],[1709221996000,72],[1709221997000,74],[1709221998000,74],[1709221999000,77],[1709222000000,79],[1709222001000,80],[1709222002000,82],[1709222003000,84],[1709222004000,86],[1709222005000,88],[1709222006000,89],[1709222007000,94],[1709222008000,99],[1709222009000,117],[1709222010000,165],[1709222011000,212],[1709222012000,259],[1709222013000,287],[1709222014000,317],[1709222015000,342],[1709222016000,373],[1709222017000,414],[1709222018000,439],[1709222019000,449],[1709222020000,447],[1709222021000,449],[1709222022000,456],[1709222023000,453],[1709222024000,450],[1709222025000,457],[1709222026000,459],[1709222027000,458],[1709222028000,469],[1709222029000,468],[1709222030000,471],[1709222031000,467],[1709222032000,471],[1709222033000,474],[1709222034000,476],[1709222035000,477],[1709222036000,474],[1709222037000,480],[1709222038000,476],[1709222039000,479],[1709222040000,484],[1709222041000,487],[1709222042000,490],[1709222043000,494],[1709222044000,492],[1709222045000,491],[1709222046000,498],[1709222047000,502],[1709222048000,504],[1709222049000,510],[1709222050000,508],[1709222051000,499],[1709222052000,500],[1709222053000,500],[1709222054000,502],[1709222055000,506],[1709222056000,508],[1709222057000,515],[1709222058000,514],[1709222059000,519],[1709222060000,519],[1709222061000,522],[1709222062000,527],[1709222063000,528],[1709222064000,534],[1709222065000,535],[1709222066000,538],[1709222067000,537],[1709222068000,537],[1709222069000,549],[1709222070000,548],[1709222071000,561],[1709222072000,567],[1709222073000,564],[1709222074000,570],[1709222075000,565],[1709222076000,559],[1709222077000,562],[1709222078000,562],[1709222079000,565],[1709222080000,563],[1709222081000,563],[1709222082000,559],[1709222083000,558],[1709222084000,565],[1709222085000,560],[1709222086000,575],[1709222087000,574],[1709222088000,577],[1709222089000,583],[1709222090000,588],[1709222091000,593],[1709222092000,602],[1709222093000,600],[1709222094000,595],[1709222095000,590],[1709222096000,590],[1709222097000,587],[1709222098000,584],[1709222099000,585],[1709222100000,577],[1709222101000,580],[1709222102000,583],[1709222103000,588],[1709222104000,591],[1709222105000,593],[1709222106000,594],[1709222107000,599],[1709222108000,599],[1709222109000,601],[1709222110000,603],[1709222111000,587],[1709222112000,589],[1709222113000,592],[1709222114000,587],[1709222115000,591],[1709222116000,598],[1709222117000,596],[1709222118000,599],[1709222119000,587],[1709222120000,587],[1709222121000,576],[1709222122000,573],[1709222123000,579],[1709222124000,574],[1709222125000,575],[1709222126000,575],[1709222127000,580],[1709222128000,592],[1709222129000,601],[1709222130000,594],[1709222131000,591],[1709222132000,582],[1709222133000,578],[1709222134000,584],[1709222135000,581],[1709222136000,577],[1709222137000,585],[1709222138000,589],[1709222139000,584],[1709222140000,583],[1709222141000,588],[1709222142000,588],[1709222143000,584],[1709222144000,594],[1709222145000,597],[1709222146000,596],[1709222147000,601],[1709222148000,594],[1709222149000,592],[1709222150000,586],[1709222151000,588],[1709222152000,590],[1709222153000,592],[1709222154000,601],[1709222155000,594],[1709222156000,595],[1709222157000,586],[1709222158000,581],[1709222159000,579],[1709222160000,588],[1709222161000,596],[1709222162000,602],[1709222163000,599],[1709222164000,595],[1709222165000,590],[1709222166000,593],[1709222167000,594],[1709222168000,588],[1709222169000,593],[1709222170000,592],[1709222171000,604],[1709222172000,613],[1709222173000,616],[1709222174000,613],[1709222175000,610],[1709222176000,610],[1709222177000,603],[1709222178000,605],[1709222179000,589],[1709222180000,588],[1709222181000,586],[1709222182000,583],[1709222183000,583],[1709222184000,587],[1709222185000,596],[1709222186000,592],[1709222187000,588],[1709222188000,595],[1709222189000,585],[1709222190000,585],[1709222191000,598],[1709222192000,601],[1709222193000,604],[1709222194000,608],[1709222195000,607],[1709222196000,610],[1709222197000,595],[1709222198000,369],[1709222199000,271],[1709222200000,176],[1709222201000,75]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#f15b4f',
name: 'extratos',
data: [
[1709221953000,0],[1709221954000,0],[1709221955000,0],[1709221956000,0],[1709221957000,1],[1709221958000,2],[1709221959000,1],[1709221960000,1],[1709221961000,1],[1709221962000,1],[1709221963000,2],[1709221964000,1],[1709221965000,2],[1709221966000,2],[1709221967000,1],[1709221968000,2],[1709221969000,2],[1709221970000,2],[1709221971000,2],[1709221972000,2],[1709221973000,2],[1709221974000,2],[1709221975000,3],[1709221976000,2],[1709221977000,3],[1709221978000,2],[1709221979000,3],[1709221980000,2],[1709221981000,3],[1709221982000,3],[1709221983000,3],[1709221984000,3],[1709221985000,3],[1709221986000,3],[1709221987000,3],[1709221988000,4],[1709221989000,3],[1709221990000,3],[1709221991000,4],[1709221992000,3],[1709221993000,4],[1709221994000,4],[1709221995000,4],[1709221996000,4],[1709221997000,4],[1709221998000,4],[1709221999000,4],[1709222000000,4],[1709222001000,4],[1709222002000,4],[1709222003000,5],[1709222004000,4],[1709222005000,5],[1709222006000,5],[1709222007000,5],[1709222008000,6],[1709222009000,6],[1709222010000,8],[1709222011000,10],[1709222012000,12],[1709222013000,13],[1709222014000,15],[1709222015000,17],[1709222016000,19],[1709222017000,20],[1709222018000,21],[1709222019000,18],[1709222020000,15],[1709222021000,16],[1709222022000,13],[1709222023000,15],[1709222024000,17],[1709222025000,16],[1709222026000,17],[1709222027000,17],[1709222028000,18],[1709222029000,19],[1709222030000,19],[1709222031000,20],[1709222032000,18],[1709222033000,17],[1709222034000,18],[1709222035000,18],[1709222036000,20],[1709222037000,21],[1709222038000,22],[1709222039000,22],[1709222040000,23],[1709222041000,24],[1709222042000,23],[1709222043000,23],[1709222044000,23],[1709222045000,23],[1709222046000,25],[1709222047000,23],[1709222048000,23],[1709222049000,22],[1709222050000,22],[1709222051000,23],[1709222052000,22],[1709222053000,22],[1709222054000,23],[1709222055000,24],[1709222056000,23],[1709222057000,24],[1709222058000,23],[1709222059000,24],[1709222060000,23],[1709222061000,24],[1709222062000,22],[1709222063000,22],[1709222064000,21],[1709222065000,21],[1709222066000,20],[1709222067000,22],[1709222068000,23],[1709222069000,19],[1709222070000,19],[1709222071000,19],[1709222072000,17],[1709222073000,19],[1709222074000,16],[1709222075000,13],[1709222076000,12],[1709222077000,10],[1709222078000,10],[1709222079000,10],[1709222080000,10],[1709222081000,10],[1709222082000,10],[1709222083000,10],[1709222084000,10],[1709222085000,10],[1709222086000,10],[1709222087000,10],[1709222088000,10],[1709222089000,10],[1709222090000,10],[1709222091000,10],[1709222092000,10],[1709222093000,10],[1709222094000,10],[1709222095000,10],[1709222096000,10],[1709222097000,10],[1709222098000,10],[1709222099000,10],[1709222100000,10],[1709222101000,10],[1709222102000,10],[1709222103000,10],[1709222104000,10],[1709222105000,11],[1709222106000,11],[1709222107000,11],[1709222108000,11],[1709222109000,10],[1709222110000,10],[1709222111000,10],[1709222112000,10],[1709222113000,10],[1709222114000,10],[1709222115000,10],[1709222116000,10],[1709222117000,10],[1709222118000,10],[1709222119000,11],[1709222120000,11],[1709222121000,11],[1709222122000,12],[1709222123000,11],[1709222124000,11],[1709222125000,11],[1709222126000,13],[1709222127000,14],[1709222128000,14],[1709222129000,14],[1709222130000,13],[1709222131000,13],[1709222132000,12],[1709222133000,13],[1709222134000,13],[1709222135000,11],[1709222136000,11],[1709222137000,10],[1709222138000,11],[1709222139000,11],[1709222140000,11],[1709222141000,11],[1709222142000,10],[1709222143000,11],[1709222144000,12],[1709222145000,12],[1709222146000,12],[1709222147000,14],[1709222148000,13],[1709222149000,13],[1709222150000,12],[1709222151000,10],[1709222152000,10],[1709222153000,10],[1709222154000,10],[1709222155000,11],[1709222156000,11],[1709222157000,11],[1709222158000,11],[1709222159000,11],[1709222160000,10],[1709222161000,10],[1709222162000,10],[1709222163000,10],[1709222164000,10],[1709222165000,10],[1709222166000,10],[1709222167000,10],[1709222168000,11],[1709222169000,11],[1709222170000,11],[1709222171000,11],[1709222172000,11],[1709222173000,11],[1709222174000,14],[1709222175000,15],[1709222176000,15],[1709222177000,14],[1709222178000,12],[1709222179000,11],[1709222180000,10],[1709222181000,10],[1709222182000,10],[1709222183000,10],[1709222184000,10],[1709222185000,10],[1709222186000,11],[1709222187000,11],[1709222188000,11],[1709222189000,11],[1709222190000,11],[1709222191000,10],[1709222192000,10],[1709222193000,11],[1709222194000,11],[1709222195000,12],[1709222196000,12],[1709222197000,11],[1709222198000,1],[1709222199000,0],[1709222200000,0],[1709222201000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FFDD00',
name: 'validações',
data: [
[1709221953000,0],[1709221954000,0],[1709221955000,0],[1709221956000,5],[1709221957000,5],[1709221958000,0],[1709221959000,0],[1709221960000,0],[1709221961000,0],[1709221962000,0],[1709221963000,0],[1709221964000,0],[1709221965000,0],[1709221966000,0],[1709221967000,0],[1709221968000,0],[1709221969000,0],[1709221970000,0],[1709221971000,0],[1709221972000,0],[1709221973000,0],[1709221974000,0],[1709221975000,0],[1709221976000,0],[1709221977000,0],[1709221978000,0],[1709221979000,0],[1709221980000,0],[1709221981000,0],[1709221982000,0],[1709221983000,0],[1709221984000,0],[1709221985000,0],[1709221986000,0],[1709221987000,0],[1709221988000,0],[1709221989000,0],[1709221990000,0],[1709221991000,0],[1709221992000,0],[1709221993000,0],[1709221994000,0],[1709221995000,0],[1709221996000,0],[1709221997000,0],[1709221998000,0],[1709221999000,0],[1709222000000,0],[1709222001000,0],[1709222002000,0],[1709222003000,0],[1709222004000,0],[1709222005000,0],[1709222006000,0],[1709222007000,0],[1709222008000,0],[1709222009000,0],[1709222010000,0],[1709222011000,0],[1709222012000,0],[1709222013000,0],[1709222014000,0],[1709222015000,0],[1709222016000,0],[1709222017000,0],[1709222018000,0],[1709222019000,0],[1709222020000,0],[1709222021000,0],[1709222022000,0],[1709222023000,0],[1709222024000,0],[1709222025000,0],[1709222026000,0],[1709222027000,0],[1709222028000,0],[1709222029000,0],[1709222030000,0],[1709222031000,0],[1709222032000,0],[1709222033000,0],[1709222034000,0],[1709222035000,0],[1709222036000,0],[1709222037000,0],[1709222038000,0],[1709222039000,0],[1709222040000,0],[1709222041000,0],[1709222042000,0],[1709222043000,0],[1709222044000,0],[1709222045000,0],[1709222046000,0],[1709222047000,0],[1709222048000,0],[1709222049000,0],[1709222050000,0],[1709222051000,0],[1709222052000,0],[1709222053000,0],[1709222054000,0],[1709222055000,0],[1709222056000,0],[1709222057000,0],[1709222058000,0],[1709222059000,0],[1709222060000,0],[1709222061000,0],[1709222062000,0],[1709222063000,0],[1709222064000,0],[1709222065000,0],[1709222066000,0],[1709222067000,0],[1709222068000,0],[1709222069000,0],[1709222070000,0],[1709222071000,0],[1709222072000,0],[1709222073000,0],[1709222074000,0],[1709222075000,0],[1709222076000,0],[1709222077000,0],[1709222078000,0],[1709222079000,0],[1709222080000,0],[1709222081000,0],[1709222082000,0],[1709222083000,0],[1709222084000,0],[1709222085000,0],[1709222086000,0],[1709222087000,0],[1709222088000,0],[1709222089000,0],[1709222090000,0],[1709222091000,0],[1709222092000,0],[1709222093000,0],[1709222094000,0],[1709222095000,0],[1709222096000,0],[1709222097000,0],[1709222098000,0],[1709222099000,0],[1709222100000,0],[1709222101000,0],[1709222102000,0],[1709222103000,0],[1709222104000,0],[1709222105000,0],[1709222106000,0],[1709222107000,0],[1709222108000,0],[1709222109000,0],[1709222110000,0],[1709222111000,0],[1709222112000,0],[1709222113000,0],[1709222114000,0],[1709222115000,0],[1709222116000,0],[1709222117000,0],[1709222118000,0],[1709222119000,0],[1709222120000,0],[1709222121000,0],[1709222122000,0],[1709222123000,0],[1709222124000,0],[1709222125000,0],[1709222126000,0],[1709222127000,0],[1709222128000,0],[1709222129000,0],[1709222130000,0],[1709222131000,0],[1709222132000,0],[1709222133000,0],[1709222134000,0],[1709222135000,0],[1709222136000,0],[1709222137000,0],[1709222138000,0],[1709222139000,0],[1709222140000,0],[1709222141000,0],[1709222142000,0],[1709222143000,0],[1709222144000,0],[1709222145000,0],[1709222146000,0],[1709222147000,0],[1709222148000,0],[1709222149000,0],[1709222150000,0],[1709222151000,0],[1709222152000,0],[1709222153000,0],[1709222154000,0],[1709222155000,0],[1709222156000,0],[1709222157000,0],[1709222158000,0],[1709222159000,0],[1709222160000,0],[1709222161000,0],[1709222162000,0],[1709222163000,0],[1709222164000,0],[1709222165000,0],[1709222166000,0],[1709222167000,0],[1709222168000,0],[1709222169000,0],[1709222170000,0],[1709222171000,0],[1709222172000,0],[1709222173000,0],[1709222174000,0],[1709222175000,0],[1709222176000,0],[1709222177000,0],[1709222178000,0],[1709222179000,0],[1709222180000,0],[1709222181000,0],[1709222182000,0],[1709222183000,0],[1709222184000,0],[1709222185000,0],[1709222186000,0],[1709222187000,0],[1709222188000,0],[1709222189000,0],[1709222190000,0],[1709222191000,0],[1709222192000,0],[1709222193000,0],[1709222194000,0],[1709222195000,0],[1709222196000,0],[1709222197000,0],[1709222198000,0],[1709222199000,0],[1709222200000,0],[1709222201000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00D5FF',
name: 'validação HTTP 404',
data: [
[1709221953000,0],[1709221954000,0],[1709221955000,0],[1709221956000,1],[1709221957000,1],[1709221958000,0],[1709221959000,0],[1709221960000,0],[1709221961000,0],[1709221962000,0],[1709221963000,0],[1709221964000,0],[1709221965000,0],[1709221966000,0],[1709221967000,0],[1709221968000,0],[1709221969000,0],[1709221970000,0],[1709221971000,0],[1709221972000,0],[1709221973000,0],[1709221974000,0],[1709221975000,0],[1709221976000,0],[1709221977000,0],[1709221978000,0],[1709221979000,0],[1709221980000,0],[1709221981000,0],[1709221982000,0],[1709221983000,0],[1709221984000,0],[1709221985000,0],[1709221986000,0],[1709221987000,0],[1709221988000,0],[1709221989000,0],[1709221990000,0],[1709221991000,0],[1709221992000,0],[1709221993000,0],[1709221994000,0],[1709221995000,0],[1709221996000,0],[1709221997000,0],[1709221998000,0],[1709221999000,0],[1709222000000,0],[1709222001000,0],[1709222002000,0],[1709222003000,0],[1709222004000,0],[1709222005000,0],[1709222006000,0],[1709222007000,0],[1709222008000,0],[1709222009000,0],[1709222010000,0],[1709222011000,0],[1709222012000,0],[1709222013000,0],[1709222014000,0],[1709222015000,0],[1709222016000,0],[1709222017000,0],[1709222018000,0],[1709222019000,0],[1709222020000,0],[1709222021000,0],[1709222022000,0],[1709222023000,0],[1709222024000,0],[1709222025000,0],[1709222026000,0],[1709222027000,0],[1709222028000,0],[1709222029000,0],[1709222030000,0],[1709222031000,0],[1709222032000,0],[1709222033000,0],[1709222034000,0],[1709222035000,0],[1709222036000,0],[1709222037000,0],[1709222038000,0],[1709222039000,0],[1709222040000,0],[1709222041000,0],[1709222042000,0],[1709222043000,0],[1709222044000,0],[1709222045000,0],[1709222046000,0],[1709222047000,0],[1709222048000,0],[1709222049000,0],[1709222050000,0],[1709222051000,0],[1709222052000,0],[1709222053000,0],[1709222054000,0],[1709222055000,0],[1709222056000,0],[1709222057000,0],[1709222058000,0],[1709222059000,0],[1709222060000,0],[1709222061000,0],[1709222062000,0],[1709222063000,0],[1709222064000,0],[1709222065000,0],[1709222066000,0],[1709222067000,0],[1709222068000,0],[1709222069000,0],[1709222070000,0],[1709222071000,0],[1709222072000,0],[1709222073000,0],[1709222074000,0],[1709222075000,0],[1709222076000,0],[1709222077000,0],[1709222078000,0],[1709222079000,0],[1709222080000,0],[1709222081000,0],[1709222082000,0],[1709222083000,0],[1709222084000,0],[1709222085000,0],[1709222086000,0],[1709222087000,0],[1709222088000,0],[1709222089000,0],[1709222090000,0],[1709222091000,0],[1709222092000,0],[1709222093000,0],[1709222094000,0],[1709222095000,0],[1709222096000,0],[1709222097000,0],[1709222098000,0],[1709222099000,0],[1709222100000,0],[1709222101000,0],[1709222102000,0],[1709222103000,0],[1709222104000,0],[1709222105000,0],[1709222106000,0],[1709222107000,0],[1709222108000,0],[1709222109000,0],[1709222110000,0],[1709222111000,0],[1709222112000,0],[1709222113000,0],[1709222114000,0],[1709222115000,0],[1709222116000,0],[1709222117000,0],[1709222118000,0],[1709222119000,0],[1709222120000,0],[1709222121000,0],[1709222122000,0],[1709222123000,0],[1709222124000,0],[1709222125000,0],[1709222126000,0],[1709222127000,0],[1709222128000,0],[1709222129000,0],[1709222130000,0],[1709222131000,0],[1709222132000,0],[1709222133000,0],[1709222134000,0],[1709222135000,0],[1709222136000,0],[1709222137000,0],[1709222138000,0],[1709222139000,0],[1709222140000,0],[1709222141000,0],[1709222142000,0],[1709222143000,0],[1709222144000,0],[1709222145000,0],[1709222146000,0],[1709222147000,0],[1709222148000,0],[1709222149000,0],[1709222150000,0],[1709222151000,0],[1709222152000,0],[1709222153000,0],[1709222154000,0],[1709222155000,0],[1709222156000,0],[1709222157000,0],[1709222158000,0],[1709222159000,0],[1709222160000,0],[1709222161000,0],[1709222162000,0],[1709222163000,0],[1709222164000,0],[1709222165000,0],[1709222166000,0],[1709222167000,0],[1709222168000,0],[1709222169000,0],[1709222170000,0],[1709222171000,0],[1709222172000,0],[1709222173000,0],[1709222174000,0],[1709222175000,0],[1709222176000,0],[1709222177000,0],[1709222178000,0],[1709222179000,0],[1709222180000,0],[1709222181000,0],[1709222182000,0],[1709222183000,0],[1709222184000,0],[1709222185000,0],[1709222186000,0],[1709222187000,0],[1709222188000,0],[1709222189000,0],[1709222190000,0],[1709222191000,0],[1709222192000,0],[1709222193000,0],[1709222194000,0],[1709222195000,0],[1709222196000,0],[1709222197000,0],[1709222198000,0],[1709222199000,0],[1709222200000,0],[1709222201000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00FF00',
name: 'validação concorrência saldo - 0',
data: [
[1709221953000,0],[1709221954000,0],[1709221955000,1],[1709221956000,0],[1709221957000,0],[1709221958000,0],[1709221959000,0],[1709221960000,0],[1709221961000,0],[1709221962000,0],[1709221963000,0],[1709221964000,0],[1709221965000,0],[1709221966000,0],[1709221967000,0],[1709221968000,0],[1709221969000,0],[1709221970000,0],[1709221971000,0],[1709221972000,0],[1709221973000,0],[1709221974000,0],[1709221975000,0],[1709221976000,0],[1709221977000,0],[1709221978000,0],[1709221979000,0],[1709221980000,0],[1709221981000,0],[1709221982000,0],[1709221983000,0],[1709221984000,0],[1709221985000,0],[1709221986000,0],[1709221987000,0],[1709221988000,0],[1709221989000,0],[1709221990000,0],[1709221991000,0],[1709221992000,0],[1709221993000,0],[1709221994000,0],[1709221995000,0],[1709221996000,0],[1709221997000,0],[1709221998000,0],[1709221999000,0],[1709222000000,0],[1709222001000,0],[1709222002000,0],[1709222003000,0],[1709222004000,0],[1709222005000,0],[1709222006000,0],[1709222007000,0],[1709222008000,0],[1709222009000,0],[1709222010000,0],[1709222011000,0],[1709222012000,0],[1709222013000,0],[1709222014000,0],[1709222015000,0],[1709222016000,0],[1709222017000,0],[1709222018000,0],[1709222019000,0],[1709222020000,0],[1709222021000,0],[1709222022000,0],[1709222023000,0],[1709222024000,0],[1709222025000,0],[1709222026000,0],[1709222027000,0],[1709222028000,0],[1709222029000,0],[1709222030000,0],[1709222031000,0],[1709222032000,0],[1709222033000,0],[1709222034000,0],[1709222035000,0],[1709222036000,0],[1709222037000,0],[1709222038000,0],[1709222039000,0],[1709222040000,0],[1709222041000,0],[1709222042000,0],[1709222043000,0],[1709222044000,0],[1709222045000,0],[1709222046000,0],[1709222047000,0],[1709222048000,0],[1709222049000,0],[1709222050000,0],[1709222051000,0],[1709222052000,0],[1709222053000,0],[1709222054000,0],[1709222055000,0],[1709222056000,0],[1709222057000,0],[1709222058000,0],[1709222059000,0],[1709222060000,0],[1709222061000,0],[1709222062000,0],[1709222063000,0],[1709222064000,0],[1709222065000,0],[1709222066000,0],[1709222067000,0],[1709222068000,0],[1709222069000,0],[1709222070000,0],[1709222071000,0],[1709222072000,0],[1709222073000,0],[1709222074000,0],[1709222075000,0],[1709222076000,0],[1709222077000,0],[1709222078000,0],[1709222079000,0],[1709222080000,0],[1709222081000,0],[1709222082000,0],[1709222083000,0],[1709222084000,0],[1709222085000,0],[1709222086000,0],[1709222087000,0],[1709222088000,0],[1709222089000,0],[1709222090000,0],[1709222091000,0],[1709222092000,0],[1709222093000,0],[1709222094000,0],[1709222095000,0],[1709222096000,0],[1709222097000,0],[1709222098000,0],[1709222099000,0],[1709222100000,0],[1709222101000,0],[1709222102000,0],[1709222103000,0],[1709222104000,0],[1709222105000,0],[1709222106000,0],[1709222107000,0],[1709222108000,0],[1709222109000,0],[1709222110000,0],[1709222111000,0],[1709222112000,0],[1709222113000,0],[1709222114000,0],[1709222115000,0],[1709222116000,0],[1709222117000,0],[1709222118000,0],[1709222119000,0],[1709222120000,0],[1709222121000,0],[1709222122000,0],[1709222123000,0],[1709222124000,0],[1709222125000,0],[1709222126000,0],[1709222127000,0],[1709222128000,0],[1709222129000,0],[1709222130000,0],[1709222131000,0],[1709222132000,0],[1709222133000,0],[1709222134000,0],[1709222135000,0],[1709222136000,0],[1709222137000,0],[1709222138000,0],[1709222139000,0],[1709222140000,0],[1709222141000,0],[1709222142000,0],[1709222143000,0],[1709222144000,0],[1709222145000,0],[1709222146000,0],[1709222147000,0],[1709222148000,0],[1709222149000,0],[1709222150000,0],[1709222151000,0],[1709222152000,0],[1709222153000,0],[1709222154000,0],[1709222155000,0],[1709222156000,0],[1709222157000,0],[1709222158000,0],[1709222159000,0],[1709222160000,0],[1709222161000,0],[1709222162000,0],[1709222163000,0],[1709222164000,0],[1709222165000,0],[1709222166000,0],[1709222167000,0],[1709222168000,0],[1709222169000,0],[1709222170000,0],[1709222171000,0],[1709222172000,0],[1709222173000,0],[1709222174000,0],[1709222175000,0],[1709222176000,0],[1709222177000,0],[1709222178000,0],[1709222179000,0],[1709222180000,0],[1709222181000,0],[1709222182000,0],[1709222183000,0],[1709222184000,0],[1709222185000,0],[1709222186000,0],[1709222187000,0],[1709222188000,0],[1709222189000,0],[1709222190000,0],[1709222191000,0],[1709222192000,0],[1709222193000,0],[1709222194000,0],[1709222195000,0],[1709222196000,0],[1709222197000,0],[1709222198000,0],[1709222199000,0],[1709222200000,0],[1709222201000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#9D00FF',
name: 'validação concorrência transações - c',
data: [
[1709221953000,0],[1709221954000,25],[1709221955000,25],[1709221956000,0],[1709221957000,0],[1709221958000,0],[1709221959000,0],[1709221960000,0],[1709221961000,0],[1709221962000,0],[1709221963000,0],[1709221964000,0],[1709221965000,0],[1709221966000,0],[1709221967000,0],[1709221968000,0],[1709221969000,0],[1709221970000,0],[1709221971000,0],[1709221972000,0],[1709221973000,0],[1709221974000,0],[1709221975000,0],[1709221976000,0],[1709221977000,0],[1709221978000,0],[1709221979000,0],[1709221980000,0],[1709221981000,0],[1709221982000,0],[1709221983000,0],[1709221984000,0],[1709221985000,0],[1709221986000,0],[1709221987000,0],[1709221988000,0],[1709221989000,0],[1709221990000,0],[1709221991000,0],[1709221992000,0],[1709221993000,0],[1709221994000,0],[1709221995000,0],[1709221996000,0],[1709221997000,0],[1709221998000,0],[1709221999000,0],[1709222000000,0],[1709222001000,0],[1709222002000,0],[1709222003000,0],[1709222004000,0],[1709222005000,0],[1709222006000,0],[1709222007000,0],[1709222008000,0],[1709222009000,0],[1709222010000,0],[1709222011000,0],[1709222012000,0],[1709222013000,0],[1709222014000,0],[1709222015000,0],[1709222016000,0],[1709222017000,0],[1709222018000,0],[1709222019000,0],[1709222020000,0],[1709222021000,0],[1709222022000,0],[1709222023000,0],[1709222024000,0],[1709222025000,0],[1709222026000,0],[1709222027000,0],[1709222028000,0],[1709222029000,0],[1709222030000,0],[1709222031000,0],[1709222032000,0],[1709222033000,0],[1709222034000,0],[1709222035000,0],[1709222036000,0],[1709222037000,0],[1709222038000,0],[1709222039000,0],[1709222040000,0],[1709222041000,0],[1709222042000,0],[1709222043000,0],[1709222044000,0],[1709222045000,0],[1709222046000,0],[1709222047000,0],[1709222048000,0],[1709222049000,0],[1709222050000,0],[1709222051000,0],[1709222052000,0],[1709222053000,0],[1709222054000,0],[1709222055000,0],[1709222056000,0],[1709222057000,0],[1709222058000,0],[1709222059000,0],[1709222060000,0],[1709222061000,0],[1709222062000,0],[1709222063000,0],[1709222064000,0],[1709222065000,0],[1709222066000,0],[1709222067000,0],[1709222068000,0],[1709222069000,0],[1709222070000,0],[1709222071000,0],[1709222072000,0],[1709222073000,0],[1709222074000,0],[1709222075000,0],[1709222076000,0],[1709222077000,0],[1709222078000,0],[1709222079000,0],[1709222080000,0],[1709222081000,0],[1709222082000,0],[1709222083000,0],[1709222084000,0],[1709222085000,0],[1709222086000,0],[1709222087000,0],[1709222088000,0],[1709222089000,0],[1709222090000,0],[1709222091000,0],[1709222092000,0],[1709222093000,0],[1709222094000,0],[1709222095000,0],[1709222096000,0],[1709222097000,0],[1709222098000,0],[1709222099000,0],[1709222100000,0],[1709222101000,0],[1709222102000,0],[1709222103000,0],[1709222104000,0],[1709222105000,0],[1709222106000,0],[1709222107000,0],[1709222108000,0],[1709222109000,0],[1709222110000,0],[1709222111000,0],[1709222112000,0],[1709222113000,0],[1709222114000,0],[1709222115000,0],[1709222116000,0],[1709222117000,0],[1709222118000,0],[1709222119000,0],[1709222120000,0],[1709222121000,0],[1709222122000,0],[1709222123000,0],[1709222124000,0],[1709222125000,0],[1709222126000,0],[1709222127000,0],[1709222128000,0],[1709222129000,0],[1709222130000,0],[1709222131000,0],[1709222132000,0],[1709222133000,0],[1709222134000,0],[1709222135000,0],[1709222136000,0],[1709222137000,0],[1709222138000,0],[1709222139000,0],[1709222140000,0],[1709222141000,0],[1709222142000,0],[1709222143000,0],[1709222144000,0],[1709222145000,0],[1709222146000,0],[1709222147000,0],[1709222148000,0],[1709222149000,0],[1709222150000,0],[1709222151000,0],[1709222152000,0],[1709222153000,0],[1709222154000,0],[1709222155000,0],[1709222156000,0],[1709222157000,0],[1709222158000,0],[1709222159000,0],[1709222160000,0],[1709222161000,0],[1709222162000,0],[1709222163000,0],[1709222164000,0],[1709222165000,0],[1709222166000,0],[1709222167000,0],[1709222168000,0],[1709222169000,0],[1709222170000,0],[1709222171000,0],[1709222172000,0],[1709222173000,0],[1709222174000,0],[1709222175000,0],[1709222176000,0],[1709222177000,0],[1709222178000,0],[1709222179000,0],[1709222180000,0],[1709222181000,0],[1709222182000,0],[1709222183000,0],[1709222184000,0],[1709222185000,0],[1709222186000,0],[1709222187000,0],[1709222188000,0],[1709222189000,0],[1709222190000,0],[1709222191000,0],[1709222192000,0],[1709222193000,0],[1709222194000,0],[1709222195000,0],[1709222196000,0],[1709222197000,0],[1709222198000,0],[1709222199000,0],[1709222200000,0],[1709222201000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FF00E1',
name: 'validação concorrência saldo - -25',
data: [
[1709221953000,1],[1709221954000,1],[1709221955000,0],[1709221956000,0],[1709221957000,0],[1709221958000,0],[1709221959000,0],[1709221960000,0],[1709221961000,0],[1709221962000,0],[1709221963000,0],[1709221964000,0],[1709221965000,0],[1709221966000,0],[1709221967000,0],[1709221968000,0],[1709221969000,0],[1709221970000,0],[1709221971000,0],[1709221972000,0],[1709221973000,0],[1709221974000,0],[1709221975000,0],[1709221976000,0],[1709221977000,0],[1709221978000,0],[1709221979000,0],[1709221980000,0],[1709221981000,0],[1709221982000,0],[1709221983000,0],[1709221984000,0],[1709221985000,0],[1709221986000,0],[1709221987000,0],[1709221988000,0],[1709221989000,0],[1709221990000,0],[1709221991000,0],[1709221992000,0],[1709221993000,0],[1709221994000,0],[1709221995000,0],[1709221996000,0],[1709221997000,0],[1709221998000,0],[1709221999000,0],[1709222000000,0],[1709222001000,0],[1709222002000,0],[1709222003000,0],[1709222004000,0],[1709222005000,0],[1709222006000,0],[1709222007000,0],[1709222008000,0],[1709222009000,0],[1709222010000,0],[1709222011000,0],[1709222012000,0],[1709222013000,0],[1709222014000,0],[1709222015000,0],[1709222016000,0],[1709222017000,0],[1709222018000,0],[1709222019000,0],[1709222020000,0],[1709222021000,0],[1709222022000,0],[1709222023000,0],[1709222024000,0],[1709222025000,0],[1709222026000,0],[1709222027000,0],[1709222028000,0],[1709222029000,0],[1709222030000,0],[1709222031000,0],[1709222032000,0],[1709222033000,0],[1709222034000,0],[1709222035000,0],[1709222036000,0],[1709222037000,0],[1709222038000,0],[1709222039000,0],[1709222040000,0],[1709222041000,0],[1709222042000,0],[1709222043000,0],[1709222044000,0],[1709222045000,0],[1709222046000,0],[1709222047000,0],[1709222048000,0],[1709222049000,0],[1709222050000,0],[1709222051000,0],[1709222052000,0],[1709222053000,0],[1709222054000,0],[1709222055000,0],[1709222056000,0],[1709222057000,0],[1709222058000,0],[1709222059000,0],[1709222060000,0],[1709222061000,0],[1709222062000,0],[1709222063000,0],[1709222064000,0],[1709222065000,0],[1709222066000,0],[1709222067000,0],[1709222068000,0],[1709222069000,0],[1709222070000,0],[1709222071000,0],[1709222072000,0],[1709222073000,0],[1709222074000,0],[1709222075000,0],[1709222076000,0],[1709222077000,0],[1709222078000,0],[1709222079000,0],[1709222080000,0],[1709222081000,0],[1709222082000,0],[1709222083000,0],[1709222084000,0],[1709222085000,0],[1709222086000,0],[1709222087000,0],[1709222088000,0],[1709222089000,0],[1709222090000,0],[1709222091000,0],[1709222092000,0],[1709222093000,0],[1709222094000,0],[1709222095000,0],[1709222096000,0],[1709222097000,0],[1709222098000,0],[1709222099000,0],[1709222100000,0],[1709222101000,0],[1709222102000,0],[1709222103000,0],[1709222104000,0],[1709222105000,0],[1709222106000,0],[1709222107000,0],[1709222108000,0],[1709222109000,0],[1709222110000,0],[1709222111000,0],[1709222112000,0],[1709222113000,0],[1709222114000,0],[1709222115000,0],[1709222116000,0],[1709222117000,0],[1709222118000,0],[1709222119000,0],[1709222120000,0],[1709222121000,0],[1709222122000,0],[1709222123000,0],[1709222124000,0],[1709222125000,0],[1709222126000,0],[1709222127000,0],[1709222128000,0],[1709222129000,0],[1709222130000,0],[1709222131000,0],[1709222132000,0],[1709222133000,0],[1709222134000,0],[1709222135000,0],[1709222136000,0],[1709222137000,0],[1709222138000,0],[1709222139000,0],[1709222140000,0],[1709222141000,0],[1709222142000,0],[1709222143000,0],[1709222144000,0],[1709222145000,0],[1709222146000,0],[1709222147000,0],[1709222148000,0],[1709222149000,0],[1709222150000,0],[1709222151000,0],[1709222152000,0],[1709222153000,0],[1709222154000,0],[1709222155000,0],[1709222156000,0],[1709222157000,0],[1709222158000,0],[1709222159000,0],[1709222160000,0],[1709222161000,0],[1709222162000,0],[1709222163000,0],[1709222164000,0],[1709222165000,0],[1709222166000,0],[1709222167000,0],[1709222168000,0],[1709222169000,0],[1709222170000,0],[1709222171000,0],[1709222172000,0],[1709222173000,0],[1709222174000,0],[1709222175000,0],[1709222176000,0],[1709222177000,0],[1709222178000,0],[1709222179000,0],[1709222180000,0],[1709222181000,0],[1709222182000,0],[1709222183000,0],[1709222184000,0],[1709222185000,0],[1709222186000,0],[1709222187000,0],[1709222188000,0],[1709222189000,0],[1709222190000,0],[1709222191000,0],[1709222192000,0],[1709222193000,0],[1709222194000,0],[1709222195000,0],[1709222196000,0],[1709222197000,0],[1709222198000,0],[1709222199000,0],[1709222200000,0],[1709222201000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#AECAEB',
name: 'validação concorrência transações - d',
data: [
[1709221953000,25],[1709221954000,0],[1709221955000,0],[1709221956000,0],[1709221957000,0],[1709221958000,0],[1709221959000,0],[1709221960000,0],[1709221961000,0],[1709221962000,0],[1709221963000,0],[1709221964000,0],[1709221965000,0],[1709221966000,0],[1709221967000,0],[1709221968000,0],[1709221969000,0],[1709221970000,0],[1709221971000,0],[1709221972000,0],[1709221973000,0],[1709221974000,0],[1709221975000,0],[1709221976000,0],[1709221977000,0],[1709221978000,0],[1709221979000,0],[1709221980000,0],[1709221981000,0],[1709221982000,0],[1709221983000,0],[1709221984000,0],[1709221985000,0],[1709221986000,0],[1709221987000,0],[1709221988000,0],[1709221989000,0],[1709221990000,0],[1709221991000,0],[1709221992000,0],[1709221993000,0],[1709221994000,0],[1709221995000,0],[1709221996000,0],[1709221997000,0],[1709221998000,0],[1709221999000,0],[1709222000000,0],[1709222001000,0],[1709222002000,0],[1709222003000,0],[1709222004000,0],[1709222005000,0],[1709222006000,0],[1709222007000,0],[1709222008000,0],[1709222009000,0],[1709222010000,0],[1709222011000,0],[1709222012000,0],[1709222013000,0],[1709222014000,0],[1709222015000,0],[1709222016000,0],[1709222017000,0],[1709222018000,0],[1709222019000,0],[1709222020000,0],[1709222021000,0],[1709222022000,0],[1709222023000,0],[1709222024000,0],[1709222025000,0],[1709222026000,0],[1709222027000,0],[1709222028000,0],[1709222029000,0],[1709222030000,0],[1709222031000,0],[1709222032000,0],[1709222033000,0],[1709222034000,0],[1709222035000,0],[1709222036000,0],[1709222037000,0],[1709222038000,0],[1709222039000,0],[1709222040000,0],[1709222041000,0],[1709222042000,0],[1709222043000,0],[1709222044000,0],[1709222045000,0],[1709222046000,0],[1709222047000,0],[1709222048000,0],[1709222049000,0],[1709222050000,0],[1709222051000,0],[1709222052000,0],[1709222053000,0],[1709222054000,0],[1709222055000,0],[1709222056000,0],[1709222057000,0],[1709222058000,0],[1709222059000,0],[1709222060000,0],[1709222061000,0],[1709222062000,0],[1709222063000,0],[1709222064000,0],[1709222065000,0],[1709222066000,0],[1709222067000,0],[1709222068000,0],[1709222069000,0],[1709222070000,0],[1709222071000,0],[1709222072000,0],[1709222073000,0],[1709222074000,0],[1709222075000,0],[1709222076000,0],[1709222077000,0],[1709222078000,0],[1709222079000,0],[1709222080000,0],[1709222081000,0],[1709222082000,0],[1709222083000,0],[1709222084000,0],[1709222085000,0],[1709222086000,0],[1709222087000,0],[1709222088000,0],[1709222089000,0],[1709222090000,0],[1709222091000,0],[1709222092000,0],[1709222093000,0],[1709222094000,0],[1709222095000,0],[1709222096000,0],[1709222097000,0],[1709222098000,0],[1709222099000,0],[1709222100000,0],[1709222101000,0],[1709222102000,0],[1709222103000,0],[1709222104000,0],[1709222105000,0],[1709222106000,0],[1709222107000,0],[1709222108000,0],[1709222109000,0],[1709222110000,0],[1709222111000,0],[1709222112000,0],[1709222113000,0],[1709222114000,0],[1709222115000,0],[1709222116000,0],[1709222117000,0],[1709222118000,0],[1709222119000,0],[1709222120000,0],[1709222121000,0],[1709222122000,0],[1709222123000,0],[1709222124000,0],[1709222125000,0],[1709222126000,0],[1709222127000,0],[1709222128000,0],[1709222129000,0],[1709222130000,0],[1709222131000,0],[1709222132000,0],[1709222133000,0],[1709222134000,0],[1709222135000,0],[1709222136000,0],[1709222137000,0],[1709222138000,0],[1709222139000,0],[1709222140000,0],[1709222141000,0],[1709222142000,0],[1709222143000,0],[1709222144000,0],[1709222145000,0],[1709222146000,0],[1709222147000,0],[1709222148000,0],[1709222149000,0],[1709222150000,0],[1709222151000,0],[1709222152000,0],[1709222153000,0],[1709222154000,0],[1709222155000,0],[1709222156000,0],[1709222157000,0],[1709222158000,0],[1709222159000,0],[1709222160000,0],[1709222161000,0],[1709222162000,0],[1709222163000,0],[1709222164000,0],[1709222165000,0],[1709222166000,0],[1709222167000,0],[1709222168000,0],[1709222169000,0],[1709222170000,0],[1709222171000,0],[1709222172000,0],[1709222173000,0],[1709222174000,0],[1709222175000,0],[1709222176000,0],[1709222177000,0],[1709222178000,0],[1709222179000,0],[1709222180000,0],[1709222181000,0],[1709222182000,0],[1709222183000,0],[1709222184000,0],[1709222185000,0],[1709222186000,0],[1709222187000,0],[1709222188000,0],[1709222189000,0],[1709222190000,0],[1709222191000,0],[1709222192000,0],[1709222193000,0],[1709222194000,0],[1709222195000,0],[1709222196000,0],[1709222197000,0],[1709222198000,0],[1709222199000,0],[1709222200000,0],[1709222201000,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: ['55', '165', '275', '385', '496', '606', '716', '826', '936', '1046', '1156', '1266', '1377', '1487', '1597', '1707', '1817', '1927', '2037', '2148', '2258', '2368', '2478', '2588', '2698', '2808', '2918', '3029', '3139', '3249', '3359', '3469', '3579', '3689', '3799', '3910', '4020', '4130', '4240', '4350', '4460', '4570', '4681', '4791', '4901', '5011', '5121', '5231', '5341', '5451', '5562', '5672', '5782', '5892', '6002', '6112', '6222', '6332', '6443', '6553', '6663', '6773', '6883', '6993', '7103', '7214', '7324', '7434', '7544', '7654', '7764', '7874', '7984', '8095', '8205', '8315', '8425', '8535', '8645', '8755', '8865', '8976', '9086', '9196', '9306', '9416', '9526', '9636', '9747', '9857', '9967', '10077', '10187', '10297', '10407', '10517', '10628', '10738', '10848', '10958'],
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: [
6.22,0.07,0.03,0.05,0.03,0.05,0.04,0.02,0.02,0.02,0.03,0.03,0.04,0.06,0.08,0.07,0.09,0.09,0.08,0.09,0.06,0.08,0.1,0.07,0.08,0.08,0.05,0.06,0.04,0.05,0.05,0.09,0.26,0.46,1.29,3.2,5.18,6.23,5.04,3.48,2.27,1.42,1.01,0.64,0.46,0.36,0.3,0.23,0.25,0.17,0.14,0.14,0.12,0.14,0.1,0.11,0.11,0.12,0.11,0.11,0.08,0.07,0.05,0.05,0.04,0.05,0.04,0.06,0.04,0.03,0.02,0.02,0.03,0.02,0.01,0.01,0.02,0.01,0.01,0.01,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
],
tooltip: { yDecimals: 0, ySuffix: 'ms' }
},
{
type: 'column',
color: '#f15b4f',
name: 'KO',
data: [
57.36,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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([[1709221953,[62,305,503,617,619,624,627,632,634,634]],[1709221954,[8,8,8,8,8,8,8,8,8,8]],[1709221955,[23,236,339,356,357,359,402,430,435,437]],[1709221956,[6,6,6,6,6,6,6,6,6,6]],[1709221957,[3,8,14,82,92,94,99,104,107,109]],[1709221958,[8,8,9,9,9,9,9,9,9,10]],[1709221959,[7,8,8,9,10,10,10,10,10,11]],[1709221960,[6,7,7,11,11,11,12,14,15,16]],[1709221961,[6,7,7,7,7,7,8,8,8,9]],[1709221962,[6,6,6,7,7,7,9,10,10,11]],[1709221963,[6,6,7,7,7,7,7,8,8,9]],[1709221964,[5,6,6,6,7,7,7,8,8,9]],[1709221965,[5,6,6,7,7,7,7,8,9,9]],[1709221966,[5,6,6,7,8,8,9,9,10,11]],[1709221967,[5,5,6,7,7,7,8,8,9,10]],[1709221968,[5,6,6,7,7,7,7,8,10,11]],[1709221969,[5,6,6,6,7,7,7,8,9,10]],[1709221970,[5,5,6,6,6,7,7,7,7,8]],[1709221971,[5,5,6,7,7,7,7,8,8,8]],[1709221972,[5,6,6,7,7,7,7,8,9,10]],[1709221973,[4,5,6,6,7,7,7,8,9,10]],[1709221974,[4,5,6,6,6,6,6,7,9,9]],[1709221975,[5,5,6,6,6,6,6,7,9,9]],[1709221976,[4,5,5,6,6,6,6,6,7,7]],[1709221977,[4,5,6,6,7,7,7,7,9,9]],[1709221978,[4,5,5,5,6,6,6,8,8,8]],[1709221979,[4,5,5,6,6,6,6,7,7,7]],[1709221980,[4,5,5,6,6,6,7,7,7,8]],[1709221981,[5,5,6,6,6,6,6,7,7,8]],[1709221982,[4,5,6,6,6,6,7,7,7,7]],[1709221983,[4,5,5,6,6,6,6,7,8,10]],[1709221984,[4,5,5,6,6,6,6,7,7,7]],[1709221985,[4,5,5,6,6,6,6,6,7,8]],[1709221986,[4,5,5,6,6,6,6,7,7,8]],[1709221987,[4,5,5,6,6,7,7,8,8,9]],[1709221988,[3,4,5,5,5,6,6,6,6,7]],[1709221989,[3,5,5,5,6,6,6,6,15,15]],[1709221990,[4,5,5,6,6,6,6,6,7,7]],[1709221991,[4,5,5,6,6,6,7,7,10,10]],[1709221992,[4,5,5,6,6,7,7,7,8,9]],[1709221993,[4,5,6,6,7,7,7,7,7,9]],[1709221994,[3,4,5,6,6,6,6,6,8,9]],[1709221995,[4,4,5,5,6,6,6,6,6,8]],[1709221996,[4,5,5,6,6,6,7,7,8,10]],[1709221997,[3,5,5,6,6,6,6,7,29,44]],[1709221998,[3,4,5,5,6,6,6,6,8,11]],[1709221999,[4,5,5,6,6,6,6,6,7,8]],[1709222000,[3,4,5,6,6,6,6,7,7,8]],[1709222001,[3,4,5,5,6,6,6,6,7,12]],[1709222002,[3,5,5,5,6,6,6,6,7,8]],[1709222003,[3,5,5,6,6,6,6,6,12,16]],[1709222004,[3,4,5,5,6,6,6,6,7,15]],[1709222005,[3,5,5,6,6,6,7,15,31,35]],[1709222006,[3,5,5,6,6,7,8,14,28,34]],[1709222007,[4,5,7,24,31,36,40,49,59,60]],[1709222008,[3,24,50,81,86,93,100,124,150,161]],[1709222009,[9,142,330,611,668,748,827,964,1233,1478]],[1709222010,[473,839,1207,1562,1654,1735,2147,2387,2993,3548]],[1709222011,[1127,1460,1589,1785,1830,1920,2126,2921,3816,5447]],[1709222012,[1541,1832,1934,2118,2154,2260,2460,3311,4632,5595]],[1709222013,[1651,2058,2173,2342,2392,2550,2961,3790,5783,6002]],[1709222014,[2135,2443,2521,2671,2737,2855,3437,4669,5570,6965]],[1709222015,[2508,2761,2871,3038,3053,3078,3226,4647,6175,6939]],[1709222016,[2939,3259,3426,3573,3634,3758,4119,5252,6665,6961]],[1709222017,[3419,3703,3807,3943,3986,4069,4654,5957,7294,7448]],[1709222018,[3825,4100,4235,4367,4404,4511,4593,5450,8146,9167]],[1709222019,[4009,4152,4237,4394,4483,4687,5057,6134,7223,7933]],[1709222020,[3889,4051,4105,4196,4247,4295,4633,5269,6853,7021]],[1709222021,[3881,3992,4062,4171,4360,4554,5297,6548,8277,10094]],[1709222022,[3846,3953,3992,4142,4198,4376,4764,5325,6828,7699]],[1709222023,[3869,3991,4067,4153,4209,4488,5185,6158,7058,7257]],[1709222024,[3944,4062,4144,4275,4295,4361,4483,4899,5698,6284]],[1709222025,[3944,4081,4180,4335,4384,4494,4748,5181,6611,6981]],[1709222026,[3956,4074,4172,4268,4302,4912,5581,6380,6691,8159]],[1709222027,[3922,4009,4139,4287,4354,4503,5290,6245,7112,7375]],[1709222028,[3972,4157,4258,4454,4561,4628,4789,5544,6480,8096]],[1709222029,[4189,4351,4397,4546,4595,4688,4978,5679,6803,8590]],[1709222030,[4100,4278,4378,4723,4795,5040,5299,6143,6652,6785]],[1709222031,[4191,4402,4575,4755,4786,4884,4965,5235,5897,6167]],[1709222032,[4076,4268,4374,4600,4695,4965,5301,6195,9483,9995]],[1709222033,[3962,4083,4162,4297,4388,4566,5504,6464,8538,8600]],[1709222034,[3950,4387,4489,4649,4685,4762,5185,5975,6766,6775]],[1709222035,[4263,4388,4479,4568,4579,4680,4709,5223,6362,7361]],[1709222036,[4240,4344,4405,4581,4652,4773,5083,7126,7738,8104]],[1709222037,[4304,4463,4563,4746,4783,4899,5095,5429,5870,6485]],[1709222038,[4163,4479,4583,4705,4784,4962,5139,5584,6185,6596]],[1709222039,[4165,4280,4379,4764,4865,5168,5303,5473,5894,6101]],[1709222040,[4162,4300,4398,4679,4778,4876,4974,5146,5381,5948]],[1709222041,[4069,4207,4362,4574,4795,4956,5541,6126,6533,6590]],[1709222042,[3912,4101,4279,4483,4515,4581,4793,5225,5775,6273]],[1709222043,[4078,4188,4272,4568,4680,4892,5273,5559,8627,8798]],[1709222044,[4078,4199,4295,4600,4748,5001,5118,5300,7310,8709]],[1709222045,[4053,4176,4290,4503,4578,4595,4673,5883,6998,7173]],[1709222046,[4063,4180,4264,4495,4615,4746,5109,6342,7379,7685]],[1709222047,[4090,4188,4273,4400,4482,4578,4964,5723,6962,7650]],[1709222048,[4069,4186,4272,4373,4398,4547,4812,5657,6649,7742]],[1709222049,[3982,4187,4282,4475,4489,4560,4741,4933,6529,7591]],[1709222050,[4050,4263,4372,4563,4594,4690,4914,5624,7177,8092]],[1709222051,[4066,4195,4295,4505,4581,4766,5436,6164,6864,7090]],[1709222052,[4063,4177,4258,4373,4386,4488,4686,6232,8350,8667]],[1709222053,[3958,4112,4199,4456,4556,4599,4767,4942,5803,7580]],[1709222054,[3980,4100,4206,4472,4529,4613,4882,5388,7367,7864]],[1709222055,[3974,4084,4176,4380,4475,4579,4899,5530,7626,8285]],[1709222056,[4076,4179,4209,4379,4390,4470,4623,5103,6360,7810]],[1709222057,[3912,4169,4259,4422,4551,4606,4877,5240,6554,6602]],[1709222058,[3973,4193,4349,4493,4618,4687,4851,5142,6366,7207]],[1709222059,[4012,4205,4381,4581,4679,4858,4995,6157,6728,7878]],[1709222060,[4267,4400,4486,4686,4701,4855,5264,5858,6711,7085]],[1709222061,[4173,4312,4468,4675,4767,4919,5077,5911,6587,7415]],[1709222062,[4189,4292,4382,4546,4679,4819,5196,5586,6562,6691]],[1709222063,[4111,4282,4385,4501,4595,4700,5244,6143,6787,8059]],[1709222064,[4013,4180,4293,4532,4788,4890,5101,5680,6682,6790]],[1709222065,[4086,4192,4284,4485,4503,4673,4927,5420,6000,7294]],[1709222066,[3870,4159,4280,4487,4576,4623,4962,5484,6545,6872]],[1709222067,[4054,4184,4289,4590,4709,4832,5042,6486,8826,9185]],[1709222068,[4106,4259,4299,4454,4490,4660,5532,6433,7546,9297]],[1709222069,[4084,4196,4291,4407,4498,4680,5294,5796,8214,8671]],[1709222070,[3990,4185,4269,4375,4391,4476,4794,5600,7033,7405]],[1709222071,[3889,4098,4193,4310,4374,4465,5039,6549,7471,8982]],[1709222072,[3964,4070,4104,4221,4282,4368,4600,5854,7963,8404]],[1709222073,[3978,4097,4182,4226,4287,4384,4608,6297,8110,8593]],[1709222074,[3965,4002,4084,4174,4196,4587,5133,6839,8227,8504]],[1709222075,[3876,4101,4198,4282,4306,4386,4407,5837,7232,7685]],[1709222076,[4097,4208,4292,4395,4480,4671,5357,6182,7465,10691]],[1709222077,[4186,4278,4304,4435,4487,4577,4681,5538,7920,9066]],[1709222078,[4165,4402,4500,4772,4821,4902,5104,5675,6651,8476]],[1709222079,[4267,4482,4580,4706,4771,4801,5417,6440,8566,8587]],[1709222080,[4399,4492,4585,4686,4689,4787,4902,5694,7483,7996]],[1709222081,[4375,4488,4577,4696,4808,4898,5585,6338,6805,6874]],[1709222082,[4193,4399,4505,4610,4683,4774,4982,5892,7162,7492]],[1709222083,[4275,4386,4468,4631,4693,4958,5133,5951,7613,8172]],[1709222084,[4268,4393,4485,4689,4777,4885,5380,5631,6182,6388]],[1709222085,[4216,4390,4486,4603,4682,4697,4859,5821,6679,7910]],[1709222086,[3888,4269,4374,4539,4593,4601,4796,5074,6485,7399]],[1709222087,[3895,4094,4195,4379,4479,4605,4907,5969,7006,7488]],[1709222088,[3971,4040,4097,4238,4285,4365,4547,4982,6000,6289]],[1709222089,[3800,3984,4077,4185,4200,4291,5289,5687,6034,6386]],[1709222090,[3879,4000,4087,4275,4300,4484,4682,5287,6873,7079]],[1709222091,[3890,3999,4086,4198,4273,4452,4665,6161,7953,8699]],[1709222092,[3859,3984,4059,4176,4268,5005,6111,6933,9280,9958]],[1709222093,[3885,3966,3987,4064,4091,4195,4797,6002,7806,8488]],[1709222094,[3874,4374,4400,4495,4583,4997,5378,6184,8094,8978]],[1709222095,[4212,4404,4480,4580,4587,4668,5208,6544,7170,8198]],[1709222096,[4381,4476,4501,4610,4684,4772,4893,5846,7528,9496]],[1709222097,[4392,4513,4680,4831,4882,5386,6272,8190,10613,10782]],[1709222098,[4099,4199,4296,4507,4597,4692,4712,5785,8221,9482]],[1709222099,[3972,4088,4183,4380,4479,4716,5368,6922,7980,8091]],[1709222100,[4008,4295,4386,4493,4517,4568,4641,5229,7102,7468]],[1709222101,[4270,4374,4397,4474,4484,4523,4651,5901,7835,8012]],[1709222102,[4027,4191,4271,4376,4392,4572,5365,6961,10427,11013]],[1709222103,[3860,4163,4196,4369,4392,4498,4804,6105,8527,8908]],[1709222104,[3738,3878,4055,4166,4201,4302,4905,5874,6993,7306]],[1709222105,[3769,3878,3965,4039,4081,4213,4491,5108,7104,8506]],[1709222106,[3777,3961,3998,4151,4174,4201,5033,5923,8025,8797]],[1709222107,[3700,3878,3917,4078,4087,4176,4284,5120,6545,7576]],[1709222108,[3770,3893,3985,4082,4181,4383,4803,6534,7511,8607]],[1709222109,[3878,3987,4089,4207,4288,4379,4626,5330,6194,7399]],[1709222110,[3902,4002,4086,4177,4197,4354,4392,4781,5424,5703]],[1709222111,[3890,4077,4183,4379,4480,4573,4742,4970,5553,6477]],[1709222112,[3873,4006,4093,4302,4382,4474,4589,5644,6456,6976]],[1709222113,[3814,3963,4069,4295,4455,4877,5281,6131,7058,7394]],[1709222114,[3862,3977,4011,4177,4205,4300,4723,5573,7950,8490]],[1709222115,[3668,3908,3989,4107,4180,4266,4373,5214,6297,6659]],[1709222116,[3715,3931,4007,4133,4200,4368,4483,5125,6758,7802]],[1709222117,[3796,3912,4001,4206,4276,4294,4697,5158,5754,6483]],[1709222118,[3764,3869,3906,4069,4091,4178,4294,4626,7275,7494]],[1709222119,[3609,3796,3918,4089,4134,4230,4402,5004,6705,7205]],[1709222120,[3621,3792,3888,4093,4169,4365,4575,4900,5608,5931]],[1709222121,[3764,3888,4091,4319,4395,4511,4769,4987,7000,7899]],[1709222122,[3870,3974,4088,4294,4439,4703,4799,5878,6849,6877]],[1709222123,[3872,3976,4006,4170,4268,4545,4973,5972,6963,7156]],[1709222124,[3967,4076,4112,4238,4279,4307,4559,5832,7402,7501]],[1709222125,[4000,4151,4285,4497,4597,4682,4978,5310,8569,10296]],[1709222126,[3986,4187,4291,4408,4464,4557,4782,5359,7068,7905]],[1709222127,[3969,4091,4188,4369,4394,4600,5507,6612,7391,7404]],[1709222128,[3902,4067,4099,4192,4198,4285,4390,4892,7190,7873]],[1709222129,[3784,3983,4091,4202,4300,4451,4853,5370,7617,7816]],[1709222130,[3705,3809,3889,4089,4198,4460,4503,4997,6971,7000]],[1709222131,[3771,3909,4013,4199,4299,4377,4396,4771,5993,6366]],[1709222132,[3975,4079,4172,4303,4393,4584,4810,5287,6219,6596]],[1709222133,[3993,4194,4291,4580,4792,4910,5285,5765,6406,6481]],[1709222134,[3899,4090,4202,4441,4582,4674,4770,4888,5279,5589]],[1709222135,[3872,4083,4186,4458,4574,4598,4833,4955,6453,7695]],[1709222136,[3862,3998,4093,4292,4400,4591,4734,5010,5840,6208]],[1709222137,[3781,3967,4015,4202,4491,4598,4694,5268,6112,7284]],[1709222138,[3665,3854,3975,4266,4421,4667,4800,5016,5548,6601]],[1709222139,[3873,3986,4096,4289,4369,4492,4787,5491,6420,6593]],[1709222140,[3809,4073,4186,4368,4385,4497,4603,5252,5855,5900]],[1709222141,[4068,4265,4369,4485,4515,4589,4698,5197,5667,5878]],[1709222142,[3957,4153,4279,4478,4536,4680,5095,5293,6116,6913]],[1709222143,[3908,4056,4105,4385,4483,4676,4790,5576,6890,7191]],[1709222144,[3869,3993,4087,4262,4400,4506,4615,6273,7151,7202]],[1709222145,[3780,3972,4005,4179,4202,4288,4676,5753,8078,8276]],[1709222146,[3679,3800,3884,3990,4000,4093,5177,5801,6757,7375]],[1709222147,[3597,3784,3876,4060,4083,4190,4383,5249,7613,8592]],[1709222148,[3697,3888,3983,4082,4097,4276,4403,5879,6459,7283]],[1709222149,[3767,3885,3931,4124,4190,4292,4686,5561,7624,7991]],[1709222150,[3783,3947,3995,4175,4190,4220,4512,5836,7639,8770]],[1709222151,[3774,3886,3975,4092,4122,4193,4394,4994,6683,7083]],[1709222152,[3767,3882,3970,4159,4186,4284,4613,5847,7396,8377]],[1709222153,[3789,3977,4055,4172,4207,4469,5238,6279,7983,8899]],[1709222154,[3885,4280,4570,4695,4783,4833,5068,6232,8433,10170]],[1709222155,[4466,4598,4686,4806,4881,4902,4991,5600,6500,8600]],[1709222156,[4564,4668,4769,4995,5072,5148,5456,5872,6816,8581]],[1709222157,[4573,4674,4776,4938,4988,5092,5351,6031,6699,6805]],[1709222158,[4074,4328,4491,4688,4711,4822,5049,5260,6205,6802]],[1709222159,[3794,3995,4092,4199,4307,4590,5631,6951,7762,8082]],[1709222160,[3790,3883,3908,4071,4092,4308,5081,5698,6775,6987]],[1709222161,[3775,3878,3902,3990,3996,4002,4193,5498,6390,8772]],[1709222162,[3666,3791,3878,3985,4075,4161,4614,5878,7759,8160]],[1709222163,[3744,3888,3975,4078,4190,4558,5628,6416,8951,9470]],[1709222164,[3876,3989,4067,4108,4169,4234,4719,5738,6611,7384]],[1709222165,[3958,4080,4150,4276,4291,4347,4789,5549,7466,8373]],[1709222166,[3986,4103,4182,4290,4322,4392,4666,5266,7134,8480]],[1709222167,[3890,4067,4108,4362,4387,4683,4794,6241,8234,8685]],[1709222168,[3981,4101,4183,4469,4598,4700,4918,5692,7694,7779]],[1709222169,[3960,4089,4175,4288,4312,4428,4560,5233,7246,8385]],[1709222170,[3766,3897,3980,4082,4100,4262,4582,4958,6161,7707]],[1709222171,[3676,3796,3889,3987,3998,4083,4752,6748,8423,8497]],[1709222172,[3509,3668,3697,3873,3887,4041,5467,6182,8686,10562]],[1709222173,[3485,3599,3677,3764,3781,3797,4169,5926,7910,10276]],[1709222174,[3556,3751,3868,3981,3995,4073,4257,5513,7681,9186]],[1709222175,[3702,3870,3936,4064,4083,4098,4357,5386,7091,8378]],[1709222176,[3792,3992,4089,4200,4275,4487,4870,6323,8333,8692]],[1709222177,[3969,4082,4107,4191,4266,4293,4492,6161,7505,7858]],[1709222178,[3776,3905,3984,4088,4107,4205,4475,5479,7159,9395]],[1709222179,[3866,4070,4095,4199,4276,4995,5724,6333,8280,8886]],[1709222180,[4015,4101,4183,4233,4281,4761,5755,7283,8123,8291]],[1709222181,[4069,4171,4190,4281,4302,4319,4746,5924,8505,10773]],[1709222182,[3885,4089,4180,4271,4284,4300,4380,5831,8490,9571]],[1709222183,[3900,4013,4091,4184,4197,4269,5052,6310,7555,8564]],[1709222184,[3900,3997,4083,4202,4265,4336,4754,5539,6728,9702]],[1709222185,[3784,3882,3905,4062,4077,4089,4183,4707,6506,8380]],[1709222186,[3611,3787,3886,4085,4163,4274,4527,6213,7463,8084]],[1709222187,[3684,3880,3979,4110,4265,4345,4589,4877,8312,9442]],[1709222188,[3667,3871,3900,4016,4081,4318,4991,5811,6596,7076]],[1709222189,[3786,3980,4083,4279,4355,4476,5132,5737,9086,9471]],[1709222190,[3808,4109,4207,4487,4515,4718,5284,5738,7307,8861]],[1709222191,[3987,4095,4170,4255,4290,4378,4588,6572,7852,8158]],[1709222192,[4094,4194,4280,4403,4482,4580,5219,6576,7505,8560]],[1709222193,[3970,4101,4191,4369,4388,4451,4844,5552,6613,6881]],[1709222194,[3588,3989,4088,4218,4278,4358,4473,5050,6698,7802]],[1709222195,[3966,4059,4087,4265,4349,4560,4842,5289,6224,6611]],[1709222196,[3780,3906,4071,4189,4198,4283,4394,5115,5802,5959]],[1709222197,[3487,3666,3774,3899,3995,4087,4172,4292,4787,5120]],[1709222198,[3396,3572,3676,3792,3795,3875,3885,3898,4101,4109]],[1709222199,null],[1709222200,null],[1709222201,null]]);
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([[1709221953,[25,25,0]],[1709221954,[1,1,0]],[1709221955,[25,25,0]],[1709221956,[1,1,0]],[1709221957,[71,71,0]],[1709221958,[3,3,0]],[1709221959,[6,6,0]],[1709221960,[9,9,0]],[1709221961,[11,11,0]],[1709221962,[13,13,0]],[1709221963,[18,18,0]],[1709221964,[19,19,0]],[1709221965,[24,24,0]],[1709221966,[26,26,0]],[1709221967,[27,27,0]],[1709221968,[32,32,0]],[1709221969,[34,34,0]],[1709221970,[37,37,0]],[1709221971,[39,39,0]],[1709221972,[43,43,0]],[1709221973,[45,45,0]],[1709221974,[48,48,0]],[1709221975,[50,50,0]],[1709221976,[54,54,0]],[1709221977,[56,56,0]],[1709221978,[60,60,0]],[1709221979,[61,61,0]],[1709221980,[65,65,0]],[1709221981,[67,67,0]],[1709221982,[70,70,0]],[1709221983,[74,74,0]],[1709221984,[76,76,0]],[1709221985,[80,80,0]],[1709221986,[81,81,0]],[1709221987,[84,84,0]],[1709221988,[89,89,0]],[1709221989,[89,89,0]],[1709221990,[93,93,0]],[1709221991,[96,96,0]],[1709221992,[98,98,0]],[1709221993,[102,102,0]],[1709221994,[104,104,0]],[1709221995,[107,107,0]],[1709221996,[109,109,0]],[1709221997,[114,114,0]],[1709221998,[115,115,0]],[1709221999,[118,118,0]],[1709222000,[121,121,0]],[1709222001,[124,124,0]],[1709222002,[126,126,0]],[1709222003,[129,129,0]],[1709222004,[133,133,0]],[1709222005,[134,134,0]],[1709222006,[139,139,0]],[1709222007,[140,140,0]],[1709222008,[144,144,0]],[1709222009,[146,146,0]],[1709222010,[149,149,0]],[1709222011,[151,151,0]],[1709222012,[155,155,0]],[1709222013,[157,157,0]],[1709222014,[160,160,0]],[1709222015,[165,165,0]],[1709222016,[165,165,0]],[1709222017,[171,170,1]],[1709222018,[170,135,35]],[1709222019,[174,105,69]],[1709222020,[177,122,55]],[1709222021,[180,123,57]],[1709222022,[183,107,76]],[1709222023,[185,114,71]],[1709222024,[189,126,63]],[1709222025,[192,129,63]],[1709222026,[194,104,90]],[1709222027,[197,112,85]],[1709222028,[198,123,75]],[1709222029,[204,119,85]],[1709222030,[205,115,90]],[1709222031,[208,108,100]],[1709222032,[210,101,109]],[1709222033,[214,118,96]],[1709222034,[217,119,98]],[1709222035,[219,95,124]],[1709222036,[222,123,99]],[1709222037,[225,132,93]],[1709222038,[228,83,145]],[1709222039,[229,102,127]],[1709222040,[234,114,120]],[1709222041,[236,115,121]],[1709222042,[239,110,129]],[1709222043,[243,107,136]],[1709222044,[244,108,136]],[1709222045,[248,129,119]],[1709222046,[251,115,136]],[1709222047,[251,105,146]],[1709222048,[256,110,146]],[1709222049,[260,114,146]],[1709222050,[262,130,132]],[1709222051,[263,105,158]],[1709222052,[267,108,159]],[1709222053,[269,112,157]],[1709222054,[273,120,153]],[1709222055,[275,119,156]],[1709222056,[279,107,172]],[1709222057,[281,112,169]],[1709222058,[284,129,155]],[1709222059,[286,119,167]],[1709222060,[290,102,188]],[1709222061,[292,119,173]],[1709222062,[295,111,184]],[1709222063,[299,116,183]],[1709222064,[300,92,208]],[1709222065,[304,117,187]],[1709222066,[306,113,193]],[1709222067,[309,125,184]],[1709222068,[312,107,205]],[1709222069,[315,110,205]],[1709222070,[317,121,196]],[1709222071,[320,117,203]],[1709222072,[323,104,219]],[1709222073,[328,108,220]],[1709222074,[329,125,204]],[1709222075,[331,130,201]],[1709222076,[334,102,232]],[1709222077,[339,115,224]],[1709222078,[339,120,219]],[1709222079,[340,110,230]],[1709222080,[340,110,230]],[1709222081,[340,95,245]],[1709222082,[341,108,233]],[1709222083,[339,116,223]],[1709222084,[340,111,229]],[1709222085,[341,94,247]],[1709222086,[339,115,224]],[1709222087,[340,113,227]],[1709222088,[340,107,233]],[1709222089,[340,109,231]],[1709222090,[341,131,210]],[1709222091,[340,123,217]],[1709222092,[340,126,214]],[1709222093,[340,100,240]],[1709222094,[340,121,219]],[1709222095,[340,130,210]],[1709222096,[339,123,216]],[1709222097,[341,107,234]],[1709222098,[340,64,276]],[1709222099,[339,118,221]],[1709222100,[341,136,205]],[1709222101,[340,106,234]],[1709222102,[340,96,244]],[1709222103,[338,121,217]],[1709222104,[340,100,240]],[1709222105,[342,121,221]],[1709222106,[340,117,223]],[1709222107,[340,119,221]],[1709222108,[340,133,207]],[1709222109,[340,118,222]],[1709222110,[340,113,227]],[1709222111,[339,124,215]],[1709222112,[340,124,216]],[1709222113,[341,111,230]],[1709222114,[340,113,227]],[1709222115,[340,126,214]],[1709222116,[340,131,209]],[1709222117,[340,108,232]],[1709222118,[340,110,230]],[1709222119,[340,138,202]],[1709222120,[339,129,210]],[1709222121,[341,112,229]],[1709222122,[340,129,211]],[1709222123,[339,131,208]],[1709222124,[340,123,217]],[1709222125,[341,96,245]],[1709222126,[340,126,214]],[1709222127,[339,128,211]],[1709222128,[341,121,220]],[1709222129,[340,83,257]],[1709222130,[338,120,218]],[1709222131,[341,143,198]],[1709222132,[340,121,219]],[1709222133,[341,109,232]],[1709222134,[340,119,221]],[1709222135,[339,126,213]],[1709222136,[340,116,224]],[1709222137,[341,101,240]],[1709222138,[340,120,220]],[1709222139,[339,136,203]],[1709222140,[341,124,217]],[1709222141,[340,112,228]],[1709222142,[338,114,224]],[1709222143,[342,129,213]],[1709222144,[339,109,230]],[1709222145,[341,104,237]],[1709222146,[340,121,219]],[1709222147,[339,140,199]],[1709222148,[341,115,226]],[1709222149,[339,116,223]],[1709222150,[341,135,206]],[1709222151,[340,121,219]],[1709222152,[340,116,224]],[1709222153,[340,114,226]],[1709222154,[339,132,207]],[1709222155,[341,134,207]],[1709222156,[339,104,235]],[1709222157,[340,115,225]],[1709222158,[340,66,274]],[1709222159,[341,108,233]],[1709222160,[340,123,217]],[1709222161,[340,100,240]],[1709222162,[340,134,206]],[1709222163,[340,127,213]],[1709222164,[340,119,221]],[1709222165,[340,117,223]],[1709222166,[339,124,215]],[1709222167,[341,120,221]],[1709222168,[340,110,230]],[1709222169,[339,105,234]],[1709222170,[341,132,209]],[1709222171,[338,115,223]],[1709222172,[342,111,231]],[1709222173,[338,113,225]],[1709222174,[342,153,189]],[1709222175,[340,133,207]],[1709222176,[340,114,226]],[1709222177,[340,118,222]],[1709222178,[339,121,218]],[1709222179,[341,135,206]],[1709222180,[339,95,244]],[1709222181,[340,116,224]],[1709222182,[340,130,210]],[1709222183,[341,120,221]],[1709222184,[340,99,241]],[1709222185,[340,99,241]],[1709222186,[339,147,192]],[1709222187,[339,123,216]],[1709222188,[342,105,237]],[1709222189,[340,127,213]],[1709222190,[340,128,212]],[1709222191,[339,133,206]],[1709222192,[341,100,241]],[1709222193,[340,97,243]],[1709222194,[340,128,212]],[1709222195,[340,133,207]],[1709222196,[339,94,245]],[1709222197,[341,116,225]],[1709222198,[161,61,100]],[1709222199,[0,0,0]],[1709222200,[0,0,0]],[1709222201,[0,0,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'
}, {