-
Notifications
You must be signed in to change notification settings - Fork 923
/
Copy pathindex.html
1215 lines (1145 loc) · 94.7 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-08 17:18:13 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 - krymancer-zig">
<span class="simulation-information-label">Description: </span>
<span>Rinha de Backend - 2024/Q1: Crébito - krymancer-zig</span>
</span>
</div>
</div>
</div>
</div>
<div id="statistics_table_container">
<div id="stats" class="statistics extensible-geant collapsed">
<div class="title">
<div id="statistics_title" class="title_base"><span class="title_base_stats">Stats</span><span class="expand-table">Fixed height</span><span id="toggle-stats" class="toggle-table"></span><span class="collapse-table">Full size</span></div>
<div class="right">
<button class="statistics-button expand-all-button">Expand all groups</button>
<button class="statistics-button collapse-all-button">Collapse all groups</button>
<button id="statistics_full_screen" class="statistics-button" onclick="openStatisticsTableModal()"><img alt="Fullscreen" src="style/fullscreen.svg"></button>
</div>
</div>
<div class="scrollable">
<table id="container_statistics_head" class="statistics-in extensible-geant">
<thead>
<tr>
<th rowspan="2" id="col-1" class="header sortable sorted-up"><span>Requests</span></th>
<th colspan="5" class="header"><span class="executions">Executions</span></th>
<th colspan="8" class="header"><span class="response-time">Response Time (ms)</span></th>
</tr>
<tr>
<th id="col-2" class="header sortable"><span>Total</span></th>
<th id="col-3" class="header sortable"><span>OK</span></th>
<th id="col-4" class="header sortable"><span>KO</span></th>
<th id="col-5" class="header sortable"><span>% KO</span></th>
<th id="col-6" class="header sortable"><span><abbr title="Count of events per second">Cnt/s</abbr></span></th>
<th id="col-7" class="header sortable"><span>Min</span></th>
<th id="col-8" class="header sortable"><span>50th pct</span></th>
<th id="col-9" class="header sortable"><span>75th pct</span></th>
<th id="col-10" class="header sortable"><span>95th pct</span></th>
<th id="col-11" class="header sortable"><span>99th pct</span></th>
<th id="col-12" class="header sortable"><span>Max</span></th>
<th id="col-13" class="header sortable"><span>Mean</span></th>
<th id="col-14" class="header sortable"><span><abbr title="Standard Deviation">Std Dev</abbr></span></th>
</tr>
</thead>
<tbody></tbody>
</table>
<table id="container_statistics_body" class="statistics-in extensible-geant">
<tbody></tbody>
</table>
</div>
</div>
</div>
<dialog id="statistics_table_modal" class="statistics-table-modal">
<div class="statistics-table-modal-header"><button class="button-modal" onclick="closeStatisticsTableModal()"><img alt="Close" src="style/close.svg"></button></div>
<div class="statistics-table-modal-container">
<div id="statistics_table_modal_content" class="statistics-table-modal-content"></div>
</div>
</dialog>
<script>
function openStatisticsTableModal () {
const statsTable = document.getElementById("stats");
const statsTableModal = document.getElementById("statistics_table_modal");
const fullScreenButton = document.getElementById("statistics_full_screen");
fullScreenButton.disabled = true;
if (typeof statsTableModal.showModal === "function") {
const statsTableModalContent = document.getElementById("statistics_table_modal_content");
statsTableModalContent.innerHTML = "";
statsTableModalContent.appendChild(statsTable);
statsTableModal.showModal();
statsTableModal.addEventListener("close", function () {
const container = document.getElementById("statistics_table_container");
container.appendChild(statsTable);
fullScreenButton.disabled = false;
});
} else {
const incompatibleBrowserVersionMessage = document.createElement("div");
incompatibleBrowserVersionMessage.innerText = "Sorry, the <dialog> API is not supported by this browser.";
statsTable.insertBefore(incompatibleBrowserVersionMessage, statsTable.children[0]);
}
}
function closeStatisticsTableModal () {
const statsTableModal = document.getElementById("statistics_table_modal");
statsTableModal.close();
}
</script>
<div class="statistics extensible-geant collapsed">
<div class="title">
Errors
</div>
<table id="container_errors" class="statistics-in extensible-geant">
<thead>
<tr>
<th id="error-col-1" class="header sortable"><span>Error</span></th>
<th id="error-col-2" class="header sortable"><span>Count</span></th>
<th id="error-col-3" class="header sortable"><span>Percentage</span></th>
</tr>
</thead>
<tbody>
<tr>
<td class="error-col-1 total ko">status.find.in(200,422), but actually found 502<span class="value" style="display:none">0</span></td>
<td class="value error-col-2 total ko">12564</td>
<td class="value error-col-3 total ko">48.622 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">status.find.in(200), but actually found 502<span class="value" style="display:none">1</span></td>
<td class="value error-col-2 total ko">6282</td>
<td class="value error-col-3 total ko">24.311 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">jmesPath(saldo).find.ConsistenciaSaldoLimite - Transação, Limite ultrapassado!<span class="value" style="display:none">2</span></td>
<td class="value error-col-2 total ko">5884</td>
<td class="value error-col-3 total ko">22.771 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">status.find.in([200, 209], 304), found 502<span class="value" style="display:none">3</span></td>
<td class="value error-col-2 total ko">570</td>
<td class="value error-col-3 total ko">2.206 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">jmesPath(saldo.total).find.ConsistenciaSaldoLimite - Extrato, Limite ultrapassado!<span class="value" style="display:none">4</span></td>
<td class="value error-col-2 total ko">540</td>
<td class="value error-col-3 total ko">2.09 %</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: [
[1709918294000,0],[1709918295000,0],[1709918296000,0],[1709918297000,0],[1709918298000,0],[1709918299000,2],[1709918300000,2],[1709918301000,4],[1709918302000,4],[1709918303000,5],[1709918304000,6],[1709918305000,7],[1709918306000,8],[1709918307000,8],[1709918308000,10],[1709918309000,10],[1709918310000,12],[1709918311000,12],[1709918312000,14],[1709918313000,14],[1709918314000,15],[1709918315000,16],[1709918316000,17],[1709918317000,17],[1709918318000,19],[1709918319000,20],[1709918320000,20],[1709918321000,22],[1709918322000,22],[1709918323000,23],[1709918324000,25],[1709918325000,25],[1709918326000,26],[1709918327000,26],[1709918328000,28],[1709918329000,29],[1709918330000,30],[1709918331000,30],[1709918332000,32],[1709918333000,32],[1709918334000,33],[1709918335000,34],[1709918336000,35],[1709918337000,36],[1709918338000,37],[1709918339000,38],[1709918340000,39],[1709918341000,39],[1709918342000,41],[1709918343000,41],[1709918344000,43],[1709918345000,43],[1709918346000,44],[1709918347000,45],[1709918348000,46],[1709918349000,47],[1709918350000,48],[1709918351000,48],[1709918352000,50],[1709918353000,50],[1709918354000,52],[1709918355000,52],[1709918356000,53],[1709918357000,54],[1709918358000,56],[1709918359000,55],[1709918360000,57],[1709918361000,58],[1709918362000,59],[1709918363000,59],[1709918364000,61],[1709918365000,61],[1709918366000,64],[1709918367000,64],[1709918368000,64],[1709918369000,66],[1709918370000,67],[1709918371000,68],[1709918372000,69],[1709918373000,69],[1709918374000,71],[1709918375000,71],[1709918376000,72],[1709918377000,73],[1709918378000,74],[1709918379000,75],[1709918380000,76],[1709918381000,77],[1709918382000,78],[1709918383000,78],[1709918384000,79],[1709918385000,80],[1709918386000,82],[1709918387000,82],[1709918388000,82],[1709918389000,83],[1709918390000,85],[1709918391000,85],[1709918392000,86],[1709918393000,86],[1709918394000,88],[1709918395000,89],[1709918396000,89],[1709918397000,91],[1709918398000,92],[1709918399000,92],[1709918400000,94],[1709918401000,97],[1709918402000,95],[1709918403000,96],[1709918404000,97],[1709918405000,97],[1709918406000,100],[1709918407000,99],[1709918408000,101],[1709918409000,101],[1709918410000,103],[1709918411000,103],[1709918412000,104],[1709918413000,105],[1709918414000,106],[1709918415000,107],[1709918416000,107],[1709918417000,109],[1709918418000,110],[1709918419000,110],[1709918420000,110],[1709918421000,110],[1709918422000,110],[1709918423000,110],[1709918424000,110],[1709918425000,110],[1709918426000,110],[1709918427000,110],[1709918428000,110],[1709918429000,111],[1709918430000,110],[1709918431000,110],[1709918432000,110],[1709918433000,110],[1709918434000,110],[1709918435000,110],[1709918436000,110],[1709918437000,110],[1709918438000,110],[1709918439000,110],[1709918440000,110],[1709918441000,110],[1709918442000,110],[1709918443000,110],[1709918444000,111],[1709918445000,110],[1709918446000,110],[1709918447000,110],[1709918448000,110],[1709918449000,110],[1709918450000,110],[1709918451000,110],[1709918452000,110],[1709918453000,110],[1709918454000,110],[1709918455000,110],[1709918456000,110],[1709918457000,110],[1709918458000,110],[1709918459000,110],[1709918460000,110],[1709918461000,110],[1709918462000,110],[1709918463000,110],[1709918464000,110],[1709918465000,110],[1709918466000,110],[1709918467000,110],[1709918468000,110],[1709918469000,110],[1709918470000,110],[1709918471000,110],[1709918472000,110],[1709918473000,110],[1709918474000,110],[1709918475000,110],[1709918476000,110],[1709918477000,110],[1709918478000,116],[1709918479000,119],[1709918480000,110],[1709918481000,110],[1709918482000,124],[1709918483000,110],[1709918484000,110],[1709918485000,110],[1709918486000,110],[1709918487000,110],[1709918488000,110],[1709918489000,110],[1709918490000,110],[1709918491000,110],[1709918492000,110],[1709918493000,110],[1709918494000,110],[1709918495000,110],[1709918496000,110],[1709918497000,110],[1709918498000,110],[1709918499000,110],[1709918500000,110],[1709918501000,110],[1709918502000,110],[1709918503000,110],[1709918504000,110],[1709918505000,110],[1709918506000,110],[1709918507000,110],[1709918508000,110],[1709918509000,110],[1709918510000,110],[1709918511000,110],[1709918512000,110],[1709918513000,110],[1709918514000,110],[1709918515000,110],[1709918516000,110],[1709918517000,110],[1709918518000,110],[1709918519000,110],[1709918520000,110],[1709918521000,110],[1709918522000,110],[1709918523000,110],[1709918524000,110],[1709918525000,110],[1709918526000,110],[1709918527000,110],[1709918528000,110],[1709918529000,110],[1709918530000,110],[1709918531000,110],[1709918532000,110],[1709918533000,110],[1709918534000,110],[1709918535000,110],[1709918536000,110],[1709918537000,110],[1709918538000,108]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#68b65c',
name: 'débitos',
data: [
[1709918294000,0],[1709918295000,0],[1709918296000,0],[1709918297000,0],[1709918298000,1],[1709918299000,2],[1709918300000,4],[1709918301000,6],[1709918302000,7],[1709918303000,9],[1709918304000,12],[1709918305000,13],[1709918306000,15],[1709918307000,16],[1709918308000,19],[1709918309000,20],[1709918310000,22],[1709918311000,24],[1709918312000,25],[1709918313000,28],[1709918314000,30],[1709918315000,31],[1709918316000,33],[1709918317000,35],[1709918318000,37],[1709918319000,38],[1709918320000,40],[1709918321000,42],[1709918322000,44],[1709918323000,46],[1709918324000,47],[1709918325000,50],[1709918326000,51],[1709918327000,53],[1709918328000,55],[1709918329000,56],[1709918330000,59],[1709918331000,60],[1709918332000,63],[1709918333000,64],[1709918334000,67],[1709918335000,69],[1709918336000,70],[1709918337000,72],[1709918338000,75],[1709918339000,75],[1709918340000,77],[1709918341000,80],[1709918342000,81],[1709918343000,83],[1709918344000,84],[1709918345000,86],[1709918346000,88],[1709918347000,89],[1709918348000,92],[1709918349000,93],[1709918350000,95],[1709918351000,97],[1709918352000,99],[1709918353000,101],[1709918354000,102],[1709918355000,104],[1709918356000,106],[1709918357000,108],[1709918358000,110],[1709918359000,111],[1709918360000,113],[1709918361000,115],[1709918362000,117],[1709918363000,119],[1709918364000,120],[1709918365000,123],[1709918366000,124],[1709918367000,126],[1709918368000,129],[1709918369000,130],[1709918370000,133],[1709918371000,134],[1709918372000,136],[1709918373000,138],[1709918374000,140],[1709918375000,142],[1709918376000,143],[1709918377000,145],[1709918378000,148],[1709918379000,148],[1709918380000,151],[1709918381000,153],[1709918382000,153],[1709918383000,155],[1709918384000,158],[1709918385000,159],[1709918386000,161],[1709918387000,162],[1709918388000,165],[1709918389000,167],[1709918390000,168],[1709918391000,170],[1709918392000,171],[1709918393000,174],[1709918394000,175],[1709918395000,177],[1709918396000,179],[1709918397000,181],[1709918398000,184],[1709918399000,184],[1709918400000,187],[1709918401000,195],[1709918402000,191],[1709918403000,193],[1709918404000,194],[1709918405000,196],[1709918406000,199],[1709918407000,200],[1709918408000,202],[1709918409000,203],[1709918410000,206],[1709918411000,207],[1709918412000,209],[1709918413000,211],[1709918414000,213],[1709918415000,215],[1709918416000,215],[1709918417000,217],[1709918418000,220],[1709918419000,221],[1709918420000,221],[1709918421000,220],[1709918422000,221],[1709918423000,220],[1709918424000,221],[1709918425000,220],[1709918426000,221],[1709918427000,220],[1709918428000,221],[1709918429000,222],[1709918430000,221],[1709918431000,220],[1709918432000,221],[1709918433000,220],[1709918434000,220],[1709918435000,220],[1709918436000,220],[1709918437000,221],[1709918438000,221],[1709918439000,221],[1709918440000,221],[1709918441000,220],[1709918442000,220],[1709918443000,221],[1709918444000,221],[1709918445000,221],[1709918446000,221],[1709918447000,220],[1709918448000,221],[1709918449000,220],[1709918450000,220],[1709918451000,221],[1709918452000,220],[1709918453000,221],[1709918454000,220],[1709918455000,221],[1709918456000,222],[1709918457000,220],[1709918458000,220],[1709918459000,220],[1709918460000,220],[1709918461000,220],[1709918462000,220],[1709918463000,221],[1709918464000,220],[1709918465000,220],[1709918466000,220],[1709918467000,221],[1709918468000,221],[1709918469000,220],[1709918470000,221],[1709918471000,221],[1709918472000,221],[1709918473000,221],[1709918474000,221],[1709918475000,221],[1709918476000,220],[1709918477000,221],[1709918478000,228],[1709918479000,238],[1709918480000,220],[1709918481000,220],[1709918482000,250],[1709918483000,220],[1709918484000,220],[1709918485000,220],[1709918486000,220],[1709918487000,220],[1709918488000,220],[1709918489000,220],[1709918490000,220],[1709918491000,220],[1709918492000,220],[1709918493000,220],[1709918494000,220],[1709918495000,220],[1709918496000,220],[1709918497000,220],[1709918498000,220],[1709918499000,220],[1709918500000,220],[1709918501000,220],[1709918502000,220],[1709918503000,220],[1709918504000,220],[1709918505000,220],[1709918506000,220],[1709918507000,220],[1709918508000,220],[1709918509000,220],[1709918510000,220],[1709918511000,220],[1709918512000,220],[1709918513000,220],[1709918514000,220],[1709918515000,220],[1709918516000,220],[1709918517000,220],[1709918518000,220],[1709918519000,220],[1709918520000,220],[1709918521000,220],[1709918522000,220],[1709918523000,220],[1709918524000,220],[1709918525000,220],[1709918526000,220],[1709918527000,220],[1709918528000,220],[1709918529000,220],[1709918530000,220],[1709918531000,220],[1709918532000,220],[1709918533000,220],[1709918534000,220],[1709918535000,220],[1709918536000,220],[1709918537000,220],[1709918538000,216]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#f15b4f',
name: 'extratos',
data: [
[1709918294000,0],[1709918295000,0],[1709918296000,0],[1709918297000,0],[1709918298000,1],[1709918299000,2],[1709918300000,1],[1709918301000,1],[1709918302000,1],[1709918303000,1],[1709918304000,2],[1709918305000,1],[1709918306000,2],[1709918307000,2],[1709918308000,1],[1709918309000,2],[1709918310000,2],[1709918311000,2],[1709918312000,2],[1709918313000,2],[1709918314000,2],[1709918315000,2],[1709918316000,3],[1709918317000,2],[1709918318000,3],[1709918319000,2],[1709918320000,3],[1709918321000,2],[1709918322000,3],[1709918323000,3],[1709918324000,3],[1709918325000,3],[1709918326000,3],[1709918327000,3],[1709918328000,3],[1709918329000,4],[1709918330000,3],[1709918331000,3],[1709918332000,4],[1709918333000,3],[1709918334000,4],[1709918335000,4],[1709918336000,4],[1709918337000,4],[1709918338000,4],[1709918339000,4],[1709918340000,4],[1709918341000,4],[1709918342000,4],[1709918343000,4],[1709918344000,5],[1709918345000,4],[1709918346000,5],[1709918347000,5],[1709918348000,4],[1709918349000,5],[1709918350000,5],[1709918351000,5],[1709918352000,5],[1709918353000,5],[1709918354000,5],[1709918355000,5],[1709918356000,6],[1709918357000,5],[1709918358000,6],[1709918359000,5],[1709918360000,6],[1709918361000,5],[1709918362000,6],[1709918363000,6],[1709918364000,6],[1709918365000,6],[1709918366000,6],[1709918367000,6],[1709918368000,6],[1709918369000,7],[1709918370000,6],[1709918371000,6],[1709918372000,7],[1709918373000,6],[1709918374000,7],[1709918375000,7],[1709918376000,7],[1709918377000,7],[1709918378000,7],[1709918379000,7],[1709918380000,7],[1709918381000,7],[1709918382000,7],[1709918383000,7],[1709918384000,8],[1709918385000,7],[1709918386000,8],[1709918387000,8],[1709918388000,7],[1709918389000,8],[1709918390000,8],[1709918391000,8],[1709918392000,8],[1709918393000,8],[1709918394000,8],[1709918395000,8],[1709918396000,9],[1709918397000,8],[1709918398000,9],[1709918399000,8],[1709918400000,9],[1709918401000,8],[1709918402000,9],[1709918403000,9],[1709918404000,9],[1709918405000,9],[1709918406000,9],[1709918407000,9],[1709918408000,9],[1709918409000,10],[1709918410000,9],[1709918411000,9],[1709918412000,10],[1709918413000,9],[1709918414000,10],[1709918415000,10],[1709918416000,10],[1709918417000,10],[1709918418000,10],[1709918419000,10],[1709918420000,10],[1709918421000,10],[1709918422000,10],[1709918423000,10],[1709918424000,10],[1709918425000,10],[1709918426000,10],[1709918427000,10],[1709918428000,10],[1709918429000,10],[1709918430000,10],[1709918431000,10],[1709918432000,10],[1709918433000,10],[1709918434000,10],[1709918435000,10],[1709918436000,10],[1709918437000,10],[1709918438000,10],[1709918439000,10],[1709918440000,10],[1709918441000,10],[1709918442000,10],[1709918443000,10],[1709918444000,10],[1709918445000,10],[1709918446000,10],[1709918447000,10],[1709918448000,10],[1709918449000,10],[1709918450000,10],[1709918451000,10],[1709918452000,10],[1709918453000,10],[1709918454000,10],[1709918455000,10],[1709918456000,10],[1709918457000,10],[1709918458000,10],[1709918459000,10],[1709918460000,10],[1709918461000,10],[1709918462000,10],[1709918463000,10],[1709918464000,10],[1709918465000,10],[1709918466000,10],[1709918467000,10],[1709918468000,10],[1709918469000,10],[1709918470000,10],[1709918471000,10],[1709918472000,10],[1709918473000,10],[1709918474000,10],[1709918475000,10],[1709918476000,10],[1709918477000,10],[1709918478000,11],[1709918479000,11],[1709918480000,10],[1709918481000,10],[1709918482000,11],[1709918483000,10],[1709918484000,10],[1709918485000,10],[1709918486000,10],[1709918487000,10],[1709918488000,10],[1709918489000,10],[1709918490000,10],[1709918491000,10],[1709918492000,10],[1709918493000,10],[1709918494000,10],[1709918495000,10],[1709918496000,10],[1709918497000,10],[1709918498000,10],[1709918499000,10],[1709918500000,10],[1709918501000,10],[1709918502000,10],[1709918503000,10],[1709918504000,10],[1709918505000,10],[1709918506000,10],[1709918507000,10],[1709918508000,10],[1709918509000,10],[1709918510000,10],[1709918511000,10],[1709918512000,10],[1709918513000,10],[1709918514000,10],[1709918515000,10],[1709918516000,10],[1709918517000,10],[1709918518000,10],[1709918519000,10],[1709918520000,10],[1709918521000,10],[1709918522000,10],[1709918523000,10],[1709918524000,10],[1709918525000,10],[1709918526000,10],[1709918527000,10],[1709918528000,10],[1709918529000,10],[1709918530000,10],[1709918531000,10],[1709918532000,10],[1709918533000,10],[1709918534000,10],[1709918535000,10],[1709918536000,10],[1709918537000,10],[1709918538000,9]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FFDD00',
name: 'validação HTTP 404',
data: [
[1709918294000,0],[1709918295000,0],[1709918296000,0],[1709918297000,1],[1709918298000,0],[1709918299000,0],[1709918300000,0],[1709918301000,0],[1709918302000,0],[1709918303000,0],[1709918304000,0],[1709918305000,0],[1709918306000,0],[1709918307000,0],[1709918308000,0],[1709918309000,0],[1709918310000,0],[1709918311000,0],[1709918312000,0],[1709918313000,0],[1709918314000,0],[1709918315000,0],[1709918316000,0],[1709918317000,0],[1709918318000,0],[1709918319000,0],[1709918320000,0],[1709918321000,0],[1709918322000,0],[1709918323000,0],[1709918324000,0],[1709918325000,0],[1709918326000,0],[1709918327000,0],[1709918328000,0],[1709918329000,0],[1709918330000,0],[1709918331000,0],[1709918332000,0],[1709918333000,0],[1709918334000,0],[1709918335000,0],[1709918336000,0],[1709918337000,0],[1709918338000,0],[1709918339000,0],[1709918340000,0],[1709918341000,0],[1709918342000,0],[1709918343000,0],[1709918344000,0],[1709918345000,0],[1709918346000,0],[1709918347000,0],[1709918348000,0],[1709918349000,0],[1709918350000,0],[1709918351000,0],[1709918352000,0],[1709918353000,0],[1709918354000,0],[1709918355000,0],[1709918356000,0],[1709918357000,0],[1709918358000,0],[1709918359000,0],[1709918360000,0],[1709918361000,0],[1709918362000,0],[1709918363000,0],[1709918364000,0],[1709918365000,0],[1709918366000,0],[1709918367000,0],[1709918368000,0],[1709918369000,0],[1709918370000,0],[1709918371000,0],[1709918372000,0],[1709918373000,0],[1709918374000,0],[1709918375000,0],[1709918376000,0],[1709918377000,0],[1709918378000,0],[1709918379000,0],[1709918380000,0],[1709918381000,0],[1709918382000,0],[1709918383000,0],[1709918384000,0],[1709918385000,0],[1709918386000,0],[1709918387000,0],[1709918388000,0],[1709918389000,0],[1709918390000,0],[1709918391000,0],[1709918392000,0],[1709918393000,0],[1709918394000,0],[1709918395000,0],[1709918396000,0],[1709918397000,0],[1709918398000,0],[1709918399000,0],[1709918400000,0],[1709918401000,0],[1709918402000,0],[1709918403000,0],[1709918404000,0],[1709918405000,0],[1709918406000,0],[1709918407000,0],[1709918408000,0],[1709918409000,0],[1709918410000,0],[1709918411000,0],[1709918412000,0],[1709918413000,0],[1709918414000,0],[1709918415000,0],[1709918416000,0],[1709918417000,0],[1709918418000,0],[1709918419000,0],[1709918420000,0],[1709918421000,0],[1709918422000,0],[1709918423000,0],[1709918424000,0],[1709918425000,0],[1709918426000,0],[1709918427000,0],[1709918428000,0],[1709918429000,0],[1709918430000,0],[1709918431000,0],[1709918432000,0],[1709918433000,0],[1709918434000,0],[1709918435000,0],[1709918436000,0],[1709918437000,0],[1709918438000,0],[1709918439000,0],[1709918440000,0],[1709918441000,0],[1709918442000,0],[1709918443000,0],[1709918444000,0],[1709918445000,0],[1709918446000,0],[1709918447000,0],[1709918448000,0],[1709918449000,0],[1709918450000,0],[1709918451000,0],[1709918452000,0],[1709918453000,0],[1709918454000,0],[1709918455000,0],[1709918456000,0],[1709918457000,0],[1709918458000,0],[1709918459000,0],[1709918460000,0],[1709918461000,0],[1709918462000,0],[1709918463000,0],[1709918464000,0],[1709918465000,0],[1709918466000,0],[1709918467000,0],[1709918468000,0],[1709918469000,0],[1709918470000,0],[1709918471000,0],[1709918472000,0],[1709918473000,0],[1709918474000,0],[1709918475000,0],[1709918476000,0],[1709918477000,0],[1709918478000,0],[1709918479000,0],[1709918480000,0],[1709918481000,0],[1709918482000,0],[1709918483000,0],[1709918484000,0],[1709918485000,0],[1709918486000,0],[1709918487000,0],[1709918488000,0],[1709918489000,0],[1709918490000,0],[1709918491000,0],[1709918492000,0],[1709918493000,0],[1709918494000,0],[1709918495000,0],[1709918496000,0],[1709918497000,0],[1709918498000,0],[1709918499000,0],[1709918500000,0],[1709918501000,0],[1709918502000,0],[1709918503000,0],[1709918504000,0],[1709918505000,0],[1709918506000,0],[1709918507000,0],[1709918508000,0],[1709918509000,0],[1709918510000,0],[1709918511000,0],[1709918512000,0],[1709918513000,0],[1709918514000,0],[1709918515000,0],[1709918516000,0],[1709918517000,0],[1709918518000,0],[1709918519000,0],[1709918520000,0],[1709918521000,0],[1709918522000,0],[1709918523000,0],[1709918524000,0],[1709918525000,0],[1709918526000,0],[1709918527000,0],[1709918528000,0],[1709918529000,0],[1709918530000,0],[1709918531000,0],[1709918532000,0],[1709918533000,0],[1709918534000,0],[1709918535000,0],[1709918536000,0],[1709918537000,0],[1709918538000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00D5FF',
name: 'validações',
data: [
[1709918294000,0],[1709918295000,0],[1709918296000,0],[1709918297000,5],[1709918298000,5],[1709918299000,0],[1709918300000,0],[1709918301000,0],[1709918302000,0],[1709918303000,0],[1709918304000,0],[1709918305000,0],[1709918306000,0],[1709918307000,0],[1709918308000,0],[1709918309000,0],[1709918310000,0],[1709918311000,0],[1709918312000,0],[1709918313000,0],[1709918314000,0],[1709918315000,0],[1709918316000,0],[1709918317000,0],[1709918318000,0],[1709918319000,0],[1709918320000,0],[1709918321000,0],[1709918322000,0],[1709918323000,0],[1709918324000,0],[1709918325000,0],[1709918326000,0],[1709918327000,0],[1709918328000,0],[1709918329000,0],[1709918330000,0],[1709918331000,0],[1709918332000,0],[1709918333000,0],[1709918334000,0],[1709918335000,0],[1709918336000,0],[1709918337000,0],[1709918338000,0],[1709918339000,0],[1709918340000,0],[1709918341000,0],[1709918342000,0],[1709918343000,0],[1709918344000,0],[1709918345000,0],[1709918346000,0],[1709918347000,0],[1709918348000,0],[1709918349000,0],[1709918350000,0],[1709918351000,0],[1709918352000,0],[1709918353000,0],[1709918354000,0],[1709918355000,0],[1709918356000,0],[1709918357000,0],[1709918358000,0],[1709918359000,0],[1709918360000,0],[1709918361000,0],[1709918362000,0],[1709918363000,0],[1709918364000,0],[1709918365000,0],[1709918366000,0],[1709918367000,0],[1709918368000,0],[1709918369000,0],[1709918370000,0],[1709918371000,0],[1709918372000,0],[1709918373000,0],[1709918374000,0],[1709918375000,0],[1709918376000,0],[1709918377000,0],[1709918378000,0],[1709918379000,0],[1709918380000,0],[1709918381000,0],[1709918382000,0],[1709918383000,0],[1709918384000,0],[1709918385000,0],[1709918386000,0],[1709918387000,0],[1709918388000,0],[1709918389000,0],[1709918390000,0],[1709918391000,0],[1709918392000,0],[1709918393000,0],[1709918394000,0],[1709918395000,0],[1709918396000,0],[1709918397000,0],[1709918398000,0],[1709918399000,0],[1709918400000,0],[1709918401000,0],[1709918402000,0],[1709918403000,0],[1709918404000,0],[1709918405000,0],[1709918406000,0],[1709918407000,0],[1709918408000,0],[1709918409000,0],[1709918410000,0],[1709918411000,0],[1709918412000,0],[1709918413000,0],[1709918414000,0],[1709918415000,0],[1709918416000,0],[1709918417000,0],[1709918418000,0],[1709918419000,0],[1709918420000,0],[1709918421000,0],[1709918422000,0],[1709918423000,0],[1709918424000,0],[1709918425000,0],[1709918426000,0],[1709918427000,0],[1709918428000,0],[1709918429000,0],[1709918430000,0],[1709918431000,0],[1709918432000,0],[1709918433000,0],[1709918434000,0],[1709918435000,0],[1709918436000,0],[1709918437000,0],[1709918438000,0],[1709918439000,0],[1709918440000,0],[1709918441000,0],[1709918442000,0],[1709918443000,0],[1709918444000,0],[1709918445000,0],[1709918446000,0],[1709918447000,0],[1709918448000,0],[1709918449000,0],[1709918450000,0],[1709918451000,0],[1709918452000,0],[1709918453000,0],[1709918454000,0],[1709918455000,0],[1709918456000,0],[1709918457000,0],[1709918458000,0],[1709918459000,0],[1709918460000,0],[1709918461000,0],[1709918462000,0],[1709918463000,0],[1709918464000,0],[1709918465000,0],[1709918466000,0],[1709918467000,0],[1709918468000,0],[1709918469000,0],[1709918470000,0],[1709918471000,0],[1709918472000,0],[1709918473000,0],[1709918474000,0],[1709918475000,0],[1709918476000,0],[1709918477000,0],[1709918478000,0],[1709918479000,0],[1709918480000,0],[1709918481000,0],[1709918482000,0],[1709918483000,0],[1709918484000,0],[1709918485000,0],[1709918486000,0],[1709918487000,0],[1709918488000,0],[1709918489000,0],[1709918490000,0],[1709918491000,0],[1709918492000,0],[1709918493000,0],[1709918494000,0],[1709918495000,0],[1709918496000,0],[1709918497000,0],[1709918498000,0],[1709918499000,0],[1709918500000,0],[1709918501000,0],[1709918502000,0],[1709918503000,0],[1709918504000,0],[1709918505000,0],[1709918506000,0],[1709918507000,0],[1709918508000,0],[1709918509000,0],[1709918510000,0],[1709918511000,0],[1709918512000,0],[1709918513000,0],[1709918514000,0],[1709918515000,0],[1709918516000,0],[1709918517000,0],[1709918518000,0],[1709918519000,0],[1709918520000,0],[1709918521000,0],[1709918522000,0],[1709918523000,0],[1709918524000,0],[1709918525000,0],[1709918526000,0],[1709918527000,0],[1709918528000,0],[1709918529000,0],[1709918530000,0],[1709918531000,0],[1709918532000,0],[1709918533000,0],[1709918534000,0],[1709918535000,0],[1709918536000,0],[1709918537000,0],[1709918538000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00FF00',
name: 'validação concorrência saldo - 0',
data: [
[1709918294000,0],[1709918295000,0],[1709918296000,1],[1709918297000,0],[1709918298000,0],[1709918299000,0],[1709918300000,0],[1709918301000,0],[1709918302000,0],[1709918303000,0],[1709918304000,0],[1709918305000,0],[1709918306000,0],[1709918307000,0],[1709918308000,0],[1709918309000,0],[1709918310000,0],[1709918311000,0],[1709918312000,0],[1709918313000,0],[1709918314000,0],[1709918315000,0],[1709918316000,0],[1709918317000,0],[1709918318000,0],[1709918319000,0],[1709918320000,0],[1709918321000,0],[1709918322000,0],[1709918323000,0],[1709918324000,0],[1709918325000,0],[1709918326000,0],[1709918327000,0],[1709918328000,0],[1709918329000,0],[1709918330000,0],[1709918331000,0],[1709918332000,0],[1709918333000,0],[1709918334000,0],[1709918335000,0],[1709918336000,0],[1709918337000,0],[1709918338000,0],[1709918339000,0],[1709918340000,0],[1709918341000,0],[1709918342000,0],[1709918343000,0],[1709918344000,0],[1709918345000,0],[1709918346000,0],[1709918347000,0],[1709918348000,0],[1709918349000,0],[1709918350000,0],[1709918351000,0],[1709918352000,0],[1709918353000,0],[1709918354000,0],[1709918355000,0],[1709918356000,0],[1709918357000,0],[1709918358000,0],[1709918359000,0],[1709918360000,0],[1709918361000,0],[1709918362000,0],[1709918363000,0],[1709918364000,0],[1709918365000,0],[1709918366000,0],[1709918367000,0],[1709918368000,0],[1709918369000,0],[1709918370000,0],[1709918371000,0],[1709918372000,0],[1709918373000,0],[1709918374000,0],[1709918375000,0],[1709918376000,0],[1709918377000,0],[1709918378000,0],[1709918379000,0],[1709918380000,0],[1709918381000,0],[1709918382000,0],[1709918383000,0],[1709918384000,0],[1709918385000,0],[1709918386000,0],[1709918387000,0],[1709918388000,0],[1709918389000,0],[1709918390000,0],[1709918391000,0],[1709918392000,0],[1709918393000,0],[1709918394000,0],[1709918395000,0],[1709918396000,0],[1709918397000,0],[1709918398000,0],[1709918399000,0],[1709918400000,0],[1709918401000,0],[1709918402000,0],[1709918403000,0],[1709918404000,0],[1709918405000,0],[1709918406000,0],[1709918407000,0],[1709918408000,0],[1709918409000,0],[1709918410000,0],[1709918411000,0],[1709918412000,0],[1709918413000,0],[1709918414000,0],[1709918415000,0],[1709918416000,0],[1709918417000,0],[1709918418000,0],[1709918419000,0],[1709918420000,0],[1709918421000,0],[1709918422000,0],[1709918423000,0],[1709918424000,0],[1709918425000,0],[1709918426000,0],[1709918427000,0],[1709918428000,0],[1709918429000,0],[1709918430000,0],[1709918431000,0],[1709918432000,0],[1709918433000,0],[1709918434000,0],[1709918435000,0],[1709918436000,0],[1709918437000,0],[1709918438000,0],[1709918439000,0],[1709918440000,0],[1709918441000,0],[1709918442000,0],[1709918443000,0],[1709918444000,0],[1709918445000,0],[1709918446000,0],[1709918447000,0],[1709918448000,0],[1709918449000,0],[1709918450000,0],[1709918451000,0],[1709918452000,0],[1709918453000,0],[1709918454000,0],[1709918455000,0],[1709918456000,0],[1709918457000,0],[1709918458000,0],[1709918459000,0],[1709918460000,0],[1709918461000,0],[1709918462000,0],[1709918463000,0],[1709918464000,0],[1709918465000,0],[1709918466000,0],[1709918467000,0],[1709918468000,0],[1709918469000,0],[1709918470000,0],[1709918471000,0],[1709918472000,0],[1709918473000,0],[1709918474000,0],[1709918475000,0],[1709918476000,0],[1709918477000,0],[1709918478000,0],[1709918479000,0],[1709918480000,0],[1709918481000,0],[1709918482000,0],[1709918483000,0],[1709918484000,0],[1709918485000,0],[1709918486000,0],[1709918487000,0],[1709918488000,0],[1709918489000,0],[1709918490000,0],[1709918491000,0],[1709918492000,0],[1709918493000,0],[1709918494000,0],[1709918495000,0],[1709918496000,0],[1709918497000,0],[1709918498000,0],[1709918499000,0],[1709918500000,0],[1709918501000,0],[1709918502000,0],[1709918503000,0],[1709918504000,0],[1709918505000,0],[1709918506000,0],[1709918507000,0],[1709918508000,0],[1709918509000,0],[1709918510000,0],[1709918511000,0],[1709918512000,0],[1709918513000,0],[1709918514000,0],[1709918515000,0],[1709918516000,0],[1709918517000,0],[1709918518000,0],[1709918519000,0],[1709918520000,0],[1709918521000,0],[1709918522000,0],[1709918523000,0],[1709918524000,0],[1709918525000,0],[1709918526000,0],[1709918527000,0],[1709918528000,0],[1709918529000,0],[1709918530000,0],[1709918531000,0],[1709918532000,0],[1709918533000,0],[1709918534000,0],[1709918535000,0],[1709918536000,0],[1709918537000,0],[1709918538000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#9D00FF',
name: 'validação concorrência transações - c',
data: [
[1709918294000,0],[1709918295000,25],[1709918296000,20],[1709918297000,0],[1709918298000,0],[1709918299000,0],[1709918300000,0],[1709918301000,0],[1709918302000,0],[1709918303000,0],[1709918304000,0],[1709918305000,0],[1709918306000,0],[1709918307000,0],[1709918308000,0],[1709918309000,0],[1709918310000,0],[1709918311000,0],[1709918312000,0],[1709918313000,0],[1709918314000,0],[1709918315000,0],[1709918316000,0],[1709918317000,0],[1709918318000,0],[1709918319000,0],[1709918320000,0],[1709918321000,0],[1709918322000,0],[1709918323000,0],[1709918324000,0],[1709918325000,0],[1709918326000,0],[1709918327000,0],[1709918328000,0],[1709918329000,0],[1709918330000,0],[1709918331000,0],[1709918332000,0],[1709918333000,0],[1709918334000,0],[1709918335000,0],[1709918336000,0],[1709918337000,0],[1709918338000,0],[1709918339000,0],[1709918340000,0],[1709918341000,0],[1709918342000,0],[1709918343000,0],[1709918344000,0],[1709918345000,0],[1709918346000,0],[1709918347000,0],[1709918348000,0],[1709918349000,0],[1709918350000,0],[1709918351000,0],[1709918352000,0],[1709918353000,0],[1709918354000,0],[1709918355000,0],[1709918356000,0],[1709918357000,0],[1709918358000,0],[1709918359000,0],[1709918360000,0],[1709918361000,0],[1709918362000,0],[1709918363000,0],[1709918364000,0],[1709918365000,0],[1709918366000,0],[1709918367000,0],[1709918368000,0],[1709918369000,0],[1709918370000,0],[1709918371000,0],[1709918372000,0],[1709918373000,0],[1709918374000,0],[1709918375000,0],[1709918376000,0],[1709918377000,0],[1709918378000,0],[1709918379000,0],[1709918380000,0],[1709918381000,0],[1709918382000,0],[1709918383000,0],[1709918384000,0],[1709918385000,0],[1709918386000,0],[1709918387000,0],[1709918388000,0],[1709918389000,0],[1709918390000,0],[1709918391000,0],[1709918392000,0],[1709918393000,0],[1709918394000,0],[1709918395000,0],[1709918396000,0],[1709918397000,0],[1709918398000,0],[1709918399000,0],[1709918400000,0],[1709918401000,0],[1709918402000,0],[1709918403000,0],[1709918404000,0],[1709918405000,0],[1709918406000,0],[1709918407000,0],[1709918408000,0],[1709918409000,0],[1709918410000,0],[1709918411000,0],[1709918412000,0],[1709918413000,0],[1709918414000,0],[1709918415000,0],[1709918416000,0],[1709918417000,0],[1709918418000,0],[1709918419000,0],[1709918420000,0],[1709918421000,0],[1709918422000,0],[1709918423000,0],[1709918424000,0],[1709918425000,0],[1709918426000,0],[1709918427000,0],[1709918428000,0],[1709918429000,0],[1709918430000,0],[1709918431000,0],[1709918432000,0],[1709918433000,0],[1709918434000,0],[1709918435000,0],[1709918436000,0],[1709918437000,0],[1709918438000,0],[1709918439000,0],[1709918440000,0],[1709918441000,0],[1709918442000,0],[1709918443000,0],[1709918444000,0],[1709918445000,0],[1709918446000,0],[1709918447000,0],[1709918448000,0],[1709918449000,0],[1709918450000,0],[1709918451000,0],[1709918452000,0],[1709918453000,0],[1709918454000,0],[1709918455000,0],[1709918456000,0],[1709918457000,0],[1709918458000,0],[1709918459000,0],[1709918460000,0],[1709918461000,0],[1709918462000,0],[1709918463000,0],[1709918464000,0],[1709918465000,0],[1709918466000,0],[1709918467000,0],[1709918468000,0],[1709918469000,0],[1709918470000,0],[1709918471000,0],[1709918472000,0],[1709918473000,0],[1709918474000,0],[1709918475000,0],[1709918476000,0],[1709918477000,0],[1709918478000,0],[1709918479000,0],[1709918480000,0],[1709918481000,0],[1709918482000,0],[1709918483000,0],[1709918484000,0],[1709918485000,0],[1709918486000,0],[1709918487000,0],[1709918488000,0],[1709918489000,0],[1709918490000,0],[1709918491000,0],[1709918492000,0],[1709918493000,0],[1709918494000,0],[1709918495000,0],[1709918496000,0],[1709918497000,0],[1709918498000,0],[1709918499000,0],[1709918500000,0],[1709918501000,0],[1709918502000,0],[1709918503000,0],[1709918504000,0],[1709918505000,0],[1709918506000,0],[1709918507000,0],[1709918508000,0],[1709918509000,0],[1709918510000,0],[1709918511000,0],[1709918512000,0],[1709918513000,0],[1709918514000,0],[1709918515000,0],[1709918516000,0],[1709918517000,0],[1709918518000,0],[1709918519000,0],[1709918520000,0],[1709918521000,0],[1709918522000,0],[1709918523000,0],[1709918524000,0],[1709918525000,0],[1709918526000,0],[1709918527000,0],[1709918528000,0],[1709918529000,0],[1709918530000,0],[1709918531000,0],[1709918532000,0],[1709918533000,0],[1709918534000,0],[1709918535000,0],[1709918536000,0],[1709918537000,0],[1709918538000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FF00E1',
name: 'validação concorrência saldo - -25',
data: [
[1709918294000,1],[1709918295000,1],[1709918296000,0],[1709918297000,0],[1709918298000,0],[1709918299000,0],[1709918300000,0],[1709918301000,0],[1709918302000,0],[1709918303000,0],[1709918304000,0],[1709918305000,0],[1709918306000,0],[1709918307000,0],[1709918308000,0],[1709918309000,0],[1709918310000,0],[1709918311000,0],[1709918312000,0],[1709918313000,0],[1709918314000,0],[1709918315000,0],[1709918316000,0],[1709918317000,0],[1709918318000,0],[1709918319000,0],[1709918320000,0],[1709918321000,0],[1709918322000,0],[1709918323000,0],[1709918324000,0],[1709918325000,0],[1709918326000,0],[1709918327000,0],[1709918328000,0],[1709918329000,0],[1709918330000,0],[1709918331000,0],[1709918332000,0],[1709918333000,0],[1709918334000,0],[1709918335000,0],[1709918336000,0],[1709918337000,0],[1709918338000,0],[1709918339000,0],[1709918340000,0],[1709918341000,0],[1709918342000,0],[1709918343000,0],[1709918344000,0],[1709918345000,0],[1709918346000,0],[1709918347000,0],[1709918348000,0],[1709918349000,0],[1709918350000,0],[1709918351000,0],[1709918352000,0],[1709918353000,0],[1709918354000,0],[1709918355000,0],[1709918356000,0],[1709918357000,0],[1709918358000,0],[1709918359000,0],[1709918360000,0],[1709918361000,0],[1709918362000,0],[1709918363000,0],[1709918364000,0],[1709918365000,0],[1709918366000,0],[1709918367000,0],[1709918368000,0],[1709918369000,0],[1709918370000,0],[1709918371000,0],[1709918372000,0],[1709918373000,0],[1709918374000,0],[1709918375000,0],[1709918376000,0],[1709918377000,0],[1709918378000,0],[1709918379000,0],[1709918380000,0],[1709918381000,0],[1709918382000,0],[1709918383000,0],[1709918384000,0],[1709918385000,0],[1709918386000,0],[1709918387000,0],[1709918388000,0],[1709918389000,0],[1709918390000,0],[1709918391000,0],[1709918392000,0],[1709918393000,0],[1709918394000,0],[1709918395000,0],[1709918396000,0],[1709918397000,0],[1709918398000,0],[1709918399000,0],[1709918400000,0],[1709918401000,0],[1709918402000,0],[1709918403000,0],[1709918404000,0],[1709918405000,0],[1709918406000,0],[1709918407000,0],[1709918408000,0],[1709918409000,0],[1709918410000,0],[1709918411000,0],[1709918412000,0],[1709918413000,0],[1709918414000,0],[1709918415000,0],[1709918416000,0],[1709918417000,0],[1709918418000,0],[1709918419000,0],[1709918420000,0],[1709918421000,0],[1709918422000,0],[1709918423000,0],[1709918424000,0],[1709918425000,0],[1709918426000,0],[1709918427000,0],[1709918428000,0],[1709918429000,0],[1709918430000,0],[1709918431000,0],[1709918432000,0],[1709918433000,0],[1709918434000,0],[1709918435000,0],[1709918436000,0],[1709918437000,0],[1709918438000,0],[1709918439000,0],[1709918440000,0],[1709918441000,0],[1709918442000,0],[1709918443000,0],[1709918444000,0],[1709918445000,0],[1709918446000,0],[1709918447000,0],[1709918448000,0],[1709918449000,0],[1709918450000,0],[1709918451000,0],[1709918452000,0],[1709918453000,0],[1709918454000,0],[1709918455000,0],[1709918456000,0],[1709918457000,0],[1709918458000,0],[1709918459000,0],[1709918460000,0],[1709918461000,0],[1709918462000,0],[1709918463000,0],[1709918464000,0],[1709918465000,0],[1709918466000,0],[1709918467000,0],[1709918468000,0],[1709918469000,0],[1709918470000,0],[1709918471000,0],[1709918472000,0],[1709918473000,0],[1709918474000,0],[1709918475000,0],[1709918476000,0],[1709918477000,0],[1709918478000,0],[1709918479000,0],[1709918480000,0],[1709918481000,0],[1709918482000,0],[1709918483000,0],[1709918484000,0],[1709918485000,0],[1709918486000,0],[1709918487000,0],[1709918488000,0],[1709918489000,0],[1709918490000,0],[1709918491000,0],[1709918492000,0],[1709918493000,0],[1709918494000,0],[1709918495000,0],[1709918496000,0],[1709918497000,0],[1709918498000,0],[1709918499000,0],[1709918500000,0],[1709918501000,0],[1709918502000,0],[1709918503000,0],[1709918504000,0],[1709918505000,0],[1709918506000,0],[1709918507000,0],[1709918508000,0],[1709918509000,0],[1709918510000,0],[1709918511000,0],[1709918512000,0],[1709918513000,0],[1709918514000,0],[1709918515000,0],[1709918516000,0],[1709918517000,0],[1709918518000,0],[1709918519000,0],[1709918520000,0],[1709918521000,0],[1709918522000,0],[1709918523000,0],[1709918524000,0],[1709918525000,0],[1709918526000,0],[1709918527000,0],[1709918528000,0],[1709918529000,0],[1709918530000,0],[1709918531000,0],[1709918532000,0],[1709918533000,0],[1709918534000,0],[1709918535000,0],[1709918536000,0],[1709918537000,0],[1709918538000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#AECAEB',
name: 'validação concorrência transações - d',
data: [
[1709918294000,25],[1709918295000,0],[1709918296000,0],[1709918297000,0],[1709918298000,0],[1709918299000,0],[1709918300000,0],[1709918301000,0],[1709918302000,0],[1709918303000,0],[1709918304000,0],[1709918305000,0],[1709918306000,0],[1709918307000,0],[1709918308000,0],[1709918309000,0],[1709918310000,0],[1709918311000,0],[1709918312000,0],[1709918313000,0],[1709918314000,0],[1709918315000,0],[1709918316000,0],[1709918317000,0],[1709918318000,0],[1709918319000,0],[1709918320000,0],[1709918321000,0],[1709918322000,0],[1709918323000,0],[1709918324000,0],[1709918325000,0],[1709918326000,0],[1709918327000,0],[1709918328000,0],[1709918329000,0],[1709918330000,0],[1709918331000,0],[1709918332000,0],[1709918333000,0],[1709918334000,0],[1709918335000,0],[1709918336000,0],[1709918337000,0],[1709918338000,0],[1709918339000,0],[1709918340000,0],[1709918341000,0],[1709918342000,0],[1709918343000,0],[1709918344000,0],[1709918345000,0],[1709918346000,0],[1709918347000,0],[1709918348000,0],[1709918349000,0],[1709918350000,0],[1709918351000,0],[1709918352000,0],[1709918353000,0],[1709918354000,0],[1709918355000,0],[1709918356000,0],[1709918357000,0],[1709918358000,0],[1709918359000,0],[1709918360000,0],[1709918361000,0],[1709918362000,0],[1709918363000,0],[1709918364000,0],[1709918365000,0],[1709918366000,0],[1709918367000,0],[1709918368000,0],[1709918369000,0],[1709918370000,0],[1709918371000,0],[1709918372000,0],[1709918373000,0],[1709918374000,0],[1709918375000,0],[1709918376000,0],[1709918377000,0],[1709918378000,0],[1709918379000,0],[1709918380000,0],[1709918381000,0],[1709918382000,0],[1709918383000,0],[1709918384000,0],[1709918385000,0],[1709918386000,0],[1709918387000,0],[1709918388000,0],[1709918389000,0],[1709918390000,0],[1709918391000,0],[1709918392000,0],[1709918393000,0],[1709918394000,0],[1709918395000,0],[1709918396000,0],[1709918397000,0],[1709918398000,0],[1709918399000,0],[1709918400000,0],[1709918401000,0],[1709918402000,0],[1709918403000,0],[1709918404000,0],[1709918405000,0],[1709918406000,0],[1709918407000,0],[1709918408000,0],[1709918409000,0],[1709918410000,0],[1709918411000,0],[1709918412000,0],[1709918413000,0],[1709918414000,0],[1709918415000,0],[1709918416000,0],[1709918417000,0],[1709918418000,0],[1709918419000,0],[1709918420000,0],[1709918421000,0],[1709918422000,0],[1709918423000,0],[1709918424000,0],[1709918425000,0],[1709918426000,0],[1709918427000,0],[1709918428000,0],[1709918429000,0],[1709918430000,0],[1709918431000,0],[1709918432000,0],[1709918433000,0],[1709918434000,0],[1709918435000,0],[1709918436000,0],[1709918437000,0],[1709918438000,0],[1709918439000,0],[1709918440000,0],[1709918441000,0],[1709918442000,0],[1709918443000,0],[1709918444000,0],[1709918445000,0],[1709918446000,0],[1709918447000,0],[1709918448000,0],[1709918449000,0],[1709918450000,0],[1709918451000,0],[1709918452000,0],[1709918453000,0],[1709918454000,0],[1709918455000,0],[1709918456000,0],[1709918457000,0],[1709918458000,0],[1709918459000,0],[1709918460000,0],[1709918461000,0],[1709918462000,0],[1709918463000,0],[1709918464000,0],[1709918465000,0],[1709918466000,0],[1709918467000,0],[1709918468000,0],[1709918469000,0],[1709918470000,0],[1709918471000,0],[1709918472000,0],[1709918473000,0],[1709918474000,0],[1709918475000,0],[1709918476000,0],[1709918477000,0],[1709918478000,0],[1709918479000,0],[1709918480000,0],[1709918481000,0],[1709918482000,0],[1709918483000,0],[1709918484000,0],[1709918485000,0],[1709918486000,0],[1709918487000,0],[1709918488000,0],[1709918489000,0],[1709918490000,0],[1709918491000,0],[1709918492000,0],[1709918493000,0],[1709918494000,0],[1709918495000,0],[1709918496000,0],[1709918497000,0],[1709918498000,0],[1709918499000,0],[1709918500000,0],[1709918501000,0],[1709918502000,0],[1709918503000,0],[1709918504000,0],[1709918505000,0],[1709918506000,0],[1709918507000,0],[1709918508000,0],[1709918509000,0],[1709918510000,0],[1709918511000,0],[1709918512000,0],[1709918513000,0],[1709918514000,0],[1709918515000,0],[1709918516000,0],[1709918517000,0],[1709918518000,0],[1709918519000,0],[1709918520000,0],[1709918521000,0],[1709918522000,0],[1709918523000,0],[1709918524000,0],[1709918525000,0],[1709918526000,0],[1709918527000,0],[1709918528000,0],[1709918529000,0],[1709918530000,0],[1709918531000,0],[1709918532000,0],[1709918533000,0],[1709918534000,0],[1709918535000,0],[1709918536000,0],[1709918537000,0],[1709918538000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
allUsersData
]
});
allUsersChart.setTitle({
text: '<span class="chart_title">Active Users along the Simulation</span>',
useHTML: true
});
allUsersData.yAxis = 1;
var responsetimeDistributionChart = new Highcharts.Chart({
chart: {
renderTo: 'responsetimeDistributionContainer',
type: 'column',
marginBottom: 60
},
credits: { enabled: false },
legend: {
enabled: true,
floating: true,
y: 5,
borderWidth: 0,
itemStyle: { fontWeight: "normal" },
symbolRadius: 0
},
title: { text: 'A title to let highcharts reserve the place for the title set later' },
navigator: {
maskInside: false
},
xAxis: {
categories: ['3', '9', '15', '21', '28', '34', '40', '46', '52', '58', '64', '71', '77', '83', '89', '95', '101', '107', '114', '120', '126', '132', '138', '144', '150', '157', '163', '169', '175', '181', '187', '193', '200', '206', '212', '218', '224', '230', '236', '243', '249', '255', '261', '267', '273', '279', '286', '292', '298', '304', '310', '316', '322', '328', '335', '341', '347', '353', '359', '365', '371', '378', '384', '390', '396', '402', '408', '414', '421', '427', '433', '439', '445', '451', '457', '464', '470', '476', '482', '488', '494', '500', '507', '513', '519', '525', '531', '537', '543', '550', '556', '562', '568', '574', '580', '586', '593', '599', '605', '611'],
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: [
54.19,2.47,0.44,0.13,0.07,0.05,0.05,0.04,0.04,0.02,0.02,0.02,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.0,0.0,0.01,0.0,0.01,0.01,0.01,0.01,0.02,0.01,0.01,0.01,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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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: [
41.04,0.43,0.08,0.02,0.01,0.01,0.01,0.0,0.0,0.0,0.01,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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([[1709918294,[12,28,37,49,50,52,54,57,64,66]],[1709918295,[5,5,5,5,5,5,5,5,5,5]],[1709918296,[9,16,25,37,38,41,43,48,52,53]],[1709918297,[5,5,5,5,5,5,5,5,5,5]],[1709918298,[0,2,8,21,26,27,33,39,41,43]],[1709918299,[7,7,8,8,8,8,8,8,8,9]],[1709918300,[4,4,5,5,6,6,6,6,6,6]],[1709918301,[4,4,7,8,8,8,9,9,9,9]],[1709918302,[3,4,4,5,5,5,5,5,5,6]],[1709918303,[3,4,6,11,11,11,11,11,12,13]],[1709918304,[3,4,4,5,6,7,8,11,14,15]],[1709918305,[3,4,4,4,5,5,8,8,16,18]],[1709918306,[3,4,4,4,5,5,5,5,6,6]],[1709918307,[3,4,4,4,5,5,5,6,7,7]],[1709918308,[3,4,4,5,6,6,8,10,30,38]],[1709918309,[3,4,4,4,5,6,6,7,8,9]],[1709918310,[3,3,4,4,5,5,6,12,22,23]],[1709918311,[3,3,4,5,5,6,6,7,9,10]],[1709918312,[3,3,4,6,6,7,7,8,12,14]],[1709918313,[3,3,4,4,5,5,5,6,7,7]],[1709918314,[2,3,4,5,6,8,10,11,14,14]],[1709918315,[2,3,3,4,4,4,4,5,6,7]],[1709918316,[2,3,3,4,4,5,6,8,11,12]],[1709918317,[2,3,3,4,4,5,5,6,10,15]],[1709918318,[2,3,3,4,4,4,4,5,5,5]],[1709918319,[2,3,3,4,4,4,4,5,8,11]],[1709918320,[2,3,3,4,4,4,5,5,9,13]],[1709918321,[2,3,3,4,4,4,6,7,10,13]],[1709918322,[2,3,3,4,4,5,7,10,24,37]],[1709918323,[2,3,3,4,4,4,6,7,9,11]],[1709918324,[2,2,3,3,4,4,4,5,7,7]],[1709918325,[2,3,3,4,4,4,4,5,7,13]],[1709918326,[2,3,3,4,4,4,5,5,6,6]],[1709918327,[2,3,3,4,4,5,6,8,8,11]],[1709918328,[2,2,3,3,4,4,5,9,14,15]],[1709918329,[2,2,3,3,3,3,4,5,10,10]],[1709918330,[2,2,3,3,4,4,5,8,10,11]],[1709918331,[2,2,3,4,4,4,5,5,10,11]],[1709918332,[2,3,3,4,5,5,5,8,11,13]],[1709918333,[2,3,3,4,4,5,6,29,64,75]],[1709918334,[2,2,3,4,4,5,6,7,9,10]],[1709918335,[2,2,3,4,4,4,5,6,10,11]],[1709918336,[2,2,2,3,4,4,6,8,12,13]],[1709918337,[2,2,3,3,3,3,4,4,5,5]],[1709918338,[2,2,3,4,4,5,5,13,16,19]],[1709918339,[2,3,3,3,4,4,4,5,15,23]],[1709918340,[1,3,3,3,4,4,5,6,13,16]],[1709918341,[2,3,3,4,4,4,5,7,12,14]],[1709918342,[2,2,3,3,3,4,4,4,6,11]],[1709918343,[2,2,3,3,3,4,4,5,11,13]],[1709918344,[2,2,3,3,4,4,5,5,8,9]],[1709918345,[2,2,3,3,4,4,4,5,9,11]],[1709918346,[2,2,3,4,4,4,4,5,11,13]],[1709918347,[2,2,3,4,4,4,5,5,10,16]],[1709918348,[2,2,3,4,4,4,5,7,9,13]],[1709918349,[2,2,3,3,3,3,4,4,6,7]],[1709918350,[2,2,2,3,3,4,5,7,11,12]],[1709918351,[1,2,3,3,3,3,4,5,13,16]],[1709918352,[1,2,3,3,4,4,4,6,9,9]],[1709918353,[2,2,3,3,4,4,5,6,10,10]],[1709918354,[2,2,3,3,3,4,4,6,7,8]],[1709918355,[1,2,2,3,4,4,4,5,6,9]],[1709918356,[2,2,3,4,4,4,5,7,11,13]],[1709918357,[2,2,3,3,3,4,4,4,5,5]],[1709918358,[1,2,2,3,4,4,5,5,11,14]],[1709918359,[2,2,3,3,4,4,5,8,20,26]],[1709918360,[2,2,3,3,4,4,5,6,8,9]],[1709918361,[2,2,3,3,4,4,5,6,8,11]],[1709918362,[2,2,2,3,3,3,4,6,9,12]],[1709918363,[1,2,2,3,3,4,4,5,9,10]],[1709918364,[1,2,2,3,3,4,4,7,15,21]],[1709918365,[2,2,2,3,3,3,4,5,8,10]],[1709918366,[2,2,3,3,3,4,4,5,6,8]],[1709918367,[2,2,2,3,3,3,4,5,7,14]],[1709918368,[2,2,2,3,4,4,5,8,16,31]],[1709918369,[1,2,3,3,3,4,4,6,12,16]],[1709918370,[1,2,3,4,4,5,5,7,9,12]],[1709918371,[2,2,3,4,4,5,6,8,17,17]],[1709918372,[1,2,3,3,4,4,6,8,11,14]],[1709918373,[1,2,3,3,4,4,5,6,7,8]],[1709918374,[2,2,2,3,4,4,5,6,33,40]],[1709918375,[2,2,2,4,4,5,6,9,13,21]],[1709918376,[1,2,2,3,3,3,4,5,12,17]],[1709918377,[2,2,2,3,3,3,4,4,8,10]],[1709918378,[1,2,3,3,4,4,6,9,15,18]],[1709918379,[1,2,3,4,4,4,5,7,12,16]],[1709918380,[1,2,3,4,4,4,5,6,11,14]],[1709918381,[2,2,3,4,4,4,5,7,11,14]],[1709918382,[1,2,2,3,4,4,5,7,11,13]],[1709918383,[2,2,2,3,4,4,4,5,7,10]],[1709918384,[2,2,3,3,3,4,4,7,11,12]],[1709918385,[2,2,2,3,4,4,5,6,11,17]],[1709918386,[1,2,3,4,4,4,6,8,20,24]],[1709918387,[1,2,2,3,3,4,4,5,10,15]],[1709918388,[1,2,2,3,4,4,5,6,14,16]],[1709918389,[1,2,2,3,4,4,4,5,5,6]],[1709918390,[2,2,3,4,4,5,5,6,11,12]],[1709918391,[1,2,3,3,4,4,5,6,13,18]],[1709918392,[1,2,3,3,4,4,4,5,8,11]],[1709918393,[2,2,3,4,4,5,6,9,10,15]],[1709918394,[2,2,3,3,3,4,4,5,8,12]],[1709918395,[1,2,2,3,3,4,4,6,9,11]],[1709918396,[1,2,2,3,3,4,4,5,8,10]],[1709918397,[1,2,2,3,3,4,4,5,7,9]],[1709918398,[1,2,3,4,5,7,11,38,70,74]],[1709918399,[1,2,3,3,4,4,5,6,8,11]],[1709918400,[2,2,3,4,4,5,6,8,11,14]],[1709918401,[1,2,3,4,4,5,15,24,38,45]],[1709918402,[2,2,3,4,4,5,5,6,13,16]],[1709918403,[2,2,2,4,4,4,5,7,9,11]],[1709918404,[2,2,2,4,4,4,5,6,10,11]],[1709918405,[2,2,2,3,3,3,4,4,6,6]],[1709918406,[1,2,2,3,4,4,5,8,11,12]],[1709918407,[1,2,2,3,4,4,5,8,15,25]],[1709918408,[2,2,2,3,3,4,4,5,10,12]],[1709918409,[1,2,2,3,4,4,5,9,17,21]],[1709918410,[1,2,2,3,4,4,5,6,8,9]],[1709918411,[1,2,3,4,4,5,6,8,16,22]],[1709918412,[1,2,3,4,4,5,5,6,10,13]],[1709918413,[2,2,3,4,4,4,4,6,18,28]],[1709918414,[2,2,3,4,4,5,6,9,16,23]],[1709918415,[2,2,3,4,4,5,5,6,10,13]],[1709918416,[1,2,3,4,4,4,5,5,9,10]],[1709918417,[2,2,2,3,3,4,4,5,10,14]],[1709918418,[2,2,3,4,5,5,6,9,18,20]],[1709918419,[2,2,3,4,4,5,5,8,18,21]],[1709918420,[1,3,3,4,5,6,8,11,14,17]],[1709918421,[2,2,3,4,4,5,5,7,13,26]],[1709918422,[2,2,3,4,4,5,5,7,11,15]],[1709918423,[1,3,3,4,4,5,5,5,8,13]],[1709918424,[1,3,3,4,4,5,5,7,11,16]],[1709918425,[1,2,3,4,4,5,6,7,10,13]],[1709918426,[1,2,3,4,4,5,5,5,8,11]],[1709918427,[2,2,3,4,4,5,5,6,11,14]],[1709918428,[1,2,3,5,5,6,7,8,13,14]],[1709918429,[1,2,3,3,4,4,5,5,11,15]],[1709918430,[1,2,2,2,3,3,3,5,7,10]],[1709918431,[1,2,3,4,4,5,5,6,11,12]],[1709918432,[1,2,3,4,5,6,10,31,53,58]],[1709918433,[1,2,3,4,4,4,5,6,9,13]],[1709918434,[2,2,3,4,4,4,5,7,16,25]],[1709918435,[1,2,3,3,4,4,5,5,11,16]],[1709918436,[2,2,3,4,4,5,6,7,19,42]],[1709918437,[1,2,2,3,4,4,5,6,13,18]],[1709918438,[1,2,3,3,4,4,4,6,12,17]],[1709918439,[1,2,3,4,4,4,5,6,10,15]],[1709918440,[1,3,3,4,4,5,5,6,9,12]],[1709918441,[1,2,3,4,4,4,4,5,8,14]],[1709918442,[1,2,3,4,4,4,5,6,13,15]],[1709918443,[1,2,3,4,4,4,5,7,16,39]],[1709918444,[2,2,3,4,4,5,6,7,13,17]],[1709918445,[1,2,3,3,4,4,6,9,13,16]],[1709918446,[1,2,2,3,3,3,4,5,6,15]],[1709918447,[1,2,3,4,4,4,4,5,7,11]],[1709918448,[2,2,3,4,4,4,5,7,11,14]],[1709918449,[2,2,3,4,4,4,4,6,9,14]],[1709918450,[2,2,2,4,4,4,4,5,6,8]],[1709918451,[2,2,3,4,4,4,6,7,8,12]],[1709918452,[2,2,3,4,4,4,5,6,8,12]],[1709918453,[2,2,3,4,4,4,4,6,10,14]],[1709918454,[2,2,3,4,4,4,5,6,10,12]],[1709918455,[2,2,3,4,4,4,5,7,17,22]],[1709918456,[1,2,3,4,4,5,5,7,14,19]],[1709918457,[1,2,2,3,3,4,5,6,8,13]],[1709918458,[2,2,3,4,5,5,6,8,15,19]],[1709918459,[1,2,3,4,4,5,6,8,15,17]],[1709918460,[2,2,3,3,3,4,5,6,12,17]],[1709918461,[1,2,2,3,3,4,4,6,8,9]],[1709918462,[1,2,2,3,4,4,5,6,8,12]],[1709918463,[2,2,3,6,13,26,41,58,78,102]],[1709918464,[2,2,3,4,4,5,5,7,17,20]],[1709918465,[2,2,3,4,4,5,5,7,11,12]],[1709918466,[2,2,3,4,4,4,4,6,8,10]],[1709918467,[1,2,3,4,4,4,4,5,9,12]],[1709918468,[1,2,3,4,5,5,7,9,16,20]],[1709918469,[2,2,3,4,4,4,5,7,11,14]],[1709918470,[2,2,3,4,4,4,5,6,12,20]],[1709918471,[1,2,3,4,4,5,6,7,11,17]],[1709918472,[2,2,3,4,4,5,5,7,11,17]],[1709918473,[1,2,2,3,4,4,4,6,12,18]],[1709918474,[1,2,3,4,4,4,5,6,10,18]],[1709918475,[1,2,3,3,4,4,4,5,6,8]],[1709918476,[1,2,2,3,3,4,4,6,8,12]],[1709918477,[2,2,3,4,4,5,6,7,15,19]],[1709918478,[1,2,3,108,152,172,196,234,262,276]],[1709918479,[1,2,3,41,70,101,139,176,212,219]],[1709918480,[1,2,3,4,4,5,6,277,321,331]],[1709918481,[2,3,6,64,104,137,178,213,247,256]],[1709918482,[2,2,3,4,4,5,5,6,7,434]],[1709918483,null],[1709918484,null],[1709918485,null],[1709918486,null],[1709918487,null],[1709918488,null],[1709918489,null],[1709918490,null],[1709918491,null],[1709918492,null],[1709918493,null],[1709918494,null],[1709918495,null],[1709918496,null],[1709918497,null],[1709918498,null],[1709918499,null],[1709918500,null],[1709918501,null],[1709918502,null],[1709918503,null],[1709918504,null],[1709918505,null],[1709918506,null],[1709918507,null],[1709918508,null],[1709918509,null],[1709918510,null],[1709918511,null],[1709918512,null],[1709918513,null],[1709918514,null],[1709918515,null],[1709918516,null],[1709918517,null],[1709918518,null],[1709918519,null],[1709918520,null],[1709918521,null],[1709918522,null],[1709918523,null],[1709918524,null],[1709918525,null],[1709918526,null],[1709918527,null],[1709918528,null],[1709918529,null],[1709918530,null],[1709918531,null],[1709918532,null],[1709918533,null],[1709918534,null],[1709918535,null],[1709918536,null],[1709918537,null],[1709918538,null]]);
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([[1709918294,[25,25,0]],[1709918295,[1,1,0]],[1709918296,[25,25,0]],[1709918297,[1,1,0]],[1709918298,[71,71,0]],[1709918299,[3,3,0]],[1709918300,[6,6,0]],[1709918301,[9,9,0]],[1709918302,[11,11,0]],[1709918303,[13,13,0]],[1709918304,[18,18,0]],[1709918305,[19,19,0]],[1709918306,[24,24,0]],[1709918307,[26,26,0]],[1709918308,[27,27,0]],[1709918309,[32,32,0]],[1709918310,[34,34,0]],[1709918311,[37,37,0]],[1709918312,[39,36,3]],[1709918313,[43,42,1]],[1709918314,[44,44,0]],[1709918315,[48,46,2]],[1709918316,[50,50,0]],[1709918317,[55,53,2]],[1709918318,[56,52,4]],[1709918319,[60,58,2]],[1709918320,[61,56,5]],[1709918321,[65,64,1]],[1709918322,[67,62,5]],[1709918323,[70,69,1]],[1709918324,[73,67,6]],[1709918325,[77,73,4]],[1709918326,[80,70,10]],[1709918327,[81,75,6]],[1709918328,[84,75,9]],[1709918329,[87,75,12]],[1709918330,[91,83,8]],[1709918331,[92,82,10]],[1709918332,[96,85,11]],[1709918333,[98,83,15]],[1709918334,[101,94,7]],[1709918335,[105,91,14]],[1709918336,[108,96,12]],[1709918337,[109,100,9]],[1709918338,[114,98,16]],[1709918339,[115,102,13]],[1709918340,[118,108,10]],[1709918341,[121,112,9]],[1709918342,[124,111,13]],[1709918343,[126,114,12]],[1709918344,[129,109,20]],[1709918345,[133,114,19]],[1709918346,[134,118,16]],[1709918347,[138,117,21]],[1709918348,[141,116,25]],[1709918349,[143,119,24]],[1709918350,[146,130,16]],[1709918351,[149,125,24]],[1709918352,[152,136,16]],[1709918353,[155,126,29]],[1709918354,[157,134,23]],[1709918355,[160,136,24]],[1709918356,[164,148,16]],[1709918357,[165,140,25]],[1709918358,[170,131,39]],[1709918359,[172,142,30]],[1709918360,[174,146,28]],[1709918361,[176,156,20]],[1709918362,[181,154,27]],[1709918363,[183,157,26]],[1709918364,[185,163,22]],[1709918365,[189,166,23]],[1709918366,[191,159,32]],[1709918367,[194,157,37]],[1709918368,[196,170,26]],[1709918369,[200,163,37]],[1709918370,[202,172,30]],[1709918371,[206,183,23]],[1709918372,[207,177,30]],[1709918373,[212,184,28]],[1709918374,[213,179,34]],[1709918375,[217,185,32]],[1709918376,[219,178,41]],[1709918377,[223,189,34]],[1709918378,[224,200,24]],[1709918379,[228,198,30]],[1709918380,[230,186,44]],[1709918381,[234,193,41]],[1709918382,[235,200,35]],[1709918383,[239,200,39]],[1709918384,[242,208,34]],[1709918385,[244,211,33]],[1709918386,[248,212,36]],[1709918387,[251,213,38]],[1709918388,[252,211,41]],[1709918389,[256,219,37]],[1709918390,[259,217,42]],[1709918391,[262,227,35]],[1709918392,[265,229,36]],[1709918393,[266,233,33]],[1709918394,[270,235,35]],[1709918395,[272,235,37]],[1709918396,[275,240,35]],[1709918397,[279,228,51]],[1709918398,[281,237,44]],[1709918399,[284,236,48]],[1709918400,[286,241,45]],[1709918401,[290,238,52]],[1709918402,[291,245,46]],[1709918403,[296,245,51]],[1709918404,[298,250,48]],[1709918405,[300,244,56]],[1709918406,[304,258,46]],[1709918407,[306,258,48]],[1709918408,[310,263,47]],[1709918409,[312,267,45]],[1709918410,[314,263,51]],[1709918411,[319,268,51]],[1709918412,[320,281,39]],[1709918413,[323,282,41]],[1709918414,[326,274,52]],[1709918415,[329,290,39]],[1709918416,[332,274,58]],[1709918417,[334,276,58]],[1709918418,[338,294,44]],[1709918419,[340,296,44]],[1709918420,[340,304,36]],[1709918421,[340,279,61]],[1709918422,[340,285,55]],[1709918423,[340,284,56]],[1709918424,[340,279,61]],[1709918425,[340,285,55]],[1709918426,[340,294,46]],[1709918427,[340,275,65]],[1709918428,[340,285,55]],[1709918429,[340,298,42]],[1709918430,[340,306,34]],[1709918431,[340,283,57]],[1709918432,[340,281,59]],[1709918433,[340,280,60]],[1709918434,[340,286,54]],[1709918435,[340,280,60]],[1709918436,[340,299,41]],[1709918437,[340,287,53]],[1709918438,[340,282,58]],[1709918439,[340,281,59]],[1709918440,[340,285,55]],[1709918441,[340,291,49]],[1709918442,[340,298,42]],[1709918443,[340,279,61]],[1709918444,[340,292,48]],[1709918445,[340,291,49]],[1709918446,[340,274,66]],[1709918447,[340,284,56]],[1709918448,[340,296,44]],[1709918449,[340,303,37]],[1709918450,[340,302,38]],[1709918451,[340,291,49]],[1709918452,[340,279,61]],[1709918453,[340,276,64]],[1709918454,[340,289,51]],[1709918455,[340,287,53]],[1709918456,[340,268,72]],[1709918457,[340,285,55]],[1709918458,[340,286,54]],[1709918459,[340,266,74]],[1709918460,[340,275,65]],[1709918461,[340,282,58]],[1709918462,[340,278,62]],[1709918463,[340,285,55]],[1709918464,[340,289,51]],[1709918465,[340,283,57]],[1709918466,[340,293,47]],[1709918467,[340,264,76]],[1709918468,[340,270,70]],[1709918469,[340,285,55]],[1709918470,[340,275,65]],[1709918471,[340,274,66]],[1709918472,[340,288,52]],[1709918473,[340,280,60]],[1709918474,[340,266,74]],[1709918475,[340,271,69]],[1709918476,[340,273,67]],[1709918477,[340,289,51]],[1709918478,[340,280,60]],[1709918479,[340,295,45]],[1709918480,[340,265,75]],[1709918481,[340,283,57]],[1709918482,[340,103,237]],[1709918483,[340,0,340]],[1709918484,[340,0,340]],[1709918485,[340,0,340]],[1709918486,[340,0,340]],[1709918487,[340,0,340]],[1709918488,[340,0,340]],[1709918489,[340,0,340]],[1709918490,[340,0,340]],[1709918491,[340,0,340]],[1709918492,[340,0,340]],[1709918493,[340,0,340]],[1709918494,[340,0,340]],[1709918495,[340,0,340]],[1709918496,[340,0,340]],[1709918497,[340,0,340]],[1709918498,[340,0,340]],[1709918499,[340,0,340]],[1709918500,[340,0,340]],[1709918501,[340,0,340]],[1709918502,[340,0,340]],[1709918503,[340,0,340]],[1709918504,[340,0,340]],[1709918505,[340,0,340]],[1709918506,[340,0,340]],[1709918507,[340,0,340]],[1709918508,[340,0,340]],[1709918509,[340,0,340]],[1709918510,[340,0,340]],[1709918511,[340,0,340]],[1709918512,[340,0,340]],[1709918513,[340,0,340]],[1709918514,[340,0,340]],[1709918515,[340,0,340]],[1709918516,[340,0,340]],[1709918517,[340,0,340]],[1709918518,[340,0,340]],[1709918519,[340,0,340]],[1709918520,[340,0,340]],[1709918521,[340,0,340]],[1709918522,[340,0,340]],[1709918523,[340,0,340]],[1709918524,[340,0,340]],[1709918525,[340,0,340]],[1709918526,[340,0,340]],[1709918527,[340,0,340]],[1709918528,[340,0,340]],[1709918529,[340,0,340]],[1709918530,[340,0,340]],[1709918531,[340,0,340]],[1709918532,[340,0,340]],[1709918533,[340,0,340]],[1709918534,[340,0,340]],[1709918535,[340,0,340]],[1709918536,[340,0,340]],[1709918537,[340,0,340]],[1709918538,[503,0,503]]]);
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' }
},