-
Notifications
You must be signed in to change notification settings - Fork 923
/
Copy pathindex.html
1173 lines (1104 loc) · 95.5 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="shortcut icon" type="image/x-icon" href="style/favicon.ico"/>
<link href="style/style.css" rel="stylesheet" type="text/css" />
<link href="style/bootstrap.min.css" rel="stylesheet" type="text/css" />
<script src="js/jquery-3.5.1.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/gatling.js"></script>
<script src="js/menu.js"></script>
<script src="js/ellipsis.js"></script>
<script src="js/all_sessions.js"></script>
<script src="js/stats.js"></script>
<script src="js/highstock.js"></script>
<script src="js/highcharts-more.js"></script>
<script src="js/theme.js"></script>
<script src="js/unpack.js"></script>
<title>Gatling Stats - Global Information</title>
</head>
<body>
<script>
const storedTheme = localStorage.getItem('theme') || (window.matchMedia("(prefers-color-scheme: dark)").matches ? "dark" : "light");
if (storedTheme) document.documentElement.setAttribute('data-theme', storedTheme)
function toggleTheme() {
const currentTheme = document.documentElement.getAttribute("data-theme");
const targetTheme = currentTheme === "light" ? "dark" : "light";
document.documentElement.setAttribute('data-theme', targetTheme)
localStorage.setItem('theme', targetTheme);
};
</script>
<div class="app-container">
<div class="frise"></div>
<div class="head">
<div class="gatling-open-source">
<a class="gatling-logo gatling-logo-light" href="https://gatling.io" target="blank_" title="Gatling Home Page"><img alt="Gatling" src="style/logo-light.svg"/></a>
<a class="gatling-logo gatling-logo-dark" href="https://gatling.io" target="blank_" title="Gatling Home Page"><img alt="Gatling" src="style/logo-dark.svg"/></a>
<a class="gatling-documentation" href="https://gatling.io/docs/" target="_blank">Documentation</a>
</div>
<div class="nav spacer"></div>
<a class="enterprise" href="https://gatling.io/enterprise/next-step/" target="_blank"><strong>Try</strong>
<img class="logo-enterprise-light" alt="Gatling Enterprise" src="style/logo-enterprise-light.svg"/>
<img class="logo-enterprise-dark" alt="Gatling Enterprise" src="style/logo-enterprise-dark.svg"/>
</a>
<button id="theme-toggle" class="theme-toggle" type="button" onclick="toggleTheme()" aria-label="Toggle user interface mode">
<span class="toggle-dark"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-moon"><path d="M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z"></path></svg></span>
<span class="toggle-light"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-sun"><circle cx="12" cy="12" r="5"></circle><line x1="12" y1="1" x2="12" y2="3"></line><line x1="12" y1="21" x2="12" y2="23"></line><line x1="4.22" y1="4.22" x2="5.64" y2="5.64"></line><line x1="18.36" y1="18.36" x2="19.78" y2="19.78"></line><line x1="1" y1="12" x2="3" y2="12"></line><line x1="21" y1="12" x2="23" y2="12"></line><line x1="4.22" y1="19.78" x2="5.64" y2="18.36"></line><line x1="18.36" y1="5.64" x2="19.78" y2="4.22"></line></svg></span>
</button>
</div>
<div class="container details">
<div class="nav">
<ul></ul>
</div>
<div class="cadre">
<div class="content">
<div class="content-header">
<div class="onglet">
RinhaBackendCrebitosSimulation
</div>
<div class="sous-menu" id="sousMenu">
<div class="sous-menu-spacer">
<div class="item ouvert"><a href="index.html">Global</a></div>
<div class="item "><a id="details_link" href="#">Details</a></div>
</div>
</div>
</div>
<div class="content-in">
<div class="container-article">
<div class="article">
<div class="schema-container">
<div id="ranges" class="schema ranges">
</div>
<div class="schema polar">
<div id="container_number_of_requests"></div>
</div>
<div class="simulation-card">
<div class="simulation-version-information">
<span class="simulation-information-title">Gatling Version</span>
<span class="simulation-information-item">
<span class="simulation-information-label">Version: </span>
<span>3.10.3</span>
</span>
<span class="simulation-information-item">
<span class="simulation-information-label">Released: </span>
<span>2023-12-20</span>
</span>
</div>
<div id="simulation-information" class="simulation-version-information">
<span class="simulation-information-title">Run Information</span>
<div class="simulation-information-container">
<span class="simulation-information-item">
<span class="simulation-information-label">Date: </span>
<span>2024-03-08 16:31:11 GMT</span>
</span>
<span class="simulation-information-item">
<span class="simulation-information-label">Duration: </span>
<span>4m 5s </span>
</span>
<span class="simulation-tooltip simulation-information-item description" title="Description" data-content="Rinha de Backend - 2024/Q1: Crébito - vitor_weirich_java_network_host">
<span class="simulation-information-label">Description: </span>
<span>Rinha de Backend - 2024/Q1: Crébito - vitor_weirich_java_network_host</span>
</span>
</div>
</div>
</div>
</div>
<div id="statistics_table_container">
<div id="stats" class="statistics extensible-geant collapsed">
<div class="title">
<div id="statistics_title" class="title_base"><span class="title_base_stats">Stats</span><span class="expand-table">Fixed height</span><span id="toggle-stats" class="toggle-table"></span><span class="collapse-table">Full size</span></div>
<div class="right">
<button class="statistics-button expand-all-button">Expand all groups</button>
<button class="statistics-button collapse-all-button">Collapse all groups</button>
<button id="statistics_full_screen" class="statistics-button" onclick="openStatisticsTableModal()"><img alt="Fullscreen" src="style/fullscreen.svg"></button>
</div>
</div>
<div class="scrollable">
<table id="container_statistics_head" class="statistics-in extensible-geant">
<thead>
<tr>
<th rowspan="2" id="col-1" class="header sortable sorted-up"><span>Requests</span></th>
<th colspan="5" class="header"><span class="executions">Executions</span></th>
<th colspan="8" class="header"><span class="response-time">Response Time (ms)</span></th>
</tr>
<tr>
<th id="col-2" class="header sortable"><span>Total</span></th>
<th id="col-3" class="header sortable"><span>OK</span></th>
<th id="col-4" class="header sortable"><span>KO</span></th>
<th id="col-5" class="header sortable"><span>% KO</span></th>
<th id="col-6" class="header sortable"><span><abbr title="Count of events per second">Cnt/s</abbr></span></th>
<th id="col-7" class="header sortable"><span>Min</span></th>
<th id="col-8" class="header sortable"><span>50th pct</span></th>
<th id="col-9" class="header sortable"><span>75th pct</span></th>
<th id="col-10" class="header sortable"><span>95th pct</span></th>
<th id="col-11" class="header sortable"><span>99th pct</span></th>
<th id="col-12" class="header sortable"><span>Max</span></th>
<th id="col-13" class="header sortable"><span>Mean</span></th>
<th id="col-14" class="header sortable"><span><abbr title="Standard Deviation">Std Dev</abbr></span></th>
</tr>
</thead>
<tbody></tbody>
</table>
<table id="container_statistics_body" class="statistics-in extensible-geant">
<tbody></tbody>
</table>
</div>
</div>
</div>
<dialog id="statistics_table_modal" class="statistics-table-modal">
<div class="statistics-table-modal-header"><button class="button-modal" onclick="closeStatisticsTableModal()"><img alt="Close" src="style/close.svg"></button></div>
<div class="statistics-table-modal-container">
<div id="statistics_table_modal_content" class="statistics-table-modal-content"></div>
</div>
</dialog>
<script>
function openStatisticsTableModal () {
const statsTable = document.getElementById("stats");
const statsTableModal = document.getElementById("statistics_table_modal");
const fullScreenButton = document.getElementById("statistics_full_screen");
fullScreenButton.disabled = true;
if (typeof statsTableModal.showModal === "function") {
const statsTableModalContent = document.getElementById("statistics_table_modal_content");
statsTableModalContent.innerHTML = "";
statsTableModalContent.appendChild(statsTable);
statsTableModal.showModal();
statsTableModal.addEventListener("close", function () {
const container = document.getElementById("statistics_table_container");
container.appendChild(statsTable);
fullScreenButton.disabled = false;
});
} else {
const incompatibleBrowserVersionMessage = document.createElement("div");
incompatibleBrowserVersionMessage.innerText = "Sorry, the <dialog> API is not supported by this browser.";
statsTable.insertBefore(incompatibleBrowserVersionMessage, statsTable.children[0]);
}
}
function closeStatisticsTableModal () {
const statsTableModal = document.getElementById("statistics_table_modal");
statsTableModal.close();
}
</script>
<div class="schema geant">
<div id="active_users" class="geant"></div>
</div>
<div class="schema geant">
<div id="responsetimeDistributionContainer" class="geant"></div>
</div>
<div class="schema geant">
<div id="responsetimepercentilesovertimeokPercentilesContainer" class="geant"></div>
</div>
<div class="schema geant">
<div id="requests" class="geant"></div>
</div>
<div class="schema geant">
<div id="responses" class="geant"></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<script>
var pageStats = stats.stats;
$(document).ready(function() {
$('.simulation-tooltip').popover({trigger:'hover', placement:'left'});
setDetailsLinkUrl();
setGlobalMenu();
setActiveMenu();
fillStats(pageStats);
Highcharts.setOptions({
global: { useUTC: false }
});
var rangesChart = new Highcharts.Chart({
chart: {
renderTo: 'ranges',
marginRight: 100
},
credits: { enabled: false },
legend: { enabled: false },
title: { text: 'A title to let highcharts reserve the place for the title set later' },
xAxis: {
categories: [
pageStats.group1.htmlName,
pageStats.group2.htmlName,
pageStats.group3.htmlName,
pageStats.group4.htmlName
]
},
yAxis: {
title: { text: 'Number of Requests' },
reversedStacks: false
},
tooltip: {
formatter: function() {
var s;
if (this.point.name) { // the pie chart
s = ''+ this.point.name +': '+ this.y +'% requests';
} else {
s = ''+ this.y + ' requests';
}
return s;
}
},
plotOptions: {
series: {
stacking: 'normal',
shadow: true
}
},
series: [
{
type: 'column',
data: [{
color: '#68b65c',
y: pageStats.group1.count
},
{
color: '#FFDD00',
y: pageStats.group2.count
},
{
color: '#FFA900',
y: pageStats.group3.count
},
{
color: '#f15b4f',
y: pageStats.group4.count
}]
},
{
type: 'pie',
name: 'Percentages',
data: [
{
name: pageStats.group1.name,
y: pageStats.group1.percentage,
color: '#68b65c'
},
{
name: pageStats.group2.name,
y: pageStats.group2.percentage,
color: '#FFDD00'
},
{
name: pageStats.group3.name,
y: pageStats.group3.percentage,
color: '#FFA900'
},
{
name: pageStats.group4.name,
y: pageStats.group4.percentage,
color: '#f15b4f'
}
],
center: [345, 0],
size: 90,
showInLegend: false,
dataLabels: { enabled: false }
}
]
});
rangesChart.setTitle({
text: '<span class="chart_title">Response Time Ranges</span>',
useHTML: true
});
function numberOfRequestsDataForGroup(group) {
var data = {names: [], oks: [], kos: []};
$.each(group.contents, function(contentName, content) {
if (content.type == 'GROUP') {
var result = numberOfRequestsDataForGroup(content);
data.names = data.names.concat(result.names);
data.oks = data.oks.concat(result.oks);
data.kos = data.kos.concat(result.kos);
}
else if (content.type == 'REQUEST') {
data.names.push(content.path);
data.oks.push(parseInt(content.stats.numberOfRequests.ok));
data.kos.push(parseInt(content.stats.numberOfRequests.ko));
}
});
return data;
}
var numberOfRequestsData = numberOfRequestsDataForGroup(stats);
var tickInterval = Math.ceil(numberOfRequestsData.names.length / 1000);
new Highcharts.Chart({
chart: {
renderTo:'container_number_of_requests',
polar:true,
type:'column',
height:330
},
credits:{
enabled:false
},
title:{
text:'<span class="chart_title">Number of requests</span>',
useHTML: true,
widthAdjust:-20
},
xAxis:{
tickmarkPlacement:'on',
tickInterval: tickInterval,
categories:numberOfRequestsData.names,
labels:{ enabled:false }
},
yAxis:{
min:0,
reversedStacks: false
},
plotOptions:{
series:{
stacking:'normal',
groupPadding:0,
pointPlacement:'on',
shadow: true
}
},
legend: {
borderWidth: 0,
itemStyle: { fontWeight: "normal" },
symbolRadius: 0
},
series:[
{
name:'OK',
data:numberOfRequestsData.oks,
color:"#68b65c"
},
{
name:'KO',
data:numberOfRequestsData.kos,
color:"#f15b4f"
}
]
});
$('#container_exceptions').sortable('#container_exceptions');
function generateHtmlRow(request, level, index, parent, group) {
if (request.name == 'All Requests')
var url = 'index.html';
else
var url = request.pathFormatted + '.html';
if (group)
var expandButtonStyle = '';
else
var expandButtonStyle = ' hidden';
if (request.stats.numberOfRequests.total != 0)
var koPercent = (request.stats.numberOfRequests.ko * 100 / request.stats.numberOfRequests.total).toFixed(0) + '%';
else
var koPercent = '-'
return '<tr id="' + request.pathFormatted + '" data-parent=' + parent + '> \
<td class="total col-1"> \
<div class="expandable-container"> \
<span id="' + request.pathFormatted + '" style="margin-left: ' + (level * 10) + 'px;" class="expand-button' + expandButtonStyle + '"> </span> \
<a href="' + url +'" class="withTooltip">' + ellipsedLabel({ name: request.name, parentClass: "table-cell-tooltip" }) + '</a><span class="value" style="display:none;">' + index + '</span> \
</div> \
</td> \
<td class="value total col-2">' + request.stats.numberOfRequests.total + '</td> \
<td class="value ok col-3">' + request.stats.numberOfRequests.ok + '</td> \
<td class="value ko col-4">' + request.stats.numberOfRequests.ko + '</td> \
<td class="value ko col-5">' + koPercent + '</td> \
<td class="value total col-6">' + request.stats.meanNumberOfRequestsPerSecond.total + '</td> \
<td class="value total col-7">' + request.stats.minResponseTime.total + '</td> \
<td class="value total col-8">' + request.stats.percentiles1.total + '</td> \
<td class="value total col-9">' + request.stats.percentiles2.total + '</td> \
<td class="value total col-10">' + request.stats.percentiles3.total + '</td> \
<td class="value total col-11">' + request.stats.percentiles4.total + '</td> \
<td class="value total col-12">' + request.stats.maxResponseTime.total + '</td> \
<td class="value total col-13">' + request.stats.meanResponseTime.total + '</td> \
<td class="value total col-14">' + request.stats.standardDeviation.total + '</td> \
</tr>';
}
function generateHtmlRowsForGroup(group, level, index, parent) {
var buffer = '';
if (!parent)
parent = 'ROOT';
else {
buffer += generateHtmlRow(group, level - 1, index, parent, true);
index++;
parent = group.pathFormatted;
}
$.each(group.contents, function(contentName, content) {
if (content.type == 'GROUP') {
var result = generateHtmlRowsForGroup(content, level + 1, index, parent);
buffer += result.html;
index = result.index;
}
else if (content.type == 'REQUEST') {
buffer += generateHtmlRow(content, level, index, parent);
index++;
}
});
return { html: buffer, index: index };
}
$('#container_statistics_head tbody').append(generateHtmlRow(stats, 0, 0));
var lines = generateHtmlRowsForGroup(stats, 0, 0);
$('#container_statistics_body tbody').append(lines.html);
$('#container_statistics_head').sortable('#container_statistics_body');
$('.statistics').expandable();
if (lines.index < 30) {
$('#statistics_title span').attr('style', 'display: none;');
} else {
$('#statistics_title').addClass('title_collapsed');
$('#statistics_title').click(function() {
$('#toggle-stats').toggleClass("off");
$(this).toggleClass('title_collapsed').toggleClass('title_expanded');
$('#container_statistics_body').parent().toggleClass('scrollable').toggleClass('');
});
}
$('.table-cell-tooltip').popover({trigger:'hover'});
$('#container_errors').sortable('#container_errors');
allUsersData.yAxis = 0;
var allUsersChart = new Highcharts.StockChart({
chart: {
renderTo: 'active_users',
zoomType: 'x'
},
credits: { enabled: false },
legend: {
enabled: true,
floating: true,
align: 'right',
verticalAlign: 'top',
layout: 'vertical',
borderWidth: 0,
itemStyle: { fontWeight: "normal" },
symbolRadius: 0
},
title: { text: 'A title to let highcharts reserve the place for the title set later' },
navigator: {
maskInside: false
},
rangeSelector: {
buttonSpacing: 0,
buttonTheme: {
fill: '#CFC9C6',
padding: 1,
stroke: '#000000',
'stroke-width': 0.25,
style: {
color: '#000000',
fontWeight: 'bold',
},
states: {
stroke: '#000000',
'stroke-width': 0.25,
hover: {
fill: '#92918C',
style: { color: 'black' }
},
select: {
fill: '#FFA900',
style: { color: 'white' }
}
}
},
buttons : [
{
type : 'minute',
count : 1,
text : '1m'
}, {
type : 'minute',
count : 10,
text : '10m'
}, {
type : 'hour',
count : 1,
text : '1h'
}, {
type : 'all',
count : 1,
text : 'All'
}
],
selected : 3,
inputEnabled : false
},
xAxis: {
type: 'datetime',
ordinal: false,
maxZoom: 10000 // three days
},
yAxis: {
title: { text: 'Number of Active Users' },
opposite: false,
min: 0
},
series: [
{
color: '#5E7BE2',
name: 'créditos',
data: [
[1709915472000,0],[1709915473000,0],[1709915474000,0],[1709915475000,0],[1709915476000,0],[1709915477000,2],[1709915478000,2],[1709915479000,4],[1709915480000,4],[1709915481000,5],[1709915482000,6],[1709915483000,7],[1709915484000,8],[1709915485000,8],[1709915486000,10],[1709915487000,10],[1709915488000,12],[1709915489000,12],[1709915490000,14],[1709915491000,14],[1709915492000,15],[1709915493000,16],[1709915494000,17],[1709915495000,17],[1709915496000,19],[1709915497000,20],[1709915498000,20],[1709915499000,22],[1709915500000,22],[1709915501000,23],[1709915502000,25],[1709915503000,25],[1709915504000,26],[1709915505000,26],[1709915506000,28],[1709915507000,29],[1709915508000,30],[1709915509000,30],[1709915510000,32],[1709915511000,32],[1709915512000,33],[1709915513000,34],[1709915514000,35],[1709915515000,36],[1709915516000,37],[1709915517000,38],[1709915518000,39],[1709915519000,39],[1709915520000,41],[1709915521000,41],[1709915522000,43],[1709915523000,43],[1709915524000,44],[1709915525000,45],[1709915526000,46],[1709915527000,47],[1709915528000,48],[1709915529000,48],[1709915530000,50],[1709915531000,50],[1709915532000,52],[1709915533000,52],[1709915534000,53],[1709915535000,54],[1709915536000,56],[1709915537000,55],[1709915538000,57],[1709915539000,58],[1709915540000,59],[1709915541000,59],[1709915542000,61],[1709915543000,61],[1709915544000,63],[1709915545000,63],[1709915546000,64],[1709915547000,65],[1709915548000,66],[1709915549000,67],[1709915550000,68],[1709915551000,68],[1709915552000,70],[1709915553000,70],[1709915554000,72],[1709915555000,72],[1709915556000,73],[1709915557000,74],[1709915558000,75],[1709915559000,76],[1709915560000,77],[1709915561000,78],[1709915562000,79],[1709915563000,79],[1709915564000,81],[1709915565000,81],[1709915566000,82],[1709915567000,84],[1709915568000,86],[1709915569000,86],[1709915570000,87],[1709915571000,87],[1709915572000,89],[1709915573000,102],[1709915574000,90],[1709915575000,91],[1709915576000,92],[1709915577000,104],[1709915578000,95],[1709915579000,96],[1709915580000,101],[1709915581000,96],[1709915582000,106],[1709915583000,105],[1709915584000,110],[1709915585000,109],[1709915586000,104],[1709915587000,103],[1709915588000,107],[1709915589000,103],[1709915590000,114],[1709915591000,107],[1709915592000,125],[1709915593000,122],[1709915594000,118],[1709915595000,123],[1709915596000,120],[1709915597000,115],[1709915598000,118],[1709915599000,121],[1709915600000,119],[1709915601000,117],[1709915602000,118],[1709915603000,114],[1709915604000,120],[1709915605000,122],[1709915606000,112],[1709915607000,114],[1709915608000,119],[1709915609000,117],[1709915610000,111],[1709915611000,119],[1709915612000,122],[1709915613000,122],[1709915614000,120],[1709915615000,115],[1709915616000,122],[1709915617000,123],[1709915618000,130],[1709915619000,115],[1709915620000,120],[1709915621000,115],[1709915622000,115],[1709915623000,123],[1709915624000,119],[1709915625000,110],[1709915626000,122],[1709915627000,118],[1709915628000,120],[1709915629000,124],[1709915630000,119],[1709915631000,122],[1709915632000,111],[1709915633000,114],[1709915634000,117],[1709915635000,124],[1709915636000,123],[1709915637000,112],[1709915638000,111],[1709915639000,119],[1709915640000,113],[1709915641000,119],[1709915642000,120],[1709915643000,121],[1709915644000,116],[1709915645000,115],[1709915646000,118],[1709915647000,121],[1709915648000,115],[1709915649000,133],[1709915650000,112],[1709915651000,117],[1709915652000,112],[1709915653000,114],[1709915654000,124],[1709915655000,133],[1709915656000,110],[1709915657000,128],[1709915658000,119],[1709915659000,115],[1709915660000,123],[1709915661000,117],[1709915662000,115],[1709915663000,118],[1709915664000,123],[1709915665000,123],[1709915666000,114],[1709915667000,117],[1709915668000,118],[1709915669000,113],[1709915670000,118],[1709915671000,118],[1709915672000,110],[1709915673000,113],[1709915674000,122],[1709915675000,112],[1709915676000,110],[1709915677000,113],[1709915678000,117],[1709915679000,115],[1709915680000,121],[1709915681000,111],[1709915682000,116],[1709915683000,120],[1709915684000,124],[1709915685000,111],[1709915686000,116],[1709915687000,113],[1709915688000,112],[1709915689000,131],[1709915690000,117],[1709915691000,115],[1709915692000,116],[1709915693000,116],[1709915694000,117],[1709915695000,118],[1709915696000,114],[1709915697000,113],[1709915698000,118],[1709915699000,116],[1709915700000,112],[1709915701000,117],[1709915702000,124],[1709915703000,118],[1709915704000,125],[1709915705000,111],[1709915706000,120],[1709915707000,112],[1709915708000,117],[1709915709000,120],[1709915710000,118],[1709915711000,121],[1709915712000,122],[1709915713000,115],[1709915714000,120],[1709915715000,115],[1709915716000,110],[1709915717000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#68b65c',
name: 'débitos',
data: [
[1709915472000,0],[1709915473000,0],[1709915474000,0],[1709915475000,0],[1709915476000,0],[1709915477000,2],[1709915478000,4],[1709915479000,6],[1709915480000,7],[1709915481000,9],[1709915482000,11],[1709915483000,13],[1709915484000,15],[1709915485000,16],[1709915486000,19],[1709915487000,20],[1709915488000,22],[1709915489000,24],[1709915490000,25],[1709915491000,28],[1709915492000,29],[1709915493000,31],[1709915494000,33],[1709915495000,35],[1709915496000,37],[1709915497000,38],[1709915498000,40],[1709915499000,42],[1709915500000,44],[1709915501000,46],[1709915502000,47],[1709915503000,50],[1709915504000,51],[1709915505000,53],[1709915506000,55],[1709915507000,56],[1709915508000,59],[1709915509000,60],[1709915510000,62],[1709915511000,64],[1709915512000,66],[1709915513000,68],[1709915514000,69],[1709915515000,71],[1709915516000,74],[1709915517000,74],[1709915518000,77],[1709915519000,79],[1709915520000,80],[1709915521000,82],[1709915522000,85],[1709915523000,86],[1709915524000,89],[1709915525000,90],[1709915526000,93],[1709915527000,93],[1709915528000,96],[1709915529000,98],[1709915530000,99],[1709915531000,101],[1709915532000,102],[1709915533000,104],[1709915534000,106],[1709915535000,108],[1709915536000,110],[1709915537000,111],[1709915538000,113],[1709915539000,115],[1709915540000,117],[1709915541000,119],[1709915542000,120],[1709915543000,123],[1709915544000,124],[1709915545000,126],[1709915546000,128],[1709915547000,129],[1709915548000,132],[1709915549000,133],[1709915550000,135],[1709915551000,137],[1709915552000,139],[1709915553000,141],[1709915554000,142],[1709915555000,144],[1709915556000,147],[1709915557000,147],[1709915558000,150],[1709915559000,152],[1709915560000,153],[1709915561000,155],[1709915562000,157],[1709915563000,159],[1709915564000,161],[1709915565000,162],[1709915566000,165],[1709915567000,167],[1709915568000,169],[1709915569000,170],[1709915570000,172],[1709915571000,175],[1709915572000,176],[1709915573000,203],[1709915574000,180],[1709915575000,182],[1709915576000,184],[1709915577000,204],[1709915578000,186],[1709915579000,193],[1709915580000,202],[1709915581000,192],[1709915582000,208],[1709915583000,210],[1709915584000,220],[1709915585000,225],[1709915586000,206],[1709915587000,205],[1709915588000,213],[1709915589000,206],[1709915590000,216],[1709915591000,212],[1709915592000,242],[1709915593000,230],[1709915594000,238],[1709915595000,245],[1709915596000,243],[1709915597000,229],[1709915598000,239],[1709915599000,238],[1709915600000,236],[1709915601000,234],[1709915602000,239],[1709915603000,230],[1709915604000,237],[1709915605000,243],[1709915606000,222],[1709915607000,228],[1709915608000,234],[1709915609000,227],[1709915610000,221],[1709915611000,239],[1709915612000,246],[1709915613000,251],[1709915614000,238],[1709915615000,230],[1709915616000,245],[1709915617000,237],[1709915618000,255],[1709915619000,227],[1709915620000,243],[1709915621000,225],[1709915622000,227],[1709915623000,245],[1709915624000,232],[1709915625000,221],[1709915626000,244],[1709915627000,235],[1709915628000,239],[1709915629000,248],[1709915630000,234],[1709915631000,254],[1709915632000,220],[1709915633000,230],[1709915634000,236],[1709915635000,242],[1709915636000,242],[1709915637000,224],[1709915638000,221],[1709915639000,244],[1709915640000,225],[1709915641000,235],[1709915642000,242],[1709915643000,239],[1709915644000,232],[1709915645000,228],[1709915646000,237],[1709915647000,239],[1709915648000,227],[1709915649000,266],[1709915650000,223],[1709915651000,231],[1709915652000,222],[1709915653000,226],[1709915654000,246],[1709915655000,263],[1709915656000,220],[1709915657000,254],[1709915658000,235],[1709915659000,234],[1709915660000,247],[1709915661000,233],[1709915662000,233],[1709915663000,232],[1709915664000,246],[1709915665000,245],[1709915666000,227],[1709915667000,234],[1709915668000,240],[1709915669000,223],[1709915670000,236],[1709915671000,233],[1709915672000,220],[1709915673000,224],[1709915674000,251],[1709915675000,224],[1709915676000,220],[1709915677000,226],[1709915678000,228],[1709915679000,231],[1709915680000,240],[1709915681000,220],[1709915682000,232],[1709915683000,236],[1709915684000,244],[1709915685000,222],[1709915686000,232],[1709915687000,223],[1709915688000,223],[1709915689000,260],[1709915690000,235],[1709915691000,234],[1709915692000,236],[1709915693000,232],[1709915694000,234],[1709915695000,237],[1709915696000,226],[1709915697000,225],[1709915698000,241],[1709915699000,234],[1709915700000,224],[1709915701000,231],[1709915702000,248],[1709915703000,233],[1709915704000,241],[1709915705000,221],[1709915706000,232],[1709915707000,227],[1709915708000,231],[1709915709000,239],[1709915710000,243],[1709915711000,247],[1709915712000,245],[1709915713000,231],[1709915714000,239],[1709915715000,232],[1709915716000,220],[1709915717000,1]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#f15b4f',
name: 'extratos',
data: [
[1709915472000,0],[1709915473000,0],[1709915474000,0],[1709915475000,0],[1709915476000,0],[1709915477000,2],[1709915478000,1],[1709915479000,1],[1709915480000,1],[1709915481000,1],[1709915482000,2],[1709915483000,1],[1709915484000,2],[1709915485000,2],[1709915486000,1],[1709915487000,2],[1709915488000,2],[1709915489000,2],[1709915490000,2],[1709915491000,2],[1709915492000,2],[1709915493000,2],[1709915494000,3],[1709915495000,2],[1709915496000,3],[1709915497000,2],[1709915498000,3],[1709915499000,2],[1709915500000,3],[1709915501000,3],[1709915502000,3],[1709915503000,3],[1709915504000,3],[1709915505000,3],[1709915506000,3],[1709915507000,4],[1709915508000,3],[1709915509000,3],[1709915510000,4],[1709915511000,3],[1709915512000,4],[1709915513000,4],[1709915514000,4],[1709915515000,4],[1709915516000,4],[1709915517000,4],[1709915518000,4],[1709915519000,4],[1709915520000,4],[1709915521000,4],[1709915522000,5],[1709915523000,4],[1709915524000,5],[1709915525000,5],[1709915526000,4],[1709915527000,5],[1709915528000,5],[1709915529000,5],[1709915530000,5],[1709915531000,5],[1709915532000,5],[1709915533000,5],[1709915534000,6],[1709915535000,5],[1709915536000,6],[1709915537000,5],[1709915538000,6],[1709915539000,5],[1709915540000,6],[1709915541000,6],[1709915542000,6],[1709915543000,6],[1709915544000,6],[1709915545000,6],[1709915546000,6],[1709915547000,7],[1709915548000,6],[1709915549000,6],[1709915550000,7],[1709915551000,6],[1709915552000,7],[1709915553000,7],[1709915554000,7],[1709915555000,7],[1709915556000,7],[1709915557000,7],[1709915558000,7],[1709915559000,7],[1709915560000,7],[1709915561000,7],[1709915562000,8],[1709915563000,7],[1709915564000,8],[1709915565000,8],[1709915566000,7],[1709915567000,8],[1709915568000,8],[1709915569000,8],[1709915570000,8],[1709915571000,8],[1709915572000,8],[1709915573000,9],[1709915574000,9],[1709915575000,8],[1709915576000,9],[1709915577000,10],[1709915578000,9],[1709915579000,8],[1709915580000,10],[1709915581000,10],[1709915582000,9],[1709915583000,10],[1709915584000,10],[1709915585000,10],[1709915586000,10],[1709915587000,11],[1709915588000,10],[1709915589000,9],[1709915590000,11],[1709915591000,10],[1709915592000,12],[1709915593000,11],[1709915594000,12],[1709915595000,12],[1709915596000,11],[1709915597000,12],[1709915598000,12],[1709915599000,12],[1709915600000,11],[1709915601000,11],[1709915602000,11],[1709915603000,11],[1709915604000,10],[1709915605000,11],[1709915606000,11],[1709915607000,11],[1709915608000,10],[1709915609000,11],[1709915610000,10],[1709915611000,12],[1709915612000,11],[1709915613000,12],[1709915614000,12],[1709915615000,11],[1709915616000,12],[1709915617000,13],[1709915618000,13],[1709915619000,10],[1709915620000,11],[1709915621000,12],[1709915622000,11],[1709915623000,12],[1709915624000,11],[1709915625000,10],[1709915626000,11],[1709915627000,13],[1709915628000,11],[1709915629000,13],[1709915630000,13],[1709915631000,12],[1709915632000,10],[1709915633000,11],[1709915634000,11],[1709915635000,12],[1709915636000,12],[1709915637000,11],[1709915638000,10],[1709915639000,12],[1709915640000,11],[1709915641000,11],[1709915642000,12],[1709915643000,11],[1709915644000,11],[1709915645000,11],[1709915646000,12],[1709915647000,11],[1709915648000,11],[1709915649000,13],[1709915650000,11],[1709915651000,12],[1709915652000,11],[1709915653000,12],[1709915654000,12],[1709915655000,13],[1709915656000,10],[1709915657000,12],[1709915658000,11],[1709915659000,11],[1709915660000,12],[1709915661000,11],[1709915662000,11],[1709915663000,11],[1709915664000,12],[1709915665000,13],[1709915666000,10],[1709915667000,11],[1709915668000,12],[1709915669000,11],[1709915670000,13],[1709915671000,11],[1709915672000,10],[1709915673000,11],[1709915674000,11],[1709915675000,11],[1709915676000,10],[1709915677000,11],[1709915678000,10],[1709915679000,12],[1709915680000,12],[1709915681000,10],[1709915682000,11],[1709915683000,10],[1709915684000,12],[1709915685000,11],[1709915686000,11],[1709915687000,12],[1709915688000,11],[1709915689000,12],[1709915690000,11],[1709915691000,11],[1709915692000,11],[1709915693000,12],[1709915694000,12],[1709915695000,12],[1709915696000,12],[1709915697000,11],[1709915698000,13],[1709915699000,12],[1709915700000,11],[1709915701000,11],[1709915702000,12],[1709915703000,12],[1709915704000,11],[1709915705000,11],[1709915706000,12],[1709915707000,11],[1709915708000,11],[1709915709000,13],[1709915710000,11],[1709915711000,12],[1709915712000,12],[1709915713000,11],[1709915714000,12],[1709915715000,12],[1709915716000,10],[1709915717000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FFDD00',
name: 'validações',
data: [
[1709915472000,0],[1709915473000,0],[1709915474000,0],[1709915475000,5],[1709915476000,5],[1709915477000,0],[1709915478000,0],[1709915479000,0],[1709915480000,0],[1709915481000,0],[1709915482000,0],[1709915483000,0],[1709915484000,0],[1709915485000,0],[1709915486000,0],[1709915487000,0],[1709915488000,0],[1709915489000,0],[1709915490000,0],[1709915491000,0],[1709915492000,0],[1709915493000,0],[1709915494000,0],[1709915495000,0],[1709915496000,0],[1709915497000,0],[1709915498000,0],[1709915499000,0],[1709915500000,0],[1709915501000,0],[1709915502000,0],[1709915503000,0],[1709915504000,0],[1709915505000,0],[1709915506000,0],[1709915507000,0],[1709915508000,0],[1709915509000,0],[1709915510000,0],[1709915511000,0],[1709915512000,0],[1709915513000,0],[1709915514000,0],[1709915515000,0],[1709915516000,0],[1709915517000,0],[1709915518000,0],[1709915519000,0],[1709915520000,0],[1709915521000,0],[1709915522000,0],[1709915523000,0],[1709915524000,0],[1709915525000,0],[1709915526000,0],[1709915527000,0],[1709915528000,0],[1709915529000,0],[1709915530000,0],[1709915531000,0],[1709915532000,0],[1709915533000,0],[1709915534000,0],[1709915535000,0],[1709915536000,0],[1709915537000,0],[1709915538000,0],[1709915539000,0],[1709915540000,0],[1709915541000,0],[1709915542000,0],[1709915543000,0],[1709915544000,0],[1709915545000,0],[1709915546000,0],[1709915547000,0],[1709915548000,0],[1709915549000,0],[1709915550000,0],[1709915551000,0],[1709915552000,0],[1709915553000,0],[1709915554000,0],[1709915555000,0],[1709915556000,0],[1709915557000,0],[1709915558000,0],[1709915559000,0],[1709915560000,0],[1709915561000,0],[1709915562000,0],[1709915563000,0],[1709915564000,0],[1709915565000,0],[1709915566000,0],[1709915567000,0],[1709915568000,0],[1709915569000,0],[1709915570000,0],[1709915571000,0],[1709915572000,0],[1709915573000,0],[1709915574000,0],[1709915575000,0],[1709915576000,0],[1709915577000,0],[1709915578000,0],[1709915579000,0],[1709915580000,0],[1709915581000,0],[1709915582000,0],[1709915583000,0],[1709915584000,0],[1709915585000,0],[1709915586000,0],[1709915587000,0],[1709915588000,0],[1709915589000,0],[1709915590000,0],[1709915591000,0],[1709915592000,0],[1709915593000,0],[1709915594000,0],[1709915595000,0],[1709915596000,0],[1709915597000,0],[1709915598000,0],[1709915599000,0],[1709915600000,0],[1709915601000,0],[1709915602000,0],[1709915603000,0],[1709915604000,0],[1709915605000,0],[1709915606000,0],[1709915607000,0],[1709915608000,0],[1709915609000,0],[1709915610000,0],[1709915611000,0],[1709915612000,0],[1709915613000,0],[1709915614000,0],[1709915615000,0],[1709915616000,0],[1709915617000,0],[1709915618000,0],[1709915619000,0],[1709915620000,0],[1709915621000,0],[1709915622000,0],[1709915623000,0],[1709915624000,0],[1709915625000,0],[1709915626000,0],[1709915627000,0],[1709915628000,0],[1709915629000,0],[1709915630000,0],[1709915631000,0],[1709915632000,0],[1709915633000,0],[1709915634000,0],[1709915635000,0],[1709915636000,0],[1709915637000,0],[1709915638000,0],[1709915639000,0],[1709915640000,0],[1709915641000,0],[1709915642000,0],[1709915643000,0],[1709915644000,0],[1709915645000,0],[1709915646000,0],[1709915647000,0],[1709915648000,0],[1709915649000,0],[1709915650000,0],[1709915651000,0],[1709915652000,0],[1709915653000,0],[1709915654000,0],[1709915655000,0],[1709915656000,0],[1709915657000,0],[1709915658000,0],[1709915659000,0],[1709915660000,0],[1709915661000,0],[1709915662000,0],[1709915663000,0],[1709915664000,0],[1709915665000,0],[1709915666000,0],[1709915667000,0],[1709915668000,0],[1709915669000,0],[1709915670000,0],[1709915671000,0],[1709915672000,0],[1709915673000,0],[1709915674000,0],[1709915675000,0],[1709915676000,0],[1709915677000,0],[1709915678000,0],[1709915679000,0],[1709915680000,0],[1709915681000,0],[1709915682000,0],[1709915683000,0],[1709915684000,0],[1709915685000,0],[1709915686000,0],[1709915687000,0],[1709915688000,0],[1709915689000,0],[1709915690000,0],[1709915691000,0],[1709915692000,0],[1709915693000,0],[1709915694000,0],[1709915695000,0],[1709915696000,0],[1709915697000,0],[1709915698000,0],[1709915699000,0],[1709915700000,0],[1709915701000,0],[1709915702000,0],[1709915703000,0],[1709915704000,0],[1709915705000,0],[1709915706000,0],[1709915707000,0],[1709915708000,0],[1709915709000,0],[1709915710000,0],[1709915711000,0],[1709915712000,0],[1709915713000,0],[1709915714000,0],[1709915715000,0],[1709915716000,0],[1709915717000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00D5FF',
name: 'validação HTTP 404',
data: [
[1709915472000,0],[1709915473000,0],[1709915474000,0],[1709915475000,1],[1709915476000,0],[1709915477000,0],[1709915478000,0],[1709915479000,0],[1709915480000,0],[1709915481000,0],[1709915482000,0],[1709915483000,0],[1709915484000,0],[1709915485000,0],[1709915486000,0],[1709915487000,0],[1709915488000,0],[1709915489000,0],[1709915490000,0],[1709915491000,0],[1709915492000,0],[1709915493000,0],[1709915494000,0],[1709915495000,0],[1709915496000,0],[1709915497000,0],[1709915498000,0],[1709915499000,0],[1709915500000,0],[1709915501000,0],[1709915502000,0],[1709915503000,0],[1709915504000,0],[1709915505000,0],[1709915506000,0],[1709915507000,0],[1709915508000,0],[1709915509000,0],[1709915510000,0],[1709915511000,0],[1709915512000,0],[1709915513000,0],[1709915514000,0],[1709915515000,0],[1709915516000,0],[1709915517000,0],[1709915518000,0],[1709915519000,0],[1709915520000,0],[1709915521000,0],[1709915522000,0],[1709915523000,0],[1709915524000,0],[1709915525000,0],[1709915526000,0],[1709915527000,0],[1709915528000,0],[1709915529000,0],[1709915530000,0],[1709915531000,0],[1709915532000,0],[1709915533000,0],[1709915534000,0],[1709915535000,0],[1709915536000,0],[1709915537000,0],[1709915538000,0],[1709915539000,0],[1709915540000,0],[1709915541000,0],[1709915542000,0],[1709915543000,0],[1709915544000,0],[1709915545000,0],[1709915546000,0],[1709915547000,0],[1709915548000,0],[1709915549000,0],[1709915550000,0],[1709915551000,0],[1709915552000,0],[1709915553000,0],[1709915554000,0],[1709915555000,0],[1709915556000,0],[1709915557000,0],[1709915558000,0],[1709915559000,0],[1709915560000,0],[1709915561000,0],[1709915562000,0],[1709915563000,0],[1709915564000,0],[1709915565000,0],[1709915566000,0],[1709915567000,0],[1709915568000,0],[1709915569000,0],[1709915570000,0],[1709915571000,0],[1709915572000,0],[1709915573000,0],[1709915574000,0],[1709915575000,0],[1709915576000,0],[1709915577000,0],[1709915578000,0],[1709915579000,0],[1709915580000,0],[1709915581000,0],[1709915582000,0],[1709915583000,0],[1709915584000,0],[1709915585000,0],[1709915586000,0],[1709915587000,0],[1709915588000,0],[1709915589000,0],[1709915590000,0],[1709915591000,0],[1709915592000,0],[1709915593000,0],[1709915594000,0],[1709915595000,0],[1709915596000,0],[1709915597000,0],[1709915598000,0],[1709915599000,0],[1709915600000,0],[1709915601000,0],[1709915602000,0],[1709915603000,0],[1709915604000,0],[1709915605000,0],[1709915606000,0],[1709915607000,0],[1709915608000,0],[1709915609000,0],[1709915610000,0],[1709915611000,0],[1709915612000,0],[1709915613000,0],[1709915614000,0],[1709915615000,0],[1709915616000,0],[1709915617000,0],[1709915618000,0],[1709915619000,0],[1709915620000,0],[1709915621000,0],[1709915622000,0],[1709915623000,0],[1709915624000,0],[1709915625000,0],[1709915626000,0],[1709915627000,0],[1709915628000,0],[1709915629000,0],[1709915630000,0],[1709915631000,0],[1709915632000,0],[1709915633000,0],[1709915634000,0],[1709915635000,0],[1709915636000,0],[1709915637000,0],[1709915638000,0],[1709915639000,0],[1709915640000,0],[1709915641000,0],[1709915642000,0],[1709915643000,0],[1709915644000,0],[1709915645000,0],[1709915646000,0],[1709915647000,0],[1709915648000,0],[1709915649000,0],[1709915650000,0],[1709915651000,0],[1709915652000,0],[1709915653000,0],[1709915654000,0],[1709915655000,0],[1709915656000,0],[1709915657000,0],[1709915658000,0],[1709915659000,0],[1709915660000,0],[1709915661000,0],[1709915662000,0],[1709915663000,0],[1709915664000,0],[1709915665000,0],[1709915666000,0],[1709915667000,0],[1709915668000,0],[1709915669000,0],[1709915670000,0],[1709915671000,0],[1709915672000,0],[1709915673000,0],[1709915674000,0],[1709915675000,0],[1709915676000,0],[1709915677000,0],[1709915678000,0],[1709915679000,0],[1709915680000,0],[1709915681000,0],[1709915682000,0],[1709915683000,0],[1709915684000,0],[1709915685000,0],[1709915686000,0],[1709915687000,0],[1709915688000,0],[1709915689000,0],[1709915690000,0],[1709915691000,0],[1709915692000,0],[1709915693000,0],[1709915694000,0],[1709915695000,0],[1709915696000,0],[1709915697000,0],[1709915698000,0],[1709915699000,0],[1709915700000,0],[1709915701000,0],[1709915702000,0],[1709915703000,0],[1709915704000,0],[1709915705000,0],[1709915706000,0],[1709915707000,0],[1709915708000,0],[1709915709000,0],[1709915710000,0],[1709915711000,0],[1709915712000,0],[1709915713000,0],[1709915714000,0],[1709915715000,0],[1709915716000,0],[1709915717000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00FF00',
name: 'validação concorrência saldo - 0',
data: [
[1709915472000,0],[1709915473000,0],[1709915474000,1],[1709915475000,0],[1709915476000,0],[1709915477000,0],[1709915478000,0],[1709915479000,0],[1709915480000,0],[1709915481000,0],[1709915482000,0],[1709915483000,0],[1709915484000,0],[1709915485000,0],[1709915486000,0],[1709915487000,0],[1709915488000,0],[1709915489000,0],[1709915490000,0],[1709915491000,0],[1709915492000,0],[1709915493000,0],[1709915494000,0],[1709915495000,0],[1709915496000,0],[1709915497000,0],[1709915498000,0],[1709915499000,0],[1709915500000,0],[1709915501000,0],[1709915502000,0],[1709915503000,0],[1709915504000,0],[1709915505000,0],[1709915506000,0],[1709915507000,0],[1709915508000,0],[1709915509000,0],[1709915510000,0],[1709915511000,0],[1709915512000,0],[1709915513000,0],[1709915514000,0],[1709915515000,0],[1709915516000,0],[1709915517000,0],[1709915518000,0],[1709915519000,0],[1709915520000,0],[1709915521000,0],[1709915522000,0],[1709915523000,0],[1709915524000,0],[1709915525000,0],[1709915526000,0],[1709915527000,0],[1709915528000,0],[1709915529000,0],[1709915530000,0],[1709915531000,0],[1709915532000,0],[1709915533000,0],[1709915534000,0],[1709915535000,0],[1709915536000,0],[1709915537000,0],[1709915538000,0],[1709915539000,0],[1709915540000,0],[1709915541000,0],[1709915542000,0],[1709915543000,0],[1709915544000,0],[1709915545000,0],[1709915546000,0],[1709915547000,0],[1709915548000,0],[1709915549000,0],[1709915550000,0],[1709915551000,0],[1709915552000,0],[1709915553000,0],[1709915554000,0],[1709915555000,0],[1709915556000,0],[1709915557000,0],[1709915558000,0],[1709915559000,0],[1709915560000,0],[1709915561000,0],[1709915562000,0],[1709915563000,0],[1709915564000,0],[1709915565000,0],[1709915566000,0],[1709915567000,0],[1709915568000,0],[1709915569000,0],[1709915570000,0],[1709915571000,0],[1709915572000,0],[1709915573000,0],[1709915574000,0],[1709915575000,0],[1709915576000,0],[1709915577000,0],[1709915578000,0],[1709915579000,0],[1709915580000,0],[1709915581000,0],[1709915582000,0],[1709915583000,0],[1709915584000,0],[1709915585000,0],[1709915586000,0],[1709915587000,0],[1709915588000,0],[1709915589000,0],[1709915590000,0],[1709915591000,0],[1709915592000,0],[1709915593000,0],[1709915594000,0],[1709915595000,0],[1709915596000,0],[1709915597000,0],[1709915598000,0],[1709915599000,0],[1709915600000,0],[1709915601000,0],[1709915602000,0],[1709915603000,0],[1709915604000,0],[1709915605000,0],[1709915606000,0],[1709915607000,0],[1709915608000,0],[1709915609000,0],[1709915610000,0],[1709915611000,0],[1709915612000,0],[1709915613000,0],[1709915614000,0],[1709915615000,0],[1709915616000,0],[1709915617000,0],[1709915618000,0],[1709915619000,0],[1709915620000,0],[1709915621000,0],[1709915622000,0],[1709915623000,0],[1709915624000,0],[1709915625000,0],[1709915626000,0],[1709915627000,0],[1709915628000,0],[1709915629000,0],[1709915630000,0],[1709915631000,0],[1709915632000,0],[1709915633000,0],[1709915634000,0],[1709915635000,0],[1709915636000,0],[1709915637000,0],[1709915638000,0],[1709915639000,0],[1709915640000,0],[1709915641000,0],[1709915642000,0],[1709915643000,0],[1709915644000,0],[1709915645000,0],[1709915646000,0],[1709915647000,0],[1709915648000,0],[1709915649000,0],[1709915650000,0],[1709915651000,0],[1709915652000,0],[1709915653000,0],[1709915654000,0],[1709915655000,0],[1709915656000,0],[1709915657000,0],[1709915658000,0],[1709915659000,0],[1709915660000,0],[1709915661000,0],[1709915662000,0],[1709915663000,0],[1709915664000,0],[1709915665000,0],[1709915666000,0],[1709915667000,0],[1709915668000,0],[1709915669000,0],[1709915670000,0],[1709915671000,0],[1709915672000,0],[1709915673000,0],[1709915674000,0],[1709915675000,0],[1709915676000,0],[1709915677000,0],[1709915678000,0],[1709915679000,0],[1709915680000,0],[1709915681000,0],[1709915682000,0],[1709915683000,0],[1709915684000,0],[1709915685000,0],[1709915686000,0],[1709915687000,0],[1709915688000,0],[1709915689000,0],[1709915690000,0],[1709915691000,0],[1709915692000,0],[1709915693000,0],[1709915694000,0],[1709915695000,0],[1709915696000,0],[1709915697000,0],[1709915698000,0],[1709915699000,0],[1709915700000,0],[1709915701000,0],[1709915702000,0],[1709915703000,0],[1709915704000,0],[1709915705000,0],[1709915706000,0],[1709915707000,0],[1709915708000,0],[1709915709000,0],[1709915710000,0],[1709915711000,0],[1709915712000,0],[1709915713000,0],[1709915714000,0],[1709915715000,0],[1709915716000,0],[1709915717000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#9D00FF',
name: 'validação concorrência transações - c',
data: [
[1709915472000,0],[1709915473000,22],[1709915474000,20],[1709915475000,0],[1709915476000,0],[1709915477000,0],[1709915478000,0],[1709915479000,0],[1709915480000,0],[1709915481000,0],[1709915482000,0],[1709915483000,0],[1709915484000,0],[1709915485000,0],[1709915486000,0],[1709915487000,0],[1709915488000,0],[1709915489000,0],[1709915490000,0],[1709915491000,0],[1709915492000,0],[1709915493000,0],[1709915494000,0],[1709915495000,0],[1709915496000,0],[1709915497000,0],[1709915498000,0],[1709915499000,0],[1709915500000,0],[1709915501000,0],[1709915502000,0],[1709915503000,0],[1709915504000,0],[1709915505000,0],[1709915506000,0],[1709915507000,0],[1709915508000,0],[1709915509000,0],[1709915510000,0],[1709915511000,0],[1709915512000,0],[1709915513000,0],[1709915514000,0],[1709915515000,0],[1709915516000,0],[1709915517000,0],[1709915518000,0],[1709915519000,0],[1709915520000,0],[1709915521000,0],[1709915522000,0],[1709915523000,0],[1709915524000,0],[1709915525000,0],[1709915526000,0],[1709915527000,0],[1709915528000,0],[1709915529000,0],[1709915530000,0],[1709915531000,0],[1709915532000,0],[1709915533000,0],[1709915534000,0],[1709915535000,0],[1709915536000,0],[1709915537000,0],[1709915538000,0],[1709915539000,0],[1709915540000,0],[1709915541000,0],[1709915542000,0],[1709915543000,0],[1709915544000,0],[1709915545000,0],[1709915546000,0],[1709915547000,0],[1709915548000,0],[1709915549000,0],[1709915550000,0],[1709915551000,0],[1709915552000,0],[1709915553000,0],[1709915554000,0],[1709915555000,0],[1709915556000,0],[1709915557000,0],[1709915558000,0],[1709915559000,0],[1709915560000,0],[1709915561000,0],[1709915562000,0],[1709915563000,0],[1709915564000,0],[1709915565000,0],[1709915566000,0],[1709915567000,0],[1709915568000,0],[1709915569000,0],[1709915570000,0],[1709915571000,0],[1709915572000,0],[1709915573000,0],[1709915574000,0],[1709915575000,0],[1709915576000,0],[1709915577000,0],[1709915578000,0],[1709915579000,0],[1709915580000,0],[1709915581000,0],[1709915582000,0],[1709915583000,0],[1709915584000,0],[1709915585000,0],[1709915586000,0],[1709915587000,0],[1709915588000,0],[1709915589000,0],[1709915590000,0],[1709915591000,0],[1709915592000,0],[1709915593000,0],[1709915594000,0],[1709915595000,0],[1709915596000,0],[1709915597000,0],[1709915598000,0],[1709915599000,0],[1709915600000,0],[1709915601000,0],[1709915602000,0],[1709915603000,0],[1709915604000,0],[1709915605000,0],[1709915606000,0],[1709915607000,0],[1709915608000,0],[1709915609000,0],[1709915610000,0],[1709915611000,0],[1709915612000,0],[1709915613000,0],[1709915614000,0],[1709915615000,0],[1709915616000,0],[1709915617000,0],[1709915618000,0],[1709915619000,0],[1709915620000,0],[1709915621000,0],[1709915622000,0],[1709915623000,0],[1709915624000,0],[1709915625000,0],[1709915626000,0],[1709915627000,0],[1709915628000,0],[1709915629000,0],[1709915630000,0],[1709915631000,0],[1709915632000,0],[1709915633000,0],[1709915634000,0],[1709915635000,0],[1709915636000,0],[1709915637000,0],[1709915638000,0],[1709915639000,0],[1709915640000,0],[1709915641000,0],[1709915642000,0],[1709915643000,0],[1709915644000,0],[1709915645000,0],[1709915646000,0],[1709915647000,0],[1709915648000,0],[1709915649000,0],[1709915650000,0],[1709915651000,0],[1709915652000,0],[1709915653000,0],[1709915654000,0],[1709915655000,0],[1709915656000,0],[1709915657000,0],[1709915658000,0],[1709915659000,0],[1709915660000,0],[1709915661000,0],[1709915662000,0],[1709915663000,0],[1709915664000,0],[1709915665000,0],[1709915666000,0],[1709915667000,0],[1709915668000,0],[1709915669000,0],[1709915670000,0],[1709915671000,0],[1709915672000,0],[1709915673000,0],[1709915674000,0],[1709915675000,0],[1709915676000,0],[1709915677000,0],[1709915678000,0],[1709915679000,0],[1709915680000,0],[1709915681000,0],[1709915682000,0],[1709915683000,0],[1709915684000,0],[1709915685000,0],[1709915686000,0],[1709915687000,0],[1709915688000,0],[1709915689000,0],[1709915690000,0],[1709915691000,0],[1709915692000,0],[1709915693000,0],[1709915694000,0],[1709915695000,0],[1709915696000,0],[1709915697000,0],[1709915698000,0],[1709915699000,0],[1709915700000,0],[1709915701000,0],[1709915702000,0],[1709915703000,0],[1709915704000,0],[1709915705000,0],[1709915706000,0],[1709915707000,0],[1709915708000,0],[1709915709000,0],[1709915710000,0],[1709915711000,0],[1709915712000,0],[1709915713000,0],[1709915714000,0],[1709915715000,0],[1709915716000,0],[1709915717000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FF00E1',
name: 'validação concorrência saldo - -25',
data: [
[1709915472000,1],[1709915473000,1],[1709915474000,0],[1709915475000,0],[1709915476000,0],[1709915477000,0],[1709915478000,0],[1709915479000,0],[1709915480000,0],[1709915481000,0],[1709915482000,0],[1709915483000,0],[1709915484000,0],[1709915485000,0],[1709915486000,0],[1709915487000,0],[1709915488000,0],[1709915489000,0],[1709915490000,0],[1709915491000,0],[1709915492000,0],[1709915493000,0],[1709915494000,0],[1709915495000,0],[1709915496000,0],[1709915497000,0],[1709915498000,0],[1709915499000,0],[1709915500000,0],[1709915501000,0],[1709915502000,0],[1709915503000,0],[1709915504000,0],[1709915505000,0],[1709915506000,0],[1709915507000,0],[1709915508000,0],[1709915509000,0],[1709915510000,0],[1709915511000,0],[1709915512000,0],[1709915513000,0],[1709915514000,0],[1709915515000,0],[1709915516000,0],[1709915517000,0],[1709915518000,0],[1709915519000,0],[1709915520000,0],[1709915521000,0],[1709915522000,0],[1709915523000,0],[1709915524000,0],[1709915525000,0],[1709915526000,0],[1709915527000,0],[1709915528000,0],[1709915529000,0],[1709915530000,0],[1709915531000,0],[1709915532000,0],[1709915533000,0],[1709915534000,0],[1709915535000,0],[1709915536000,0],[1709915537000,0],[1709915538000,0],[1709915539000,0],[1709915540000,0],[1709915541000,0],[1709915542000,0],[1709915543000,0],[1709915544000,0],[1709915545000,0],[1709915546000,0],[1709915547000,0],[1709915548000,0],[1709915549000,0],[1709915550000,0],[1709915551000,0],[1709915552000,0],[1709915553000,0],[1709915554000,0],[1709915555000,0],[1709915556000,0],[1709915557000,0],[1709915558000,0],[1709915559000,0],[1709915560000,0],[1709915561000,0],[1709915562000,0],[1709915563000,0],[1709915564000,0],[1709915565000,0],[1709915566000,0],[1709915567000,0],[1709915568000,0],[1709915569000,0],[1709915570000,0],[1709915571000,0],[1709915572000,0],[1709915573000,0],[1709915574000,0],[1709915575000,0],[1709915576000,0],[1709915577000,0],[1709915578000,0],[1709915579000,0],[1709915580000,0],[1709915581000,0],[1709915582000,0],[1709915583000,0],[1709915584000,0],[1709915585000,0],[1709915586000,0],[1709915587000,0],[1709915588000,0],[1709915589000,0],[1709915590000,0],[1709915591000,0],[1709915592000,0],[1709915593000,0],[1709915594000,0],[1709915595000,0],[1709915596000,0],[1709915597000,0],[1709915598000,0],[1709915599000,0],[1709915600000,0],[1709915601000,0],[1709915602000,0],[1709915603000,0],[1709915604000,0],[1709915605000,0],[1709915606000,0],[1709915607000,0],[1709915608000,0],[1709915609000,0],[1709915610000,0],[1709915611000,0],[1709915612000,0],[1709915613000,0],[1709915614000,0],[1709915615000,0],[1709915616000,0],[1709915617000,0],[1709915618000,0],[1709915619000,0],[1709915620000,0],[1709915621000,0],[1709915622000,0],[1709915623000,0],[1709915624000,0],[1709915625000,0],[1709915626000,0],[1709915627000,0],[1709915628000,0],[1709915629000,0],[1709915630000,0],[1709915631000,0],[1709915632000,0],[1709915633000,0],[1709915634000,0],[1709915635000,0],[1709915636000,0],[1709915637000,0],[1709915638000,0],[1709915639000,0],[1709915640000,0],[1709915641000,0],[1709915642000,0],[1709915643000,0],[1709915644000,0],[1709915645000,0],[1709915646000,0],[1709915647000,0],[1709915648000,0],[1709915649000,0],[1709915650000,0],[1709915651000,0],[1709915652000,0],[1709915653000,0],[1709915654000,0],[1709915655000,0],[1709915656000,0],[1709915657000,0],[1709915658000,0],[1709915659000,0],[1709915660000,0],[1709915661000,0],[1709915662000,0],[1709915663000,0],[1709915664000,0],[1709915665000,0],[1709915666000,0],[1709915667000,0],[1709915668000,0],[1709915669000,0],[1709915670000,0],[1709915671000,0],[1709915672000,0],[1709915673000,0],[1709915674000,0],[1709915675000,0],[1709915676000,0],[1709915677000,0],[1709915678000,0],[1709915679000,0],[1709915680000,0],[1709915681000,0],[1709915682000,0],[1709915683000,0],[1709915684000,0],[1709915685000,0],[1709915686000,0],[1709915687000,0],[1709915688000,0],[1709915689000,0],[1709915690000,0],[1709915691000,0],[1709915692000,0],[1709915693000,0],[1709915694000,0],[1709915695000,0],[1709915696000,0],[1709915697000,0],[1709915698000,0],[1709915699000,0],[1709915700000,0],[1709915701000,0],[1709915702000,0],[1709915703000,0],[1709915704000,0],[1709915705000,0],[1709915706000,0],[1709915707000,0],[1709915708000,0],[1709915709000,0],[1709915710000,0],[1709915711000,0],[1709915712000,0],[1709915713000,0],[1709915714000,0],[1709915715000,0],[1709915716000,0],[1709915717000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#AECAEB',
name: 'validação concorrência transações - d',
data: [
[1709915472000,25],[1709915473000,0],[1709915474000,0],[1709915475000,0],[1709915476000,0],[1709915477000,0],[1709915478000,0],[1709915479000,0],[1709915480000,0],[1709915481000,0],[1709915482000,0],[1709915483000,0],[1709915484000,0],[1709915485000,0],[1709915486000,0],[1709915487000,0],[1709915488000,0],[1709915489000,0],[1709915490000,0],[1709915491000,0],[1709915492000,0],[1709915493000,0],[1709915494000,0],[1709915495000,0],[1709915496000,0],[1709915497000,0],[1709915498000,0],[1709915499000,0],[1709915500000,0],[1709915501000,0],[1709915502000,0],[1709915503000,0],[1709915504000,0],[1709915505000,0],[1709915506000,0],[1709915507000,0],[1709915508000,0],[1709915509000,0],[1709915510000,0],[1709915511000,0],[1709915512000,0],[1709915513000,0],[1709915514000,0],[1709915515000,0],[1709915516000,0],[1709915517000,0],[1709915518000,0],[1709915519000,0],[1709915520000,0],[1709915521000,0],[1709915522000,0],[1709915523000,0],[1709915524000,0],[1709915525000,0],[1709915526000,0],[1709915527000,0],[1709915528000,0],[1709915529000,0],[1709915530000,0],[1709915531000,0],[1709915532000,0],[1709915533000,0],[1709915534000,0],[1709915535000,0],[1709915536000,0],[1709915537000,0],[1709915538000,0],[1709915539000,0],[1709915540000,0],[1709915541000,0],[1709915542000,0],[1709915543000,0],[1709915544000,0],[1709915545000,0],[1709915546000,0],[1709915547000,0],[1709915548000,0],[1709915549000,0],[1709915550000,0],[1709915551000,0],[1709915552000,0],[1709915553000,0],[1709915554000,0],[1709915555000,0],[1709915556000,0],[1709915557000,0],[1709915558000,0],[1709915559000,0],[1709915560000,0],[1709915561000,0],[1709915562000,0],[1709915563000,0],[1709915564000,0],[1709915565000,0],[1709915566000,0],[1709915567000,0],[1709915568000,0],[1709915569000,0],[1709915570000,0],[1709915571000,0],[1709915572000,0],[1709915573000,0],[1709915574000,0],[1709915575000,0],[1709915576000,0],[1709915577000,0],[1709915578000,0],[1709915579000,0],[1709915580000,0],[1709915581000,0],[1709915582000,0],[1709915583000,0],[1709915584000,0],[1709915585000,0],[1709915586000,0],[1709915587000,0],[1709915588000,0],[1709915589000,0],[1709915590000,0],[1709915591000,0],[1709915592000,0],[1709915593000,0],[1709915594000,0],[1709915595000,0],[1709915596000,0],[1709915597000,0],[1709915598000,0],[1709915599000,0],[1709915600000,0],[1709915601000,0],[1709915602000,0],[1709915603000,0],[1709915604000,0],[1709915605000,0],[1709915606000,0],[1709915607000,0],[1709915608000,0],[1709915609000,0],[1709915610000,0],[1709915611000,0],[1709915612000,0],[1709915613000,0],[1709915614000,0],[1709915615000,0],[1709915616000,0],[1709915617000,0],[1709915618000,0],[1709915619000,0],[1709915620000,0],[1709915621000,0],[1709915622000,0],[1709915623000,0],[1709915624000,0],[1709915625000,0],[1709915626000,0],[1709915627000,0],[1709915628000,0],[1709915629000,0],[1709915630000,0],[1709915631000,0],[1709915632000,0],[1709915633000,0],[1709915634000,0],[1709915635000,0],[1709915636000,0],[1709915637000,0],[1709915638000,0],[1709915639000,0],[1709915640000,0],[1709915641000,0],[1709915642000,0],[1709915643000,0],[1709915644000,0],[1709915645000,0],[1709915646000,0],[1709915647000,0],[1709915648000,0],[1709915649000,0],[1709915650000,0],[1709915651000,0],[1709915652000,0],[1709915653000,0],[1709915654000,0],[1709915655000,0],[1709915656000,0],[1709915657000,0],[1709915658000,0],[1709915659000,0],[1709915660000,0],[1709915661000,0],[1709915662000,0],[1709915663000,0],[1709915664000,0],[1709915665000,0],[1709915666000,0],[1709915667000,0],[1709915668000,0],[1709915669000,0],[1709915670000,0],[1709915671000,0],[1709915672000,0],[1709915673000,0],[1709915674000,0],[1709915675000,0],[1709915676000,0],[1709915677000,0],[1709915678000,0],[1709915679000,0],[1709915680000,0],[1709915681000,0],[1709915682000,0],[1709915683000,0],[1709915684000,0],[1709915685000,0],[1709915686000,0],[1709915687000,0],[1709915688000,0],[1709915689000,0],[1709915690000,0],[1709915691000,0],[1709915692000,0],[1709915693000,0],[1709915694000,0],[1709915695000,0],[1709915696000,0],[1709915697000,0],[1709915698000,0],[1709915699000,0],[1709915700000,0],[1709915701000,0],[1709915702000,0],[1709915703000,0],[1709915704000,0],[1709915705000,0],[1709915706000,0],[1709915707000,0],[1709915708000,0],[1709915709000,0],[1709915710000,0],[1709915711000,0],[1709915712000,0],[1709915713000,0],[1709915714000,0],[1709915715000,0],[1709915716000,0],[1709915717000,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: ['4', '12', '20', '28', '36', '44', '52', '59', '67', '75', '83', '91', '99', '107', '115', '123', '131', '139', '147', '155', '163', '170', '178', '186', '194', '202', '210', '218', '226', '234', '242', '250', '258', '266', '274', '282', '289', '297', '305', '313', '321', '329', '337', '345', '353', '361', '369', '377', '385', '393', '400', '408', '416', '424', '432', '440', '448', '456', '464', '472', '480', '488', '496', '504', '511', '519', '527', '535', '543', '551', '559', '567', '575', '583', '591', '599', '607', '615', '623', '630', '638', '646', '654', '662', '670', '678', '686', '694', '702', '710', '718', '726', '734', '741', '749', '757', '765', '773', '781', '789'],
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: [
37.23,3.79,3.78,3.83,3.58,3.69,3.58,3.55,3.19,3.24,2.91,1.83,1.53,1.29,1.64,1.96,1.5,1.86,1.87,1.8,1.53,1.12,1.54,0.97,0.36,0.37,0.5,0.51,0.31,0.46,0.51,0.53,0.36,0.46,0.55,0.26,0.16,0.06,0.13,0.13,0.11,0.1,0.12,0.1,0.07,0.09,0.08,0.08,0.06,0.04,0.02,0.02,0.01,0.02,0.03,0.03,0.02,0.03,0.04,0.04,0.02,0.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
],
tooltip: { yDecimals: 0, ySuffix: 'ms' }
},
{
type: 'column',
color: '#f15b4f',
name: 'KO',
data: [
0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
],
tooltip: { yDecimals: 0, ySuffix: 'ms' }
}
]
});
responsetimeDistributionChart.setTitle({
text: '<span class="chart_title">Response Time Distribution</span>',
useHTML: true
});
var responsetimepercentilesovertimeokPercentiles = unpack([[1709915472,[153,174,184,187,190,191,192,195,198,199]],[1709915473,[4,4,4,4,4,4,4,4,4,4]],[1709915474,[4,8,13,16,16,17,18,19,21,22]],[1709915475,[5,5,5,5,5,5,5,5,5,5]],[1709915476,[1,2,4,22,29,39,123,130,135,136]],[1709915477,[3,3,3,3,3,3,3,3,3,4]],[1709915478,[2,2,3,3,3,3,3,3,3,4]],[1709915479,[2,3,3,3,3,3,4,4,4,4]],[1709915480,[2,2,3,3,3,3,4,4,4,4]],[1709915481,[2,2,2,3,3,3,3,3,3,4]],[1709915482,[2,2,3,3,3,3,3,3,3,4]],[1709915483,[2,2,2,2,3,3,3,3,3,3]],[1709915484,[2,2,2,2,3,3,3,3,3,3]],[1709915485,[1,2,2,3,3,3,3,4,4,5]],[1709915486,[1,2,2,2,2,2,2,2,2,3]],[1709915487,[1,2,2,2,2,2,3,3,3,3]],[1709915488,[1,2,2,2,2,3,3,3,3,4]],[1709915489,[1,2,2,2,2,2,2,2,3,3]],[1709915490,[1,2,2,2,2,2,3,3,4,4]],[1709915491,[1,2,2,2,2,2,3,3,3,3]],[1709915492,[1,1,2,2,2,2,2,2,9,15]],[1709915493,[1,1,2,2,2,2,2,2,3,3]],[1709915494,[1,1,2,2,2,2,2,2,2,2]],[1709915495,[1,1,1,2,2,2,2,2,2,3]],[1709915496,[1,1,1,2,2,2,2,2,2,3]],[1709915497,[1,1,2,2,2,2,2,2,2,3]],[1709915498,[1,1,1,2,2,2,2,2,2,3]],[1709915499,[1,1,1,2,2,2,2,2,2,2]],[1709915500,[1,1,1,1,1,2,2,2,2,2]],[1709915501,[1,1,1,1,1,2,2,2,2,2]],[1709915502,[1,1,1,2,2,2,2,2,4,13]],[1709915503,[1,1,1,2,2,2,2,2,2,2]],[1709915504,[1,1,1,1,1,1,2,2,2,2]],[1709915505,[1,1,1,1,2,2,2,2,4,13]],[1709915506,[1,1,1,1,1,2,2,2,2,2]],[1709915507,[1,1,1,1,1,2,2,2,3,14]],[1709915508,[1,1,1,1,2,2,2,2,2,2]],[1709915509,[1,1,1,1,2,2,2,2,2,2]],[1709915510,[1,1,1,1,1,1,1,2,2,2]],[1709915511,[1,1,1,2,2,2,2,2,2,2]],[1709915512,[1,1,1,2,2,2,2,2,2,3]],[1709915513,[1,1,1,1,1,2,2,2,2,3]],[1709915514,[1,1,1,1,1,1,1,2,2,2]],[1709915515,[1,1,1,1,2,2,2,2,2,3]],[1709915516,[1,1,1,1,1,1,2,2,2,2]],[1709915517,[1,1,1,1,1,1,2,2,2,2]],[1709915518,[0,1,1,1,1,1,2,2,2,13]],[1709915519,[0,1,1,1,1,1,1,1,2,2]],[1709915520,[1,1,1,1,1,2,2,2,2,2]],[1709915521,[0,1,1,1,1,1,1,2,2,2]],[1709915522,[0,1,1,1,1,1,2,2,2,3]],[1709915523,[0,1,1,1,1,1,2,2,2,2]],[1709915524,[0,1,1,1,1,2,2,2,2,2]],[1709915525,[0,1,1,1,1,1,1,1,2,3]],[1709915526,[0,1,1,1,1,1,2,2,2,3]],[1709915527,[0,1,1,1,1,1,1,1,2,2]],[1709915528,[0,1,1,1,1,1,1,2,2,2]],[1709915529,[0,1,1,1,1,1,1,1,2,13]],[1709915530,[0,1,1,1,1,1,1,2,2,2]],[1709915531,[1,1,1,1,1,1,1,2,2,2]],[1709915532,[0,1,1,1,1,1,1,1,2,2]],[1709915533,[1,1,1,1,1,1,1,1,2,3]],[1709915534,[1,1,1,1,1,1,1,1,2,2]],[1709915535,[0,1,1,1,1,1,1,1,2,2]],[1709915536,[0,0,1,1,1,1,1,1,2,2]],[1709915537,[0,1,1,1,1,1,1,2,2,2]],[1709915538,[1,1,1,1,1,1,2,2,2,3]],[1709915539,[1,1,1,1,1,1,1,1,2,3]],[1709915540,[1,1,1,1,1,1,1,1,2,3]],[1709915541,[1,1,1,1,1,1,1,1,2,2]],[1709915542,[1,1,1,1,1,2,2,2,2,8]],[1709915543,[0,1,1,1,1,1,1,2,2,3]],[1709915544,[0,1,1,1,1,1,1,1,2,2]],[1709915545,[0,1,1,1,1,1,1,2,2,2]],[1709915546,[0,1,1,1,1,2,2,2,2,3]],[1709915547,[1,1,1,1,1,1,1,2,2,11]],[1709915548,[1,1,1,1,1,1,2,2,2,2]],[1709915549,[0,0,1,1,1,1,2,2,2,3]],[1709915550,[0,0,1,1,1,1,1,1,2,2]],[1709915551,[0,1,1,1,1,1,1,1,2,5]],[1709915552,[0,0,1,1,1,1,1,1,2,2]],[1709915553,[0,1,1,1,1,1,1,1,2,3]],[1709915554,[0,1,1,1,1,1,2,2,2,5]],[1709915555,[0,1,1,1,1,1,1,1,2,2]],[1709915556,[1,1,1,1,1,1,1,2,4,13]],[1709915557,[0,1,1,1,1,1,2,2,2,7]],[1709915558,[0,0,1,1,1,1,1,2,2,2]],[1709915559,[0,1,1,1,1,1,1,2,2,8]],[1709915560,[0,1,1,1,1,2,2,2,2,3]],[1709915561,[0,1,1,1,1,1,2,2,2,7]],[1709915562,[1,1,1,1,1,1,2,2,3,3]],[1709915563,[0,0,1,1,1,1,1,2,2,2]],[1709915564,[0,0,1,2,11,33,56,113,157,172]],[1709915565,[0,1,1,1,1,1,5,24,58,115]],[1709915566,[0,1,1,1,1,2,2,2,8,16]],[1709915567,[0,1,1,1,1,1,1,1,2,3]],[1709915568,[1,1,1,1,1,1,1,2,4,35]],[1709915569,[1,1,1,1,1,1,2,2,3,5]],[1709915570,[0,1,1,1,1,1,2,2,3,10]],[1709915571,[0,1,1,1,1,2,3,9,22,27]],[1709915572,[0,1,1,1,1,1,2,2,14,25]],[1709915573,[0,1,35,103,121,136,165,219,264,274]],[1709915574,[0,1,32,84,108,126,147,213,345,371]],[1709915575,[0,1,1,2,12,24,44,106,135,150]],[1709915576,[1,1,1,1,1,2,2,5,18,28]],[1709915577,[1,3,46,120,134,153,170,193,265,316]],[1709915578,[0,2,37,106,131,156,188,225,269,282]],[1709915579,[0,1,17,57,66,75,109,131,177,222]],[1709915580,[0,17,62,130,149,164,185,253,374,396]],[1709915581,[1,1,21,55,65,76,95,212,244,260]],[1709915582,[1,1,33,110,127,139,154,221,273,294]],[1709915583,[0,1,19,66,78,107,133,208,335,386]],[1709915584,[0,6,63,124,134,148,164,198,260,353]],[1709915585,[0,9,66,144,165,181,258,361,458,479]],[1709915586,[0,3,36,89,108,126,147,170,201,287]],[1709915587,[0,23,70,120,135,148,161,183,242,266]],[1709915588,[0,1,34,75,81,101,135,203,250,350]],[1709915589,[0,8,50,99,116,134,181,230,279,330]],[1709915590,[0,36,89,161,172,190,224,270,312,447]],[1709915591,[0,21,62,133,152,182,265,309,368,470]],[1709915592,[1,16,57,142,167,202,234,259,275,291]],[1709915593,[0,24,81,143,160,176,209,240,280,364]],[1709915594,[0,41,111,163,175,195,258,317,389,442]],[1709915595,[1,33,109,181,227,250,279,630,708,793]],[1709915596,[1,35,76,156,173,186,215,266,351,377]],[1709915597,[0,18,72,148,166,175,229,331,379,395]],[1709915598,[0,32,78,139,156,175,213,265,286,299]],[1709915599,[0,33,102,145,154,166,175,186,256,277]],[1709915600,[0,15,48,86,102,135,165,256,319,344]],[1709915601,[1,28,112,179,191,225,248,274,308,489]],[1709915602,[0,26,70,125,139,157,213,254,351,462]],[1709915603,[1,11,54,111,130,143,157,230,341,362]],[1709915604,[0,9,52,103,121,135,148,171,251,393]],[1709915605,[1,31,81,154,174,212,239,266,285,312]],[1709915606,[0,13,45,81,94,112,139,175,405,438]],[1709915607,[0,53,98,139,148,157,167,181,272,287]],[1709915608,[0,11,45,93,127,146,162,207,265,275]],[1709915609,[0,11,46,83,95,116,135,148,175,238]],[1709915610,[1,8,38,74,81,94,130,154,237,275]],[1709915611,[1,37,106,203,222,240,262,280,360,380]],[1709915612,[1,26,70,129,140,156,166,183,273,357]],[1709915613,[1,31,79,157,171,181,248,335,381,479]],[1709915614,[1,25,68,135,152,166,185,257,442,529]],[1709915615,[1,18,48,83,92,152,187,239,308,384]],[1709915616,[0,38,96,207,225,239,257,275,368,394]],[1709915617,[1,53,123,222,262,314,376,447,488,534]],[1709915618,[0,32,103,148,158,170,184,316,375,385]],[1709915619,[0,5,40,80,100,121,144,175,256,312]],[1709915620,[1,19,63,159,185,268,317,349,385,449]],[1709915621,[0,17,48,78,85,111,153,211,344,362]],[1709915622,[0,19,55,93,112,143,193,253,463,574]],[1709915623,[0,27,76,170,180,221,247,272,312,339]],[1709915624,[0,15,48,83,95,115,147,185,257,369]],[1709915625,[0,6,36,71,80,90,121,156,271,294]],[1709915626,[0,52,125,162,167,176,185,230,287,339]],[1709915627,[0,18,69,130,140,154,166,190,267,275]],[1709915628,[0,48,112,177,203,225,249,277,436,466]],[1709915629,[0,22,62,126,139,159,174,208,387,476]],[1709915630,[0,28,79,158,172,186,230,274,319,439]],[1709915631,[0,18,53,113,136,157,172,201,268,385]],[1709915632,[0,16,58,121,139,156,171,185,236,320]],[1709915633,[0,26,61,108,128,149,162,175,251,289]],[1709915634,[0,28,68,120,136,158,176,212,254,321]],[1709915635,[1,12,53,121,143,157,172,220,270,435]],[1709915636,[1,18,68,139,153,162,175,248,284,376]],[1709915637,[1,15,49,80,93,125,194,239,278,390]],[1709915638,[0,20,60,107,133,158,207,314,377,389]],[1709915639,[1,18,62,135,149,166,176,212,254,352]],[1709915640,[0,18,61,124,143,160,184,234,275,285]],[1709915641,[0,21,61,125,144,157,167,182,225,293]],[1709915642,[1,38,94,153,162,175,180,239,331,384]],[1709915643,[0,20,76,138,147,158,173,185,243,276]],[1709915644,[0,37,109,163,175,193,229,254,278,288]],[1709915645,[1,29,74,153,175,195,222,277,375,457]],[1709915646,[0,26,66,129,153,170,185,244,284,353]],[1709915647,[0,7,55,120,138,157,224,261,464,494]],[1709915648,[0,21,60,124,148,170,195,324,380,394]],[1709915649,[0,51,155,223,241,256,271,297,355,395]],[1709915650,[0,9,50,105,121,132,148,166,244,285]],[1709915651,[0,20,61,112,131,152,188,265,340,362]],[1709915652,[1,2,28,59,65,75,102,134,255,275]],[1709915653,[0,9,44,85,112,153,235,276,344,475]],[1709915654,[0,20,69,145,161,176,230,266,285,348]],[1709915655,[1,36,87,225,243,268,289,442,486,496]],[1709915656,[0,11,45,96,130,152,171,215,355,385]],[1709915657,[1,35,101,162,175,197,232,258,275,280]],[1709915658,[0,11,42,74,80,98,121,148,171,175]],[1709915659,[0,2,32,76,90,122,152,174,241,323]],[1709915660,[0,43,121,178,199,234,263,285,342,354]],[1709915661,[0,6,44,78,98,120,139,162,218,240]],[1709915662,[0,18,67,135,149,172,212,253,316,348]],[1709915663,[0,19,65,156,175,221,274,330,375,388]],[1709915664,[0,36,81,204,231,262,330,440,475,535]],[1709915665,[1,25,71,157,175,203,225,257,288,386]],[1709915666,[0,9,46,93,112,130,148,185,289,294]],[1709915667,[0,16,65,131,146,168,213,248,284,386]],[1709915668,[0,27,67,121,139,157,185,266,308,463]],[1709915669,[0,3,34,65,74,87,120,156,240,375]],[1709915670,[1,9,54,116,130,139,157,174,203,275]],[1709915671,[1,8,39,70,77,84,103,130,174,184]],[1709915672,[0,12,49,93,121,153,184,412,476,490]],[1709915673,[1,9,50,114,130,153,176,275,371,394]],[1709915674,[1,16,60,129,140,162,175,313,480,552]],[1709915675,[1,3,34,71,82,111,130,148,173,185]],[1709915676,[1,1,27,65,73,83,103,121,142,175]],[1709915677,[1,4,33,70,76,97,125,147,175,185]],[1709915678,[1,12,55,121,131,144,157,166,185,229]],[1709915679,[0,3,32,66,78,97,131,158,185,194]],[1709915680,[0,7,58,137,157,171,185,253,335,394]],[1709915681,[0,9,39,72,78,86,102,169,340,349]],[1709915682,[0,1,36,119,156,225,279,430,476,490]],[1709915683,[0,25,104,148,157,171,180,240,282,294]],[1709915684,[0,23,72,165,211,230,249,284,565,675]],[1709915685,[0,8,59,131,144,157,166,181,273,364]],[1709915686,[0,27,80,138,148,162,174,206,259,297]],[1709915687,[1,9,40,70,79,94,131,167,259,286]],[1709915688,[0,13,51,112,132,153,171,189,232,252]],[1709915689,[0,44,162,249,266,276,293,404,473,481]],[1709915690,[0,20,68,125,139,148,157,174,206,275]],[1709915691,[0,20,71,137,149,167,177,214,281,288]],[1709915692,[1,4,51,121,135,148,171,212,318,334]],[1709915693,[1,29,80,139,148,163,185,263,294,321]],[1709915694,[0,20,61,104,116,131,145,166,181,186]],[1709915695,[1,17,59,113,134,157,175,249,322,357]],[1709915696,[0,15,48,85,102,151,174,212,255,272]],[1709915697,[1,21,56,111,131,157,175,195,251,275]],[1709915698,[1,29,87,159,171,185,211,249,327,394]],[1709915699,[0,25,71,130,144,153,171,180,214,302]],[1709915700,[0,9,46,82,91,116,135,153,186,273]],[1709915701,[0,13,49,91,108,129,148,173,267,294]],[1709915702,[0,35,86,157,174,185,226,266,315,394]],[1709915703,[1,22,63,130,148,158,173,181,272,285]],[1709915704,[1,25,65,128,148,174,203,239,266,289]],[1709915705,[0,5,38,89,115,137,153,166,186,239]],[1709915706,[0,23,60,111,131,148,165,179,234,265]],[1709915707,[1,16,50,93,121,147,166,185,257,266]],[1709915708,[1,18,61,134,148,162,203,248,278,294]],[1709915709,[0,12,44,119,150,167,175,221,260,286]],[1709915710,[0,20,63,112,130,148,162,191,314,330]],[1709915711,[0,7,49,101,121,136,154,212,323,415]],[1709915712,[0,18,71,147,157,171,176,248,341,366]],[1709915713,[1,23,69,159,175,195,240,312,351,407]],[1709915714,[1,12,48,85,107,129,148,167,185,257]],[1709915715,[1,14,47,84,102,130,166,188,274,275]],[1709915716,[0,18,65,122,136,153,174,329,406,475]],[1709915717,[0,8,40,73,81,99,137,310,345,362]]]);
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([[1709915472,[25,25,0]],[1709915473,[1,1,0]],[1709915474,[25,25,0]],[1709915475,[1,1,0]],[1709915476,[71,71,0]],[1709915477,[3,3,0]],[1709915478,[6,6,0]],[1709915479,[9,9,0]],[1709915480,[11,11,0]],[1709915481,[13,13,0]],[1709915482,[18,18,0]],[1709915483,[19,19,0]],[1709915484,[24,24,0]],[1709915485,[26,26,0]],[1709915486,[27,27,0]],[1709915487,[32,32,0]],[1709915488,[34,34,0]],[1709915489,[37,37,0]],[1709915490,[39,39,0]],[1709915491,[43,43,0]],[1709915492,[44,44,0]],[1709915493,[48,48,0]],[1709915494,[50,50,0]],[1709915495,[54,54,0]],[1709915496,[56,56,0]],[1709915497,[61,61,0]],[1709915498,[61,61,0]],[1709915499,[65,65,0]],[1709915500,[67,67,0]],[1709915501,[70,70,0]],[1709915502,[74,74,0]],[1709915503,[76,76,0]],[1709915504,[80,80,0]],[1709915505,[81,81,0]],[1709915506,[84,84,0]],[1709915507,[87,87,0]],[1709915508,[91,91,0]],[1709915509,[92,92,0]],[1709915510,[96,96,0]],[1709915511,[98,98,0]],[1709915512,[101,101,0]],[1709915513,[105,105,0]],[1709915514,[107,107,0]],[1709915515,[110,110,0]],[1709915516,[112,112,0]],[1709915517,[116,116,0]],[1709915518,[118,118,0]],[1709915519,[121,121,0]],[1709915520,[123,123,0]],[1709915521,[126,126,0]],[1709915522,[129,129,0]],[1709915523,[133,133,0]],[1709915524,[135,135,0]],[1709915525,[138,138,0]],[1709915526,[141,141,0]],[1709915527,[144,144,0]],[1709915528,[146,146,0]],[1709915529,[149,149,0]],[1709915530,[151,151,0]],[1709915531,[155,155,0]],[1709915532,[158,158,0]],[1709915533,[160,160,0]],[1709915534,[164,164,0]],[1709915535,[165,165,0]],[1709915536,[170,170,0]],[1709915537,[171,171,0]],[1709915538,[174,174,0]],[1709915539,[176,176,0]],[1709915540,[181,181,0]],[1709915541,[183,183,0]],[1709915542,[186,186,0]],[1709915543,[188,188,0]],[1709915544,[192,192,0]],[1709915545,[194,194,0]],[1709915546,[196,196,0]],[1709915547,[199,199,0]],[1709915548,[203,203,0]],[1709915549,[205,205,0]],[1709915550,[207,207,0]],[1709915551,[212,212,0]],[1709915552,[212,212,0]],[1709915553,[218,218,0]],[1709915554,[219,219,0]],[1709915555,[222,222,0]],[1709915556,[226,226,0]],[1709915557,[227,227,0]],[1709915558,[230,230,0]],[1709915559,[233,233,0]],[1709915560,[237,237,0]],[1709915561,[238,238,0]],[1709915562,[243,243,0]],[1709915563,[244,244,0]],[1709915564,[248,248,0]],[1709915565,[250,250,0]],[1709915566,[252,252,0]],[1709915567,[256,256,0]],[1709915568,[259,259,0]],[1709915569,[262,262,0]],[1709915570,[264,264,0]],[1709915571,[266,266,0]],[1709915572,[270,270,0]],[1709915573,[273,273,0]],[1709915574,[275,275,0]],[1709915575,[279,279,0]],[1709915576,[281,281,0]],[1709915577,[285,285,0]],[1709915578,[284,284,0]],[1709915579,[291,291,0]],[1709915580,[292,292,0]],[1709915581,[296,296,0]],[1709915582,[297,297,0]],[1709915583,[301,301,0]],[1709915584,[303,303,0]],[1709915585,[306,306,0]],[1709915586,[309,309,0]],[1709915587,[313,313,0]],[1709915588,[314,314,0]],[1709915589,[318,318,0]],[1709915590,[321,321,0]],[1709915591,[322,322,0]],[1709915592,[327,327,0]],[1709915593,[329,329,0]],[1709915594,[331,331,0]],[1709915595,[334,334,0]],[1709915596,[339,339,0]],[1709915597,[340,340,0]],[1709915598,[340,340,0]],[1709915599,[340,340,0]],[1709915600,[340,340,0]],[1709915601,[340,340,0]],[1709915602,[340,340,0]],[1709915603,[340,340,0]],[1709915604,[340,340,0]],[1709915605,[340,340,0]],[1709915606,[340,340,0]],[1709915607,[340,340,0]],[1709915608,[340,340,0]],[1709915609,[340,340,0]],[1709915610,[340,340,0]],[1709915611,[340,340,0]],[1709915612,[340,340,0]],[1709915613,[340,340,0]],[1709915614,[340,340,0]],[1709915615,[340,340,0]],[1709915616,[340,340,0]],[1709915617,[340,340,0]],[1709915618,[340,340,0]],[1709915619,[340,340,0]],[1709915620,[340,340,0]],[1709915621,[340,340,0]],[1709915622,[340,340,0]],[1709915623,[340,340,0]],[1709915624,[340,340,0]],[1709915625,[340,340,0]],[1709915626,[340,340,0]],[1709915627,[340,340,0]],[1709915628,[340,340,0]],[1709915629,[340,340,0]],[1709915630,[340,340,0]],[1709915631,[340,340,0]],[1709915632,[340,340,0]],[1709915633,[340,340,0]],[1709915634,[340,340,0]],[1709915635,[340,340,0]],[1709915636,[340,340,0]],[1709915637,[340,340,0]],[1709915638,[340,340,0]],[1709915639,[340,340,0]],[1709915640,[340,340,0]],[1709915641,[340,340,0]],[1709915642,[340,340,0]],[1709915643,[340,340,0]],[1709915644,[340,340,0]],[1709915645,[340,340,0]],[1709915646,[340,340,0]],[1709915647,[340,340,0]],[1709915648,[340,340,0]],[1709915649,[340,340,0]],[1709915650,[340,340,0]],[1709915651,[340,340,0]],[1709915652,[340,340,0]],[1709915653,[340,340,0]],[1709915654,[340,340,0]],[1709915655,[340,340,0]],[1709915656,[340,340,0]],[1709915657,[340,340,0]],[1709915658,[340,340,0]],[1709915659,[340,340,0]],[1709915660,[340,340,0]],[1709915661,[340,340,0]],[1709915662,[340,340,0]],[1709915663,[340,340,0]],[1709915664,[340,340,0]],[1709915665,[340,340,0]],[1709915666,[340,340,0]],[1709915667,[340,340,0]],[1709915668,[340,340,0]],[1709915669,[340,340,0]],[1709915670,[340,340,0]],[1709915671,[340,340,0]],[1709915672,[340,340,0]],[1709915673,[340,340,0]],[1709915674,[340,340,0]],[1709915675,[340,340,0]],[1709915676,[340,340,0]],[1709915677,[340,340,0]],[1709915678,[340,340,0]],[1709915679,[340,340,0]],[1709915680,[340,340,0]],[1709915681,[340,340,0]],[1709915682,[340,340,0]],[1709915683,[340,340,0]],[1709915684,[340,340,0]],[1709915685,[340,340,0]],[1709915686,[340,340,0]],[1709915687,[340,340,0]],[1709915688,[340,340,0]],[1709915689,[340,340,0]],[1709915690,[340,340,0]],[1709915691,[340,340,0]],[1709915692,[340,340,0]],[1709915693,[340,340,0]],[1709915694,[340,340,0]],[1709915695,[340,340,0]],[1709915696,[340,340,0]],[1709915697,[340,340,0]],[1709915698,[340,340,0]],[1709915699,[340,340,0]],[1709915700,[340,340,0]],[1709915701,[340,340,0]],[1709915702,[340,340,0]],[1709915703,[340,340,0]],[1709915704,[340,340,0]],[1709915705,[340,340,0]],[1709915706,[340,340,0]],[1709915707,[340,340,0]],[1709915708,[340,340,0]],[1709915709,[340,340,0]],[1709915710,[340,340,0]],[1709915711,[340,340,0]],[1709915712,[340,340,0]],[1709915713,[340,340,0]],[1709915714,[340,340,0]],[1709915715,[340,340,0]],[1709915716,[340,340,0]],[1709915717,[164,164,0]]]);
var requestsChart = new Highcharts.StockChart({
chart: {
renderTo: 'requests',
zoomType: 'x',
marginBottom: 60
},
credits: { enabled: false },
legend: {
enabled: true,
floating: true,
y: -65,
borderWidth: 0,
itemStyle: { fontWeight: "normal" },
symbolRadius: 0
},
title: { text: 'A title to let highcharts reserve the place for the title set later' },
navigator: {
maskInside: false
},
rangeSelector: {
buttonSpacing: 0,
buttonTheme: {
fill: '#CFC9C6',
padding: 1,
stroke: '#000000',
'stroke-width': 0.25,
style: {
color: '#000000',
fontWeight: 'bold',
},
states: {
stroke: '#000000',
'stroke-width': 0.25,
hover: {
fill: '#92918C',
style: { color: 'black' }
},
select: {
fill: '#FFA900',
style: { color: 'white' }
}
}
},
buttons : [
{
type : 'minute',
count : 1,
text : '1m'
}, {
type : 'minute',
count : 10,
text : '10m'
}, {
type : 'hour',
count : 1,
text : '1h'
}, {
type : 'all',
count : 1,
text : 'All'
}
],
selected : 3,
inputEnabled : false
},
plotOptions: {
series: {
dataGrouping: { enabled: false }
},
area: {
stacking: 'normal'
}
},
xAxis: {
type: 'datetime',
ordinal: false,
maxZoom: 10000 // three days
},
yAxis:[