-
Notifications
You must be signed in to change notification settings - Fork 923
/
Copy pathindex.html
1195 lines (1125 loc) · 94.2 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-09 22:50:22 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 - renanvm">
<span class="simulation-information-label">Description: </span>
<span>Rinha de Backend - 2024/Q1: Crébito - renanvm</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="statistics extensible-geant collapsed">
<div class="title">
Errors
</div>
<table id="container_errors" class="statistics-in extensible-geant">
<thead>
<tr>
<th id="error-col-1" class="header sortable"><span>Error</span></th>
<th id="error-col-2" class="header sortable"><span>Count</span></th>
<th id="error-col-3" class="header sortable"><span>Percentage</span></th>
</tr>
</thead>
<tbody>
<tr>
<td class="error-col-1 total ko">status.find.in(422,400), but actually found 200<span class="value" style="display:none">0</span></td>
<td class="value error-col-2 total ko">5</td>
<td class="value error-col-3 total ko">100 %</td>
</tr>
</tbody>
</table>
</div>
<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: 'débitos',
data: [
[1710024622000,0],[1710024623000,0],[1710024624000,0],[1710024625000,0],[1710024626000,1],[1710024627000,2],[1710024628000,4],[1710024629000,6],[1710024630000,7],[1710024631000,9],[1710024632000,11],[1710024633000,13],[1710024634000,15],[1710024635000,16],[1710024636000,19],[1710024637000,20],[1710024638000,22],[1710024639000,24],[1710024640000,25],[1710024641000,28],[1710024642000,29],[1710024643000,31],[1710024644000,33],[1710024645000,35],[1710024646000,37],[1710024647000,38],[1710024648000,40],[1710024649000,42],[1710024650000,44],[1710024651000,46],[1710024652000,47],[1710024653000,50],[1710024654000,51],[1710024655000,53],[1710024656000,55],[1710024657000,56],[1710024658000,60],[1710024659000,61],[1710024660000,63],[1710024661000,65],[1710024662000,67],[1710024663000,69],[1710024664000,70],[1710024665000,71],[1710024666000,75],[1710024667000,74],[1710024668000,77],[1710024669000,79],[1710024670000,80],[1710024671000,83],[1710024672000,84],[1710024673000,86],[1710024674000,88],[1710024675000,90],[1710024676000,92],[1710024677000,93],[1710024678000,95],[1710024679000,97],[1710024680000,98],[1710024681000,101],[1710024682000,102],[1710024683000,104],[1710024684000,108],[1710024685000,108],[1710024686000,110],[1710024687000,111],[1710024688000,113],[1710024689000,115],[1710024690000,118],[1710024691000,124],[1710024692000,121],[1710024693000,123],[1710024694000,125],[1710024695000,127],[1710024696000,129],[1710024697000,130],[1710024698000,133],[1710024699000,134],[1710024700000,135],[1710024701000,138],[1710024702000,140],[1710024703000,142],[1710024704000,143],[1710024705000,144],[1710024706000,147],[1710024707000,147],[1710024708000,150],[1710024709000,152],[1710024710000,153],[1710024711000,155],[1710024712000,157],[1710024713000,162],[1710024714000,161],[1710024715000,162],[1710024716000,166],[1710024717000,166],[1710024718000,168],[1710024719000,170],[1710024720000,171],[1710024721000,176],[1710024722000,176],[1710024723000,177],[1710024724000,180],[1710024725000,182],[1710024726000,183],[1710024727000,186],[1710024728000,187],[1710024729000,189],[1710024730000,191],[1710024731000,193],[1710024732000,193],[1710024733000,197],[1710024734000,198],[1710024735000,199],[1710024736000,202],[1710024737000,202],[1710024738000,205],[1710024739000,207],[1710024740000,209],[1710024741000,211],[1710024742000,213],[1710024743000,215],[1710024744000,217],[1710024745000,219],[1710024746000,220],[1710024747000,222],[1710024748000,221],[1710024749000,221],[1710024750000,220],[1710024751000,221],[1710024752000,221],[1710024753000,220],[1710024754000,221],[1710024755000,227],[1710024756000,221],[1710024757000,220],[1710024758000,223],[1710024759000,221],[1710024760000,223],[1710024761000,220],[1710024762000,221],[1710024763000,220],[1710024764000,221],[1710024765000,220],[1710024766000,220],[1710024767000,221],[1710024768000,221],[1710024769000,220],[1710024770000,220],[1710024771000,221],[1710024772000,221],[1710024773000,221],[1710024774000,220],[1710024775000,221],[1710024776000,221],[1710024777000,220],[1710024778000,221],[1710024779000,221],[1710024780000,221],[1710024781000,220],[1710024782000,221],[1710024783000,220],[1710024784000,221],[1710024785000,220],[1710024786000,221],[1710024787000,220],[1710024788000,221],[1710024789000,220],[1710024790000,220],[1710024791000,221],[1710024792000,220],[1710024793000,220],[1710024794000,221],[1710024795000,220],[1710024796000,222],[1710024797000,220],[1710024798000,221],[1710024799000,221],[1710024800000,221],[1710024801000,220],[1710024802000,220],[1710024803000,220],[1710024804000,222],[1710024805000,220],[1710024806000,220],[1710024807000,221],[1710024808000,221],[1710024809000,221],[1710024810000,221],[1710024811000,222],[1710024812000,220],[1710024813000,221],[1710024814000,220],[1710024815000,220],[1710024816000,220],[1710024817000,221],[1710024818000,220],[1710024819000,223],[1710024820000,220],[1710024821000,220],[1710024822000,220],[1710024823000,220],[1710024824000,220],[1710024825000,221],[1710024826000,220],[1710024827000,221],[1710024828000,221],[1710024829000,221],[1710024830000,220],[1710024831000,220],[1710024832000,221],[1710024833000,221],[1710024834000,220],[1710024835000,222],[1710024836000,221],[1710024837000,220],[1710024838000,220],[1710024839000,220],[1710024840000,220],[1710024841000,221],[1710024842000,220],[1710024843000,220],[1710024844000,221],[1710024845000,220],[1710024846000,220],[1710024847000,220],[1710024848000,220],[1710024849000,239],[1710024850000,220],[1710024851000,220],[1710024852000,220],[1710024853000,220],[1710024854000,222],[1710024855000,220],[1710024856000,221],[1710024857000,220],[1710024858000,220],[1710024859000,220],[1710024860000,220],[1710024861000,220],[1710024862000,221],[1710024863000,220],[1710024864000,220],[1710024865000,220],[1710024866000,217]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#68b65c',
name: 'créditos',
data: [
[1710024622000,0],[1710024623000,0],[1710024624000,0],[1710024625000,0],[1710024626000,1],[1710024627000,2],[1710024628000,2],[1710024629000,4],[1710024630000,4],[1710024631000,5],[1710024632000,6],[1710024633000,7],[1710024634000,8],[1710024635000,8],[1710024636000,10],[1710024637000,10],[1710024638000,12],[1710024639000,12],[1710024640000,14],[1710024641000,14],[1710024642000,15],[1710024643000,16],[1710024644000,17],[1710024645000,17],[1710024646000,19],[1710024647000,20],[1710024648000,20],[1710024649000,22],[1710024650000,22],[1710024651000,23],[1710024652000,25],[1710024653000,25],[1710024654000,26],[1710024655000,26],[1710024656000,28],[1710024657000,29],[1710024658000,30],[1710024659000,30],[1710024660000,32],[1710024661000,32],[1710024662000,33],[1710024663000,34],[1710024664000,35],[1710024665000,36],[1710024666000,37],[1710024667000,38],[1710024668000,39],[1710024669000,39],[1710024670000,41],[1710024671000,41],[1710024672000,43],[1710024673000,43],[1710024674000,44],[1710024675000,45],[1710024676000,46],[1710024677000,47],[1710024678000,48],[1710024679000,48],[1710024680000,50],[1710024681000,50],[1710024682000,52],[1710024683000,52],[1710024684000,53],[1710024685000,54],[1710024686000,56],[1710024687000,55],[1710024688000,57],[1710024689000,59],[1710024690000,60],[1710024691000,62],[1710024692000,62],[1710024693000,62],[1710024694000,64],[1710024695000,64],[1710024696000,65],[1710024697000,66],[1710024698000,67],[1710024699000,68],[1710024700000,69],[1710024701000,69],[1710024702000,71],[1710024703000,71],[1710024704000,73],[1710024705000,72],[1710024706000,73],[1710024707000,75],[1710024708000,76],[1710024709000,77],[1710024710000,77],[1710024711000,78],[1710024712000,80],[1710024713000,81],[1710024714000,81],[1710024715000,81],[1710024716000,83],[1710024717000,84],[1710024718000,85],[1710024719000,85],[1710024720000,86],[1710024721000,87],[1710024722000,88],[1710024723000,89],[1710024724000,89],[1710024725000,91],[1710024726000,91],[1710024727000,92],[1710024728000,94],[1710024729000,94],[1710024730000,95],[1710024731000,96],[1710024732000,97],[1710024733000,97],[1710024734000,99],[1710024735000,99],[1710024736000,101],[1710024737000,101],[1710024738000,103],[1710024739000,103],[1710024740000,104],[1710024741000,105],[1710024742000,106],[1710024743000,107],[1710024744000,110],[1710024745000,110],[1710024746000,110],[1710024747000,112],[1710024748000,110],[1710024749000,110],[1710024750000,110],[1710024751000,110],[1710024752000,110],[1710024753000,110],[1710024754000,110],[1710024755000,114],[1710024756000,110],[1710024757000,110],[1710024758000,111],[1710024759000,110],[1710024760000,111],[1710024761000,110],[1710024762000,110],[1710024763000,110],[1710024764000,110],[1710024765000,110],[1710024766000,110],[1710024767000,110],[1710024768000,110],[1710024769000,110],[1710024770000,110],[1710024771000,110],[1710024772000,110],[1710024773000,110],[1710024774000,110],[1710024775000,110],[1710024776000,110],[1710024777000,110],[1710024778000,111],[1710024779000,110],[1710024780000,110],[1710024781000,110],[1710024782000,111],[1710024783000,110],[1710024784000,110],[1710024785000,110],[1710024786000,110],[1710024787000,110],[1710024788000,110],[1710024789000,110],[1710024790000,110],[1710024791000,110],[1710024792000,111],[1710024793000,110],[1710024794000,110],[1710024795000,110],[1710024796000,110],[1710024797000,110],[1710024798000,110],[1710024799000,110],[1710024800000,110],[1710024801000,110],[1710024802000,111],[1710024803000,110],[1710024804000,110],[1710024805000,110],[1710024806000,110],[1710024807000,110],[1710024808000,110],[1710024809000,110],[1710024810000,110],[1710024811000,110],[1710024812000,110],[1710024813000,110],[1710024814000,110],[1710024815000,111],[1710024816000,110],[1710024817000,110],[1710024818000,110],[1710024819000,110],[1710024820000,110],[1710024821000,110],[1710024822000,110],[1710024823000,110],[1710024824000,110],[1710024825000,110],[1710024826000,110],[1710024827000,110],[1710024828000,110],[1710024829000,110],[1710024830000,110],[1710024831000,110],[1710024832000,110],[1710024833000,110],[1710024834000,110],[1710024835000,110],[1710024836000,110],[1710024837000,110],[1710024838000,110],[1710024839000,110],[1710024840000,110],[1710024841000,110],[1710024842000,110],[1710024843000,110],[1710024844000,110],[1710024845000,110],[1710024846000,110],[1710024847000,110],[1710024848000,110],[1710024849000,120],[1710024850000,110],[1710024851000,110],[1710024852000,110],[1710024853000,110],[1710024854000,111],[1710024855000,110],[1710024856000,110],[1710024857000,110],[1710024858000,110],[1710024859000,110],[1710024860000,110],[1710024861000,110],[1710024862000,110],[1710024863000,110],[1710024864000,110],[1710024865000,110],[1710024866000,108]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#f15b4f',
name: 'extratos',
data: [
[1710024622000,0],[1710024623000,0],[1710024624000,0],[1710024625000,0],[1710024626000,1],[1710024627000,2],[1710024628000,1],[1710024629000,1],[1710024630000,1],[1710024631000,1],[1710024632000,2],[1710024633000,1],[1710024634000,2],[1710024635000,2],[1710024636000,1],[1710024637000,2],[1710024638000,2],[1710024639000,2],[1710024640000,2],[1710024641000,2],[1710024642000,2],[1710024643000,2],[1710024644000,3],[1710024645000,2],[1710024646000,3],[1710024647000,2],[1710024648000,3],[1710024649000,2],[1710024650000,3],[1710024651000,3],[1710024652000,3],[1710024653000,3],[1710024654000,3],[1710024655000,3],[1710024656000,3],[1710024657000,4],[1710024658000,3],[1710024659000,3],[1710024660000,4],[1710024661000,3],[1710024662000,4],[1710024663000,4],[1710024664000,4],[1710024665000,4],[1710024666000,4],[1710024667000,4],[1710024668000,4],[1710024669000,4],[1710024670000,4],[1710024671000,4],[1710024672000,5],[1710024673000,4],[1710024674000,5],[1710024675000,5],[1710024676000,4],[1710024677000,5],[1710024678000,5],[1710024679000,5],[1710024680000,5],[1710024681000,5],[1710024682000,5],[1710024683000,5],[1710024684000,7],[1710024685000,5],[1710024686000,6],[1710024687000,5],[1710024688000,6],[1710024689000,5],[1710024690000,6],[1710024691000,7],[1710024692000,6],[1710024693000,6],[1710024694000,6],[1710024695000,6],[1710024696000,6],[1710024697000,7],[1710024698000,6],[1710024699000,6],[1710024700000,7],[1710024701000,6],[1710024702000,7],[1710024703000,7],[1710024704000,7],[1710024705000,7],[1710024706000,7],[1710024707000,7],[1710024708000,7],[1710024709000,7],[1710024710000,7],[1710024711000,7],[1710024712000,8],[1710024713000,8],[1710024714000,8],[1710024715000,8],[1710024716000,7],[1710024717000,8],[1710024718000,8],[1710024719000,8],[1710024720000,8],[1710024721000,8],[1710024722000,8],[1710024723000,8],[1710024724000,9],[1710024725000,8],[1710024726000,9],[1710024727000,8],[1710024728000,9],[1710024729000,8],[1710024730000,9],[1710024731000,9],[1710024732000,9],[1710024733000,9],[1710024734000,9],[1710024735000,9],[1710024736000,9],[1710024737000,10],[1710024738000,9],[1710024739000,9],[1710024740000,10],[1710024741000,9],[1710024742000,10],[1710024743000,10],[1710024744000,10],[1710024745000,10],[1710024746000,10],[1710024747000,11],[1710024748000,10],[1710024749000,10],[1710024750000,10],[1710024751000,10],[1710024752000,10],[1710024753000,10],[1710024754000,10],[1710024755000,11],[1710024756000,10],[1710024757000,10],[1710024758000,11],[1710024759000,10],[1710024760000,11],[1710024761000,10],[1710024762000,10],[1710024763000,10],[1710024764000,10],[1710024765000,10],[1710024766000,10],[1710024767000,10],[1710024768000,10],[1710024769000,10],[1710024770000,10],[1710024771000,10],[1710024772000,10],[1710024773000,10],[1710024774000,10],[1710024775000,10],[1710024776000,10],[1710024777000,10],[1710024778000,10],[1710024779000,10],[1710024780000,10],[1710024781000,10],[1710024782000,10],[1710024783000,10],[1710024784000,10],[1710024785000,10],[1710024786000,10],[1710024787000,10],[1710024788000,10],[1710024789000,10],[1710024790000,10],[1710024791000,10],[1710024792000,10],[1710024793000,10],[1710024794000,10],[1710024795000,10],[1710024796000,10],[1710024797000,10],[1710024798000,10],[1710024799000,10],[1710024800000,10],[1710024801000,10],[1710024802000,10],[1710024803000,10],[1710024804000,10],[1710024805000,10],[1710024806000,10],[1710024807000,10],[1710024808000,10],[1710024809000,10],[1710024810000,10],[1710024811000,10],[1710024812000,10],[1710024813000,10],[1710024814000,10],[1710024815000,10],[1710024816000,10],[1710024817000,10],[1710024818000,10],[1710024819000,11],[1710024820000,10],[1710024821000,10],[1710024822000,10],[1710024823000,10],[1710024824000,10],[1710024825000,10],[1710024826000,10],[1710024827000,10],[1710024828000,10],[1710024829000,10],[1710024830000,10],[1710024831000,10],[1710024832000,10],[1710024833000,10],[1710024834000,10],[1710024835000,10],[1710024836000,10],[1710024837000,10],[1710024838000,10],[1710024839000,10],[1710024840000,10],[1710024841000,10],[1710024842000,10],[1710024843000,10],[1710024844000,10],[1710024845000,10],[1710024846000,10],[1710024847000,10],[1710024848000,10],[1710024849000,11],[1710024850000,10],[1710024851000,10],[1710024852000,10],[1710024853000,10],[1710024854000,10],[1710024855000,10],[1710024856000,10],[1710024857000,10],[1710024858000,10],[1710024859000,10],[1710024860000,10],[1710024861000,10],[1710024862000,10],[1710024863000,10],[1710024864000,10],[1710024865000,10],[1710024866000,9]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FFDD00',
name: 'validações',
data: [
[1710024622000,0],[1710024623000,0],[1710024624000,0],[1710024625000,5],[1710024626000,5],[1710024627000,0],[1710024628000,0],[1710024629000,0],[1710024630000,0],[1710024631000,0],[1710024632000,0],[1710024633000,0],[1710024634000,0],[1710024635000,0],[1710024636000,0],[1710024637000,0],[1710024638000,0],[1710024639000,0],[1710024640000,0],[1710024641000,0],[1710024642000,0],[1710024643000,0],[1710024644000,0],[1710024645000,0],[1710024646000,0],[1710024647000,0],[1710024648000,0],[1710024649000,0],[1710024650000,0],[1710024651000,0],[1710024652000,0],[1710024653000,0],[1710024654000,0],[1710024655000,0],[1710024656000,0],[1710024657000,0],[1710024658000,0],[1710024659000,0],[1710024660000,0],[1710024661000,0],[1710024662000,0],[1710024663000,0],[1710024664000,0],[1710024665000,0],[1710024666000,0],[1710024667000,0],[1710024668000,0],[1710024669000,0],[1710024670000,0],[1710024671000,0],[1710024672000,0],[1710024673000,0],[1710024674000,0],[1710024675000,0],[1710024676000,0],[1710024677000,0],[1710024678000,0],[1710024679000,0],[1710024680000,0],[1710024681000,0],[1710024682000,0],[1710024683000,0],[1710024684000,0],[1710024685000,0],[1710024686000,0],[1710024687000,0],[1710024688000,0],[1710024689000,0],[1710024690000,0],[1710024691000,0],[1710024692000,0],[1710024693000,0],[1710024694000,0],[1710024695000,0],[1710024696000,0],[1710024697000,0],[1710024698000,0],[1710024699000,0],[1710024700000,0],[1710024701000,0],[1710024702000,0],[1710024703000,0],[1710024704000,0],[1710024705000,0],[1710024706000,0],[1710024707000,0],[1710024708000,0],[1710024709000,0],[1710024710000,0],[1710024711000,0],[1710024712000,0],[1710024713000,0],[1710024714000,0],[1710024715000,0],[1710024716000,0],[1710024717000,0],[1710024718000,0],[1710024719000,0],[1710024720000,0],[1710024721000,0],[1710024722000,0],[1710024723000,0],[1710024724000,0],[1710024725000,0],[1710024726000,0],[1710024727000,0],[1710024728000,0],[1710024729000,0],[1710024730000,0],[1710024731000,0],[1710024732000,0],[1710024733000,0],[1710024734000,0],[1710024735000,0],[1710024736000,0],[1710024737000,0],[1710024738000,0],[1710024739000,0],[1710024740000,0],[1710024741000,0],[1710024742000,0],[1710024743000,0],[1710024744000,0],[1710024745000,0],[1710024746000,0],[1710024747000,0],[1710024748000,0],[1710024749000,0],[1710024750000,0],[1710024751000,0],[1710024752000,0],[1710024753000,0],[1710024754000,0],[1710024755000,0],[1710024756000,0],[1710024757000,0],[1710024758000,0],[1710024759000,0],[1710024760000,0],[1710024761000,0],[1710024762000,0],[1710024763000,0],[1710024764000,0],[1710024765000,0],[1710024766000,0],[1710024767000,0],[1710024768000,0],[1710024769000,0],[1710024770000,0],[1710024771000,0],[1710024772000,0],[1710024773000,0],[1710024774000,0],[1710024775000,0],[1710024776000,0],[1710024777000,0],[1710024778000,0],[1710024779000,0],[1710024780000,0],[1710024781000,0],[1710024782000,0],[1710024783000,0],[1710024784000,0],[1710024785000,0],[1710024786000,0],[1710024787000,0],[1710024788000,0],[1710024789000,0],[1710024790000,0],[1710024791000,0],[1710024792000,0],[1710024793000,0],[1710024794000,0],[1710024795000,0],[1710024796000,0],[1710024797000,0],[1710024798000,0],[1710024799000,0],[1710024800000,0],[1710024801000,0],[1710024802000,0],[1710024803000,0],[1710024804000,0],[1710024805000,0],[1710024806000,0],[1710024807000,0],[1710024808000,0],[1710024809000,0],[1710024810000,0],[1710024811000,0],[1710024812000,0],[1710024813000,0],[1710024814000,0],[1710024815000,0],[1710024816000,0],[1710024817000,0],[1710024818000,0],[1710024819000,0],[1710024820000,0],[1710024821000,0],[1710024822000,0],[1710024823000,0],[1710024824000,0],[1710024825000,0],[1710024826000,0],[1710024827000,0],[1710024828000,0],[1710024829000,0],[1710024830000,0],[1710024831000,0],[1710024832000,0],[1710024833000,0],[1710024834000,0],[1710024835000,0],[1710024836000,0],[1710024837000,0],[1710024838000,0],[1710024839000,0],[1710024840000,0],[1710024841000,0],[1710024842000,0],[1710024843000,0],[1710024844000,0],[1710024845000,0],[1710024846000,0],[1710024847000,0],[1710024848000,0],[1710024849000,0],[1710024850000,0],[1710024851000,0],[1710024852000,0],[1710024853000,0],[1710024854000,0],[1710024855000,0],[1710024856000,0],[1710024857000,0],[1710024858000,0],[1710024859000,0],[1710024860000,0],[1710024861000,0],[1710024862000,0],[1710024863000,0],[1710024864000,0],[1710024865000,0],[1710024866000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00D5FF',
name: 'validação HTTP 404',
data: [
[1710024622000,0],[1710024623000,0],[1710024624000,0],[1710024625000,1],[1710024626000,0],[1710024627000,0],[1710024628000,0],[1710024629000,0],[1710024630000,0],[1710024631000,0],[1710024632000,0],[1710024633000,0],[1710024634000,0],[1710024635000,0],[1710024636000,0],[1710024637000,0],[1710024638000,0],[1710024639000,0],[1710024640000,0],[1710024641000,0],[1710024642000,0],[1710024643000,0],[1710024644000,0],[1710024645000,0],[1710024646000,0],[1710024647000,0],[1710024648000,0],[1710024649000,0],[1710024650000,0],[1710024651000,0],[1710024652000,0],[1710024653000,0],[1710024654000,0],[1710024655000,0],[1710024656000,0],[1710024657000,0],[1710024658000,0],[1710024659000,0],[1710024660000,0],[1710024661000,0],[1710024662000,0],[1710024663000,0],[1710024664000,0],[1710024665000,0],[1710024666000,0],[1710024667000,0],[1710024668000,0],[1710024669000,0],[1710024670000,0],[1710024671000,0],[1710024672000,0],[1710024673000,0],[1710024674000,0],[1710024675000,0],[1710024676000,0],[1710024677000,0],[1710024678000,0],[1710024679000,0],[1710024680000,0],[1710024681000,0],[1710024682000,0],[1710024683000,0],[1710024684000,0],[1710024685000,0],[1710024686000,0],[1710024687000,0],[1710024688000,0],[1710024689000,0],[1710024690000,0],[1710024691000,0],[1710024692000,0],[1710024693000,0],[1710024694000,0],[1710024695000,0],[1710024696000,0],[1710024697000,0],[1710024698000,0],[1710024699000,0],[1710024700000,0],[1710024701000,0],[1710024702000,0],[1710024703000,0],[1710024704000,0],[1710024705000,0],[1710024706000,0],[1710024707000,0],[1710024708000,0],[1710024709000,0],[1710024710000,0],[1710024711000,0],[1710024712000,0],[1710024713000,0],[1710024714000,0],[1710024715000,0],[1710024716000,0],[1710024717000,0],[1710024718000,0],[1710024719000,0],[1710024720000,0],[1710024721000,0],[1710024722000,0],[1710024723000,0],[1710024724000,0],[1710024725000,0],[1710024726000,0],[1710024727000,0],[1710024728000,0],[1710024729000,0],[1710024730000,0],[1710024731000,0],[1710024732000,0],[1710024733000,0],[1710024734000,0],[1710024735000,0],[1710024736000,0],[1710024737000,0],[1710024738000,0],[1710024739000,0],[1710024740000,0],[1710024741000,0],[1710024742000,0],[1710024743000,0],[1710024744000,0],[1710024745000,0],[1710024746000,0],[1710024747000,0],[1710024748000,0],[1710024749000,0],[1710024750000,0],[1710024751000,0],[1710024752000,0],[1710024753000,0],[1710024754000,0],[1710024755000,0],[1710024756000,0],[1710024757000,0],[1710024758000,0],[1710024759000,0],[1710024760000,0],[1710024761000,0],[1710024762000,0],[1710024763000,0],[1710024764000,0],[1710024765000,0],[1710024766000,0],[1710024767000,0],[1710024768000,0],[1710024769000,0],[1710024770000,0],[1710024771000,0],[1710024772000,0],[1710024773000,0],[1710024774000,0],[1710024775000,0],[1710024776000,0],[1710024777000,0],[1710024778000,0],[1710024779000,0],[1710024780000,0],[1710024781000,0],[1710024782000,0],[1710024783000,0],[1710024784000,0],[1710024785000,0],[1710024786000,0],[1710024787000,0],[1710024788000,0],[1710024789000,0],[1710024790000,0],[1710024791000,0],[1710024792000,0],[1710024793000,0],[1710024794000,0],[1710024795000,0],[1710024796000,0],[1710024797000,0],[1710024798000,0],[1710024799000,0],[1710024800000,0],[1710024801000,0],[1710024802000,0],[1710024803000,0],[1710024804000,0],[1710024805000,0],[1710024806000,0],[1710024807000,0],[1710024808000,0],[1710024809000,0],[1710024810000,0],[1710024811000,0],[1710024812000,0],[1710024813000,0],[1710024814000,0],[1710024815000,0],[1710024816000,0],[1710024817000,0],[1710024818000,0],[1710024819000,0],[1710024820000,0],[1710024821000,0],[1710024822000,0],[1710024823000,0],[1710024824000,0],[1710024825000,0],[1710024826000,0],[1710024827000,0],[1710024828000,0],[1710024829000,0],[1710024830000,0],[1710024831000,0],[1710024832000,0],[1710024833000,0],[1710024834000,0],[1710024835000,0],[1710024836000,0],[1710024837000,0],[1710024838000,0],[1710024839000,0],[1710024840000,0],[1710024841000,0],[1710024842000,0],[1710024843000,0],[1710024844000,0],[1710024845000,0],[1710024846000,0],[1710024847000,0],[1710024848000,0],[1710024849000,0],[1710024850000,0],[1710024851000,0],[1710024852000,0],[1710024853000,0],[1710024854000,0],[1710024855000,0],[1710024856000,0],[1710024857000,0],[1710024858000,0],[1710024859000,0],[1710024860000,0],[1710024861000,0],[1710024862000,0],[1710024863000,0],[1710024864000,0],[1710024865000,0],[1710024866000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00FF00',
name: 'validação concorrência saldo - 0',
data: [
[1710024622000,0],[1710024623000,0],[1710024624000,1],[1710024625000,0],[1710024626000,0],[1710024627000,0],[1710024628000,0],[1710024629000,0],[1710024630000,0],[1710024631000,0],[1710024632000,0],[1710024633000,0],[1710024634000,0],[1710024635000,0],[1710024636000,0],[1710024637000,0],[1710024638000,0],[1710024639000,0],[1710024640000,0],[1710024641000,0],[1710024642000,0],[1710024643000,0],[1710024644000,0],[1710024645000,0],[1710024646000,0],[1710024647000,0],[1710024648000,0],[1710024649000,0],[1710024650000,0],[1710024651000,0],[1710024652000,0],[1710024653000,0],[1710024654000,0],[1710024655000,0],[1710024656000,0],[1710024657000,0],[1710024658000,0],[1710024659000,0],[1710024660000,0],[1710024661000,0],[1710024662000,0],[1710024663000,0],[1710024664000,0],[1710024665000,0],[1710024666000,0],[1710024667000,0],[1710024668000,0],[1710024669000,0],[1710024670000,0],[1710024671000,0],[1710024672000,0],[1710024673000,0],[1710024674000,0],[1710024675000,0],[1710024676000,0],[1710024677000,0],[1710024678000,0],[1710024679000,0],[1710024680000,0],[1710024681000,0],[1710024682000,0],[1710024683000,0],[1710024684000,0],[1710024685000,0],[1710024686000,0],[1710024687000,0],[1710024688000,0],[1710024689000,0],[1710024690000,0],[1710024691000,0],[1710024692000,0],[1710024693000,0],[1710024694000,0],[1710024695000,0],[1710024696000,0],[1710024697000,0],[1710024698000,0],[1710024699000,0],[1710024700000,0],[1710024701000,0],[1710024702000,0],[1710024703000,0],[1710024704000,0],[1710024705000,0],[1710024706000,0],[1710024707000,0],[1710024708000,0],[1710024709000,0],[1710024710000,0],[1710024711000,0],[1710024712000,0],[1710024713000,0],[1710024714000,0],[1710024715000,0],[1710024716000,0],[1710024717000,0],[1710024718000,0],[1710024719000,0],[1710024720000,0],[1710024721000,0],[1710024722000,0],[1710024723000,0],[1710024724000,0],[1710024725000,0],[1710024726000,0],[1710024727000,0],[1710024728000,0],[1710024729000,0],[1710024730000,0],[1710024731000,0],[1710024732000,0],[1710024733000,0],[1710024734000,0],[1710024735000,0],[1710024736000,0],[1710024737000,0],[1710024738000,0],[1710024739000,0],[1710024740000,0],[1710024741000,0],[1710024742000,0],[1710024743000,0],[1710024744000,0],[1710024745000,0],[1710024746000,0],[1710024747000,0],[1710024748000,0],[1710024749000,0],[1710024750000,0],[1710024751000,0],[1710024752000,0],[1710024753000,0],[1710024754000,0],[1710024755000,0],[1710024756000,0],[1710024757000,0],[1710024758000,0],[1710024759000,0],[1710024760000,0],[1710024761000,0],[1710024762000,0],[1710024763000,0],[1710024764000,0],[1710024765000,0],[1710024766000,0],[1710024767000,0],[1710024768000,0],[1710024769000,0],[1710024770000,0],[1710024771000,0],[1710024772000,0],[1710024773000,0],[1710024774000,0],[1710024775000,0],[1710024776000,0],[1710024777000,0],[1710024778000,0],[1710024779000,0],[1710024780000,0],[1710024781000,0],[1710024782000,0],[1710024783000,0],[1710024784000,0],[1710024785000,0],[1710024786000,0],[1710024787000,0],[1710024788000,0],[1710024789000,0],[1710024790000,0],[1710024791000,0],[1710024792000,0],[1710024793000,0],[1710024794000,0],[1710024795000,0],[1710024796000,0],[1710024797000,0],[1710024798000,0],[1710024799000,0],[1710024800000,0],[1710024801000,0],[1710024802000,0],[1710024803000,0],[1710024804000,0],[1710024805000,0],[1710024806000,0],[1710024807000,0],[1710024808000,0],[1710024809000,0],[1710024810000,0],[1710024811000,0],[1710024812000,0],[1710024813000,0],[1710024814000,0],[1710024815000,0],[1710024816000,0],[1710024817000,0],[1710024818000,0],[1710024819000,0],[1710024820000,0],[1710024821000,0],[1710024822000,0],[1710024823000,0],[1710024824000,0],[1710024825000,0],[1710024826000,0],[1710024827000,0],[1710024828000,0],[1710024829000,0],[1710024830000,0],[1710024831000,0],[1710024832000,0],[1710024833000,0],[1710024834000,0],[1710024835000,0],[1710024836000,0],[1710024837000,0],[1710024838000,0],[1710024839000,0],[1710024840000,0],[1710024841000,0],[1710024842000,0],[1710024843000,0],[1710024844000,0],[1710024845000,0],[1710024846000,0],[1710024847000,0],[1710024848000,0],[1710024849000,0],[1710024850000,0],[1710024851000,0],[1710024852000,0],[1710024853000,0],[1710024854000,0],[1710024855000,0],[1710024856000,0],[1710024857000,0],[1710024858000,0],[1710024859000,0],[1710024860000,0],[1710024861000,0],[1710024862000,0],[1710024863000,0],[1710024864000,0],[1710024865000,0],[1710024866000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#9D00FF',
name: 'validação concorrência transações - c',
data: [
[1710024622000,0],[1710024623000,25],[1710024624000,24],[1710024625000,0],[1710024626000,0],[1710024627000,0],[1710024628000,0],[1710024629000,0],[1710024630000,0],[1710024631000,0],[1710024632000,0],[1710024633000,0],[1710024634000,0],[1710024635000,0],[1710024636000,0],[1710024637000,0],[1710024638000,0],[1710024639000,0],[1710024640000,0],[1710024641000,0],[1710024642000,0],[1710024643000,0],[1710024644000,0],[1710024645000,0],[1710024646000,0],[1710024647000,0],[1710024648000,0],[1710024649000,0],[1710024650000,0],[1710024651000,0],[1710024652000,0],[1710024653000,0],[1710024654000,0],[1710024655000,0],[1710024656000,0],[1710024657000,0],[1710024658000,0],[1710024659000,0],[1710024660000,0],[1710024661000,0],[1710024662000,0],[1710024663000,0],[1710024664000,0],[1710024665000,0],[1710024666000,0],[1710024667000,0],[1710024668000,0],[1710024669000,0],[1710024670000,0],[1710024671000,0],[1710024672000,0],[1710024673000,0],[1710024674000,0],[1710024675000,0],[1710024676000,0],[1710024677000,0],[1710024678000,0],[1710024679000,0],[1710024680000,0],[1710024681000,0],[1710024682000,0],[1710024683000,0],[1710024684000,0],[1710024685000,0],[1710024686000,0],[1710024687000,0],[1710024688000,0],[1710024689000,0],[1710024690000,0],[1710024691000,0],[1710024692000,0],[1710024693000,0],[1710024694000,0],[1710024695000,0],[1710024696000,0],[1710024697000,0],[1710024698000,0],[1710024699000,0],[1710024700000,0],[1710024701000,0],[1710024702000,0],[1710024703000,0],[1710024704000,0],[1710024705000,0],[1710024706000,0],[1710024707000,0],[1710024708000,0],[1710024709000,0],[1710024710000,0],[1710024711000,0],[1710024712000,0],[1710024713000,0],[1710024714000,0],[1710024715000,0],[1710024716000,0],[1710024717000,0],[1710024718000,0],[1710024719000,0],[1710024720000,0],[1710024721000,0],[1710024722000,0],[1710024723000,0],[1710024724000,0],[1710024725000,0],[1710024726000,0],[1710024727000,0],[1710024728000,0],[1710024729000,0],[1710024730000,0],[1710024731000,0],[1710024732000,0],[1710024733000,0],[1710024734000,0],[1710024735000,0],[1710024736000,0],[1710024737000,0],[1710024738000,0],[1710024739000,0],[1710024740000,0],[1710024741000,0],[1710024742000,0],[1710024743000,0],[1710024744000,0],[1710024745000,0],[1710024746000,0],[1710024747000,0],[1710024748000,0],[1710024749000,0],[1710024750000,0],[1710024751000,0],[1710024752000,0],[1710024753000,0],[1710024754000,0],[1710024755000,0],[1710024756000,0],[1710024757000,0],[1710024758000,0],[1710024759000,0],[1710024760000,0],[1710024761000,0],[1710024762000,0],[1710024763000,0],[1710024764000,0],[1710024765000,0],[1710024766000,0],[1710024767000,0],[1710024768000,0],[1710024769000,0],[1710024770000,0],[1710024771000,0],[1710024772000,0],[1710024773000,0],[1710024774000,0],[1710024775000,0],[1710024776000,0],[1710024777000,0],[1710024778000,0],[1710024779000,0],[1710024780000,0],[1710024781000,0],[1710024782000,0],[1710024783000,0],[1710024784000,0],[1710024785000,0],[1710024786000,0],[1710024787000,0],[1710024788000,0],[1710024789000,0],[1710024790000,0],[1710024791000,0],[1710024792000,0],[1710024793000,0],[1710024794000,0],[1710024795000,0],[1710024796000,0],[1710024797000,0],[1710024798000,0],[1710024799000,0],[1710024800000,0],[1710024801000,0],[1710024802000,0],[1710024803000,0],[1710024804000,0],[1710024805000,0],[1710024806000,0],[1710024807000,0],[1710024808000,0],[1710024809000,0],[1710024810000,0],[1710024811000,0],[1710024812000,0],[1710024813000,0],[1710024814000,0],[1710024815000,0],[1710024816000,0],[1710024817000,0],[1710024818000,0],[1710024819000,0],[1710024820000,0],[1710024821000,0],[1710024822000,0],[1710024823000,0],[1710024824000,0],[1710024825000,0],[1710024826000,0],[1710024827000,0],[1710024828000,0],[1710024829000,0],[1710024830000,0],[1710024831000,0],[1710024832000,0],[1710024833000,0],[1710024834000,0],[1710024835000,0],[1710024836000,0],[1710024837000,0],[1710024838000,0],[1710024839000,0],[1710024840000,0],[1710024841000,0],[1710024842000,0],[1710024843000,0],[1710024844000,0],[1710024845000,0],[1710024846000,0],[1710024847000,0],[1710024848000,0],[1710024849000,0],[1710024850000,0],[1710024851000,0],[1710024852000,0],[1710024853000,0],[1710024854000,0],[1710024855000,0],[1710024856000,0],[1710024857000,0],[1710024858000,0],[1710024859000,0],[1710024860000,0],[1710024861000,0],[1710024862000,0],[1710024863000,0],[1710024864000,0],[1710024865000,0],[1710024866000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FF00E1',
name: 'validação concorrência saldo - -25',
data: [
[1710024622000,1],[1710024623000,1],[1710024624000,0],[1710024625000,0],[1710024626000,0],[1710024627000,0],[1710024628000,0],[1710024629000,0],[1710024630000,0],[1710024631000,0],[1710024632000,0],[1710024633000,0],[1710024634000,0],[1710024635000,0],[1710024636000,0],[1710024637000,0],[1710024638000,0],[1710024639000,0],[1710024640000,0],[1710024641000,0],[1710024642000,0],[1710024643000,0],[1710024644000,0],[1710024645000,0],[1710024646000,0],[1710024647000,0],[1710024648000,0],[1710024649000,0],[1710024650000,0],[1710024651000,0],[1710024652000,0],[1710024653000,0],[1710024654000,0],[1710024655000,0],[1710024656000,0],[1710024657000,0],[1710024658000,0],[1710024659000,0],[1710024660000,0],[1710024661000,0],[1710024662000,0],[1710024663000,0],[1710024664000,0],[1710024665000,0],[1710024666000,0],[1710024667000,0],[1710024668000,0],[1710024669000,0],[1710024670000,0],[1710024671000,0],[1710024672000,0],[1710024673000,0],[1710024674000,0],[1710024675000,0],[1710024676000,0],[1710024677000,0],[1710024678000,0],[1710024679000,0],[1710024680000,0],[1710024681000,0],[1710024682000,0],[1710024683000,0],[1710024684000,0],[1710024685000,0],[1710024686000,0],[1710024687000,0],[1710024688000,0],[1710024689000,0],[1710024690000,0],[1710024691000,0],[1710024692000,0],[1710024693000,0],[1710024694000,0],[1710024695000,0],[1710024696000,0],[1710024697000,0],[1710024698000,0],[1710024699000,0],[1710024700000,0],[1710024701000,0],[1710024702000,0],[1710024703000,0],[1710024704000,0],[1710024705000,0],[1710024706000,0],[1710024707000,0],[1710024708000,0],[1710024709000,0],[1710024710000,0],[1710024711000,0],[1710024712000,0],[1710024713000,0],[1710024714000,0],[1710024715000,0],[1710024716000,0],[1710024717000,0],[1710024718000,0],[1710024719000,0],[1710024720000,0],[1710024721000,0],[1710024722000,0],[1710024723000,0],[1710024724000,0],[1710024725000,0],[1710024726000,0],[1710024727000,0],[1710024728000,0],[1710024729000,0],[1710024730000,0],[1710024731000,0],[1710024732000,0],[1710024733000,0],[1710024734000,0],[1710024735000,0],[1710024736000,0],[1710024737000,0],[1710024738000,0],[1710024739000,0],[1710024740000,0],[1710024741000,0],[1710024742000,0],[1710024743000,0],[1710024744000,0],[1710024745000,0],[1710024746000,0],[1710024747000,0],[1710024748000,0],[1710024749000,0],[1710024750000,0],[1710024751000,0],[1710024752000,0],[1710024753000,0],[1710024754000,0],[1710024755000,0],[1710024756000,0],[1710024757000,0],[1710024758000,0],[1710024759000,0],[1710024760000,0],[1710024761000,0],[1710024762000,0],[1710024763000,0],[1710024764000,0],[1710024765000,0],[1710024766000,0],[1710024767000,0],[1710024768000,0],[1710024769000,0],[1710024770000,0],[1710024771000,0],[1710024772000,0],[1710024773000,0],[1710024774000,0],[1710024775000,0],[1710024776000,0],[1710024777000,0],[1710024778000,0],[1710024779000,0],[1710024780000,0],[1710024781000,0],[1710024782000,0],[1710024783000,0],[1710024784000,0],[1710024785000,0],[1710024786000,0],[1710024787000,0],[1710024788000,0],[1710024789000,0],[1710024790000,0],[1710024791000,0],[1710024792000,0],[1710024793000,0],[1710024794000,0],[1710024795000,0],[1710024796000,0],[1710024797000,0],[1710024798000,0],[1710024799000,0],[1710024800000,0],[1710024801000,0],[1710024802000,0],[1710024803000,0],[1710024804000,0],[1710024805000,0],[1710024806000,0],[1710024807000,0],[1710024808000,0],[1710024809000,0],[1710024810000,0],[1710024811000,0],[1710024812000,0],[1710024813000,0],[1710024814000,0],[1710024815000,0],[1710024816000,0],[1710024817000,0],[1710024818000,0],[1710024819000,0],[1710024820000,0],[1710024821000,0],[1710024822000,0],[1710024823000,0],[1710024824000,0],[1710024825000,0],[1710024826000,0],[1710024827000,0],[1710024828000,0],[1710024829000,0],[1710024830000,0],[1710024831000,0],[1710024832000,0],[1710024833000,0],[1710024834000,0],[1710024835000,0],[1710024836000,0],[1710024837000,0],[1710024838000,0],[1710024839000,0],[1710024840000,0],[1710024841000,0],[1710024842000,0],[1710024843000,0],[1710024844000,0],[1710024845000,0],[1710024846000,0],[1710024847000,0],[1710024848000,0],[1710024849000,0],[1710024850000,0],[1710024851000,0],[1710024852000,0],[1710024853000,0],[1710024854000,0],[1710024855000,0],[1710024856000,0],[1710024857000,0],[1710024858000,0],[1710024859000,0],[1710024860000,0],[1710024861000,0],[1710024862000,0],[1710024863000,0],[1710024864000,0],[1710024865000,0],[1710024866000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#AECAEB',
name: 'validação concorrência transações - d',
data: [
[1710024622000,25],[1710024623000,0],[1710024624000,0],[1710024625000,0],[1710024626000,0],[1710024627000,0],[1710024628000,0],[1710024629000,0],[1710024630000,0],[1710024631000,0],[1710024632000,0],[1710024633000,0],[1710024634000,0],[1710024635000,0],[1710024636000,0],[1710024637000,0],[1710024638000,0],[1710024639000,0],[1710024640000,0],[1710024641000,0],[1710024642000,0],[1710024643000,0],[1710024644000,0],[1710024645000,0],[1710024646000,0],[1710024647000,0],[1710024648000,0],[1710024649000,0],[1710024650000,0],[1710024651000,0],[1710024652000,0],[1710024653000,0],[1710024654000,0],[1710024655000,0],[1710024656000,0],[1710024657000,0],[1710024658000,0],[1710024659000,0],[1710024660000,0],[1710024661000,0],[1710024662000,0],[1710024663000,0],[1710024664000,0],[1710024665000,0],[1710024666000,0],[1710024667000,0],[1710024668000,0],[1710024669000,0],[1710024670000,0],[1710024671000,0],[1710024672000,0],[1710024673000,0],[1710024674000,0],[1710024675000,0],[1710024676000,0],[1710024677000,0],[1710024678000,0],[1710024679000,0],[1710024680000,0],[1710024681000,0],[1710024682000,0],[1710024683000,0],[1710024684000,0],[1710024685000,0],[1710024686000,0],[1710024687000,0],[1710024688000,0],[1710024689000,0],[1710024690000,0],[1710024691000,0],[1710024692000,0],[1710024693000,0],[1710024694000,0],[1710024695000,0],[1710024696000,0],[1710024697000,0],[1710024698000,0],[1710024699000,0],[1710024700000,0],[1710024701000,0],[1710024702000,0],[1710024703000,0],[1710024704000,0],[1710024705000,0],[1710024706000,0],[1710024707000,0],[1710024708000,0],[1710024709000,0],[1710024710000,0],[1710024711000,0],[1710024712000,0],[1710024713000,0],[1710024714000,0],[1710024715000,0],[1710024716000,0],[1710024717000,0],[1710024718000,0],[1710024719000,0],[1710024720000,0],[1710024721000,0],[1710024722000,0],[1710024723000,0],[1710024724000,0],[1710024725000,0],[1710024726000,0],[1710024727000,0],[1710024728000,0],[1710024729000,0],[1710024730000,0],[1710024731000,0],[1710024732000,0],[1710024733000,0],[1710024734000,0],[1710024735000,0],[1710024736000,0],[1710024737000,0],[1710024738000,0],[1710024739000,0],[1710024740000,0],[1710024741000,0],[1710024742000,0],[1710024743000,0],[1710024744000,0],[1710024745000,0],[1710024746000,0],[1710024747000,0],[1710024748000,0],[1710024749000,0],[1710024750000,0],[1710024751000,0],[1710024752000,0],[1710024753000,0],[1710024754000,0],[1710024755000,0],[1710024756000,0],[1710024757000,0],[1710024758000,0],[1710024759000,0],[1710024760000,0],[1710024761000,0],[1710024762000,0],[1710024763000,0],[1710024764000,0],[1710024765000,0],[1710024766000,0],[1710024767000,0],[1710024768000,0],[1710024769000,0],[1710024770000,0],[1710024771000,0],[1710024772000,0],[1710024773000,0],[1710024774000,0],[1710024775000,0],[1710024776000,0],[1710024777000,0],[1710024778000,0],[1710024779000,0],[1710024780000,0],[1710024781000,0],[1710024782000,0],[1710024783000,0],[1710024784000,0],[1710024785000,0],[1710024786000,0],[1710024787000,0],[1710024788000,0],[1710024789000,0],[1710024790000,0],[1710024791000,0],[1710024792000,0],[1710024793000,0],[1710024794000,0],[1710024795000,0],[1710024796000,0],[1710024797000,0],[1710024798000,0],[1710024799000,0],[1710024800000,0],[1710024801000,0],[1710024802000,0],[1710024803000,0],[1710024804000,0],[1710024805000,0],[1710024806000,0],[1710024807000,0],[1710024808000,0],[1710024809000,0],[1710024810000,0],[1710024811000,0],[1710024812000,0],[1710024813000,0],[1710024814000,0],[1710024815000,0],[1710024816000,0],[1710024817000,0],[1710024818000,0],[1710024819000,0],[1710024820000,0],[1710024821000,0],[1710024822000,0],[1710024823000,0],[1710024824000,0],[1710024825000,0],[1710024826000,0],[1710024827000,0],[1710024828000,0],[1710024829000,0],[1710024830000,0],[1710024831000,0],[1710024832000,0],[1710024833000,0],[1710024834000,0],[1710024835000,0],[1710024836000,0],[1710024837000,0],[1710024838000,0],[1710024839000,0],[1710024840000,0],[1710024841000,0],[1710024842000,0],[1710024843000,0],[1710024844000,0],[1710024845000,0],[1710024846000,0],[1710024847000,0],[1710024848000,0],[1710024849000,0],[1710024850000,0],[1710024851000,0],[1710024852000,0],[1710024853000,0],[1710024854000,0],[1710024855000,0],[1710024856000,0],[1710024857000,0],[1710024858000,0],[1710024859000,0],[1710024860000,0],[1710024861000,0],[1710024862000,0],[1710024863000,0],[1710024864000,0],[1710024865000,0],[1710024866000,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: ['3', '8', '13', '18', '23', '27', '32', '37', '42', '46', '51', '56', '61', '66', '70', '75', '80', '85', '89', '94', '99', '104', '109', '113', '118', '123', '128', '132', '137', '142', '147', '152', '156', '161', '166', '171', '175', '180', '185', '190', '195', '199', '204', '209', '214', '218', '223', '228', '233', '238', '242', '247', '252', '257', '262', '266', '271', '276', '281', '285', '290', '295', '300', '305', '309', '314', '319', '324', '328', '333', '338', '343', '348', '352', '357', '362', '367', '371', '376', '381', '386', '391', '395', '400', '405', '410', '414', '419', '424', '429', '434', '438', '443', '448', '453', '457', '462', '467', '472', '477'],
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: [
82.53,14.23,1.46,0.48,0.24,0.16,0.08,0.05,0.06,0.05,0.05,0.03,0.04,0.02,0.03,0.04,0.02,0.02,0.02,0.02,0.01,0.01,0.01,0.0,0.01,0.01,0.01,0.0,0.01,0.0,0.01,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,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([[1710024622,[16,47,60,83,90,90,93,102,104,104]],[1710024623,[6,6,6,6,6,6,6,6,6,6]],[1710024624,[13,26,43,58,61,64,68,73,75,76]],[1710024625,[5,5,5,5,5,5,5,5,5,5]],[1710024626,[1,4,8,27,29,33,33,42,49,50]],[1710024627,[5,5,6,6,6,6,6,6,6,7]],[1710024628,[5,6,6,7,7,7,7,7,7,7]],[1710024629,[5,6,6,7,7,7,8,9,10,11]],[1710024630,[5,5,6,8,10,10,10,10,10,10]],[1710024631,[5,5,6,7,7,8,11,12,13,14]],[1710024632,[4,5,5,6,6,6,6,9,10,11]],[1710024633,[4,5,5,5,6,6,6,7,7,8]],[1710024634,[4,4,5,5,5,5,6,7,7,8]],[1710024635,[4,5,5,6,7,7,7,8,8,8]],[1710024636,[4,5,7,293,334,369,379,450,478,479]],[1710024637,[4,5,6,9,12,48,110,155,202,219]],[1710024638,[3,4,5,5,6,6,6,7,7,8]],[1710024639,[2,4,5,6,6,6,7,8,10,12]],[1710024640,[4,4,5,6,6,6,7,8,15,19]],[1710024641,[2,4,5,6,6,7,12,37,60,75]],[1710024642,[3,4,5,5,5,6,6,8,12,14]],[1710024643,[3,4,4,5,5,5,5,5,7,8]],[1710024644,[2,4,4,5,5,5,6,6,8,9]],[1710024645,[2,4,4,5,5,5,5,7,8,9]],[1710024646,[1,4,4,4,5,5,5,6,8,9]],[1710024647,[2,4,4,5,5,5,5,6,12,18]],[1710024648,[1,4,4,5,6,6,6,7,12,17]],[1710024649,[1,3,4,4,5,5,5,6,17,22]],[1710024650,[2,3,4,5,5,5,5,5,6,6]],[1710024651,[2,4,4,5,6,6,6,7,8,9]],[1710024652,[2,4,4,5,5,5,6,6,8,9]],[1710024653,[2,3,4,5,5,5,5,6,7,9]],[1710024654,[2,3,4,5,5,5,6,6,7,7]],[1710024655,[1,3,3,4,4,4,4,5,6,7]],[1710024656,[1,3,4,4,4,5,6,8,25,26]],[1710024657,[1,3,4,4,4,5,5,5,6,12]],[1710024658,[2,3,4,4,4,4,5,6,7,11]],[1710024659,[1,3,4,4,5,5,5,6,10,14]],[1710024660,[2,3,4,5,5,5,5,7,8,9]],[1710024661,[2,4,4,5,5,5,5,7,10,13]],[1710024662,[1,3,4,5,5,6,6,7,10,14]],[1710024663,[1,4,4,5,5,5,6,8,13,14]],[1710024664,[1,3,4,4,5,5,6,8,11,13]],[1710024665,[1,3,4,5,5,5,6,6,8,10]],[1710024666,[1,3,4,4,5,5,6,7,13,16]],[1710024667,[2,3,4,4,5,5,6,6,9,12]],[1710024668,[1,3,4,4,4,4,5,6,17,21]],[1710024669,[1,3,4,4,4,5,5,5,6,6]],[1710024670,[1,3,4,5,5,5,6,7,9,14]],[1710024671,[1,3,4,4,4,5,5,6,7,7]],[1710024672,[1,3,4,4,5,5,5,6,7,7]],[1710024673,[1,3,4,4,4,5,5,5,8,8]],[1710024674,[1,3,4,4,4,5,5,6,9,13]],[1710024675,[1,3,4,4,5,5,5,6,7,10]],[1710024676,[1,3,4,5,5,5,6,6,18,25]],[1710024677,[1,3,3,4,4,4,4,6,8,10]],[1710024678,[1,3,3,4,4,4,4,4,5,6]],[1710024679,[1,2,3,4,4,4,5,5,8,11]],[1710024680,[1,3,3,4,4,4,5,6,133,157]],[1710024681,[1,3,3,4,5,6,32,77,114,120]],[1710024682,[1,2,3,4,4,5,5,6,7,9]],[1710024683,[1,3,4,4,4,4,5,6,8,12]],[1710024684,[2,3,4,5,5,5,6,7,15,20]],[1710024685,[2,3,4,4,4,5,5,5,6,10]],[1710024686,[1,3,4,4,5,5,6,8,14,23]],[1710024687,[1,3,3,4,4,5,5,5,10,12]],[1710024688,[1,3,3,4,4,4,4,5,9,14]],[1710024689,[1,3,3,4,4,4,5,6,9,12]],[1710024690,[1,3,3,4,4,4,5,5,8,11]],[1710024691,[1,3,3,4,4,4,5,24,56,64]],[1710024692,[1,3,3,4,4,5,6,7,13,16]],[1710024693,[1,3,4,4,4,5,6,7,10,13]],[1710024694,[1,3,3,4,4,4,5,5,6,8]],[1710024695,[1,3,3,4,4,5,5,6,9,11]],[1710024696,[1,3,3,4,5,5,5,6,9,10]],[1710024697,[1,3,3,4,4,5,5,5,9,12]],[1710024698,[1,2,3,4,4,4,5,6,9,13]],[1710024699,[1,3,3,4,4,4,5,6,8,13]],[1710024700,[1,3,3,4,4,5,5,6,12,17]],[1710024701,[1,2,3,4,4,4,4,5,7,8]],[1710024702,[1,3,3,4,4,4,5,5,8,10]],[1710024703,[1,3,3,4,5,6,6,10,13,17]],[1710024704,[1,3,3,4,4,4,5,6,11,19]],[1710024705,[1,3,3,4,4,4,5,6,9,17]],[1710024706,[1,3,3,4,4,4,4,5,6,8]],[1710024707,[1,3,3,4,4,4,5,6,10,14]],[1710024708,[1,3,3,4,4,5,5,5,7,9]],[1710024709,[1,3,4,5,6,7,10,16,23,27]],[1710024710,[1,3,3,4,5,5,6,6,9,16]],[1710024711,[1,2,3,4,4,4,5,6,10,12]],[1710024712,[1,3,3,4,4,4,5,5,6,10]],[1710024713,[1,3,3,4,4,5,6,13,38,41]],[1710024714,[1,3,3,4,4,4,5,6,7,15]],[1710024715,[1,3,3,4,4,5,5,5,7,7]],[1710024716,[1,3,3,4,4,5,5,5,6,6]],[1710024717,[1,3,3,4,5,5,5,6,8,11]],[1710024718,[1,3,3,4,5,5,6,7,11,17]],[1710024719,[1,3,3,4,4,5,5,6,12,14]],[1710024720,[1,3,3,4,4,4,5,5,6,8]],[1710024721,[1,2,3,4,4,5,6,7,12,16]],[1710024722,[1,3,3,5,7,8,35,54,80,84]],[1710024723,[1,3,3,4,5,5,5,7,15,23]],[1710024724,[1,2,3,4,4,5,5,7,11,14]],[1710024725,[1,3,3,3,4,4,4,6,11,18]],[1710024726,[1,3,3,4,4,4,5,6,7,8]],[1710024727,[1,3,4,5,5,5,6,9,13,22]],[1710024728,[1,3,3,4,5,5,6,8,14,25]],[1710024729,[1,3,3,4,4,5,5,7,20,27]],[1710024730,[1,3,3,5,5,5,6,7,10,14]],[1710024731,[1,3,4,5,5,5,6,6,8,12]],[1710024732,[1,3,3,4,5,5,6,7,12,15]],[1710024733,[1,3,3,4,5,5,6,9,17,22]],[1710024734,[1,2,3,4,4,5,5,7,10,19]],[1710024735,[1,3,3,4,4,5,5,5,8,10]],[1710024736,[1,3,3,4,5,5,6,7,17,25]],[1710024737,[1,3,4,5,5,5,6,8,21,29]],[1710024738,[1,3,4,4,5,5,5,7,18,31]],[1710024739,[1,4,5,6,6,7,7,9,12,17]],[1710024740,[1,3,4,5,6,6,7,9,15,27]],[1710024741,[1,3,5,6,6,6,7,7,8,9]],[1710024742,[1,3,4,5,5,5,6,7,13,21]],[1710024743,[2,4,5,5,6,6,6,8,13,15]],[1710024744,[1,3,3,4,5,5,6,8,21,29]],[1710024745,[1,4,4,5,6,6,7,8,12,18]],[1710024746,[1,3,3,4,4,4,5,6,8,10]],[1710024747,[2,4,5,6,6,7,7,10,23,29]],[1710024748,[1,3,3,4,5,5,6,7,12,15]],[1710024749,[1,4,5,6,6,7,9,14,22,27]],[1710024750,[1,3,3,5,5,5,5,6,7,10]],[1710024751,[1,4,5,6,7,7,8,10,22,38]],[1710024752,[1,3,4,5,5,5,6,7,9,11]],[1710024753,[1,4,5,6,6,7,8,9,14,23]],[1710024754,[1,3,4,5,6,6,7,8,20,27]],[1710024755,[2,4,5,6,7,8,11,24,58,63]],[1710024756,[1,3,4,5,5,6,6,8,10,12]],[1710024757,[1,3,5,8,9,13,20,54,85,95]],[1710024758,[1,3,3,4,5,5,6,7,19,31]],[1710024759,[1,2,4,5,5,5,6,7,11,15]],[1710024760,[1,2,3,5,5,5,6,8,15,23]],[1710024761,[1,2,3,4,5,5,6,7,9,10]],[1710024762,[1,3,4,5,5,6,6,8,15,26]],[1710024763,[1,3,4,5,6,6,7,8,14,23]],[1710024764,[1,3,3,5,6,6,7,8,12,31]],[1710024765,[1,3,4,6,6,7,8,12,22,24]],[1710024766,[1,3,4,6,6,7,8,9,17,26]],[1710024767,[1,3,4,5,6,6,7,9,11,20]],[1710024768,[1,3,4,5,6,6,7,8,11,24]],[1710024769,[1,2,4,5,5,5,6,6,8,10]],[1710024770,[1,3,4,6,6,7,7,8,13,24]],[1710024771,[1,3,3,5,5,5,6,7,10,13]],[1710024772,[1,3,5,6,6,7,7,9,16,24]],[1710024773,[1,3,4,5,5,6,6,8,12,21]],[1710024774,[1,3,4,5,6,6,7,8,13,25]],[1710024775,[1,2,3,4,4,5,5,6,7,9]],[1710024776,[1,3,4,5,6,6,6,7,12,28]],[1710024777,[1,3,3,5,5,5,6,7,12,20]],[1710024778,[1,3,4,5,6,6,7,7,10,23]],[1710024779,[1,2,3,4,5,5,5,6,8,10]],[1710024780,[1,3,4,6,6,7,8,10,16,26]],[1710024781,[1,2,3,5,5,5,6,9,13,14]],[1710024782,[1,3,4,6,6,6,7,9,12,24]],[1710024783,[1,2,4,4,5,5,6,7,7,10]],[1710024784,[1,3,4,5,6,6,7,8,16,30]],[1710024785,[1,2,3,4,5,5,6,7,10,28]],[1710024786,[1,3,4,6,6,7,8,9,12,15]],[1710024787,[1,3,5,15,40,75,114,158,180,208]],[1710024788,[1,3,4,5,6,6,7,8,13,17]],[1710024789,[1,2,3,4,5,5,6,7,11,19]],[1710024790,[1,3,4,5,5,6,6,7,10,25]],[1710024791,[1,2,3,4,4,5,5,6,10,17]],[1710024792,[1,3,4,5,5,6,7,8,14,28]],[1710024793,[1,3,3,5,5,5,6,7,9,11]],[1710024794,[1,3,4,5,6,6,7,8,14,21]],[1710024795,[1,3,4,5,5,6,7,9,14,17]],[1710024796,[1,2,3,4,4,5,5,6,9,12]],[1710024797,[1,3,4,5,5,5,6,7,12,22]],[1710024798,[1,3,3,4,5,5,6,6,12,22]],[1710024799,[1,3,4,5,5,6,6,8,11,23]],[1710024800,[1,2,3,4,5,5,5,6,7,9]],[1710024801,[1,3,4,5,5,6,7,10,23,29]],[1710024802,[1,4,5,6,6,6,7,8,10,14]],[1710024803,[1,3,4,5,5,6,6,8,15,30]],[1710024804,[1,3,4,5,6,6,7,9,15,29]],[1710024805,[1,3,4,5,6,6,6,7,13,20]],[1710024806,[1,3,5,6,6,7,7,8,14,25]],[1710024807,[1,3,4,5,5,6,6,8,12,14]],[1710024808,[1,3,4,6,6,7,8,12,24,35]],[1710024809,[1,3,4,5,5,6,6,8,10,17]],[1710024810,[1,3,4,5,6,7,7,10,16,20]],[1710024811,[1,3,4,5,6,6,7,7,9,12]],[1710024812,[1,3,3,5,5,5,6,8,10,20]],[1710024813,[1,3,4,6,6,6,7,9,16,24]],[1710024814,[1,3,4,5,5,6,6,8,13,21]],[1710024815,[1,3,5,6,6,7,9,12,30,34]],[1710024816,[1,3,4,5,6,6,7,8,15,20]],[1710024817,[1,3,5,6,7,8,10,108,135,146]],[1710024818,[1,3,4,6,7,9,21,51,89,101]],[1710024819,[1,3,4,5,6,6,8,10,22,25]],[1710024820,[1,2,3,4,5,5,6,7,10,13]],[1710024821,[1,3,5,6,6,7,8,10,19,35]],[1710024822,[1,2,4,5,5,5,6,7,8,11]],[1710024823,[1,3,5,6,7,7,9,11,21,26]],[1710024824,[1,3,3,4,5,5,6,7,9,10]],[1710024825,[2,4,5,6,7,7,8,9,19,27]],[1710024826,[1,2,3,4,4,5,5,6,8,11]],[1710024827,[1,3,4,5,6,6,7,10,20,29]],[1710024828,[1,3,3,5,5,5,6,7,74,175]],[1710024829,[2,5,6,9,14,34,58,93,158,206]],[1710024830,[1,3,4,4,5,5,5,6,8,9]],[1710024831,[2,3,4,5,6,6,7,7,10,13]],[1710024832,[1,3,3,4,5,5,5,7,16,23]],[1710024833,[1,3,4,5,6,6,7,9,12,26]],[1710024834,[1,3,3,4,5,5,6,7,10,16]],[1710024835,[1,3,4,5,5,6,7,8,16,22]],[1710024836,[1,3,3,5,5,5,6,8,11,26]],[1710024837,[1,3,4,5,5,6,7,9,18,24]],[1710024838,[1,2,4,5,5,6,7,10,25,36]],[1710024839,[1,3,4,5,6,6,7,8,12,17]],[1710024840,[1,3,4,5,6,7,8,12,21,26]],[1710024841,[1,3,4,5,6,7,7,11,23,43]],[1710024842,[1,3,4,6,6,7,10,19,49,54]],[1710024843,[1,3,4,5,6,6,7,10,13,18]],[1710024844,[1,3,4,5,6,6,7,10,17,21]],[1710024845,[1,3,3,5,5,5,6,6,9,11]],[1710024846,[1,3,4,5,6,6,8,11,22,24]],[1710024847,[1,3,3,5,5,5,6,7,9,14]],[1710024848,[1,3,4,6,7,7,9,13,24,30]],[1710024849,[1,3,6,63,91,125,160,188,219,287]],[1710024850,[1,3,4,5,6,6,7,9,12,20]],[1710024851,[1,3,3,5,5,5,6,7,9,12]],[1710024852,[1,3,4,5,6,6,7,8,12,25]],[1710024853,[1,2,3,4,5,5,6,7,9,13]],[1710024854,[1,3,4,5,6,6,7,10,17,25]],[1710024855,[1,3,3,5,5,5,6,7,10,21]],[1710024856,[1,3,4,5,5,6,6,7,14,20]],[1710024857,[1,2,3,4,4,5,5,6,10,23]],[1710024858,[1,3,4,6,6,7,7,9,16,24]],[1710024859,[1,3,4,5,5,6,8,15,58,64]],[1710024860,[1,3,4,5,5,6,6,8,20,22]],[1710024861,[1,3,3,4,4,5,5,6,8,9]],[1710024862,[1,2,3,5,5,6,6,9,19,25]],[1710024863,[1,3,3,5,5,5,5,6,9,11]],[1710024864,[1,3,4,6,6,6,7,9,16,25]],[1710024865,[1,3,4,5,5,6,6,8,11,15]],[1710024866,[1,3,4,5,5,6,6,7,12,29]]]);
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([[1710024622,[25,25,0]],[1710024623,[1,1,0]],[1710024624,[25,25,0]],[1710024625,[1,1,0]],[1710024626,[71,66,5]],[1710024627,[3,3,0]],[1710024628,[6,6,0]],[1710024629,[9,9,0]],[1710024630,[11,11,0]],[1710024631,[13,13,0]],[1710024632,[18,18,0]],[1710024633,[19,19,0]],[1710024634,[24,24,0]],[1710024635,[26,26,0]],[1710024636,[27,27,0]],[1710024637,[32,32,0]],[1710024638,[34,34,0]],[1710024639,[37,37,0]],[1710024640,[39,39,0]],[1710024641,[43,43,0]],[1710024642,[44,44,0]],[1710024643,[48,48,0]],[1710024644,[50,50,0]],[1710024645,[55,55,0]],[1710024646,[56,56,0]],[1710024647,[60,60,0]],[1710024648,[61,61,0]],[1710024649,[65,65,0]],[1710024650,[67,67,0]],[1710024651,[70,70,0]],[1710024652,[74,74,0]],[1710024653,[76,76,0]],[1710024654,[80,80,0]],[1710024655,[81,81,0]],[1710024656,[84,84,0]],[1710024657,[87,87,0]],[1710024658,[91,91,0]],[1710024659,[92,92,0]],[1710024660,[96,96,0]],[1710024661,[99,99,0]],[1710024662,[101,101,0]],[1710024663,[105,105,0]],[1710024664,[107,107,0]],[1710024665,[109,109,0]],[1710024666,[114,114,0]],[1710024667,[115,115,0]],[1710024668,[118,118,0]],[1710024669,[121,121,0]],[1710024670,[124,124,0]],[1710024671,[126,126,0]],[1710024672,[129,129,0]],[1710024673,[133,133,0]],[1710024674,[134,134,0]],[1710024675,[138,138,0]],[1710024676,[141,141,0]],[1710024677,[143,143,0]],[1710024678,[146,146,0]],[1710024679,[149,149,0]],[1710024680,[152,152,0]],[1710024681,[155,155,0]],[1710024682,[157,157,0]],[1710024683,[160,160,0]],[1710024684,[164,164,0]],[1710024685,[165,165,0]],[1710024686,[170,170,0]],[1710024687,[172,172,0]],[1710024688,[174,174,0]],[1710024689,[176,176,0]],[1710024690,[181,181,0]],[1710024691,[183,183,0]],[1710024692,[185,185,0]],[1710024693,[189,189,0]],[1710024694,[191,191,0]],[1710024695,[195,195,0]],[1710024696,[196,196,0]],[1710024697,[199,199,0]],[1710024698,[203,203,0]],[1710024699,[205,205,0]],[1710024700,[208,208,0]],[1710024701,[211,211,0]],[1710024702,[213,213,0]],[1710024703,[217,217,0]],[1710024704,[220,220,0]],[1710024705,[222,222,0]],[1710024706,[224,224,0]],[1710024707,[228,228,0]],[1710024708,[230,230,0]],[1710024709,[234,234,0]],[1710024710,[235,235,0]],[1710024711,[239,239,0]],[1710024712,[243,243,0]],[1710024713,[244,244,0]],[1710024714,[248,248,0]],[1710024715,[250,250,0]],[1710024716,[253,253,0]],[1710024717,[255,255,0]],[1710024718,[259,259,0]],[1710024719,[262,262,0]],[1710024720,[265,265,0]],[1710024721,[266,266,0]],[1710024722,[270,270,0]],[1710024723,[272,272,0]],[1710024724,[275,275,0]],[1710024725,[279,279,0]],[1710024726,[281,281,0]],[1710024727,[284,284,0]],[1710024728,[286,286,0]],[1710024729,[290,290,0]],[1710024730,[293,293,0]],[1710024731,[295,295,0]],[1710024732,[298,298,0]],[1710024733,[301,301,0]],[1710024734,[303,303,0]],[1710024735,[306,306,0]],[1710024736,[309,309,0]],[1710024737,[313,313,0]],[1710024738,[314,314,0]],[1710024739,[318,318,0]],[1710024740,[320,320,0]],[1710024741,[323,323,0]],[1710024742,[326,326,0]],[1710024743,[330,330,0]],[1710024744,[331,331,0]],[1710024745,[334,334,0]],[1710024746,[338,338,0]],[1710024747,[340,340,0]],[1710024748,[340,340,0]],[1710024749,[340,340,0]],[1710024750,[340,340,0]],[1710024751,[340,340,0]],[1710024752,[340,340,0]],[1710024753,[340,340,0]],[1710024754,[340,340,0]],[1710024755,[340,340,0]],[1710024756,[340,340,0]],[1710024757,[340,340,0]],[1710024758,[340,340,0]],[1710024759,[340,340,0]],[1710024760,[340,340,0]],[1710024761,[340,340,0]],[1710024762,[340,340,0]],[1710024763,[340,340,0]],[1710024764,[340,340,0]],[1710024765,[340,340,0]],[1710024766,[340,340,0]],[1710024767,[340,340,0]],[1710024768,[340,340,0]],[1710024769,[340,340,0]],[1710024770,[340,340,0]],[1710024771,[340,340,0]],[1710024772,[340,340,0]],[1710024773,[340,340,0]],[1710024774,[340,340,0]],[1710024775,[340,340,0]],[1710024776,[340,340,0]],[1710024777,[340,340,0]],[1710024778,[340,340,0]],[1710024779,[340,340,0]],[1710024780,[340,340,0]],[1710024781,[340,340,0]],[1710024782,[340,340,0]],[1710024783,[340,340,0]],[1710024784,[340,340,0]],[1710024785,[340,340,0]],[1710024786,[340,340,0]],[1710024787,[340,340,0]],[1710024788,[340,340,0]],[1710024789,[340,340,0]],[1710024790,[340,340,0]],[1710024791,[340,340,0]],[1710024792,[340,340,0]],[1710024793,[340,340,0]],[1710024794,[340,340,0]],[1710024795,[340,340,0]],[1710024796,[340,340,0]],[1710024797,[340,340,0]],[1710024798,[340,340,0]],[1710024799,[340,340,0]],[1710024800,[340,340,0]],[1710024801,[340,340,0]],[1710024802,[340,340,0]],[1710024803,[340,340,0]],[1710024804,[340,340,0]],[1710024805,[340,340,0]],[1710024806,[340,340,0]],[1710024807,[340,340,0]],[1710024808,[340,340,0]],[1710024809,[340,340,0]],[1710024810,[340,340,0]],[1710024811,[340,340,0]],[1710024812,[340,340,0]],[1710024813,[340,340,0]],[1710024814,[340,340,0]],[1710024815,[340,340,0]],[1710024816,[340,340,0]],[1710024817,[340,340,0]],[1710024818,[340,340,0]],[1710024819,[340,340,0]],[1710024820,[340,340,0]],[1710024821,[340,340,0]],[1710024822,[340,340,0]],[1710024823,[340,340,0]],[1710024824,[340,340,0]],[1710024825,[340,340,0]],[1710024826,[340,340,0]],[1710024827,[340,340,0]],[1710024828,[340,340,0]],[1710024829,[340,340,0]],[1710024830,[340,340,0]],[1710024831,[340,340,0]],[1710024832,[340,340,0]],[1710024833,[340,340,0]],[1710024834,[340,340,0]],[1710024835,[340,340,0]],[1710024836,[340,340,0]],[1710024837,[340,340,0]],[1710024838,[340,340,0]],[1710024839,[340,340,0]],[1710024840,[340,340,0]],[1710024841,[340,340,0]],[1710024842,[340,340,0]],[1710024843,[340,340,0]],[1710024844,[340,340,0]],[1710024845,[340,340,0]],[1710024846,[340,340,0]],[1710024847,[340,340,0]],[1710024848,[340,340,0]],[1710024849,[340,340,0]],[1710024850,[340,340,0]],[1710024851,[340,340,0]],[1710024852,[340,340,0]],[1710024853,[340,340,0]],[1710024854,[340,340,0]],[1710024855,[340,340,0]],[1710024856,[340,340,0]],[1710024857,[340,340,0]],[1710024858,[340,340,0]],[1710024859,[340,340,0]],[1710024860,[340,340,0]],[1710024861,[340,340,0]],[1710024862,[340,340,0]],[1710024863,[340,340,0]],[1710024864,[340,340,0]],[1710024865,[340,340,0]],[1710024866,[503,503,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'
}, {