-
Notifications
You must be signed in to change notification settings - Fork 925
/
index.html
1173 lines (1104 loc) · 93.3 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-10 18:05:35 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 - thyagopiske-dotnet">
<span class="simulation-information-label">Description: </span>
<span>Rinha de Backend - 2024/Q1: Crébito - thyagopiske-dotnet</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: [
[1710093935000,0],[1710093936000,0],[1710093937000,0],[1710093938000,0],[1710093939000,0],[1710093940000,0],[1710093941000,2],[1710093942000,2],[1710093943000,4],[1710093944000,4],[1710093945000,5],[1710093946000,6],[1710093947000,7],[1710093948000,9],[1710093949000,8],[1710093950000,10],[1710093951000,10],[1710093952000,12],[1710093953000,12],[1710093954000,14],[1710093955000,14],[1710093956000,15],[1710093957000,16],[1710093958000,17],[1710093959000,17],[1710093960000,19],[1710093961000,20],[1710093962000,20],[1710093963000,22],[1710093964000,22],[1710093965000,23],[1710093966000,25],[1710093967000,25],[1710093968000,26],[1710093969000,26],[1710093970000,28],[1710093971000,29],[1710093972000,30],[1710093973000,30],[1710093974000,32],[1710093975000,32],[1710093976000,33],[1710093977000,34],[1710093978000,35],[1710093979000,36],[1710093980000,37],[1710093981000,38],[1710093982000,39],[1710093983000,39],[1710093984000,41],[1710093985000,41],[1710093986000,43],[1710093987000,43],[1710093988000,44],[1710093989000,45],[1710093990000,46],[1710093991000,47],[1710093992000,48],[1710093993000,48],[1710093994000,50],[1710093995000,50],[1710093996000,52],[1710093997000,52],[1710093998000,53],[1710093999000,54],[1710094000000,56],[1710094001000,55],[1710094002000,57],[1710094003000,58],[1710094004000,59],[1710094005000,59],[1710094006000,61],[1710094007000,61],[1710094008000,63],[1710094009000,63],[1710094010000,64],[1710094011000,65],[1710094012000,66],[1710094013000,67],[1710094014000,68],[1710094015000,68],[1710094016000,70],[1710094017000,70],[1710094018000,72],[1710094019000,72],[1710094020000,73],[1710094021000,74],[1710094022000,75],[1710094023000,76],[1710094024000,78],[1710094025000,78],[1710094026000,80],[1710094027000,79],[1710094028000,81],[1710094029000,82],[1710094030000,82],[1710094031000,84],[1710094032000,85],[1710094033000,85],[1710094034000,86],[1710094035000,86],[1710094036000,88],[1710094037000,89],[1710094038000,90],[1710094039000,91],[1710094040000,91],[1710094041000,92],[1710094042000,94],[1710094043000,94],[1710094044000,95],[1710094045000,96],[1710094046000,97],[1710094047000,97],[1710094048000,99],[1710094049000,99],[1710094050000,101],[1710094051000,101],[1710094052000,103],[1710094053000,103],[1710094054000,104],[1710094055000,105],[1710094056000,106],[1710094057000,107],[1710094058000,107],[1710094059000,109],[1710094060000,110],[1710094061000,110],[1710094062000,110],[1710094063000,110],[1710094064000,110],[1710094065000,110],[1710094066000,110],[1710094067000,110],[1710094068000,110],[1710094069000,110],[1710094070000,110],[1710094071000,110],[1710094072000,110],[1710094073000,110],[1710094074000,110],[1710094075000,110],[1710094076000,110],[1710094077000,110],[1710094078000,110],[1710094079000,110],[1710094080000,110],[1710094081000,110],[1710094082000,110],[1710094083000,110],[1710094084000,110],[1710094085000,110],[1710094086000,110],[1710094087000,110],[1710094088000,110],[1710094089000,110],[1710094090000,110],[1710094091000,110],[1710094092000,110],[1710094093000,110],[1710094094000,110],[1710094095000,110],[1710094096000,110],[1710094097000,110],[1710094098000,110],[1710094099000,110],[1710094100000,110],[1710094101000,110],[1710094102000,110],[1710094103000,110],[1710094104000,110],[1710094105000,110],[1710094106000,110],[1710094107000,110],[1710094108000,110],[1710094109000,110],[1710094110000,110],[1710094111000,110],[1710094112000,110],[1710094113000,110],[1710094114000,110],[1710094115000,110],[1710094116000,110],[1710094117000,110],[1710094118000,110],[1710094119000,110],[1710094120000,110],[1710094121000,110],[1710094122000,110],[1710094123000,110],[1710094124000,110],[1710094125000,110],[1710094126000,110],[1710094127000,110],[1710094128000,110],[1710094129000,110],[1710094130000,110],[1710094131000,110],[1710094132000,110],[1710094133000,110],[1710094134000,110],[1710094135000,110],[1710094136000,110],[1710094137000,110],[1710094138000,110],[1710094139000,110],[1710094140000,110],[1710094141000,110],[1710094142000,110],[1710094143000,110],[1710094144000,110],[1710094145000,110],[1710094146000,110],[1710094147000,110],[1710094148000,110],[1710094149000,110],[1710094150000,110],[1710094151000,110],[1710094152000,110],[1710094153000,110],[1710094154000,110],[1710094155000,110],[1710094156000,110],[1710094157000,110],[1710094158000,110],[1710094159000,110],[1710094160000,110],[1710094161000,110],[1710094162000,110],[1710094163000,110],[1710094164000,110],[1710094165000,110],[1710094166000,110],[1710094167000,110],[1710094168000,110],[1710094169000,110],[1710094170000,110],[1710094171000,110],[1710094172000,110],[1710094173000,110],[1710094174000,110],[1710094175000,110],[1710094176000,110],[1710094177000,110],[1710094178000,110],[1710094179000,110],[1710094180000,108]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#68b65c',
name: 'débitos',
data: [
[1710093935000,0],[1710093936000,0],[1710093937000,0],[1710093938000,0],[1710093939000,0],[1710093940000,0],[1710093941000,2],[1710093942000,4],[1710093943000,6],[1710093944000,7],[1710093945000,9],[1710093946000,11],[1710093947000,13],[1710093948000,15],[1710093949000,17],[1710093950000,19],[1710093951000,20],[1710093952000,22],[1710093953000,24],[1710093954000,25],[1710093955000,28],[1710093956000,29],[1710093957000,31],[1710093958000,33],[1710093959000,35],[1710093960000,37],[1710093961000,38],[1710093962000,41],[1710093963000,42],[1710093964000,44],[1710093965000,46],[1710093966000,47],[1710093967000,50],[1710093968000,51],[1710093969000,53],[1710093970000,55],[1710093971000,56],[1710093972000,59],[1710093973000,60],[1710093974000,62],[1710093975000,64],[1710093976000,66],[1710093977000,68],[1710093978000,69],[1710093979000,71],[1710093980000,74],[1710093981000,75],[1710093982000,78],[1710093983000,80],[1710093984000,81],[1710093985000,83],[1710093986000,85],[1710093987000,86],[1710093988000,88],[1710093989000,89],[1710093990000,92],[1710093991000,93],[1710093992000,95],[1710093993000,97],[1710093994000,98],[1710093995000,101],[1710093996000,102],[1710093997000,104],[1710093998000,106],[1710093999000,108],[1710094000000,110],[1710094001000,111],[1710094002000,113],[1710094003000,115],[1710094004000,117],[1710094005000,119],[1710094006000,120],[1710094007000,123],[1710094008000,124],[1710094009000,126],[1710094010000,128],[1710094011000,129],[1710094012000,132],[1710094013000,133],[1710094014000,135],[1710094015000,137],[1710094016000,139],[1710094017000,141],[1710094018000,142],[1710094019000,144],[1710094020000,147],[1710094021000,147],[1710094022000,150],[1710094023000,152],[1710094024000,154],[1710094025000,156],[1710094026000,158],[1710094027000,160],[1710094028000,162],[1710094029000,163],[1710094030000,166],[1710094031000,167],[1710094032000,168],[1710094033000,170],[1710094034000,171],[1710094035000,174],[1710094036000,175],[1710094037000,177],[1710094038000,179],[1710094039000,181],[1710094040000,183],[1710094041000,184],[1710094042000,186],[1710094043000,188],[1710094044000,190],[1710094045000,192],[1710094046000,193],[1710094047000,196],[1710094048000,197],[1710094049000,199],[1710094050000,201],[1710094051000,202],[1710094052000,205],[1710094053000,206],[1710094054000,208],[1710094055000,210],[1710094056000,212],[1710094057000,214],[1710094058000,215],[1710094059000,217],[1710094060000,220],[1710094061000,220],[1710094062000,220],[1710094063000,220],[1710094064000,220],[1710094065000,220],[1710094066000,220],[1710094067000,220],[1710094068000,220],[1710094069000,220],[1710094070000,220],[1710094071000,220],[1710094072000,220],[1710094073000,220],[1710094074000,220],[1710094075000,220],[1710094076000,220],[1710094077000,220],[1710094078000,220],[1710094079000,220],[1710094080000,220],[1710094081000,220],[1710094082000,220],[1710094083000,220],[1710094084000,220],[1710094085000,220],[1710094086000,220],[1710094087000,220],[1710094088000,220],[1710094089000,220],[1710094090000,220],[1710094091000,220],[1710094092000,220],[1710094093000,220],[1710094094000,220],[1710094095000,220],[1710094096000,220],[1710094097000,220],[1710094098000,220],[1710094099000,220],[1710094100000,220],[1710094101000,220],[1710094102000,220],[1710094103000,220],[1710094104000,220],[1710094105000,220],[1710094106000,220],[1710094107000,220],[1710094108000,220],[1710094109000,220],[1710094110000,220],[1710094111000,220],[1710094112000,220],[1710094113000,220],[1710094114000,220],[1710094115000,220],[1710094116000,220],[1710094117000,220],[1710094118000,220],[1710094119000,220],[1710094120000,220],[1710094121000,220],[1710094122000,220],[1710094123000,220],[1710094124000,220],[1710094125000,220],[1710094126000,220],[1710094127000,220],[1710094128000,220],[1710094129000,220],[1710094130000,220],[1710094131000,220],[1710094132000,220],[1710094133000,220],[1710094134000,220],[1710094135000,220],[1710094136000,220],[1710094137000,220],[1710094138000,220],[1710094139000,220],[1710094140000,220],[1710094141000,220],[1710094142000,220],[1710094143000,220],[1710094144000,220],[1710094145000,220],[1710094146000,220],[1710094147000,220],[1710094148000,220],[1710094149000,220],[1710094150000,220],[1710094151000,220],[1710094152000,220],[1710094153000,220],[1710094154000,220],[1710094155000,220],[1710094156000,220],[1710094157000,220],[1710094158000,220],[1710094159000,220],[1710094160000,220],[1710094161000,220],[1710094162000,220],[1710094163000,220],[1710094164000,220],[1710094165000,220],[1710094166000,220],[1710094167000,220],[1710094168000,220],[1710094169000,220],[1710094170000,220],[1710094171000,220],[1710094172000,220],[1710094173000,220],[1710094174000,220],[1710094175000,220],[1710094176000,220],[1710094177000,220],[1710094178000,220],[1710094179000,220],[1710094180000,217]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#f15b4f',
name: 'extratos',
data: [
[1710093935000,0],[1710093936000,0],[1710093937000,0],[1710093938000,0],[1710093939000,0],[1710093940000,1],[1710093941000,2],[1710093942000,1],[1710093943000,1],[1710093944000,1],[1710093945000,1],[1710093946000,2],[1710093947000,1],[1710093948000,2],[1710093949000,3],[1710093950000,1],[1710093951000,2],[1710093952000,2],[1710093953000,2],[1710093954000,3],[1710093955000,2],[1710093956000,2],[1710093957000,2],[1710093958000,3],[1710093959000,2],[1710093960000,3],[1710093961000,2],[1710093962000,3],[1710093963000,2],[1710093964000,3],[1710093965000,3],[1710093966000,3],[1710093967000,3],[1710093968000,3],[1710093969000,3],[1710093970000,3],[1710093971000,4],[1710093972000,3],[1710093973000,3],[1710093974000,4],[1710093975000,3],[1710093976000,4],[1710093977000,4],[1710093978000,4],[1710093979000,4],[1710093980000,4],[1710093981000,4],[1710093982000,4],[1710093983000,4],[1710093984000,4],[1710093985000,4],[1710093986000,5],[1710093987000,4],[1710093988000,5],[1710093989000,5],[1710093990000,4],[1710093991000,5],[1710093992000,5],[1710093993000,5],[1710093994000,5],[1710093995000,5],[1710093996000,5],[1710093997000,5],[1710093998000,6],[1710093999000,5],[1710094000000,6],[1710094001000,5],[1710094002000,6],[1710094003000,5],[1710094004000,6],[1710094005000,6],[1710094006000,6],[1710094007000,6],[1710094008000,6],[1710094009000,6],[1710094010000,6],[1710094011000,7],[1710094012000,6],[1710094013000,6],[1710094014000,7],[1710094015000,6],[1710094016000,7],[1710094017000,7],[1710094018000,7],[1710094019000,7],[1710094020000,7],[1710094021000,7],[1710094022000,7],[1710094023000,7],[1710094024000,7],[1710094025000,7],[1710094026000,8],[1710094027000,7],[1710094028000,8],[1710094029000,8],[1710094030000,7],[1710094031000,8],[1710094032000,8],[1710094033000,8],[1710094034000,8],[1710094035000,8],[1710094036000,8],[1710094037000,8],[1710094038000,9],[1710094039000,8],[1710094040000,9],[1710094041000,8],[1710094042000,9],[1710094043000,8],[1710094044000,9],[1710094045000,9],[1710094046000,9],[1710094047000,9],[1710094048000,9],[1710094049000,9],[1710094050000,9],[1710094051000,10],[1710094052000,9],[1710094053000,9],[1710094054000,10],[1710094055000,9],[1710094056000,10],[1710094057000,10],[1710094058000,10],[1710094059000,10],[1710094060000,10],[1710094061000,10],[1710094062000,10],[1710094063000,10],[1710094064000,10],[1710094065000,10],[1710094066000,10],[1710094067000,10],[1710094068000,10],[1710094069000,10],[1710094070000,10],[1710094071000,10],[1710094072000,10],[1710094073000,10],[1710094074000,10],[1710094075000,10],[1710094076000,10],[1710094077000,10],[1710094078000,10],[1710094079000,10],[1710094080000,10],[1710094081000,10],[1710094082000,10],[1710094083000,10],[1710094084000,10],[1710094085000,10],[1710094086000,10],[1710094087000,10],[1710094088000,10],[1710094089000,10],[1710094090000,10],[1710094091000,10],[1710094092000,10],[1710094093000,10],[1710094094000,10],[1710094095000,10],[1710094096000,10],[1710094097000,10],[1710094098000,10],[1710094099000,10],[1710094100000,10],[1710094101000,10],[1710094102000,10],[1710094103000,10],[1710094104000,10],[1710094105000,10],[1710094106000,10],[1710094107000,10],[1710094108000,10],[1710094109000,10],[1710094110000,10],[1710094111000,10],[1710094112000,10],[1710094113000,10],[1710094114000,10],[1710094115000,10],[1710094116000,10],[1710094117000,10],[1710094118000,10],[1710094119000,10],[1710094120000,10],[1710094121000,10],[1710094122000,10],[1710094123000,10],[1710094124000,10],[1710094125000,10],[1710094126000,10],[1710094127000,10],[1710094128000,10],[1710094129000,10],[1710094130000,10],[1710094131000,10],[1710094132000,10],[1710094133000,10],[1710094134000,10],[1710094135000,10],[1710094136000,10],[1710094137000,10],[1710094138000,10],[1710094139000,10],[1710094140000,10],[1710094141000,10],[1710094142000,10],[1710094143000,10],[1710094144000,10],[1710094145000,10],[1710094146000,10],[1710094147000,10],[1710094148000,10],[1710094149000,10],[1710094150000,10],[1710094151000,10],[1710094152000,10],[1710094153000,10],[1710094154000,10],[1710094155000,10],[1710094156000,10],[1710094157000,10],[1710094158000,10],[1710094159000,10],[1710094160000,10],[1710094161000,10],[1710094162000,10],[1710094163000,10],[1710094164000,10],[1710094165000,10],[1710094166000,10],[1710094167000,10],[1710094168000,10],[1710094169000,10],[1710094170000,10],[1710094171000,10],[1710094172000,10],[1710094173000,10],[1710094174000,10],[1710094175000,10],[1710094176000,10],[1710094177000,10],[1710094178000,10],[1710094179000,10],[1710094180000,9]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FFDD00',
name: 'validações',
data: [
[1710093935000,0],[1710093936000,0],[1710093937000,0],[1710093938000,0],[1710093939000,5],[1710093940000,5],[1710093941000,0],[1710093942000,0],[1710093943000,0],[1710093944000,0],[1710093945000,0],[1710093946000,0],[1710093947000,0],[1710093948000,0],[1710093949000,0],[1710093950000,0],[1710093951000,0],[1710093952000,0],[1710093953000,0],[1710093954000,0],[1710093955000,0],[1710093956000,0],[1710093957000,0],[1710093958000,0],[1710093959000,0],[1710093960000,0],[1710093961000,0],[1710093962000,0],[1710093963000,0],[1710093964000,0],[1710093965000,0],[1710093966000,0],[1710093967000,0],[1710093968000,0],[1710093969000,0],[1710093970000,0],[1710093971000,0],[1710093972000,0],[1710093973000,0],[1710093974000,0],[1710093975000,0],[1710093976000,0],[1710093977000,0],[1710093978000,0],[1710093979000,0],[1710093980000,0],[1710093981000,0],[1710093982000,0],[1710093983000,0],[1710093984000,0],[1710093985000,0],[1710093986000,0],[1710093987000,0],[1710093988000,0],[1710093989000,0],[1710093990000,0],[1710093991000,0],[1710093992000,0],[1710093993000,0],[1710093994000,0],[1710093995000,0],[1710093996000,0],[1710093997000,0],[1710093998000,0],[1710093999000,0],[1710094000000,0],[1710094001000,0],[1710094002000,0],[1710094003000,0],[1710094004000,0],[1710094005000,0],[1710094006000,0],[1710094007000,0],[1710094008000,0],[1710094009000,0],[1710094010000,0],[1710094011000,0],[1710094012000,0],[1710094013000,0],[1710094014000,0],[1710094015000,0],[1710094016000,0],[1710094017000,0],[1710094018000,0],[1710094019000,0],[1710094020000,0],[1710094021000,0],[1710094022000,0],[1710094023000,0],[1710094024000,0],[1710094025000,0],[1710094026000,0],[1710094027000,0],[1710094028000,0],[1710094029000,0],[1710094030000,0],[1710094031000,0],[1710094032000,0],[1710094033000,0],[1710094034000,0],[1710094035000,0],[1710094036000,0],[1710094037000,0],[1710094038000,0],[1710094039000,0],[1710094040000,0],[1710094041000,0],[1710094042000,0],[1710094043000,0],[1710094044000,0],[1710094045000,0],[1710094046000,0],[1710094047000,0],[1710094048000,0],[1710094049000,0],[1710094050000,0],[1710094051000,0],[1710094052000,0],[1710094053000,0],[1710094054000,0],[1710094055000,0],[1710094056000,0],[1710094057000,0],[1710094058000,0],[1710094059000,0],[1710094060000,0],[1710094061000,0],[1710094062000,0],[1710094063000,0],[1710094064000,0],[1710094065000,0],[1710094066000,0],[1710094067000,0],[1710094068000,0],[1710094069000,0],[1710094070000,0],[1710094071000,0],[1710094072000,0],[1710094073000,0],[1710094074000,0],[1710094075000,0],[1710094076000,0],[1710094077000,0],[1710094078000,0],[1710094079000,0],[1710094080000,0],[1710094081000,0],[1710094082000,0],[1710094083000,0],[1710094084000,0],[1710094085000,0],[1710094086000,0],[1710094087000,0],[1710094088000,0],[1710094089000,0],[1710094090000,0],[1710094091000,0],[1710094092000,0],[1710094093000,0],[1710094094000,0],[1710094095000,0],[1710094096000,0],[1710094097000,0],[1710094098000,0],[1710094099000,0],[1710094100000,0],[1710094101000,0],[1710094102000,0],[1710094103000,0],[1710094104000,0],[1710094105000,0],[1710094106000,0],[1710094107000,0],[1710094108000,0],[1710094109000,0],[1710094110000,0],[1710094111000,0],[1710094112000,0],[1710094113000,0],[1710094114000,0],[1710094115000,0],[1710094116000,0],[1710094117000,0],[1710094118000,0],[1710094119000,0],[1710094120000,0],[1710094121000,0],[1710094122000,0],[1710094123000,0],[1710094124000,0],[1710094125000,0],[1710094126000,0],[1710094127000,0],[1710094128000,0],[1710094129000,0],[1710094130000,0],[1710094131000,0],[1710094132000,0],[1710094133000,0],[1710094134000,0],[1710094135000,0],[1710094136000,0],[1710094137000,0],[1710094138000,0],[1710094139000,0],[1710094140000,0],[1710094141000,0],[1710094142000,0],[1710094143000,0],[1710094144000,0],[1710094145000,0],[1710094146000,0],[1710094147000,0],[1710094148000,0],[1710094149000,0],[1710094150000,0],[1710094151000,0],[1710094152000,0],[1710094153000,0],[1710094154000,0],[1710094155000,0],[1710094156000,0],[1710094157000,0],[1710094158000,0],[1710094159000,0],[1710094160000,0],[1710094161000,0],[1710094162000,0],[1710094163000,0],[1710094164000,0],[1710094165000,0],[1710094166000,0],[1710094167000,0],[1710094168000,0],[1710094169000,0],[1710094170000,0],[1710094171000,0],[1710094172000,0],[1710094173000,0],[1710094174000,0],[1710094175000,0],[1710094176000,0],[1710094177000,0],[1710094178000,0],[1710094179000,0],[1710094180000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00D5FF',
name: 'validação HTTP 404',
data: [
[1710093935000,0],[1710093936000,0],[1710093937000,0],[1710093938000,0],[1710093939000,1],[1710093940000,0],[1710093941000,0],[1710093942000,0],[1710093943000,0],[1710093944000,0],[1710093945000,0],[1710093946000,0],[1710093947000,0],[1710093948000,0],[1710093949000,0],[1710093950000,0],[1710093951000,0],[1710093952000,0],[1710093953000,0],[1710093954000,0],[1710093955000,0],[1710093956000,0],[1710093957000,0],[1710093958000,0],[1710093959000,0],[1710093960000,0],[1710093961000,0],[1710093962000,0],[1710093963000,0],[1710093964000,0],[1710093965000,0],[1710093966000,0],[1710093967000,0],[1710093968000,0],[1710093969000,0],[1710093970000,0],[1710093971000,0],[1710093972000,0],[1710093973000,0],[1710093974000,0],[1710093975000,0],[1710093976000,0],[1710093977000,0],[1710093978000,0],[1710093979000,0],[1710093980000,0],[1710093981000,0],[1710093982000,0],[1710093983000,0],[1710093984000,0],[1710093985000,0],[1710093986000,0],[1710093987000,0],[1710093988000,0],[1710093989000,0],[1710093990000,0],[1710093991000,0],[1710093992000,0],[1710093993000,0],[1710093994000,0],[1710093995000,0],[1710093996000,0],[1710093997000,0],[1710093998000,0],[1710093999000,0],[1710094000000,0],[1710094001000,0],[1710094002000,0],[1710094003000,0],[1710094004000,0],[1710094005000,0],[1710094006000,0],[1710094007000,0],[1710094008000,0],[1710094009000,0],[1710094010000,0],[1710094011000,0],[1710094012000,0],[1710094013000,0],[1710094014000,0],[1710094015000,0],[1710094016000,0],[1710094017000,0],[1710094018000,0],[1710094019000,0],[1710094020000,0],[1710094021000,0],[1710094022000,0],[1710094023000,0],[1710094024000,0],[1710094025000,0],[1710094026000,0],[1710094027000,0],[1710094028000,0],[1710094029000,0],[1710094030000,0],[1710094031000,0],[1710094032000,0],[1710094033000,0],[1710094034000,0],[1710094035000,0],[1710094036000,0],[1710094037000,0],[1710094038000,0],[1710094039000,0],[1710094040000,0],[1710094041000,0],[1710094042000,0],[1710094043000,0],[1710094044000,0],[1710094045000,0],[1710094046000,0],[1710094047000,0],[1710094048000,0],[1710094049000,0],[1710094050000,0],[1710094051000,0],[1710094052000,0],[1710094053000,0],[1710094054000,0],[1710094055000,0],[1710094056000,0],[1710094057000,0],[1710094058000,0],[1710094059000,0],[1710094060000,0],[1710094061000,0],[1710094062000,0],[1710094063000,0],[1710094064000,0],[1710094065000,0],[1710094066000,0],[1710094067000,0],[1710094068000,0],[1710094069000,0],[1710094070000,0],[1710094071000,0],[1710094072000,0],[1710094073000,0],[1710094074000,0],[1710094075000,0],[1710094076000,0],[1710094077000,0],[1710094078000,0],[1710094079000,0],[1710094080000,0],[1710094081000,0],[1710094082000,0],[1710094083000,0],[1710094084000,0],[1710094085000,0],[1710094086000,0],[1710094087000,0],[1710094088000,0],[1710094089000,0],[1710094090000,0],[1710094091000,0],[1710094092000,0],[1710094093000,0],[1710094094000,0],[1710094095000,0],[1710094096000,0],[1710094097000,0],[1710094098000,0],[1710094099000,0],[1710094100000,0],[1710094101000,0],[1710094102000,0],[1710094103000,0],[1710094104000,0],[1710094105000,0],[1710094106000,0],[1710094107000,0],[1710094108000,0],[1710094109000,0],[1710094110000,0],[1710094111000,0],[1710094112000,0],[1710094113000,0],[1710094114000,0],[1710094115000,0],[1710094116000,0],[1710094117000,0],[1710094118000,0],[1710094119000,0],[1710094120000,0],[1710094121000,0],[1710094122000,0],[1710094123000,0],[1710094124000,0],[1710094125000,0],[1710094126000,0],[1710094127000,0],[1710094128000,0],[1710094129000,0],[1710094130000,0],[1710094131000,0],[1710094132000,0],[1710094133000,0],[1710094134000,0],[1710094135000,0],[1710094136000,0],[1710094137000,0],[1710094138000,0],[1710094139000,0],[1710094140000,0],[1710094141000,0],[1710094142000,0],[1710094143000,0],[1710094144000,0],[1710094145000,0],[1710094146000,0],[1710094147000,0],[1710094148000,0],[1710094149000,0],[1710094150000,0],[1710094151000,0],[1710094152000,0],[1710094153000,0],[1710094154000,0],[1710094155000,0],[1710094156000,0],[1710094157000,0],[1710094158000,0],[1710094159000,0],[1710094160000,0],[1710094161000,0],[1710094162000,0],[1710094163000,0],[1710094164000,0],[1710094165000,0],[1710094166000,0],[1710094167000,0],[1710094168000,0],[1710094169000,0],[1710094170000,0],[1710094171000,0],[1710094172000,0],[1710094173000,0],[1710094174000,0],[1710094175000,0],[1710094176000,0],[1710094177000,0],[1710094178000,0],[1710094179000,0],[1710094180000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00FF00',
name: 'validação concorrência saldo - 0',
data: [
[1710093935000,0],[1710093936000,0],[1710093937000,0],[1710093938000,1],[1710093939000,0],[1710093940000,0],[1710093941000,0],[1710093942000,0],[1710093943000,0],[1710093944000,0],[1710093945000,0],[1710093946000,0],[1710093947000,0],[1710093948000,0],[1710093949000,0],[1710093950000,0],[1710093951000,0],[1710093952000,0],[1710093953000,0],[1710093954000,0],[1710093955000,0],[1710093956000,0],[1710093957000,0],[1710093958000,0],[1710093959000,0],[1710093960000,0],[1710093961000,0],[1710093962000,0],[1710093963000,0],[1710093964000,0],[1710093965000,0],[1710093966000,0],[1710093967000,0],[1710093968000,0],[1710093969000,0],[1710093970000,0],[1710093971000,0],[1710093972000,0],[1710093973000,0],[1710093974000,0],[1710093975000,0],[1710093976000,0],[1710093977000,0],[1710093978000,0],[1710093979000,0],[1710093980000,0],[1710093981000,0],[1710093982000,0],[1710093983000,0],[1710093984000,0],[1710093985000,0],[1710093986000,0],[1710093987000,0],[1710093988000,0],[1710093989000,0],[1710093990000,0],[1710093991000,0],[1710093992000,0],[1710093993000,0],[1710093994000,0],[1710093995000,0],[1710093996000,0],[1710093997000,0],[1710093998000,0],[1710093999000,0],[1710094000000,0],[1710094001000,0],[1710094002000,0],[1710094003000,0],[1710094004000,0],[1710094005000,0],[1710094006000,0],[1710094007000,0],[1710094008000,0],[1710094009000,0],[1710094010000,0],[1710094011000,0],[1710094012000,0],[1710094013000,0],[1710094014000,0],[1710094015000,0],[1710094016000,0],[1710094017000,0],[1710094018000,0],[1710094019000,0],[1710094020000,0],[1710094021000,0],[1710094022000,0],[1710094023000,0],[1710094024000,0],[1710094025000,0],[1710094026000,0],[1710094027000,0],[1710094028000,0],[1710094029000,0],[1710094030000,0],[1710094031000,0],[1710094032000,0],[1710094033000,0],[1710094034000,0],[1710094035000,0],[1710094036000,0],[1710094037000,0],[1710094038000,0],[1710094039000,0],[1710094040000,0],[1710094041000,0],[1710094042000,0],[1710094043000,0],[1710094044000,0],[1710094045000,0],[1710094046000,0],[1710094047000,0],[1710094048000,0],[1710094049000,0],[1710094050000,0],[1710094051000,0],[1710094052000,0],[1710094053000,0],[1710094054000,0],[1710094055000,0],[1710094056000,0],[1710094057000,0],[1710094058000,0],[1710094059000,0],[1710094060000,0],[1710094061000,0],[1710094062000,0],[1710094063000,0],[1710094064000,0],[1710094065000,0],[1710094066000,0],[1710094067000,0],[1710094068000,0],[1710094069000,0],[1710094070000,0],[1710094071000,0],[1710094072000,0],[1710094073000,0],[1710094074000,0],[1710094075000,0],[1710094076000,0],[1710094077000,0],[1710094078000,0],[1710094079000,0],[1710094080000,0],[1710094081000,0],[1710094082000,0],[1710094083000,0],[1710094084000,0],[1710094085000,0],[1710094086000,0],[1710094087000,0],[1710094088000,0],[1710094089000,0],[1710094090000,0],[1710094091000,0],[1710094092000,0],[1710094093000,0],[1710094094000,0],[1710094095000,0],[1710094096000,0],[1710094097000,0],[1710094098000,0],[1710094099000,0],[1710094100000,0],[1710094101000,0],[1710094102000,0],[1710094103000,0],[1710094104000,0],[1710094105000,0],[1710094106000,0],[1710094107000,0],[1710094108000,0],[1710094109000,0],[1710094110000,0],[1710094111000,0],[1710094112000,0],[1710094113000,0],[1710094114000,0],[1710094115000,0],[1710094116000,0],[1710094117000,0],[1710094118000,0],[1710094119000,0],[1710094120000,0],[1710094121000,0],[1710094122000,0],[1710094123000,0],[1710094124000,0],[1710094125000,0],[1710094126000,0],[1710094127000,0],[1710094128000,0],[1710094129000,0],[1710094130000,0],[1710094131000,0],[1710094132000,0],[1710094133000,0],[1710094134000,0],[1710094135000,0],[1710094136000,0],[1710094137000,0],[1710094138000,0],[1710094139000,0],[1710094140000,0],[1710094141000,0],[1710094142000,0],[1710094143000,0],[1710094144000,0],[1710094145000,0],[1710094146000,0],[1710094147000,0],[1710094148000,0],[1710094149000,0],[1710094150000,0],[1710094151000,0],[1710094152000,0],[1710094153000,0],[1710094154000,0],[1710094155000,0],[1710094156000,0],[1710094157000,0],[1710094158000,0],[1710094159000,0],[1710094160000,0],[1710094161000,0],[1710094162000,0],[1710094163000,0],[1710094164000,0],[1710094165000,0],[1710094166000,0],[1710094167000,0],[1710094168000,0],[1710094169000,0],[1710094170000,0],[1710094171000,0],[1710094172000,0],[1710094173000,0],[1710094174000,0],[1710094175000,0],[1710094176000,0],[1710094177000,0],[1710094178000,0],[1710094179000,0],[1710094180000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#9D00FF',
name: 'validação concorrência transações - c',
data: [
[1710093935000,0],[1710093936000,0],[1710093937000,22],[1710093938000,25],[1710093939000,0],[1710093940000,0],[1710093941000,0],[1710093942000,0],[1710093943000,0],[1710093944000,0],[1710093945000,0],[1710093946000,0],[1710093947000,0],[1710093948000,0],[1710093949000,0],[1710093950000,0],[1710093951000,0],[1710093952000,0],[1710093953000,0],[1710093954000,0],[1710093955000,0],[1710093956000,0],[1710093957000,0],[1710093958000,0],[1710093959000,0],[1710093960000,0],[1710093961000,0],[1710093962000,0],[1710093963000,0],[1710093964000,0],[1710093965000,0],[1710093966000,0],[1710093967000,0],[1710093968000,0],[1710093969000,0],[1710093970000,0],[1710093971000,0],[1710093972000,0],[1710093973000,0],[1710093974000,0],[1710093975000,0],[1710093976000,0],[1710093977000,0],[1710093978000,0],[1710093979000,0],[1710093980000,0],[1710093981000,0],[1710093982000,0],[1710093983000,0],[1710093984000,0],[1710093985000,0],[1710093986000,0],[1710093987000,0],[1710093988000,0],[1710093989000,0],[1710093990000,0],[1710093991000,0],[1710093992000,0],[1710093993000,0],[1710093994000,0],[1710093995000,0],[1710093996000,0],[1710093997000,0],[1710093998000,0],[1710093999000,0],[1710094000000,0],[1710094001000,0],[1710094002000,0],[1710094003000,0],[1710094004000,0],[1710094005000,0],[1710094006000,0],[1710094007000,0],[1710094008000,0],[1710094009000,0],[1710094010000,0],[1710094011000,0],[1710094012000,0],[1710094013000,0],[1710094014000,0],[1710094015000,0],[1710094016000,0],[1710094017000,0],[1710094018000,0],[1710094019000,0],[1710094020000,0],[1710094021000,0],[1710094022000,0],[1710094023000,0],[1710094024000,0],[1710094025000,0],[1710094026000,0],[1710094027000,0],[1710094028000,0],[1710094029000,0],[1710094030000,0],[1710094031000,0],[1710094032000,0],[1710094033000,0],[1710094034000,0],[1710094035000,0],[1710094036000,0],[1710094037000,0],[1710094038000,0],[1710094039000,0],[1710094040000,0],[1710094041000,0],[1710094042000,0],[1710094043000,0],[1710094044000,0],[1710094045000,0],[1710094046000,0],[1710094047000,0],[1710094048000,0],[1710094049000,0],[1710094050000,0],[1710094051000,0],[1710094052000,0],[1710094053000,0],[1710094054000,0],[1710094055000,0],[1710094056000,0],[1710094057000,0],[1710094058000,0],[1710094059000,0],[1710094060000,0],[1710094061000,0],[1710094062000,0],[1710094063000,0],[1710094064000,0],[1710094065000,0],[1710094066000,0],[1710094067000,0],[1710094068000,0],[1710094069000,0],[1710094070000,0],[1710094071000,0],[1710094072000,0],[1710094073000,0],[1710094074000,0],[1710094075000,0],[1710094076000,0],[1710094077000,0],[1710094078000,0],[1710094079000,0],[1710094080000,0],[1710094081000,0],[1710094082000,0],[1710094083000,0],[1710094084000,0],[1710094085000,0],[1710094086000,0],[1710094087000,0],[1710094088000,0],[1710094089000,0],[1710094090000,0],[1710094091000,0],[1710094092000,0],[1710094093000,0],[1710094094000,0],[1710094095000,0],[1710094096000,0],[1710094097000,0],[1710094098000,0],[1710094099000,0],[1710094100000,0],[1710094101000,0],[1710094102000,0],[1710094103000,0],[1710094104000,0],[1710094105000,0],[1710094106000,0],[1710094107000,0],[1710094108000,0],[1710094109000,0],[1710094110000,0],[1710094111000,0],[1710094112000,0],[1710094113000,0],[1710094114000,0],[1710094115000,0],[1710094116000,0],[1710094117000,0],[1710094118000,0],[1710094119000,0],[1710094120000,0],[1710094121000,0],[1710094122000,0],[1710094123000,0],[1710094124000,0],[1710094125000,0],[1710094126000,0],[1710094127000,0],[1710094128000,0],[1710094129000,0],[1710094130000,0],[1710094131000,0],[1710094132000,0],[1710094133000,0],[1710094134000,0],[1710094135000,0],[1710094136000,0],[1710094137000,0],[1710094138000,0],[1710094139000,0],[1710094140000,0],[1710094141000,0],[1710094142000,0],[1710094143000,0],[1710094144000,0],[1710094145000,0],[1710094146000,0],[1710094147000,0],[1710094148000,0],[1710094149000,0],[1710094150000,0],[1710094151000,0],[1710094152000,0],[1710094153000,0],[1710094154000,0],[1710094155000,0],[1710094156000,0],[1710094157000,0],[1710094158000,0],[1710094159000,0],[1710094160000,0],[1710094161000,0],[1710094162000,0],[1710094163000,0],[1710094164000,0],[1710094165000,0],[1710094166000,0],[1710094167000,0],[1710094168000,0],[1710094169000,0],[1710094170000,0],[1710094171000,0],[1710094172000,0],[1710094173000,0],[1710094174000,0],[1710094175000,0],[1710094176000,0],[1710094177000,0],[1710094178000,0],[1710094179000,0],[1710094180000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FF00E1',
name: 'validação concorrência saldo - -25',
data: [
[1710093935000,0],[1710093936000,1],[1710093937000,1],[1710093938000,0],[1710093939000,0],[1710093940000,0],[1710093941000,0],[1710093942000,0],[1710093943000,0],[1710093944000,0],[1710093945000,0],[1710093946000,0],[1710093947000,0],[1710093948000,0],[1710093949000,0],[1710093950000,0],[1710093951000,0],[1710093952000,0],[1710093953000,0],[1710093954000,0],[1710093955000,0],[1710093956000,0],[1710093957000,0],[1710093958000,0],[1710093959000,0],[1710093960000,0],[1710093961000,0],[1710093962000,0],[1710093963000,0],[1710093964000,0],[1710093965000,0],[1710093966000,0],[1710093967000,0],[1710093968000,0],[1710093969000,0],[1710093970000,0],[1710093971000,0],[1710093972000,0],[1710093973000,0],[1710093974000,0],[1710093975000,0],[1710093976000,0],[1710093977000,0],[1710093978000,0],[1710093979000,0],[1710093980000,0],[1710093981000,0],[1710093982000,0],[1710093983000,0],[1710093984000,0],[1710093985000,0],[1710093986000,0],[1710093987000,0],[1710093988000,0],[1710093989000,0],[1710093990000,0],[1710093991000,0],[1710093992000,0],[1710093993000,0],[1710093994000,0],[1710093995000,0],[1710093996000,0],[1710093997000,0],[1710093998000,0],[1710093999000,0],[1710094000000,0],[1710094001000,0],[1710094002000,0],[1710094003000,0],[1710094004000,0],[1710094005000,0],[1710094006000,0],[1710094007000,0],[1710094008000,0],[1710094009000,0],[1710094010000,0],[1710094011000,0],[1710094012000,0],[1710094013000,0],[1710094014000,0],[1710094015000,0],[1710094016000,0],[1710094017000,0],[1710094018000,0],[1710094019000,0],[1710094020000,0],[1710094021000,0],[1710094022000,0],[1710094023000,0],[1710094024000,0],[1710094025000,0],[1710094026000,0],[1710094027000,0],[1710094028000,0],[1710094029000,0],[1710094030000,0],[1710094031000,0],[1710094032000,0],[1710094033000,0],[1710094034000,0],[1710094035000,0],[1710094036000,0],[1710094037000,0],[1710094038000,0],[1710094039000,0],[1710094040000,0],[1710094041000,0],[1710094042000,0],[1710094043000,0],[1710094044000,0],[1710094045000,0],[1710094046000,0],[1710094047000,0],[1710094048000,0],[1710094049000,0],[1710094050000,0],[1710094051000,0],[1710094052000,0],[1710094053000,0],[1710094054000,0],[1710094055000,0],[1710094056000,0],[1710094057000,0],[1710094058000,0],[1710094059000,0],[1710094060000,0],[1710094061000,0],[1710094062000,0],[1710094063000,0],[1710094064000,0],[1710094065000,0],[1710094066000,0],[1710094067000,0],[1710094068000,0],[1710094069000,0],[1710094070000,0],[1710094071000,0],[1710094072000,0],[1710094073000,0],[1710094074000,0],[1710094075000,0],[1710094076000,0],[1710094077000,0],[1710094078000,0],[1710094079000,0],[1710094080000,0],[1710094081000,0],[1710094082000,0],[1710094083000,0],[1710094084000,0],[1710094085000,0],[1710094086000,0],[1710094087000,0],[1710094088000,0],[1710094089000,0],[1710094090000,0],[1710094091000,0],[1710094092000,0],[1710094093000,0],[1710094094000,0],[1710094095000,0],[1710094096000,0],[1710094097000,0],[1710094098000,0],[1710094099000,0],[1710094100000,0],[1710094101000,0],[1710094102000,0],[1710094103000,0],[1710094104000,0],[1710094105000,0],[1710094106000,0],[1710094107000,0],[1710094108000,0],[1710094109000,0],[1710094110000,0],[1710094111000,0],[1710094112000,0],[1710094113000,0],[1710094114000,0],[1710094115000,0],[1710094116000,0],[1710094117000,0],[1710094118000,0],[1710094119000,0],[1710094120000,0],[1710094121000,0],[1710094122000,0],[1710094123000,0],[1710094124000,0],[1710094125000,0],[1710094126000,0],[1710094127000,0],[1710094128000,0],[1710094129000,0],[1710094130000,0],[1710094131000,0],[1710094132000,0],[1710094133000,0],[1710094134000,0],[1710094135000,0],[1710094136000,0],[1710094137000,0],[1710094138000,0],[1710094139000,0],[1710094140000,0],[1710094141000,0],[1710094142000,0],[1710094143000,0],[1710094144000,0],[1710094145000,0],[1710094146000,0],[1710094147000,0],[1710094148000,0],[1710094149000,0],[1710094150000,0],[1710094151000,0],[1710094152000,0],[1710094153000,0],[1710094154000,0],[1710094155000,0],[1710094156000,0],[1710094157000,0],[1710094158000,0],[1710094159000,0],[1710094160000,0],[1710094161000,0],[1710094162000,0],[1710094163000,0],[1710094164000,0],[1710094165000,0],[1710094166000,0],[1710094167000,0],[1710094168000,0],[1710094169000,0],[1710094170000,0],[1710094171000,0],[1710094172000,0],[1710094173000,0],[1710094174000,0],[1710094175000,0],[1710094176000,0],[1710094177000,0],[1710094178000,0],[1710094179000,0],[1710094180000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#AECAEB',
name: 'validação concorrência transações - d',
data: [
[1710093935000,25],[1710093936000,12],[1710093937000,0],[1710093938000,0],[1710093939000,0],[1710093940000,0],[1710093941000,0],[1710093942000,0],[1710093943000,0],[1710093944000,0],[1710093945000,0],[1710093946000,0],[1710093947000,0],[1710093948000,0],[1710093949000,0],[1710093950000,0],[1710093951000,0],[1710093952000,0],[1710093953000,0],[1710093954000,0],[1710093955000,0],[1710093956000,0],[1710093957000,0],[1710093958000,0],[1710093959000,0],[1710093960000,0],[1710093961000,0],[1710093962000,0],[1710093963000,0],[1710093964000,0],[1710093965000,0],[1710093966000,0],[1710093967000,0],[1710093968000,0],[1710093969000,0],[1710093970000,0],[1710093971000,0],[1710093972000,0],[1710093973000,0],[1710093974000,0],[1710093975000,0],[1710093976000,0],[1710093977000,0],[1710093978000,0],[1710093979000,0],[1710093980000,0],[1710093981000,0],[1710093982000,0],[1710093983000,0],[1710093984000,0],[1710093985000,0],[1710093986000,0],[1710093987000,0],[1710093988000,0],[1710093989000,0],[1710093990000,0],[1710093991000,0],[1710093992000,0],[1710093993000,0],[1710093994000,0],[1710093995000,0],[1710093996000,0],[1710093997000,0],[1710093998000,0],[1710093999000,0],[1710094000000,0],[1710094001000,0],[1710094002000,0],[1710094003000,0],[1710094004000,0],[1710094005000,0],[1710094006000,0],[1710094007000,0],[1710094008000,0],[1710094009000,0],[1710094010000,0],[1710094011000,0],[1710094012000,0],[1710094013000,0],[1710094014000,0],[1710094015000,0],[1710094016000,0],[1710094017000,0],[1710094018000,0],[1710094019000,0],[1710094020000,0],[1710094021000,0],[1710094022000,0],[1710094023000,0],[1710094024000,0],[1710094025000,0],[1710094026000,0],[1710094027000,0],[1710094028000,0],[1710094029000,0],[1710094030000,0],[1710094031000,0],[1710094032000,0],[1710094033000,0],[1710094034000,0],[1710094035000,0],[1710094036000,0],[1710094037000,0],[1710094038000,0],[1710094039000,0],[1710094040000,0],[1710094041000,0],[1710094042000,0],[1710094043000,0],[1710094044000,0],[1710094045000,0],[1710094046000,0],[1710094047000,0],[1710094048000,0],[1710094049000,0],[1710094050000,0],[1710094051000,0],[1710094052000,0],[1710094053000,0],[1710094054000,0],[1710094055000,0],[1710094056000,0],[1710094057000,0],[1710094058000,0],[1710094059000,0],[1710094060000,0],[1710094061000,0],[1710094062000,0],[1710094063000,0],[1710094064000,0],[1710094065000,0],[1710094066000,0],[1710094067000,0],[1710094068000,0],[1710094069000,0],[1710094070000,0],[1710094071000,0],[1710094072000,0],[1710094073000,0],[1710094074000,0],[1710094075000,0],[1710094076000,0],[1710094077000,0],[1710094078000,0],[1710094079000,0],[1710094080000,0],[1710094081000,0],[1710094082000,0],[1710094083000,0],[1710094084000,0],[1710094085000,0],[1710094086000,0],[1710094087000,0],[1710094088000,0],[1710094089000,0],[1710094090000,0],[1710094091000,0],[1710094092000,0],[1710094093000,0],[1710094094000,0],[1710094095000,0],[1710094096000,0],[1710094097000,0],[1710094098000,0],[1710094099000,0],[1710094100000,0],[1710094101000,0],[1710094102000,0],[1710094103000,0],[1710094104000,0],[1710094105000,0],[1710094106000,0],[1710094107000,0],[1710094108000,0],[1710094109000,0],[1710094110000,0],[1710094111000,0],[1710094112000,0],[1710094113000,0],[1710094114000,0],[1710094115000,0],[1710094116000,0],[1710094117000,0],[1710094118000,0],[1710094119000,0],[1710094120000,0],[1710094121000,0],[1710094122000,0],[1710094123000,0],[1710094124000,0],[1710094125000,0],[1710094126000,0],[1710094127000,0],[1710094128000,0],[1710094129000,0],[1710094130000,0],[1710094131000,0],[1710094132000,0],[1710094133000,0],[1710094134000,0],[1710094135000,0],[1710094136000,0],[1710094137000,0],[1710094138000,0],[1710094139000,0],[1710094140000,0],[1710094141000,0],[1710094142000,0],[1710094143000,0],[1710094144000,0],[1710094145000,0],[1710094146000,0],[1710094147000,0],[1710094148000,0],[1710094149000,0],[1710094150000,0],[1710094151000,0],[1710094152000,0],[1710094153000,0],[1710094154000,0],[1710094155000,0],[1710094156000,0],[1710094157000,0],[1710094158000,0],[1710094159000,0],[1710094160000,0],[1710094161000,0],[1710094162000,0],[1710094163000,0],[1710094164000,0],[1710094165000,0],[1710094166000,0],[1710094167000,0],[1710094168000,0],[1710094169000,0],[1710094170000,0],[1710094171000,0],[1710094172000,0],[1710094173000,0],[1710094174000,0],[1710094175000,0],[1710094176000,0],[1710094177000,0],[1710094178000,0],[1710094179000,0],[1710094180000,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: ['5', '16', '27', '38', '48', '59', '70', '81', '92', '102', '113', '124', '135', '145', '156', '167', '178', '188', '199', '210', '221', '232', '242', '253', '264', '275', '285', '296', '307', '318', '328', '339', '350', '361', '372', '382', '393', '404', '415', '425', '436', '447', '458', '468', '479', '490', '501', '512', '522', '533', '544', '555', '565', '576', '587', '598', '609', '619', '630', '641', '652', '662', '673', '684', '695', '705', '716', '727', '738', '749', '759', '770', '781', '792', '802', '813', '824', '835', '845', '856', '867', '878', '889', '899', '910', '921', '932', '942', '953', '964', '975', '985', '996', '1007', '1018', '1029', '1039', '1050', '1061', '1072'],
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: [
99.71,0.09,0.04,0.02,0.02,0.01,0.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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
],
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([[1710093935,[91,158,183,1068,1072,1072,1073,1074,1076,1077]],[1710093936,null],[1710093937,[178,178,178,178,178,178,178,178,178,178]],[1710093938,[8,14,17,19,20,20,22,23,26,27]],[1710093939,[4,4,4,4,4,4,4,4,4,4]],[1710093940,[1,3,5,8,12,13,15,15,17,20]],[1710093941,[4,4,4,4,4,4,4,4,4,5]],[1710093942,[3,3,4,17,22,34,47,59,69,72]],[1710093943,[2,3,3,4,4,4,4,4,4,5]],[1710093944,[2,3,3,4,4,4,4,24,40,45]],[1710093945,[2,3,3,4,4,7,19,37,54,59]],[1710093946,[2,3,3,3,3,3,3,3,3,3]],[1710093947,[2,2,3,3,3,3,3,6,31,38]],[1710093948,[2,2,2,5,14,38,50,68,72,73]],[1710093949,[1,2,2,2,3,20,71,72,73,73]],[1710093950,[2,2,2,3,3,3,3,6,51,67]],[1710093951,[1,2,2,2,3,3,3,3,50,71]],[1710093952,[1,2,2,3,3,21,50,65,73,74]],[1710093953,[1,2,2,2,2,2,2,3,18,27]],[1710093954,[1,2,2,4,13,25,41,56,68,72]],[1710093955,[1,2,2,2,2,2,3,3,48,52]],[1710093956,[1,1,2,2,2,2,2,29,62,66]],[1710093957,[1,1,1,2,2,2,2,2,3,3]],[1710093958,[1,1,2,2,2,2,3,4,35,37]],[1710093959,[1,1,2,2,2,2,15,36,51,59]],[1710093960,[1,1,2,2,2,2,2,2,12,25]],[1710093961,[1,1,1,2,2,2,2,2,2,2]],[1710093962,[1,1,1,2,2,8,23,47,72,72]],[1710093963,[1,1,1,2,2,2,2,2,30,55]],[1710093964,[1,1,1,2,2,2,2,2,26,42]],[1710093965,[1,1,1,2,2,2,2,31,51,54]],[1710093966,[0,1,1,1,1,1,1,1,2,2]],[1710093967,[0,1,1,1,1,1,1,1,2,2]],[1710093968,[1,1,1,1,2,2,2,2,3,3]],[1710093969,[1,1,1,2,2,2,2,2,2,2]],[1710093970,[1,1,1,1,2,2,2,2,2,3]],[1710093971,[0,1,1,1,1,2,2,2,2,2]],[1710093972,[0,1,1,1,1,1,2,2,2,2]],[1710093973,[0,1,1,1,1,1,2,2,2,3]],[1710093974,[0,1,1,1,1,1,2,2,2,2]],[1710093975,[1,1,1,2,2,2,2,2,2,2]],[1710093976,[1,1,1,1,1,2,2,2,2,2]],[1710093977,[1,1,1,1,1,1,1,2,2,3]],[1710093978,[1,1,1,1,1,2,2,2,2,2]],[1710093979,[1,1,1,1,1,1,2,2,2,3]],[1710093980,[0,1,1,1,1,2,2,2,2,2]],[1710093981,[0,1,1,1,1,1,1,2,2,2]],[1710093982,[0,1,1,1,1,1,1,1,2,2]],[1710093983,[0,1,1,1,1,1,1,2,2,2]],[1710093984,[0,1,1,1,1,1,1,2,2,6]],[1710093985,[0,1,1,1,1,2,2,2,4,6]],[1710093986,[0,1,1,1,1,1,2,2,2,2]],[1710093987,[1,1,1,2,2,2,2,19,55,75]],[1710093988,[1,1,1,2,2,2,2,2,2,2]],[1710093989,[0,1,1,1,1,1,1,1,2,2]],[1710093990,[0,1,1,1,1,1,1,1,2,2]],[1710093991,[1,1,1,1,1,1,1,2,2,2]],[1710093992,[1,1,1,1,1,1,1,1,2,2]],[1710093993,[0,1,1,1,1,1,1,1,2,2]],[1710093994,[0,1,1,1,1,1,1,1,2,2]],[1710093995,[0,1,1,1,1,1,1,1,2,5]],[1710093996,[0,1,1,1,1,1,1,1,2,2]],[1710093997,[1,1,1,1,1,1,1,1,2,2]],[1710093998,[0,1,1,1,1,1,1,1,2,2]],[1710093999,[0,1,1,1,1,1,1,2,2,3]],[1710094000,[0,1,1,1,1,1,1,2,2,2]],[1710094001,[1,1,1,1,1,1,1,2,2,3]],[1710094002,[0,1,1,1,1,1,1,2,2,3]],[1710094003,[0,1,1,1,1,1,1,2,2,2]],[1710094004,[0,1,1,1,1,1,1,1,2,2]],[1710094005,[0,0,1,1,1,1,1,1,2,2]],[1710094006,[0,1,1,1,1,1,1,2,2,2]],[1710094007,[0,1,1,1,1,1,1,2,2,2]],[1710094008,[0,0,1,1,1,1,1,1,2,2]],[1710094009,[0,1,1,1,1,1,1,2,3,5]],[1710094010,[0,1,1,1,1,1,2,2,2,3]],[1710094011,[0,1,1,1,1,1,2,2,25,41]],[1710094012,[1,1,1,1,1,1,2,2,2,2]],[1710094013,[0,0,1,1,1,1,1,1,2,2]],[1710094014,[0,1,1,1,1,1,1,1,2,2]],[1710094015,[1,1,1,1,1,1,1,2,2,2]],[1710094016,[0,1,1,1,1,1,2,2,2,2]],[1710094017,[0,1,1,1,1,1,1,2,2,2]],[1710094018,[0,1,1,1,1,1,1,1,2,2]],[1710094019,[0,1,1,1,1,1,1,1,2,2]],[1710094020,[0,1,1,1,1,1,1,1,2,2]],[1710094021,[1,1,1,1,1,1,1,2,2,2]],[1710094022,[0,1,1,1,1,1,1,2,2,2]],[1710094023,[0,1,1,1,1,1,1,2,2,2]],[1710094024,[0,1,1,1,1,1,1,1,2,2]],[1710094025,[0,1,1,1,1,1,1,2,2,2]],[1710094026,[0,1,1,1,1,1,2,2,2,2]],[1710094027,[0,1,1,1,1,1,1,1,2,2]],[1710094028,[0,1,1,1,1,1,2,2,2,4]],[1710094029,[0,1,1,1,1,1,2,2,43,60]],[1710094030,[0,1,1,1,1,1,1,2,2,12]],[1710094031,[0,1,1,1,1,1,2,2,2,2]],[1710094032,[0,1,1,1,1,1,1,2,2,2]],[1710094033,[0,1,1,1,1,1,1,2,2,3]],[1710094034,[0,1,1,1,1,1,1,2,2,2]],[1710094035,[0,1,1,1,1,1,1,1,2,2]],[1710094036,[0,1,1,1,1,1,1,2,2,2]],[1710094037,[0,1,1,1,1,1,1,2,2,2]],[1710094038,[0,1,1,1,1,1,2,2,2,2]],[1710094039,[0,1,1,1,1,1,2,2,2,2]],[1710094040,[0,0,1,1,1,1,1,2,2,2]],[1710094041,[0,0,1,1,1,1,1,2,2,2]],[1710094042,[0,1,1,1,1,1,1,2,2,3]],[1710094043,[0,1,1,1,1,1,1,2,3,8]],[1710094044,[0,0,1,1,1,1,1,1,2,3]],[1710094045,[0,1,1,1,1,1,1,2,2,3]],[1710094046,[1,1,1,1,1,1,1,2,2,3]],[1710094047,[0,1,1,1,1,1,1,2,2,2]],[1710094048,[0,1,1,1,1,1,2,2,2,3]],[1710094049,[0,1,1,1,1,1,1,2,2,3]],[1710094050,[0,1,1,1,1,1,1,1,2,3]],[1710094051,[0,0,1,1,1,1,1,2,2,3]],[1710094052,[0,1,1,1,1,1,1,2,2,2]],[1710094053,[1,1,2,3,3,3,3,3,5,6]],[1710094054,[1,1,1,2,2,3,3,3,4,5]],[1710094055,[0,1,2,3,3,3,3,3,4,6]],[1710094056,[0,1,1,3,3,3,3,3,4,5]],[1710094057,[0,0,2,2,2,2,3,3,4,4]],[1710094058,[0,1,2,2,2,3,3,3,3,5]],[1710094059,[0,1,2,2,2,2,2,3,4,5]],[1710094060,[0,1,2,2,2,2,2,3,3,5]],[1710094061,[0,1,1,2,2,2,2,3,4,5]],[1710094062,[1,1,2,2,2,2,3,3,4,5]],[1710094063,[1,1,1,2,3,3,3,3,4,4]],[1710094064,[1,1,2,3,3,3,3,3,4,5]],[1710094065,[1,1,1,2,2,3,3,3,4,6]],[1710094066,[0,1,2,3,3,3,3,3,5,5]],[1710094067,[1,1,1,1,2,2,2,3,4,5]],[1710094068,[1,2,2,3,3,3,3,4,26,39]],[1710094069,[1,1,1,1,2,2,2,3,5,5]],[1710094070,[1,2,2,3,3,3,3,3,5,5]],[1710094071,[1,1,1,1,1,1,2,2,4,6]],[1710094072,[0,2,2,3,3,3,3,3,5,5]],[1710094073,[0,1,1,1,1,1,1,1,2,4]],[1710094074,[0,1,2,2,2,2,3,3,4,5]],[1710094075,[0,0,1,1,1,1,1,1,3,4]],[1710094076,[0,2,2,3,3,3,3,3,4,5]],[1710094077,[1,1,1,1,1,1,2,2,3,5]],[1710094078,[1,2,2,3,3,3,3,3,5,6]],[1710094079,[0,0,1,1,1,1,1,2,3,5]],[1710094080,[0,1,2,3,3,3,3,3,5,5]],[1710094081,[0,1,1,1,1,1,2,3,3,4]],[1710094082,[0,1,2,2,3,3,3,3,4,5]],[1710094083,[0,1,1,1,1,2,2,3,3,6]],[1710094084,[0,1,1,2,2,2,3,3,5,5]],[1710094085,[0,1,1,1,1,2,2,2,3,5]],[1710094086,[0,1,1,3,3,3,3,3,5,6]],[1710094087,[0,1,1,2,2,2,3,3,4,5]],[1710094088,[0,1,1,2,2,2,2,3,4,5]],[1710094089,[0,0,1,1,2,2,2,2,3,5]],[1710094090,[0,1,1,2,2,3,3,4,19,37]],[1710094091,[0,1,1,2,2,2,3,3,8,27]],[1710094092,[1,1,1,2,2,2,3,3,4,6]],[1710094093,[0,1,1,2,2,3,3,3,4,6]],[1710094094,[0,1,1,1,1,2,2,3,4,6]],[1710094095,[0,0,1,2,2,3,3,3,4,4]],[1710094096,[0,0,1,1,1,1,1,2,4,5]],[1710094097,[0,1,1,2,3,3,3,3,4,6]],[1710094098,[0,1,1,1,1,1,2,2,3,6]],[1710094099,[0,1,1,2,2,3,3,3,4,5]],[1710094100,[1,1,1,1,1,2,2,2,3,4]],[1710094101,[0,1,1,3,3,3,3,4,7,9]],[1710094102,[0,1,1,1,1,1,1,1,3,5]],[1710094103,[0,1,1,2,2,3,3,3,4,5]],[1710094104,[0,1,1,1,1,1,1,2,3,4]],[1710094105,[0,1,1,2,2,3,3,3,4,6]],[1710094106,[0,1,1,1,1,1,1,2,3,3]],[1710094107,[0,0,1,2,2,2,2,3,3,6]],[1710094108,[0,1,1,1,1,1,1,2,3,5]],[1710094109,[1,1,1,2,2,2,2,3,4,6]],[1710094110,[0,0,1,1,1,1,1,2,3,4]],[1710094111,[0,1,1,2,2,2,3,3,4,5]],[1710094112,[0,1,1,1,1,1,2,2,3,4]],[1710094113,[0,1,1,1,2,2,2,2,3,5]],[1710094114,[0,0,0,1,1,1,1,1,5,18]],[1710094115,[0,1,2,2,2,3,3,3,5,8]],[1710094116,[0,1,1,2,2,2,2,3,4,7]],[1710094117,[0,2,2,2,3,3,3,3,6,7]],[1710094118,[0,1,1,1,1,2,2,2,4,6]],[1710094119,[1,2,2,3,3,3,3,3,5,7]],[1710094120,[0,0,1,1,1,1,2,2,4,5]],[1710094121,[1,2,2,2,3,3,3,4,6,6]],[1710094122,[0,0,1,1,1,1,2,2,4,4]],[1710094123,[0,2,2,3,3,3,3,3,5,6]],[1710094124,[0,1,1,1,1,2,2,3,4,8]],[1710094125,[1,2,2,3,3,3,3,3,6,7]],[1710094126,[1,1,1,1,1,2,2,3,5,7]],[1710094127,[1,2,2,3,3,3,3,4,6,7]],[1710094128,[0,1,1,1,2,2,2,3,4,6]],[1710094129,[0,1,2,2,2,3,3,3,5,6]],[1710094130,[0,1,1,2,2,2,2,3,4,6]],[1710094131,[1,1,2,3,3,3,3,4,6,6]],[1710094132,[1,1,1,2,2,3,3,3,4,5]],[1710094133,[1,1,2,2,2,3,3,3,6,7]],[1710094134,[0,1,1,2,2,2,2,3,3,6]],[1710094135,[0,1,1,2,2,2,2,3,5,7]],[1710094136,[0,0,1,2,2,2,2,3,3,6]],[1710094137,[0,0,1,3,3,3,3,3,5,7]],[1710094138,[0,0,1,3,3,3,3,3,5,8]],[1710094139,[0,1,1,2,3,3,3,3,4,6]],[1710094140,[0,1,1,2,3,3,3,3,4,5]],[1710094141,[0,0,1,2,2,2,3,3,4,7]],[1710094142,[1,1,2,2,2,2,3,3,5,6]],[1710094143,[0,1,1,2,2,2,3,3,4,6]],[1710094144,[1,1,2,2,2,3,3,3,5,6]],[1710094145,[0,1,1,1,1,2,2,3,4,5]],[1710094146,[0,1,2,2,2,2,3,3,6,7]],[1710094147,[0,1,1,1,1,1,1,2,4,5]],[1710094148,[0,1,2,3,3,3,3,3,5,7]],[1710094149,[0,1,1,1,1,1,1,2,4,6]],[1710094150,[0,1,2,2,2,2,2,3,6,6]],[1710094151,[0,0,1,1,1,1,1,2,4,5]],[1710094152,[1,1,2,3,3,3,3,3,6,7]],[1710094153,[0,1,1,1,1,1,2,2,4,5]],[1710094154,[0,1,2,3,3,3,3,3,6,9]],[1710094155,[1,1,1,1,1,1,2,2,4,5]],[1710094156,[0,1,2,2,2,3,3,4,6,7]],[1710094157,[0,1,1,1,1,1,2,2,4,4]],[1710094158,[0,1,1,2,2,2,3,3,5,7]],[1710094159,[0,0,1,1,1,1,2,2,4,6]],[1710094160,[1,1,2,3,3,3,3,4,6,7]],[1710094161,[0,1,1,1,1,1,2,2,5,6]],[1710094162,[0,1,1,3,3,3,3,3,5,7]],[1710094163,[0,1,1,1,1,1,1,2,4,4]],[1710094164,[0,1,1,3,3,3,3,3,6,7]],[1710094165,[0,1,1,1,1,2,2,2,5,5]],[1710094166,[0,1,1,2,2,2,3,3,4,6]],[1710094167,[1,1,1,1,1,1,2,3,4,5]],[1710094168,[1,1,1,2,2,2,3,3,5,6]],[1710094169,[0,1,1,2,2,2,2,3,4,7]],[1710094170,[0,1,1,1,2,2,2,3,4,7]],[1710094171,[0,1,1,1,2,2,2,3,4,6]],[1710094172,[0,0,1,1,1,1,2,3,5,10]],[1710094173,[0,1,1,2,2,2,2,2,5,7]],[1710094174,[0,1,1,1,1,1,2,2,4,5]],[1710094175,[0,1,1,2,2,2,3,3,5,7]],[1710094176,[0,1,1,1,1,1,1,2,4,5]],[1710094177,[0,1,1,2,2,2,3,3,4,7]],[1710094178,[1,1,2,2,2,3,3,3,6,7]],[1710094179,[0,1,1,2,2,2,2,2,5,7]],[1710094180,[1,2,2,3,3,3,3,4,7,8]]]);
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([[1710093935,[25,25,0]],[1710093936,[0,0,0]],[1710093937,[1,1,0]],[1710093938,[25,25,0]],[1710093939,[1,1,0]],[1710093940,[71,71,0]],[1710093941,[3,3,0]],[1710093942,[6,6,0]],[1710093943,[9,9,0]],[1710093944,[11,11,0]],[1710093945,[13,13,0]],[1710093946,[18,18,0]],[1710093947,[19,19,0]],[1710093948,[24,24,0]],[1710093949,[26,26,0]],[1710093950,[27,27,0]],[1710093951,[32,32,0]],[1710093952,[34,34,0]],[1710093953,[37,37,0]],[1710093954,[39,39,0]],[1710093955,[43,43,0]],[1710093956,[44,44,0]],[1710093957,[48,48,0]],[1710093958,[50,50,0]],[1710093959,[54,54,0]],[1710093960,[56,56,0]],[1710093961,[61,61,0]],[1710093962,[61,61,0]],[1710093963,[65,65,0]],[1710093964,[67,67,0]],[1710093965,[70,70,0]],[1710093966,[74,74,0]],[1710093967,[76,76,0]],[1710093968,[80,80,0]],[1710093969,[81,81,0]],[1710093970,[84,84,0]],[1710093971,[87,87,0]],[1710093972,[91,91,0]],[1710093973,[92,92,0]],[1710093974,[96,96,0]],[1710093975,[98,98,0]],[1710093976,[101,101,0]],[1710093977,[105,105,0]],[1710093978,[107,107,0]],[1710093979,[110,110,0]],[1710093980,[112,112,0]],[1710093981,[116,116,0]],[1710093982,[118,118,0]],[1710093983,[121,121,0]],[1710093984,[123,123,0]],[1710093985,[126,126,0]],[1710093986,[130,130,0]],[1710093987,[134,134,0]],[1710093988,[134,134,0]],[1710093989,[138,138,0]],[1710093990,[141,141,0]],[1710093991,[143,143,0]],[1710093992,[146,146,0]],[1710093993,[149,149,0]],[1710093994,[152,152,0]],[1710093995,[154,154,0]],[1710093996,[158,158,0]],[1710093997,[160,160,0]],[1710093998,[164,164,0]],[1710093999,[165,165,0]],[1710094000,[170,170,0]],[1710094001,[171,171,0]],[1710094002,[174,174,0]],[1710094003,[176,176,0]],[1710094004,[181,181,0]],[1710094005,[183,183,0]],[1710094006,[186,186,0]],[1710094007,[188,188,0]],[1710094008,[192,192,0]],[1710094009,[194,194,0]],[1710094010,[196,196,0]],[1710094011,[200,200,0]],[1710094012,[202,202,0]],[1710094013,[205,205,0]],[1710094014,[208,208,0]],[1710094015,[211,211,0]],[1710094016,[213,213,0]],[1710094017,[217,217,0]],[1710094018,[219,219,0]],[1710094019,[222,222,0]],[1710094020,[226,226,0]],[1710094021,[227,227,0]],[1710094022,[230,230,0]],[1710094023,[233,233,0]],[1710094024,[237,237,0]],[1710094025,[238,238,0]],[1710094026,[243,243,0]],[1710094027,[244,244,0]],[1710094028,[248,248,0]],[1710094029,[250,250,0]],[1710094030,[252,252,0]],[1710094031,[256,256,0]],[1710094032,[260,260,0]],[1710094033,[262,262,0]],[1710094034,[264,264,0]],[1710094035,[267,267,0]],[1710094036,[268,268,0]],[1710094037,[273,273,0]],[1710094038,[275,275,0]],[1710094039,[279,279,0]],[1710094040,[281,281,0]],[1710094041,[285,285,0]],[1710094042,[286,286,0]],[1710094043,[290,290,0]],[1710094044,[291,291,0]],[1710094045,[296,296,0]],[1710094046,[297,297,0]],[1710094047,[301,301,0]],[1710094048,[303,303,0]],[1710094049,[306,306,0]],[1710094050,[309,309,0]],[1710094051,[313,313,0]],[1710094052,[314,314,0]],[1710094053,[318,318,0]],[1710094054,[321,321,0]],[1710094055,[322,322,0]],[1710094056,[327,327,0]],[1710094057,[329,329,0]],[1710094058,[332,332,0]],[1710094059,[334,334,0]],[1710094060,[338,338,0]],[1710094061,[340,340,0]],[1710094062,[340,340,0]],[1710094063,[340,340,0]],[1710094064,[340,340,0]],[1710094065,[340,340,0]],[1710094066,[340,340,0]],[1710094067,[340,340,0]],[1710094068,[340,340,0]],[1710094069,[340,340,0]],[1710094070,[340,340,0]],[1710094071,[340,340,0]],[1710094072,[340,340,0]],[1710094073,[340,340,0]],[1710094074,[340,340,0]],[1710094075,[340,340,0]],[1710094076,[340,340,0]],[1710094077,[340,340,0]],[1710094078,[340,340,0]],[1710094079,[340,340,0]],[1710094080,[340,340,0]],[1710094081,[340,340,0]],[1710094082,[340,340,0]],[1710094083,[340,340,0]],[1710094084,[340,340,0]],[1710094085,[340,340,0]],[1710094086,[340,340,0]],[1710094087,[340,340,0]],[1710094088,[340,340,0]],[1710094089,[340,340,0]],[1710094090,[340,340,0]],[1710094091,[340,340,0]],[1710094092,[340,340,0]],[1710094093,[340,340,0]],[1710094094,[340,340,0]],[1710094095,[340,340,0]],[1710094096,[340,340,0]],[1710094097,[340,340,0]],[1710094098,[340,340,0]],[1710094099,[340,340,0]],[1710094100,[340,340,0]],[1710094101,[340,340,0]],[1710094102,[340,340,0]],[1710094103,[340,340,0]],[1710094104,[340,340,0]],[1710094105,[340,340,0]],[1710094106,[340,340,0]],[1710094107,[340,340,0]],[1710094108,[340,340,0]],[1710094109,[340,340,0]],[1710094110,[340,340,0]],[1710094111,[340,340,0]],[1710094112,[340,340,0]],[1710094113,[340,340,0]],[1710094114,[340,340,0]],[1710094115,[340,340,0]],[1710094116,[340,340,0]],[1710094117,[340,340,0]],[1710094118,[340,340,0]],[1710094119,[340,340,0]],[1710094120,[340,340,0]],[1710094121,[340,340,0]],[1710094122,[340,340,0]],[1710094123,[340,340,0]],[1710094124,[340,340,0]],[1710094125,[340,340,0]],[1710094126,[340,340,0]],[1710094127,[340,340,0]],[1710094128,[340,340,0]],[1710094129,[340,340,0]],[1710094130,[340,340,0]],[1710094131,[340,340,0]],[1710094132,[340,340,0]],[1710094133,[340,340,0]],[1710094134,[340,340,0]],[1710094135,[340,340,0]],[1710094136,[340,340,0]],[1710094137,[340,340,0]],[1710094138,[340,340,0]],[1710094139,[340,340,0]],[1710094140,[340,340,0]],[1710094141,[340,340,0]],[1710094142,[340,340,0]],[1710094143,[340,340,0]],[1710094144,[340,340,0]],[1710094145,[340,340,0]],[1710094146,[340,340,0]],[1710094147,[340,340,0]],[1710094148,[340,340,0]],[1710094149,[340,340,0]],[1710094150,[340,340,0]],[1710094151,[340,340,0]],[1710094152,[340,340,0]],[1710094153,[340,340,0]],[1710094154,[340,340,0]],[1710094155,[340,340,0]],[1710094156,[340,340,0]],[1710094157,[340,340,0]],[1710094158,[340,340,0]],[1710094159,[340,340,0]],[1710094160,[340,340,0]],[1710094161,[340,340,0]],[1710094162,[340,340,0]],[1710094163,[340,340,0]],[1710094164,[340,340,0]],[1710094165,[340,340,0]],[1710094166,[340,340,0]],[1710094167,[340,340,0]],[1710094168,[340,340,0]],[1710094169,[340,340,0]],[1710094170,[340,340,0]],[1710094171,[340,340,0]],[1710094172,[340,340,0]],[1710094173,[340,340,0]],[1710094174,[340,340,0]],[1710094175,[340,340,0]],[1710094176,[340,340,0]],[1710094177,[340,340,0]],[1710094178,[340,340,0]],[1710094179,[340,340,0]],[1710094180,[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:[