forked from zanfranceschi/rinha-de-backend-2024-q1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1200 lines (1130 loc) · 94.3 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="shortcut icon" type="image/x-icon" href="style/favicon.ico"/>
<link href="style/style.css" rel="stylesheet" type="text/css" />
<link href="style/bootstrap.min.css" rel="stylesheet" type="text/css" />
<script src="js/jquery-3.5.1.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/gatling.js"></script>
<script src="js/menu.js"></script>
<script src="js/ellipsis.js"></script>
<script src="js/all_sessions.js"></script>
<script src="js/stats.js"></script>
<script src="js/highstock.js"></script>
<script src="js/highcharts-more.js"></script>
<script src="js/theme.js"></script>
<script src="js/unpack.js"></script>
<title>Gatling Stats - Global Information</title>
</head>
<body>
<script>
const storedTheme = localStorage.getItem('theme') || (window.matchMedia("(prefers-color-scheme: dark)").matches ? "dark" : "light");
if (storedTheme) document.documentElement.setAttribute('data-theme', storedTheme)
function toggleTheme() {
const currentTheme = document.documentElement.getAttribute("data-theme");
const targetTheme = currentTheme === "light" ? "dark" : "light";
document.documentElement.setAttribute('data-theme', targetTheme)
localStorage.setItem('theme', targetTheme);
};
</script>
<div class="app-container">
<div class="frise"></div>
<div class="head">
<div class="gatling-open-source">
<a class="gatling-logo gatling-logo-light" href="https://gatling.io" target="blank_" title="Gatling Home Page"><img alt="Gatling" src="style/logo-light.svg"/></a>
<a class="gatling-logo gatling-logo-dark" href="https://gatling.io" target="blank_" title="Gatling Home Page"><img alt="Gatling" src="style/logo-dark.svg"/></a>
<a class="gatling-documentation" href="https://gatling.io/docs/" target="_blank">Documentation</a>
</div>
<div class="nav spacer"></div>
<a class="enterprise" href="https://gatling.io/enterprise/next-step/" target="_blank"><strong>Try</strong>
<img class="logo-enterprise-light" alt="Gatling Enterprise" src="style/logo-enterprise-light.svg"/>
<img class="logo-enterprise-dark" alt="Gatling Enterprise" src="style/logo-enterprise-dark.svg"/>
</a>
<button id="theme-toggle" class="theme-toggle" type="button" onclick="toggleTheme()" aria-label="Toggle user interface mode">
<span class="toggle-dark"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-moon"><path d="M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z"></path></svg></span>
<span class="toggle-light"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-sun"><circle cx="12" cy="12" r="5"></circle><line x1="12" y1="1" x2="12" y2="3"></line><line x1="12" y1="21" x2="12" y2="23"></line><line x1="4.22" y1="4.22" x2="5.64" y2="5.64"></line><line x1="18.36" y1="18.36" x2="19.78" y2="19.78"></line><line x1="1" y1="12" x2="3" y2="12"></line><line x1="21" y1="12" x2="23" y2="12"></line><line x1="4.22" y1="19.78" x2="5.64" y2="18.36"></line><line x1="18.36" y1="5.64" x2="19.78" y2="4.22"></line></svg></span>
</button>
</div>
<div class="container details">
<div class="nav">
<ul></ul>
</div>
<div class="cadre">
<div class="content">
<div class="content-header">
<div class="onglet">
RinhaBackendCrebitosSimulation
</div>
<div class="sous-menu" id="sousMenu">
<div class="sous-menu-spacer">
<div class="item ouvert"><a href="index.html">Global</a></div>
<div class="item "><a id="details_link" href="#">Details</a></div>
</div>
</div>
</div>
<div class="content-in">
<div class="container-article">
<div class="article">
<div class="schema-container">
<div id="ranges" class="schema ranges">
</div>
<div class="schema polar">
<div id="container_number_of_requests"></div>
</div>
<div class="simulation-card">
<div class="simulation-version-information">
<span class="simulation-information-title">Gatling Version</span>
<span class="simulation-information-item">
<span class="simulation-information-label">Version: </span>
<span>3.10.3</span>
</span>
<span class="simulation-information-item">
<span class="simulation-information-label">Released: </span>
<span>2023-12-20</span>
</span>
</div>
<div id="simulation-information" class="simulation-version-information">
<span class="simulation-information-title">Run Information</span>
<div class="simulation-information-container">
<span class="simulation-information-item">
<span class="simulation-information-label">Date: </span>
<span>2024-03-06 23:12:19 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 - rogerbu-java">
<span class="simulation-information-label">Description: </span>
<span>Rinha de Backend - 2024/Q1: Crébito - rogerbu-java</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(saldo.total).find.is(0), but actually found 1<span class="value" style="display:none">0</span></td>
<td class="value error-col-2 total ko">2</td>
<td class="value error-col-3 total ko">66.667 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">jmesPath(saldo.total).find.is(-25), but actually found -6<span class="value" style="display:none">1</span></td>
<td class="value error-col-2 total ko">1</td>
<td class="value error-col-3 total ko">33.333 %</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: [
[1709766740000,0],[1709766741000,0],[1709766742000,0],[1709766743000,0],[1709766744000,1],[1709766745000,2],[1709766746000,2],[1709766747000,4],[1709766748000,4],[1709766749000,5],[1709766750000,6],[1709766751000,7],[1709766752000,8],[1709766753000,8],[1709766754000,10],[1709766755000,10],[1709766756000,12],[1709766757000,12],[1709766758000,14],[1709766759000,14],[1709766760000,15],[1709766761000,16],[1709766762000,18],[1709766763000,17],[1709766764000,20],[1709766765000,20],[1709766766000,20],[1709766767000,22],[1709766768000,22],[1709766769000,23],[1709766770000,25],[1709766771000,25],[1709766772000,26],[1709766773000,26],[1709766774000,28],[1709766775000,29],[1709766776000,30],[1709766777000,30],[1709766778000,32],[1709766779000,32],[1709766780000,33],[1709766781000,34],[1709766782000,35],[1709766783000,36],[1709766784000,37],[1709766785000,38],[1709766786000,39],[1709766787000,39],[1709766788000,41],[1709766789000,41],[1709766790000,43],[1709766791000,43],[1709766792000,44],[1709766793000,45],[1709766794000,46],[1709766795000,47],[1709766796000,48],[1709766797000,48],[1709766798000,50],[1709766799000,50],[1709766800000,52],[1709766801000,52],[1709766802000,53],[1709766803000,54],[1709766804000,56],[1709766805000,55],[1709766806000,57],[1709766807000,58],[1709766808000,59],[1709766809000,59],[1709766810000,61],[1709766811000,62],[1709766812000,64],[1709766813000,64],[1709766814000,65],[1709766815000,66],[1709766816000,67],[1709766817000,68],[1709766818000,69],[1709766819000,69],[1709766820000,71],[1709766821000,71],[1709766822000,72],[1709766823000,72],[1709766824000,74],[1709766825000,74],[1709766826000,75],[1709766827000,76],[1709766828000,77],[1709766829000,78],[1709766830000,79],[1709766831000,79],[1709766832000,81],[1709766833000,81],[1709766834000,82],[1709766835000,83],[1709766836000,85],[1709766837000,85],[1709766838000,86],[1709766839000,86],[1709766840000,88],[1709766841000,89],[1709766842000,89],[1709766843000,91],[1709766844000,91],[1709766845000,92],[1709766846000,94],[1709766847000,94],[1709766848000,95],[1709766849000,96],[1709766850000,97],[1709766851000,97],[1709766852000,99],[1709766853000,99],[1709766854000,101],[1709766855000,101],[1709766856000,103],[1709766857000,103],[1709766858000,104],[1709766859000,105],[1709766860000,106],[1709766861000,107],[1709766862000,107],[1709766863000,110],[1709766864000,110],[1709766865000,110],[1709766866000,112],[1709766867000,110],[1709766868000,111],[1709766869000,110],[1709766870000,110],[1709766871000,110],[1709766872000,111],[1709766873000,110],[1709766874000,110],[1709766875000,110],[1709766876000,110],[1709766877000,110],[1709766878000,112],[1709766879000,111],[1709766880000,110],[1709766881000,110],[1709766882000,110],[1709766883000,110],[1709766884000,110],[1709766885000,110],[1709766886000,110],[1709766887000,110],[1709766888000,110],[1709766889000,110],[1709766890000,110],[1709766891000,110],[1709766892000,110],[1709766893000,110],[1709766894000,110],[1709766895000,110],[1709766896000,110],[1709766897000,110],[1709766898000,110],[1709766899000,110],[1709766900000,110],[1709766901000,110],[1709766902000,110],[1709766903000,110],[1709766904000,110],[1709766905000,110],[1709766906000,110],[1709766907000,110],[1709766908000,110],[1709766909000,110],[1709766910000,110],[1709766911000,110],[1709766912000,110],[1709766913000,110],[1709766914000,110],[1709766915000,110],[1709766916000,110],[1709766917000,112],[1709766918000,110],[1709766919000,110],[1709766920000,110],[1709766921000,110],[1709766922000,110],[1709766923000,110],[1709766924000,110],[1709766925000,110],[1709766926000,110],[1709766927000,110],[1709766928000,110],[1709766929000,110],[1709766930000,110],[1709766931000,110],[1709766932000,110],[1709766933000,110],[1709766934000,110],[1709766935000,110],[1709766936000,110],[1709766937000,110],[1709766938000,110],[1709766939000,110],[1709766940000,110],[1709766941000,110],[1709766942000,110],[1709766943000,110],[1709766944000,110],[1709766945000,110],[1709766946000,110],[1709766947000,110],[1709766948000,110],[1709766949000,110],[1709766950000,111],[1709766951000,110],[1709766952000,110],[1709766953000,110],[1709766954000,110],[1709766955000,110],[1709766956000,110],[1709766957000,110],[1709766958000,110],[1709766959000,110],[1709766960000,110],[1709766961000,110],[1709766962000,110],[1709766963000,112],[1709766964000,110],[1709766965000,110],[1709766966000,110],[1709766967000,110],[1709766968000,112],[1709766969000,110],[1709766970000,110],[1709766971000,110],[1709766972000,110],[1709766973000,110],[1709766974000,110],[1709766975000,110],[1709766976000,110],[1709766977000,110],[1709766978000,110],[1709766979000,110],[1709766980000,110],[1709766981000,110],[1709766982000,110],[1709766983000,110],[1709766984000,108]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#68b65c',
name: 'débitos',
data: [
[1709766740000,0],[1709766741000,0],[1709766742000,0],[1709766743000,0],[1709766744000,1],[1709766745000,2],[1709766746000,4],[1709766747000,6],[1709766748000,7],[1709766749000,9],[1709766750000,11],[1709766751000,13],[1709766752000,15],[1709766753000,16],[1709766754000,19],[1709766755000,20],[1709766756000,22],[1709766757000,24],[1709766758000,25],[1709766759000,28],[1709766760000,29],[1709766761000,31],[1709766762000,33],[1709766763000,35],[1709766764000,38],[1709766765000,38],[1709766766000,40],[1709766767000,42],[1709766768000,44],[1709766769000,46],[1709766770000,47],[1709766771000,50],[1709766772000,51],[1709766773000,53],[1709766774000,55],[1709766775000,56],[1709766776000,59],[1709766777000,60],[1709766778000,62],[1709766779000,65],[1709766780000,67],[1709766781000,69],[1709766782000,70],[1709766783000,72],[1709766784000,74],[1709766785000,74],[1709766786000,77],[1709766787000,79],[1709766788000,80],[1709766789000,82],[1709766790000,84],[1709766791000,86],[1709766792000,88],[1709766793000,89],[1709766794000,92],[1709766795000,93],[1709766796000,95],[1709766797000,97],[1709766798000,98],[1709766799000,101],[1709766800000,102],[1709766801000,104],[1709766802000,106],[1709766803000,108],[1709766804000,110],[1709766805000,111],[1709766806000,113],[1709766807000,115],[1709766808000,117],[1709766809000,119],[1709766810000,120],[1709766811000,123],[1709766812000,125],[1709766813000,126],[1709766814000,128],[1709766815000,132],[1709766816000,133],[1709766817000,134],[1709766818000,135],[1709766819000,138],[1709766820000,139],[1709766821000,142],[1709766822000,145],[1709766823000,144],[1709766824000,148],[1709766825000,147],[1709766826000,150],[1709766827000,152],[1709766828000,153],[1709766829000,155],[1709766830000,157],[1709766831000,159],[1709766832000,161],[1709766833000,162],[1709766834000,166],[1709766835000,166],[1709766836000,168],[1709766837000,170],[1709766838000,171],[1709766839000,174],[1709766840000,175],[1709766841000,177],[1709766842000,179],[1709766843000,181],[1709766844000,183],[1709766845000,184],[1709766846000,187],[1709766847000,189],[1709766848000,190],[1709766849000,193],[1709766850000,194],[1709766851000,197],[1709766852000,198],[1709766853000,200],[1709766854000,201],[1709766855000,203],[1709766856000,206],[1709766857000,207],[1709766858000,209],[1709766859000,211],[1709766860000,213],[1709766861000,215],[1709766862000,215],[1709766863000,219],[1709766864000,220],[1709766865000,221],[1709766866000,223],[1709766867000,220],[1709766868000,222],[1709766869000,220],[1709766870000,221],[1709766871000,220],[1709766872000,222],[1709766873000,220],[1709766874000,221],[1709766875000,220],[1709766876000,221],[1709766877000,220],[1709766878000,223],[1709766879000,221],[1709766880000,221],[1709766881000,220],[1709766882000,221],[1709766883000,220],[1709766884000,221],[1709766885000,220],[1709766886000,220],[1709766887000,220],[1709766888000,221],[1709766889000,220],[1709766890000,220],[1709766891000,220],[1709766892000,220],[1709766893000,220],[1709766894000,220],[1709766895000,220],[1709766896000,220],[1709766897000,220],[1709766898000,221],[1709766899000,220],[1709766900000,221],[1709766901000,220],[1709766902000,220],[1709766903000,220],[1709766904000,220],[1709766905000,220],[1709766906000,220],[1709766907000,220],[1709766908000,220],[1709766909000,220],[1709766910000,220],[1709766911000,221],[1709766912000,220],[1709766913000,221],[1709766914000,220],[1709766915000,221],[1709766916000,220],[1709766917000,223],[1709766918000,220],[1709766919000,221],[1709766920000,220],[1709766921000,220],[1709766922000,220],[1709766923000,221],[1709766924000,221],[1709766925000,221],[1709766926000,220],[1709766927000,221],[1709766928000,220],[1709766929000,221],[1709766930000,220],[1709766931000,221],[1709766932000,220],[1709766933000,221],[1709766934000,220],[1709766935000,221],[1709766936000,220],[1709766937000,220],[1709766938000,220],[1709766939000,221],[1709766940000,220],[1709766941000,221],[1709766942000,220],[1709766943000,220],[1709766944000,220],[1709766945000,220],[1709766946000,220],[1709766947000,220],[1709766948000,220],[1709766949000,220],[1709766950000,222],[1709766951000,220],[1709766952000,221],[1709766953000,220],[1709766954000,221],[1709766955000,220],[1709766956000,221],[1709766957000,220],[1709766958000,220],[1709766959000,220],[1709766960000,221],[1709766961000,220],[1709766962000,221],[1709766963000,221],[1709766964000,221],[1709766965000,220],[1709766966000,221],[1709766967000,220],[1709766968000,221],[1709766969000,220],[1709766970000,221],[1709766971000,220],[1709766972000,220],[1709766973000,220],[1709766974000,220],[1709766975000,220],[1709766976000,220],[1709766977000,220],[1709766978000,221],[1709766979000,220],[1709766980000,220],[1709766981000,220],[1709766982000,221],[1709766983000,220],[1709766984000,217]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#f15b4f',
name: 'extratos',
data: [
[1709766740000,0],[1709766741000,0],[1709766742000,0],[1709766743000,0],[1709766744000,1],[1709766745000,2],[1709766746000,1],[1709766747000,1],[1709766748000,1],[1709766749000,1],[1709766750000,2],[1709766751000,1],[1709766752000,2],[1709766753000,2],[1709766754000,1],[1709766755000,2],[1709766756000,2],[1709766757000,2],[1709766758000,2],[1709766759000,2],[1709766760000,2],[1709766761000,2],[1709766762000,4],[1709766763000,2],[1709766764000,4],[1709766765000,2],[1709766766000,3],[1709766767000,2],[1709766768000,3],[1709766769000,3],[1709766770000,3],[1709766771000,3],[1709766772000,3],[1709766773000,3],[1709766774000,3],[1709766775000,4],[1709766776000,3],[1709766777000,3],[1709766778000,4],[1709766779000,3],[1709766780000,4],[1709766781000,4],[1709766782000,4],[1709766783000,4],[1709766784000,4],[1709766785000,4],[1709766786000,4],[1709766787000,4],[1709766788000,4],[1709766789000,4],[1709766790000,5],[1709766791000,4],[1709766792000,5],[1709766793000,5],[1709766794000,4],[1709766795000,5],[1709766796000,5],[1709766797000,5],[1709766798000,5],[1709766799000,5],[1709766800000,5],[1709766801000,5],[1709766802000,6],[1709766803000,5],[1709766804000,6],[1709766805000,5],[1709766806000,6],[1709766807000,5],[1709766808000,6],[1709766809000,6],[1709766810000,6],[1709766811000,6],[1709766812000,6],[1709766813000,6],[1709766814000,6],[1709766815000,7],[1709766816000,6],[1709766817000,6],[1709766818000,7],[1709766819000,6],[1709766820000,7],[1709766821000,7],[1709766822000,7],[1709766823000,7],[1709766824000,7],[1709766825000,7],[1709766826000,7],[1709766827000,7],[1709766828000,7],[1709766829000,7],[1709766830000,8],[1709766831000,7],[1709766832000,8],[1709766833000,8],[1709766834000,7],[1709766835000,8],[1709766836000,8],[1709766837000,8],[1709766838000,8],[1709766839000,8],[1709766840000,8],[1709766841000,8],[1709766842000,9],[1709766843000,8],[1709766844000,9],[1709766845000,8],[1709766846000,9],[1709766847000,8],[1709766848000,9],[1709766849000,9],[1709766850000,9],[1709766851000,9],[1709766852000,9],[1709766853000,9],[1709766854000,9],[1709766855000,10],[1709766856000,9],[1709766857000,9],[1709766858000,10],[1709766859000,9],[1709766860000,10],[1709766861000,10],[1709766862000,10],[1709766863000,11],[1709766864000,10],[1709766865000,10],[1709766866000,11],[1709766867000,10],[1709766868000,10],[1709766869000,10],[1709766870000,10],[1709766871000,10],[1709766872000,11],[1709766873000,10],[1709766874000,10],[1709766875000,10],[1709766876000,10],[1709766877000,10],[1709766878000,10],[1709766879000,11],[1709766880000,10],[1709766881000,10],[1709766882000,10],[1709766883000,10],[1709766884000,10],[1709766885000,10],[1709766886000,10],[1709766887000,10],[1709766888000,10],[1709766889000,10],[1709766890000,10],[1709766891000,10],[1709766892000,10],[1709766893000,10],[1709766894000,10],[1709766895000,10],[1709766896000,10],[1709766897000,10],[1709766898000,10],[1709766899000,10],[1709766900000,10],[1709766901000,10],[1709766902000,10],[1709766903000,10],[1709766904000,10],[1709766905000,10],[1709766906000,10],[1709766907000,10],[1709766908000,10],[1709766909000,10],[1709766910000,10],[1709766911000,10],[1709766912000,10],[1709766913000,10],[1709766914000,10],[1709766915000,10],[1709766916000,10],[1709766917000,10],[1709766918000,10],[1709766919000,10],[1709766920000,10],[1709766921000,10],[1709766922000,10],[1709766923000,10],[1709766924000,10],[1709766925000,10],[1709766926000,10],[1709766927000,10],[1709766928000,10],[1709766929000,10],[1709766930000,10],[1709766931000,10],[1709766932000,10],[1709766933000,10],[1709766934000,10],[1709766935000,10],[1709766936000,10],[1709766937000,10],[1709766938000,10],[1709766939000,10],[1709766940000,10],[1709766941000,10],[1709766942000,10],[1709766943000,10],[1709766944000,10],[1709766945000,10],[1709766946000,10],[1709766947000,10],[1709766948000,10],[1709766949000,10],[1709766950000,11],[1709766951000,10],[1709766952000,10],[1709766953000,10],[1709766954000,10],[1709766955000,10],[1709766956000,10],[1709766957000,10],[1709766958000,10],[1709766959000,10],[1709766960000,10],[1709766961000,10],[1709766962000,10],[1709766963000,11],[1709766964000,10],[1709766965000,10],[1709766966000,10],[1709766967000,10],[1709766968000,11],[1709766969000,10],[1709766970000,10],[1709766971000,10],[1709766972000,10],[1709766973000,10],[1709766974000,10],[1709766975000,10],[1709766976000,10],[1709766977000,10],[1709766978000,10],[1709766979000,10],[1709766980000,10],[1709766981000,10],[1709766982000,10],[1709766983000,10],[1709766984000,9]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FFDD00',
name: 'validação HTTP 404',
data: [
[1709766740000,0],[1709766741000,0],[1709766742000,0],[1709766743000,1],[1709766744000,0],[1709766745000,0],[1709766746000,0],[1709766747000,0],[1709766748000,0],[1709766749000,0],[1709766750000,0],[1709766751000,0],[1709766752000,0],[1709766753000,0],[1709766754000,0],[1709766755000,0],[1709766756000,0],[1709766757000,0],[1709766758000,0],[1709766759000,0],[1709766760000,0],[1709766761000,0],[1709766762000,0],[1709766763000,0],[1709766764000,0],[1709766765000,0],[1709766766000,0],[1709766767000,0],[1709766768000,0],[1709766769000,0],[1709766770000,0],[1709766771000,0],[1709766772000,0],[1709766773000,0],[1709766774000,0],[1709766775000,0],[1709766776000,0],[1709766777000,0],[1709766778000,0],[1709766779000,0],[1709766780000,0],[1709766781000,0],[1709766782000,0],[1709766783000,0],[1709766784000,0],[1709766785000,0],[1709766786000,0],[1709766787000,0],[1709766788000,0],[1709766789000,0],[1709766790000,0],[1709766791000,0],[1709766792000,0],[1709766793000,0],[1709766794000,0],[1709766795000,0],[1709766796000,0],[1709766797000,0],[1709766798000,0],[1709766799000,0],[1709766800000,0],[1709766801000,0],[1709766802000,0],[1709766803000,0],[1709766804000,0],[1709766805000,0],[1709766806000,0],[1709766807000,0],[1709766808000,0],[1709766809000,0],[1709766810000,0],[1709766811000,0],[1709766812000,0],[1709766813000,0],[1709766814000,0],[1709766815000,0],[1709766816000,0],[1709766817000,0],[1709766818000,0],[1709766819000,0],[1709766820000,0],[1709766821000,0],[1709766822000,0],[1709766823000,0],[1709766824000,0],[1709766825000,0],[1709766826000,0],[1709766827000,0],[1709766828000,0],[1709766829000,0],[1709766830000,0],[1709766831000,0],[1709766832000,0],[1709766833000,0],[1709766834000,0],[1709766835000,0],[1709766836000,0],[1709766837000,0],[1709766838000,0],[1709766839000,0],[1709766840000,0],[1709766841000,0],[1709766842000,0],[1709766843000,0],[1709766844000,0],[1709766845000,0],[1709766846000,0],[1709766847000,0],[1709766848000,0],[1709766849000,0],[1709766850000,0],[1709766851000,0],[1709766852000,0],[1709766853000,0],[1709766854000,0],[1709766855000,0],[1709766856000,0],[1709766857000,0],[1709766858000,0],[1709766859000,0],[1709766860000,0],[1709766861000,0],[1709766862000,0],[1709766863000,0],[1709766864000,0],[1709766865000,0],[1709766866000,0],[1709766867000,0],[1709766868000,0],[1709766869000,0],[1709766870000,0],[1709766871000,0],[1709766872000,0],[1709766873000,0],[1709766874000,0],[1709766875000,0],[1709766876000,0],[1709766877000,0],[1709766878000,0],[1709766879000,0],[1709766880000,0],[1709766881000,0],[1709766882000,0],[1709766883000,0],[1709766884000,0],[1709766885000,0],[1709766886000,0],[1709766887000,0],[1709766888000,0],[1709766889000,0],[1709766890000,0],[1709766891000,0],[1709766892000,0],[1709766893000,0],[1709766894000,0],[1709766895000,0],[1709766896000,0],[1709766897000,0],[1709766898000,0],[1709766899000,0],[1709766900000,0],[1709766901000,0],[1709766902000,0],[1709766903000,0],[1709766904000,0],[1709766905000,0],[1709766906000,0],[1709766907000,0],[1709766908000,0],[1709766909000,0],[1709766910000,0],[1709766911000,0],[1709766912000,0],[1709766913000,0],[1709766914000,0],[1709766915000,0],[1709766916000,0],[1709766917000,0],[1709766918000,0],[1709766919000,0],[1709766920000,0],[1709766921000,0],[1709766922000,0],[1709766923000,0],[1709766924000,0],[1709766925000,0],[1709766926000,0],[1709766927000,0],[1709766928000,0],[1709766929000,0],[1709766930000,0],[1709766931000,0],[1709766932000,0],[1709766933000,0],[1709766934000,0],[1709766935000,0],[1709766936000,0],[1709766937000,0],[1709766938000,0],[1709766939000,0],[1709766940000,0],[1709766941000,0],[1709766942000,0],[1709766943000,0],[1709766944000,0],[1709766945000,0],[1709766946000,0],[1709766947000,0],[1709766948000,0],[1709766949000,0],[1709766950000,0],[1709766951000,0],[1709766952000,0],[1709766953000,0],[1709766954000,0],[1709766955000,0],[1709766956000,0],[1709766957000,0],[1709766958000,0],[1709766959000,0],[1709766960000,0],[1709766961000,0],[1709766962000,0],[1709766963000,0],[1709766964000,0],[1709766965000,0],[1709766966000,0],[1709766967000,0],[1709766968000,0],[1709766969000,0],[1709766970000,0],[1709766971000,0],[1709766972000,0],[1709766973000,0],[1709766974000,0],[1709766975000,0],[1709766976000,0],[1709766977000,0],[1709766978000,0],[1709766979000,0],[1709766980000,0],[1709766981000,0],[1709766982000,0],[1709766983000,0],[1709766984000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00D5FF',
name: 'validações',
data: [
[1709766740000,0],[1709766741000,0],[1709766742000,0],[1709766743000,5],[1709766744000,5],[1709766745000,0],[1709766746000,0],[1709766747000,0],[1709766748000,0],[1709766749000,0],[1709766750000,0],[1709766751000,0],[1709766752000,0],[1709766753000,0],[1709766754000,0],[1709766755000,0],[1709766756000,0],[1709766757000,0],[1709766758000,0],[1709766759000,0],[1709766760000,0],[1709766761000,0],[1709766762000,0],[1709766763000,0],[1709766764000,0],[1709766765000,0],[1709766766000,0],[1709766767000,0],[1709766768000,0],[1709766769000,0],[1709766770000,0],[1709766771000,0],[1709766772000,0],[1709766773000,0],[1709766774000,0],[1709766775000,0],[1709766776000,0],[1709766777000,0],[1709766778000,0],[1709766779000,0],[1709766780000,0],[1709766781000,0],[1709766782000,0],[1709766783000,0],[1709766784000,0],[1709766785000,0],[1709766786000,0],[1709766787000,0],[1709766788000,0],[1709766789000,0],[1709766790000,0],[1709766791000,0],[1709766792000,0],[1709766793000,0],[1709766794000,0],[1709766795000,0],[1709766796000,0],[1709766797000,0],[1709766798000,0],[1709766799000,0],[1709766800000,0],[1709766801000,0],[1709766802000,0],[1709766803000,0],[1709766804000,0],[1709766805000,0],[1709766806000,0],[1709766807000,0],[1709766808000,0],[1709766809000,0],[1709766810000,0],[1709766811000,0],[1709766812000,0],[1709766813000,0],[1709766814000,0],[1709766815000,0],[1709766816000,0],[1709766817000,0],[1709766818000,0],[1709766819000,0],[1709766820000,0],[1709766821000,0],[1709766822000,0],[1709766823000,0],[1709766824000,0],[1709766825000,0],[1709766826000,0],[1709766827000,0],[1709766828000,0],[1709766829000,0],[1709766830000,0],[1709766831000,0],[1709766832000,0],[1709766833000,0],[1709766834000,0],[1709766835000,0],[1709766836000,0],[1709766837000,0],[1709766838000,0],[1709766839000,0],[1709766840000,0],[1709766841000,0],[1709766842000,0],[1709766843000,0],[1709766844000,0],[1709766845000,0],[1709766846000,0],[1709766847000,0],[1709766848000,0],[1709766849000,0],[1709766850000,0],[1709766851000,0],[1709766852000,0],[1709766853000,0],[1709766854000,0],[1709766855000,0],[1709766856000,0],[1709766857000,0],[1709766858000,0],[1709766859000,0],[1709766860000,0],[1709766861000,0],[1709766862000,0],[1709766863000,0],[1709766864000,0],[1709766865000,0],[1709766866000,0],[1709766867000,0],[1709766868000,0],[1709766869000,0],[1709766870000,0],[1709766871000,0],[1709766872000,0],[1709766873000,0],[1709766874000,0],[1709766875000,0],[1709766876000,0],[1709766877000,0],[1709766878000,0],[1709766879000,0],[1709766880000,0],[1709766881000,0],[1709766882000,0],[1709766883000,0],[1709766884000,0],[1709766885000,0],[1709766886000,0],[1709766887000,0],[1709766888000,0],[1709766889000,0],[1709766890000,0],[1709766891000,0],[1709766892000,0],[1709766893000,0],[1709766894000,0],[1709766895000,0],[1709766896000,0],[1709766897000,0],[1709766898000,0],[1709766899000,0],[1709766900000,0],[1709766901000,0],[1709766902000,0],[1709766903000,0],[1709766904000,0],[1709766905000,0],[1709766906000,0],[1709766907000,0],[1709766908000,0],[1709766909000,0],[1709766910000,0],[1709766911000,0],[1709766912000,0],[1709766913000,0],[1709766914000,0],[1709766915000,0],[1709766916000,0],[1709766917000,0],[1709766918000,0],[1709766919000,0],[1709766920000,0],[1709766921000,0],[1709766922000,0],[1709766923000,0],[1709766924000,0],[1709766925000,0],[1709766926000,0],[1709766927000,0],[1709766928000,0],[1709766929000,0],[1709766930000,0],[1709766931000,0],[1709766932000,0],[1709766933000,0],[1709766934000,0],[1709766935000,0],[1709766936000,0],[1709766937000,0],[1709766938000,0],[1709766939000,0],[1709766940000,0],[1709766941000,0],[1709766942000,0],[1709766943000,0],[1709766944000,0],[1709766945000,0],[1709766946000,0],[1709766947000,0],[1709766948000,0],[1709766949000,0],[1709766950000,0],[1709766951000,0],[1709766952000,0],[1709766953000,0],[1709766954000,0],[1709766955000,0],[1709766956000,0],[1709766957000,0],[1709766958000,0],[1709766959000,0],[1709766960000,0],[1709766961000,0],[1709766962000,0],[1709766963000,0],[1709766964000,0],[1709766965000,0],[1709766966000,0],[1709766967000,0],[1709766968000,0],[1709766969000,0],[1709766970000,0],[1709766971000,0],[1709766972000,0],[1709766973000,0],[1709766974000,0],[1709766975000,0],[1709766976000,0],[1709766977000,0],[1709766978000,0],[1709766979000,0],[1709766980000,0],[1709766981000,0],[1709766982000,0],[1709766983000,0],[1709766984000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00FF00',
name: 'validação concorrência saldo - 0',
data: [
[1709766740000,0],[1709766741000,0],[1709766742000,1],[1709766743000,0],[1709766744000,0],[1709766745000,0],[1709766746000,0],[1709766747000,0],[1709766748000,0],[1709766749000,0],[1709766750000,0],[1709766751000,0],[1709766752000,0],[1709766753000,0],[1709766754000,0],[1709766755000,0],[1709766756000,0],[1709766757000,0],[1709766758000,0],[1709766759000,0],[1709766760000,0],[1709766761000,0],[1709766762000,0],[1709766763000,0],[1709766764000,0],[1709766765000,0],[1709766766000,0],[1709766767000,0],[1709766768000,0],[1709766769000,0],[1709766770000,0],[1709766771000,0],[1709766772000,0],[1709766773000,0],[1709766774000,0],[1709766775000,0],[1709766776000,0],[1709766777000,0],[1709766778000,0],[1709766779000,0],[1709766780000,0],[1709766781000,0],[1709766782000,0],[1709766783000,0],[1709766784000,0],[1709766785000,0],[1709766786000,0],[1709766787000,0],[1709766788000,0],[1709766789000,0],[1709766790000,0],[1709766791000,0],[1709766792000,0],[1709766793000,0],[1709766794000,0],[1709766795000,0],[1709766796000,0],[1709766797000,0],[1709766798000,0],[1709766799000,0],[1709766800000,0],[1709766801000,0],[1709766802000,0],[1709766803000,0],[1709766804000,0],[1709766805000,0],[1709766806000,0],[1709766807000,0],[1709766808000,0],[1709766809000,0],[1709766810000,0],[1709766811000,0],[1709766812000,0],[1709766813000,0],[1709766814000,0],[1709766815000,0],[1709766816000,0],[1709766817000,0],[1709766818000,0],[1709766819000,0],[1709766820000,0],[1709766821000,0],[1709766822000,0],[1709766823000,0],[1709766824000,0],[1709766825000,0],[1709766826000,0],[1709766827000,0],[1709766828000,0],[1709766829000,0],[1709766830000,0],[1709766831000,0],[1709766832000,0],[1709766833000,0],[1709766834000,0],[1709766835000,0],[1709766836000,0],[1709766837000,0],[1709766838000,0],[1709766839000,0],[1709766840000,0],[1709766841000,0],[1709766842000,0],[1709766843000,0],[1709766844000,0],[1709766845000,0],[1709766846000,0],[1709766847000,0],[1709766848000,0],[1709766849000,0],[1709766850000,0],[1709766851000,0],[1709766852000,0],[1709766853000,0],[1709766854000,0],[1709766855000,0],[1709766856000,0],[1709766857000,0],[1709766858000,0],[1709766859000,0],[1709766860000,0],[1709766861000,0],[1709766862000,0],[1709766863000,0],[1709766864000,0],[1709766865000,0],[1709766866000,0],[1709766867000,0],[1709766868000,0],[1709766869000,0],[1709766870000,0],[1709766871000,0],[1709766872000,0],[1709766873000,0],[1709766874000,0],[1709766875000,0],[1709766876000,0],[1709766877000,0],[1709766878000,0],[1709766879000,0],[1709766880000,0],[1709766881000,0],[1709766882000,0],[1709766883000,0],[1709766884000,0],[1709766885000,0],[1709766886000,0],[1709766887000,0],[1709766888000,0],[1709766889000,0],[1709766890000,0],[1709766891000,0],[1709766892000,0],[1709766893000,0],[1709766894000,0],[1709766895000,0],[1709766896000,0],[1709766897000,0],[1709766898000,0],[1709766899000,0],[1709766900000,0],[1709766901000,0],[1709766902000,0],[1709766903000,0],[1709766904000,0],[1709766905000,0],[1709766906000,0],[1709766907000,0],[1709766908000,0],[1709766909000,0],[1709766910000,0],[1709766911000,0],[1709766912000,0],[1709766913000,0],[1709766914000,0],[1709766915000,0],[1709766916000,0],[1709766917000,0],[1709766918000,0],[1709766919000,0],[1709766920000,0],[1709766921000,0],[1709766922000,0],[1709766923000,0],[1709766924000,0],[1709766925000,0],[1709766926000,0],[1709766927000,0],[1709766928000,0],[1709766929000,0],[1709766930000,0],[1709766931000,0],[1709766932000,0],[1709766933000,0],[1709766934000,0],[1709766935000,0],[1709766936000,0],[1709766937000,0],[1709766938000,0],[1709766939000,0],[1709766940000,0],[1709766941000,0],[1709766942000,0],[1709766943000,0],[1709766944000,0],[1709766945000,0],[1709766946000,0],[1709766947000,0],[1709766948000,0],[1709766949000,0],[1709766950000,0],[1709766951000,0],[1709766952000,0],[1709766953000,0],[1709766954000,0],[1709766955000,0],[1709766956000,0],[1709766957000,0],[1709766958000,0],[1709766959000,0],[1709766960000,0],[1709766961000,0],[1709766962000,0],[1709766963000,0],[1709766964000,0],[1709766965000,0],[1709766966000,0],[1709766967000,0],[1709766968000,0],[1709766969000,0],[1709766970000,0],[1709766971000,0],[1709766972000,0],[1709766973000,0],[1709766974000,0],[1709766975000,0],[1709766976000,0],[1709766977000,0],[1709766978000,0],[1709766979000,0],[1709766980000,0],[1709766981000,0],[1709766982000,0],[1709766983000,0],[1709766984000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#9D00FF',
name: 'validação concorrência transações - c',
data: [
[1709766740000,0],[1709766741000,22],[1709766742000,24],[1709766743000,0],[1709766744000,0],[1709766745000,0],[1709766746000,0],[1709766747000,0],[1709766748000,0],[1709766749000,0],[1709766750000,0],[1709766751000,0],[1709766752000,0],[1709766753000,0],[1709766754000,0],[1709766755000,0],[1709766756000,0],[1709766757000,0],[1709766758000,0],[1709766759000,0],[1709766760000,0],[1709766761000,0],[1709766762000,0],[1709766763000,0],[1709766764000,0],[1709766765000,0],[1709766766000,0],[1709766767000,0],[1709766768000,0],[1709766769000,0],[1709766770000,0],[1709766771000,0],[1709766772000,0],[1709766773000,0],[1709766774000,0],[1709766775000,0],[1709766776000,0],[1709766777000,0],[1709766778000,0],[1709766779000,0],[1709766780000,0],[1709766781000,0],[1709766782000,0],[1709766783000,0],[1709766784000,0],[1709766785000,0],[1709766786000,0],[1709766787000,0],[1709766788000,0],[1709766789000,0],[1709766790000,0],[1709766791000,0],[1709766792000,0],[1709766793000,0],[1709766794000,0],[1709766795000,0],[1709766796000,0],[1709766797000,0],[1709766798000,0],[1709766799000,0],[1709766800000,0],[1709766801000,0],[1709766802000,0],[1709766803000,0],[1709766804000,0],[1709766805000,0],[1709766806000,0],[1709766807000,0],[1709766808000,0],[1709766809000,0],[1709766810000,0],[1709766811000,0],[1709766812000,0],[1709766813000,0],[1709766814000,0],[1709766815000,0],[1709766816000,0],[1709766817000,0],[1709766818000,0],[1709766819000,0],[1709766820000,0],[1709766821000,0],[1709766822000,0],[1709766823000,0],[1709766824000,0],[1709766825000,0],[1709766826000,0],[1709766827000,0],[1709766828000,0],[1709766829000,0],[1709766830000,0],[1709766831000,0],[1709766832000,0],[1709766833000,0],[1709766834000,0],[1709766835000,0],[1709766836000,0],[1709766837000,0],[1709766838000,0],[1709766839000,0],[1709766840000,0],[1709766841000,0],[1709766842000,0],[1709766843000,0],[1709766844000,0],[1709766845000,0],[1709766846000,0],[1709766847000,0],[1709766848000,0],[1709766849000,0],[1709766850000,0],[1709766851000,0],[1709766852000,0],[1709766853000,0],[1709766854000,0],[1709766855000,0],[1709766856000,0],[1709766857000,0],[1709766858000,0],[1709766859000,0],[1709766860000,0],[1709766861000,0],[1709766862000,0],[1709766863000,0],[1709766864000,0],[1709766865000,0],[1709766866000,0],[1709766867000,0],[1709766868000,0],[1709766869000,0],[1709766870000,0],[1709766871000,0],[1709766872000,0],[1709766873000,0],[1709766874000,0],[1709766875000,0],[1709766876000,0],[1709766877000,0],[1709766878000,0],[1709766879000,0],[1709766880000,0],[1709766881000,0],[1709766882000,0],[1709766883000,0],[1709766884000,0],[1709766885000,0],[1709766886000,0],[1709766887000,0],[1709766888000,0],[1709766889000,0],[1709766890000,0],[1709766891000,0],[1709766892000,0],[1709766893000,0],[1709766894000,0],[1709766895000,0],[1709766896000,0],[1709766897000,0],[1709766898000,0],[1709766899000,0],[1709766900000,0],[1709766901000,0],[1709766902000,0],[1709766903000,0],[1709766904000,0],[1709766905000,0],[1709766906000,0],[1709766907000,0],[1709766908000,0],[1709766909000,0],[1709766910000,0],[1709766911000,0],[1709766912000,0],[1709766913000,0],[1709766914000,0],[1709766915000,0],[1709766916000,0],[1709766917000,0],[1709766918000,0],[1709766919000,0],[1709766920000,0],[1709766921000,0],[1709766922000,0],[1709766923000,0],[1709766924000,0],[1709766925000,0],[1709766926000,0],[1709766927000,0],[1709766928000,0],[1709766929000,0],[1709766930000,0],[1709766931000,0],[1709766932000,0],[1709766933000,0],[1709766934000,0],[1709766935000,0],[1709766936000,0],[1709766937000,0],[1709766938000,0],[1709766939000,0],[1709766940000,0],[1709766941000,0],[1709766942000,0],[1709766943000,0],[1709766944000,0],[1709766945000,0],[1709766946000,0],[1709766947000,0],[1709766948000,0],[1709766949000,0],[1709766950000,0],[1709766951000,0],[1709766952000,0],[1709766953000,0],[1709766954000,0],[1709766955000,0],[1709766956000,0],[1709766957000,0],[1709766958000,0],[1709766959000,0],[1709766960000,0],[1709766961000,0],[1709766962000,0],[1709766963000,0],[1709766964000,0],[1709766965000,0],[1709766966000,0],[1709766967000,0],[1709766968000,0],[1709766969000,0],[1709766970000,0],[1709766971000,0],[1709766972000,0],[1709766973000,0],[1709766974000,0],[1709766975000,0],[1709766976000,0],[1709766977000,0],[1709766978000,0],[1709766979000,0],[1709766980000,0],[1709766981000,0],[1709766982000,0],[1709766983000,0],[1709766984000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FF00E1',
name: 'validação concorrência saldo - -25',
data: [
[1709766740000,1],[1709766741000,1],[1709766742000,0],[1709766743000,0],[1709766744000,0],[1709766745000,0],[1709766746000,0],[1709766747000,0],[1709766748000,0],[1709766749000,0],[1709766750000,0],[1709766751000,0],[1709766752000,0],[1709766753000,0],[1709766754000,0],[1709766755000,0],[1709766756000,0],[1709766757000,0],[1709766758000,0],[1709766759000,0],[1709766760000,0],[1709766761000,0],[1709766762000,0],[1709766763000,0],[1709766764000,0],[1709766765000,0],[1709766766000,0],[1709766767000,0],[1709766768000,0],[1709766769000,0],[1709766770000,0],[1709766771000,0],[1709766772000,0],[1709766773000,0],[1709766774000,0],[1709766775000,0],[1709766776000,0],[1709766777000,0],[1709766778000,0],[1709766779000,0],[1709766780000,0],[1709766781000,0],[1709766782000,0],[1709766783000,0],[1709766784000,0],[1709766785000,0],[1709766786000,0],[1709766787000,0],[1709766788000,0],[1709766789000,0],[1709766790000,0],[1709766791000,0],[1709766792000,0],[1709766793000,0],[1709766794000,0],[1709766795000,0],[1709766796000,0],[1709766797000,0],[1709766798000,0],[1709766799000,0],[1709766800000,0],[1709766801000,0],[1709766802000,0],[1709766803000,0],[1709766804000,0],[1709766805000,0],[1709766806000,0],[1709766807000,0],[1709766808000,0],[1709766809000,0],[1709766810000,0],[1709766811000,0],[1709766812000,0],[1709766813000,0],[1709766814000,0],[1709766815000,0],[1709766816000,0],[1709766817000,0],[1709766818000,0],[1709766819000,0],[1709766820000,0],[1709766821000,0],[1709766822000,0],[1709766823000,0],[1709766824000,0],[1709766825000,0],[1709766826000,0],[1709766827000,0],[1709766828000,0],[1709766829000,0],[1709766830000,0],[1709766831000,0],[1709766832000,0],[1709766833000,0],[1709766834000,0],[1709766835000,0],[1709766836000,0],[1709766837000,0],[1709766838000,0],[1709766839000,0],[1709766840000,0],[1709766841000,0],[1709766842000,0],[1709766843000,0],[1709766844000,0],[1709766845000,0],[1709766846000,0],[1709766847000,0],[1709766848000,0],[1709766849000,0],[1709766850000,0],[1709766851000,0],[1709766852000,0],[1709766853000,0],[1709766854000,0],[1709766855000,0],[1709766856000,0],[1709766857000,0],[1709766858000,0],[1709766859000,0],[1709766860000,0],[1709766861000,0],[1709766862000,0],[1709766863000,0],[1709766864000,0],[1709766865000,0],[1709766866000,0],[1709766867000,0],[1709766868000,0],[1709766869000,0],[1709766870000,0],[1709766871000,0],[1709766872000,0],[1709766873000,0],[1709766874000,0],[1709766875000,0],[1709766876000,0],[1709766877000,0],[1709766878000,0],[1709766879000,0],[1709766880000,0],[1709766881000,0],[1709766882000,0],[1709766883000,0],[1709766884000,0],[1709766885000,0],[1709766886000,0],[1709766887000,0],[1709766888000,0],[1709766889000,0],[1709766890000,0],[1709766891000,0],[1709766892000,0],[1709766893000,0],[1709766894000,0],[1709766895000,0],[1709766896000,0],[1709766897000,0],[1709766898000,0],[1709766899000,0],[1709766900000,0],[1709766901000,0],[1709766902000,0],[1709766903000,0],[1709766904000,0],[1709766905000,0],[1709766906000,0],[1709766907000,0],[1709766908000,0],[1709766909000,0],[1709766910000,0],[1709766911000,0],[1709766912000,0],[1709766913000,0],[1709766914000,0],[1709766915000,0],[1709766916000,0],[1709766917000,0],[1709766918000,0],[1709766919000,0],[1709766920000,0],[1709766921000,0],[1709766922000,0],[1709766923000,0],[1709766924000,0],[1709766925000,0],[1709766926000,0],[1709766927000,0],[1709766928000,0],[1709766929000,0],[1709766930000,0],[1709766931000,0],[1709766932000,0],[1709766933000,0],[1709766934000,0],[1709766935000,0],[1709766936000,0],[1709766937000,0],[1709766938000,0],[1709766939000,0],[1709766940000,0],[1709766941000,0],[1709766942000,0],[1709766943000,0],[1709766944000,0],[1709766945000,0],[1709766946000,0],[1709766947000,0],[1709766948000,0],[1709766949000,0],[1709766950000,0],[1709766951000,0],[1709766952000,0],[1709766953000,0],[1709766954000,0],[1709766955000,0],[1709766956000,0],[1709766957000,0],[1709766958000,0],[1709766959000,0],[1709766960000,0],[1709766961000,0],[1709766962000,0],[1709766963000,0],[1709766964000,0],[1709766965000,0],[1709766966000,0],[1709766967000,0],[1709766968000,0],[1709766969000,0],[1709766970000,0],[1709766971000,0],[1709766972000,0],[1709766973000,0],[1709766974000,0],[1709766975000,0],[1709766976000,0],[1709766977000,0],[1709766978000,0],[1709766979000,0],[1709766980000,0],[1709766981000,0],[1709766982000,0],[1709766983000,0],[1709766984000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#AECAEB',
name: 'validação concorrência transações - d',
data: [
[1709766740000,25],[1709766741000,0],[1709766742000,0],[1709766743000,0],[1709766744000,0],[1709766745000,0],[1709766746000,0],[1709766747000,0],[1709766748000,0],[1709766749000,0],[1709766750000,0],[1709766751000,0],[1709766752000,0],[1709766753000,0],[1709766754000,0],[1709766755000,0],[1709766756000,0],[1709766757000,0],[1709766758000,0],[1709766759000,0],[1709766760000,0],[1709766761000,0],[1709766762000,0],[1709766763000,0],[1709766764000,0],[1709766765000,0],[1709766766000,0],[1709766767000,0],[1709766768000,0],[1709766769000,0],[1709766770000,0],[1709766771000,0],[1709766772000,0],[1709766773000,0],[1709766774000,0],[1709766775000,0],[1709766776000,0],[1709766777000,0],[1709766778000,0],[1709766779000,0],[1709766780000,0],[1709766781000,0],[1709766782000,0],[1709766783000,0],[1709766784000,0],[1709766785000,0],[1709766786000,0],[1709766787000,0],[1709766788000,0],[1709766789000,0],[1709766790000,0],[1709766791000,0],[1709766792000,0],[1709766793000,0],[1709766794000,0],[1709766795000,0],[1709766796000,0],[1709766797000,0],[1709766798000,0],[1709766799000,0],[1709766800000,0],[1709766801000,0],[1709766802000,0],[1709766803000,0],[1709766804000,0],[1709766805000,0],[1709766806000,0],[1709766807000,0],[1709766808000,0],[1709766809000,0],[1709766810000,0],[1709766811000,0],[1709766812000,0],[1709766813000,0],[1709766814000,0],[1709766815000,0],[1709766816000,0],[1709766817000,0],[1709766818000,0],[1709766819000,0],[1709766820000,0],[1709766821000,0],[1709766822000,0],[1709766823000,0],[1709766824000,0],[1709766825000,0],[1709766826000,0],[1709766827000,0],[1709766828000,0],[1709766829000,0],[1709766830000,0],[1709766831000,0],[1709766832000,0],[1709766833000,0],[1709766834000,0],[1709766835000,0],[1709766836000,0],[1709766837000,0],[1709766838000,0],[1709766839000,0],[1709766840000,0],[1709766841000,0],[1709766842000,0],[1709766843000,0],[1709766844000,0],[1709766845000,0],[1709766846000,0],[1709766847000,0],[1709766848000,0],[1709766849000,0],[1709766850000,0],[1709766851000,0],[1709766852000,0],[1709766853000,0],[1709766854000,0],[1709766855000,0],[1709766856000,0],[1709766857000,0],[1709766858000,0],[1709766859000,0],[1709766860000,0],[1709766861000,0],[1709766862000,0],[1709766863000,0],[1709766864000,0],[1709766865000,0],[1709766866000,0],[1709766867000,0],[1709766868000,0],[1709766869000,0],[1709766870000,0],[1709766871000,0],[1709766872000,0],[1709766873000,0],[1709766874000,0],[1709766875000,0],[1709766876000,0],[1709766877000,0],[1709766878000,0],[1709766879000,0],[1709766880000,0],[1709766881000,0],[1709766882000,0],[1709766883000,0],[1709766884000,0],[1709766885000,0],[1709766886000,0],[1709766887000,0],[1709766888000,0],[1709766889000,0],[1709766890000,0],[1709766891000,0],[1709766892000,0],[1709766893000,0],[1709766894000,0],[1709766895000,0],[1709766896000,0],[1709766897000,0],[1709766898000,0],[1709766899000,0],[1709766900000,0],[1709766901000,0],[1709766902000,0],[1709766903000,0],[1709766904000,0],[1709766905000,0],[1709766906000,0],[1709766907000,0],[1709766908000,0],[1709766909000,0],[1709766910000,0],[1709766911000,0],[1709766912000,0],[1709766913000,0],[1709766914000,0],[1709766915000,0],[1709766916000,0],[1709766917000,0],[1709766918000,0],[1709766919000,0],[1709766920000,0],[1709766921000,0],[1709766922000,0],[1709766923000,0],[1709766924000,0],[1709766925000,0],[1709766926000,0],[1709766927000,0],[1709766928000,0],[1709766929000,0],[1709766930000,0],[1709766931000,0],[1709766932000,0],[1709766933000,0],[1709766934000,0],[1709766935000,0],[1709766936000,0],[1709766937000,0],[1709766938000,0],[1709766939000,0],[1709766940000,0],[1709766941000,0],[1709766942000,0],[1709766943000,0],[1709766944000,0],[1709766945000,0],[1709766946000,0],[1709766947000,0],[1709766948000,0],[1709766949000,0],[1709766950000,0],[1709766951000,0],[1709766952000,0],[1709766953000,0],[1709766954000,0],[1709766955000,0],[1709766956000,0],[1709766957000,0],[1709766958000,0],[1709766959000,0],[1709766960000,0],[1709766961000,0],[1709766962000,0],[1709766963000,0],[1709766964000,0],[1709766965000,0],[1709766966000,0],[1709766967000,0],[1709766968000,0],[1709766969000,0],[1709766970000,0],[1709766971000,0],[1709766972000,0],[1709766973000,0],[1709766974000,0],[1709766975000,0],[1709766976000,0],[1709766977000,0],[1709766978000,0],[1709766979000,0],[1709766980000,0],[1709766981000,0],[1709766982000,0],[1709766983000,0],[1709766984000,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: ['1', '2', '4', '5', '6', '8', '9', '10', '12', '13', '15', '16', '17', '19', '20', '22', '23', '24', '26', '27', '29', '30', '31', '33', '34', '36', '37', '39', '40', '41', '43', '44', '46', '47', '48', '50', '51', '53', '54', '55', '57', '58', '60', '61', '62', '64', '65', '67', '68', '69', '71', '72', '74', '75', '76', '78', '79', '81', '82', '83', '85', '86', '88', '89', '90', '92', '93', '95', '96', '97', '99', '100', '102', '103', '104', '106', '107', '109', '110', '111', '113', '114', '116', '117', '118', '120', '121', '123', '124', '125', '127', '128', '129', '131', '132', '134', '135', '136', '138', '139'],
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: [
27.27,39.38,27.33,2.32,0.87,0.81,0.13,0.22,0.12,0.09,0.15,0.08,0.12,0.15,0.17,0.19,0.06,0.1,0.02,0.01,0.03,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,0.0,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([[1709766740,[37,69,81,100,101,106,113,115,119,121]],[1709766741,null],[1709766742,[6,16,18,22,24,24,27,28,29,29]],[1709766743,null],[1709766744,[1,3,7,14,17,18,21,28,30,34]],[1709766745,[4,4,5,5,5,5,5,5,5,5]],[1709766746,[3,3,4,4,5,5,5,5,5,6]],[1709766747,[3,3,4,5,5,5,6,6,6,7]],[1709766748,[3,3,3,4,4,4,4,4,4,4]],[1709766749,[3,3,3,4,4,4,5,6,6,7]],[1709766750,[2,3,3,4,4,4,5,5,5,6]],[1709766751,[2,3,3,3,3,3,4,5,5,6]],[1709766752,[2,3,3,3,4,4,4,5,17,21]],[1709766753,[2,3,3,3,4,4,4,4,4,5]],[1709766754,[2,3,3,4,4,4,4,4,5,6]],[1709766755,[2,3,3,4,4,4,4,4,6,7]],[1709766756,[2,2,3,3,3,3,3,4,4,4]],[1709766757,[2,2,3,3,3,3,4,4,4,4]],[1709766758,[2,2,3,3,3,3,3,4,4,5]],[1709766759,[2,2,2,3,3,4,4,4,13,20]],[1709766760,[1,2,2,3,3,3,3,3,4,4]],[1709766761,[1,2,2,3,3,3,3,4,4,5]],[1709766762,[1,2,2,3,3,3,3,3,25,26]],[1709766763,[1,2,2,2,3,3,3,3,4,4]],[1709766764,[1,2,2,2,2,3,3,6,20,20]],[1709766765,[1,2,2,3,3,3,3,3,5,5]],[1709766766,[1,2,2,3,3,3,3,3,4,4]],[1709766767,[1,2,2,2,3,3,3,4,4,5]],[1709766768,[1,2,2,3,3,3,3,3,3,4]],[1709766769,[1,2,2,3,3,3,3,4,34,34]],[1709766770,[1,2,2,2,3,3,3,3,7,20]],[1709766771,[1,2,2,3,3,3,3,3,4,4]],[1709766772,[1,2,2,2,3,3,4,4,8,8]],[1709766773,[1,2,2,2,2,3,3,3,4,4]],[1709766774,[1,1,2,2,2,2,3,3,8,23]],[1709766775,[1,2,2,2,2,3,3,3,6,19]],[1709766776,[1,2,2,2,2,3,3,3,4,4]],[1709766777,[1,2,2,2,3,3,3,3,4,4]],[1709766778,[1,1,2,2,2,3,3,3,4,20]],[1709766779,[1,2,2,2,2,3,3,3,6,6]],[1709766780,[1,2,2,2,3,3,3,3,4,4]],[1709766781,[1,2,2,3,3,3,3,3,4,22]],[1709766782,[1,1,2,2,2,2,3,3,4,6]],[1709766783,[1,1,2,2,2,2,3,3,3,4]],[1709766784,[1,1,2,2,2,3,3,4,18,20]],[1709766785,[1,1,2,2,2,2,3,3,4,5]],[1709766786,[1,1,1,2,2,2,2,3,4,5]],[1709766787,[1,2,2,2,2,2,2,3,3,4]],[1709766788,[1,2,2,2,2,3,3,3,17,28]],[1709766789,[1,2,2,2,3,3,3,4,16,20]],[1709766790,[1,2,2,2,2,3,3,3,3,4]],[1709766791,[1,2,2,2,2,3,3,3,4,5]],[1709766792,[1,2,2,2,2,3,3,3,18,20]],[1709766793,[1,1,2,2,2,2,3,3,3,4]],[1709766794,[1,2,2,2,2,3,3,3,4,5]],[1709766795,[1,1,2,2,2,2,3,3,7,20]],[1709766796,[1,1,2,2,2,2,2,3,4,4]],[1709766797,[1,1,2,2,2,2,3,3,3,4]],[1709766798,[1,2,2,2,2,2,3,3,4,19]],[1709766799,[1,2,2,2,2,3,3,3,7,19]],[1709766800,[1,1,2,2,2,2,3,3,18,25]],[1709766801,[1,1,2,2,2,2,3,3,5,19]],[1709766802,[1,1,2,2,2,2,2,3,3,4]],[1709766803,[1,1,2,2,2,2,3,3,5,19]],[1709766804,[1,1,2,2,2,2,3,3,5,18]],[1709766805,[1,1,2,2,2,2,3,3,7,16]],[1709766806,[1,1,2,2,2,2,3,3,4,19]],[1709766807,[1,2,2,2,2,2,3,3,3,4]],[1709766808,[1,1,2,2,2,2,3,3,3,19]],[1709766809,[1,2,2,2,2,2,3,3,5,18]],[1709766810,[0,1,1,2,2,2,2,3,12,21]],[1709766811,[1,1,1,2,2,2,3,3,3,3]],[1709766812,[1,1,1,2,2,2,3,3,7,21]],[1709766813,[1,2,2,2,2,3,3,3,5,17]],[1709766814,[1,1,2,2,2,2,3,3,5,18]],[1709766815,[1,1,1,2,2,2,2,3,5,18]],[1709766816,[1,1,2,2,2,2,2,3,5,20]],[1709766817,[1,2,2,2,2,3,3,3,4,20]],[1709766818,[1,1,2,2,2,2,3,3,4,18]],[1709766819,[1,1,2,2,2,2,3,3,3,4]],[1709766820,[1,1,2,2,2,2,3,3,10,19]],[1709766821,[1,1,2,2,2,2,3,3,4,18]],[1709766822,[1,1,2,2,2,2,3,3,5,20]],[1709766823,[1,1,1,2,2,2,3,3,4,5]],[1709766824,[1,1,2,2,2,2,3,3,11,19]],[1709766825,[1,2,2,2,2,3,3,3,12,31]],[1709766826,[1,2,2,2,3,3,3,3,5,19]],[1709766827,[1,1,2,2,2,2,3,3,17,20]],[1709766828,[1,1,2,2,2,2,3,3,5,19]],[1709766829,[1,1,2,2,2,2,3,3,6,20]],[1709766830,[1,1,2,2,2,2,3,3,6,19]],[1709766831,[1,1,2,2,2,2,3,3,12,20]],[1709766832,[1,1,2,2,2,3,3,3,4,20]],[1709766833,[1,2,2,2,3,3,3,4,5,20]],[1709766834,[1,2,2,2,3,3,3,3,4,19]],[1709766835,[1,2,2,2,3,3,3,3,11,21]],[1709766836,[1,1,2,2,2,3,3,3,16,20]],[1709766837,[1,1,2,2,2,3,3,3,7,19]],[1709766838,[1,2,2,2,2,3,3,3,5,18]],[1709766839,[1,1,1,2,2,2,3,3,11,20]],[1709766840,[1,1,2,2,2,3,3,3,12,20]],[1709766841,[1,2,2,2,2,3,3,3,4,20]],[1709766842,[0,1,1,2,2,2,2,3,12,19]],[1709766843,[1,1,1,2,2,2,3,3,5,20]],[1709766844,[1,1,2,2,2,3,3,3,13,19]],[1709766845,[1,2,2,2,2,3,3,3,5,19]],[1709766846,[1,1,2,2,2,3,3,3,10,20]],[1709766847,[1,1,2,2,2,3,3,3,9,19]],[1709766848,[1,1,2,2,2,2,3,3,9,19]],[1709766849,[1,1,1,2,2,2,2,3,4,19]],[1709766850,[1,1,1,2,2,2,2,3,4,20]],[1709766851,[1,1,1,2,2,2,3,3,14,20]],[1709766852,[1,1,1,2,2,2,2,3,13,19]],[1709766853,[1,1,1,2,2,2,2,3,4,19]],[1709766854,[1,1,1,2,2,2,2,3,4,19]],[1709766855,[1,1,1,2,2,2,3,3,13,20]],[1709766856,[1,1,1,2,2,2,3,4,21,29]],[1709766857,[1,2,2,3,3,3,4,4,6,22]],[1709766858,[1,1,2,2,3,3,3,4,12,22]],[1709766859,[1,2,3,3,3,4,4,5,9,23]],[1709766860,[1,1,2,3,3,4,4,5,11,23]],[1709766861,[1,2,3,3,3,4,4,5,15,26]],[1709766862,[1,1,2,3,3,3,4,4,12,24]],[1709766863,[1,1,3,3,3,4,4,5,15,25]],[1709766864,[1,2,2,3,3,3,4,4,6,19]],[1709766865,[1,2,2,3,3,3,4,5,10,22]],[1709766866,[1,1,2,3,3,3,4,4,16,24]],[1709766867,[1,1,2,3,3,3,4,5,14,22]],[1709766868,[1,2,2,3,3,3,4,4,12,22]],[1709766869,[1,2,2,3,4,4,5,5,19,25]],[1709766870,[1,2,3,3,4,4,4,5,6,7]],[1709766871,[1,2,2,3,4,4,4,5,15,20]],[1709766872,[1,2,3,4,4,4,5,7,22,28]],[1709766873,[1,2,2,3,3,4,4,5,16,24]],[1709766874,[1,2,3,4,4,4,5,5,12,21]],[1709766875,[0,2,2,2,2,3,3,4,11,25]],[1709766876,[1,2,2,3,3,3,4,5,8,21]],[1709766877,[1,1,2,2,3,3,3,5,13,22]],[1709766878,[1,3,3,4,4,4,5,6,23,27]],[1709766879,[1,1,2,2,2,3,3,4,11,23]],[1709766880,[1,2,3,3,3,4,4,5,7,23]],[1709766881,[1,2,2,2,3,3,3,5,16,22]],[1709766882,[1,3,3,4,4,4,4,6,8,22]],[1709766883,[1,1,2,2,2,3,3,4,13,21]],[1709766884,[1,2,3,2,4,4,4,5,17,23]],[1709766885,[1,2,2,2,3,3,3,3,7,20]],[1709766886,[1,2,3,4,4,4,5,6,18,24]],[1709766887,[1,1,2,2,2,3,3,4,14,21]],[1709766888,[1,2,2,3,3,4,4,4,10,25]],[1709766889,[0,1,1,2,2,2,2,3,16,23]],[1709766890,[1,1,2,3,3,4,4,5,8,22]],[1709766891,[1,2,2,7,22,39,58,75,133,140]],[1709766892,[1,2,3,4,4,4,5,6,13,23]],[1709766893,[1,1,2,2,3,3,4,4,12,21]],[1709766894,[1,1,2,3,3,3,4,4,7,27]],[1709766895,[1,2,2,3,3,3,3,4,12,22]],[1709766896,[1,2,2,3,4,4,4,5,14,24]],[1709766897,[1,2,2,3,3,3,4,5,15,22]],[1709766898,[1,2,2,3,3,4,4,5,13,21]],[1709766899,[1,1,2,3,3,4,4,5,14,20]],[1709766900,[1,1,2,3,3,3,4,4,6,19]],[1709766901,[1,1,2,3,3,4,4,5,16,27]],[1709766902,[1,1,1,2,2,3,3,4,15,20]],[1709766903,[1,2,2,3,3,4,4,5,10,20]],[1709766904,[0,1,2,2,2,3,3,4,15,25]],[1709766905,[1,2,2,3,3,3,3,4,14,21]],[1709766906,[1,2,2,2,2,3,3,3,5,6]],[1709766907,[1,2,3,4,4,4,5,6,21,25]],[1709766908,[1,1,2,2,2,3,3,4,13,21]],[1709766909,[1,2,2,3,3,4,4,5,10,23]],[1709766910,[1,2,2,2,3,3,3,3,16,23]],[1709766911,[0,1,2,3,3,4,4,5,12,24]],[1709766912,[1,1,2,2,2,3,3,4,18,23]],[1709766913,[1,2,2,3,3,4,4,5,8,20]],[1709766914,[1,1,2,2,2,3,3,4,14,22]],[1709766915,[1,1,2,3,3,3,4,4,7,21]],[1709766916,[1,2,2,2,3,3,3,4,15,20]],[1709766917,[1,2,2,3,3,4,4,6,19,31]],[1709766918,[0,1,2,2,2,2,3,4,13,21]],[1709766919,[1,2,3,3,4,4,4,5,19,28]],[1709766920,[1,2,2,3,3,4,4,5,8,19]],[1709766921,[1,3,3,4,4,4,5,6,22,27]],[1709766922,[1,2,2,4,4,4,5,6,15,22]],[1709766923,[1,2,3,4,4,4,5,6,16,24]],[1709766924,[1,1,2,3,3,4,4,5,19,27]],[1709766925,[1,3,3,4,4,5,5,6,8,23]],[1709766926,[1,1,2,2,3,3,3,5,14,23]],[1709766927,[1,3,3,4,4,4,5,8,22,26]],[1709766928,[1,2,2,2,3,3,3,5,6,20]],[1709766929,[1,2,3,4,4,4,5,6,16,23]],[1709766930,[1,1,2,2,2,3,3,5,11,20]],[1709766931,[1,3,3,4,4,4,5,6,13,24]],[1709766932,[1,1,2,2,3,3,3,5,10,24]],[1709766933,[1,2,3,4,4,4,5,5,13,22]],[1709766934,[1,1,2,2,2,3,3,3,6,20]],[1709766935,[1,2,3,3,4,4,4,6,21,29]],[1709766936,[1,1,1,2,2,2,3,3,9,19]],[1709766937,[1,2,3,3,4,4,5,6,13,23]],[1709766938,[1,2,2,3,3,3,3,5,13,21]],[1709766939,[1,2,3,4,4,4,5,7,21,25]],[1709766940,[1,2,2,3,3,4,4,5,10,20]],[1709766941,[1,2,3,3,4,4,4,5,15,24]],[1709766942,[1,2,2,3,3,3,4,6,17,27]],[1709766943,[1,2,2,3,3,3,3,5,15,27]],[1709766944,[1,1,2,2,3,3,3,5,20,30]],[1709766945,[1,1,2,3,3,3,4,5,6,9]],[1709766946,[1,2,2,3,3,3,4,5,12,22]],[1709766947,[1,2,2,3,4,4,4,5,7,25]],[1709766948,[1,2,2,3,4,4,5,6,16,26]],[1709766949,[1,2,2,3,3,3,4,5,8,19]],[1709766950,[1,2,3,3,4,4,4,5,17,25]],[1709766951,[1,2,3,17,30,41,54,70,88,97]],[1709766952,[1,2,3,3,4,4,4,5,8,24]],[1709766953,[1,2,2,3,3,3,4,6,19,25]],[1709766954,[1,2,3,3,3,4,4,5,9,22]],[1709766955,[1,1,2,2,2,3,3,5,14,24]],[1709766956,[1,1,2,3,3,4,4,5,13,21]],[1709766957,[1,1,1,2,2,2,2,3,6,19]],[1709766958,[1,2,3,3,4,4,5,6,14,22]],[1709766959,[1,2,2,2,3,3,3,5,17,23]],[1709766960,[1,2,3,4,4,4,5,6,16,29]],[1709766961,[1,1,2,2,2,3,3,4,16,24]],[1709766962,[1,2,3,3,3,4,4,5,8,23]],[1709766963,[1,1,2,2,3,3,3,5,15,25]],[1709766964,[1,2,2,3,3,3,4,5,17,26]],[1709766965,[1,1,1,2,2,2,3,3,12,24]],[1709766966,[1,2,3,3,4,4,4,5,11,22]],[1709766967,[1,2,2,2,2,3,3,3,7,20]],[1709766968,[1,2,3,2,4,4,4,7,22,44]],[1709766969,[1,1,2,2,2,3,3,5,14,21]],[1709766970,[1,1,2,3,3,4,4,5,11,25]],[1709766971,[1,1,2,2,2,3,3,3,14,20]],[1709766972,[1,2,2,3,3,4,4,5,15,22]],[1709766973,[1,2,2,2,3,3,3,4,15,22]],[1709766974,[1,2,2,3,3,3,4,6,17,25]],[1709766975,[1,1,2,2,2,3,3,4,12,21]],[1709766976,[1,2,2,3,3,3,4,5,17,25]],[1709766977,[1,1,1,2,2,3,3,4,8,24]],[1709766978,[1,1,2,2,3,3,4,7,21,24]],[1709766979,[1,2,2,3,3,3,3,5,16,24]],[1709766980,[1,1,2,2,3,3,3,4,8,19]],[1709766981,[1,1,2,3,3,3,3,5,16,24]],[1709766982,[1,3,3,4,4,4,4,5,9,23]],[1709766983,[1,1,2,3,3,3,4,6,18,23]],[1709766984,[1,2,3,4,4,4,4,5,11,25]]]);
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([[1709766740,[25,25,0]],[1709766741,[1,0,1]],[1709766742,[25,25,0]],[1709766743,[1,0,1]],[1709766744,[71,70,1]],[1709766745,[3,3,0]],[1709766746,[6,6,0]],[1709766747,[9,9,0]],[1709766748,[11,11,0]],[1709766749,[13,13,0]],[1709766750,[18,18,0]],[1709766751,[19,19,0]],[1709766752,[24,24,0]],[1709766753,[26,26,0]],[1709766754,[27,27,0]],[1709766755,[32,32,0]],[1709766756,[34,34,0]],[1709766757,[37,37,0]],[1709766758,[39,39,0]],[1709766759,[43,43,0]],[1709766760,[44,44,0]],[1709766761,[48,48,0]],[1709766762,[50,50,0]],[1709766763,[54,54,0]],[1709766764,[57,57,0]],[1709766765,[60,60,0]],[1709766766,[61,61,0]],[1709766767,[65,65,0]],[1709766768,[67,67,0]],[1709766769,[70,70,0]],[1709766770,[74,74,0]],[1709766771,[76,76,0]],[1709766772,[80,80,0]],[1709766773,[81,81,0]],[1709766774,[84,84,0]],[1709766775,[87,87,0]],[1709766776,[91,91,0]],[1709766777,[92,92,0]],[1709766778,[96,96,0]],[1709766779,[98,98,0]],[1709766780,[101,101,0]],[1709766781,[106,106,0]],[1709766782,[106,106,0]],[1709766783,[110,110,0]],[1709766784,[114,114,0]],[1709766785,[115,115,0]],[1709766786,[118,118,0]],[1709766787,[121,121,0]],[1709766788,[124,124,0]],[1709766789,[126,126,0]],[1709766790,[129,129,0]],[1709766791,[133,133,0]],[1709766792,[134,134,0]],[1709766793,[138,138,0]],[1709766794,[141,141,0]],[1709766795,[143,143,0]],[1709766796,[146,146,0]],[1709766797,[149,149,0]],[1709766798,[152,152,0]],[1709766799,[155,155,0]],[1709766800,[157,157,0]],[1709766801,[160,160,0]],[1709766802,[164,164,0]],[1709766803,[165,165,0]],[1709766804,[170,170,0]],[1709766805,[172,172,0]],[1709766806,[174,174,0]],[1709766807,[176,176,0]],[1709766808,[181,181,0]],[1709766809,[183,183,0]],[1709766810,[185,185,0]],[1709766811,[189,189,0]],[1709766812,[191,191,0]],[1709766813,[194,194,0]],[1709766814,[196,196,0]],[1709766815,[200,200,0]],[1709766816,[202,202,0]],[1709766817,[206,206,0]],[1709766818,[208,208,0]],[1709766819,[211,211,0]],[1709766820,[213,213,0]],[1709766821,[216,216,0]],[1709766822,[221,221,0]],[1709766823,[221,221,0]],[1709766824,[225,225,0]],[1709766825,[228,228,0]],[1709766826,[230,230,0]],[1709766827,[234,234,0]],[1709766828,[235,235,0]],[1709766829,[239,239,0]],[1709766830,[242,242,0]],[1709766831,[244,244,0]],[1709766832,[248,248,0]],[1709766833,[251,251,0]],[1709766834,[252,252,0]],[1709766835,[256,256,0]],[1709766836,[259,259,0]],[1709766837,[262,262,0]],[1709766838,[265,265,0]],[1709766839,[266,266,0]],[1709766840,[270,270,0]],[1709766841,[272,272,0]],[1709766842,[275,275,0]],[1709766843,[279,279,0]],[1709766844,[281,281,0]],[1709766845,[284,284,0]],[1709766846,[286,286,0]],[1709766847,[290,290,0]],[1709766848,[291,291,0]],[1709766849,[296,296,0]],[1709766850,[298,298,0]],[1709766851,[300,300,0]],[1709766852,[304,304,0]],[1709766853,[306,306,0]],[1709766854,[310,310,0]],[1709766855,[312,312,0]],[1709766856,[315,315,0]],[1709766857,[317,317,0]],[1709766858,[320,320,0]],[1709766859,[324,324,0]],[1709766860,[325,325,0]],[1709766861,[331,331,0]],[1709766862,[331,331,0]],[1709766863,[334,334,0]],[1709766864,[338,338,0]],[1709766865,[340,340,0]],[1709766866,[340,340,0]],[1709766867,[339,339,0]],[1709766868,[341,341,0]],[1709766869,[340,340,0]],[1709766870,[340,340,0]],[1709766871,[340,340,0]],[1709766872,[340,340,0]],[1709766873,[340,340,0]],[1709766874,[340,340,0]],[1709766875,[340,340,0]],[1709766876,[340,340,0]],[1709766877,[340,340,0]],[1709766878,[340,340,0]],[1709766879,[340,340,0]],[1709766880,[340,340,0]],[1709766881,[340,340,0]],[1709766882,[340,340,0]],[1709766883,[340,340,0]],[1709766884,[340,340,0]],[1709766885,[340,340,0]],[1709766886,[340,340,0]],[1709766887,[340,340,0]],[1709766888,[340,340,0]],[1709766889,[340,340,0]],[1709766890,[340,340,0]],[1709766891,[340,340,0]],[1709766892,[340,340,0]],[1709766893,[340,340,0]],[1709766894,[340,340,0]],[1709766895,[340,340,0]],[1709766896,[340,340,0]],[1709766897,[340,340,0]],[1709766898,[340,340,0]],[1709766899,[340,340,0]],[1709766900,[340,340,0]],[1709766901,[340,340,0]],[1709766902,[340,340,0]],[1709766903,[340,340,0]],[1709766904,[340,340,0]],[1709766905,[340,340,0]],[1709766906,[340,340,0]],[1709766907,[340,340,0]],[1709766908,[340,340,0]],[1709766909,[340,340,0]],[1709766910,[340,340,0]],[1709766911,[340,340,0]],[1709766912,[340,340,0]],[1709766913,[340,340,0]],[1709766914,[340,340,0]],[1709766915,[340,340,0]],[1709766916,[340,340,0]],[1709766917,[340,340,0]],[1709766918,[340,340,0]],[1709766919,[340,340,0]],[1709766920,[340,340,0]],[1709766921,[340,340,0]],[1709766922,[340,340,0]],[1709766923,[340,340,0]],[1709766924,[340,340,0]],[1709766925,[340,340,0]],[1709766926,[340,340,0]],[1709766927,[340,340,0]],[1709766928,[340,340,0]],[1709766929,[340,340,0]],[1709766930,[340,340,0]],[1709766931,[340,340,0]],[1709766932,[340,340,0]],[1709766933,[340,340,0]],[1709766934,[340,340,0]],[1709766935,[340,340,0]],[1709766936,[340,340,0]],[1709766937,[340,340,0]],[1709766938,[340,340,0]],[1709766939,[340,340,0]],[1709766940,[340,340,0]],[1709766941,[340,340,0]],[1709766942,[340,340,0]],[1709766943,[340,340,0]],[1709766944,[340,340,0]],[1709766945,[340,340,0]],[1709766946,[340,340,0]],[1709766947,[340,340,0]],[1709766948,[340,340,0]],[1709766949,[340,340,0]],[1709766950,[340,340,0]],[1709766951,[340,340,0]],[1709766952,[340,340,0]],[1709766953,[340,340,0]],[1709766954,[340,340,0]],[1709766955,[340,340,0]],[1709766956,[340,340,0]],[1709766957,[340,340,0]],[1709766958,[340,340,0]],[1709766959,[340,340,0]],[1709766960,[340,340,0]],[1709766961,[340,340,0]],[1709766962,[340,340,0]],[1709766963,[340,340,0]],[1709766964,[340,340,0]],[1709766965,[340,340,0]],[1709766966,[340,340,0]],[1709766967,[340,340,0]],[1709766968,[340,340,0]],[1709766969,[340,340,0]],[1709766970,[340,340,0]],[1709766971,[340,340,0]],[1709766972,[340,340,0]],[1709766973,[340,340,0]],[1709766974,[340,340,0]],[1709766975,[340,340,0]],[1709766976,[340,340,0]],[1709766977,[340,340,0]],[1709766978,[340,340,0]],[1709766979,[340,340,0]],[1709766980,[340,340,0]],[1709766981,[340,340,0]],[1709766982,[340,340,0]],[1709766983,[340,340,0]],[1709766984,[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'