-
Notifications
You must be signed in to change notification settings - Fork 923
/
Copy pathindex.html
1173 lines (1104 loc) · 95.1 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-06 23:07:32 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 - matheusdojava">
<span class="simulation-information-label">Description: </span>
<span>Rinha de Backend - 2024/Q1: Crébito - matheusdojava</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: [
[1709766452000,0],[1709766453000,0],[1709766454000,0],[1709766455000,0],[1709766456000,0],[1709766457000,1],[1709766458000,1],[1709766459000,2],[1709766460000,4],[1709766461000,4],[1709766462000,5],[1709766463000,6],[1709766464000,7],[1709766465000,8],[1709766466000,8],[1709766467000,10],[1709766468000,10],[1709766469000,12],[1709766470000,12],[1709766471000,14],[1709766472000,14],[1709766473000,15],[1709766474000,16],[1709766475000,17],[1709766476000,17],[1709766477000,19],[1709766478000,20],[1709766479000,20],[1709766480000,22],[1709766481000,22],[1709766482000,23],[1709766483000,25],[1709766484000,25],[1709766485000,26],[1709766486000,26],[1709766487000,28],[1709766488000,29],[1709766489000,30],[1709766490000,30],[1709766491000,32],[1709766492000,32],[1709766493000,33],[1709766494000,34],[1709766495000,35],[1709766496000,36],[1709766497000,37],[1709766498000,38],[1709766499000,39],[1709766500000,39],[1709766501000,41],[1709766502000,41],[1709766503000,43],[1709766504000,43],[1709766505000,44],[1709766506000,46],[1709766507000,46],[1709766508000,48],[1709766509000,49],[1709766510000,49],[1709766511000,51],[1709766512000,50],[1709766513000,52],[1709766514000,52],[1709766515000,53],[1709766516000,54],[1709766517000,56],[1709766518000,55],[1709766519000,57],[1709766520000,58],[1709766521000,59],[1709766522000,59],[1709766523000,61],[1709766524000,61],[1709766525000,63],[1709766526000,63],[1709766527000,64],[1709766528000,65],[1709766529000,66],[1709766530000,67],[1709766531000,68],[1709766532000,68],[1709766533000,70],[1709766534000,70],[1709766535000,72],[1709766536000,72],[1709766537000,73],[1709766538000,74],[1709766539000,75],[1709766540000,76],[1709766541000,77],[1709766542000,78],[1709766543000,79],[1709766544000,79],[1709766545000,81],[1709766546000,81],[1709766547000,82],[1709766548000,83],[1709766549000,85],[1709766550000,85],[1709766551000,86],[1709766552000,86],[1709766553000,88],[1709766554000,89],[1709766555000,90],[1709766556000,92],[1709766557000,92],[1709766558000,93],[1709766559000,94],[1709766560000,95],[1709766561000,96],[1709766562000,96],[1709766563000,97],[1709766564000,97],[1709766565000,99],[1709766566000,99],[1709766567000,101],[1709766568000,105],[1709766569000,103],[1709766570000,104],[1709766571000,105],[1709766572000,106],[1709766573000,106],[1709766574000,108],[1709766575000,107],[1709766576000,114],[1709766577000,114],[1709766578000,111],[1709766579000,117],[1709766580000,110],[1709766581000,110],[1709766582000,110],[1709766583000,117],[1709766584000,110],[1709766585000,111],[1709766586000,111],[1709766587000,114],[1709766588000,120],[1709766589000,111],[1709766590000,111],[1709766591000,111],[1709766592000,111],[1709766593000,112],[1709766594000,110],[1709766595000,111],[1709766596000,114],[1709766597000,111],[1709766598000,111],[1709766599000,110],[1709766600000,110],[1709766601000,116],[1709766602000,111],[1709766603000,111],[1709766604000,111],[1709766605000,114],[1709766606000,111],[1709766607000,111],[1709766608000,112],[1709766609000,113],[1709766610000,111],[1709766611000,119],[1709766612000,110],[1709766613000,114],[1709766614000,115],[1709766615000,118],[1709766616000,111],[1709766617000,110],[1709766618000,111],[1709766619000,117],[1709766620000,111],[1709766621000,110],[1709766622000,111],[1709766623000,112],[1709766624000,111],[1709766625000,111],[1709766626000,111],[1709766627000,118],[1709766628000,110],[1709766629000,117],[1709766630000,110],[1709766631000,116],[1709766632000,111],[1709766633000,111],[1709766634000,111],[1709766635000,112],[1709766636000,111],[1709766637000,113],[1709766638000,114],[1709766639000,111],[1709766640000,110],[1709766641000,112],[1709766642000,111],[1709766643000,113],[1709766644000,110],[1709766645000,118],[1709766646000,111],[1709766647000,115],[1709766648000,110],[1709766649000,111],[1709766650000,112],[1709766651000,114],[1709766652000,111],[1709766653000,111],[1709766654000,110],[1709766655000,111],[1709766656000,111],[1709766657000,117],[1709766658000,110],[1709766659000,113],[1709766660000,116],[1709766661000,110],[1709766662000,111],[1709766663000,113],[1709766664000,112],[1709766665000,119],[1709766666000,117],[1709766667000,110],[1709766668000,115],[1709766669000,112],[1709766670000,110],[1709766671000,111],[1709766672000,111],[1709766673000,110],[1709766674000,115],[1709766675000,110],[1709766676000,115],[1709766677000,115],[1709766678000,113],[1709766679000,111],[1709766680000,111],[1709766681000,111],[1709766682000,112],[1709766683000,115],[1709766684000,114],[1709766685000,111],[1709766686000,113],[1709766687000,111],[1709766688000,117],[1709766689000,120],[1709766690000,112],[1709766691000,118],[1709766692000,110],[1709766693000,120],[1709766694000,116],[1709766695000,110],[1709766696000,110],[1709766697000,107]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#68b65c',
name: 'débitos',
data: [
[1709766452000,0],[1709766453000,0],[1709766454000,0],[1709766455000,0],[1709766456000,0],[1709766457000,1],[1709766458000,1],[1709766459000,4],[1709766460000,6],[1709766461000,7],[1709766462000,9],[1709766463000,11],[1709766464000,13],[1709766465000,15],[1709766466000,16],[1709766467000,19],[1709766468000,20],[1709766469000,22],[1709766470000,24],[1709766471000,25],[1709766472000,28],[1709766473000,29],[1709766474000,31],[1709766475000,33],[1709766476000,35],[1709766477000,37],[1709766478000,38],[1709766479000,40],[1709766480000,42],[1709766481000,44],[1709766482000,46],[1709766483000,48],[1709766484000,51],[1709766485000,51],[1709766486000,53],[1709766487000,55],[1709766488000,56],[1709766489000,59],[1709766490000,60],[1709766491000,62],[1709766492000,64],[1709766493000,66],[1709766494000,68],[1709766495000,69],[1709766496000,71],[1709766497000,74],[1709766498000,74],[1709766499000,77],[1709766500000,79],[1709766501000,80],[1709766502000,82],[1709766503000,84],[1709766504000,86],[1709766505000,88],[1709766506000,90],[1709766507000,92],[1709766508000,94],[1709766509000,96],[1709766510000,98],[1709766511000,99],[1709766512000,101],[1709766513000,102],[1709766514000,104],[1709766515000,106],[1709766516000,108],[1709766517000,110],[1709766518000,111],[1709766519000,113],[1709766520000,115],[1709766521000,117],[1709766522000,119],[1709766523000,120],[1709766524000,123],[1709766525000,124],[1709766526000,126],[1709766527000,128],[1709766528000,129],[1709766529000,132],[1709766530000,133],[1709766531000,136],[1709766532000,138],[1709766533000,140],[1709766534000,142],[1709766535000,143],[1709766536000,144],[1709766537000,147],[1709766538000,147],[1709766539000,150],[1709766540000,152],[1709766541000,153],[1709766542000,155],[1709766543000,157],[1709766544000,159],[1709766545000,161],[1709766546000,162],[1709766547000,165],[1709766548000,166],[1709766549000,168],[1709766550000,170],[1709766551000,171],[1709766552000,174],[1709766553000,175],[1709766554000,177],[1709766555000,179],[1709766556000,182],[1709766557000,184],[1709766558000,185],[1709766559000,187],[1709766560000,189],[1709766561000,191],[1709766562000,193],[1709766563000,193],[1709766564000,196],[1709766565000,197],[1709766566000,199],[1709766567000,201],[1709766568000,213],[1709766569000,205],[1709766570000,207],[1709766571000,209],[1709766572000,211],[1709766573000,212],[1709766574000,216],[1709766575000,215],[1709766576000,222],[1709766577000,225],[1709766578000,222],[1709766579000,228],[1709766580000,220],[1709766581000,220],[1709766582000,220],[1709766583000,232],[1709766584000,220],[1709766585000,221],[1709766586000,221],[1709766587000,226],[1709766588000,234],[1709766589000,221],[1709766590000,223],[1709766591000,223],[1709766592000,221],[1709766593000,222],[1709766594000,221],[1709766595000,222],[1709766596000,229],[1709766597000,220],[1709766598000,222],[1709766599000,220],[1709766600000,220],[1709766601000,234],[1709766602000,222],[1709766603000,222],[1709766604000,222],[1709766605000,225],[1709766606000,221],[1709766607000,221],[1709766608000,224],[1709766609000,225],[1709766610000,221],[1709766611000,237],[1709766612000,221],[1709766613000,227],[1709766614000,230],[1709766615000,234],[1709766616000,225],[1709766617000,220],[1709766618000,222],[1709766619000,232],[1709766620000,225],[1709766621000,221],[1709766622000,220],[1709766623000,225],[1709766624000,220],[1709766625000,222],[1709766626000,220],[1709766627000,237],[1709766628000,220],[1709766629000,233],[1709766630000,220],[1709766631000,231],[1709766632000,221],[1709766633000,222],[1709766634000,222],[1709766635000,226],[1709766636000,220],[1709766637000,225],[1709766638000,224],[1709766639000,224],[1709766640000,220],[1709766641000,226],[1709766642000,222],[1709766643000,223],[1709766644000,220],[1709766645000,235],[1709766646000,223],[1709766647000,234],[1709766648000,220],[1709766649000,222],[1709766650000,228],[1709766651000,228],[1709766652000,222],[1709766653000,222],[1709766654000,220],[1709766655000,220],[1709766656000,223],[1709766657000,234],[1709766658000,220],[1709766659000,226],[1709766660000,232],[1709766661000,220],[1709766662000,220],[1709766663000,226],[1709766664000,224],[1709766665000,238],[1709766666000,237],[1709766667000,220],[1709766668000,228],[1709766669000,226],[1709766670000,220],[1709766671000,220],[1709766672000,225],[1709766673000,220],[1709766674000,233],[1709766675000,220],[1709766676000,224],[1709766677000,228],[1709766678000,226],[1709766679000,222],[1709766680000,221],[1709766681000,222],[1709766682000,224],[1709766683000,228],[1709766684000,228],[1709766685000,222],[1709766686000,227],[1709766687000,224],[1709766688000,228],[1709766689000,237],[1709766690000,222],[1709766691000,230],[1709766692000,220],[1709766693000,238],[1709766694000,237],[1709766695000,220],[1709766696000,220],[1709766697000,215]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#f15b4f',
name: 'extratos',
data: [
[1709766452000,0],[1709766453000,0],[1709766454000,0],[1709766455000,0],[1709766456000,0],[1709766457000,1],[1709766458000,1],[1709766459000,1],[1709766460000,1],[1709766461000,1],[1709766462000,1],[1709766463000,2],[1709766464000,1],[1709766465000,2],[1709766466000,2],[1709766467000,1],[1709766468000,2],[1709766469000,2],[1709766470000,2],[1709766471000,2],[1709766472000,2],[1709766473000,2],[1709766474000,2],[1709766475000,3],[1709766476000,2],[1709766477000,3],[1709766478000,2],[1709766479000,3],[1709766480000,2],[1709766481000,3],[1709766482000,3],[1709766483000,3],[1709766484000,3],[1709766485000,3],[1709766486000,3],[1709766487000,3],[1709766488000,4],[1709766489000,3],[1709766490000,3],[1709766491000,4],[1709766492000,3],[1709766493000,4],[1709766494000,4],[1709766495000,4],[1709766496000,4],[1709766497000,4],[1709766498000,4],[1709766499000,4],[1709766500000,4],[1709766501000,4],[1709766502000,4],[1709766503000,5],[1709766504000,4],[1709766505000,5],[1709766506000,5],[1709766507000,4],[1709766508000,5],[1709766509000,5],[1709766510000,5],[1709766511000,5],[1709766512000,5],[1709766513000,5],[1709766514000,5],[1709766515000,6],[1709766516000,5],[1709766517000,6],[1709766518000,5],[1709766519000,6],[1709766520000,5],[1709766521000,6],[1709766522000,6],[1709766523000,6],[1709766524000,6],[1709766525000,6],[1709766526000,6],[1709766527000,6],[1709766528000,7],[1709766529000,6],[1709766530000,6],[1709766531000,7],[1709766532000,6],[1709766533000,7],[1709766534000,7],[1709766535000,7],[1709766536000,7],[1709766537000,7],[1709766538000,7],[1709766539000,7],[1709766540000,7],[1709766541000,7],[1709766542000,7],[1709766543000,8],[1709766544000,7],[1709766545000,8],[1709766546000,8],[1709766547000,7],[1709766548000,8],[1709766549000,8],[1709766550000,8],[1709766551000,8],[1709766552000,8],[1709766553000,8],[1709766554000,8],[1709766555000,9],[1709766556000,8],[1709766557000,9],[1709766558000,8],[1709766559000,9],[1709766560000,8],[1709766561000,9],[1709766562000,9],[1709766563000,9],[1709766564000,9],[1709766565000,9],[1709766566000,9],[1709766567000,9],[1709766568000,10],[1709766569000,9],[1709766570000,9],[1709766571000,10],[1709766572000,9],[1709766573000,10],[1709766574000,11],[1709766575000,10],[1709766576000,11],[1709766577000,11],[1709766578000,11],[1709766579000,11],[1709766580000,10],[1709766581000,10],[1709766582000,10],[1709766583000,11],[1709766584000,10],[1709766585000,10],[1709766586000,10],[1709766587000,11],[1709766588000,11],[1709766589000,11],[1709766590000,11],[1709766591000,11],[1709766592000,10],[1709766593000,11],[1709766594000,10],[1709766595000,11],[1709766596000,11],[1709766597000,10],[1709766598000,11],[1709766599000,10],[1709766600000,10],[1709766601000,11],[1709766602000,11],[1709766603000,11],[1709766604000,11],[1709766605000,11],[1709766606000,11],[1709766607000,10],[1709766608000,11],[1709766609000,10],[1709766610000,10],[1709766611000,11],[1709766612000,10],[1709766613000,11],[1709766614000,11],[1709766615000,11],[1709766616000,11],[1709766617000,10],[1709766618000,11],[1709766619000,11],[1709766620000,11],[1709766621000,11],[1709766622000,11],[1709766623000,11],[1709766624000,10],[1709766625000,11],[1709766626000,10],[1709766627000,11],[1709766628000,10],[1709766629000,11],[1709766630000,11],[1709766631000,11],[1709766632000,11],[1709766633000,11],[1709766634000,11],[1709766635000,11],[1709766636000,10],[1709766637000,11],[1709766638000,11],[1709766639000,11],[1709766640000,10],[1709766641000,11],[1709766642000,10],[1709766643000,11],[1709766644000,10],[1709766645000,12],[1709766646000,11],[1709766647000,11],[1709766648000,10],[1709766649000,11],[1709766650000,11],[1709766651000,11],[1709766652000,11],[1709766653000,11],[1709766654000,10],[1709766655000,11],[1709766656000,11],[1709766657000,11],[1709766658000,10],[1709766659000,11],[1709766660000,11],[1709766661000,10],[1709766662000,10],[1709766663000,11],[1709766664000,11],[1709766665000,11],[1709766666000,11],[1709766667000,10],[1709766668000,11],[1709766669000,11],[1709766670000,10],[1709766671000,11],[1709766672000,11],[1709766673000,10],[1709766674000,11],[1709766675000,11],[1709766676000,11],[1709766677000,11],[1709766678000,11],[1709766679000,11],[1709766680000,11],[1709766681000,11],[1709766682000,11],[1709766683000,11],[1709766684000,11],[1709766685000,11],[1709766686000,11],[1709766687000,11],[1709766688000,11],[1709766689000,11],[1709766690000,11],[1709766691000,11],[1709766692000,10],[1709766693000,11],[1709766694000,11],[1709766695000,10],[1709766696000,10],[1709766697000,9]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FFDD00',
name: 'validação HTTP 404',
data: [
[1709766452000,0],[1709766453000,0],[1709766454000,0],[1709766455000,0],[1709766456000,1],[1709766457000,0],[1709766458000,0],[1709766459000,0],[1709766460000,0],[1709766461000,0],[1709766462000,0],[1709766463000,0],[1709766464000,0],[1709766465000,0],[1709766466000,0],[1709766467000,0],[1709766468000,0],[1709766469000,0],[1709766470000,0],[1709766471000,0],[1709766472000,0],[1709766473000,0],[1709766474000,0],[1709766475000,0],[1709766476000,0],[1709766477000,0],[1709766478000,0],[1709766479000,0],[1709766480000,0],[1709766481000,0],[1709766482000,0],[1709766483000,0],[1709766484000,0],[1709766485000,0],[1709766486000,0],[1709766487000,0],[1709766488000,0],[1709766489000,0],[1709766490000,0],[1709766491000,0],[1709766492000,0],[1709766493000,0],[1709766494000,0],[1709766495000,0],[1709766496000,0],[1709766497000,0],[1709766498000,0],[1709766499000,0],[1709766500000,0],[1709766501000,0],[1709766502000,0],[1709766503000,0],[1709766504000,0],[1709766505000,0],[1709766506000,0],[1709766507000,0],[1709766508000,0],[1709766509000,0],[1709766510000,0],[1709766511000,0],[1709766512000,0],[1709766513000,0],[1709766514000,0],[1709766515000,0],[1709766516000,0],[1709766517000,0],[1709766518000,0],[1709766519000,0],[1709766520000,0],[1709766521000,0],[1709766522000,0],[1709766523000,0],[1709766524000,0],[1709766525000,0],[1709766526000,0],[1709766527000,0],[1709766528000,0],[1709766529000,0],[1709766530000,0],[1709766531000,0],[1709766532000,0],[1709766533000,0],[1709766534000,0],[1709766535000,0],[1709766536000,0],[1709766537000,0],[1709766538000,0],[1709766539000,0],[1709766540000,0],[1709766541000,0],[1709766542000,0],[1709766543000,0],[1709766544000,0],[1709766545000,0],[1709766546000,0],[1709766547000,0],[1709766548000,0],[1709766549000,0],[1709766550000,0],[1709766551000,0],[1709766552000,0],[1709766553000,0],[1709766554000,0],[1709766555000,0],[1709766556000,0],[1709766557000,0],[1709766558000,0],[1709766559000,0],[1709766560000,0],[1709766561000,0],[1709766562000,0],[1709766563000,0],[1709766564000,0],[1709766565000,0],[1709766566000,0],[1709766567000,0],[1709766568000,0],[1709766569000,0],[1709766570000,0],[1709766571000,0],[1709766572000,0],[1709766573000,0],[1709766574000,0],[1709766575000,0],[1709766576000,0],[1709766577000,0],[1709766578000,0],[1709766579000,0],[1709766580000,0],[1709766581000,0],[1709766582000,0],[1709766583000,0],[1709766584000,0],[1709766585000,0],[1709766586000,0],[1709766587000,0],[1709766588000,0],[1709766589000,0],[1709766590000,0],[1709766591000,0],[1709766592000,0],[1709766593000,0],[1709766594000,0],[1709766595000,0],[1709766596000,0],[1709766597000,0],[1709766598000,0],[1709766599000,0],[1709766600000,0],[1709766601000,0],[1709766602000,0],[1709766603000,0],[1709766604000,0],[1709766605000,0],[1709766606000,0],[1709766607000,0],[1709766608000,0],[1709766609000,0],[1709766610000,0],[1709766611000,0],[1709766612000,0],[1709766613000,0],[1709766614000,0],[1709766615000,0],[1709766616000,0],[1709766617000,0],[1709766618000,0],[1709766619000,0],[1709766620000,0],[1709766621000,0],[1709766622000,0],[1709766623000,0],[1709766624000,0],[1709766625000,0],[1709766626000,0],[1709766627000,0],[1709766628000,0],[1709766629000,0],[1709766630000,0],[1709766631000,0],[1709766632000,0],[1709766633000,0],[1709766634000,0],[1709766635000,0],[1709766636000,0],[1709766637000,0],[1709766638000,0],[1709766639000,0],[1709766640000,0],[1709766641000,0],[1709766642000,0],[1709766643000,0],[1709766644000,0],[1709766645000,0],[1709766646000,0],[1709766647000,0],[1709766648000,0],[1709766649000,0],[1709766650000,0],[1709766651000,0],[1709766652000,0],[1709766653000,0],[1709766654000,0],[1709766655000,0],[1709766656000,0],[1709766657000,0],[1709766658000,0],[1709766659000,0],[1709766660000,0],[1709766661000,0],[1709766662000,0],[1709766663000,0],[1709766664000,0],[1709766665000,0],[1709766666000,0],[1709766667000,0],[1709766668000,0],[1709766669000,0],[1709766670000,0],[1709766671000,0],[1709766672000,0],[1709766673000,0],[1709766674000,0],[1709766675000,0],[1709766676000,0],[1709766677000,0],[1709766678000,0],[1709766679000,0],[1709766680000,0],[1709766681000,0],[1709766682000,0],[1709766683000,0],[1709766684000,0],[1709766685000,0],[1709766686000,0],[1709766687000,0],[1709766688000,0],[1709766689000,0],[1709766690000,0],[1709766691000,0],[1709766692000,0],[1709766693000,0],[1709766694000,0],[1709766695000,0],[1709766696000,0],[1709766697000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00D5FF',
name: 'validações',
data: [
[1709766452000,0],[1709766453000,0],[1709766454000,0],[1709766455000,0],[1709766456000,5],[1709766457000,5],[1709766458000,0],[1709766459000,0],[1709766460000,0],[1709766461000,0],[1709766462000,0],[1709766463000,0],[1709766464000,0],[1709766465000,0],[1709766466000,0],[1709766467000,0],[1709766468000,0],[1709766469000,0],[1709766470000,0],[1709766471000,0],[1709766472000,0],[1709766473000,0],[1709766474000,0],[1709766475000,0],[1709766476000,0],[1709766477000,0],[1709766478000,0],[1709766479000,0],[1709766480000,0],[1709766481000,0],[1709766482000,0],[1709766483000,0],[1709766484000,0],[1709766485000,0],[1709766486000,0],[1709766487000,0],[1709766488000,0],[1709766489000,0],[1709766490000,0],[1709766491000,0],[1709766492000,0],[1709766493000,0],[1709766494000,0],[1709766495000,0],[1709766496000,0],[1709766497000,0],[1709766498000,0],[1709766499000,0],[1709766500000,0],[1709766501000,0],[1709766502000,0],[1709766503000,0],[1709766504000,0],[1709766505000,0],[1709766506000,0],[1709766507000,0],[1709766508000,0],[1709766509000,0],[1709766510000,0],[1709766511000,0],[1709766512000,0],[1709766513000,0],[1709766514000,0],[1709766515000,0],[1709766516000,0],[1709766517000,0],[1709766518000,0],[1709766519000,0],[1709766520000,0],[1709766521000,0],[1709766522000,0],[1709766523000,0],[1709766524000,0],[1709766525000,0],[1709766526000,0],[1709766527000,0],[1709766528000,0],[1709766529000,0],[1709766530000,0],[1709766531000,0],[1709766532000,0],[1709766533000,0],[1709766534000,0],[1709766535000,0],[1709766536000,0],[1709766537000,0],[1709766538000,0],[1709766539000,0],[1709766540000,0],[1709766541000,0],[1709766542000,0],[1709766543000,0],[1709766544000,0],[1709766545000,0],[1709766546000,0],[1709766547000,0],[1709766548000,0],[1709766549000,0],[1709766550000,0],[1709766551000,0],[1709766552000,0],[1709766553000,0],[1709766554000,0],[1709766555000,0],[1709766556000,0],[1709766557000,0],[1709766558000,0],[1709766559000,0],[1709766560000,0],[1709766561000,0],[1709766562000,0],[1709766563000,0],[1709766564000,0],[1709766565000,0],[1709766566000,0],[1709766567000,0],[1709766568000,0],[1709766569000,0],[1709766570000,0],[1709766571000,0],[1709766572000,0],[1709766573000,0],[1709766574000,0],[1709766575000,0],[1709766576000,0],[1709766577000,0],[1709766578000,0],[1709766579000,0],[1709766580000,0],[1709766581000,0],[1709766582000,0],[1709766583000,0],[1709766584000,0],[1709766585000,0],[1709766586000,0],[1709766587000,0],[1709766588000,0],[1709766589000,0],[1709766590000,0],[1709766591000,0],[1709766592000,0],[1709766593000,0],[1709766594000,0],[1709766595000,0],[1709766596000,0],[1709766597000,0],[1709766598000,0],[1709766599000,0],[1709766600000,0],[1709766601000,0],[1709766602000,0],[1709766603000,0],[1709766604000,0],[1709766605000,0],[1709766606000,0],[1709766607000,0],[1709766608000,0],[1709766609000,0],[1709766610000,0],[1709766611000,0],[1709766612000,0],[1709766613000,0],[1709766614000,0],[1709766615000,0],[1709766616000,0],[1709766617000,0],[1709766618000,0],[1709766619000,0],[1709766620000,0],[1709766621000,0],[1709766622000,0],[1709766623000,0],[1709766624000,0],[1709766625000,0],[1709766626000,0],[1709766627000,0],[1709766628000,0],[1709766629000,0],[1709766630000,0],[1709766631000,0],[1709766632000,0],[1709766633000,0],[1709766634000,0],[1709766635000,0],[1709766636000,0],[1709766637000,0],[1709766638000,0],[1709766639000,0],[1709766640000,0],[1709766641000,0],[1709766642000,0],[1709766643000,0],[1709766644000,0],[1709766645000,0],[1709766646000,0],[1709766647000,0],[1709766648000,0],[1709766649000,0],[1709766650000,0],[1709766651000,0],[1709766652000,0],[1709766653000,0],[1709766654000,0],[1709766655000,0],[1709766656000,0],[1709766657000,0],[1709766658000,0],[1709766659000,0],[1709766660000,0],[1709766661000,0],[1709766662000,0],[1709766663000,0],[1709766664000,0],[1709766665000,0],[1709766666000,0],[1709766667000,0],[1709766668000,0],[1709766669000,0],[1709766670000,0],[1709766671000,0],[1709766672000,0],[1709766673000,0],[1709766674000,0],[1709766675000,0],[1709766676000,0],[1709766677000,0],[1709766678000,0],[1709766679000,0],[1709766680000,0],[1709766681000,0],[1709766682000,0],[1709766683000,0],[1709766684000,0],[1709766685000,0],[1709766686000,0],[1709766687000,0],[1709766688000,0],[1709766689000,0],[1709766690000,0],[1709766691000,0],[1709766692000,0],[1709766693000,0],[1709766694000,0],[1709766695000,0],[1709766696000,0],[1709766697000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00FF00',
name: 'validação concorrência saldo - 0',
data: [
[1709766452000,0],[1709766453000,0],[1709766454000,0],[1709766455000,1],[1709766456000,0],[1709766457000,0],[1709766458000,0],[1709766459000,0],[1709766460000,0],[1709766461000,0],[1709766462000,0],[1709766463000,0],[1709766464000,0],[1709766465000,0],[1709766466000,0],[1709766467000,0],[1709766468000,0],[1709766469000,0],[1709766470000,0],[1709766471000,0],[1709766472000,0],[1709766473000,0],[1709766474000,0],[1709766475000,0],[1709766476000,0],[1709766477000,0],[1709766478000,0],[1709766479000,0],[1709766480000,0],[1709766481000,0],[1709766482000,0],[1709766483000,0],[1709766484000,0],[1709766485000,0],[1709766486000,0],[1709766487000,0],[1709766488000,0],[1709766489000,0],[1709766490000,0],[1709766491000,0],[1709766492000,0],[1709766493000,0],[1709766494000,0],[1709766495000,0],[1709766496000,0],[1709766497000,0],[1709766498000,0],[1709766499000,0],[1709766500000,0],[1709766501000,0],[1709766502000,0],[1709766503000,0],[1709766504000,0],[1709766505000,0],[1709766506000,0],[1709766507000,0],[1709766508000,0],[1709766509000,0],[1709766510000,0],[1709766511000,0],[1709766512000,0],[1709766513000,0],[1709766514000,0],[1709766515000,0],[1709766516000,0],[1709766517000,0],[1709766518000,0],[1709766519000,0],[1709766520000,0],[1709766521000,0],[1709766522000,0],[1709766523000,0],[1709766524000,0],[1709766525000,0],[1709766526000,0],[1709766527000,0],[1709766528000,0],[1709766529000,0],[1709766530000,0],[1709766531000,0],[1709766532000,0],[1709766533000,0],[1709766534000,0],[1709766535000,0],[1709766536000,0],[1709766537000,0],[1709766538000,0],[1709766539000,0],[1709766540000,0],[1709766541000,0],[1709766542000,0],[1709766543000,0],[1709766544000,0],[1709766545000,0],[1709766546000,0],[1709766547000,0],[1709766548000,0],[1709766549000,0],[1709766550000,0],[1709766551000,0],[1709766552000,0],[1709766553000,0],[1709766554000,0],[1709766555000,0],[1709766556000,0],[1709766557000,0],[1709766558000,0],[1709766559000,0],[1709766560000,0],[1709766561000,0],[1709766562000,0],[1709766563000,0],[1709766564000,0],[1709766565000,0],[1709766566000,0],[1709766567000,0],[1709766568000,0],[1709766569000,0],[1709766570000,0],[1709766571000,0],[1709766572000,0],[1709766573000,0],[1709766574000,0],[1709766575000,0],[1709766576000,0],[1709766577000,0],[1709766578000,0],[1709766579000,0],[1709766580000,0],[1709766581000,0],[1709766582000,0],[1709766583000,0],[1709766584000,0],[1709766585000,0],[1709766586000,0],[1709766587000,0],[1709766588000,0],[1709766589000,0],[1709766590000,0],[1709766591000,0],[1709766592000,0],[1709766593000,0],[1709766594000,0],[1709766595000,0],[1709766596000,0],[1709766597000,0],[1709766598000,0],[1709766599000,0],[1709766600000,0],[1709766601000,0],[1709766602000,0],[1709766603000,0],[1709766604000,0],[1709766605000,0],[1709766606000,0],[1709766607000,0],[1709766608000,0],[1709766609000,0],[1709766610000,0],[1709766611000,0],[1709766612000,0],[1709766613000,0],[1709766614000,0],[1709766615000,0],[1709766616000,0],[1709766617000,0],[1709766618000,0],[1709766619000,0],[1709766620000,0],[1709766621000,0],[1709766622000,0],[1709766623000,0],[1709766624000,0],[1709766625000,0],[1709766626000,0],[1709766627000,0],[1709766628000,0],[1709766629000,0],[1709766630000,0],[1709766631000,0],[1709766632000,0],[1709766633000,0],[1709766634000,0],[1709766635000,0],[1709766636000,0],[1709766637000,0],[1709766638000,0],[1709766639000,0],[1709766640000,0],[1709766641000,0],[1709766642000,0],[1709766643000,0],[1709766644000,0],[1709766645000,0],[1709766646000,0],[1709766647000,0],[1709766648000,0],[1709766649000,0],[1709766650000,0],[1709766651000,0],[1709766652000,0],[1709766653000,0],[1709766654000,0],[1709766655000,0],[1709766656000,0],[1709766657000,0],[1709766658000,0],[1709766659000,0],[1709766660000,0],[1709766661000,0],[1709766662000,0],[1709766663000,0],[1709766664000,0],[1709766665000,0],[1709766666000,0],[1709766667000,0],[1709766668000,0],[1709766669000,0],[1709766670000,0],[1709766671000,0],[1709766672000,0],[1709766673000,0],[1709766674000,0],[1709766675000,0],[1709766676000,0],[1709766677000,0],[1709766678000,0],[1709766679000,0],[1709766680000,0],[1709766681000,0],[1709766682000,0],[1709766683000,0],[1709766684000,0],[1709766685000,0],[1709766686000,0],[1709766687000,0],[1709766688000,0],[1709766689000,0],[1709766690000,0],[1709766691000,0],[1709766692000,0],[1709766693000,0],[1709766694000,0],[1709766695000,0],[1709766696000,0],[1709766697000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#9D00FF',
name: 'validação concorrência transações - c',
data: [
[1709766452000,0],[1709766453000,0],[1709766454000,25],[1709766455000,17],[1709766456000,0],[1709766457000,0],[1709766458000,0],[1709766459000,0],[1709766460000,0],[1709766461000,0],[1709766462000,0],[1709766463000,0],[1709766464000,0],[1709766465000,0],[1709766466000,0],[1709766467000,0],[1709766468000,0],[1709766469000,0],[1709766470000,0],[1709766471000,0],[1709766472000,0],[1709766473000,0],[1709766474000,0],[1709766475000,0],[1709766476000,0],[1709766477000,0],[1709766478000,0],[1709766479000,0],[1709766480000,0],[1709766481000,0],[1709766482000,0],[1709766483000,0],[1709766484000,0],[1709766485000,0],[1709766486000,0],[1709766487000,0],[1709766488000,0],[1709766489000,0],[1709766490000,0],[1709766491000,0],[1709766492000,0],[1709766493000,0],[1709766494000,0],[1709766495000,0],[1709766496000,0],[1709766497000,0],[1709766498000,0],[1709766499000,0],[1709766500000,0],[1709766501000,0],[1709766502000,0],[1709766503000,0],[1709766504000,0],[1709766505000,0],[1709766506000,0],[1709766507000,0],[1709766508000,0],[1709766509000,0],[1709766510000,0],[1709766511000,0],[1709766512000,0],[1709766513000,0],[1709766514000,0],[1709766515000,0],[1709766516000,0],[1709766517000,0],[1709766518000,0],[1709766519000,0],[1709766520000,0],[1709766521000,0],[1709766522000,0],[1709766523000,0],[1709766524000,0],[1709766525000,0],[1709766526000,0],[1709766527000,0],[1709766528000,0],[1709766529000,0],[1709766530000,0],[1709766531000,0],[1709766532000,0],[1709766533000,0],[1709766534000,0],[1709766535000,0],[1709766536000,0],[1709766537000,0],[1709766538000,0],[1709766539000,0],[1709766540000,0],[1709766541000,0],[1709766542000,0],[1709766543000,0],[1709766544000,0],[1709766545000,0],[1709766546000,0],[1709766547000,0],[1709766548000,0],[1709766549000,0],[1709766550000,0],[1709766551000,0],[1709766552000,0],[1709766553000,0],[1709766554000,0],[1709766555000,0],[1709766556000,0],[1709766557000,0],[1709766558000,0],[1709766559000,0],[1709766560000,0],[1709766561000,0],[1709766562000,0],[1709766563000,0],[1709766564000,0],[1709766565000,0],[1709766566000,0],[1709766567000,0],[1709766568000,0],[1709766569000,0],[1709766570000,0],[1709766571000,0],[1709766572000,0],[1709766573000,0],[1709766574000,0],[1709766575000,0],[1709766576000,0],[1709766577000,0],[1709766578000,0],[1709766579000,0],[1709766580000,0],[1709766581000,0],[1709766582000,0],[1709766583000,0],[1709766584000,0],[1709766585000,0],[1709766586000,0],[1709766587000,0],[1709766588000,0],[1709766589000,0],[1709766590000,0],[1709766591000,0],[1709766592000,0],[1709766593000,0],[1709766594000,0],[1709766595000,0],[1709766596000,0],[1709766597000,0],[1709766598000,0],[1709766599000,0],[1709766600000,0],[1709766601000,0],[1709766602000,0],[1709766603000,0],[1709766604000,0],[1709766605000,0],[1709766606000,0],[1709766607000,0],[1709766608000,0],[1709766609000,0],[1709766610000,0],[1709766611000,0],[1709766612000,0],[1709766613000,0],[1709766614000,0],[1709766615000,0],[1709766616000,0],[1709766617000,0],[1709766618000,0],[1709766619000,0],[1709766620000,0],[1709766621000,0],[1709766622000,0],[1709766623000,0],[1709766624000,0],[1709766625000,0],[1709766626000,0],[1709766627000,0],[1709766628000,0],[1709766629000,0],[1709766630000,0],[1709766631000,0],[1709766632000,0],[1709766633000,0],[1709766634000,0],[1709766635000,0],[1709766636000,0],[1709766637000,0],[1709766638000,0],[1709766639000,0],[1709766640000,0],[1709766641000,0],[1709766642000,0],[1709766643000,0],[1709766644000,0],[1709766645000,0],[1709766646000,0],[1709766647000,0],[1709766648000,0],[1709766649000,0],[1709766650000,0],[1709766651000,0],[1709766652000,0],[1709766653000,0],[1709766654000,0],[1709766655000,0],[1709766656000,0],[1709766657000,0],[1709766658000,0],[1709766659000,0],[1709766660000,0],[1709766661000,0],[1709766662000,0],[1709766663000,0],[1709766664000,0],[1709766665000,0],[1709766666000,0],[1709766667000,0],[1709766668000,0],[1709766669000,0],[1709766670000,0],[1709766671000,0],[1709766672000,0],[1709766673000,0],[1709766674000,0],[1709766675000,0],[1709766676000,0],[1709766677000,0],[1709766678000,0],[1709766679000,0],[1709766680000,0],[1709766681000,0],[1709766682000,0],[1709766683000,0],[1709766684000,0],[1709766685000,0],[1709766686000,0],[1709766687000,0],[1709766688000,0],[1709766689000,0],[1709766690000,0],[1709766691000,0],[1709766692000,0],[1709766693000,0],[1709766694000,0],[1709766695000,0],[1709766696000,0],[1709766697000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FF00E1',
name: 'validação concorrência saldo - -25',
data: [
[1709766452000,0],[1709766453000,1],[1709766454000,1],[1709766455000,0],[1709766456000,0],[1709766457000,0],[1709766458000,0],[1709766459000,0],[1709766460000,0],[1709766461000,0],[1709766462000,0],[1709766463000,0],[1709766464000,0],[1709766465000,0],[1709766466000,0],[1709766467000,0],[1709766468000,0],[1709766469000,0],[1709766470000,0],[1709766471000,0],[1709766472000,0],[1709766473000,0],[1709766474000,0],[1709766475000,0],[1709766476000,0],[1709766477000,0],[1709766478000,0],[1709766479000,0],[1709766480000,0],[1709766481000,0],[1709766482000,0],[1709766483000,0],[1709766484000,0],[1709766485000,0],[1709766486000,0],[1709766487000,0],[1709766488000,0],[1709766489000,0],[1709766490000,0],[1709766491000,0],[1709766492000,0],[1709766493000,0],[1709766494000,0],[1709766495000,0],[1709766496000,0],[1709766497000,0],[1709766498000,0],[1709766499000,0],[1709766500000,0],[1709766501000,0],[1709766502000,0],[1709766503000,0],[1709766504000,0],[1709766505000,0],[1709766506000,0],[1709766507000,0],[1709766508000,0],[1709766509000,0],[1709766510000,0],[1709766511000,0],[1709766512000,0],[1709766513000,0],[1709766514000,0],[1709766515000,0],[1709766516000,0],[1709766517000,0],[1709766518000,0],[1709766519000,0],[1709766520000,0],[1709766521000,0],[1709766522000,0],[1709766523000,0],[1709766524000,0],[1709766525000,0],[1709766526000,0],[1709766527000,0],[1709766528000,0],[1709766529000,0],[1709766530000,0],[1709766531000,0],[1709766532000,0],[1709766533000,0],[1709766534000,0],[1709766535000,0],[1709766536000,0],[1709766537000,0],[1709766538000,0],[1709766539000,0],[1709766540000,0],[1709766541000,0],[1709766542000,0],[1709766543000,0],[1709766544000,0],[1709766545000,0],[1709766546000,0],[1709766547000,0],[1709766548000,0],[1709766549000,0],[1709766550000,0],[1709766551000,0],[1709766552000,0],[1709766553000,0],[1709766554000,0],[1709766555000,0],[1709766556000,0],[1709766557000,0],[1709766558000,0],[1709766559000,0],[1709766560000,0],[1709766561000,0],[1709766562000,0],[1709766563000,0],[1709766564000,0],[1709766565000,0],[1709766566000,0],[1709766567000,0],[1709766568000,0],[1709766569000,0],[1709766570000,0],[1709766571000,0],[1709766572000,0],[1709766573000,0],[1709766574000,0],[1709766575000,0],[1709766576000,0],[1709766577000,0],[1709766578000,0],[1709766579000,0],[1709766580000,0],[1709766581000,0],[1709766582000,0],[1709766583000,0],[1709766584000,0],[1709766585000,0],[1709766586000,0],[1709766587000,0],[1709766588000,0],[1709766589000,0],[1709766590000,0],[1709766591000,0],[1709766592000,0],[1709766593000,0],[1709766594000,0],[1709766595000,0],[1709766596000,0],[1709766597000,0],[1709766598000,0],[1709766599000,0],[1709766600000,0],[1709766601000,0],[1709766602000,0],[1709766603000,0],[1709766604000,0],[1709766605000,0],[1709766606000,0],[1709766607000,0],[1709766608000,0],[1709766609000,0],[1709766610000,0],[1709766611000,0],[1709766612000,0],[1709766613000,0],[1709766614000,0],[1709766615000,0],[1709766616000,0],[1709766617000,0],[1709766618000,0],[1709766619000,0],[1709766620000,0],[1709766621000,0],[1709766622000,0],[1709766623000,0],[1709766624000,0],[1709766625000,0],[1709766626000,0],[1709766627000,0],[1709766628000,0],[1709766629000,0],[1709766630000,0],[1709766631000,0],[1709766632000,0],[1709766633000,0],[1709766634000,0],[1709766635000,0],[1709766636000,0],[1709766637000,0],[1709766638000,0],[1709766639000,0],[1709766640000,0],[1709766641000,0],[1709766642000,0],[1709766643000,0],[1709766644000,0],[1709766645000,0],[1709766646000,0],[1709766647000,0],[1709766648000,0],[1709766649000,0],[1709766650000,0],[1709766651000,0],[1709766652000,0],[1709766653000,0],[1709766654000,0],[1709766655000,0],[1709766656000,0],[1709766657000,0],[1709766658000,0],[1709766659000,0],[1709766660000,0],[1709766661000,0],[1709766662000,0],[1709766663000,0],[1709766664000,0],[1709766665000,0],[1709766666000,0],[1709766667000,0],[1709766668000,0],[1709766669000,0],[1709766670000,0],[1709766671000,0],[1709766672000,0],[1709766673000,0],[1709766674000,0],[1709766675000,0],[1709766676000,0],[1709766677000,0],[1709766678000,0],[1709766679000,0],[1709766680000,0],[1709766681000,0],[1709766682000,0],[1709766683000,0],[1709766684000,0],[1709766685000,0],[1709766686000,0],[1709766687000,0],[1709766688000,0],[1709766689000,0],[1709766690000,0],[1709766691000,0],[1709766692000,0],[1709766693000,0],[1709766694000,0],[1709766695000,0],[1709766696000,0],[1709766697000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#AECAEB',
name: 'validação concorrência transações - d',
data: [
[1709766452000,25],[1709766453000,1],[1709766454000,0],[1709766455000,0],[1709766456000,0],[1709766457000,0],[1709766458000,0],[1709766459000,0],[1709766460000,0],[1709766461000,0],[1709766462000,0],[1709766463000,0],[1709766464000,0],[1709766465000,0],[1709766466000,0],[1709766467000,0],[1709766468000,0],[1709766469000,0],[1709766470000,0],[1709766471000,0],[1709766472000,0],[1709766473000,0],[1709766474000,0],[1709766475000,0],[1709766476000,0],[1709766477000,0],[1709766478000,0],[1709766479000,0],[1709766480000,0],[1709766481000,0],[1709766482000,0],[1709766483000,0],[1709766484000,0],[1709766485000,0],[1709766486000,0],[1709766487000,0],[1709766488000,0],[1709766489000,0],[1709766490000,0],[1709766491000,0],[1709766492000,0],[1709766493000,0],[1709766494000,0],[1709766495000,0],[1709766496000,0],[1709766497000,0],[1709766498000,0],[1709766499000,0],[1709766500000,0],[1709766501000,0],[1709766502000,0],[1709766503000,0],[1709766504000,0],[1709766505000,0],[1709766506000,0],[1709766507000,0],[1709766508000,0],[1709766509000,0],[1709766510000,0],[1709766511000,0],[1709766512000,0],[1709766513000,0],[1709766514000,0],[1709766515000,0],[1709766516000,0],[1709766517000,0],[1709766518000,0],[1709766519000,0],[1709766520000,0],[1709766521000,0],[1709766522000,0],[1709766523000,0],[1709766524000,0],[1709766525000,0],[1709766526000,0],[1709766527000,0],[1709766528000,0],[1709766529000,0],[1709766530000,0],[1709766531000,0],[1709766532000,0],[1709766533000,0],[1709766534000,0],[1709766535000,0],[1709766536000,0],[1709766537000,0],[1709766538000,0],[1709766539000,0],[1709766540000,0],[1709766541000,0],[1709766542000,0],[1709766543000,0],[1709766544000,0],[1709766545000,0],[1709766546000,0],[1709766547000,0],[1709766548000,0],[1709766549000,0],[1709766550000,0],[1709766551000,0],[1709766552000,0],[1709766553000,0],[1709766554000,0],[1709766555000,0],[1709766556000,0],[1709766557000,0],[1709766558000,0],[1709766559000,0],[1709766560000,0],[1709766561000,0],[1709766562000,0],[1709766563000,0],[1709766564000,0],[1709766565000,0],[1709766566000,0],[1709766567000,0],[1709766568000,0],[1709766569000,0],[1709766570000,0],[1709766571000,0],[1709766572000,0],[1709766573000,0],[1709766574000,0],[1709766575000,0],[1709766576000,0],[1709766577000,0],[1709766578000,0],[1709766579000,0],[1709766580000,0],[1709766581000,0],[1709766582000,0],[1709766583000,0],[1709766584000,0],[1709766585000,0],[1709766586000,0],[1709766587000,0],[1709766588000,0],[1709766589000,0],[1709766590000,0],[1709766591000,0],[1709766592000,0],[1709766593000,0],[1709766594000,0],[1709766595000,0],[1709766596000,0],[1709766597000,0],[1709766598000,0],[1709766599000,0],[1709766600000,0],[1709766601000,0],[1709766602000,0],[1709766603000,0],[1709766604000,0],[1709766605000,0],[1709766606000,0],[1709766607000,0],[1709766608000,0],[1709766609000,0],[1709766610000,0],[1709766611000,0],[1709766612000,0],[1709766613000,0],[1709766614000,0],[1709766615000,0],[1709766616000,0],[1709766617000,0],[1709766618000,0],[1709766619000,0],[1709766620000,0],[1709766621000,0],[1709766622000,0],[1709766623000,0],[1709766624000,0],[1709766625000,0],[1709766626000,0],[1709766627000,0],[1709766628000,0],[1709766629000,0],[1709766630000,0],[1709766631000,0],[1709766632000,0],[1709766633000,0],[1709766634000,0],[1709766635000,0],[1709766636000,0],[1709766637000,0],[1709766638000,0],[1709766639000,0],[1709766640000,0],[1709766641000,0],[1709766642000,0],[1709766643000,0],[1709766644000,0],[1709766645000,0],[1709766646000,0],[1709766647000,0],[1709766648000,0],[1709766649000,0],[1709766650000,0],[1709766651000,0],[1709766652000,0],[1709766653000,0],[1709766654000,0],[1709766655000,0],[1709766656000,0],[1709766657000,0],[1709766658000,0],[1709766659000,0],[1709766660000,0],[1709766661000,0],[1709766662000,0],[1709766663000,0],[1709766664000,0],[1709766665000,0],[1709766666000,0],[1709766667000,0],[1709766668000,0],[1709766669000,0],[1709766670000,0],[1709766671000,0],[1709766672000,0],[1709766673000,0],[1709766674000,0],[1709766675000,0],[1709766676000,0],[1709766677000,0],[1709766678000,0],[1709766679000,0],[1709766680000,0],[1709766681000,0],[1709766682000,0],[1709766683000,0],[1709766684000,0],[1709766685000,0],[1709766686000,0],[1709766687000,0],[1709766688000,0],[1709766689000,0],[1709766690000,0],[1709766691000,0],[1709766692000,0],[1709766693000,0],[1709766694000,0],[1709766695000,0],[1709766696000,0],[1709766697000,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: ['7', '20', '33', '46', '59', '72', '85', '98', '111', '124', '137', '150', '163', '176', '189', '202', '215', '228', '241', '254', '267', '280', '293', '306', '319', '332', '345', '358', '371', '384', '397', '410', '423', '436', '449', '462', '475', '488', '501', '514', '527', '540', '553', '566', '579', '592', '605', '618', '631', '644', '658', '671', '684', '697', '710', '723', '736', '749', '762', '775', '788', '801', '814', '827', '840', '853', '866', '879', '892', '905', '918', '931', '944', '957', '970', '983', '996', '1009', '1022', '1035', '1048', '1061', '1074', '1087', '1100', '1113', '1126', '1139', '1152', '1165', '1178', '1191', '1204', '1217', '1230', '1243', '1256', '1269', '1282', '1295'],
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: [
30.91,9.71,9.52,9.12,9.82,8.89,8.4,5.62,3.03,1.54,1.12,0.75,0.74,0.42,0.26,0.03,0.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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([[1709766452,[114,191,204,215,219,224,229,281,1060,1302]],[1709766453,null],[1709766454,[9,9,9,9,9,9,9,9,9,9]],[1709766455,[13,17,46,56,110,112,113,116,118,119]],[1709766456,[5,5,5,5,5,5,5,5,5,5]],[1709766457,[1,5,9,21,37,44,51,60,70,85]],[1709766458,[6,6,7,7,7,7,7,7,7,8]],[1709766459,[4,4,4,5,5,5,6,6,6,7]],[1709766460,[3,4,4,7,7,7,8,9,9,10]],[1709766461,[3,3,4,5,6,6,6,7,7,8]],[1709766462,[3,3,3,4,4,5,5,5,5,6]],[1709766463,[2,3,3,4,4,4,4,5,5,5]],[1709766464,[2,3,3,4,4,4,4,5,5,5]],[1709766465,[2,2,3,3,3,4,4,4,4,5]],[1709766466,[2,3,3,3,4,4,4,4,5,5]],[1709766467,[2,2,3,3,3,4,4,4,6,8]],[1709766468,[2,3,3,3,4,4,4,6,9,10]],[1709766469,[2,2,3,3,3,3,4,4,4,5]],[1709766470,[2,2,3,3,3,3,3,4,4,4]],[1709766471,[2,2,3,3,3,3,3,4,7,9]],[1709766472,[2,3,3,3,3,3,3,3,4,4]],[1709766473,[2,2,2,3,3,3,3,3,5,5]],[1709766474,[2,2,3,3,3,3,4,4,5,5]],[1709766475,[2,2,2,3,3,3,3,3,3,4]],[1709766476,[2,2,2,2,2,3,3,3,3,3]],[1709766477,[1,2,2,2,2,2,3,3,3,4]],[1709766478,[2,2,2,2,2,2,3,3,3,4]],[1709766479,[1,2,2,2,2,2,3,3,4,6]],[1709766480,[1,2,2,2,2,2,3,3,3,4]],[1709766481,[1,1,2,2,2,2,2,2,2,2]],[1709766482,[1,1,2,2,2,2,2,2,3,3]],[1709766483,[1,1,1,2,2,2,2,2,7,20]],[1709766484,[1,1,2,2,2,2,2,2,3,3]],[1709766485,[1,1,2,2,2,2,2,2,4,9]],[1709766486,[1,1,2,2,2,2,2,2,8,24]],[1709766487,[1,1,1,2,2,2,2,2,9,38]],[1709766488,[1,1,1,1,1,1,2,2,2,2]],[1709766489,[1,1,1,1,1,1,1,2,2,2]],[1709766490,[1,1,1,1,2,2,2,2,2,3]],[1709766491,[1,1,1,2,2,2,2,24,63,70]],[1709766492,[1,1,1,2,2,2,2,2,19,34]],[1709766493,[1,1,2,2,2,2,2,2,2,3]],[1709766494,[1,1,2,2,2,2,2,2,2,3]],[1709766495,[1,1,1,2,2,2,2,2,2,2]],[1709766496,[1,1,1,2,2,2,2,2,2,3]],[1709766497,[1,1,1,1,1,1,1,2,2,3]],[1709766498,[1,1,1,1,1,1,1,1,2,3]],[1709766499,[1,1,1,1,1,1,2,18,37,42]],[1709766500,[1,1,1,1,1,1,2,2,2,2]],[1709766501,[0,1,1,1,1,1,2,2,2,2]],[1709766502,[0,1,1,1,1,2,2,2,2,3]],[1709766503,[1,1,1,1,1,1,2,2,2,3]],[1709766504,[1,1,1,2,2,2,2,2,2,3]],[1709766505,[1,1,1,2,2,2,2,2,2,3]],[1709766506,[1,1,1,1,1,1,2,2,2,3]],[1709766507,[1,1,1,1,2,2,2,2,2,3]],[1709766508,[0,1,1,1,2,2,2,2,2,4]],[1709766509,[0,1,1,1,1,1,2,2,2,3]],[1709766510,[0,1,1,1,1,2,2,2,4,8]],[1709766511,[1,1,1,1,2,2,2,2,2,3]],[1709766512,[0,1,1,1,1,1,2,2,2,3]],[1709766513,[0,1,1,1,1,1,2,2,2,3]],[1709766514,[0,1,1,1,2,2,2,2,2,3]],[1709766515,[1,1,1,2,2,2,2,2,2,3]],[1709766516,[1,1,1,2,2,2,2,2,2,3]],[1709766517,[0,1,1,2,2,2,2,2,2,3]],[1709766518,[0,1,1,2,2,2,2,2,2,2]],[1709766519,[1,1,1,1,2,2,2,2,24,43]],[1709766520,[0,1,1,1,1,1,1,2,2,2]],[1709766521,[0,1,1,1,1,1,1,2,2,2]],[1709766522,[1,1,1,1,1,1,1,1,2,2]],[1709766523,[0,1,1,1,1,2,2,4,29,37]],[1709766524,[0,1,1,1,2,2,2,22,45,52]],[1709766525,[1,1,1,1,2,9,22,40,54,55]],[1709766526,[0,1,2,24,31,35,42,49,54,56]],[1709766527,[0,1,1,1,1,1,2,5,43,55]],[1709766528,[1,1,1,1,1,1,2,2,2,3]],[1709766529,[0,1,1,1,1,2,2,2,2,9]],[1709766530,[0,1,1,1,1,1,2,2,2,15]],[1709766531,[0,0,1,1,1,1,1,2,2,2]],[1709766532,[0,1,1,1,1,1,1,2,2,2]],[1709766533,[0,1,1,1,1,1,2,2,19,42]],[1709766534,[0,1,1,1,1,1,1,2,2,2]],[1709766535,[1,1,1,1,1,1,2,3,41,51]],[1709766536,[0,1,1,1,1,2,2,2,2,2]],[1709766537,[0,1,1,1,1,1,1,2,2,4]],[1709766538,[0,1,1,1,1,1,2,2,22,33]],[1709766539,[0,1,1,1,1,1,1,2,5,11]],[1709766540,[0,1,1,1,1,1,2,5,20,28]],[1709766541,[0,1,1,1,1,1,2,2,9,18]],[1709766542,[0,1,1,1,1,1,1,2,9,24]],[1709766543,[0,1,1,1,2,2,12,24,44,52]],[1709766544,[0,1,1,6,12,17,26,33,48,56]],[1709766545,[0,1,1,2,5,10,15,26,36,43]],[1709766546,[0,1,1,17,22,26,32,39,51,56]],[1709766547,[0,1,1,10,13,20,26,33,40,50]],[1709766548,[0,1,1,16,20,27,32,40,48,55]],[1709766549,[0,1,3,28,33,39,47,55,71,77]],[1709766550,[0,1,2,25,32,38,44,54,75,82]],[1709766551,[0,1,2,23,27,32,38,46,59,67]],[1709766552,[0,1,4,28,35,39,46,52,58,60]],[1709766553,[1,1,14,38,43,48,52,59,67,74]],[1709766554,[0,1,8,33,38,42,47,55,66,75]],[1709766555,[0,1,9,34,38,43,47,57,64,72]],[1709766556,[0,1,9,34,39,43,48,54,69,80]],[1709766557,[0,1,18,42,48,53,58,64,73,79]],[1709766558,[0,1,12,35,41,44,48,59,74,75]],[1709766559,[0,1,14,40,45,50,55,61,70,79]],[1709766560,[0,4,29,52,57,63,69,75,84,86]],[1709766561,[0,4,27,52,57,61,65,71,85,91]],[1709766562,[0,1,21,47,51,57,63,70,81,86]],[1709766563,[0,1,20,45,51,54,59,66,79,85]],[1709766564,[0,1,24,48,53,58,65,72,83,91]],[1709766565,[1,2,24,48,53,59,64,71,79,81]],[1709766566,[0,5,29,53,58,63,69,76,84,88]],[1709766567,[1,7,32,54,60,64,70,78,88,94]],[1709766568,[1,14,37,62,67,71,80,90,110,160]],[1709766569,[0,11,34,58,64,69,73,77,84,89]],[1709766570,[0,5,29,54,58,63,69,76,90,96]],[1709766571,[1,14,36,61,65,70,76,84,91,111]],[1709766572,[2,6,28,54,57,62,66,72,81,90]],[1709766573,[0,13,37,62,67,72,78,82,93,111]],[1709766574,[1,19,44,68,73,78,83,89,98,111]],[1709766575,[0,23,48,73,78,84,88,94,111,111]],[1709766576,[2,22,47,72,78,83,90,96,109,173]],[1709766577,[0,36,64,91,95,106,112,130,155,176]],[1709766578,[1,19,45,70,75,79,86,93,98,130]],[1709766579,[1,23,51,77,80,87,96,111,139,166]],[1709766580,[2,15,40,63,69,77,84,93,123,166]],[1709766581,[1,27,55,82,89,95,102,121,159,180]],[1709766582,[2,27,55,80,86,92,97,111,150,184]],[1709766583,[0,27,56,81,88,95,102,115,138,148]],[1709766584,[1,21,49,74,79,84,89,101,134,160]],[1709766585,[1,26,51,76,80,85,92,96,111,120]],[1709766586,[0,19,45,68,73,79,83,90,98,111]],[1709766587,[0,24,52,80,85,93,99,121,159,166]],[1709766588,[0,40,73,104,112,130,139,157,176,185]],[1709766589,[1,21,45,70,76,79,85,91,96,111]],[1709766590,[1,27,54,78,83,89,94,102,116,143]],[1709766591,[2,26,51,75,79,86,91,99,112,130]],[1709766592,[1,16,39,63,69,76,81,87,93,94]],[1709766593,[2,35,62,88,94,98,110,131,161,174]],[1709766594,[1,28,54,81,87,92,99,111,170,183]],[1709766595,[2,35,61,87,94,102,111,122,146,175]],[1709766596,[1,40,70,97,102,111,122,148,175,189]],[1709766597,[2,29,58,83,87,93,99,111,147,157]],[1709766598,[1,26,52,76,80,86,91,97,111,129]],[1709766599,[1,19,45,70,76,81,85,93,106,139]],[1709766600,[1,17,43,68,72,77,82,87,109,148]],[1709766601,[0,21,46,73,78,82,89,95,144,171]],[1709766602,[0,37,68,97,102,112,125,149,184,202]],[1709766603,[1,25,52,80,86,93,101,122,169,175]],[1709766604,[1,31,58,84,89,96,102,111,146,175]],[1709766605,[1,22,48,74,78,84,89,96,140,154]],[1709766606,[1,30,55,82,87,92,97,111,137,161]],[1709766607,[1,26,53,79,85,89,94,112,159,180]],[1709766608,[3,37,64,90,94,98,110,120,150,165]],[1709766609,[0,27,54,80,86,90,97,111,158,174]],[1709766610,[0,19,44,69,74,78,85,89,97,111]],[1709766611,[0,49,80,112,121,131,140,157,178,189]],[1709766612,[0,24,49,74,80,85,91,97,129,156]],[1709766613,[2,30,60,85,91,98,110,129,165,175]],[1709766614,[5,44,71,98,102,111,121,140,187,194]],[1709766615,[2,36,67,96,101,111,126,153,184,194]],[1709766616,[1,34,61,88,95,103,112,131,171,194]],[1709766617,[0,25,48,74,78,83,89,98,111,121]],[1709766618,[1,30,61,93,98,111,121,143,173,193]],[1709766619,[3,45,77,102,111,120,130,144,171,190]],[1709766620,[1,27,54,81,86,90,99,115,163,174]],[1709766621,[1,30,56,83,86,93,98,111,132,166]],[1709766622,[1,27,52,77,81,86,92,102,123,184]],[1709766623,[1,37,68,96,102,111,126,157,188,202]],[1709766624,[1,30,57,83,89,94,102,131,178,184]],[1709766625,[1,24,48,73,78,84,89,94,111,121]],[1709766626,[1,23,49,75,79,85,90,103,155,193]],[1709766627,[13,80,107,139,148,157,166,176,185,194]],[1709766628,[1,46,80,111,117,130,140,157,178,202]],[1709766629,[4,60,90,112,121,130,140,157,173,184]],[1709766630,[1,27,53,84,89,95,103,122,165,189]],[1709766631,[5,61,94,118,130,139,149,162,180,184]],[1709766632,[0,25,53,80,86,93,103,121,154,171]],[1709766633,[1,26,54,79,86,90,97,111,148,179]],[1709766634,[1,28,58,84,90,96,111,131,164,184]],[1709766635,[2,36,67,96,102,111,125,149,184,193]],[1709766636,[1,21,46,70,77,80,85,90,111,139]],[1709766637,[1,27,54,79,82,88,94,99,119,134]],[1709766638,[2,36,66,94,98,107,112,139,171,184]],[1709766639,[1,25,53,79,84,90,98,111,153,180]],[1709766640,[1,17,40,65,69,77,80,89,96,99]],[1709766641,[5,32,58,83,88,93,98,111,128,139]],[1709766642,[2,32,60,85,89,95,100,117,141,166]],[1709766643,[1,25,53,79,84,89,95,111,155,175]],[1709766644,[0,26,52,76,80,85,92,98,111,115]],[1709766645,[7,70,102,129,138,143,157,175,197,212]],[1709766646,[0,26,52,78,84,87,93,102,128,157]],[1709766647,[2,44,76,100,107,112,125,143,162,183]],[1709766648,[1,16,39,63,70,75,78,85,91,111]],[1709766649,[1,36,64,92,96,103,112,140,165,180]],[1709766650,[4,33,59,85,88,94,98,111,129,148]],[1709766651,[1,24,51,77,81,86,94,111,137,161]],[1709766652,[1,23,47,72,79,84,89,95,107,111]],[1709766653,[0,27,55,82,86,91,98,111,157,175]],[1709766654,[1,22,47,72,77,82,86,92,110,148]],[1709766655,[1,36,65,93,102,111,125,148,183,193]],[1709766656,[4,36,64,91,94,102,111,133,170,190]],[1709766657,[0,33,62,88,93,99,111,130,175,193]],[1709766658,[0,18,43,67,71,76,80,85,93,97]],[1709766659,[2,45,75,98,102,111,116,139,167,175]],[1709766660,[4,45,77,102,111,121,139,162,183,194]],[1709766661,[1,25,51,76,80,85,92,101,125,160]],[1709766662,[2,26,52,78,83,87,92,98,132,171]],[1709766663,[1,35,61,86,90,95,102,111,144,166]],[1709766664,[1,25,51,76,80,85,92,98,111,148]],[1709766665,[1,49,83,112,121,130,140,157,172,180]],[1709766666,[4,39,71,96,101,111,122,142,175,205]],[1709766667,[1,28,56,82,87,92,97,112,153,184]],[1709766668,[1,36,64,91,96,102,111,139,171,180]],[1709766669,[3,35,62,88,94,98,111,121,162,184]],[1709766670,[1,22,49,75,80,85,93,102,137,175]],[1709766671,[0,26,50,76,80,85,90,96,111,166]],[1709766672,[0,20,46,71,76,81,87,94,111,121]],[1709766673,[1,21,47,71,77,82,90,99,117,139]],[1709766674,[4,45,79,107,112,125,139,157,180,194]],[1709766675,[1,22,46,71,77,81,86,92,106,111]],[1709766676,[1,38,68,96,100,111,120,143,177,189]],[1709766677,[1,38,68,93,98,106,112,130,150,189]],[1709766678,[2,41,70,96,101,111,116,152,178,189]],[1709766679,[0,25,47,73,77,83,88,92,111,111]],[1709766680,[0,26,53,79,85,90,96,111,132,171]],[1709766681,[1,25,51,76,79,86,91,97,135,188]],[1709766682,[0,21,46,72,78,81,86,94,110,115]],[1709766683,[0,28,57,82,88,93,100,111,139,161]],[1709766684,[3,34,60,87,91,95,101,112,153,179]],[1709766685,[0,26,51,75,80,85,89,94,111,111]],[1709766686,[3,40,72,102,111,125,139,161,180,194]],[1709766687,[7,57,93,122,135,148,161,175,191,198]],[1709766688,[4,70,102,130,139,152,166,185,208,221]],[1709766689,[5,60,96,126,139,148,161,175,190,212]],[1709766690,[1,27,54,81,87,94,99,111,155,174]],[1709766691,[3,39,68,94,98,103,112,131,169,175]],[1709766692,[0,42,76,111,121,133,148,166,192,212]],[1709766693,[7,80,111,139,147,156,166,183,206,212]],[1709766694,[4,63,94,120,125,139,148,160,181,184]],[1709766695,[1,26,52,78,83,88,97,111,132,175]],[1709766696,[0,26,53,79,85,90,98,111,139,180]],[1709766697,[2,27,51,75,79,84,87,94,111,111]]]);
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([[1709766452,[25,25,0]],[1709766453,[0,0,0]],[1709766454,[1,1,0]],[1709766455,[25,25,0]],[1709766456,[1,1,0]],[1709766457,[71,71,0]],[1709766458,[3,3,0]],[1709766459,[6,6,0]],[1709766460,[9,9,0]],[1709766461,[11,11,0]],[1709766462,[13,13,0]],[1709766463,[18,18,0]],[1709766464,[19,19,0]],[1709766465,[24,24,0]],[1709766466,[26,26,0]],[1709766467,[27,27,0]],[1709766468,[32,32,0]],[1709766469,[34,34,0]],[1709766470,[37,37,0]],[1709766471,[40,40,0]],[1709766472,[42,42,0]],[1709766473,[45,45,0]],[1709766474,[48,48,0]],[1709766475,[50,50,0]],[1709766476,[54,54,0]],[1709766477,[56,56,0]],[1709766478,[60,60,0]],[1709766479,[61,61,0]],[1709766480,[65,65,0]],[1709766481,[67,67,0]],[1709766482,[70,70,0]],[1709766483,[75,75,0]],[1709766484,[77,77,0]],[1709766485,[78,78,0]],[1709766486,[81,81,0]],[1709766487,[84,84,0]],[1709766488,[89,89,0]],[1709766489,[89,89,0]],[1709766490,[93,93,0]],[1709766491,[96,96,0]],[1709766492,[98,98,0]],[1709766493,[102,102,0]],[1709766494,[104,104,0]],[1709766495,[107,107,0]],[1709766496,[109,109,0]],[1709766497,[114,114,0]],[1709766498,[115,115,0]],[1709766499,[119,119,0]],[1709766500,[121,121,0]],[1709766501,[123,123,0]],[1709766502,[126,126,0]],[1709766503,[129,129,0]],[1709766504,[133,133,0]],[1709766505,[134,134,0]],[1709766506,[139,139,0]],[1709766507,[140,140,0]],[1709766508,[144,144,0]],[1709766509,[147,147,0]],[1709766510,[149,149,0]],[1709766511,[151,151,0]],[1709766512,[155,155,0]],[1709766513,[158,158,0]],[1709766514,[160,160,0]],[1709766515,[163,163,0]],[1709766516,[166,166,0]],[1709766517,[170,170,0]],[1709766518,[170,170,0]],[1709766519,[174,174,0]],[1709766520,[177,177,0]],[1709766521,[180,180,0]],[1709766522,[183,183,0]],[1709766523,[186,186,0]],[1709766524,[189,189,0]],[1709766525,[191,191,0]],[1709766526,[194,194,0]],[1709766527,[197,197,0]],[1709766528,[199,199,0]],[1709766529,[203,203,0]],[1709766530,[205,205,0]],[1709766531,[208,208,0]],[1709766532,[211,211,0]],[1709766533,[213,213,0]],[1709766534,[217,217,0]],[1709766535,[219,219,0]],[1709766536,[223,223,0]],[1709766537,[225,225,0]],[1709766538,[227,227,0]],[1709766539,[230,230,0]],[1709766540,[234,234,0]],[1709766541,[236,236,0]],[1709766542,[238,238,0]],[1709766543,[243,243,0]],[1709766544,[244,244,0]],[1709766545,[248,248,0]],[1709766546,[251,251,0]],[1709766547,[251,251,0]],[1709766548,[257,257,0]],[1709766549,[259,259,0]],[1709766550,[262,262,0]],[1709766551,[264,264,0]],[1709766552,[266,266,0]],[1709766553,[270,270,0]],[1709766554,[273,273,0]],[1709766555,[275,275,0]],[1709766556,[279,279,0]],[1709766557,[281,281,0]],[1709766558,[283,283,0]],[1709766559,[286,286,0]],[1709766560,[290,290,0]],[1709766561,[292,292,0]],[1709766562,[296,296,0]],[1709766563,[298,298,0]],[1709766564,[301,301,0]],[1709766565,[303,303,0]],[1709766566,[306,306,0]],[1709766567,[309,309,0]],[1709766568,[313,313,0]],[1709766569,[314,314,0]],[1709766570,[318,318,0]],[1709766571,[321,321,0]],[1709766572,[322,322,0]],[1709766573,[327,327,0]],[1709766574,[329,329,0]],[1709766575,[332,332,0]],[1709766576,[334,334,0]],[1709766577,[338,338,0]],[1709766578,[340,340,0]],[1709766579,[340,340,0]],[1709766580,[340,340,0]],[1709766581,[340,340,0]],[1709766582,[340,340,0]],[1709766583,[340,340,0]],[1709766584,[340,340,0]],[1709766585,[340,340,0]],[1709766586,[340,340,0]],[1709766587,[340,340,0]],[1709766588,[340,340,0]],[1709766589,[340,340,0]],[1709766590,[340,340,0]],[1709766591,[340,340,0]],[1709766592,[340,340,0]],[1709766593,[340,340,0]],[1709766594,[340,340,0]],[1709766595,[340,340,0]],[1709766596,[340,340,0]],[1709766597,[340,340,0]],[1709766598,[340,340,0]],[1709766599,[340,340,0]],[1709766600,[340,340,0]],[1709766601,[340,340,0]],[1709766602,[340,340,0]],[1709766603,[340,340,0]],[1709766604,[340,340,0]],[1709766605,[340,340,0]],[1709766606,[340,340,0]],[1709766607,[340,340,0]],[1709766608,[340,340,0]],[1709766609,[340,340,0]],[1709766610,[340,340,0]],[1709766611,[340,340,0]],[1709766612,[340,340,0]],[1709766613,[340,340,0]],[1709766614,[340,340,0]],[1709766615,[340,340,0]],[1709766616,[340,340,0]],[1709766617,[340,340,0]],[1709766618,[340,340,0]],[1709766619,[340,340,0]],[1709766620,[340,340,0]],[1709766621,[340,340,0]],[1709766622,[340,340,0]],[1709766623,[340,340,0]],[1709766624,[340,340,0]],[1709766625,[340,340,0]],[1709766626,[340,340,0]],[1709766627,[340,340,0]],[1709766628,[340,340,0]],[1709766629,[340,340,0]],[1709766630,[340,340,0]],[1709766631,[340,340,0]],[1709766632,[340,340,0]],[1709766633,[340,340,0]],[1709766634,[340,340,0]],[1709766635,[340,340,0]],[1709766636,[340,340,0]],[1709766637,[340,340,0]],[1709766638,[340,340,0]],[1709766639,[340,340,0]],[1709766640,[340,340,0]],[1709766641,[340,340,0]],[1709766642,[340,340,0]],[1709766643,[340,340,0]],[1709766644,[340,340,0]],[1709766645,[340,340,0]],[1709766646,[340,340,0]],[1709766647,[340,340,0]],[1709766648,[340,340,0]],[1709766649,[340,340,0]],[1709766650,[340,340,0]],[1709766651,[340,340,0]],[1709766652,[340,340,0]],[1709766653,[340,340,0]],[1709766654,[340,340,0]],[1709766655,[340,340,0]],[1709766656,[340,340,0]],[1709766657,[340,340,0]],[1709766658,[340,340,0]],[1709766659,[340,340,0]],[1709766660,[340,340,0]],[1709766661,[340,340,0]],[1709766662,[340,340,0]],[1709766663,[340,340,0]],[1709766664,[340,340,0]],[1709766665,[340,340,0]],[1709766666,[340,340,0]],[1709766667,[340,340,0]],[1709766668,[340,340,0]],[1709766669,[340,340,0]],[1709766670,[340,340,0]],[1709766671,[340,340,0]],[1709766672,[340,340,0]],[1709766673,[340,340,0]],[1709766674,[340,340,0]],[1709766675,[340,340,0]],[1709766676,[340,340,0]],[1709766677,[340,340,0]],[1709766678,[340,340,0]],[1709766679,[340,340,0]],[1709766680,[340,340,0]],[1709766681,[340,340,0]],[1709766682,[340,340,0]],[1709766683,[340,340,0]],[1709766684,[340,340,0]],[1709766685,[340,340,0]],[1709766686,[340,340,0]],[1709766687,[340,340,0]],[1709766688,[340,340,0]],[1709766689,[340,340,0]],[1709766690,[340,340,0]],[1709766691,[340,340,0]],[1709766692,[340,340,0]],[1709766693,[340,340,0]],[1709766694,[340,340,0]],[1709766695,[340,340,0]],[1709766696,[340,340,0]],[1709766697,[501,501,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:[