forked from zanfranceschi/rinha-de-backend-2024-q1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1173 lines (1104 loc) · 93 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-11 01:53:44 GMT</span>
</span>
<span class="simulation-information-item">
<span class="simulation-information-label">Duration: </span>
<span>4m 4s </span>
</span>
<span class="simulation-tooltip simulation-information-item description" title="Description" data-content="Rinha de Backend - 2024/Q1: Crébito - julioriffel-fastapi">
<span class="simulation-information-label">Description: </span>
<span>Rinha de Backend - 2024/Q1: Crébito - julioriffel-fastapi</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: [
[1710122024000,0],[1710122025000,0],[1710122026000,0],[1710122027000,0],[1710122028000,0],[1710122029000,2],[1710122030000,2],[1710122031000,4],[1710122032000,4],[1710122033000,5],[1710122034000,6],[1710122035000,7],[1710122036000,8],[1710122037000,8],[1710122038000,10],[1710122039000,10],[1710122040000,12],[1710122041000,12],[1710122042000,14],[1710122043000,14],[1710122044000,15],[1710122045000,16],[1710122046000,17],[1710122047000,17],[1710122048000,19],[1710122049000,20],[1710122050000,20],[1710122051000,22],[1710122052000,22],[1710122053000,23],[1710122054000,25],[1710122055000,25],[1710122056000,26],[1710122057000,26],[1710122058000,28],[1710122059000,29],[1710122060000,30],[1710122061000,30],[1710122062000,32],[1710122063000,32],[1710122064000,33],[1710122065000,34],[1710122066000,35],[1710122067000,36],[1710122068000,37],[1710122069000,38],[1710122070000,39],[1710122071000,39],[1710122072000,41],[1710122073000,41],[1710122074000,43],[1710122075000,43],[1710122076000,44],[1710122077000,45],[1710122078000,46],[1710122079000,47],[1710122080000,48],[1710122081000,48],[1710122082000,50],[1710122083000,50],[1710122084000,52],[1710122085000,52],[1710122086000,53],[1710122087000,54],[1710122088000,56],[1710122089000,55],[1710122090000,57],[1710122091000,58],[1710122092000,59],[1710122093000,59],[1710122094000,61],[1710122095000,61],[1710122096000,63],[1710122097000,63],[1710122098000,64],[1710122099000,65],[1710122100000,66],[1710122101000,67],[1710122102000,68],[1710122103000,68],[1710122104000,70],[1710122105000,70],[1710122106000,72],[1710122107000,72],[1710122108000,73],[1710122109000,74],[1710122110000,75],[1710122111000,76],[1710122112000,77],[1710122113000,78],[1710122114000,79],[1710122115000,79],[1710122116000,81],[1710122117000,81],[1710122118000,82],[1710122119000,83],[1710122120000,85],[1710122121000,85],[1710122122000,86],[1710122123000,86],[1710122124000,88],[1710122125000,89],[1710122126000,89],[1710122127000,92],[1710122128000,92],[1710122129000,93],[1710122130000,94],[1710122131000,95],[1710122132000,96],[1710122133000,97],[1710122134000,98],[1710122135000,98],[1710122136000,99],[1710122137000,100],[1710122138000,102],[1710122139000,102],[1710122140000,104],[1710122141000,104],[1710122142000,105],[1710122143000,106],[1710122144000,107],[1710122145000,108],[1710122146000,108],[1710122147000,110],[1710122148000,111],[1710122149000,111],[1710122150000,111],[1710122151000,110],[1710122152000,111],[1710122153000,111],[1710122154000,111],[1710122155000,111],[1710122156000,111],[1710122157000,111],[1710122158000,111],[1710122159000,111],[1710122160000,111],[1710122161000,111],[1710122162000,111],[1710122163000,111],[1710122164000,111],[1710122165000,111],[1710122166000,111],[1710122167000,111],[1710122168000,111],[1710122169000,111],[1710122170000,111],[1710122171000,110],[1710122172000,111],[1710122173000,111],[1710122174000,111],[1710122175000,111],[1710122176000,111],[1710122177000,111],[1710122178000,111],[1710122179000,111],[1710122180000,111],[1710122181000,111],[1710122182000,111],[1710122183000,111],[1710122184000,111],[1710122185000,111],[1710122186000,111],[1710122187000,111],[1710122188000,111],[1710122189000,111],[1710122190000,113],[1710122191000,111],[1710122192000,111],[1710122193000,110],[1710122194000,111],[1710122195000,111],[1710122196000,111],[1710122197000,111],[1710122198000,111],[1710122199000,111],[1710122200000,111],[1710122201000,111],[1710122202000,111],[1710122203000,111],[1710122204000,111],[1710122205000,111],[1710122206000,111],[1710122207000,111],[1710122208000,111],[1710122209000,111],[1710122210000,111],[1710122211000,111],[1710122212000,111],[1710122213000,111],[1710122214000,110],[1710122215000,111],[1710122216000,110],[1710122217000,111],[1710122218000,111],[1710122219000,111],[1710122220000,111],[1710122221000,110],[1710122222000,111],[1710122223000,111],[1710122224000,111],[1710122225000,111],[1710122226000,111],[1710122227000,111],[1710122228000,111],[1710122229000,111],[1710122230000,111],[1710122231000,111],[1710122232000,111],[1710122233000,111],[1710122234000,111],[1710122235000,111],[1710122236000,111],[1710122237000,111],[1710122238000,111],[1710122239000,111],[1710122240000,111],[1710122241000,111],[1710122242000,111],[1710122243000,111],[1710122244000,111],[1710122245000,111],[1710122246000,111],[1710122247000,111],[1710122248000,111],[1710122249000,111],[1710122250000,113],[1710122251000,111],[1710122252000,111],[1710122253000,111],[1710122254000,111],[1710122255000,111],[1710122256000,111],[1710122257000,111],[1710122258000,111],[1710122259000,111],[1710122260000,111],[1710122261000,111],[1710122262000,111],[1710122263000,111],[1710122264000,111],[1710122265000,111],[1710122266000,111],[1710122267000,111],[1710122268000,109]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#68b65c',
name: 'débitos',
data: [
[1710122024000,0],[1710122025000,0],[1710122026000,0],[1710122027000,0],[1710122028000,0],[1710122029000,2],[1710122030000,4],[1710122031000,6],[1710122032000,7],[1710122033000,9],[1710122034000,11],[1710122035000,13],[1710122036000,15],[1710122037000,16],[1710122038000,19],[1710122039000,20],[1710122040000,22],[1710122041000,24],[1710122042000,25],[1710122043000,28],[1710122044000,29],[1710122045000,31],[1710122046000,33],[1710122047000,35],[1710122048000,37],[1710122049000,38],[1710122050000,40],[1710122051000,42],[1710122052000,44],[1710122053000,46],[1710122054000,47],[1710122055000,50],[1710122056000,51],[1710122057000,53],[1710122058000,55],[1710122059000,56],[1710122060000,59],[1710122061000,60],[1710122062000,62],[1710122063000,64],[1710122064000,66],[1710122065000,68],[1710122066000,69],[1710122067000,71],[1710122068000,74],[1710122069000,74],[1710122070000,77],[1710122071000,79],[1710122072000,80],[1710122073000,82],[1710122074000,84],[1710122075000,86],[1710122076000,88],[1710122077000,90],[1710122078000,93],[1710122079000,94],[1710122080000,96],[1710122081000,97],[1710122082000,99],[1710122083000,101],[1710122084000,103],[1710122085000,105],[1710122086000,107],[1710122087000,109],[1710122088000,111],[1710122089000,112],[1710122090000,114],[1710122091000,116],[1710122092000,117],[1710122093000,119],[1710122094000,120],[1710122095000,123],[1710122096000,124],[1710122097000,126],[1710122098000,128],[1710122099000,129],[1710122100000,132],[1710122101000,133],[1710122102000,135],[1710122103000,137],[1710122104000,139],[1710122105000,141],[1710122106000,142],[1710122107000,144],[1710122108000,147],[1710122109000,147],[1710122110000,150],[1710122111000,152],[1710122112000,153],[1710122113000,155],[1710122114000,157],[1710122115000,159],[1710122116000,161],[1710122117000,162],[1710122118000,165],[1710122119000,166],[1710122120000,168],[1710122121000,170],[1710122122000,171],[1710122123000,174],[1710122124000,175],[1710122125000,177],[1710122126000,179],[1710122127000,181],[1710122128000,184],[1710122129000,185],[1710122130000,186],[1710122131000,188],[1710122132000,191],[1710122133000,193],[1710122134000,194],[1710122135000,197],[1710122136000,198],[1710122137000,200],[1710122138000,202],[1710122139000,203],[1710122140000,206],[1710122141000,207],[1710122142000,209],[1710122143000,211],[1710122144000,213],[1710122145000,215],[1710122146000,216],[1710122147000,217],[1710122148000,221],[1710122149000,221],[1710122150000,221],[1710122151000,221],[1710122152000,221],[1710122153000,221],[1710122154000,221],[1710122155000,221],[1710122156000,221],[1710122157000,221],[1710122158000,221],[1710122159000,221],[1710122160000,221],[1710122161000,220],[1710122162000,221],[1710122163000,221],[1710122164000,221],[1710122165000,221],[1710122166000,221],[1710122167000,221],[1710122168000,221],[1710122169000,221],[1710122170000,221],[1710122171000,221],[1710122172000,221],[1710122173000,221],[1710122174000,221],[1710122175000,221],[1710122176000,221],[1710122177000,221],[1710122178000,220],[1710122179000,221],[1710122180000,221],[1710122181000,221],[1710122182000,221],[1710122183000,221],[1710122184000,221],[1710122185000,221],[1710122186000,221],[1710122187000,221],[1710122188000,221],[1710122189000,221],[1710122190000,223],[1710122191000,221],[1710122192000,221],[1710122193000,221],[1710122194000,221],[1710122195000,221],[1710122196000,221],[1710122197000,221],[1710122198000,221],[1710122199000,220],[1710122200000,221],[1710122201000,221],[1710122202000,221],[1710122203000,221],[1710122204000,221],[1710122205000,221],[1710122206000,221],[1710122207000,221],[1710122208000,221],[1710122209000,221],[1710122210000,221],[1710122211000,221],[1710122212000,221],[1710122213000,221],[1710122214000,221],[1710122215000,221],[1710122216000,221],[1710122217000,221],[1710122218000,221],[1710122219000,221],[1710122220000,221],[1710122221000,221],[1710122222000,221],[1710122223000,221],[1710122224000,221],[1710122225000,221],[1710122226000,221],[1710122227000,221],[1710122228000,221],[1710122229000,221],[1710122230000,221],[1710122231000,221],[1710122232000,221],[1710122233000,221],[1710122234000,221],[1710122235000,221],[1710122236000,221],[1710122237000,221],[1710122238000,221],[1710122239000,221],[1710122240000,221],[1710122241000,221],[1710122242000,221],[1710122243000,221],[1710122244000,221],[1710122245000,221],[1710122246000,221],[1710122247000,221],[1710122248000,221],[1710122249000,221],[1710122250000,224],[1710122251000,221],[1710122252000,221],[1710122253000,221],[1710122254000,221],[1710122255000,221],[1710122256000,221],[1710122257000,221],[1710122258000,221],[1710122259000,221],[1710122260000,221],[1710122261000,221],[1710122262000,221],[1710122263000,221],[1710122264000,221],[1710122265000,221],[1710122266000,221],[1710122267000,221],[1710122268000,218]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#f15b4f',
name: 'extratos',
data: [
[1710122024000,0],[1710122025000,0],[1710122026000,0],[1710122027000,0],[1710122028000,1],[1710122029000,2],[1710122030000,1],[1710122031000,1],[1710122032000,1],[1710122033000,1],[1710122034000,2],[1710122035000,1],[1710122036000,2],[1710122037000,2],[1710122038000,1],[1710122039000,2],[1710122040000,2],[1710122041000,2],[1710122042000,2],[1710122043000,2],[1710122044000,2],[1710122045000,2],[1710122046000,3],[1710122047000,2],[1710122048000,3],[1710122049000,2],[1710122050000,3],[1710122051000,2],[1710122052000,3],[1710122053000,3],[1710122054000,3],[1710122055000,3],[1710122056000,3],[1710122057000,3],[1710122058000,3],[1710122059000,4],[1710122060000,3],[1710122061000,3],[1710122062000,4],[1710122063000,3],[1710122064000,4],[1710122065000,4],[1710122066000,4],[1710122067000,4],[1710122068000,4],[1710122069000,4],[1710122070000,4],[1710122071000,4],[1710122072000,4],[1710122073000,4],[1710122074000,5],[1710122075000,4],[1710122076000,5],[1710122077000,5],[1710122078000,4],[1710122079000,5],[1710122080000,5],[1710122081000,5],[1710122082000,5],[1710122083000,5],[1710122084000,5],[1710122085000,5],[1710122086000,6],[1710122087000,5],[1710122088000,6],[1710122089000,5],[1710122090000,6],[1710122091000,5],[1710122092000,6],[1710122093000,6],[1710122094000,6],[1710122095000,6],[1710122096000,6],[1710122097000,6],[1710122098000,6],[1710122099000,7],[1710122100000,6],[1710122101000,6],[1710122102000,7],[1710122103000,6],[1710122104000,7],[1710122105000,7],[1710122106000,7],[1710122107000,7],[1710122108000,7],[1710122109000,7],[1710122110000,7],[1710122111000,7],[1710122112000,7],[1710122113000,7],[1710122114000,8],[1710122115000,7],[1710122116000,8],[1710122117000,8],[1710122118000,7],[1710122119000,8],[1710122120000,8],[1710122121000,8],[1710122122000,8],[1710122123000,8],[1710122124000,8],[1710122125000,8],[1710122126000,9],[1710122127000,8],[1710122128000,9],[1710122129000,8],[1710122130000,9],[1710122131000,8],[1710122132000,9],[1710122133000,9],[1710122134000,9],[1710122135000,9],[1710122136000,9],[1710122137000,9],[1710122138000,9],[1710122139000,10],[1710122140000,9],[1710122141000,9],[1710122142000,10],[1710122143000,9],[1710122144000,10],[1710122145000,10],[1710122146000,10],[1710122147000,10],[1710122148000,10],[1710122149000,10],[1710122150000,10],[1710122151000,10],[1710122152000,10],[1710122153000,10],[1710122154000,10],[1710122155000,10],[1710122156000,10],[1710122157000,10],[1710122158000,10],[1710122159000,10],[1710122160000,10],[1710122161000,10],[1710122162000,10],[1710122163000,10],[1710122164000,10],[1710122165000,10],[1710122166000,10],[1710122167000,10],[1710122168000,10],[1710122169000,10],[1710122170000,10],[1710122171000,10],[1710122172000,10],[1710122173000,10],[1710122174000,10],[1710122175000,10],[1710122176000,10],[1710122177000,10],[1710122178000,10],[1710122179000,10],[1710122180000,10],[1710122181000,10],[1710122182000,10],[1710122183000,10],[1710122184000,10],[1710122185000,10],[1710122186000,10],[1710122187000,10],[1710122188000,10],[1710122189000,10],[1710122190000,10],[1710122191000,10],[1710122192000,10],[1710122193000,10],[1710122194000,10],[1710122195000,10],[1710122196000,10],[1710122197000,10],[1710122198000,10],[1710122199000,10],[1710122200000,10],[1710122201000,10],[1710122202000,10],[1710122203000,10],[1710122204000,10],[1710122205000,10],[1710122206000,10],[1710122207000,10],[1710122208000,10],[1710122209000,10],[1710122210000,10],[1710122211000,10],[1710122212000,10],[1710122213000,10],[1710122214000,10],[1710122215000,10],[1710122216000,10],[1710122217000,10],[1710122218000,10],[1710122219000,10],[1710122220000,10],[1710122221000,10],[1710122222000,10],[1710122223000,10],[1710122224000,10],[1710122225000,10],[1710122226000,10],[1710122227000,10],[1710122228000,10],[1710122229000,10],[1710122230000,10],[1710122231000,10],[1710122232000,10],[1710122233000,10],[1710122234000,10],[1710122235000,10],[1710122236000,10],[1710122237000,10],[1710122238000,10],[1710122239000,10],[1710122240000,10],[1710122241000,10],[1710122242000,10],[1710122243000,10],[1710122244000,10],[1710122245000,10],[1710122246000,10],[1710122247000,10],[1710122248000,10],[1710122249000,10],[1710122250000,11],[1710122251000,10],[1710122252000,10],[1710122253000,10],[1710122254000,10],[1710122255000,10],[1710122256000,10],[1710122257000,10],[1710122258000,10],[1710122259000,10],[1710122260000,10],[1710122261000,10],[1710122262000,10],[1710122263000,10],[1710122264000,10],[1710122265000,10],[1710122266000,10],[1710122267000,10],[1710122268000,9]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FFDD00',
name: 'validação HTTP 404',
data: [
[1710122024000,0],[1710122025000,0],[1710122026000,0],[1710122027000,1],[1710122028000,0],[1710122029000,0],[1710122030000,0],[1710122031000,0],[1710122032000,0],[1710122033000,0],[1710122034000,0],[1710122035000,0],[1710122036000,0],[1710122037000,0],[1710122038000,0],[1710122039000,0],[1710122040000,0],[1710122041000,0],[1710122042000,0],[1710122043000,0],[1710122044000,0],[1710122045000,0],[1710122046000,0],[1710122047000,0],[1710122048000,0],[1710122049000,0],[1710122050000,0],[1710122051000,0],[1710122052000,0],[1710122053000,0],[1710122054000,0],[1710122055000,0],[1710122056000,0],[1710122057000,0],[1710122058000,0],[1710122059000,0],[1710122060000,0],[1710122061000,0],[1710122062000,0],[1710122063000,0],[1710122064000,0],[1710122065000,0],[1710122066000,0],[1710122067000,0],[1710122068000,0],[1710122069000,0],[1710122070000,0],[1710122071000,0],[1710122072000,0],[1710122073000,0],[1710122074000,0],[1710122075000,0],[1710122076000,0],[1710122077000,0],[1710122078000,0],[1710122079000,0],[1710122080000,0],[1710122081000,0],[1710122082000,0],[1710122083000,0],[1710122084000,0],[1710122085000,0],[1710122086000,0],[1710122087000,0],[1710122088000,0],[1710122089000,0],[1710122090000,0],[1710122091000,0],[1710122092000,0],[1710122093000,0],[1710122094000,0],[1710122095000,0],[1710122096000,0],[1710122097000,0],[1710122098000,0],[1710122099000,0],[1710122100000,0],[1710122101000,0],[1710122102000,0],[1710122103000,0],[1710122104000,0],[1710122105000,0],[1710122106000,0],[1710122107000,0],[1710122108000,0],[1710122109000,0],[1710122110000,0],[1710122111000,0],[1710122112000,0],[1710122113000,0],[1710122114000,0],[1710122115000,0],[1710122116000,0],[1710122117000,0],[1710122118000,0],[1710122119000,0],[1710122120000,0],[1710122121000,0],[1710122122000,0],[1710122123000,0],[1710122124000,0],[1710122125000,0],[1710122126000,0],[1710122127000,0],[1710122128000,0],[1710122129000,0],[1710122130000,0],[1710122131000,0],[1710122132000,0],[1710122133000,0],[1710122134000,0],[1710122135000,0],[1710122136000,0],[1710122137000,0],[1710122138000,0],[1710122139000,0],[1710122140000,0],[1710122141000,0],[1710122142000,0],[1710122143000,0],[1710122144000,0],[1710122145000,0],[1710122146000,0],[1710122147000,0],[1710122148000,0],[1710122149000,0],[1710122150000,0],[1710122151000,0],[1710122152000,0],[1710122153000,0],[1710122154000,0],[1710122155000,0],[1710122156000,0],[1710122157000,0],[1710122158000,0],[1710122159000,0],[1710122160000,0],[1710122161000,0],[1710122162000,0],[1710122163000,0],[1710122164000,0],[1710122165000,0],[1710122166000,0],[1710122167000,0],[1710122168000,0],[1710122169000,0],[1710122170000,0],[1710122171000,0],[1710122172000,0],[1710122173000,0],[1710122174000,0],[1710122175000,0],[1710122176000,0],[1710122177000,0],[1710122178000,0],[1710122179000,0],[1710122180000,0],[1710122181000,0],[1710122182000,0],[1710122183000,0],[1710122184000,0],[1710122185000,0],[1710122186000,0],[1710122187000,0],[1710122188000,0],[1710122189000,0],[1710122190000,0],[1710122191000,0],[1710122192000,0],[1710122193000,0],[1710122194000,0],[1710122195000,0],[1710122196000,0],[1710122197000,0],[1710122198000,0],[1710122199000,0],[1710122200000,0],[1710122201000,0],[1710122202000,0],[1710122203000,0],[1710122204000,0],[1710122205000,0],[1710122206000,0],[1710122207000,0],[1710122208000,0],[1710122209000,0],[1710122210000,0],[1710122211000,0],[1710122212000,0],[1710122213000,0],[1710122214000,0],[1710122215000,0],[1710122216000,0],[1710122217000,0],[1710122218000,0],[1710122219000,0],[1710122220000,0],[1710122221000,0],[1710122222000,0],[1710122223000,0],[1710122224000,0],[1710122225000,0],[1710122226000,0],[1710122227000,0],[1710122228000,0],[1710122229000,0],[1710122230000,0],[1710122231000,0],[1710122232000,0],[1710122233000,0],[1710122234000,0],[1710122235000,0],[1710122236000,0],[1710122237000,0],[1710122238000,0],[1710122239000,0],[1710122240000,0],[1710122241000,0],[1710122242000,0],[1710122243000,0],[1710122244000,0],[1710122245000,0],[1710122246000,0],[1710122247000,0],[1710122248000,0],[1710122249000,0],[1710122250000,0],[1710122251000,0],[1710122252000,0],[1710122253000,0],[1710122254000,0],[1710122255000,0],[1710122256000,0],[1710122257000,0],[1710122258000,0],[1710122259000,0],[1710122260000,0],[1710122261000,0],[1710122262000,0],[1710122263000,0],[1710122264000,0],[1710122265000,0],[1710122266000,0],[1710122267000,0],[1710122268000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00D5FF',
name: 'validações',
data: [
[1710122024000,0],[1710122025000,0],[1710122026000,0],[1710122027000,5],[1710122028000,5],[1710122029000,0],[1710122030000,0],[1710122031000,0],[1710122032000,0],[1710122033000,0],[1710122034000,0],[1710122035000,0],[1710122036000,0],[1710122037000,0],[1710122038000,0],[1710122039000,0],[1710122040000,0],[1710122041000,0],[1710122042000,0],[1710122043000,0],[1710122044000,0],[1710122045000,0],[1710122046000,0],[1710122047000,0],[1710122048000,0],[1710122049000,0],[1710122050000,0],[1710122051000,0],[1710122052000,0],[1710122053000,0],[1710122054000,0],[1710122055000,0],[1710122056000,0],[1710122057000,0],[1710122058000,0],[1710122059000,0],[1710122060000,0],[1710122061000,0],[1710122062000,0],[1710122063000,0],[1710122064000,0],[1710122065000,0],[1710122066000,0],[1710122067000,0],[1710122068000,0],[1710122069000,0],[1710122070000,0],[1710122071000,0],[1710122072000,0],[1710122073000,0],[1710122074000,0],[1710122075000,0],[1710122076000,0],[1710122077000,0],[1710122078000,0],[1710122079000,0],[1710122080000,0],[1710122081000,0],[1710122082000,0],[1710122083000,0],[1710122084000,0],[1710122085000,0],[1710122086000,0],[1710122087000,0],[1710122088000,0],[1710122089000,0],[1710122090000,0],[1710122091000,0],[1710122092000,0],[1710122093000,0],[1710122094000,0],[1710122095000,0],[1710122096000,0],[1710122097000,0],[1710122098000,0],[1710122099000,0],[1710122100000,0],[1710122101000,0],[1710122102000,0],[1710122103000,0],[1710122104000,0],[1710122105000,0],[1710122106000,0],[1710122107000,0],[1710122108000,0],[1710122109000,0],[1710122110000,0],[1710122111000,0],[1710122112000,0],[1710122113000,0],[1710122114000,0],[1710122115000,0],[1710122116000,0],[1710122117000,0],[1710122118000,0],[1710122119000,0],[1710122120000,0],[1710122121000,0],[1710122122000,0],[1710122123000,0],[1710122124000,0],[1710122125000,0],[1710122126000,0],[1710122127000,0],[1710122128000,0],[1710122129000,0],[1710122130000,0],[1710122131000,0],[1710122132000,0],[1710122133000,0],[1710122134000,0],[1710122135000,0],[1710122136000,0],[1710122137000,0],[1710122138000,0],[1710122139000,0],[1710122140000,0],[1710122141000,0],[1710122142000,0],[1710122143000,0],[1710122144000,0],[1710122145000,0],[1710122146000,0],[1710122147000,0],[1710122148000,0],[1710122149000,0],[1710122150000,0],[1710122151000,0],[1710122152000,0],[1710122153000,0],[1710122154000,0],[1710122155000,0],[1710122156000,0],[1710122157000,0],[1710122158000,0],[1710122159000,0],[1710122160000,0],[1710122161000,0],[1710122162000,0],[1710122163000,0],[1710122164000,0],[1710122165000,0],[1710122166000,0],[1710122167000,0],[1710122168000,0],[1710122169000,0],[1710122170000,0],[1710122171000,0],[1710122172000,0],[1710122173000,0],[1710122174000,0],[1710122175000,0],[1710122176000,0],[1710122177000,0],[1710122178000,0],[1710122179000,0],[1710122180000,0],[1710122181000,0],[1710122182000,0],[1710122183000,0],[1710122184000,0],[1710122185000,0],[1710122186000,0],[1710122187000,0],[1710122188000,0],[1710122189000,0],[1710122190000,0],[1710122191000,0],[1710122192000,0],[1710122193000,0],[1710122194000,0],[1710122195000,0],[1710122196000,0],[1710122197000,0],[1710122198000,0],[1710122199000,0],[1710122200000,0],[1710122201000,0],[1710122202000,0],[1710122203000,0],[1710122204000,0],[1710122205000,0],[1710122206000,0],[1710122207000,0],[1710122208000,0],[1710122209000,0],[1710122210000,0],[1710122211000,0],[1710122212000,0],[1710122213000,0],[1710122214000,0],[1710122215000,0],[1710122216000,0],[1710122217000,0],[1710122218000,0],[1710122219000,0],[1710122220000,0],[1710122221000,0],[1710122222000,0],[1710122223000,0],[1710122224000,0],[1710122225000,0],[1710122226000,0],[1710122227000,0],[1710122228000,0],[1710122229000,0],[1710122230000,0],[1710122231000,0],[1710122232000,0],[1710122233000,0],[1710122234000,0],[1710122235000,0],[1710122236000,0],[1710122237000,0],[1710122238000,0],[1710122239000,0],[1710122240000,0],[1710122241000,0],[1710122242000,0],[1710122243000,0],[1710122244000,0],[1710122245000,0],[1710122246000,0],[1710122247000,0],[1710122248000,0],[1710122249000,0],[1710122250000,0],[1710122251000,0],[1710122252000,0],[1710122253000,0],[1710122254000,0],[1710122255000,0],[1710122256000,0],[1710122257000,0],[1710122258000,0],[1710122259000,0],[1710122260000,0],[1710122261000,0],[1710122262000,0],[1710122263000,0],[1710122264000,0],[1710122265000,0],[1710122266000,0],[1710122267000,0],[1710122268000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00FF00',
name: 'validação concorrência saldo - 0',
data: [
[1710122024000,0],[1710122025000,0],[1710122026000,1],[1710122027000,0],[1710122028000,0],[1710122029000,0],[1710122030000,0],[1710122031000,0],[1710122032000,0],[1710122033000,0],[1710122034000,0],[1710122035000,0],[1710122036000,0],[1710122037000,0],[1710122038000,0],[1710122039000,0],[1710122040000,0],[1710122041000,0],[1710122042000,0],[1710122043000,0],[1710122044000,0],[1710122045000,0],[1710122046000,0],[1710122047000,0],[1710122048000,0],[1710122049000,0],[1710122050000,0],[1710122051000,0],[1710122052000,0],[1710122053000,0],[1710122054000,0],[1710122055000,0],[1710122056000,0],[1710122057000,0],[1710122058000,0],[1710122059000,0],[1710122060000,0],[1710122061000,0],[1710122062000,0],[1710122063000,0],[1710122064000,0],[1710122065000,0],[1710122066000,0],[1710122067000,0],[1710122068000,0],[1710122069000,0],[1710122070000,0],[1710122071000,0],[1710122072000,0],[1710122073000,0],[1710122074000,0],[1710122075000,0],[1710122076000,0],[1710122077000,0],[1710122078000,0],[1710122079000,0],[1710122080000,0],[1710122081000,0],[1710122082000,0],[1710122083000,0],[1710122084000,0],[1710122085000,0],[1710122086000,0],[1710122087000,0],[1710122088000,0],[1710122089000,0],[1710122090000,0],[1710122091000,0],[1710122092000,0],[1710122093000,0],[1710122094000,0],[1710122095000,0],[1710122096000,0],[1710122097000,0],[1710122098000,0],[1710122099000,0],[1710122100000,0],[1710122101000,0],[1710122102000,0],[1710122103000,0],[1710122104000,0],[1710122105000,0],[1710122106000,0],[1710122107000,0],[1710122108000,0],[1710122109000,0],[1710122110000,0],[1710122111000,0],[1710122112000,0],[1710122113000,0],[1710122114000,0],[1710122115000,0],[1710122116000,0],[1710122117000,0],[1710122118000,0],[1710122119000,0],[1710122120000,0],[1710122121000,0],[1710122122000,0],[1710122123000,0],[1710122124000,0],[1710122125000,0],[1710122126000,0],[1710122127000,0],[1710122128000,0],[1710122129000,0],[1710122130000,0],[1710122131000,0],[1710122132000,0],[1710122133000,0],[1710122134000,0],[1710122135000,0],[1710122136000,0],[1710122137000,0],[1710122138000,0],[1710122139000,0],[1710122140000,0],[1710122141000,0],[1710122142000,0],[1710122143000,0],[1710122144000,0],[1710122145000,0],[1710122146000,0],[1710122147000,0],[1710122148000,0],[1710122149000,0],[1710122150000,0],[1710122151000,0],[1710122152000,0],[1710122153000,0],[1710122154000,0],[1710122155000,0],[1710122156000,0],[1710122157000,0],[1710122158000,0],[1710122159000,0],[1710122160000,0],[1710122161000,0],[1710122162000,0],[1710122163000,0],[1710122164000,0],[1710122165000,0],[1710122166000,0],[1710122167000,0],[1710122168000,0],[1710122169000,0],[1710122170000,0],[1710122171000,0],[1710122172000,0],[1710122173000,0],[1710122174000,0],[1710122175000,0],[1710122176000,0],[1710122177000,0],[1710122178000,0],[1710122179000,0],[1710122180000,0],[1710122181000,0],[1710122182000,0],[1710122183000,0],[1710122184000,0],[1710122185000,0],[1710122186000,0],[1710122187000,0],[1710122188000,0],[1710122189000,0],[1710122190000,0],[1710122191000,0],[1710122192000,0],[1710122193000,0],[1710122194000,0],[1710122195000,0],[1710122196000,0],[1710122197000,0],[1710122198000,0],[1710122199000,0],[1710122200000,0],[1710122201000,0],[1710122202000,0],[1710122203000,0],[1710122204000,0],[1710122205000,0],[1710122206000,0],[1710122207000,0],[1710122208000,0],[1710122209000,0],[1710122210000,0],[1710122211000,0],[1710122212000,0],[1710122213000,0],[1710122214000,0],[1710122215000,0],[1710122216000,0],[1710122217000,0],[1710122218000,0],[1710122219000,0],[1710122220000,0],[1710122221000,0],[1710122222000,0],[1710122223000,0],[1710122224000,0],[1710122225000,0],[1710122226000,0],[1710122227000,0],[1710122228000,0],[1710122229000,0],[1710122230000,0],[1710122231000,0],[1710122232000,0],[1710122233000,0],[1710122234000,0],[1710122235000,0],[1710122236000,0],[1710122237000,0],[1710122238000,0],[1710122239000,0],[1710122240000,0],[1710122241000,0],[1710122242000,0],[1710122243000,0],[1710122244000,0],[1710122245000,0],[1710122246000,0],[1710122247000,0],[1710122248000,0],[1710122249000,0],[1710122250000,0],[1710122251000,0],[1710122252000,0],[1710122253000,0],[1710122254000,0],[1710122255000,0],[1710122256000,0],[1710122257000,0],[1710122258000,0],[1710122259000,0],[1710122260000,0],[1710122261000,0],[1710122262000,0],[1710122263000,0],[1710122264000,0],[1710122265000,0],[1710122266000,0],[1710122267000,0],[1710122268000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#9D00FF',
name: 'validação concorrência transações - c',
data: [
[1710122024000,0],[1710122025000,25],[1710122026000,25],[1710122027000,0],[1710122028000,0],[1710122029000,0],[1710122030000,0],[1710122031000,0],[1710122032000,0],[1710122033000,0],[1710122034000,0],[1710122035000,0],[1710122036000,0],[1710122037000,0],[1710122038000,0],[1710122039000,0],[1710122040000,0],[1710122041000,0],[1710122042000,0],[1710122043000,0],[1710122044000,0],[1710122045000,0],[1710122046000,0],[1710122047000,0],[1710122048000,0],[1710122049000,0],[1710122050000,0],[1710122051000,0],[1710122052000,0],[1710122053000,0],[1710122054000,0],[1710122055000,0],[1710122056000,0],[1710122057000,0],[1710122058000,0],[1710122059000,0],[1710122060000,0],[1710122061000,0],[1710122062000,0],[1710122063000,0],[1710122064000,0],[1710122065000,0],[1710122066000,0],[1710122067000,0],[1710122068000,0],[1710122069000,0],[1710122070000,0],[1710122071000,0],[1710122072000,0],[1710122073000,0],[1710122074000,0],[1710122075000,0],[1710122076000,0],[1710122077000,0],[1710122078000,0],[1710122079000,0],[1710122080000,0],[1710122081000,0],[1710122082000,0],[1710122083000,0],[1710122084000,0],[1710122085000,0],[1710122086000,0],[1710122087000,0],[1710122088000,0],[1710122089000,0],[1710122090000,0],[1710122091000,0],[1710122092000,0],[1710122093000,0],[1710122094000,0],[1710122095000,0],[1710122096000,0],[1710122097000,0],[1710122098000,0],[1710122099000,0],[1710122100000,0],[1710122101000,0],[1710122102000,0],[1710122103000,0],[1710122104000,0],[1710122105000,0],[1710122106000,0],[1710122107000,0],[1710122108000,0],[1710122109000,0],[1710122110000,0],[1710122111000,0],[1710122112000,0],[1710122113000,0],[1710122114000,0],[1710122115000,0],[1710122116000,0],[1710122117000,0],[1710122118000,0],[1710122119000,0],[1710122120000,0],[1710122121000,0],[1710122122000,0],[1710122123000,0],[1710122124000,0],[1710122125000,0],[1710122126000,0],[1710122127000,0],[1710122128000,0],[1710122129000,0],[1710122130000,0],[1710122131000,0],[1710122132000,0],[1710122133000,0],[1710122134000,0],[1710122135000,0],[1710122136000,0],[1710122137000,0],[1710122138000,0],[1710122139000,0],[1710122140000,0],[1710122141000,0],[1710122142000,0],[1710122143000,0],[1710122144000,0],[1710122145000,0],[1710122146000,0],[1710122147000,0],[1710122148000,0],[1710122149000,0],[1710122150000,0],[1710122151000,0],[1710122152000,0],[1710122153000,0],[1710122154000,0],[1710122155000,0],[1710122156000,0],[1710122157000,0],[1710122158000,0],[1710122159000,0],[1710122160000,0],[1710122161000,0],[1710122162000,0],[1710122163000,0],[1710122164000,0],[1710122165000,0],[1710122166000,0],[1710122167000,0],[1710122168000,0],[1710122169000,0],[1710122170000,0],[1710122171000,0],[1710122172000,0],[1710122173000,0],[1710122174000,0],[1710122175000,0],[1710122176000,0],[1710122177000,0],[1710122178000,0],[1710122179000,0],[1710122180000,0],[1710122181000,0],[1710122182000,0],[1710122183000,0],[1710122184000,0],[1710122185000,0],[1710122186000,0],[1710122187000,0],[1710122188000,0],[1710122189000,0],[1710122190000,0],[1710122191000,0],[1710122192000,0],[1710122193000,0],[1710122194000,0],[1710122195000,0],[1710122196000,0],[1710122197000,0],[1710122198000,0],[1710122199000,0],[1710122200000,0],[1710122201000,0],[1710122202000,0],[1710122203000,0],[1710122204000,0],[1710122205000,0],[1710122206000,0],[1710122207000,0],[1710122208000,0],[1710122209000,0],[1710122210000,0],[1710122211000,0],[1710122212000,0],[1710122213000,0],[1710122214000,0],[1710122215000,0],[1710122216000,0],[1710122217000,0],[1710122218000,0],[1710122219000,0],[1710122220000,0],[1710122221000,0],[1710122222000,0],[1710122223000,0],[1710122224000,0],[1710122225000,0],[1710122226000,0],[1710122227000,0],[1710122228000,0],[1710122229000,0],[1710122230000,0],[1710122231000,0],[1710122232000,0],[1710122233000,0],[1710122234000,0],[1710122235000,0],[1710122236000,0],[1710122237000,0],[1710122238000,0],[1710122239000,0],[1710122240000,0],[1710122241000,0],[1710122242000,0],[1710122243000,0],[1710122244000,0],[1710122245000,0],[1710122246000,0],[1710122247000,0],[1710122248000,0],[1710122249000,0],[1710122250000,0],[1710122251000,0],[1710122252000,0],[1710122253000,0],[1710122254000,0],[1710122255000,0],[1710122256000,0],[1710122257000,0],[1710122258000,0],[1710122259000,0],[1710122260000,0],[1710122261000,0],[1710122262000,0],[1710122263000,0],[1710122264000,0],[1710122265000,0],[1710122266000,0],[1710122267000,0],[1710122268000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FF00E1',
name: 'validação concorrência saldo - -25',
data: [
[1710122024000,1],[1710122025000,1],[1710122026000,0],[1710122027000,0],[1710122028000,0],[1710122029000,0],[1710122030000,0],[1710122031000,0],[1710122032000,0],[1710122033000,0],[1710122034000,0],[1710122035000,0],[1710122036000,0],[1710122037000,0],[1710122038000,0],[1710122039000,0],[1710122040000,0],[1710122041000,0],[1710122042000,0],[1710122043000,0],[1710122044000,0],[1710122045000,0],[1710122046000,0],[1710122047000,0],[1710122048000,0],[1710122049000,0],[1710122050000,0],[1710122051000,0],[1710122052000,0],[1710122053000,0],[1710122054000,0],[1710122055000,0],[1710122056000,0],[1710122057000,0],[1710122058000,0],[1710122059000,0],[1710122060000,0],[1710122061000,0],[1710122062000,0],[1710122063000,0],[1710122064000,0],[1710122065000,0],[1710122066000,0],[1710122067000,0],[1710122068000,0],[1710122069000,0],[1710122070000,0],[1710122071000,0],[1710122072000,0],[1710122073000,0],[1710122074000,0],[1710122075000,0],[1710122076000,0],[1710122077000,0],[1710122078000,0],[1710122079000,0],[1710122080000,0],[1710122081000,0],[1710122082000,0],[1710122083000,0],[1710122084000,0],[1710122085000,0],[1710122086000,0],[1710122087000,0],[1710122088000,0],[1710122089000,0],[1710122090000,0],[1710122091000,0],[1710122092000,0],[1710122093000,0],[1710122094000,0],[1710122095000,0],[1710122096000,0],[1710122097000,0],[1710122098000,0],[1710122099000,0],[1710122100000,0],[1710122101000,0],[1710122102000,0],[1710122103000,0],[1710122104000,0],[1710122105000,0],[1710122106000,0],[1710122107000,0],[1710122108000,0],[1710122109000,0],[1710122110000,0],[1710122111000,0],[1710122112000,0],[1710122113000,0],[1710122114000,0],[1710122115000,0],[1710122116000,0],[1710122117000,0],[1710122118000,0],[1710122119000,0],[1710122120000,0],[1710122121000,0],[1710122122000,0],[1710122123000,0],[1710122124000,0],[1710122125000,0],[1710122126000,0],[1710122127000,0],[1710122128000,0],[1710122129000,0],[1710122130000,0],[1710122131000,0],[1710122132000,0],[1710122133000,0],[1710122134000,0],[1710122135000,0],[1710122136000,0],[1710122137000,0],[1710122138000,0],[1710122139000,0],[1710122140000,0],[1710122141000,0],[1710122142000,0],[1710122143000,0],[1710122144000,0],[1710122145000,0],[1710122146000,0],[1710122147000,0],[1710122148000,0],[1710122149000,0],[1710122150000,0],[1710122151000,0],[1710122152000,0],[1710122153000,0],[1710122154000,0],[1710122155000,0],[1710122156000,0],[1710122157000,0],[1710122158000,0],[1710122159000,0],[1710122160000,0],[1710122161000,0],[1710122162000,0],[1710122163000,0],[1710122164000,0],[1710122165000,0],[1710122166000,0],[1710122167000,0],[1710122168000,0],[1710122169000,0],[1710122170000,0],[1710122171000,0],[1710122172000,0],[1710122173000,0],[1710122174000,0],[1710122175000,0],[1710122176000,0],[1710122177000,0],[1710122178000,0],[1710122179000,0],[1710122180000,0],[1710122181000,0],[1710122182000,0],[1710122183000,0],[1710122184000,0],[1710122185000,0],[1710122186000,0],[1710122187000,0],[1710122188000,0],[1710122189000,0],[1710122190000,0],[1710122191000,0],[1710122192000,0],[1710122193000,0],[1710122194000,0],[1710122195000,0],[1710122196000,0],[1710122197000,0],[1710122198000,0],[1710122199000,0],[1710122200000,0],[1710122201000,0],[1710122202000,0],[1710122203000,0],[1710122204000,0],[1710122205000,0],[1710122206000,0],[1710122207000,0],[1710122208000,0],[1710122209000,0],[1710122210000,0],[1710122211000,0],[1710122212000,0],[1710122213000,0],[1710122214000,0],[1710122215000,0],[1710122216000,0],[1710122217000,0],[1710122218000,0],[1710122219000,0],[1710122220000,0],[1710122221000,0],[1710122222000,0],[1710122223000,0],[1710122224000,0],[1710122225000,0],[1710122226000,0],[1710122227000,0],[1710122228000,0],[1710122229000,0],[1710122230000,0],[1710122231000,0],[1710122232000,0],[1710122233000,0],[1710122234000,0],[1710122235000,0],[1710122236000,0],[1710122237000,0],[1710122238000,0],[1710122239000,0],[1710122240000,0],[1710122241000,0],[1710122242000,0],[1710122243000,0],[1710122244000,0],[1710122245000,0],[1710122246000,0],[1710122247000,0],[1710122248000,0],[1710122249000,0],[1710122250000,0],[1710122251000,0],[1710122252000,0],[1710122253000,0],[1710122254000,0],[1710122255000,0],[1710122256000,0],[1710122257000,0],[1710122258000,0],[1710122259000,0],[1710122260000,0],[1710122261000,0],[1710122262000,0],[1710122263000,0],[1710122264000,0],[1710122265000,0],[1710122266000,0],[1710122267000,0],[1710122268000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#AECAEB',
name: 'validação concorrência transações - d',
data: [
[1710122024000,25],[1710122025000,0],[1710122026000,0],[1710122027000,0],[1710122028000,0],[1710122029000,0],[1710122030000,0],[1710122031000,0],[1710122032000,0],[1710122033000,0],[1710122034000,0],[1710122035000,0],[1710122036000,0],[1710122037000,0],[1710122038000,0],[1710122039000,0],[1710122040000,0],[1710122041000,0],[1710122042000,0],[1710122043000,0],[1710122044000,0],[1710122045000,0],[1710122046000,0],[1710122047000,0],[1710122048000,0],[1710122049000,0],[1710122050000,0],[1710122051000,0],[1710122052000,0],[1710122053000,0],[1710122054000,0],[1710122055000,0],[1710122056000,0],[1710122057000,0],[1710122058000,0],[1710122059000,0],[1710122060000,0],[1710122061000,0],[1710122062000,0],[1710122063000,0],[1710122064000,0],[1710122065000,0],[1710122066000,0],[1710122067000,0],[1710122068000,0],[1710122069000,0],[1710122070000,0],[1710122071000,0],[1710122072000,0],[1710122073000,0],[1710122074000,0],[1710122075000,0],[1710122076000,0],[1710122077000,0],[1710122078000,0],[1710122079000,0],[1710122080000,0],[1710122081000,0],[1710122082000,0],[1710122083000,0],[1710122084000,0],[1710122085000,0],[1710122086000,0],[1710122087000,0],[1710122088000,0],[1710122089000,0],[1710122090000,0],[1710122091000,0],[1710122092000,0],[1710122093000,0],[1710122094000,0],[1710122095000,0],[1710122096000,0],[1710122097000,0],[1710122098000,0],[1710122099000,0],[1710122100000,0],[1710122101000,0],[1710122102000,0],[1710122103000,0],[1710122104000,0],[1710122105000,0],[1710122106000,0],[1710122107000,0],[1710122108000,0],[1710122109000,0],[1710122110000,0],[1710122111000,0],[1710122112000,0],[1710122113000,0],[1710122114000,0],[1710122115000,0],[1710122116000,0],[1710122117000,0],[1710122118000,0],[1710122119000,0],[1710122120000,0],[1710122121000,0],[1710122122000,0],[1710122123000,0],[1710122124000,0],[1710122125000,0],[1710122126000,0],[1710122127000,0],[1710122128000,0],[1710122129000,0],[1710122130000,0],[1710122131000,0],[1710122132000,0],[1710122133000,0],[1710122134000,0],[1710122135000,0],[1710122136000,0],[1710122137000,0],[1710122138000,0],[1710122139000,0],[1710122140000,0],[1710122141000,0],[1710122142000,0],[1710122143000,0],[1710122144000,0],[1710122145000,0],[1710122146000,0],[1710122147000,0],[1710122148000,0],[1710122149000,0],[1710122150000,0],[1710122151000,0],[1710122152000,0],[1710122153000,0],[1710122154000,0],[1710122155000,0],[1710122156000,0],[1710122157000,0],[1710122158000,0],[1710122159000,0],[1710122160000,0],[1710122161000,0],[1710122162000,0],[1710122163000,0],[1710122164000,0],[1710122165000,0],[1710122166000,0],[1710122167000,0],[1710122168000,0],[1710122169000,0],[1710122170000,0],[1710122171000,0],[1710122172000,0],[1710122173000,0],[1710122174000,0],[1710122175000,0],[1710122176000,0],[1710122177000,0],[1710122178000,0],[1710122179000,0],[1710122180000,0],[1710122181000,0],[1710122182000,0],[1710122183000,0],[1710122184000,0],[1710122185000,0],[1710122186000,0],[1710122187000,0],[1710122188000,0],[1710122189000,0],[1710122190000,0],[1710122191000,0],[1710122192000,0],[1710122193000,0],[1710122194000,0],[1710122195000,0],[1710122196000,0],[1710122197000,0],[1710122198000,0],[1710122199000,0],[1710122200000,0],[1710122201000,0],[1710122202000,0],[1710122203000,0],[1710122204000,0],[1710122205000,0],[1710122206000,0],[1710122207000,0],[1710122208000,0],[1710122209000,0],[1710122210000,0],[1710122211000,0],[1710122212000,0],[1710122213000,0],[1710122214000,0],[1710122215000,0],[1710122216000,0],[1710122217000,0],[1710122218000,0],[1710122219000,0],[1710122220000,0],[1710122221000,0],[1710122222000,0],[1710122223000,0],[1710122224000,0],[1710122225000,0],[1710122226000,0],[1710122227000,0],[1710122228000,0],[1710122229000,0],[1710122230000,0],[1710122231000,0],[1710122232000,0],[1710122233000,0],[1710122234000,0],[1710122235000,0],[1710122236000,0],[1710122237000,0],[1710122238000,0],[1710122239000,0],[1710122240000,0],[1710122241000,0],[1710122242000,0],[1710122243000,0],[1710122244000,0],[1710122245000,0],[1710122246000,0],[1710122247000,0],[1710122248000,0],[1710122249000,0],[1710122250000,0],[1710122251000,0],[1710122252000,0],[1710122253000,0],[1710122254000,0],[1710122255000,0],[1710122256000,0],[1710122257000,0],[1710122258000,0],[1710122259000,0],[1710122260000,0],[1710122261000,0],[1710122262000,0],[1710122263000,0],[1710122264000,0],[1710122265000,0],[1710122266000,0],[1710122267000,0],[1710122268000,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: ['2', '4', '5', '7', '9', '11', '13', '14', '16', '18', '20', '21', '23', '25', '27', '28', '30', '32', '34', '36', '37', '39', '41', '43', '44', '46', '48', '50', '51', '53', '55', '57', '59', '60', '62', '64', '66', '67', '69', '71', '73', '74', '76', '78', '80', '82', '83', '85', '87', '89', '90', '92', '94', '96', '97', '99', '101', '103', '105', '106', '108', '110', '112', '113', '115', '117', '119', '120', '122', '124', '126', '128', '129', '131', '133', '135', '136', '138', '140', '142', '143', '145', '147', '149', '151', '152', '154', '156', '158', '159', '161', '163', '165', '166', '168', '170', '172', '174', '175', '177'],
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: [
72.02,26.01,1.34,0.08,0.02,0.01,0.01,0.02,0.01,0.02,0.02,0.02,0.03,0.01,0.0,0.01,0.0,0.0,0.01,0.01,0.0,0.0,0.0,0.01,0.01,0.0,0.0,0.01,0.01,0.0,0.0,0.01,0.01,0.0,0.0,0.0,0.0,0.01,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
],
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([[1710122024,[13,45,57,65,72,75,78,82,84,85]],[1710122025,[3,3,3,3,3,3,3,3,3,3]],[1710122026,[15,18,22,24,24,25,25,26,27,28]],[1710122027,[4,4,4,4,4,4,4,4,4,4]],[1710122028,[1,3,5,8,10,12,17,19,24,25]],[1710122029,[4,4,5,5,5,5,5,5,5,5]],[1710122030,[3,3,3,4,5,5,5,5,5,6]],[1710122031,[3,3,3,7,7,7,7,8,8,9]],[1710122032,[3,3,3,4,4,4,5,5,5,5]],[1710122033,[3,3,3,3,3,4,4,4,4,4]],[1710122034,[3,3,3,4,4,4,4,4,4,5]],[1710122035,[2,3,3,3,3,3,4,4,4,5]],[1710122036,[2,3,3,3,3,3,3,4,4,4]],[1710122037,[2,3,3,3,3,3,4,4,4,5]],[1710122038,[2,3,3,3,3,4,4,4,4,5]],[1710122039,[2,3,3,3,4,4,4,5,5,5]],[1710122040,[2,3,3,3,3,3,3,4,4,4]],[1710122041,[2,3,3,3,3,3,3,4,4,4]],[1710122042,[2,3,3,3,3,3,3,3,3,4]],[1710122043,[2,3,3,3,3,3,3,4,6,8]],[1710122044,[2,2,3,3,3,3,3,3,4,5]],[1710122045,[1,2,3,3,3,3,3,3,3,3]],[1710122046,[2,2,2,3,3,3,3,3,3,4]],[1710122047,[2,2,2,3,3,3,3,3,3,4]],[1710122048,[2,2,2,3,3,3,3,3,3,3]],[1710122049,[1,2,2,2,2,3,3,3,3,3]],[1710122050,[1,2,2,2,2,3,3,3,3,3]],[1710122051,[1,2,2,2,2,2,3,3,3,4]],[1710122052,[2,2,2,3,3,3,3,3,3,3]],[1710122053,[1,2,2,3,3,3,3,3,3,3]],[1710122054,[1,2,2,2,2,3,3,3,3,3]],[1710122055,[1,2,2,2,2,3,3,3,3,3]],[1710122056,[1,2,2,2,2,3,3,3,3,4]],[1710122057,[1,2,2,2,3,3,3,3,3,3]],[1710122058,[1,2,2,3,3,3,3,3,4,4]],[1710122059,[1,2,2,2,2,2,2,2,3,3]],[1710122060,[1,2,2,2,2,3,3,3,3,3]],[1710122061,[1,2,2,3,3,3,3,3,3,4]],[1710122062,[1,2,2,2,3,3,3,3,3,3]],[1710122063,[1,2,2,3,3,3,3,3,3,4]],[1710122064,[1,2,2,3,3,3,3,3,3,4]],[1710122065,[1,2,2,2,3,3,3,3,3,4]],[1710122066,[1,2,2,2,2,2,3,3,3,4]],[1710122067,[1,2,2,2,3,3,3,3,3,4]],[1710122068,[1,2,2,3,3,3,3,3,3,3]],[1710122069,[1,2,2,3,3,3,3,3,3,3]],[1710122070,[1,2,2,2,2,2,2,2,3,3]],[1710122071,[1,2,2,2,2,2,2,3,3,3]],[1710122072,[1,2,2,2,2,2,3,3,3,3]],[1710122073,[1,2,2,2,2,3,3,3,3,3]],[1710122074,[1,2,2,2,2,2,3,3,3,3]],[1710122075,[1,1,2,2,2,2,2,2,3,4]],[1710122076,[1,2,2,2,3,3,3,3,3,4]],[1710122077,[1,2,2,2,2,3,3,3,3,3]],[1710122078,[1,2,2,2,2,2,3,3,3,4]],[1710122079,[1,2,2,2,2,2,2,3,3,3]],[1710122080,[1,2,2,2,2,2,2,2,3,3]],[1710122081,[1,1,2,2,2,2,2,2,2,3]],[1710122082,[1,1,2,2,2,2,2,2,3,3]],[1710122083,[1,1,2,2,2,2,2,2,3,3]],[1710122084,[1,2,2,2,2,2,2,3,3,3]],[1710122085,[1,2,2,2,2,2,2,3,3,3]],[1710122086,[1,2,2,2,2,2,3,3,3,3]],[1710122087,[1,2,2,2,2,2,3,3,3,3]],[1710122088,[1,1,2,2,2,2,2,3,3,3]],[1710122089,[1,2,2,2,2,2,3,3,3,3]],[1710122090,[1,2,2,2,2,3,3,3,3,3]],[1710122091,[1,1,2,2,2,2,2,2,3,3]],[1710122092,[1,1,2,2,2,2,2,2,3,3]],[1710122093,[1,2,2,2,2,2,2,2,3,3]],[1710122094,[1,2,2,2,2,2,3,3,3,4]],[1710122095,[1,1,2,2,2,2,2,3,3,3]],[1710122096,[1,2,2,2,2,2,2,3,3,3]],[1710122097,[1,2,2,2,2,3,3,3,3,3]],[1710122098,[1,2,2,2,2,2,3,3,3,3]],[1710122099,[1,2,2,2,2,2,2,3,3,3]],[1710122100,[1,2,2,2,2,2,2,3,3,8]],[1710122101,[1,2,2,2,2,2,2,2,3,3]],[1710122102,[1,2,2,2,2,2,2,3,3,16]],[1710122103,[1,1,2,2,2,3,51,109,161,173]],[1710122104,[1,1,2,2,2,2,2,2,3,3]],[1710122105,[1,2,2,2,2,2,2,3,3,3]],[1710122106,[1,1,2,2,2,2,2,2,3,4]],[1710122107,[1,1,2,2,2,2,2,2,3,3]],[1710122108,[1,2,2,2,2,2,2,3,3,3]],[1710122109,[1,1,2,2,2,2,2,2,3,3]],[1710122110,[1,1,2,2,2,2,2,2,2,3]],[1710122111,[1,1,2,2,2,2,2,2,2,3]],[1710122112,[1,1,1,2,2,2,2,2,2,2]],[1710122113,[1,1,2,2,2,2,2,2,2,2]],[1710122114,[1,1,2,2,2,2,2,2,2,2]],[1710122115,[1,1,1,2,2,2,2,2,2,2]],[1710122116,[1,1,1,2,2,2,2,2,2,5]],[1710122117,[1,1,2,2,2,2,2,2,2,3]],[1710122118,[1,1,1,2,2,2,2,2,2,2]],[1710122119,[1,1,2,2,2,2,2,2,3,3]],[1710122120,[1,2,2,2,2,2,2,2,3,3]],[1710122121,[1,2,2,2,2,2,2,2,3,3]],[1710122122,[1,2,2,2,2,2,2,2,3,4]],[1710122123,[1,2,2,2,2,2,2,2,3,4]],[1710122124,[1,2,2,2,2,2,2,2,3,4]],[1710122125,[1,1,2,2,2,2,2,2,3,3]],[1710122126,[1,1,1,2,2,2,2,2,2,3]],[1710122127,[1,1,1,2,2,2,2,2,2,3]],[1710122128,[1,1,2,2,2,2,2,2,3,3]],[1710122129,[1,1,2,2,2,2,2,2,3,4]],[1710122130,[1,2,2,2,2,2,2,3,45,68]],[1710122131,[1,2,2,2,2,2,3,3,3,3]],[1710122132,[1,1,2,2,2,2,2,2,3,3]],[1710122133,[1,1,2,2,2,2,2,2,3,3]],[1710122134,[1,2,2,2,2,2,2,2,3,3]],[1710122135,[1,1,2,2,2,2,2,3,3,3]],[1710122136,[1,2,2,2,2,2,2,3,3,5]],[1710122137,[1,2,2,2,2,2,2,3,3,4]],[1710122138,[1,1,2,2,2,2,2,2,3,3]],[1710122139,[1,1,2,2,2,2,2,2,3,3]],[1710122140,[1,2,2,2,2,3,3,3,4,6]],[1710122141,[1,2,2,3,3,3,3,3,4,5]],[1710122142,[1,2,3,3,3,3,3,4,4,4]],[1710122143,[1,1,2,2,3,3,3,4,4,5]],[1710122144,[1,2,3,3,3,4,4,4,4,6]],[1710122145,[1,1,2,2,3,3,3,3,4,22]],[1710122146,[1,2,3,3,3,3,3,4,4,6]],[1710122147,[1,1,2,2,2,3,3,3,4,17]],[1710122148,[1,3,3,3,3,4,4,4,5,5]],[1710122149,[1,2,2,2,2,2,3,3,4,5]],[1710122150,[1,3,3,4,4,4,4,4,5,8]],[1710122151,[1,1,2,2,2,2,2,3,5,6]],[1710122152,[2,2,3,3,3,3,3,4,4,5]],[1710122153,[1,1,2,2,2,2,2,2,4,7]],[1710122154,[1,3,3,4,4,4,4,4,5,5]],[1710122155,[1,2,2,2,2,2,3,3,4,5]],[1710122156,[2,3,3,3,4,4,4,5,5,6]],[1710122157,[1,2,2,2,2,2,2,3,4,6]],[1710122158,[1,3,3,4,4,4,4,5,6,21]],[1710122159,[1,2,2,2,2,3,3,3,4,5]],[1710122160,[1,2,3,3,3,4,4,4,5,6]],[1710122161,[1,1,2,2,2,3,3,4,5,6]],[1710122162,[1,2,3,3,3,3,4,4,5,5]],[1710122163,[1,2,2,3,3,3,3,4,5,5]],[1710122164,[1,2,3,3,4,4,4,4,5,5]],[1710122165,[1,1,2,2,3,3,3,4,4,7]],[1710122166,[1,1,2,3,3,4,4,4,5,19]],[1710122167,[1,2,2,3,3,3,4,4,4,5]],[1710122168,[1,2,2,3,3,3,3,4,5,7]],[1710122169,[1,2,2,3,3,3,3,4,4,5]],[1710122170,[1,2,2,3,3,4,4,4,5,6]],[1710122171,[1,1,2,4,4,4,4,4,5,7]],[1710122172,[1,1,2,2,3,3,3,4,5,6]],[1710122173,[1,2,3,3,3,4,4,4,5,5]],[1710122174,[1,2,2,2,3,3,3,4,6,8]],[1710122175,[1,2,3,3,3,4,4,4,5,5]],[1710122176,[1,2,2,2,2,2,2,3,4,6]],[1710122177,[1,2,3,3,3,4,4,4,5,5]],[1710122178,[1,2,2,2,2,2,3,3,3,4]],[1710122179,[1,2,3,3,3,4,4,4,5,6]],[1710122180,[1,2,2,2,2,2,3,3,3,5]],[1710122181,[1,2,3,3,4,4,4,4,6,20]],[1710122182,[1,2,2,2,2,2,3,3,3,4]],[1710122183,[1,2,2,3,3,4,4,4,5,22]],[1710122184,[1,2,2,2,2,2,2,3,3,4]],[1710122185,[1,2,3,3,4,4,4,4,5,6]],[1710122186,[1,2,2,2,2,2,2,3,3,3]],[1710122187,[1,2,2,4,4,4,4,4,7,10]],[1710122188,[1,2,2,2,2,2,3,3,3,5]],[1710122189,[1,2,2,3,3,3,4,4,5,6]],[1710122190,[1,2,2,19,31,43,58,74,97,178]],[1710122191,[1,2,2,3,3,4,4,4,5,5]],[1710122192,[1,2,2,2,2,2,3,3,3,3]],[1710122193,[1,1,2,2,3,3,3,3,4,4]],[1710122194,[1,1,1,1,2,2,2,2,2,4]],[1710122195,[1,1,2,2,2,2,3,3,4,4]],[1710122196,[1,1,2,2,2,2,2,2,3,4]],[1710122197,[1,1,2,2,3,3,3,3,4,5]],[1710122198,[1,1,2,2,2,2,3,3,3,4]],[1710122199,[1,2,2,2,2,2,3,3,4,6]],[1710122200,[1,2,2,2,2,2,3,3,4,4]],[1710122201,[1,1,2,2,2,2,2,3,4,5]],[1710122202,[1,2,2,2,2,2,3,3,3,5]],[1710122203,[1,2,3,3,3,4,4,4,5,5]],[1710122204,[1,1,1,2,3,3,3,3,4,5]],[1710122205,[1,2,3,3,3,4,4,4,5,6]],[1710122206,[1,2,2,3,3,3,3,4,5,5]],[1710122207,[1,2,3,3,3,4,4,4,5,7]],[1710122208,[1,1,2,2,3,3,3,3,4,4]],[1710122209,[1,2,3,3,3,3,4,4,4,6]],[1710122210,[1,2,2,3,3,3,3,4,5,5]],[1710122211,[1,2,3,3,3,4,4,4,5,17]],[1710122212,[1,2,2,3,3,3,4,4,5,19]],[1710122213,[1,2,3,3,3,4,4,4,5,7]],[1710122214,[1,1,2,3,3,3,4,4,5,7]],[1710122215,[1,1,2,3,4,4,4,4,5,5]],[1710122216,[1,1,2,3,4,4,4,4,5,5]],[1710122217,[1,1,2,3,3,4,4,4,5,7]],[1710122218,[1,2,3,3,4,4,4,4,5,5]],[1710122219,[1,1,2,3,3,3,4,4,5,6]],[1710122220,[2,2,3,4,4,4,4,5,6,6]],[1710122221,[1,2,2,2,3,3,3,3,4,5]],[1710122222,[1,2,3,3,3,3,3,4,4,6]],[1710122223,[1,1,2,2,2,3,3,3,4,5]],[1710122224,[1,2,3,3,3,3,3,4,4,5]],[1710122225,[1,2,2,2,3,3,4,4,5,6]],[1710122226,[1,2,3,4,4,4,4,5,5,6]],[1710122227,[1,2,2,2,2,2,2,3,4,6]],[1710122228,[1,2,3,4,4,4,4,4,5,6]],[1710122229,[1,2,2,2,2,3,3,3,3,5]],[1710122230,[1,2,3,4,4,4,4,4,5,6]],[1710122231,[1,1,2,2,2,2,2,2,3,5]],[1710122232,[1,2,3,3,4,4,4,4,5,7]],[1710122233,[1,2,2,2,2,2,2,2,3,5]],[1710122234,[1,2,3,3,4,4,4,4,5,7]],[1710122235,[1,2,2,2,2,2,3,3,3,3]],[1710122236,[1,2,3,3,3,3,4,4,5,6]],[1710122237,[1,1,2,2,2,2,2,3,3,4]],[1710122238,[1,2,2,2,3,3,3,4,4,6]],[1710122239,[1,1,2,2,2,2,2,3,3,3]],[1710122240,[1,2,3,3,4,4,4,5,6,20]],[1710122241,[1,2,2,2,2,3,3,3,4,6]],[1710122242,[1,2,3,4,4,4,4,5,6,23]],[1710122243,[1,2,2,2,3,3,3,4,4,5]],[1710122244,[1,2,2,3,3,3,3,4,5,6]],[1710122245,[1,2,2,2,2,3,3,3,4,5]],[1710122246,[1,2,2,3,3,4,4,4,5,6]],[1710122247,[1,1,2,3,3,3,4,4,5,6]],[1710122248,[1,2,2,2,3,3,4,4,5,6]],[1710122249,[1,2,2,3,3,3,3,4,5,5]],[1710122250,[1,2,3,19,27,41,52,67,86,94]],[1710122251,[1,2,2,3,3,3,4,4,4,5]],[1710122252,[1,2,2,2,2,2,3,3,5,6]],[1710122253,[1,2,2,3,3,3,4,4,5,6]],[1710122254,[1,1,2,2,2,2,2,2,3,7]],[1710122255,[1,2,2,3,3,4,4,4,5,5]],[1710122256,[1,2,2,2,2,2,2,3,3,3]],[1710122257,[1,2,2,3,3,3,4,4,5,5]],[1710122258,[1,2,2,2,2,2,2,3,3,3]],[1710122259,[1,2,2,3,3,3,4,4,5,6]],[1710122260,[1,2,2,2,2,2,2,3,3,3]],[1710122261,[1,2,2,3,3,3,4,4,6,17]],[1710122262,[1,1,2,2,2,2,2,2,3,3]],[1710122263,[1,1,2,2,2,3,3,3,4,5]],[1710122264,[1,1,1,2,2,2,2,2,2,2]],[1710122265,[1,1,2,2,3,3,3,3,4,5]],[1710122266,[1,1,2,3,3,4,4,4,5,5]],[1710122267,[1,2,3,4,4,4,4,4,5,6]],[1710122268,[1,2,3,3,4,4,4,4,5,21]]]);
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([[1710122024,[25,25,0]],[1710122025,[1,1,0]],[1710122026,[25,25,0]],[1710122027,[1,1,0]],[1710122028,[71,71,0]],[1710122029,[3,3,0]],[1710122030,[6,6,0]],[1710122031,[9,9,0]],[1710122032,[11,11,0]],[1710122033,[13,13,0]],[1710122034,[18,18,0]],[1710122035,[19,19,0]],[1710122036,[24,24,0]],[1710122037,[26,26,0]],[1710122038,[27,27,0]],[1710122039,[32,32,0]],[1710122040,[34,34,0]],[1710122041,[37,37,0]],[1710122042,[39,39,0]],[1710122043,[43,43,0]],[1710122044,[44,44,0]],[1710122045,[48,48,0]],[1710122046,[50,50,0]],[1710122047,[54,54,0]],[1710122048,[56,56,0]],[1710122049,[61,61,0]],[1710122050,[61,61,0]],[1710122051,[65,65,0]],[1710122052,[67,67,0]],[1710122053,[70,70,0]],[1710122054,[73,73,0]],[1710122055,[77,77,0]],[1710122056,[80,80,0]],[1710122057,[81,81,0]],[1710122058,[83,83,0]],[1710122059,[88,88,0]],[1710122060,[91,91,0]],[1710122061,[92,92,0]],[1710122062,[96,96,0]],[1710122063,[98,98,0]],[1710122064,[101,101,0]],[1710122065,[105,105,0]],[1710122066,[107,107,0]],[1710122067,[110,110,0]],[1710122068,[112,112,0]],[1710122069,[116,116,0]],[1710122070,[118,118,0]],[1710122071,[121,121,0]],[1710122072,[123,123,0]],[1710122073,[126,126,0]],[1710122074,[129,129,0]],[1710122075,[133,133,0]],[1710122076,[135,135,0]],[1710122077,[138,138,0]],[1710122078,[141,141,0]],[1710122079,[143,143,0]],[1710122080,[147,147,0]],[1710122081,[149,149,0]],[1710122082,[151,151,0]],[1710122083,[155,155,0]],[1710122084,[158,158,0]],[1710122085,[159,159,0]],[1710122086,[165,165,0]],[1710122087,[164,164,0]],[1710122088,[170,170,0]],[1710122089,[172,172,0]],[1710122090,[174,174,0]],[1710122091,[176,176,0]],[1710122092,[181,181,0]],[1710122093,[183,183,0]],[1710122094,[186,186,0]],[1710122095,[188,188,0]],[1710122096,[192,192,0]],[1710122097,[194,194,0]],[1710122098,[196,196,0]],[1710122099,[199,199,0]],[1710122100,[203,203,0]],[1710122101,[205,205,0]],[1710122102,[207,207,0]],[1710122103,[211,211,0]],[1710122104,[213,213,0]],[1710122105,[217,217,0]],[1710122106,[220,220,0]],[1710122107,[222,222,0]],[1710122108,[225,225,0]],[1710122109,[227,227,0]],[1710122110,[231,231,0]],[1710122111,[233,233,0]],[1710122112,[236,236,0]],[1710122113,[239,239,0]],[1710122114,[243,243,0]],[1710122115,[243,243,0]],[1710122116,[249,249,0]],[1710122117,[250,250,0]],[1710122118,[251,251,0]],[1710122119,[257,257,0]],[1710122120,[259,259,0]],[1710122121,[262,262,0]],[1710122122,[264,264,0]],[1710122123,[266,266,0]],[1710122124,[270,270,0]],[1710122125,[273,273,0]],[1710122126,[275,275,0]],[1710122127,[279,279,0]],[1710122128,[281,281,0]],[1710122129,[283,283,0]],[1710122130,[286,286,0]],[1710122131,[290,290,0]],[1710122132,[292,292,0]],[1710122133,[295,295,0]],[1710122134,[299,299,0]],[1710122135,[300,300,0]],[1710122136,[304,304,0]],[1710122137,[306,306,0]],[1710122138,[309,309,0]],[1710122139,[313,313,0]],[1710122140,[314,314,0]],[1710122141,[317,317,0]],[1710122142,[321,321,0]],[1710122143,[323,323,0]],[1710122144,[326,326,0]],[1710122145,[329,329,0]],[1710122146,[332,332,0]],[1710122147,[334,334,0]],[1710122148,[339,339,0]],[1710122149,[339,339,0]],[1710122150,[340,340,0]],[1710122151,[340,340,0]],[1710122152,[340,340,0]],[1710122153,[341,341,0]],[1710122154,[339,339,0]],[1710122155,[341,341,0]],[1710122156,[340,340,0]],[1710122157,[340,340,0]],[1710122158,[340,340,0]],[1710122159,[339,339,0]],[1710122160,[341,341,0]],[1710122161,[340,340,0]],[1710122162,[340,340,0]],[1710122163,[340,340,0]],[1710122164,[339,339,0]],[1710122165,[340,340,0]],[1710122166,[341,341,0]],[1710122167,[340,340,0]],[1710122168,[340,340,0]],[1710122169,[340,340,0]],[1710122170,[340,340,0]],[1710122171,[339,339,0]],[1710122172,[341,341,0]],[1710122173,[340,340,0]],[1710122174,[340,340,0]],[1710122175,[340,340,0]],[1710122176,[340,340,0]],[1710122177,[340,340,0]],[1710122178,[340,340,0]],[1710122179,[340,340,0]],[1710122180,[340,340,0]],[1710122181,[340,340,0]],[1710122182,[340,340,0]],[1710122183,[339,339,0]],[1710122184,[341,341,0]],[1710122185,[340,340,0]],[1710122186,[340,340,0]],[1710122187,[340,340,0]],[1710122188,[340,340,0]],[1710122189,[339,339,0]],[1710122190,[340,340,0]],[1710122191,[341,341,0]],[1710122192,[339,339,0]],[1710122193,[340,340,0]],[1710122194,[340,340,0]],[1710122195,[340,340,0]],[1710122196,[341,341,0]],[1710122197,[339,339,0]],[1710122198,[341,341,0]],[1710122199,[340,340,0]],[1710122200,[339,339,0]],[1710122201,[340,340,0]],[1710122202,[341,341,0]],[1710122203,[339,339,0]],[1710122204,[340,340,0]],[1710122205,[341,341,0]],[1710122206,[339,339,0]],[1710122207,[341,341,0]],[1710122208,[339,339,0]],[1710122209,[340,340,0]],[1710122210,[339,339,0]],[1710122211,[342,342,0]],[1710122212,[340,340,0]],[1710122213,[340,340,0]],[1710122214,[339,339,0]],[1710122215,[341,341,0]],[1710122216,[339,339,0]],[1710122217,[341,341,0]],[1710122218,[339,339,0]],[1710122219,[341,341,0]],[1710122220,[340,340,0]],[1710122221,[339,339,0]],[1710122222,[341,341,0]],[1710122223,[339,339,0]],[1710122224,[340,340,0]],[1710122225,[341,341,0]],[1710122226,[340,340,0]],[1710122227,[340,340,0]],[1710122228,[340,340,0]],[1710122229,[340,340,0]],[1710122230,[340,340,0]],[1710122231,[340,340,0]],[1710122232,[340,340,0]],[1710122233,[339,339,0]],[1710122234,[341,341,0]],[1710122235,[340,340,0]],[1710122236,[339,339,0]],[1710122237,[340,340,0]],[1710122238,[340,340,0]],[1710122239,[341,341,0]],[1710122240,[340,340,0]],[1710122241,[340,340,0]],[1710122242,[340,340,0]],[1710122243,[340,340,0]],[1710122244,[340,340,0]],[1710122245,[340,340,0]],[1710122246,[340,340,0]],[1710122247,[340,340,0]],[1710122248,[340,340,0]],[1710122249,[340,340,0]],[1710122250,[340,340,0]],[1710122251,[340,340,0]],[1710122252,[340,340,0]],[1710122253,[338,338,0]],[1710122254,[342,342,0]],[1710122255,[340,340,0]],[1710122256,[340,340,0]],[1710122257,[340,340,0]],[1710122258,[340,340,0]],[1710122259,[340,340,0]],[1710122260,[340,340,0]],[1710122261,[339,339,0]],[1710122262,[341,341,0]],[1710122263,[339,339,0]],[1710122264,[339,339,0]],[1710122265,[342,342,0]],[1710122266,[340,340,0]],[1710122267,[340,340,0]],[1710122268,[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:[