-
Notifications
You must be signed in to change notification settings - Fork 923
/
Copy pathindex.html
1195 lines (1125 loc) · 94.6 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="shortcut icon" type="image/x-icon" href="style/favicon.ico"/>
<link href="style/style.css" rel="stylesheet" type="text/css" />
<link href="style/bootstrap.min.css" rel="stylesheet" type="text/css" />
<script src="js/jquery-3.5.1.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/gatling.js"></script>
<script src="js/menu.js"></script>
<script src="js/ellipsis.js"></script>
<script src="js/all_sessions.js"></script>
<script src="js/stats.js"></script>
<script src="js/highstock.js"></script>
<script src="js/highcharts-more.js"></script>
<script src="js/theme.js"></script>
<script src="js/unpack.js"></script>
<title>Gatling Stats - Global Information</title>
</head>
<body>
<script>
const storedTheme = localStorage.getItem('theme') || (window.matchMedia("(prefers-color-scheme: dark)").matches ? "dark" : "light");
if (storedTheme) document.documentElement.setAttribute('data-theme', storedTheme)
function toggleTheme() {
const currentTheme = document.documentElement.getAttribute("data-theme");
const targetTheme = currentTheme === "light" ? "dark" : "light";
document.documentElement.setAttribute('data-theme', targetTheme)
localStorage.setItem('theme', targetTheme);
};
</script>
<div class="app-container">
<div class="frise"></div>
<div class="head">
<div class="gatling-open-source">
<a class="gatling-logo gatling-logo-light" href="https://gatling.io" target="blank_" title="Gatling Home Page"><img alt="Gatling" src="style/logo-light.svg"/></a>
<a class="gatling-logo gatling-logo-dark" href="https://gatling.io" target="blank_" title="Gatling Home Page"><img alt="Gatling" src="style/logo-dark.svg"/></a>
<a class="gatling-documentation" href="https://gatling.io/docs/" target="_blank">Documentation</a>
</div>
<div class="nav spacer"></div>
<a class="enterprise" href="https://gatling.io/enterprise/next-step/" target="_blank"><strong>Try</strong>
<img class="logo-enterprise-light" alt="Gatling Enterprise" src="style/logo-enterprise-light.svg"/>
<img class="logo-enterprise-dark" alt="Gatling Enterprise" src="style/logo-enterprise-dark.svg"/>
</a>
<button id="theme-toggle" class="theme-toggle" type="button" onclick="toggleTheme()" aria-label="Toggle user interface mode">
<span class="toggle-dark"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-moon"><path d="M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z"></path></svg></span>
<span class="toggle-light"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-sun"><circle cx="12" cy="12" r="5"></circle><line x1="12" y1="1" x2="12" y2="3"></line><line x1="12" y1="21" x2="12" y2="23"></line><line x1="4.22" y1="4.22" x2="5.64" y2="5.64"></line><line x1="18.36" y1="18.36" x2="19.78" y2="19.78"></line><line x1="1" y1="12" x2="3" y2="12"></line><line x1="21" y1="12" x2="23" y2="12"></line><line x1="4.22" y1="19.78" x2="5.64" y2="18.36"></line><line x1="18.36" y1="5.64" x2="19.78" y2="4.22"></line></svg></span>
</button>
</div>
<div class="container details">
<div class="nav">
<ul></ul>
</div>
<div class="cadre">
<div class="content">
<div class="content-header">
<div class="onglet">
RinhaBackendCrebitosSimulation
</div>
<div class="sous-menu" id="sousMenu">
<div class="sous-menu-spacer">
<div class="item ouvert"><a href="index.html">Global</a></div>
<div class="item "><a id="details_link" href="#">Details</a></div>
</div>
</div>
</div>
<div class="content-in">
<div class="container-article">
<div class="article">
<div class="schema-container">
<div id="ranges" class="schema ranges">
</div>
<div class="schema polar">
<div id="container_number_of_requests"></div>
</div>
<div class="simulation-card">
<div class="simulation-version-information">
<span class="simulation-information-title">Gatling Version</span>
<span class="simulation-information-item">
<span class="simulation-information-label">Version: </span>
<span>3.10.3</span>
</span>
<span class="simulation-information-item">
<span class="simulation-information-label">Released: </span>
<span>2023-12-20</span>
</span>
</div>
<div id="simulation-information" class="simulation-version-information">
<span class="simulation-information-title">Run Information</span>
<div class="simulation-information-container">
<span class="simulation-information-item">
<span class="simulation-information-label">Date: </span>
<span>2024-03-11 00:06:17 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 - erick-lucca-nodejs">
<span class="simulation-information-label">Description: </span>
<span>Rinha de Backend - 2024/Q1: Crébito - erick-lucca-nodejs</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">jmesPath(ultimas_transacoes[0].descricao).find.is(danada), but actually found validacao<span class="value" style="display:none">0</span></td>
<td class="value error-col-2 total ko">20</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: 'créditos',
data: [
[1710115578000,0],[1710115579000,0],[1710115580000,0],[1710115581000,0],[1710115582000,1],[1710115583000,2],[1710115584000,2],[1710115585000,4],[1710115586000,4],[1710115587000,5],[1710115588000,6],[1710115589000,7],[1710115590000,8],[1710115591000,8],[1710115592000,10],[1710115593000,10],[1710115594000,12],[1710115595000,12],[1710115596000,14],[1710115597000,14],[1710115598000,15],[1710115599000,16],[1710115600000,18],[1710115601000,17],[1710115602000,19],[1710115603000,20],[1710115604000,20],[1710115605000,22],[1710115606000,22],[1710115607000,23],[1710115608000,25],[1710115609000,25],[1710115610000,26],[1710115611000,26],[1710115612000,28],[1710115613000,29],[1710115614000,30],[1710115615000,30],[1710115616000,32],[1710115617000,32],[1710115618000,33],[1710115619000,34],[1710115620000,35],[1710115621000,36],[1710115622000,37],[1710115623000,38],[1710115624000,39],[1710115625000,39],[1710115626000,44],[1710115627000,41],[1710115628000,43],[1710115629000,43],[1710115630000,44],[1710115631000,45],[1710115632000,65],[1710115633000,53],[1710115634000,49],[1710115635000,49],[1710115636000,51],[1710115637000,51],[1710115638000,53],[1710115639000,53],[1710115640000,54],[1710115641000,55],[1710115642000,57],[1710115643000,56],[1710115644000,58],[1710115645000,59],[1710115646000,60],[1710115647000,70],[1710115648000,62],[1710115649000,62],[1710115650000,63],[1710115651000,64],[1710115652000,64],[1710115653000,65],[1710115654000,67],[1710115655000,68],[1710115656000,68],[1710115657000,68],[1710115658000,71],[1710115659000,71],[1710115660000,72],[1710115661000,72],[1710115662000,73],[1710115663000,74],[1710115664000,76],[1710115665000,76],[1710115666000,77],[1710115667000,79],[1710115668000,79],[1710115669000,79],[1710115670000,81],[1710115671000,81],[1710115672000,82],[1710115673000,83],[1710115674000,85],[1710115675000,85],[1710115676000,86],[1710115677000,87],[1710115678000,88],[1710115679000,89],[1710115680000,89],[1710115681000,91],[1710115682000,91],[1710115683000,92],[1710115684000,94],[1710115685000,94],[1710115686000,96],[1710115687000,97],[1710115688000,98],[1710115689000,98],[1710115690000,99],[1710115691000,100],[1710115692000,102],[1710115693000,102],[1710115694000,104],[1710115695000,104],[1710115696000,105],[1710115697000,106],[1710115698000,107],[1710115699000,108],[1710115700000,108],[1710115701000,110],[1710115702000,111],[1710115703000,111],[1710115704000,111],[1710115705000,111],[1710115706000,111],[1710115707000,111],[1710115708000,111],[1710115709000,111],[1710115710000,112],[1710115711000,111],[1710115712000,111],[1710115713000,111],[1710115714000,111],[1710115715000,111],[1710115716000,111],[1710115717000,111],[1710115718000,111],[1710115719000,111],[1710115720000,111],[1710115721000,111],[1710115722000,111],[1710115723000,113],[1710115724000,111],[1710115725000,111],[1710115726000,111],[1710115727000,111],[1710115728000,111],[1710115729000,111],[1710115730000,111],[1710115731000,112],[1710115732000,111],[1710115733000,111],[1710115734000,111],[1710115735000,111],[1710115736000,111],[1710115737000,111],[1710115738000,111],[1710115739000,111],[1710115740000,111],[1710115741000,111],[1710115742000,111],[1710115743000,111],[1710115744000,111],[1710115745000,111],[1710115746000,111],[1710115747000,111],[1710115748000,111],[1710115749000,112],[1710115750000,111],[1710115751000,111],[1710115752000,111],[1710115753000,111],[1710115754000,111],[1710115755000,111],[1710115756000,111],[1710115757000,111],[1710115758000,111],[1710115759000,111],[1710115760000,111],[1710115761000,111],[1710115762000,111],[1710115763000,111],[1710115764000,111],[1710115765000,111],[1710115766000,111],[1710115767000,111],[1710115768000,111],[1710115769000,111],[1710115770000,111],[1710115771000,111],[1710115772000,111],[1710115773000,111],[1710115774000,111],[1710115775000,111],[1710115776000,111],[1710115777000,111],[1710115778000,111],[1710115779000,111],[1710115780000,111],[1710115781000,111],[1710115782000,112],[1710115783000,111],[1710115784000,111],[1710115785000,112],[1710115786000,111],[1710115787000,111],[1710115788000,111],[1710115789000,111],[1710115790000,111],[1710115791000,111],[1710115792000,111],[1710115793000,111],[1710115794000,111],[1710115795000,111],[1710115796000,111],[1710115797000,111],[1710115798000,111],[1710115799000,111],[1710115800000,111],[1710115801000,111],[1710115802000,111],[1710115803000,111],[1710115804000,111],[1710115805000,111],[1710115806000,111],[1710115807000,111],[1710115808000,111],[1710115809000,111],[1710115810000,111],[1710115811000,111],[1710115812000,111],[1710115813000,111],[1710115814000,111],[1710115815000,111],[1710115816000,111],[1710115817000,111],[1710115818000,111],[1710115819000,111],[1710115820000,111],[1710115821000,112],[1710115822000,108]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#68b65c',
name: 'débitos',
data: [
[1710115578000,0],[1710115579000,0],[1710115580000,0],[1710115581000,0],[1710115582000,1],[1710115583000,2],[1710115584000,4],[1710115585000,6],[1710115586000,7],[1710115587000,9],[1710115588000,11],[1710115589000,13],[1710115590000,15],[1710115591000,16],[1710115592000,19],[1710115593000,20],[1710115594000,22],[1710115595000,24],[1710115596000,25],[1710115597000,28],[1710115598000,29],[1710115599000,31],[1710115600000,34],[1710115601000,35],[1710115602000,37],[1710115603000,38],[1710115604000,40],[1710115605000,42],[1710115606000,44],[1710115607000,46],[1710115608000,48],[1710115609000,51],[1710115610000,52],[1710115611000,54],[1710115612000,56],[1710115613000,57],[1710115614000,60],[1710115615000,61],[1710115616000,63],[1710115617000,64],[1710115618000,66],[1710115619000,69],[1710115620000,69],[1710115621000,71],[1710115622000,74],[1710115623000,74],[1710115624000,77],[1710115625000,79],[1710115626000,85],[1710115627000,82],[1710115628000,84],[1710115629000,86],[1710115630000,88],[1710115631000,89],[1710115632000,124],[1710115633000,101],[1710115634000,96],[1710115635000,98],[1710115636000,99],[1710115637000,102],[1710115638000,103],[1710115639000,105],[1710115640000,107],[1710115641000,109],[1710115642000,110],[1710115643000,112],[1710115644000,113],[1710115645000,115],[1710115646000,117],[1710115647000,142],[1710115648000,121],[1710115649000,124],[1710115650000,125],[1710115651000,127],[1710115652000,128],[1710115653000,130],[1710115654000,133],[1710115655000,134],[1710115656000,135],[1710115657000,137],[1710115658000,140],[1710115659000,141],[1710115660000,143],[1710115661000,145],[1710115662000,148],[1710115663000,148],[1710115664000,151],[1710115665000,152],[1710115666000,154],[1710115667000,156],[1710115668000,158],[1710115669000,159],[1710115670000,162],[1710115671000,163],[1710115672000,165],[1710115673000,167],[1710115674000,169],[1710115675000,170],[1710115676000,171],[1710115677000,175],[1710115678000,176],[1710115679000,177],[1710115680000,179],[1710115681000,181],[1710115682000,183],[1710115683000,184],[1710115684000,187],[1710115685000,188],[1710115686000,191],[1710115687000,194],[1710115688000,194],[1710115689000,197],[1710115690000,198],[1710115691000,200],[1710115692000,202],[1710115693000,203],[1710115694000,206],[1710115695000,207],[1710115696000,209],[1710115697000,211],[1710115698000,213],[1710115699000,214],[1710115700000,216],[1710115701000,218],[1710115702000,221],[1710115703000,222],[1710115704000,221],[1710115705000,220],[1710115706000,221],[1710115707000,221],[1710115708000,221],[1710115709000,221],[1710115710000,225],[1710115711000,220],[1710115712000,221],[1710115713000,221],[1710115714000,221],[1710115715000,220],[1710115716000,221],[1710115717000,220],[1710115718000,221],[1710115719000,221],[1710115720000,221],[1710115721000,221],[1710115722000,221],[1710115723000,224],[1710115724000,221],[1710115725000,220],[1710115726000,221],[1710115727000,220],[1710115728000,221],[1710115729000,220],[1710115730000,221],[1710115731000,223],[1710115732000,220],[1710115733000,220],[1710115734000,221],[1710115735000,221],[1710115736000,221],[1710115737000,221],[1710115738000,221],[1710115739000,221],[1710115740000,221],[1710115741000,221],[1710115742000,220],[1710115743000,221],[1710115744000,220],[1710115745000,221],[1710115746000,221],[1710115747000,222],[1710115748000,221],[1710115749000,221],[1710115750000,220],[1710115751000,222],[1710115752000,221],[1710115753000,220],[1710115754000,220],[1710115755000,220],[1710115756000,221],[1710115757000,221],[1710115758000,221],[1710115759000,221],[1710115760000,221],[1710115761000,221],[1710115762000,221],[1710115763000,221],[1710115764000,221],[1710115765000,221],[1710115766000,221],[1710115767000,221],[1710115768000,221],[1710115769000,221],[1710115770000,221],[1710115771000,221],[1710115772000,220],[1710115773000,221],[1710115774000,221],[1710115775000,221],[1710115776000,220],[1710115777000,221],[1710115778000,221],[1710115779000,221],[1710115780000,220],[1710115781000,221],[1710115782000,223],[1710115783000,220],[1710115784000,220],[1710115785000,222],[1710115786000,221],[1710115787000,221],[1710115788000,221],[1710115789000,221],[1710115790000,222],[1710115791000,221],[1710115792000,221],[1710115793000,221],[1710115794000,221],[1710115795000,221],[1710115796000,221],[1710115797000,220],[1710115798000,221],[1710115799000,221],[1710115800000,221],[1710115801000,221],[1710115802000,221],[1710115803000,220],[1710115804000,221],[1710115805000,221],[1710115806000,221],[1710115807000,222],[1710115808000,221],[1710115809000,221],[1710115810000,221],[1710115811000,220],[1710115812000,221],[1710115813000,221],[1710115814000,221],[1710115815000,220],[1710115816000,221],[1710115817000,221],[1710115818000,220],[1710115819000,221],[1710115820000,221],[1710115821000,224],[1710115822000,217]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#f15b4f',
name: 'extratos',
data: [
[1710115578000,0],[1710115579000,0],[1710115580000,0],[1710115581000,0],[1710115582000,1],[1710115583000,1],[1710115584000,1],[1710115585000,1],[1710115586000,1],[1710115587000,1],[1710115588000,2],[1710115589000,1],[1710115590000,2],[1710115591000,2],[1710115592000,1],[1710115593000,2],[1710115594000,2],[1710115595000,2],[1710115596000,2],[1710115597000,2],[1710115598000,2],[1710115599000,2],[1710115600000,3],[1710115601000,2],[1710115602000,3],[1710115603000,2],[1710115604000,3],[1710115605000,2],[1710115606000,3],[1710115607000,3],[1710115608000,3],[1710115609000,3],[1710115610000,3],[1710115611000,3],[1710115612000,3],[1710115613000,4],[1710115614000,3],[1710115615000,3],[1710115616000,4],[1710115617000,3],[1710115618000,4],[1710115619000,4],[1710115620000,4],[1710115621000,4],[1710115622000,4],[1710115623000,4],[1710115624000,4],[1710115625000,4],[1710115626000,4],[1710115627000,4],[1710115628000,5],[1710115629000,4],[1710115630000,5],[1710115631000,5],[1710115632000,6],[1710115633000,5],[1710115634000,5],[1710115635000,5],[1710115636000,5],[1710115637000,5],[1710115638000,5],[1710115639000,5],[1710115640000,6],[1710115641000,5],[1710115642000,6],[1710115643000,5],[1710115644000,6],[1710115645000,5],[1710115646000,6],[1710115647000,7],[1710115648000,6],[1710115649000,6],[1710115650000,6],[1710115651000,6],[1710115652000,6],[1710115653000,7],[1710115654000,6],[1710115655000,6],[1710115656000,7],[1710115657000,6],[1710115658000,7],[1710115659000,7],[1710115660000,7],[1710115661000,7],[1710115662000,7],[1710115663000,7],[1710115664000,7],[1710115665000,7],[1710115666000,7],[1710115667000,7],[1710115668000,8],[1710115669000,7],[1710115670000,8],[1710115671000,8],[1710115672000,7],[1710115673000,8],[1710115674000,8],[1710115675000,8],[1710115676000,8],[1710115677000,8],[1710115678000,8],[1710115679000,8],[1710115680000,9],[1710115681000,8],[1710115682000,9],[1710115683000,8],[1710115684000,9],[1710115685000,8],[1710115686000,9],[1710115687000,9],[1710115688000,9],[1710115689000,9],[1710115690000,9],[1710115691000,9],[1710115692000,9],[1710115693000,10],[1710115694000,9],[1710115695000,9],[1710115696000,10],[1710115697000,9],[1710115698000,10],[1710115699000,10],[1710115700000,10],[1710115701000,10],[1710115702000,10],[1710115703000,10],[1710115704000,10],[1710115705000,10],[1710115706000,10],[1710115707000,10],[1710115708000,10],[1710115709000,10],[1710115710000,10],[1710115711000,10],[1710115712000,10],[1710115713000,10],[1710115714000,10],[1710115715000,10],[1710115716000,10],[1710115717000,10],[1710115718000,10],[1710115719000,10],[1710115720000,10],[1710115721000,10],[1710115722000,10],[1710115723000,10],[1710115724000,10],[1710115725000,10],[1710115726000,10],[1710115727000,10],[1710115728000,10],[1710115729000,10],[1710115730000,10],[1710115731000,10],[1710115732000,10],[1710115733000,10],[1710115734000,10],[1710115735000,10],[1710115736000,10],[1710115737000,10],[1710115738000,10],[1710115739000,10],[1710115740000,10],[1710115741000,10],[1710115742000,10],[1710115743000,10],[1710115744000,10],[1710115745000,10],[1710115746000,10],[1710115747000,10],[1710115748000,10],[1710115749000,10],[1710115750000,10],[1710115751000,10],[1710115752000,10],[1710115753000,10],[1710115754000,10],[1710115755000,10],[1710115756000,10],[1710115757000,10],[1710115758000,10],[1710115759000,10],[1710115760000,10],[1710115761000,10],[1710115762000,10],[1710115763000,10],[1710115764000,10],[1710115765000,10],[1710115766000,10],[1710115767000,10],[1710115768000,10],[1710115769000,10],[1710115770000,10],[1710115771000,10],[1710115772000,10],[1710115773000,10],[1710115774000,10],[1710115775000,10],[1710115776000,10],[1710115777000,10],[1710115778000,10],[1710115779000,10],[1710115780000,10],[1710115781000,10],[1710115782000,10],[1710115783000,10],[1710115784000,10],[1710115785000,10],[1710115786000,10],[1710115787000,10],[1710115788000,10],[1710115789000,10],[1710115790000,10],[1710115791000,10],[1710115792000,10],[1710115793000,10],[1710115794000,10],[1710115795000,10],[1710115796000,10],[1710115797000,10],[1710115798000,10],[1710115799000,10],[1710115800000,10],[1710115801000,10],[1710115802000,10],[1710115803000,10],[1710115804000,10],[1710115805000,10],[1710115806000,10],[1710115807000,10],[1710115808000,10],[1710115809000,10],[1710115810000,10],[1710115811000,10],[1710115812000,10],[1710115813000,10],[1710115814000,10],[1710115815000,10],[1710115816000,10],[1710115817000,10],[1710115818000,10],[1710115819000,10],[1710115820000,10],[1710115821000,10],[1710115822000,9]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FFDD00',
name: 'validações',
data: [
[1710115578000,0],[1710115579000,0],[1710115580000,0],[1710115581000,5],[1710115582000,5],[1710115583000,0],[1710115584000,0],[1710115585000,0],[1710115586000,0],[1710115587000,0],[1710115588000,0],[1710115589000,0],[1710115590000,0],[1710115591000,0],[1710115592000,0],[1710115593000,0],[1710115594000,0],[1710115595000,0],[1710115596000,0],[1710115597000,0],[1710115598000,0],[1710115599000,0],[1710115600000,0],[1710115601000,0],[1710115602000,0],[1710115603000,0],[1710115604000,0],[1710115605000,0],[1710115606000,0],[1710115607000,0],[1710115608000,0],[1710115609000,0],[1710115610000,0],[1710115611000,0],[1710115612000,0],[1710115613000,0],[1710115614000,0],[1710115615000,0],[1710115616000,0],[1710115617000,0],[1710115618000,0],[1710115619000,0],[1710115620000,0],[1710115621000,0],[1710115622000,0],[1710115623000,0],[1710115624000,0],[1710115625000,0],[1710115626000,0],[1710115627000,0],[1710115628000,0],[1710115629000,0],[1710115630000,0],[1710115631000,0],[1710115632000,0],[1710115633000,0],[1710115634000,0],[1710115635000,0],[1710115636000,0],[1710115637000,0],[1710115638000,0],[1710115639000,0],[1710115640000,0],[1710115641000,0],[1710115642000,0],[1710115643000,0],[1710115644000,0],[1710115645000,0],[1710115646000,0],[1710115647000,0],[1710115648000,0],[1710115649000,0],[1710115650000,0],[1710115651000,0],[1710115652000,0],[1710115653000,0],[1710115654000,0],[1710115655000,0],[1710115656000,0],[1710115657000,0],[1710115658000,0],[1710115659000,0],[1710115660000,0],[1710115661000,0],[1710115662000,0],[1710115663000,0],[1710115664000,0],[1710115665000,0],[1710115666000,0],[1710115667000,0],[1710115668000,0],[1710115669000,0],[1710115670000,0],[1710115671000,0],[1710115672000,0],[1710115673000,0],[1710115674000,0],[1710115675000,0],[1710115676000,0],[1710115677000,0],[1710115678000,0],[1710115679000,0],[1710115680000,0],[1710115681000,0],[1710115682000,0],[1710115683000,0],[1710115684000,0],[1710115685000,0],[1710115686000,0],[1710115687000,0],[1710115688000,0],[1710115689000,0],[1710115690000,0],[1710115691000,0],[1710115692000,0],[1710115693000,0],[1710115694000,0],[1710115695000,0],[1710115696000,0],[1710115697000,0],[1710115698000,0],[1710115699000,0],[1710115700000,0],[1710115701000,0],[1710115702000,0],[1710115703000,0],[1710115704000,0],[1710115705000,0],[1710115706000,0],[1710115707000,0],[1710115708000,0],[1710115709000,0],[1710115710000,0],[1710115711000,0],[1710115712000,0],[1710115713000,0],[1710115714000,0],[1710115715000,0],[1710115716000,0],[1710115717000,0],[1710115718000,0],[1710115719000,0],[1710115720000,0],[1710115721000,0],[1710115722000,0],[1710115723000,0],[1710115724000,0],[1710115725000,0],[1710115726000,0],[1710115727000,0],[1710115728000,0],[1710115729000,0],[1710115730000,0],[1710115731000,0],[1710115732000,0],[1710115733000,0],[1710115734000,0],[1710115735000,0],[1710115736000,0],[1710115737000,0],[1710115738000,0],[1710115739000,0],[1710115740000,0],[1710115741000,0],[1710115742000,0],[1710115743000,0],[1710115744000,0],[1710115745000,0],[1710115746000,0],[1710115747000,0],[1710115748000,0],[1710115749000,0],[1710115750000,0],[1710115751000,0],[1710115752000,0],[1710115753000,0],[1710115754000,0],[1710115755000,0],[1710115756000,0],[1710115757000,0],[1710115758000,0],[1710115759000,0],[1710115760000,0],[1710115761000,0],[1710115762000,0],[1710115763000,0],[1710115764000,0],[1710115765000,0],[1710115766000,0],[1710115767000,0],[1710115768000,0],[1710115769000,0],[1710115770000,0],[1710115771000,0],[1710115772000,0],[1710115773000,0],[1710115774000,0],[1710115775000,0],[1710115776000,0],[1710115777000,0],[1710115778000,0],[1710115779000,0],[1710115780000,0],[1710115781000,0],[1710115782000,0],[1710115783000,0],[1710115784000,0],[1710115785000,0],[1710115786000,0],[1710115787000,0],[1710115788000,0],[1710115789000,0],[1710115790000,0],[1710115791000,0],[1710115792000,0],[1710115793000,0],[1710115794000,0],[1710115795000,0],[1710115796000,0],[1710115797000,0],[1710115798000,0],[1710115799000,0],[1710115800000,0],[1710115801000,0],[1710115802000,0],[1710115803000,0],[1710115804000,0],[1710115805000,0],[1710115806000,0],[1710115807000,0],[1710115808000,0],[1710115809000,0],[1710115810000,0],[1710115811000,0],[1710115812000,0],[1710115813000,0],[1710115814000,0],[1710115815000,0],[1710115816000,0],[1710115817000,0],[1710115818000,0],[1710115819000,0],[1710115820000,0],[1710115821000,0],[1710115822000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00D5FF',
name: 'validação HTTP 404',
data: [
[1710115578000,0],[1710115579000,0],[1710115580000,0],[1710115581000,1],[1710115582000,0],[1710115583000,0],[1710115584000,0],[1710115585000,0],[1710115586000,0],[1710115587000,0],[1710115588000,0],[1710115589000,0],[1710115590000,0],[1710115591000,0],[1710115592000,0],[1710115593000,0],[1710115594000,0],[1710115595000,0],[1710115596000,0],[1710115597000,0],[1710115598000,0],[1710115599000,0],[1710115600000,0],[1710115601000,0],[1710115602000,0],[1710115603000,0],[1710115604000,0],[1710115605000,0],[1710115606000,0],[1710115607000,0],[1710115608000,0],[1710115609000,0],[1710115610000,0],[1710115611000,0],[1710115612000,0],[1710115613000,0],[1710115614000,0],[1710115615000,0],[1710115616000,0],[1710115617000,0],[1710115618000,0],[1710115619000,0],[1710115620000,0],[1710115621000,0],[1710115622000,0],[1710115623000,0],[1710115624000,0],[1710115625000,0],[1710115626000,0],[1710115627000,0],[1710115628000,0],[1710115629000,0],[1710115630000,0],[1710115631000,0],[1710115632000,0],[1710115633000,0],[1710115634000,0],[1710115635000,0],[1710115636000,0],[1710115637000,0],[1710115638000,0],[1710115639000,0],[1710115640000,0],[1710115641000,0],[1710115642000,0],[1710115643000,0],[1710115644000,0],[1710115645000,0],[1710115646000,0],[1710115647000,0],[1710115648000,0],[1710115649000,0],[1710115650000,0],[1710115651000,0],[1710115652000,0],[1710115653000,0],[1710115654000,0],[1710115655000,0],[1710115656000,0],[1710115657000,0],[1710115658000,0],[1710115659000,0],[1710115660000,0],[1710115661000,0],[1710115662000,0],[1710115663000,0],[1710115664000,0],[1710115665000,0],[1710115666000,0],[1710115667000,0],[1710115668000,0],[1710115669000,0],[1710115670000,0],[1710115671000,0],[1710115672000,0],[1710115673000,0],[1710115674000,0],[1710115675000,0],[1710115676000,0],[1710115677000,0],[1710115678000,0],[1710115679000,0],[1710115680000,0],[1710115681000,0],[1710115682000,0],[1710115683000,0],[1710115684000,0],[1710115685000,0],[1710115686000,0],[1710115687000,0],[1710115688000,0],[1710115689000,0],[1710115690000,0],[1710115691000,0],[1710115692000,0],[1710115693000,0],[1710115694000,0],[1710115695000,0],[1710115696000,0],[1710115697000,0],[1710115698000,0],[1710115699000,0],[1710115700000,0],[1710115701000,0],[1710115702000,0],[1710115703000,0],[1710115704000,0],[1710115705000,0],[1710115706000,0],[1710115707000,0],[1710115708000,0],[1710115709000,0],[1710115710000,0],[1710115711000,0],[1710115712000,0],[1710115713000,0],[1710115714000,0],[1710115715000,0],[1710115716000,0],[1710115717000,0],[1710115718000,0],[1710115719000,0],[1710115720000,0],[1710115721000,0],[1710115722000,0],[1710115723000,0],[1710115724000,0],[1710115725000,0],[1710115726000,0],[1710115727000,0],[1710115728000,0],[1710115729000,0],[1710115730000,0],[1710115731000,0],[1710115732000,0],[1710115733000,0],[1710115734000,0],[1710115735000,0],[1710115736000,0],[1710115737000,0],[1710115738000,0],[1710115739000,0],[1710115740000,0],[1710115741000,0],[1710115742000,0],[1710115743000,0],[1710115744000,0],[1710115745000,0],[1710115746000,0],[1710115747000,0],[1710115748000,0],[1710115749000,0],[1710115750000,0],[1710115751000,0],[1710115752000,0],[1710115753000,0],[1710115754000,0],[1710115755000,0],[1710115756000,0],[1710115757000,0],[1710115758000,0],[1710115759000,0],[1710115760000,0],[1710115761000,0],[1710115762000,0],[1710115763000,0],[1710115764000,0],[1710115765000,0],[1710115766000,0],[1710115767000,0],[1710115768000,0],[1710115769000,0],[1710115770000,0],[1710115771000,0],[1710115772000,0],[1710115773000,0],[1710115774000,0],[1710115775000,0],[1710115776000,0],[1710115777000,0],[1710115778000,0],[1710115779000,0],[1710115780000,0],[1710115781000,0],[1710115782000,0],[1710115783000,0],[1710115784000,0],[1710115785000,0],[1710115786000,0],[1710115787000,0],[1710115788000,0],[1710115789000,0],[1710115790000,0],[1710115791000,0],[1710115792000,0],[1710115793000,0],[1710115794000,0],[1710115795000,0],[1710115796000,0],[1710115797000,0],[1710115798000,0],[1710115799000,0],[1710115800000,0],[1710115801000,0],[1710115802000,0],[1710115803000,0],[1710115804000,0],[1710115805000,0],[1710115806000,0],[1710115807000,0],[1710115808000,0],[1710115809000,0],[1710115810000,0],[1710115811000,0],[1710115812000,0],[1710115813000,0],[1710115814000,0],[1710115815000,0],[1710115816000,0],[1710115817000,0],[1710115818000,0],[1710115819000,0],[1710115820000,0],[1710115821000,0],[1710115822000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00FF00',
name: 'validação concorrência saldo - 0',
data: [
[1710115578000,0],[1710115579000,0],[1710115580000,1],[1710115581000,0],[1710115582000,0],[1710115583000,0],[1710115584000,0],[1710115585000,0],[1710115586000,0],[1710115587000,0],[1710115588000,0],[1710115589000,0],[1710115590000,0],[1710115591000,0],[1710115592000,0],[1710115593000,0],[1710115594000,0],[1710115595000,0],[1710115596000,0],[1710115597000,0],[1710115598000,0],[1710115599000,0],[1710115600000,0],[1710115601000,0],[1710115602000,0],[1710115603000,0],[1710115604000,0],[1710115605000,0],[1710115606000,0],[1710115607000,0],[1710115608000,0],[1710115609000,0],[1710115610000,0],[1710115611000,0],[1710115612000,0],[1710115613000,0],[1710115614000,0],[1710115615000,0],[1710115616000,0],[1710115617000,0],[1710115618000,0],[1710115619000,0],[1710115620000,0],[1710115621000,0],[1710115622000,0],[1710115623000,0],[1710115624000,0],[1710115625000,0],[1710115626000,0],[1710115627000,0],[1710115628000,0],[1710115629000,0],[1710115630000,0],[1710115631000,0],[1710115632000,0],[1710115633000,0],[1710115634000,0],[1710115635000,0],[1710115636000,0],[1710115637000,0],[1710115638000,0],[1710115639000,0],[1710115640000,0],[1710115641000,0],[1710115642000,0],[1710115643000,0],[1710115644000,0],[1710115645000,0],[1710115646000,0],[1710115647000,0],[1710115648000,0],[1710115649000,0],[1710115650000,0],[1710115651000,0],[1710115652000,0],[1710115653000,0],[1710115654000,0],[1710115655000,0],[1710115656000,0],[1710115657000,0],[1710115658000,0],[1710115659000,0],[1710115660000,0],[1710115661000,0],[1710115662000,0],[1710115663000,0],[1710115664000,0],[1710115665000,0],[1710115666000,0],[1710115667000,0],[1710115668000,0],[1710115669000,0],[1710115670000,0],[1710115671000,0],[1710115672000,0],[1710115673000,0],[1710115674000,0],[1710115675000,0],[1710115676000,0],[1710115677000,0],[1710115678000,0],[1710115679000,0],[1710115680000,0],[1710115681000,0],[1710115682000,0],[1710115683000,0],[1710115684000,0],[1710115685000,0],[1710115686000,0],[1710115687000,0],[1710115688000,0],[1710115689000,0],[1710115690000,0],[1710115691000,0],[1710115692000,0],[1710115693000,0],[1710115694000,0],[1710115695000,0],[1710115696000,0],[1710115697000,0],[1710115698000,0],[1710115699000,0],[1710115700000,0],[1710115701000,0],[1710115702000,0],[1710115703000,0],[1710115704000,0],[1710115705000,0],[1710115706000,0],[1710115707000,0],[1710115708000,0],[1710115709000,0],[1710115710000,0],[1710115711000,0],[1710115712000,0],[1710115713000,0],[1710115714000,0],[1710115715000,0],[1710115716000,0],[1710115717000,0],[1710115718000,0],[1710115719000,0],[1710115720000,0],[1710115721000,0],[1710115722000,0],[1710115723000,0],[1710115724000,0],[1710115725000,0],[1710115726000,0],[1710115727000,0],[1710115728000,0],[1710115729000,0],[1710115730000,0],[1710115731000,0],[1710115732000,0],[1710115733000,0],[1710115734000,0],[1710115735000,0],[1710115736000,0],[1710115737000,0],[1710115738000,0],[1710115739000,0],[1710115740000,0],[1710115741000,0],[1710115742000,0],[1710115743000,0],[1710115744000,0],[1710115745000,0],[1710115746000,0],[1710115747000,0],[1710115748000,0],[1710115749000,0],[1710115750000,0],[1710115751000,0],[1710115752000,0],[1710115753000,0],[1710115754000,0],[1710115755000,0],[1710115756000,0],[1710115757000,0],[1710115758000,0],[1710115759000,0],[1710115760000,0],[1710115761000,0],[1710115762000,0],[1710115763000,0],[1710115764000,0],[1710115765000,0],[1710115766000,0],[1710115767000,0],[1710115768000,0],[1710115769000,0],[1710115770000,0],[1710115771000,0],[1710115772000,0],[1710115773000,0],[1710115774000,0],[1710115775000,0],[1710115776000,0],[1710115777000,0],[1710115778000,0],[1710115779000,0],[1710115780000,0],[1710115781000,0],[1710115782000,0],[1710115783000,0],[1710115784000,0],[1710115785000,0],[1710115786000,0],[1710115787000,0],[1710115788000,0],[1710115789000,0],[1710115790000,0],[1710115791000,0],[1710115792000,0],[1710115793000,0],[1710115794000,0],[1710115795000,0],[1710115796000,0],[1710115797000,0],[1710115798000,0],[1710115799000,0],[1710115800000,0],[1710115801000,0],[1710115802000,0],[1710115803000,0],[1710115804000,0],[1710115805000,0],[1710115806000,0],[1710115807000,0],[1710115808000,0],[1710115809000,0],[1710115810000,0],[1710115811000,0],[1710115812000,0],[1710115813000,0],[1710115814000,0],[1710115815000,0],[1710115816000,0],[1710115817000,0],[1710115818000,0],[1710115819000,0],[1710115820000,0],[1710115821000,0],[1710115822000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#9D00FF',
name: 'validação concorrência transações - c',
data: [
[1710115578000,0],[1710115579000,25],[1710115580000,22],[1710115581000,0],[1710115582000,0],[1710115583000,0],[1710115584000,0],[1710115585000,0],[1710115586000,0],[1710115587000,0],[1710115588000,0],[1710115589000,0],[1710115590000,0],[1710115591000,0],[1710115592000,0],[1710115593000,0],[1710115594000,0],[1710115595000,0],[1710115596000,0],[1710115597000,0],[1710115598000,0],[1710115599000,0],[1710115600000,0],[1710115601000,0],[1710115602000,0],[1710115603000,0],[1710115604000,0],[1710115605000,0],[1710115606000,0],[1710115607000,0],[1710115608000,0],[1710115609000,0],[1710115610000,0],[1710115611000,0],[1710115612000,0],[1710115613000,0],[1710115614000,0],[1710115615000,0],[1710115616000,0],[1710115617000,0],[1710115618000,0],[1710115619000,0],[1710115620000,0],[1710115621000,0],[1710115622000,0],[1710115623000,0],[1710115624000,0],[1710115625000,0],[1710115626000,0],[1710115627000,0],[1710115628000,0],[1710115629000,0],[1710115630000,0],[1710115631000,0],[1710115632000,0],[1710115633000,0],[1710115634000,0],[1710115635000,0],[1710115636000,0],[1710115637000,0],[1710115638000,0],[1710115639000,0],[1710115640000,0],[1710115641000,0],[1710115642000,0],[1710115643000,0],[1710115644000,0],[1710115645000,0],[1710115646000,0],[1710115647000,0],[1710115648000,0],[1710115649000,0],[1710115650000,0],[1710115651000,0],[1710115652000,0],[1710115653000,0],[1710115654000,0],[1710115655000,0],[1710115656000,0],[1710115657000,0],[1710115658000,0],[1710115659000,0],[1710115660000,0],[1710115661000,0],[1710115662000,0],[1710115663000,0],[1710115664000,0],[1710115665000,0],[1710115666000,0],[1710115667000,0],[1710115668000,0],[1710115669000,0],[1710115670000,0],[1710115671000,0],[1710115672000,0],[1710115673000,0],[1710115674000,0],[1710115675000,0],[1710115676000,0],[1710115677000,0],[1710115678000,0],[1710115679000,0],[1710115680000,0],[1710115681000,0],[1710115682000,0],[1710115683000,0],[1710115684000,0],[1710115685000,0],[1710115686000,0],[1710115687000,0],[1710115688000,0],[1710115689000,0],[1710115690000,0],[1710115691000,0],[1710115692000,0],[1710115693000,0],[1710115694000,0],[1710115695000,0],[1710115696000,0],[1710115697000,0],[1710115698000,0],[1710115699000,0],[1710115700000,0],[1710115701000,0],[1710115702000,0],[1710115703000,0],[1710115704000,0],[1710115705000,0],[1710115706000,0],[1710115707000,0],[1710115708000,0],[1710115709000,0],[1710115710000,0],[1710115711000,0],[1710115712000,0],[1710115713000,0],[1710115714000,0],[1710115715000,0],[1710115716000,0],[1710115717000,0],[1710115718000,0],[1710115719000,0],[1710115720000,0],[1710115721000,0],[1710115722000,0],[1710115723000,0],[1710115724000,0],[1710115725000,0],[1710115726000,0],[1710115727000,0],[1710115728000,0],[1710115729000,0],[1710115730000,0],[1710115731000,0],[1710115732000,0],[1710115733000,0],[1710115734000,0],[1710115735000,0],[1710115736000,0],[1710115737000,0],[1710115738000,0],[1710115739000,0],[1710115740000,0],[1710115741000,0],[1710115742000,0],[1710115743000,0],[1710115744000,0],[1710115745000,0],[1710115746000,0],[1710115747000,0],[1710115748000,0],[1710115749000,0],[1710115750000,0],[1710115751000,0],[1710115752000,0],[1710115753000,0],[1710115754000,0],[1710115755000,0],[1710115756000,0],[1710115757000,0],[1710115758000,0],[1710115759000,0],[1710115760000,0],[1710115761000,0],[1710115762000,0],[1710115763000,0],[1710115764000,0],[1710115765000,0],[1710115766000,0],[1710115767000,0],[1710115768000,0],[1710115769000,0],[1710115770000,0],[1710115771000,0],[1710115772000,0],[1710115773000,0],[1710115774000,0],[1710115775000,0],[1710115776000,0],[1710115777000,0],[1710115778000,0],[1710115779000,0],[1710115780000,0],[1710115781000,0],[1710115782000,0],[1710115783000,0],[1710115784000,0],[1710115785000,0],[1710115786000,0],[1710115787000,0],[1710115788000,0],[1710115789000,0],[1710115790000,0],[1710115791000,0],[1710115792000,0],[1710115793000,0],[1710115794000,0],[1710115795000,0],[1710115796000,0],[1710115797000,0],[1710115798000,0],[1710115799000,0],[1710115800000,0],[1710115801000,0],[1710115802000,0],[1710115803000,0],[1710115804000,0],[1710115805000,0],[1710115806000,0],[1710115807000,0],[1710115808000,0],[1710115809000,0],[1710115810000,0],[1710115811000,0],[1710115812000,0],[1710115813000,0],[1710115814000,0],[1710115815000,0],[1710115816000,0],[1710115817000,0],[1710115818000,0],[1710115819000,0],[1710115820000,0],[1710115821000,0],[1710115822000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FF00E1',
name: 'validação concorrência saldo - -25',
data: [
[1710115578000,1],[1710115579000,1],[1710115580000,0],[1710115581000,0],[1710115582000,0],[1710115583000,0],[1710115584000,0],[1710115585000,0],[1710115586000,0],[1710115587000,0],[1710115588000,0],[1710115589000,0],[1710115590000,0],[1710115591000,0],[1710115592000,0],[1710115593000,0],[1710115594000,0],[1710115595000,0],[1710115596000,0],[1710115597000,0],[1710115598000,0],[1710115599000,0],[1710115600000,0],[1710115601000,0],[1710115602000,0],[1710115603000,0],[1710115604000,0],[1710115605000,0],[1710115606000,0],[1710115607000,0],[1710115608000,0],[1710115609000,0],[1710115610000,0],[1710115611000,0],[1710115612000,0],[1710115613000,0],[1710115614000,0],[1710115615000,0],[1710115616000,0],[1710115617000,0],[1710115618000,0],[1710115619000,0],[1710115620000,0],[1710115621000,0],[1710115622000,0],[1710115623000,0],[1710115624000,0],[1710115625000,0],[1710115626000,0],[1710115627000,0],[1710115628000,0],[1710115629000,0],[1710115630000,0],[1710115631000,0],[1710115632000,0],[1710115633000,0],[1710115634000,0],[1710115635000,0],[1710115636000,0],[1710115637000,0],[1710115638000,0],[1710115639000,0],[1710115640000,0],[1710115641000,0],[1710115642000,0],[1710115643000,0],[1710115644000,0],[1710115645000,0],[1710115646000,0],[1710115647000,0],[1710115648000,0],[1710115649000,0],[1710115650000,0],[1710115651000,0],[1710115652000,0],[1710115653000,0],[1710115654000,0],[1710115655000,0],[1710115656000,0],[1710115657000,0],[1710115658000,0],[1710115659000,0],[1710115660000,0],[1710115661000,0],[1710115662000,0],[1710115663000,0],[1710115664000,0],[1710115665000,0],[1710115666000,0],[1710115667000,0],[1710115668000,0],[1710115669000,0],[1710115670000,0],[1710115671000,0],[1710115672000,0],[1710115673000,0],[1710115674000,0],[1710115675000,0],[1710115676000,0],[1710115677000,0],[1710115678000,0],[1710115679000,0],[1710115680000,0],[1710115681000,0],[1710115682000,0],[1710115683000,0],[1710115684000,0],[1710115685000,0],[1710115686000,0],[1710115687000,0],[1710115688000,0],[1710115689000,0],[1710115690000,0],[1710115691000,0],[1710115692000,0],[1710115693000,0],[1710115694000,0],[1710115695000,0],[1710115696000,0],[1710115697000,0],[1710115698000,0],[1710115699000,0],[1710115700000,0],[1710115701000,0],[1710115702000,0],[1710115703000,0],[1710115704000,0],[1710115705000,0],[1710115706000,0],[1710115707000,0],[1710115708000,0],[1710115709000,0],[1710115710000,0],[1710115711000,0],[1710115712000,0],[1710115713000,0],[1710115714000,0],[1710115715000,0],[1710115716000,0],[1710115717000,0],[1710115718000,0],[1710115719000,0],[1710115720000,0],[1710115721000,0],[1710115722000,0],[1710115723000,0],[1710115724000,0],[1710115725000,0],[1710115726000,0],[1710115727000,0],[1710115728000,0],[1710115729000,0],[1710115730000,0],[1710115731000,0],[1710115732000,0],[1710115733000,0],[1710115734000,0],[1710115735000,0],[1710115736000,0],[1710115737000,0],[1710115738000,0],[1710115739000,0],[1710115740000,0],[1710115741000,0],[1710115742000,0],[1710115743000,0],[1710115744000,0],[1710115745000,0],[1710115746000,0],[1710115747000,0],[1710115748000,0],[1710115749000,0],[1710115750000,0],[1710115751000,0],[1710115752000,0],[1710115753000,0],[1710115754000,0],[1710115755000,0],[1710115756000,0],[1710115757000,0],[1710115758000,0],[1710115759000,0],[1710115760000,0],[1710115761000,0],[1710115762000,0],[1710115763000,0],[1710115764000,0],[1710115765000,0],[1710115766000,0],[1710115767000,0],[1710115768000,0],[1710115769000,0],[1710115770000,0],[1710115771000,0],[1710115772000,0],[1710115773000,0],[1710115774000,0],[1710115775000,0],[1710115776000,0],[1710115777000,0],[1710115778000,0],[1710115779000,0],[1710115780000,0],[1710115781000,0],[1710115782000,0],[1710115783000,0],[1710115784000,0],[1710115785000,0],[1710115786000,0],[1710115787000,0],[1710115788000,0],[1710115789000,0],[1710115790000,0],[1710115791000,0],[1710115792000,0],[1710115793000,0],[1710115794000,0],[1710115795000,0],[1710115796000,0],[1710115797000,0],[1710115798000,0],[1710115799000,0],[1710115800000,0],[1710115801000,0],[1710115802000,0],[1710115803000,0],[1710115804000,0],[1710115805000,0],[1710115806000,0],[1710115807000,0],[1710115808000,0],[1710115809000,0],[1710115810000,0],[1710115811000,0],[1710115812000,0],[1710115813000,0],[1710115814000,0],[1710115815000,0],[1710115816000,0],[1710115817000,0],[1710115818000,0],[1710115819000,0],[1710115820000,0],[1710115821000,0],[1710115822000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#AECAEB',
name: 'validação concorrência transações - d',
data: [
[1710115578000,25],[1710115579000,0],[1710115580000,0],[1710115581000,0],[1710115582000,0],[1710115583000,0],[1710115584000,0],[1710115585000,0],[1710115586000,0],[1710115587000,0],[1710115588000,0],[1710115589000,0],[1710115590000,0],[1710115591000,0],[1710115592000,0],[1710115593000,0],[1710115594000,0],[1710115595000,0],[1710115596000,0],[1710115597000,0],[1710115598000,0],[1710115599000,0],[1710115600000,0],[1710115601000,0],[1710115602000,0],[1710115603000,0],[1710115604000,0],[1710115605000,0],[1710115606000,0],[1710115607000,0],[1710115608000,0],[1710115609000,0],[1710115610000,0],[1710115611000,0],[1710115612000,0],[1710115613000,0],[1710115614000,0],[1710115615000,0],[1710115616000,0],[1710115617000,0],[1710115618000,0],[1710115619000,0],[1710115620000,0],[1710115621000,0],[1710115622000,0],[1710115623000,0],[1710115624000,0],[1710115625000,0],[1710115626000,0],[1710115627000,0],[1710115628000,0],[1710115629000,0],[1710115630000,0],[1710115631000,0],[1710115632000,0],[1710115633000,0],[1710115634000,0],[1710115635000,0],[1710115636000,0],[1710115637000,0],[1710115638000,0],[1710115639000,0],[1710115640000,0],[1710115641000,0],[1710115642000,0],[1710115643000,0],[1710115644000,0],[1710115645000,0],[1710115646000,0],[1710115647000,0],[1710115648000,0],[1710115649000,0],[1710115650000,0],[1710115651000,0],[1710115652000,0],[1710115653000,0],[1710115654000,0],[1710115655000,0],[1710115656000,0],[1710115657000,0],[1710115658000,0],[1710115659000,0],[1710115660000,0],[1710115661000,0],[1710115662000,0],[1710115663000,0],[1710115664000,0],[1710115665000,0],[1710115666000,0],[1710115667000,0],[1710115668000,0],[1710115669000,0],[1710115670000,0],[1710115671000,0],[1710115672000,0],[1710115673000,0],[1710115674000,0],[1710115675000,0],[1710115676000,0],[1710115677000,0],[1710115678000,0],[1710115679000,0],[1710115680000,0],[1710115681000,0],[1710115682000,0],[1710115683000,0],[1710115684000,0],[1710115685000,0],[1710115686000,0],[1710115687000,0],[1710115688000,0],[1710115689000,0],[1710115690000,0],[1710115691000,0],[1710115692000,0],[1710115693000,0],[1710115694000,0],[1710115695000,0],[1710115696000,0],[1710115697000,0],[1710115698000,0],[1710115699000,0],[1710115700000,0],[1710115701000,0],[1710115702000,0],[1710115703000,0],[1710115704000,0],[1710115705000,0],[1710115706000,0],[1710115707000,0],[1710115708000,0],[1710115709000,0],[1710115710000,0],[1710115711000,0],[1710115712000,0],[1710115713000,0],[1710115714000,0],[1710115715000,0],[1710115716000,0],[1710115717000,0],[1710115718000,0],[1710115719000,0],[1710115720000,0],[1710115721000,0],[1710115722000,0],[1710115723000,0],[1710115724000,0],[1710115725000,0],[1710115726000,0],[1710115727000,0],[1710115728000,0],[1710115729000,0],[1710115730000,0],[1710115731000,0],[1710115732000,0],[1710115733000,0],[1710115734000,0],[1710115735000,0],[1710115736000,0],[1710115737000,0],[1710115738000,0],[1710115739000,0],[1710115740000,0],[1710115741000,0],[1710115742000,0],[1710115743000,0],[1710115744000,0],[1710115745000,0],[1710115746000,0],[1710115747000,0],[1710115748000,0],[1710115749000,0],[1710115750000,0],[1710115751000,0],[1710115752000,0],[1710115753000,0],[1710115754000,0],[1710115755000,0],[1710115756000,0],[1710115757000,0],[1710115758000,0],[1710115759000,0],[1710115760000,0],[1710115761000,0],[1710115762000,0],[1710115763000,0],[1710115764000,0],[1710115765000,0],[1710115766000,0],[1710115767000,0],[1710115768000,0],[1710115769000,0],[1710115770000,0],[1710115771000,0],[1710115772000,0],[1710115773000,0],[1710115774000,0],[1710115775000,0],[1710115776000,0],[1710115777000,0],[1710115778000,0],[1710115779000,0],[1710115780000,0],[1710115781000,0],[1710115782000,0],[1710115783000,0],[1710115784000,0],[1710115785000,0],[1710115786000,0],[1710115787000,0],[1710115788000,0],[1710115789000,0],[1710115790000,0],[1710115791000,0],[1710115792000,0],[1710115793000,0],[1710115794000,0],[1710115795000,0],[1710115796000,0],[1710115797000,0],[1710115798000,0],[1710115799000,0],[1710115800000,0],[1710115801000,0],[1710115802000,0],[1710115803000,0],[1710115804000,0],[1710115805000,0],[1710115806000,0],[1710115807000,0],[1710115808000,0],[1710115809000,0],[1710115810000,0],[1710115811000,0],[1710115812000,0],[1710115813000,0],[1710115814000,0],[1710115815000,0],[1710115816000,0],[1710115817000,0],[1710115818000,0],[1710115819000,0],[1710115820000,0],[1710115821000,0],[1710115822000,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: ['4', '11', '18', '25', '32', '39', '45', '52', '59', '66', '73', '80', '87', '93', '100', '107', '114', '121', '128', '134', '141', '148', '155', '162', '169', '175', '182', '189', '196', '203', '210', '216', '223', '230', '237', '244', '251', '258', '264', '271', '278', '285', '292', '299', '305', '312', '319', '326', '333', '340', '346', '353', '360', '367', '374', '381', '387', '394', '401', '408', '415', '422', '429', '435', '442', '449', '456', '463', '470', '476', '483', '490', '497', '504', '511', '517', '524', '531', '538', '545', '552', '558', '565', '572', '579', '586', '593', '600', '606', '613', '620', '627', '634', '641', '647', '654', '661', '668', '675', '682'],
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: [
85.72,10.93,1.37,0.36,0.14,0.09,0.04,0.07,0.05,0.04,0.03,0.04,0.02,0.03,0.02,0.02,0.01,0.02,0.01,0.03,0.02,0.01,0.01,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.03,0.01,0.02,0.02,0.02,0.02,0.02,0.03,0.0,0.01,0.02,0.0,0.01,0.01,0.01,0.0,0.01,0.01,0.01,0.0,0.0,0.01,0.0,0.0,0.01,0.01,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
],
tooltip: { yDecimals: 0, ySuffix: 'ms' }
},
{
type: 'column',
color: '#f15b4f',
name: 'KO',
data: [
0.0,0.01,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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([[1710115578,[79,234,247,256,256,257,258,258,259,260]],[1710115579,[5,5,5,5,5,5,5,5,5,5]],[1710115580,[14,24,32,46,52,52,54,58,59,60]],[1710115581,[4,4,4,4,4,4,4,4,4,4]],[1710115582,[1,2,3,8,9,9,11,11,12,13]],[1710115583,[5,8,11,12,12,13,13,13,13,14]],[1710115584,[5,6,7,8,9,9,9,9,9,9]],[1710115585,[6,7,8,9,11,13,14,14,14,14]],[1710115586,[3,6,6,7,8,8,8,8,8,8]],[1710115587,[4,7,7,11,11,12,13,14,14,14]],[1710115588,[5,6,6,7,7,7,8,8,10,11]],[1710115589,[4,6,7,7,7,8,8,8,8,9]],[1710115590,[3,6,6,7,7,7,8,8,12,13]],[1710115591,[3,6,7,8,8,8,9,9,10,10]],[1710115592,[4,6,7,7,8,8,8,8,9,10]],[1710115593,[3,6,6,7,7,9,9,10,10,11]],[1710115594,[4,6,7,8,8,8,8,10,14,15]],[1710115595,[4,6,7,8,8,8,8,9,14,15]],[1710115596,[3,5,6,7,7,7,7,8,10,11]],[1710115597,[2,6,7,8,8,9,9,10,14,14]],[1710115598,[2,5,6,7,7,8,8,9,15,16]],[1710115599,[2,5,6,7,7,8,8,9,10,11]],[1710115600,[2,5,6,75,112,180,234,280,317,318]],[1710115601,[2,5,5,6,6,6,7,7,70,85]],[1710115602,[2,5,6,7,7,7,9,10,37,44]],[1710115603,[2,5,6,6,6,7,8,9,10,11]],[1710115604,[2,5,5,6,7,7,8,11,14,14]],[1710115605,[2,5,6,7,7,8,8,9,9,11]],[1710115606,[2,5,5,6,7,8,9,12,14,16]],[1710115607,[2,5,6,7,7,8,9,12,14,14]],[1710115608,[2,5,5,7,7,7,7,11,13,14]],[1710115609,[1,4,5,6,6,7,7,8,9,10]],[1710115610,[2,4,5,6,6,7,8,10,20,24]],[1710115611,[2,4,5,6,6,6,7,8,13,18]],[1710115612,[1,5,5,6,7,7,7,8,11,13]],[1710115613,[1,5,5,6,7,7,9,12,60,75]],[1710115614,[2,4,5,6,6,7,7,9,11,13]],[1710115615,[2,5,5,6,7,7,7,8,9,14]],[1710115616,[2,4,5,6,6,7,7,8,12,12]],[1710115617,[2,4,5,7,7,8,9,11,23,25]],[1710115618,[2,5,6,8,8,8,10,12,14,18]],[1710115619,[1,4,5,6,7,8,8,8,12,21]],[1710115620,[1,4,5,6,6,7,7,8,12,18]],[1710115621,[1,4,5,6,6,6,7,7,10,13]],[1710115622,[1,4,5,6,7,7,7,8,14,16]],[1710115623,[1,4,5,7,7,8,9,12,16,17]],[1710115624,[1,3,4,5,6,6,7,11,16,18]],[1710115625,[1,4,5,6,6,7,8,9,10,16]],[1710115626,[1,4,5,10,13,53,112,171,219,221]],[1710115627,[1,5,6,18,77,133,177,222,248,264]],[1710115628,[1,4,5,7,8,27,57,99,138,148]],[1710115629,[1,5,9,121,144,174,199,229,265,272]],[1710115630,[1,5,7,23,54,101,145,193,230,235]],[1710115631,[1,4,5,6,6,7,7,8,14,15]],[1710115632,[1,6,12,164,218,270,314,397,435,442]],[1710115633,[1,5,11,182,231,280,330,382,433,456]],[1710115634,[1,4,5,6,6,7,165,223,278,285]],[1710115635,[1,4,5,14,54,101,465,516,566,571]],[1710115636,[1,5,27,193,238,284,330,379,417,431]],[1710115637,[1,2,4,5,5,5,6,7,14,16]],[1710115638,[1,2,4,5,6,6,6,7,16,31]],[1710115639,[1,4,5,142,197,242,294,335,385,400]],[1710115640,[1,4,5,7,7,8,35,72,116,132]],[1710115641,[1,5,9,436,479,538,589,638,677,685]],[1710115642,[1,4,6,65,106,158,202,241,276,302]],[1710115643,[1,4,5,6,6,6,7,8,14,17]],[1710115644,[1,2,5,6,6,7,7,9,24,30]],[1710115645,[1,3,4,5,5,5,6,6,66,81]],[1710115646,[1,2,5,7,10,27,65,451,513,536]],[1710115647,[1,5,85,212,242,277,314,342,388,408]],[1710115648,[1,4,5,6,6,7,10,19,58,74]],[1710115649,[1,4,4,5,6,6,6,7,13,13]],[1710115650,[1,2,4,5,5,5,6,6,7,9]],[1710115651,[1,4,4,6,6,6,7,8,14,19]],[1710115652,[1,2,5,6,6,7,7,8,10,14]],[1710115653,[1,4,4,6,6,7,8,12,56,68]],[1710115654,[1,3,5,6,6,7,7,12,30,51]],[1710115655,[1,3,4,6,6,7,12,37,84,101]],[1710115656,[1,1,4,4,5,5,5,6,9,15]],[1710115657,[1,4,4,5,5,5,6,6,8,9]],[1710115658,[1,3,4,5,6,6,7,9,18,22]],[1710115659,[1,3,4,5,5,6,6,7,9,12]],[1710115660,[1,3,4,5,5,6,6,6,9,20]],[1710115661,[1,3,4,6,6,6,7,8,11,13]],[1710115662,[1,2,5,6,6,6,7,7,13,20]],[1710115663,[1,4,5,6,6,6,7,7,13,15]],[1710115664,[1,4,5,7,7,8,9,15,27,35]],[1710115665,[1,4,5,6,6,7,7,8,10,14]],[1710115666,[1,3,5,6,6,6,7,8,10,20]],[1710115667,[1,3,4,5,6,6,7,9,20,23]],[1710115668,[1,3,4,5,5,6,6,7,11,14]],[1710115669,[1,3,4,5,6,6,6,7,10,13]],[1710115670,[1,4,5,6,6,6,7,8,11,13]],[1710115671,[1,3,5,5,6,6,7,11,19,24]],[1710115672,[1,3,4,5,6,6,7,7,9,10]],[1710115673,[1,3,4,6,6,7,7,9,15,19]],[1710115674,[1,4,5,6,6,7,8,15,33,37]],[1710115675,[1,4,4,5,6,6,7,8,17,27]],[1710115676,[1,4,4,6,6,7,8,10,17,19]],[1710115677,[1,2,4,5,6,6,7,8,14,15]],[1710115678,[1,2,4,6,6,7,10,13,16,19]],[1710115679,[1,3,4,5,5,6,7,10,14,17]],[1710115680,[1,3,4,5,6,6,8,10,16,19]],[1710115681,[1,2,4,5,5,5,6,7,42,61]],[1710115682,[1,3,5,5,6,6,7,8,12,15]],[1710115683,[1,4,5,6,7,7,8,9,13,16]],[1710115684,[1,3,4,6,6,7,8,13,19,26]],[1710115685,[1,3,5,6,7,7,9,12,20,30]],[1710115686,[1,3,5,6,6,7,8,11,20,31]],[1710115687,[1,2,5,7,7,8,10,13,18,20]],[1710115688,[1,3,4,6,6,7,8,10,15,18]],[1710115689,[1,1,4,5,6,6,7,8,12,18]],[1710115690,[1,3,4,6,6,7,8,11,19,26]],[1710115691,[1,3,4,5,5,6,6,6,8,10]],[1710115692,[1,3,4,6,6,6,7,8,15,23]],[1710115693,[1,4,5,6,6,6,7,7,11,19]],[1710115694,[1,3,4,5,6,6,8,11,17,23]],[1710115695,[1,4,6,7,7,8,8,9,12,14]],[1710115696,[1,3,5,6,7,7,8,9,10,13]],[1710115697,[1,4,6,7,8,8,8,9,11,15]],[1710115698,[1,3,5,7,7,7,8,8,10,15]],[1710115699,[1,3,5,6,7,7,8,9,11,13]],[1710115700,[1,3,5,7,7,8,8,10,13,17]],[1710115701,[1,3,5,6,7,7,7,8,12,16]],[1710115702,[1,3,5,7,7,7,8,9,11,16]],[1710115703,[1,3,5,6,7,7,8,12,18,24]],[1710115704,[1,3,5,7,7,7,8,12,20,28]],[1710115705,[1,3,5,6,6,7,8,10,19,22]],[1710115706,[1,4,6,7,7,7,8,10,18,26]],[1710115707,[1,4,5,7,7,7,8,9,17,20]],[1710115708,[1,4,6,8,9,11,22,55,87,94]],[1710115709,[1,3,5,6,7,7,9,14,22,29]],[1710115710,[1,5,6,8,8,9,11,20,68,82]],[1710115711,[1,3,5,6,6,7,8,10,19,30]],[1710115712,[1,4,6,7,8,8,9,11,40,55]],[1710115713,[1,3,5,6,6,7,7,8,11,15]],[1710115714,[1,5,6,8,8,8,9,11,13,16]],[1710115715,[1,4,5,6,7,8,10,13,20,26]],[1710115716,[1,4,6,7,7,8,9,10,16,24]],[1710115717,[1,4,5,6,6,8,9,15,46,65]],[1710115718,[1,4,6,7,7,7,8,10,15,23]],[1710115719,[1,3,5,6,6,7,8,11,17,24]],[1710115720,[1,4,5,7,7,8,9,11,17,20]],[1710115721,[1,3,4,6,6,7,8,11,15,16]],[1710115722,[1,4,6,8,8,9,9,11,15,22]],[1710115723,[1,4,5,7,8,10,11,16,22,29]],[1710115724,[2,4,6,8,8,10,11,14,18,20]],[1710115725,[1,3,4,6,6,7,8,10,16,20]],[1710115726,[1,4,5,8,8,9,9,12,17,20]],[1710115727,[1,4,5,6,6,7,8,9,15,17]],[1710115728,[1,4,6,8,9,10,13,19,24,38]],[1710115729,[1,4,5,7,7,8,9,13,18,20]],[1710115730,[1,4,5,7,7,8,9,10,13,14]],[1710115731,[1,4,5,7,7,8,9,11,17,23]],[1710115732,[1,4,6,7,7,7,8,10,15,18]],[1710115733,[1,3,5,7,7,8,13,18,28,41]],[1710115734,[1,3,5,6,6,7,7,8,17,20]],[1710115735,[1,3,5,6,7,7,7,8,10,13]],[1710115736,[1,4,5,6,6,7,8,9,11,13]],[1710115737,[1,3,5,6,6,7,7,10,14,19]],[1710115738,[1,4,5,6,6,7,8,10,15,22]],[1710115739,[1,4,6,7,7,7,8,9,9,12]],[1710115740,[1,3,5,6,6,7,8,11,15,19]],[1710115741,[1,3,5,7,7,8,9,10,15,21]],[1710115742,[1,2,4,5,6,6,7,8,11,15]],[1710115743,[1,3,5,6,7,7,9,12,21,26]],[1710115744,[1,2,5,6,6,7,7,9,15,21]],[1710115745,[1,4,5,7,7,7,9,11,16,20]],[1710115746,[1,2,5,6,6,7,7,8,11,22]],[1710115747,[1,3,5,7,7,7,8,9,12,18]],[1710115748,[1,2,4,6,6,7,7,10,19,24]],[1710115749,[1,3,5,7,7,8,10,15,20,24]],[1710115750,[1,2,5,6,6,7,7,9,10,16]],[1710115751,[1,3,5,6,7,7,8,9,11,15]],[1710115752,[1,2,5,6,7,7,8,9,12,16]],[1710115753,[1,4,6,7,7,8,9,11,27,34]],[1710115754,[1,2,5,6,6,6,7,8,9,11]],[1710115755,[1,3,5,6,6,7,7,9,14,21]],[1710115756,[1,2,4,6,6,7,7,8,11,15]],[1710115757,[1,3,6,7,7,8,8,9,10,12]],[1710115758,[1,4,6,7,8,9,9,12,30,38]],[1710115759,[1,3,6,7,7,8,8,9,16,21]],[1710115760,[1,2,5,6,6,7,8,11,16,22]],[1710115761,[1,4,6,7,7,8,8,9,11,15]],[1710115762,[1,3,5,6,7,8,9,12,39,57]],[1710115763,[2,4,6,7,8,8,9,11,16,20]],[1710115764,[1,2,5,6,6,7,7,8,11,15]],[1710115765,[2,3,6,7,7,8,9,11,15,25]],[1710115766,[1,3,5,6,6,7,7,9,24,41]],[1710115767,[1,4,6,8,8,8,9,11,44,66]],[1710115768,[1,2,5,6,7,7,8,9,14,22]],[1710115769,[1,4,6,7,7,8,9,10,15,20]],[1710115770,[1,4,5,6,6,7,8,9,10,12]],[1710115771,[1,3,5,7,7,7,8,10,12,13]],[1710115772,[1,2,5,6,6,7,7,9,11,16]],[1710115773,[1,4,5,7,7,8,8,9,10,15]],[1710115774,[1,3,5,7,7,8,9,15,20,26]],[1710115775,[1,3,5,7,7,8,9,10,23,30]],[1710115776,[1,3,5,6,7,7,8,9,11,21]],[1710115777,[1,3,5,7,7,7,8,9,14,15]],[1710115778,[1,4,5,7,7,8,9,10,18,20]],[1710115779,[1,3,5,6,7,7,7,8,10,11]],[1710115780,[1,3,5,6,7,7,7,9,27,39]],[1710115781,[1,3,5,7,7,8,8,9,12,15]],[1710115782,[1,4,6,7,8,8,9,14,27,30]],[1710115783,[1,2,5,5,6,7,7,9,14,15]],[1710115784,[1,2,5,7,7,7,8,12,17,21]],[1710115785,[1,2,5,7,7,8,9,12,15,16]],[1710115786,[1,3,5,6,7,7,8,9,11,12]],[1710115787,[1,4,5,6,7,7,7,8,10,14]],[1710115788,[1,3,5,7,7,8,10,16,23,25]],[1710115789,[1,2,5,6,6,7,8,10,13,17]],[1710115790,[1,4,6,7,8,8,9,10,19,21]],[1710115791,[1,2,5,6,6,6,7,7,10,10]],[1710115792,[1,3,5,7,7,8,8,9,25,35]],[1710115793,[1,1,4,5,6,6,7,8,9,11]],[1710115794,[1,3,5,7,7,8,8,15,24,27]],[1710115795,[1,1,4,5,6,6,6,7,11,15]],[1710115796,[1,3,5,7,8,8,9,12,21,23]],[1710115797,[1,2,4,6,6,6,7,7,11,20]],[1710115798,[1,4,6,7,8,8,9,13,20,24]],[1710115799,[1,2,5,6,7,7,7,9,11,15]],[1710115800,[1,4,5,7,7,7,8,9,13,18]],[1710115801,[1,2,5,6,6,7,7,8,13,18]],[1710115802,[1,3,5,7,8,8,9,10,15,20]],[1710115803,[1,2,4,6,6,7,11,17,27,31]],[1710115804,[1,3,4,6,6,7,8,9,12,18]],[1710115805,[1,2,4,6,6,7,8,15,29,39]],[1710115806,[1,3,5,6,7,7,8,9,12,14]],[1710115807,[1,2,5,6,6,7,7,8,10,13]],[1710115808,[1,3,5,7,7,8,8,12,21,25]],[1710115809,[1,3,4,6,6,6,7,9,13,22]],[1710115810,[1,3,4,6,6,7,6,8,13,17]],[1710115811,[1,2,5,6,6,7,7,8,12,27]],[1710115812,[1,3,5,6,6,7,8,9,10,14]],[1710115813,[1,3,4,6,7,9,14,18,25,31]],[1710115814,[1,3,5,6,6,7,7,9,11,15]],[1710115815,[1,3,4,6,6,6,7,7,9,9]],[1710115816,[1,1,4,5,6,6,6,7,8,9]],[1710115817,[1,3,5,5,7,7,8,9,10,13]],[1710115818,[1,2,5,7,7,8,9,15,32,39]],[1710115819,[1,3,5,6,7,7,8,9,15,21]],[1710115820,[1,4,6,7,8,8,9,11,15,20]],[1710115821,[1,3,5,7,8,9,10,17,24,30]],[1710115822,[1,4,6,7,7,8,8,11,40,44]]]);
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([[1710115578,[25,25,0]],[1710115579,[1,1,0]],[1710115580,[25,25,0]],[1710115581,[1,1,0]],[1710115582,[71,51,20]],[1710115583,[3,3,0]],[1710115584,[6,6,0]],[1710115585,[9,9,0]],[1710115586,[11,11,0]],[1710115587,[13,13,0]],[1710115588,[18,18,0]],[1710115589,[19,19,0]],[1710115590,[24,24,0]],[1710115591,[26,26,0]],[1710115592,[27,27,0]],[1710115593,[32,32,0]],[1710115594,[34,34,0]],[1710115595,[37,37,0]],[1710115596,[39,39,0]],[1710115597,[43,43,0]],[1710115598,[45,45,0]],[1710115599,[48,48,0]],[1710115600,[50,50,0]],[1710115601,[54,54,0]],[1710115602,[56,56,0]],[1710115603,[60,60,0]],[1710115604,[61,61,0]],[1710115605,[65,65,0]],[1710115606,[67,67,0]],[1710115607,[70,70,0]],[1710115608,[74,74,0]],[1710115609,[76,76,0]],[1710115610,[80,80,0]],[1710115611,[81,81,0]],[1710115612,[84,84,0]],[1710115613,[89,89,0]],[1710115614,[89,89,0]],[1710115615,[93,93,0]],[1710115616,[96,96,0]],[1710115617,[98,98,0]],[1710115618,[102,102,0]],[1710115619,[104,104,0]],[1710115620,[107,107,0]],[1710115621,[109,109,0]],[1710115622,[114,114,0]],[1710115623,[115,115,0]],[1710115624,[118,118,0]],[1710115625,[122,122,0]],[1710115626,[123,123,0]],[1710115627,[126,126,0]],[1710115628,[129,129,0]],[1710115629,[133,133,0]],[1710115630,[134,134,0]],[1710115631,[139,139,0]],[1710115632,[140,140,0]],[1710115633,[144,144,0]],[1710115634,[146,146,0]],[1710115635,[149,149,0]],[1710115636,[151,151,0]],[1710115637,[155,155,0]],[1710115638,[158,158,0]],[1710115639,[161,161,0]],[1710115640,[163,163,0]],[1710115641,[166,166,0]],[1710115642,[170,170,0]],[1710115643,[170,170,0]],[1710115644,[174,174,0]],[1710115645,[177,177,0]],[1710115646,[180,180,0]],[1710115647,[183,183,0]],[1710115648,[186,186,0]],[1710115649,[188,188,0]],[1710115650,[192,192,0]],[1710115651,[194,194,0]],[1710115652,[197,197,0]],[1710115653,[199,199,0]],[1710115654,[203,203,0]],[1710115655,[205,205,0]],[1710115656,[208,208,0]],[1710115657,[211,211,0]],[1710115658,[213,213,0]],[1710115659,[217,217,0]],[1710115660,[219,219,0]],[1710115661,[222,222,0]],[1710115662,[225,225,0]],[1710115663,[228,228,0]],[1710115664,[229,229,0]],[1710115665,[235,235,0]],[1710115666,[235,235,0]],[1710115667,[239,239,0]],[1710115668,[243,243,0]],[1710115669,[244,244,0]],[1710115670,[248,248,0]],[1710115671,[251,251,0]],[1710115672,[251,251,0]],[1710115673,[257,257,0]],[1710115674,[259,259,0]],[1710115675,[262,262,0]],[1710115676,[263,263,0]],[1710115677,[267,267,0]],[1710115678,[269,269,0]],[1710115679,[274,274,0]],[1710115680,[275,275,0]],[1710115681,[279,279,0]],[1710115682,[281,281,0]],[1710115683,[283,283,0]],[1710115684,[286,286,0]],[1710115685,[290,290,0]],[1710115686,[292,292,0]],[1710115687,[295,295,0]],[1710115688,[299,299,0]],[1710115689,[300,300,0]],[1710115690,[304,304,0]],[1710115691,[306,306,0]],[1710115692,[309,309,0]],[1710115693,[312,312,0]],[1710115694,[315,315,0]],[1710115695,[318,318,0]],[1710115696,[320,320,0]],[1710115697,[323,323,0]],[1710115698,[327,327,0]],[1710115699,[329,329,0]],[1710115700,[331,331,0]],[1710115701,[334,334,0]],[1710115702,[339,339,0]],[1710115703,[340,340,0]],[1710115704,[340,340,0]],[1710115705,[340,340,0]],[1710115706,[340,340,0]],[1710115707,[340,340,0]],[1710115708,[340,340,0]],[1710115709,[340,340,0]],[1710115710,[340,340,0]],[1710115711,[340,340,0]],[1710115712,[340,340,0]],[1710115713,[340,340,0]],[1710115714,[340,340,0]],[1710115715,[340,340,0]],[1710115716,[340,340,0]],[1710115717,[340,340,0]],[1710115718,[340,340,0]],[1710115719,[340,340,0]],[1710115720,[340,340,0]],[1710115721,[340,340,0]],[1710115722,[340,340,0]],[1710115723,[340,340,0]],[1710115724,[340,340,0]],[1710115725,[340,340,0]],[1710115726,[340,340,0]],[1710115727,[340,340,0]],[1710115728,[340,340,0]],[1710115729,[340,340,0]],[1710115730,[340,340,0]],[1710115731,[340,340,0]],[1710115732,[340,340,0]],[1710115733,[340,340,0]],[1710115734,[340,340,0]],[1710115735,[340,340,0]],[1710115736,[340,340,0]],[1710115737,[340,340,0]],[1710115738,[340,340,0]],[1710115739,[340,340,0]],[1710115740,[340,340,0]],[1710115741,[340,340,0]],[1710115742,[340,340,0]],[1710115743,[340,340,0]],[1710115744,[340,340,0]],[1710115745,[340,340,0]],[1710115746,[340,340,0]],[1710115747,[340,340,0]],[1710115748,[340,340,0]],[1710115749,[340,340,0]],[1710115750,[340,340,0]],[1710115751,[340,340,0]],[1710115752,[340,340,0]],[1710115753,[340,340,0]],[1710115754,[340,340,0]],[1710115755,[340,340,0]],[1710115756,[340,340,0]],[1710115757,[340,340,0]],[1710115758,[340,340,0]],[1710115759,[340,340,0]],[1710115760,[340,340,0]],[1710115761,[340,340,0]],[1710115762,[340,340,0]],[1710115763,[340,340,0]],[1710115764,[340,340,0]],[1710115765,[340,340,0]],[1710115766,[340,340,0]],[1710115767,[340,340,0]],[1710115768,[340,340,0]],[1710115769,[340,340,0]],[1710115770,[340,340,0]],[1710115771,[340,340,0]],[1710115772,[340,340,0]],[1710115773,[340,340,0]],[1710115774,[340,340,0]],[1710115775,[340,340,0]],[1710115776,[340,340,0]],[1710115777,[340,340,0]],[1710115778,[340,340,0]],[1710115779,[340,340,0]],[1710115780,[340,340,0]],[1710115781,[340,340,0]],[1710115782,[340,340,0]],[1710115783,[340,340,0]],[1710115784,[340,340,0]],[1710115785,[340,340,0]],[1710115786,[340,340,0]],[1710115787,[340,340,0]],[1710115788,[340,340,0]],[1710115789,[340,340,0]],[1710115790,[340,340,0]],[1710115791,[340,340,0]],[1710115792,[340,340,0]],[1710115793,[340,340,0]],[1710115794,[340,340,0]],[1710115795,[340,340,0]],[1710115796,[340,340,0]],[1710115797,[340,340,0]],[1710115798,[340,340,0]],[1710115799,[340,340,0]],[1710115800,[340,340,0]],[1710115801,[340,340,0]],[1710115802,[340,340,0]],[1710115803,[340,340,0]],[1710115804,[340,340,0]],[1710115805,[340,340,0]],[1710115806,[340,340,0]],[1710115807,[340,340,0]],[1710115808,[340,340,0]],[1710115809,[340,340,0]],[1710115810,[340,340,0]],[1710115811,[340,340,0]],[1710115812,[340,340,0]],[1710115813,[340,340,0]],[1710115814,[340,340,0]],[1710115815,[340,340,0]],[1710115816,[340,340,0]],[1710115817,[340,340,0]],[1710115818,[340,340,0]],[1710115819,[340,340,0]],[1710115820,[340,340,0]],[1710115821,[340,340,0]],[1710115822,[501,501,0]]]);
var requestsChart = new Highcharts.StockChart({
chart: {
renderTo: 'requests',
zoomType: 'x',
marginBottom: 60
},
credits: { enabled: false },
legend: {
enabled: true,
floating: true,
y: -65,
borderWidth: 0,
itemStyle: { fontWeight: "normal" },
symbolRadius: 0
},
title: { text: 'A title to let highcharts reserve the place for the title set later' },
navigator: {
maskInside: false
},
rangeSelector: {
buttonSpacing: 0,
buttonTheme: {
fill: '#CFC9C6',
padding: 1,
stroke: '#000000',
'stroke-width': 0.25,
style: {
color: '#000000',
fontWeight: 'bold',
},
states: {
stroke: '#000000',
'stroke-width': 0.25,
hover: {
fill: '#92918C',
style: { color: 'black' }
},
select: {
fill: '#FFA900',
style: { color: 'white' }
}
}
},
buttons : [
{
type : 'minute',
count : 1,
text : '1m'
}, {
type : 'minute',
count : 10,
text : '10m'
}, {
type : 'hour',
count : 1,
text : '1h'
}, {