-
Notifications
You must be signed in to change notification settings - Fork 923
/
Copy pathindex.html
1173 lines (1104 loc) · 93.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-02-24 23:03: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 - rafaelpadovezi-mongo">
<span class="simulation-information-label">Description: </span>
<span>Rinha de Backend - 2024/Q1: Crébito - rafaelpadovezi-mongo</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: [
[1708815813000,0],[1708815814000,0],[1708815815000,0],[1708815816000,0],[1708815817000,0],[1708815818000,0],[1708815819000,2],[1708815820000,2],[1708815821000,5],[1708815822000,5],[1708815823000,5],[1708815824000,6],[1708815825000,8],[1708815826000,9],[1708815827000,8],[1708815828000,11],[1708815829000,11],[1708815830000,12],[1708815831000,12],[1708815832000,14],[1708815833000,14],[1708815834000,15],[1708815835000,16],[1708815836000,17],[1708815837000,17],[1708815838000,19],[1708815839000,20],[1708815840000,20],[1708815841000,22],[1708815842000,22],[1708815843000,23],[1708815844000,25],[1708815845000,25],[1708815846000,26],[1708815847000,26],[1708815848000,28],[1708815849000,29],[1708815850000,30],[1708815851000,30],[1708815852000,32],[1708815853000,32],[1708815854000,33],[1708815855000,34],[1708815856000,35],[1708815857000,36],[1708815858000,37],[1708815859000,38],[1708815860000,39],[1708815861000,39],[1708815862000,41],[1708815863000,41],[1708815864000,43],[1708815865000,43],[1708815866000,44],[1708815867000,45],[1708815868000,46],[1708815869000,47],[1708815870000,48],[1708815871000,48],[1708815872000,50],[1708815873000,50],[1708815874000,52],[1708815875000,52],[1708815876000,53],[1708815877000,54],[1708815878000,56],[1708815879000,55],[1708815880000,57],[1708815881000,58],[1708815882000,59],[1708815883000,59],[1708815884000,61],[1708815885000,61],[1708815886000,63],[1708815887000,63],[1708815888000,64],[1708815889000,65],[1708815890000,66],[1708815891000,67],[1708815892000,68],[1708815893000,68],[1708815894000,70],[1708815895000,70],[1708815896000,72],[1708815897000,72],[1708815898000,73],[1708815899000,74],[1708815900000,75],[1708815901000,76],[1708815902000,77],[1708815903000,78],[1708815904000,79],[1708815905000,79],[1708815906000,81],[1708815907000,81],[1708815908000,82],[1708815909000,83],[1708815910000,85],[1708815911000,85],[1708815912000,86],[1708815913000,86],[1708815914000,88],[1708815915000,89],[1708815916000,90],[1708815917000,91],[1708815918000,92],[1708815919000,93],[1708815920000,95],[1708815921000,95],[1708815922000,96],[1708815923000,97],[1708815924000,98],[1708815925000,98],[1708815926000,100],[1708815927000,100],[1708815928000,101],[1708815929000,102],[1708815930000,103],[1708815931000,103],[1708815932000,105],[1708815933000,106],[1708815934000,107],[1708815935000,108],[1708815936000,108],[1708815937000,109],[1708815938000,111],[1708815939000,110],[1708815940000,111],[1708815941000,110],[1708815942000,111],[1708815943000,110],[1708815944000,111],[1708815945000,111],[1708815946000,110],[1708815947000,110],[1708815948000,111],[1708815949000,111],[1708815950000,110],[1708815951000,111],[1708815952000,111],[1708815953000,111],[1708815954000,111],[1708815955000,111],[1708815956000,111],[1708815957000,111],[1708815958000,110],[1708815959000,111],[1708815960000,110],[1708815961000,111],[1708815962000,110],[1708815963000,112],[1708815964000,110],[1708815965000,111],[1708815966000,111],[1708815967000,111],[1708815968000,111],[1708815969000,111],[1708815970000,111],[1708815971000,110],[1708815972000,110],[1708815973000,110],[1708815974000,111],[1708815975000,110],[1708815976000,110],[1708815977000,111],[1708815978000,111],[1708815979000,111],[1708815980000,111],[1708815981000,111],[1708815982000,111],[1708815983000,110],[1708815984000,110],[1708815985000,110],[1708815986000,111],[1708815987000,111],[1708815988000,111],[1708815989000,111],[1708815990000,110],[1708815991000,110],[1708815992000,111],[1708815993000,111],[1708815994000,111],[1708815995000,111],[1708815996000,111],[1708815997000,111],[1708815998000,111],[1708815999000,110],[1708816000000,111],[1708816001000,110],[1708816002000,111],[1708816003000,111],[1708816004000,111],[1708816005000,110],[1708816006000,111],[1708816007000,110],[1708816008000,111],[1708816009000,110],[1708816010000,111],[1708816011000,110],[1708816012000,111],[1708816013000,111],[1708816014000,111],[1708816015000,110],[1708816016000,111],[1708816017000,110],[1708816018000,111],[1708816019000,110],[1708816020000,111],[1708816021000,111],[1708816022000,110],[1708816023000,110],[1708816024000,111],[1708816025000,110],[1708816026000,111],[1708816027000,111],[1708816028000,110],[1708816029000,110],[1708816030000,110],[1708816031000,111],[1708816032000,111],[1708816033000,111],[1708816034000,110],[1708816035000,111],[1708816036000,110],[1708816037000,111],[1708816038000,111],[1708816039000,111],[1708816040000,110],[1708816041000,111],[1708816042000,110],[1708816043000,111],[1708816044000,110],[1708816045000,111],[1708816046000,110],[1708816047000,110],[1708816048000,110],[1708816049000,111],[1708816050000,110],[1708816051000,110],[1708816052000,110],[1708816053000,110],[1708816054000,111],[1708816055000,111],[1708816056000,111],[1708816057000,111],[1708816058000,109]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#68b65c',
name: 'débitos',
data: [
[1708815813000,0],[1708815814000,0],[1708815815000,0],[1708815816000,0],[1708815817000,0],[1708815818000,0],[1708815819000,2],[1708815820000,4],[1708815821000,7],[1708815822000,7],[1708815823000,9],[1708815824000,11],[1708815825000,14],[1708815826000,16],[1708815827000,16],[1708815828000,19],[1708815829000,20],[1708815830000,22],[1708815831000,24],[1708815832000,25],[1708815833000,28],[1708815834000,29],[1708815835000,31],[1708815836000,33],[1708815837000,35],[1708815838000,37],[1708815839000,38],[1708815840000,40],[1708815841000,42],[1708815842000,44],[1708815843000,46],[1708815844000,47],[1708815845000,50],[1708815846000,51],[1708815847000,53],[1708815848000,55],[1708815849000,56],[1708815850000,59],[1708815851000,60],[1708815852000,62],[1708815853000,64],[1708815854000,66],[1708815855000,68],[1708815856000,69],[1708815857000,71],[1708815858000,74],[1708815859000,74],[1708815860000,77],[1708815861000,79],[1708815862000,80],[1708815863000,82],[1708815864000,84],[1708815865000,86],[1708815866000,88],[1708815867000,89],[1708815868000,92],[1708815869000,94],[1708815870000,96],[1708815871000,98],[1708815872000,99],[1708815873000,102],[1708815874000,102],[1708815875000,104],[1708815876000,107],[1708815877000,109],[1708815878000,111],[1708815879000,112],[1708815880000,113],[1708815881000,115],[1708815882000,117],[1708815883000,119],[1708815884000,120],[1708815885000,123],[1708815886000,124],[1708815887000,126],[1708815888000,128],[1708815889000,129],[1708815890000,132],[1708815891000,133],[1708815892000,135],[1708815893000,137],[1708815894000,139],[1708815895000,141],[1708815896000,142],[1708815897000,144],[1708815898000,147],[1708815899000,147],[1708815900000,150],[1708815901000,152],[1708815902000,153],[1708815903000,155],[1708815904000,157],[1708815905000,159],[1708815906000,161],[1708815907000,162],[1708815908000,165],[1708815909000,166],[1708815910000,168],[1708815911000,170],[1708815912000,171],[1708815913000,174],[1708815914000,175],[1708815915000,177],[1708815916000,179],[1708815917000,182],[1708815918000,184],[1708815919000,185],[1708815920000,187],[1708815921000,189],[1708815922000,190],[1708815923000,193],[1708815924000,193],[1708815925000,197],[1708815926000,198],[1708815927000,200],[1708815928000,201],[1708815929000,203],[1708815930000,205],[1708815931000,207],[1708815932000,209],[1708815933000,211],[1708815934000,213],[1708815935000,215],[1708815936000,216],[1708815937000,217],[1708815938000,221],[1708815939000,221],[1708815940000,221],[1708815941000,220],[1708815942000,221],[1708815943000,220],[1708815944000,221],[1708815945000,221],[1708815946000,220],[1708815947000,221],[1708815948000,221],[1708815949000,221],[1708815950000,220],[1708815951000,221],[1708815952000,221],[1708815953000,221],[1708815954000,221],[1708815955000,221],[1708815956000,221],[1708815957000,221],[1708815958000,221],[1708815959000,221],[1708815960000,220],[1708815961000,221],[1708815962000,220],[1708815963000,223],[1708815964000,220],[1708815965000,221],[1708815966000,221],[1708815967000,221],[1708815968000,221],[1708815969000,221],[1708815970000,221],[1708815971000,220],[1708815972000,221],[1708815973000,220],[1708815974000,220],[1708815975000,221],[1708815976000,220],[1708815977000,221],[1708815978000,221],[1708815979000,221],[1708815980000,221],[1708815981000,220],[1708815982000,221],[1708815983000,220],[1708815984000,220],[1708815985000,220],[1708815986000,220],[1708815987000,221],[1708815988000,221],[1708815989000,221],[1708815990000,220],[1708815991000,220],[1708815992000,221],[1708815993000,221],[1708815994000,221],[1708815995000,221],[1708815996000,221],[1708815997000,220],[1708815998000,221],[1708815999000,220],[1708816000000,221],[1708816001000,220],[1708816002000,221],[1708816003000,221],[1708816004000,221],[1708816005000,220],[1708816006000,221],[1708816007000,220],[1708816008000,221],[1708816009000,221],[1708816010000,221],[1708816011000,220],[1708816012000,221],[1708816013000,221],[1708816014000,221],[1708816015000,220],[1708816016000,221],[1708816017000,220],[1708816018000,221],[1708816019000,220],[1708816020000,221],[1708816021000,221],[1708816022000,220],[1708816023000,221],[1708816024000,220],[1708816025000,220],[1708816026000,221],[1708816027000,221],[1708816028000,221],[1708816029000,220],[1708816030000,220],[1708816031000,221],[1708816032000,221],[1708816033000,221],[1708816034000,220],[1708816035000,221],[1708816036000,220],[1708816037000,221],[1708816038000,221],[1708816039000,221],[1708816040000,220],[1708816041000,221],[1708816042000,220],[1708816043000,221],[1708816044000,220],[1708816045000,221],[1708816046000,220],[1708816047000,220],[1708816048000,220],[1708816049000,221],[1708816050000,221],[1708816051000,220],[1708816052000,220],[1708816053000,220],[1708816054000,221],[1708816055000,220],[1708816056000,221],[1708816057000,221],[1708816058000,218]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#f15b4f',
name: 'extratos',
data: [
[1708815813000,0],[1708815814000,0],[1708815815000,0],[1708815816000,0],[1708815817000,0],[1708815818000,0],[1708815819000,2],[1708815820000,1],[1708815821000,2],[1708815822000,1],[1708815823000,1],[1708815824000,2],[1708815825000,1],[1708815826000,3],[1708815827000,2],[1708815828000,1],[1708815829000,2],[1708815830000,2],[1708815831000,2],[1708815832000,2],[1708815833000,2],[1708815834000,2],[1708815835000,2],[1708815836000,3],[1708815837000,2],[1708815838000,3],[1708815839000,2],[1708815840000,3],[1708815841000,2],[1708815842000,3],[1708815843000,3],[1708815844000,3],[1708815845000,3],[1708815846000,3],[1708815847000,3],[1708815848000,3],[1708815849000,4],[1708815850000,3],[1708815851000,3],[1708815852000,4],[1708815853000,3],[1708815854000,4],[1708815855000,4],[1708815856000,4],[1708815857000,4],[1708815858000,4],[1708815859000,4],[1708815860000,4],[1708815861000,4],[1708815862000,4],[1708815863000,4],[1708815864000,5],[1708815865000,4],[1708815866000,5],[1708815867000,5],[1708815868000,4],[1708815869000,5],[1708815870000,5],[1708815871000,5],[1708815872000,5],[1708815873000,5],[1708815874000,5],[1708815875000,5],[1708815876000,6],[1708815877000,5],[1708815878000,6],[1708815879000,5],[1708815880000,6],[1708815881000,5],[1708815882000,6],[1708815883000,6],[1708815884000,6],[1708815885000,6],[1708815886000,6],[1708815887000,6],[1708815888000,6],[1708815889000,7],[1708815890000,6],[1708815891000,6],[1708815892000,7],[1708815893000,6],[1708815894000,7],[1708815895000,7],[1708815896000,7],[1708815897000,7],[1708815898000,7],[1708815899000,7],[1708815900000,7],[1708815901000,7],[1708815902000,7],[1708815903000,7],[1708815904000,8],[1708815905000,7],[1708815906000,8],[1708815907000,8],[1708815908000,7],[1708815909000,8],[1708815910000,8],[1708815911000,8],[1708815912000,8],[1708815913000,8],[1708815914000,8],[1708815915000,8],[1708815916000,9],[1708815917000,8],[1708815918000,9],[1708815919000,8],[1708815920000,9],[1708815921000,8],[1708815922000,9],[1708815923000,9],[1708815924000,9],[1708815925000,9],[1708815926000,9],[1708815927000,9],[1708815928000,9],[1708815929000,10],[1708815930000,9],[1708815931000,9],[1708815932000,10],[1708815933000,9],[1708815934000,10],[1708815935000,10],[1708815936000,10],[1708815937000,10],[1708815938000,10],[1708815939000,10],[1708815940000,10],[1708815941000,10],[1708815942000,10],[1708815943000,10],[1708815944000,10],[1708815945000,10],[1708815946000,10],[1708815947000,10],[1708815948000,10],[1708815949000,10],[1708815950000,10],[1708815951000,10],[1708815952000,10],[1708815953000,10],[1708815954000,10],[1708815955000,10],[1708815956000,10],[1708815957000,10],[1708815958000,10],[1708815959000,10],[1708815960000,10],[1708815961000,10],[1708815962000,10],[1708815963000,11],[1708815964000,10],[1708815965000,10],[1708815966000,10],[1708815967000,10],[1708815968000,10],[1708815969000,10],[1708815970000,10],[1708815971000,10],[1708815972000,10],[1708815973000,10],[1708815974000,10],[1708815975000,10],[1708815976000,10],[1708815977000,10],[1708815978000,10],[1708815979000,10],[1708815980000,10],[1708815981000,10],[1708815982000,10],[1708815983000,10],[1708815984000,10],[1708815985000,10],[1708815986000,10],[1708815987000,10],[1708815988000,10],[1708815989000,10],[1708815990000,10],[1708815991000,10],[1708815992000,10],[1708815993000,10],[1708815994000,10],[1708815995000,10],[1708815996000,10],[1708815997000,10],[1708815998000,10],[1708815999000,10],[1708816000000,10],[1708816001000,10],[1708816002000,10],[1708816003000,10],[1708816004000,10],[1708816005000,10],[1708816006000,10],[1708816007000,10],[1708816008000,10],[1708816009000,10],[1708816010000,10],[1708816011000,10],[1708816012000,10],[1708816013000,10],[1708816014000,10],[1708816015000,10],[1708816016000,10],[1708816017000,10],[1708816018000,10],[1708816019000,10],[1708816020000,10],[1708816021000,10],[1708816022000,10],[1708816023000,10],[1708816024000,10],[1708816025000,10],[1708816026000,10],[1708816027000,10],[1708816028000,10],[1708816029000,10],[1708816030000,10],[1708816031000,10],[1708816032000,10],[1708816033000,10],[1708816034000,10],[1708816035000,10],[1708816036000,10],[1708816037000,10],[1708816038000,10],[1708816039000,10],[1708816040000,10],[1708816041000,10],[1708816042000,10],[1708816043000,10],[1708816044000,10],[1708816045000,10],[1708816046000,10],[1708816047000,10],[1708816048000,10],[1708816049000,10],[1708816050000,10],[1708816051000,10],[1708816052000,10],[1708816053000,10],[1708816054000,10],[1708816055000,10],[1708816056000,10],[1708816057000,10],[1708816058000,9]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FFDD00',
name: 'validação HTTP 404',
data: [
[1708815813000,0],[1708815814000,0],[1708815815000,0],[1708815816000,0],[1708815817000,1],[1708815818000,1],[1708815819000,0],[1708815820000,0],[1708815821000,0],[1708815822000,0],[1708815823000,0],[1708815824000,0],[1708815825000,0],[1708815826000,0],[1708815827000,0],[1708815828000,0],[1708815829000,0],[1708815830000,0],[1708815831000,0],[1708815832000,0],[1708815833000,0],[1708815834000,0],[1708815835000,0],[1708815836000,0],[1708815837000,0],[1708815838000,0],[1708815839000,0],[1708815840000,0],[1708815841000,0],[1708815842000,0],[1708815843000,0],[1708815844000,0],[1708815845000,0],[1708815846000,0],[1708815847000,0],[1708815848000,0],[1708815849000,0],[1708815850000,0],[1708815851000,0],[1708815852000,0],[1708815853000,0],[1708815854000,0],[1708815855000,0],[1708815856000,0],[1708815857000,0],[1708815858000,0],[1708815859000,0],[1708815860000,0],[1708815861000,0],[1708815862000,0],[1708815863000,0],[1708815864000,0],[1708815865000,0],[1708815866000,0],[1708815867000,0],[1708815868000,0],[1708815869000,0],[1708815870000,0],[1708815871000,0],[1708815872000,0],[1708815873000,0],[1708815874000,0],[1708815875000,0],[1708815876000,0],[1708815877000,0],[1708815878000,0],[1708815879000,0],[1708815880000,0],[1708815881000,0],[1708815882000,0],[1708815883000,0],[1708815884000,0],[1708815885000,0],[1708815886000,0],[1708815887000,0],[1708815888000,0],[1708815889000,0],[1708815890000,0],[1708815891000,0],[1708815892000,0],[1708815893000,0],[1708815894000,0],[1708815895000,0],[1708815896000,0],[1708815897000,0],[1708815898000,0],[1708815899000,0],[1708815900000,0],[1708815901000,0],[1708815902000,0],[1708815903000,0],[1708815904000,0],[1708815905000,0],[1708815906000,0],[1708815907000,0],[1708815908000,0],[1708815909000,0],[1708815910000,0],[1708815911000,0],[1708815912000,0],[1708815913000,0],[1708815914000,0],[1708815915000,0],[1708815916000,0],[1708815917000,0],[1708815918000,0],[1708815919000,0],[1708815920000,0],[1708815921000,0],[1708815922000,0],[1708815923000,0],[1708815924000,0],[1708815925000,0],[1708815926000,0],[1708815927000,0],[1708815928000,0],[1708815929000,0],[1708815930000,0],[1708815931000,0],[1708815932000,0],[1708815933000,0],[1708815934000,0],[1708815935000,0],[1708815936000,0],[1708815937000,0],[1708815938000,0],[1708815939000,0],[1708815940000,0],[1708815941000,0],[1708815942000,0],[1708815943000,0],[1708815944000,0],[1708815945000,0],[1708815946000,0],[1708815947000,0],[1708815948000,0],[1708815949000,0],[1708815950000,0],[1708815951000,0],[1708815952000,0],[1708815953000,0],[1708815954000,0],[1708815955000,0],[1708815956000,0],[1708815957000,0],[1708815958000,0],[1708815959000,0],[1708815960000,0],[1708815961000,0],[1708815962000,0],[1708815963000,0],[1708815964000,0],[1708815965000,0],[1708815966000,0],[1708815967000,0],[1708815968000,0],[1708815969000,0],[1708815970000,0],[1708815971000,0],[1708815972000,0],[1708815973000,0],[1708815974000,0],[1708815975000,0],[1708815976000,0],[1708815977000,0],[1708815978000,0],[1708815979000,0],[1708815980000,0],[1708815981000,0],[1708815982000,0],[1708815983000,0],[1708815984000,0],[1708815985000,0],[1708815986000,0],[1708815987000,0],[1708815988000,0],[1708815989000,0],[1708815990000,0],[1708815991000,0],[1708815992000,0],[1708815993000,0],[1708815994000,0],[1708815995000,0],[1708815996000,0],[1708815997000,0],[1708815998000,0],[1708815999000,0],[1708816000000,0],[1708816001000,0],[1708816002000,0],[1708816003000,0],[1708816004000,0],[1708816005000,0],[1708816006000,0],[1708816007000,0],[1708816008000,0],[1708816009000,0],[1708816010000,0],[1708816011000,0],[1708816012000,0],[1708816013000,0],[1708816014000,0],[1708816015000,0],[1708816016000,0],[1708816017000,0],[1708816018000,0],[1708816019000,0],[1708816020000,0],[1708816021000,0],[1708816022000,0],[1708816023000,0],[1708816024000,0],[1708816025000,0],[1708816026000,0],[1708816027000,0],[1708816028000,0],[1708816029000,0],[1708816030000,0],[1708816031000,0],[1708816032000,0],[1708816033000,0],[1708816034000,0],[1708816035000,0],[1708816036000,0],[1708816037000,0],[1708816038000,0],[1708816039000,0],[1708816040000,0],[1708816041000,0],[1708816042000,0],[1708816043000,0],[1708816044000,0],[1708816045000,0],[1708816046000,0],[1708816047000,0],[1708816048000,0],[1708816049000,0],[1708816050000,0],[1708816051000,0],[1708816052000,0],[1708816053000,0],[1708816054000,0],[1708816055000,0],[1708816056000,0],[1708816057000,0],[1708816058000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00D5FF',
name: 'validações',
data: [
[1708815813000,0],[1708815814000,0],[1708815815000,0],[1708815816000,0],[1708815817000,5],[1708815818000,5],[1708815819000,0],[1708815820000,0],[1708815821000,0],[1708815822000,0],[1708815823000,0],[1708815824000,0],[1708815825000,0],[1708815826000,0],[1708815827000,0],[1708815828000,0],[1708815829000,0],[1708815830000,0],[1708815831000,0],[1708815832000,0],[1708815833000,0],[1708815834000,0],[1708815835000,0],[1708815836000,0],[1708815837000,0],[1708815838000,0],[1708815839000,0],[1708815840000,0],[1708815841000,0],[1708815842000,0],[1708815843000,0],[1708815844000,0],[1708815845000,0],[1708815846000,0],[1708815847000,0],[1708815848000,0],[1708815849000,0],[1708815850000,0],[1708815851000,0],[1708815852000,0],[1708815853000,0],[1708815854000,0],[1708815855000,0],[1708815856000,0],[1708815857000,0],[1708815858000,0],[1708815859000,0],[1708815860000,0],[1708815861000,0],[1708815862000,0],[1708815863000,0],[1708815864000,0],[1708815865000,0],[1708815866000,0],[1708815867000,0],[1708815868000,0],[1708815869000,0],[1708815870000,0],[1708815871000,0],[1708815872000,0],[1708815873000,0],[1708815874000,0],[1708815875000,0],[1708815876000,0],[1708815877000,0],[1708815878000,0],[1708815879000,0],[1708815880000,0],[1708815881000,0],[1708815882000,0],[1708815883000,0],[1708815884000,0],[1708815885000,0],[1708815886000,0],[1708815887000,0],[1708815888000,0],[1708815889000,0],[1708815890000,0],[1708815891000,0],[1708815892000,0],[1708815893000,0],[1708815894000,0],[1708815895000,0],[1708815896000,0],[1708815897000,0],[1708815898000,0],[1708815899000,0],[1708815900000,0],[1708815901000,0],[1708815902000,0],[1708815903000,0],[1708815904000,0],[1708815905000,0],[1708815906000,0],[1708815907000,0],[1708815908000,0],[1708815909000,0],[1708815910000,0],[1708815911000,0],[1708815912000,0],[1708815913000,0],[1708815914000,0],[1708815915000,0],[1708815916000,0],[1708815917000,0],[1708815918000,0],[1708815919000,0],[1708815920000,0],[1708815921000,0],[1708815922000,0],[1708815923000,0],[1708815924000,0],[1708815925000,0],[1708815926000,0],[1708815927000,0],[1708815928000,0],[1708815929000,0],[1708815930000,0],[1708815931000,0],[1708815932000,0],[1708815933000,0],[1708815934000,0],[1708815935000,0],[1708815936000,0],[1708815937000,0],[1708815938000,0],[1708815939000,0],[1708815940000,0],[1708815941000,0],[1708815942000,0],[1708815943000,0],[1708815944000,0],[1708815945000,0],[1708815946000,0],[1708815947000,0],[1708815948000,0],[1708815949000,0],[1708815950000,0],[1708815951000,0],[1708815952000,0],[1708815953000,0],[1708815954000,0],[1708815955000,0],[1708815956000,0],[1708815957000,0],[1708815958000,0],[1708815959000,0],[1708815960000,0],[1708815961000,0],[1708815962000,0],[1708815963000,0],[1708815964000,0],[1708815965000,0],[1708815966000,0],[1708815967000,0],[1708815968000,0],[1708815969000,0],[1708815970000,0],[1708815971000,0],[1708815972000,0],[1708815973000,0],[1708815974000,0],[1708815975000,0],[1708815976000,0],[1708815977000,0],[1708815978000,0],[1708815979000,0],[1708815980000,0],[1708815981000,0],[1708815982000,0],[1708815983000,0],[1708815984000,0],[1708815985000,0],[1708815986000,0],[1708815987000,0],[1708815988000,0],[1708815989000,0],[1708815990000,0],[1708815991000,0],[1708815992000,0],[1708815993000,0],[1708815994000,0],[1708815995000,0],[1708815996000,0],[1708815997000,0],[1708815998000,0],[1708815999000,0],[1708816000000,0],[1708816001000,0],[1708816002000,0],[1708816003000,0],[1708816004000,0],[1708816005000,0],[1708816006000,0],[1708816007000,0],[1708816008000,0],[1708816009000,0],[1708816010000,0],[1708816011000,0],[1708816012000,0],[1708816013000,0],[1708816014000,0],[1708816015000,0],[1708816016000,0],[1708816017000,0],[1708816018000,0],[1708816019000,0],[1708816020000,0],[1708816021000,0],[1708816022000,0],[1708816023000,0],[1708816024000,0],[1708816025000,0],[1708816026000,0],[1708816027000,0],[1708816028000,0],[1708816029000,0],[1708816030000,0],[1708816031000,0],[1708816032000,0],[1708816033000,0],[1708816034000,0],[1708816035000,0],[1708816036000,0],[1708816037000,0],[1708816038000,0],[1708816039000,0],[1708816040000,0],[1708816041000,0],[1708816042000,0],[1708816043000,0],[1708816044000,0],[1708816045000,0],[1708816046000,0],[1708816047000,0],[1708816048000,0],[1708816049000,0],[1708816050000,0],[1708816051000,0],[1708816052000,0],[1708816053000,0],[1708816054000,0],[1708816055000,0],[1708816056000,0],[1708816057000,0],[1708816058000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00FF00',
name: 'validação concorrência saldo - 0',
data: [
[1708815813000,0],[1708815814000,0],[1708815815000,0],[1708815816000,1],[1708815817000,0],[1708815818000,0],[1708815819000,0],[1708815820000,0],[1708815821000,0],[1708815822000,0],[1708815823000,0],[1708815824000,0],[1708815825000,0],[1708815826000,0],[1708815827000,0],[1708815828000,0],[1708815829000,0],[1708815830000,0],[1708815831000,0],[1708815832000,0],[1708815833000,0],[1708815834000,0],[1708815835000,0],[1708815836000,0],[1708815837000,0],[1708815838000,0],[1708815839000,0],[1708815840000,0],[1708815841000,0],[1708815842000,0],[1708815843000,0],[1708815844000,0],[1708815845000,0],[1708815846000,0],[1708815847000,0],[1708815848000,0],[1708815849000,0],[1708815850000,0],[1708815851000,0],[1708815852000,0],[1708815853000,0],[1708815854000,0],[1708815855000,0],[1708815856000,0],[1708815857000,0],[1708815858000,0],[1708815859000,0],[1708815860000,0],[1708815861000,0],[1708815862000,0],[1708815863000,0],[1708815864000,0],[1708815865000,0],[1708815866000,0],[1708815867000,0],[1708815868000,0],[1708815869000,0],[1708815870000,0],[1708815871000,0],[1708815872000,0],[1708815873000,0],[1708815874000,0],[1708815875000,0],[1708815876000,0],[1708815877000,0],[1708815878000,0],[1708815879000,0],[1708815880000,0],[1708815881000,0],[1708815882000,0],[1708815883000,0],[1708815884000,0],[1708815885000,0],[1708815886000,0],[1708815887000,0],[1708815888000,0],[1708815889000,0],[1708815890000,0],[1708815891000,0],[1708815892000,0],[1708815893000,0],[1708815894000,0],[1708815895000,0],[1708815896000,0],[1708815897000,0],[1708815898000,0],[1708815899000,0],[1708815900000,0],[1708815901000,0],[1708815902000,0],[1708815903000,0],[1708815904000,0],[1708815905000,0],[1708815906000,0],[1708815907000,0],[1708815908000,0],[1708815909000,0],[1708815910000,0],[1708815911000,0],[1708815912000,0],[1708815913000,0],[1708815914000,0],[1708815915000,0],[1708815916000,0],[1708815917000,0],[1708815918000,0],[1708815919000,0],[1708815920000,0],[1708815921000,0],[1708815922000,0],[1708815923000,0],[1708815924000,0],[1708815925000,0],[1708815926000,0],[1708815927000,0],[1708815928000,0],[1708815929000,0],[1708815930000,0],[1708815931000,0],[1708815932000,0],[1708815933000,0],[1708815934000,0],[1708815935000,0],[1708815936000,0],[1708815937000,0],[1708815938000,0],[1708815939000,0],[1708815940000,0],[1708815941000,0],[1708815942000,0],[1708815943000,0],[1708815944000,0],[1708815945000,0],[1708815946000,0],[1708815947000,0],[1708815948000,0],[1708815949000,0],[1708815950000,0],[1708815951000,0],[1708815952000,0],[1708815953000,0],[1708815954000,0],[1708815955000,0],[1708815956000,0],[1708815957000,0],[1708815958000,0],[1708815959000,0],[1708815960000,0],[1708815961000,0],[1708815962000,0],[1708815963000,0],[1708815964000,0],[1708815965000,0],[1708815966000,0],[1708815967000,0],[1708815968000,0],[1708815969000,0],[1708815970000,0],[1708815971000,0],[1708815972000,0],[1708815973000,0],[1708815974000,0],[1708815975000,0],[1708815976000,0],[1708815977000,0],[1708815978000,0],[1708815979000,0],[1708815980000,0],[1708815981000,0],[1708815982000,0],[1708815983000,0],[1708815984000,0],[1708815985000,0],[1708815986000,0],[1708815987000,0],[1708815988000,0],[1708815989000,0],[1708815990000,0],[1708815991000,0],[1708815992000,0],[1708815993000,0],[1708815994000,0],[1708815995000,0],[1708815996000,0],[1708815997000,0],[1708815998000,0],[1708815999000,0],[1708816000000,0],[1708816001000,0],[1708816002000,0],[1708816003000,0],[1708816004000,0],[1708816005000,0],[1708816006000,0],[1708816007000,0],[1708816008000,0],[1708816009000,0],[1708816010000,0],[1708816011000,0],[1708816012000,0],[1708816013000,0],[1708816014000,0],[1708816015000,0],[1708816016000,0],[1708816017000,0],[1708816018000,0],[1708816019000,0],[1708816020000,0],[1708816021000,0],[1708816022000,0],[1708816023000,0],[1708816024000,0],[1708816025000,0],[1708816026000,0],[1708816027000,0],[1708816028000,0],[1708816029000,0],[1708816030000,0],[1708816031000,0],[1708816032000,0],[1708816033000,0],[1708816034000,0],[1708816035000,0],[1708816036000,0],[1708816037000,0],[1708816038000,0],[1708816039000,0],[1708816040000,0],[1708816041000,0],[1708816042000,0],[1708816043000,0],[1708816044000,0],[1708816045000,0],[1708816046000,0],[1708816047000,0],[1708816048000,0],[1708816049000,0],[1708816050000,0],[1708816051000,0],[1708816052000,0],[1708816053000,0],[1708816054000,0],[1708816055000,0],[1708816056000,0],[1708816057000,0],[1708816058000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#9D00FF',
name: 'validação concorrência transações - c',
data: [
[1708815813000,0],[1708815814000,0],[1708815815000,25],[1708815816000,25],[1708815817000,0],[1708815818000,0],[1708815819000,0],[1708815820000,0],[1708815821000,0],[1708815822000,0],[1708815823000,0],[1708815824000,0],[1708815825000,0],[1708815826000,0],[1708815827000,0],[1708815828000,0],[1708815829000,0],[1708815830000,0],[1708815831000,0],[1708815832000,0],[1708815833000,0],[1708815834000,0],[1708815835000,0],[1708815836000,0],[1708815837000,0],[1708815838000,0],[1708815839000,0],[1708815840000,0],[1708815841000,0],[1708815842000,0],[1708815843000,0],[1708815844000,0],[1708815845000,0],[1708815846000,0],[1708815847000,0],[1708815848000,0],[1708815849000,0],[1708815850000,0],[1708815851000,0],[1708815852000,0],[1708815853000,0],[1708815854000,0],[1708815855000,0],[1708815856000,0],[1708815857000,0],[1708815858000,0],[1708815859000,0],[1708815860000,0],[1708815861000,0],[1708815862000,0],[1708815863000,0],[1708815864000,0],[1708815865000,0],[1708815866000,0],[1708815867000,0],[1708815868000,0],[1708815869000,0],[1708815870000,0],[1708815871000,0],[1708815872000,0],[1708815873000,0],[1708815874000,0],[1708815875000,0],[1708815876000,0],[1708815877000,0],[1708815878000,0],[1708815879000,0],[1708815880000,0],[1708815881000,0],[1708815882000,0],[1708815883000,0],[1708815884000,0],[1708815885000,0],[1708815886000,0],[1708815887000,0],[1708815888000,0],[1708815889000,0],[1708815890000,0],[1708815891000,0],[1708815892000,0],[1708815893000,0],[1708815894000,0],[1708815895000,0],[1708815896000,0],[1708815897000,0],[1708815898000,0],[1708815899000,0],[1708815900000,0],[1708815901000,0],[1708815902000,0],[1708815903000,0],[1708815904000,0],[1708815905000,0],[1708815906000,0],[1708815907000,0],[1708815908000,0],[1708815909000,0],[1708815910000,0],[1708815911000,0],[1708815912000,0],[1708815913000,0],[1708815914000,0],[1708815915000,0],[1708815916000,0],[1708815917000,0],[1708815918000,0],[1708815919000,0],[1708815920000,0],[1708815921000,0],[1708815922000,0],[1708815923000,0],[1708815924000,0],[1708815925000,0],[1708815926000,0],[1708815927000,0],[1708815928000,0],[1708815929000,0],[1708815930000,0],[1708815931000,0],[1708815932000,0],[1708815933000,0],[1708815934000,0],[1708815935000,0],[1708815936000,0],[1708815937000,0],[1708815938000,0],[1708815939000,0],[1708815940000,0],[1708815941000,0],[1708815942000,0],[1708815943000,0],[1708815944000,0],[1708815945000,0],[1708815946000,0],[1708815947000,0],[1708815948000,0],[1708815949000,0],[1708815950000,0],[1708815951000,0],[1708815952000,0],[1708815953000,0],[1708815954000,0],[1708815955000,0],[1708815956000,0],[1708815957000,0],[1708815958000,0],[1708815959000,0],[1708815960000,0],[1708815961000,0],[1708815962000,0],[1708815963000,0],[1708815964000,0],[1708815965000,0],[1708815966000,0],[1708815967000,0],[1708815968000,0],[1708815969000,0],[1708815970000,0],[1708815971000,0],[1708815972000,0],[1708815973000,0],[1708815974000,0],[1708815975000,0],[1708815976000,0],[1708815977000,0],[1708815978000,0],[1708815979000,0],[1708815980000,0],[1708815981000,0],[1708815982000,0],[1708815983000,0],[1708815984000,0],[1708815985000,0],[1708815986000,0],[1708815987000,0],[1708815988000,0],[1708815989000,0],[1708815990000,0],[1708815991000,0],[1708815992000,0],[1708815993000,0],[1708815994000,0],[1708815995000,0],[1708815996000,0],[1708815997000,0],[1708815998000,0],[1708815999000,0],[1708816000000,0],[1708816001000,0],[1708816002000,0],[1708816003000,0],[1708816004000,0],[1708816005000,0],[1708816006000,0],[1708816007000,0],[1708816008000,0],[1708816009000,0],[1708816010000,0],[1708816011000,0],[1708816012000,0],[1708816013000,0],[1708816014000,0],[1708816015000,0],[1708816016000,0],[1708816017000,0],[1708816018000,0],[1708816019000,0],[1708816020000,0],[1708816021000,0],[1708816022000,0],[1708816023000,0],[1708816024000,0],[1708816025000,0],[1708816026000,0],[1708816027000,0],[1708816028000,0],[1708816029000,0],[1708816030000,0],[1708816031000,0],[1708816032000,0],[1708816033000,0],[1708816034000,0],[1708816035000,0],[1708816036000,0],[1708816037000,0],[1708816038000,0],[1708816039000,0],[1708816040000,0],[1708816041000,0],[1708816042000,0],[1708816043000,0],[1708816044000,0],[1708816045000,0],[1708816046000,0],[1708816047000,0],[1708816048000,0],[1708816049000,0],[1708816050000,0],[1708816051000,0],[1708816052000,0],[1708816053000,0],[1708816054000,0],[1708816055000,0],[1708816056000,0],[1708816057000,0],[1708816058000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FF00E1',
name: 'validação concorrência saldo - -25',
data: [
[1708815813000,0],[1708815814000,1],[1708815815000,1],[1708815816000,0],[1708815817000,0],[1708815818000,0],[1708815819000,0],[1708815820000,0],[1708815821000,0],[1708815822000,0],[1708815823000,0],[1708815824000,0],[1708815825000,0],[1708815826000,0],[1708815827000,0],[1708815828000,0],[1708815829000,0],[1708815830000,0],[1708815831000,0],[1708815832000,0],[1708815833000,0],[1708815834000,0],[1708815835000,0],[1708815836000,0],[1708815837000,0],[1708815838000,0],[1708815839000,0],[1708815840000,0],[1708815841000,0],[1708815842000,0],[1708815843000,0],[1708815844000,0],[1708815845000,0],[1708815846000,0],[1708815847000,0],[1708815848000,0],[1708815849000,0],[1708815850000,0],[1708815851000,0],[1708815852000,0],[1708815853000,0],[1708815854000,0],[1708815855000,0],[1708815856000,0],[1708815857000,0],[1708815858000,0],[1708815859000,0],[1708815860000,0],[1708815861000,0],[1708815862000,0],[1708815863000,0],[1708815864000,0],[1708815865000,0],[1708815866000,0],[1708815867000,0],[1708815868000,0],[1708815869000,0],[1708815870000,0],[1708815871000,0],[1708815872000,0],[1708815873000,0],[1708815874000,0],[1708815875000,0],[1708815876000,0],[1708815877000,0],[1708815878000,0],[1708815879000,0],[1708815880000,0],[1708815881000,0],[1708815882000,0],[1708815883000,0],[1708815884000,0],[1708815885000,0],[1708815886000,0],[1708815887000,0],[1708815888000,0],[1708815889000,0],[1708815890000,0],[1708815891000,0],[1708815892000,0],[1708815893000,0],[1708815894000,0],[1708815895000,0],[1708815896000,0],[1708815897000,0],[1708815898000,0],[1708815899000,0],[1708815900000,0],[1708815901000,0],[1708815902000,0],[1708815903000,0],[1708815904000,0],[1708815905000,0],[1708815906000,0],[1708815907000,0],[1708815908000,0],[1708815909000,0],[1708815910000,0],[1708815911000,0],[1708815912000,0],[1708815913000,0],[1708815914000,0],[1708815915000,0],[1708815916000,0],[1708815917000,0],[1708815918000,0],[1708815919000,0],[1708815920000,0],[1708815921000,0],[1708815922000,0],[1708815923000,0],[1708815924000,0],[1708815925000,0],[1708815926000,0],[1708815927000,0],[1708815928000,0],[1708815929000,0],[1708815930000,0],[1708815931000,0],[1708815932000,0],[1708815933000,0],[1708815934000,0],[1708815935000,0],[1708815936000,0],[1708815937000,0],[1708815938000,0],[1708815939000,0],[1708815940000,0],[1708815941000,0],[1708815942000,0],[1708815943000,0],[1708815944000,0],[1708815945000,0],[1708815946000,0],[1708815947000,0],[1708815948000,0],[1708815949000,0],[1708815950000,0],[1708815951000,0],[1708815952000,0],[1708815953000,0],[1708815954000,0],[1708815955000,0],[1708815956000,0],[1708815957000,0],[1708815958000,0],[1708815959000,0],[1708815960000,0],[1708815961000,0],[1708815962000,0],[1708815963000,0],[1708815964000,0],[1708815965000,0],[1708815966000,0],[1708815967000,0],[1708815968000,0],[1708815969000,0],[1708815970000,0],[1708815971000,0],[1708815972000,0],[1708815973000,0],[1708815974000,0],[1708815975000,0],[1708815976000,0],[1708815977000,0],[1708815978000,0],[1708815979000,0],[1708815980000,0],[1708815981000,0],[1708815982000,0],[1708815983000,0],[1708815984000,0],[1708815985000,0],[1708815986000,0],[1708815987000,0],[1708815988000,0],[1708815989000,0],[1708815990000,0],[1708815991000,0],[1708815992000,0],[1708815993000,0],[1708815994000,0],[1708815995000,0],[1708815996000,0],[1708815997000,0],[1708815998000,0],[1708815999000,0],[1708816000000,0],[1708816001000,0],[1708816002000,0],[1708816003000,0],[1708816004000,0],[1708816005000,0],[1708816006000,0],[1708816007000,0],[1708816008000,0],[1708816009000,0],[1708816010000,0],[1708816011000,0],[1708816012000,0],[1708816013000,0],[1708816014000,0],[1708816015000,0],[1708816016000,0],[1708816017000,0],[1708816018000,0],[1708816019000,0],[1708816020000,0],[1708816021000,0],[1708816022000,0],[1708816023000,0],[1708816024000,0],[1708816025000,0],[1708816026000,0],[1708816027000,0],[1708816028000,0],[1708816029000,0],[1708816030000,0],[1708816031000,0],[1708816032000,0],[1708816033000,0],[1708816034000,0],[1708816035000,0],[1708816036000,0],[1708816037000,0],[1708816038000,0],[1708816039000,0],[1708816040000,0],[1708816041000,0],[1708816042000,0],[1708816043000,0],[1708816044000,0],[1708816045000,0],[1708816046000,0],[1708816047000,0],[1708816048000,0],[1708816049000,0],[1708816050000,0],[1708816051000,0],[1708816052000,0],[1708816053000,0],[1708816054000,0],[1708816055000,0],[1708816056000,0],[1708816057000,0],[1708816058000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#AECAEB',
name: 'validação concorrência transações - d',
data: [
[1708815813000,25],[1708815814000,1],[1708815815000,0],[1708815816000,0],[1708815817000,0],[1708815818000,0],[1708815819000,0],[1708815820000,0],[1708815821000,0],[1708815822000,0],[1708815823000,0],[1708815824000,0],[1708815825000,0],[1708815826000,0],[1708815827000,0],[1708815828000,0],[1708815829000,0],[1708815830000,0],[1708815831000,0],[1708815832000,0],[1708815833000,0],[1708815834000,0],[1708815835000,0],[1708815836000,0],[1708815837000,0],[1708815838000,0],[1708815839000,0],[1708815840000,0],[1708815841000,0],[1708815842000,0],[1708815843000,0],[1708815844000,0],[1708815845000,0],[1708815846000,0],[1708815847000,0],[1708815848000,0],[1708815849000,0],[1708815850000,0],[1708815851000,0],[1708815852000,0],[1708815853000,0],[1708815854000,0],[1708815855000,0],[1708815856000,0],[1708815857000,0],[1708815858000,0],[1708815859000,0],[1708815860000,0],[1708815861000,0],[1708815862000,0],[1708815863000,0],[1708815864000,0],[1708815865000,0],[1708815866000,0],[1708815867000,0],[1708815868000,0],[1708815869000,0],[1708815870000,0],[1708815871000,0],[1708815872000,0],[1708815873000,0],[1708815874000,0],[1708815875000,0],[1708815876000,0],[1708815877000,0],[1708815878000,0],[1708815879000,0],[1708815880000,0],[1708815881000,0],[1708815882000,0],[1708815883000,0],[1708815884000,0],[1708815885000,0],[1708815886000,0],[1708815887000,0],[1708815888000,0],[1708815889000,0],[1708815890000,0],[1708815891000,0],[1708815892000,0],[1708815893000,0],[1708815894000,0],[1708815895000,0],[1708815896000,0],[1708815897000,0],[1708815898000,0],[1708815899000,0],[1708815900000,0],[1708815901000,0],[1708815902000,0],[1708815903000,0],[1708815904000,0],[1708815905000,0],[1708815906000,0],[1708815907000,0],[1708815908000,0],[1708815909000,0],[1708815910000,0],[1708815911000,0],[1708815912000,0],[1708815913000,0],[1708815914000,0],[1708815915000,0],[1708815916000,0],[1708815917000,0],[1708815918000,0],[1708815919000,0],[1708815920000,0],[1708815921000,0],[1708815922000,0],[1708815923000,0],[1708815924000,0],[1708815925000,0],[1708815926000,0],[1708815927000,0],[1708815928000,0],[1708815929000,0],[1708815930000,0],[1708815931000,0],[1708815932000,0],[1708815933000,0],[1708815934000,0],[1708815935000,0],[1708815936000,0],[1708815937000,0],[1708815938000,0],[1708815939000,0],[1708815940000,0],[1708815941000,0],[1708815942000,0],[1708815943000,0],[1708815944000,0],[1708815945000,0],[1708815946000,0],[1708815947000,0],[1708815948000,0],[1708815949000,0],[1708815950000,0],[1708815951000,0],[1708815952000,0],[1708815953000,0],[1708815954000,0],[1708815955000,0],[1708815956000,0],[1708815957000,0],[1708815958000,0],[1708815959000,0],[1708815960000,0],[1708815961000,0],[1708815962000,0],[1708815963000,0],[1708815964000,0],[1708815965000,0],[1708815966000,0],[1708815967000,0],[1708815968000,0],[1708815969000,0],[1708815970000,0],[1708815971000,0],[1708815972000,0],[1708815973000,0],[1708815974000,0],[1708815975000,0],[1708815976000,0],[1708815977000,0],[1708815978000,0],[1708815979000,0],[1708815980000,0],[1708815981000,0],[1708815982000,0],[1708815983000,0],[1708815984000,0],[1708815985000,0],[1708815986000,0],[1708815987000,0],[1708815988000,0],[1708815989000,0],[1708815990000,0],[1708815991000,0],[1708815992000,0],[1708815993000,0],[1708815994000,0],[1708815995000,0],[1708815996000,0],[1708815997000,0],[1708815998000,0],[1708815999000,0],[1708816000000,0],[1708816001000,0],[1708816002000,0],[1708816003000,0],[1708816004000,0],[1708816005000,0],[1708816006000,0],[1708816007000,0],[1708816008000,0],[1708816009000,0],[1708816010000,0],[1708816011000,0],[1708816012000,0],[1708816013000,0],[1708816014000,0],[1708816015000,0],[1708816016000,0],[1708816017000,0],[1708816018000,0],[1708816019000,0],[1708816020000,0],[1708816021000,0],[1708816022000,0],[1708816023000,0],[1708816024000,0],[1708816025000,0],[1708816026000,0],[1708816027000,0],[1708816028000,0],[1708816029000,0],[1708816030000,0],[1708816031000,0],[1708816032000,0],[1708816033000,0],[1708816034000,0],[1708816035000,0],[1708816036000,0],[1708816037000,0],[1708816038000,0],[1708816039000,0],[1708816040000,0],[1708816041000,0],[1708816042000,0],[1708816043000,0],[1708816044000,0],[1708816045000,0],[1708816046000,0],[1708816047000,0],[1708816048000,0],[1708816049000,0],[1708816050000,0],[1708816051000,0],[1708816052000,0],[1708816053000,0],[1708816054000,0],[1708816055000,0],[1708816056000,0],[1708816057000,0],[1708816058000,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: ['8', '24', '39', '55', '71', '87', '102', '118', '134', '150', '165', '181', '197', '213', '229', '244', '260', '276', '292', '307', '323', '339', '355', '370', '386', '402', '418', '433', '449', '465', '481', '496', '512', '528', '544', '559', '575', '591', '607', '623', '638', '654', '670', '686', '701', '717', '733', '749', '764', '780', '796', '812', '827', '843', '859', '875', '890', '906', '922', '938', '953', '969', '985', '1001', '1017', '1032', '1048', '1064', '1080', '1095', '1111', '1127', '1143', '1158', '1174', '1190', '1206', '1221', '1237', '1253', '1269', '1284', '1300', '1316', '1332', '1347', '1363', '1379', '1395', '1411', '1426', '1442', '1458', '1474', '1489', '1505', '1521', '1537', '1552', '1568'],
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: [
97.05,1.37,0.87,0.41,0.16,0.06,0.0,0.0,0.0,0.0,0.0,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
],
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([[1708815813,[474,559,567,570,574,583,586,590,1339,1576]],[1708815814,null],[1708815815,[13,13,13,13,13,13,13,13,13,13]],[1708815816,[11,17,83,183,184,184,185,186,189,191]],[1708815817,[3,3,3,3,3,3,3,3,3,3]],[1708815818,[1,4,10,76,79,81,84,87,92,98]],[1708815819,[4,5,6,6,6,6,6,6,6,7]],[1708815820,[4,5,5,26,33,44,56,67,76,79]],[1708815821,[3,5,6,78,78,78,79,80,80,81]],[1708815822,[3,3,4,6,8,22,37,58,74,79]],[1708815823,[3,3,4,5,5,6,6,11,19,21]],[1708815824,[2,3,3,4,4,4,4,6,15,18]],[1708815825,[2,2,4,46,50,57,75,79,80,81]],[1708815826,[3,10,34,58,64,72,78,79,82,83]],[1708815827,[2,3,3,4,13,19,37,47,52,54]],[1708815828,[2,3,3,20,47,64,67,75,79,80]],[1708815829,[2,2,3,3,3,16,47,65,80,80]],[1708815830,[2,2,2,3,3,3,25,49,73,79]],[1708815831,[2,2,2,2,2,3,3,3,29,43]],[1708815832,[2,2,2,2,3,3,3,3,3,4]],[1708815833,[1,2,2,2,3,3,3,3,5,7]],[1708815834,[1,2,2,2,2,2,2,3,3,3]],[1708815835,[1,2,2,2,2,2,3,3,4,4]],[1708815836,[1,2,2,2,2,2,2,3,3,3]],[1708815837,[1,2,2,2,2,2,3,3,25,45]],[1708815838,[1,2,2,3,4,8,16,41,57,65]],[1708815839,[1,2,2,2,2,2,2,2,3,3]],[1708815840,[1,2,2,2,2,2,2,2,3,3]],[1708815841,[1,1,1,2,2,2,2,2,3,5]],[1708815842,[1,1,2,2,2,2,2,2,2,4]],[1708815843,[1,1,2,2,2,2,2,2,3,3]],[1708815844,[1,1,1,2,2,2,2,2,2,3]],[1708815845,[1,1,2,2,2,2,2,2,7,20]],[1708815846,[1,1,1,2,2,2,2,2,6,7]],[1708815847,[1,1,1,2,2,2,2,2,3,3]],[1708815848,[1,1,2,2,2,2,2,2,3,3]],[1708815849,[1,1,2,2,2,5,15,37,67,80]],[1708815850,[1,1,2,3,12,14,29,43,63,66]],[1708815851,[1,1,2,2,2,2,2,2,32,47]],[1708815852,[1,1,1,2,2,2,2,2,3,3]],[1708815853,[1,1,1,1,2,2,2,2,2,2]],[1708815854,[1,1,2,2,2,2,2,2,2,3]],[1708815855,[1,1,2,2,2,2,2,2,2,2]],[1708815856,[1,1,2,2,2,2,2,2,2,3]],[1708815857,[1,1,1,1,2,2,2,2,2,2]],[1708815858,[1,1,1,2,2,2,2,2,2,3]],[1708815859,[1,1,1,2,2,2,2,2,2,2]],[1708815860,[1,1,1,2,2,2,2,2,11,17]],[1708815861,[1,2,2,14,23,31,40,50,58,65]],[1708815862,[1,1,1,2,2,2,2,2,2,3]],[1708815863,[1,1,1,2,2,2,2,2,2,2]],[1708815864,[1,1,1,2,2,2,2,2,2,2]],[1708815865,[1,1,1,1,2,2,2,23,64,73]],[1708815866,[1,1,1,2,2,2,2,2,2,2]],[1708815867,[1,1,1,1,1,1,2,2,2,2]],[1708815868,[1,1,1,1,1,1,1,1,2,2]],[1708815869,[0,1,1,1,1,2,2,2,2,2]],[1708815870,[1,1,1,2,2,2,2,2,2,2]],[1708815871,[1,1,1,2,2,2,2,2,2,2]],[1708815872,[1,1,2,4,11,18,25,35,51,66]],[1708815873,[0,1,1,2,2,2,10,42,66,83]],[1708815874,[1,1,1,1,1,2,2,2,2,2]],[1708815875,[1,1,1,2,2,2,2,2,2,3]],[1708815876,[1,1,2,2,2,2,2,2,2,3]],[1708815877,[1,1,1,2,2,2,2,2,2,2]],[1708815878,[1,1,1,1,2,2,2,2,2,2]],[1708815879,[1,1,1,2,2,2,2,2,2,2]],[1708815880,[1,1,1,2,2,2,2,2,2,2]],[1708815881,[1,1,1,1,2,2,2,2,2,2]],[1708815882,[1,1,1,2,2,2,2,2,2,2]],[1708815883,[1,1,1,2,2,8,14,29,43,54]],[1708815884,[1,1,1,2,7,19,33,41,65,75]],[1708815885,[1,1,1,2,2,2,2,2,2,3]],[1708815886,[1,1,1,1,1,1,1,2,2,5]],[1708815887,[1,1,1,2,2,2,2,2,2,5]],[1708815888,[1,1,2,2,2,2,2,2,2,2]],[1708815889,[1,1,1,1,1,2,2,2,2,2]],[1708815890,[1,1,1,1,1,1,2,2,2,2]],[1708815891,[1,1,1,2,2,2,2,2,2,3]],[1708815892,[0,1,1,1,1,2,2,2,2,2]],[1708815893,[1,1,1,1,1,1,1,2,2,2]],[1708815894,[1,1,1,2,2,2,9,26,47,53]],[1708815895,[0,1,1,2,7,16,25,40,66,75]],[1708815896,[0,1,1,1,1,2,2,2,2,2]],[1708815897,[1,1,1,1,1,1,1,2,2,2]],[1708815898,[0,1,1,1,1,2,2,2,2,2]],[1708815899,[0,1,1,1,1,1,2,2,2,3]],[1708815900,[1,1,1,1,1,1,1,2,2,2]],[1708815901,[1,1,1,1,1,1,2,2,2,2]],[1708815902,[1,1,1,1,1,1,1,1,2,2]],[1708815903,[1,1,1,1,1,1,1,1,2,2]],[1708815904,[1,1,1,1,1,1,1,1,2,2]],[1708815905,[1,1,1,1,1,1,1,2,10,25]],[1708815906,[1,1,1,8,14,21,33,45,61,65]],[1708815907,[1,1,1,2,2,2,2,14,59,66]],[1708815908,[0,1,1,2,2,2,2,2,2,3]],[1708815909,[0,1,1,2,2,2,2,2,2,2]],[1708815910,[1,1,1,2,2,2,2,2,2,3]],[1708815911,[1,1,1,1,1,1,2,2,2,2]],[1708815912,[1,1,1,1,2,2,2,2,2,3]],[1708815913,[0,1,1,1,1,1,2,2,2,2]],[1708815914,[0,1,1,1,1,1,1,1,2,2]],[1708815915,[1,1,1,1,1,1,1,1,2,2]],[1708815916,[1,1,1,1,1,1,2,2,2,2]],[1708815917,[1,1,1,2,6,15,25,37,52,58]],[1708815918,[0,1,1,2,5,17,32,46,68,71]],[1708815919,[0,1,1,1,1,2,2,2,2,3]],[1708815920,[1,1,1,1,1,1,1,2,2,2]],[1708815921,[1,1,1,1,1,1,2,2,2,2]],[1708815922,[1,1,1,2,2,2,2,2,2,2]],[1708815923,[0,1,1,1,2,2,2,2,2,3]],[1708815924,[0,1,1,1,1,1,1,1,1,2]],[1708815925,[1,1,1,1,1,1,1,1,2,2]],[1708815926,[0,1,1,1,1,1,1,1,2,2]],[1708815927,[1,1,1,1,1,1,1,1,2,3]],[1708815928,[1,1,1,1,1,2,3,18,36,40]],[1708815929,[1,1,2,17,24,31,40,46,58,73]],[1708815930,[0,1,1,2,2,2,2,2,3,4]],[1708815931,[0,1,1,1,1,2,2,2,3,3]],[1708815932,[1,2,2,3,3,3,3,4,4,4]],[1708815933,[0,1,2,2,2,2,2,3,3,5]],[1708815934,[1,2,2,3,3,3,3,3,4,5]],[1708815935,[0,1,1,2,2,2,2,2,2,4]],[1708815936,[1,2,2,3,3,3,3,3,4,5]],[1708815937,[1,1,1,2,2,2,2,2,3,5]],[1708815938,[1,2,2,3,3,3,3,3,4,4]],[1708815939,[1,1,1,2,2,2,2,3,3,5]],[1708815940,[1,2,3,9,15,21,29,38,53,57]],[1708815941,[1,1,1,3,3,5,18,38,65,71]],[1708815942,[1,2,2,3,3,3,3,4,4,5]],[1708815943,[1,1,1,2,2,3,3,3,3,4]],[1708815944,[1,1,2,3,3,3,3,4,4,5]],[1708815945,[0,1,2,3,3,3,3,3,4,4]],[1708815946,[1,1,2,2,2,3,3,3,4,4]],[1708815947,[1,1,2,2,3,3,3,3,4,4]],[1708815948,[1,1,2,3,3,3,3,4,5,5]],[1708815949,[0,2,2,3,3,3,3,4,4,4]],[1708815950,[1,1,1,2,2,2,3,3,4,5]],[1708815951,[1,2,2,3,4,8,17,27,47,61]],[1708815952,[1,1,2,9,17,24,35,51,68,76]],[1708815953,[1,1,2,3,3,3,3,3,4,4]],[1708815954,[1,1,1,2,2,2,3,3,5,6]],[1708815955,[1,2,3,3,3,3,4,4,4,4]],[1708815956,[0,1,1,2,2,2,2,2,4,5]],[1708815957,[1,2,3,3,3,3,4,4,4,5]],[1708815958,[0,1,1,1,2,2,2,2,2,4]],[1708815959,[0,1,2,2,3,3,3,3,4,4]],[1708815960,[1,1,1,2,2,2,2,2,2,4]],[1708815961,[1,2,2,3,3,3,3,4,4,5]],[1708815962,[1,1,1,1,1,1,2,2,33,44]],[1708815963,[1,2,3,5,8,12,20,32,46,75]],[1708815964,[1,1,1,2,2,2,6,35,59,67]],[1708815965,[1,1,2,3,3,3,3,4,4,6]],[1708815966,[0,1,1,2,2,2,2,2,2,2]],[1708815967,[0,2,2,3,3,3,3,3,4,5]],[1708815968,[1,1,1,2,2,2,2,2,3,5]],[1708815969,[1,2,2,3,3,3,3,4,5,5]],[1708815970,[1,1,1,2,2,2,2,2,2,3]],[1708815971,[1,1,2,2,3,3,3,3,4,5]],[1708815972,[1,1,1,1,1,2,2,2,3,3]],[1708815973,[1,1,1,2,2,3,3,3,4,5]],[1708815974,[1,1,2,3,4,10,19,28,36,46]],[1708815975,[1,1,2,3,9,19,30,46,66,69]],[1708815976,[0,1,1,1,2,2,2,2,2,3]],[1708815977,[1,1,1,2,2,3,3,4,4,5]],[1708815978,[1,1,1,2,2,2,3,3,3,4]],[1708815979,[1,1,1,2,2,2,3,3,4,5]],[1708815980,[1,1,1,2,2,3,3,3,4,4]],[1708815981,[1,1,1,1,1,2,2,2,4,5]],[1708815982,[1,1,2,2,2,3,3,3,4,5]],[1708815983,[1,1,1,2,2,2,2,2,2,4]],[1708815984,[1,1,1,2,2,2,3,3,4,4]],[1708815985,[1,1,1,2,2,2,8,23,35,43]],[1708815986,[1,2,3,18,26,33,44,54,66,80]],[1708815987,[0,1,1,2,2,2,2,2,2,2]],[1708815988,[0,1,2,2,2,3,3,3,4,5]],[1708815989,[1,1,1,1,2,2,2,2,2,3]],[1708815990,[1,1,1,2,2,3,3,3,4,8]],[1708815991,[1,1,1,1,2,2,2,2,2,3]],[1708815992,[1,1,2,2,2,3,3,4,5,5]],[1708815993,[1,1,2,2,2,3,3,3,4,5]],[1708815994,[1,1,2,3,3,3,3,3,4,5]],[1708815995,[1,1,2,3,3,3,3,4,4,5]],[1708815996,[1,1,2,3,3,3,3,3,4,5]],[1708815997,[1,1,2,4,6,9,19,30,46,57]],[1708815998,[1,1,3,5,10,20,31,48,65,85]],[1708815999,[1,1,1,3,3,3,3,4,4,4]],[1708816000,[1,2,2,3,3,3,3,4,4,4]],[1708816001,[1,1,1,2,2,2,2,2,3,5]],[1708816002,[0,2,2,2,3,3,3,3,4,6]],[1708816003,[0,1,1,2,2,2,3,3,4,5]],[1708816004,[1,2,2,3,3,3,3,3,4,4]],[1708816005,[1,1,1,2,2,2,2,3,4,5]],[1708816006,[1,2,3,3,3,3,3,3,4,5]],[1708816007,[1,1,1,1,1,1,1,2,4,5]],[1708816008,[1,2,3,4,4,5,18,28,45,55]],[1708816009,[1,1,2,17,22,30,39,53,66,85]],[1708816010,[1,2,2,2,2,2,2,3,4,6]],[1708816011,[0,1,1,1,1,1,1,1,2,4]],[1708816012,[1,2,2,3,3,3,3,3,4,4]],[1708816013,[1,1,1,1,1,1,2,2,3,5]],[1708816014,[1,2,3,3,3,4,4,4,4,5]],[1708816015,[1,1,1,2,2,2,2,3,3,4]],[1708816016,[1,1,2,3,3,3,3,3,4,4]],[1708816017,[0,1,1,2,2,2,2,3,3,4]],[1708816018,[1,2,2,3,3,3,3,3,5,7]],[1708816019,[1,1,1,2,2,2,2,3,3,4]],[1708816020,[1,2,2,12,17,26,31,40,48,57]],[1708816021,[0,1,1,2,4,12,30,54,74,84]],[1708816022,[1,1,2,2,3,3,3,3,4,4]],[1708816023,[0,1,1,2,2,2,3,3,3,4]],[1708816024,[1,1,1,3,3,3,3,3,4,6]],[1708816025,[1,1,1,2,3,3,3,3,4,4]],[1708816026,[1,1,1,2,2,3,3,3,4,5]],[1708816027,[1,1,2,2,3,3,3,3,4,5]],[1708816028,[1,1,1,2,2,2,2,2,3,4]],[1708816029,[1,1,1,2,2,2,2,3,3,4]],[1708816030,[1,1,1,2,2,2,3,3,4,5]],[1708816031,[1,2,3,4,4,8,17,28,45,51]],[1708816032,[1,1,2,11,20,28,38,49,64,77]],[1708816033,[1,2,2,3,3,3,3,3,4,4]],[1708816034,[1,1,1,2,2,2,2,2,2,4]],[1708816035,[1,2,2,2,3,3,3,3,4,4]],[1708816036,[1,1,1,2,2,2,2,2,2,4]],[1708816037,[1,1,2,3,3,3,3,4,5,5]],[1708816038,[1,1,1,2,2,2,2,2,2,4]],[1708816039,[1,1,2,2,2,3,3,3,3,5]],[1708816040,[1,1,1,1,1,2,2,2,2,2]],[1708816041,[1,1,2,3,3,3,3,4,4,5]],[1708816042,[1,1,1,2,2,2,2,17,37,57]],[1708816043,[1,1,3,9,13,21,28,37,59,71]],[1708816044,[1,1,1,2,2,2,2,19,49,73]],[1708816045,[1,1,1,2,2,2,3,3,3,4]],[1708816046,[1,1,1,1,1,1,1,1,2,2]],[1708816047,[1,1,1,2,2,3,3,3,4,4]],[1708816048,[1,1,1,1,1,1,1,2,2,2]],[1708816049,[0,1,1,2,2,2,2,3,3,4]],[1708816050,[0,1,1,1,1,1,1,1,2,2]],[1708816051,[0,1,1,2,2,2,3,3,4,4]],[1708816052,[1,1,1,2,2,2,2,2,2,3]],[1708816053,[1,1,1,2,2,2,3,3,4,4]],[1708816054,[1,1,2,2,8,18,27,36,55,58]],[1708816055,[1,2,3,11,18,27,37,47,72,79]],[1708816056,[1,1,1,1,2,2,2,3,4,5]],[1708816057,[2,3,3,3,3,3,4,4,4,5]],[1708816058,[0,1,2,2,2,2,3,3,4,4]]]);
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([[1708815813,[25,25,0]],[1708815814,[0,0,0]],[1708815815,[1,1,0]],[1708815816,[25,25,0]],[1708815817,[1,1,0]],[1708815818,[71,71,0]],[1708815819,[3,3,0]],[1708815820,[6,6,0]],[1708815821,[9,9,0]],[1708815822,[11,11,0]],[1708815823,[13,13,0]],[1708815824,[18,18,0]],[1708815825,[19,19,0]],[1708815826,[24,24,0]],[1708815827,[26,26,0]],[1708815828,[27,27,0]],[1708815829,[32,32,0]],[1708815830,[34,34,0]],[1708815831,[37,37,0]],[1708815832,[39,39,0]],[1708815833,[43,43,0]],[1708815834,[44,44,0]],[1708815835,[48,48,0]],[1708815836,[50,50,0]],[1708815837,[54,54,0]],[1708815838,[56,56,0]],[1708815839,[61,61,0]],[1708815840,[61,61,0]],[1708815841,[65,65,0]],[1708815842,[67,67,0]],[1708815843,[70,70,0]],[1708815844,[73,73,0]],[1708815845,[77,77,0]],[1708815846,[79,79,0]],[1708815847,[81,81,0]],[1708815848,[85,85,0]],[1708815849,[87,87,0]],[1708815850,[91,91,0]],[1708815851,[92,92,0]],[1708815852,[96,96,0]],[1708815853,[98,98,0]],[1708815854,[101,101,0]],[1708815855,[105,105,0]],[1708815856,[107,107,0]],[1708815857,[110,110,0]],[1708815858,[112,112,0]],[1708815859,[116,116,0]],[1708815860,[118,118,0]],[1708815861,[121,121,0]],[1708815862,[123,123,0]],[1708815863,[126,126,0]],[1708815864,[129,129,0]],[1708815865,[133,133,0]],[1708815866,[135,135,0]],[1708815867,[138,138,0]],[1708815868,[141,141,0]],[1708815869,[143,143,0]],[1708815870,[147,147,0]],[1708815871,[149,149,0]],[1708815872,[151,151,0]],[1708815873,[155,155,0]],[1708815874,[158,158,0]],[1708815875,[160,160,0]],[1708815876,[164,164,0]],[1708815877,[164,164,0]],[1708815878,[171,171,0]],[1708815879,[170,170,0]],[1708815880,[175,175,0]],[1708815881,[176,176,0]],[1708815882,[181,181,0]],[1708815883,[183,183,0]],[1708815884,[186,186,0]],[1708815885,[188,188,0]],[1708815886,[192,192,0]],[1708815887,[194,194,0]],[1708815888,[196,196,0]],[1708815889,[199,199,0]],[1708815890,[203,203,0]],[1708815891,[205,205,0]],[1708815892,[207,207,0]],[1708815893,[211,211,0]],[1708815894,[213,213,0]],[1708815895,[217,217,0]],[1708815896,[220,220,0]],[1708815897,[222,222,0]],[1708815898,[225,225,0]],[1708815899,[227,227,0]],[1708815900,[231,231,0]],[1708815901,[233,233,0]],[1708815902,[237,237,0]],[1708815903,[238,238,0]],[1708815904,[243,243,0]],[1708815905,[244,244,0]],[1708815906,[248,248,0]],[1708815907,[250,250,0]],[1708815908,[252,252,0]],[1708815909,[256,256,0]],[1708815910,[259,259,0]],[1708815911,[262,262,0]],[1708815912,[264,264,0]],[1708815913,[266,266,0]],[1708815914,[270,270,0]],[1708815915,[273,273,0]],[1708815916,[275,275,0]],[1708815917,[279,279,0]],[1708815918,[281,281,0]],[1708815919,[283,283,0]],[1708815920,[286,286,0]],[1708815921,[290,290,0]],[1708815922,[292,292,0]],[1708815923,[295,295,0]],[1708815924,[299,299,0]],[1708815925,[300,300,0]],[1708815926,[304,304,0]],[1708815927,[306,306,0]],[1708815928,[309,309,0]],[1708815929,[312,312,0]],[1708815930,[315,315,0]],[1708815931,[317,317,0]],[1708815932,[321,321,0]],[1708815933,[323,323,0]],[1708815934,[326,326,0]],[1708815935,[330,330,0]],[1708815936,[331,331,0]],[1708815937,[334,334,0]],[1708815938,[339,339,0]],[1708815939,[339,339,0]],[1708815940,[341,341,0]],[1708815941,[340,340,0]],[1708815942,[339,339,0]],[1708815943,[341,341,0]],[1708815944,[340,340,0]],[1708815945,[339,339,0]],[1708815946,[341,341,0]],[1708815947,[340,340,0]],[1708815948,[340,340,0]],[1708815949,[338,338,0]],[1708815950,[342,342,0]],[1708815951,[340,340,0]],[1708815952,[340,340,0]],[1708815953,[340,340,0]],[1708815954,[340,340,0]],[1708815955,[339,339,0]],[1708815956,[341,341,0]],[1708815957,[339,339,0]],[1708815958,[340,340,0]],[1708815959,[341,341,0]],[1708815960,[340,340,0]],[1708815961,[340,340,0]],[1708815962,[340,340,0]],[1708815963,[340,340,0]],[1708815964,[340,340,0]],[1708815965,[340,340,0]],[1708815966,[338,338,0]],[1708815967,[342,342,0]],[1708815968,[340,340,0]],[1708815969,[339,339,0]],[1708815970,[341,341,0]],[1708815971,[340,340,0]],[1708815972,[339,339,0]],[1708815973,[341,341,0]],[1708815974,[340,340,0]],[1708815975,[339,339,0]],[1708815976,[341,341,0]],[1708815977,[339,339,0]],[1708815978,[341,341,0]],[1708815979,[340,340,0]],[1708815980,[340,340,0]],[1708815981,[340,340,0]],[1708815982,[340,340,0]],[1708815983,[340,340,0]],[1708815984,[340,340,0]],[1708815985,[340,340,0]],[1708815986,[340,340,0]],[1708815987,[339,339,0]],[1708815988,[340,340,0]],[1708815989,[341,341,0]],[1708815990,[340,340,0]],[1708815991,[340,340,0]],[1708815992,[339,339,0]],[1708815993,[341,341,0]],[1708815994,[340,340,0]],[1708815995,[340,340,0]],[1708815996,[340,340,0]],[1708815997,[340,340,0]],[1708815998,[340,340,0]],[1708815999,[340,340,0]],[1708816000,[340,340,0]],[1708816001,[339,339,0]],[1708816002,[339,339,0]],[1708816003,[340,340,0]],[1708816004,[342,342,0]],[1708816005,[340,340,0]],[1708816006,[340,340,0]],[1708816007,[340,340,0]],[1708816008,[340,340,0]],[1708816009,[339,339,0]],[1708816010,[340,340,0]],[1708816011,[341,341,0]],[1708816012,[340,340,0]],[1708816013,[340,340,0]],[1708816014,[340,340,0]],[1708816015,[340,340,0]],[1708816016,[339,339,0]],[1708816017,[341,341,0]],[1708816018,[340,340,0]],[1708816019,[340,340,0]],[1708816020,[339,339,0]],[1708816021,[341,341,0]],[1708816022,[340,340,0]],[1708816023,[339,339,0]],[1708816024,[339,339,0]],[1708816025,[342,342,0]],[1708816026,[340,340,0]],[1708816027,[339,339,0]],[1708816028,[340,340,0]],[1708816029,[341,341,0]],[1708816030,[340,340,0]],[1708816031,[340,340,0]],[1708816032,[340,340,0]],[1708816033,[339,339,0]],[1708816034,[341,341,0]],[1708816035,[339,339,0]],[1708816036,[341,341,0]],[1708816037,[340,340,0]],[1708816038,[338,338,0]],[1708816039,[342,342,0]],[1708816040,[340,340,0]],[1708816041,[340,340,0]],[1708816042,[340,340,0]],[1708816043,[340,340,0]],[1708816044,[340,340,0]],[1708816045,[340,340,0]],[1708816046,[340,340,0]],[1708816047,[340,340,0]],[1708816048,[340,340,0]],[1708816049,[338,338,0]],[1708816050,[341,341,0]],[1708816051,[341,341,0]],[1708816052,[339,339,0]],[1708816053,[341,341,0]],[1708816054,[340,340,0]],[1708816055,[340,340,0]],[1708816056,[340,340,0]],[1708816057,[340,340,0]],[1708816058,[504,504,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:[