-
Notifications
You must be signed in to change notification settings - Fork 923
/
Copy pathindex.html
1215 lines (1145 loc) · 93.4 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="shortcut icon" type="image/x-icon" href="style/favicon.ico"/>
<link href="style/style.css" rel="stylesheet" type="text/css" />
<link href="style/bootstrap.min.css" rel="stylesheet" type="text/css" />
<script src="js/jquery-3.5.1.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/gatling.js"></script>
<script src="js/menu.js"></script>
<script src="js/ellipsis.js"></script>
<script src="js/all_sessions.js"></script>
<script src="js/stats.js"></script>
<script src="js/highstock.js"></script>
<script src="js/highcharts-more.js"></script>
<script src="js/theme.js"></script>
<script src="js/unpack.js"></script>
<title>Gatling Stats - Global Information</title>
</head>
<body>
<script>
const storedTheme = localStorage.getItem('theme') || (window.matchMedia("(prefers-color-scheme: dark)").matches ? "dark" : "light");
if (storedTheme) document.documentElement.setAttribute('data-theme', storedTheme)
function toggleTheme() {
const currentTheme = document.documentElement.getAttribute("data-theme");
const targetTheme = currentTheme === "light" ? "dark" : "light";
document.documentElement.setAttribute('data-theme', targetTheme)
localStorage.setItem('theme', targetTheme);
};
</script>
<div class="app-container">
<div class="frise"></div>
<div class="head">
<div class="gatling-open-source">
<a class="gatling-logo gatling-logo-light" href="https://gatling.io" target="blank_" title="Gatling Home Page"><img alt="Gatling" src="style/logo-light.svg"/></a>
<a class="gatling-logo gatling-logo-dark" href="https://gatling.io" target="blank_" title="Gatling Home Page"><img alt="Gatling" src="style/logo-dark.svg"/></a>
<a class="gatling-documentation" href="https://gatling.io/docs/" target="_blank">Documentation</a>
</div>
<div class="nav spacer"></div>
<a class="enterprise" href="https://gatling.io/enterprise/next-step/" target="_blank"><strong>Try</strong>
<img class="logo-enterprise-light" alt="Gatling Enterprise" src="style/logo-enterprise-light.svg"/>
<img class="logo-enterprise-dark" alt="Gatling Enterprise" src="style/logo-enterprise-dark.svg"/>
</a>
<button id="theme-toggle" class="theme-toggle" type="button" onclick="toggleTheme()" aria-label="Toggle user interface mode">
<span class="toggle-dark"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-moon"><path d="M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z"></path></svg></span>
<span class="toggle-light"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-sun"><circle cx="12" cy="12" r="5"></circle><line x1="12" y1="1" x2="12" y2="3"></line><line x1="12" y1="21" x2="12" y2="23"></line><line x1="4.22" y1="4.22" x2="5.64" y2="5.64"></line><line x1="18.36" y1="18.36" x2="19.78" y2="19.78"></line><line x1="1" y1="12" x2="3" y2="12"></line><line x1="21" y1="12" x2="23" y2="12"></line><line x1="4.22" y1="19.78" x2="5.64" y2="18.36"></line><line x1="18.36" y1="5.64" x2="19.78" y2="4.22"></line></svg></span>
</button>
</div>
<div class="container details">
<div class="nav">
<ul></ul>
</div>
<div class="cadre">
<div class="content">
<div class="content-header">
<div class="onglet">
RinhaBackendCrebitosSimulation
</div>
<div class="sous-menu" id="sousMenu">
<div class="sous-menu-spacer">
<div class="item ouvert"><a href="index.html">Global</a></div>
<div class="item "><a id="details_link" href="#">Details</a></div>
</div>
</div>
</div>
<div class="content-in">
<div class="container-article">
<div class="article">
<div class="schema-container">
<div id="ranges" class="schema ranges">
</div>
<div class="schema polar">
<div id="container_number_of_requests"></div>
</div>
<div class="simulation-card">
<div class="simulation-version-information">
<span class="simulation-information-title">Gatling Version</span>
<span class="simulation-information-item">
<span class="simulation-information-label">Version: </span>
<span>3.10.3</span>
</span>
<span class="simulation-information-item">
<span class="simulation-information-label">Released: </span>
<span>2023-12-20</span>
</span>
</div>
<div id="simulation-information" class="simulation-version-information">
<span class="simulation-information-title">Run Information</span>
<div class="simulation-information-container">
<span class="simulation-information-item">
<span class="simulation-information-label">Date: </span>
<span>2024-03-09 22:33:37 GMT</span>
</span>
<span class="simulation-information-item">
<span class="simulation-information-label">Duration: </span>
<span>4m 5s </span>
</span>
<span class="simulation-tooltip simulation-information-item description" title="Description" data-content="Rinha de Backend - 2024/Q1: Crébito - luanfrj-camel">
<span class="simulation-information-label">Description: </span>
<span>Rinha de Backend - 2024/Q1: Crébito - luanfrj-camel</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">31104</td>
<td class="value error-col-3 total ko">64.684 %</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">15550</td>
<td class="value error-col-3 total ko">32.338 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">status.find.in([200, 209], 304), found 502<span class="value" style="display:none">2</span></td>
<td class="value error-col-2 total ko">1410</td>
<td class="value error-col-3 total ko">2.932 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">jmesPath(saldo).find.ConsistenciaSaldoLimite - Transação, Limite ultrapassado!<span class="value" style="display:none">3</span></td>
<td class="value error-col-2 total ko">20</td>
<td class="value error-col-3 total ko">0.042 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">jmesPath(saldo.total).find.is(0), but actually found -6<span class="value" style="display:none">4</span></td>
<td class="value error-col-2 total ko">2</td>
<td class="value error-col-3 total ko">0.004 %</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: [
[1710023617000,0],[1710023618000,0],[1710023619000,0],[1710023620000,0],[1710023621000,0],[1710023622000,1],[1710023623000,2],[1710023624000,2],[1710023625000,5],[1710023626000,4],[1710023627000,5],[1710023628000,6],[1710023629000,7],[1710023630000,8],[1710023631000,8],[1710023632000,10],[1710023633000,10],[1710023634000,12],[1710023635000,12],[1710023636000,14],[1710023637000,14],[1710023638000,15],[1710023639000,16],[1710023640000,17],[1710023641000,17],[1710023642000,19],[1710023643000,20],[1710023644000,20],[1710023645000,22],[1710023646000,22],[1710023647000,23],[1710023648000,25],[1710023649000,25],[1710023650000,26],[1710023651000,26],[1710023652000,28],[1710023653000,29],[1710023654000,30],[1710023655000,30],[1710023656000,32],[1710023657000,32],[1710023658000,33],[1710023659000,34],[1710023660000,35],[1710023661000,36],[1710023662000,37],[1710023663000,38],[1710023664000,39],[1710023665000,39],[1710023666000,41],[1710023667000,41],[1710023668000,43],[1710023669000,43],[1710023670000,44],[1710023671000,45],[1710023672000,46],[1710023673000,47],[1710023674000,48],[1710023675000,48],[1710023676000,50],[1710023677000,51],[1710023678000,52],[1710023679000,53],[1710023680000,54],[1710023681000,55],[1710023682000,57],[1710023683000,56],[1710023684000,58],[1710023685000,59],[1710023686000,59],[1710023687000,59],[1710023688000,61],[1710023689000,61],[1710023690000,63],[1710023691000,63],[1710023692000,64],[1710023693000,65],[1710023694000,66],[1710023695000,67],[1710023696000,68],[1710023697000,68],[1710023698000,70],[1710023699000,70],[1710023700000,72],[1710023701000,72],[1710023702000,73],[1710023703000,78],[1710023704000,77],[1710023705000,79],[1710023706000,77],[1710023707000,78],[1710023708000,79],[1710023709000,79],[1710023710000,82],[1710023711000,88],[1710023712000,91],[1710023713000,102],[1710023714000,109],[1710023715000,123],[1710023716000,131],[1710023717000,133],[1710023718000,104],[1710023719000,116],[1710023720000,128],[1710023721000,91],[1710023722000,91],[1710023723000,92],[1710023724000,94],[1710023725000,94],[1710023726000,95],[1710023727000,96],[1710023728000,97],[1710023729000,97],[1710023730000,99],[1710023731000,100],[1710023732000,102],[1710023733000,101],[1710023734000,103],[1710023735000,104],[1710023736000,105],[1710023737000,106],[1710023738000,106],[1710023739000,107],[1710023740000,107],[1710023741000,110],[1710023742000,110],[1710023743000,111],[1710023744000,111],[1710023745000,110],[1710023746000,111],[1710023747000,110],[1710023748000,111],[1710023749000,110],[1710023750000,112],[1710023751000,111],[1710023752000,112],[1710023753000,111],[1710023754000,112],[1710023755000,111],[1710023756000,111],[1710023757000,110],[1710023758000,111],[1710023759000,110],[1710023760000,111],[1710023761000,110],[1710023762000,111],[1710023763000,110],[1710023764000,111],[1710023765000,110],[1710023766000,111],[1710023767000,110],[1710023768000,110],[1710023769000,110],[1710023770000,110],[1710023771000,110],[1710023772000,110],[1710023773000,111],[1710023774000,111],[1710023775000,111],[1710023776000,110],[1710023777000,110],[1710023778000,110],[1710023779000,110],[1710023780000,110],[1710023781000,110],[1710023782000,110],[1710023783000,110],[1710023784000,110],[1710023785000,110],[1710023786000,110],[1710023787000,112],[1710023788000,111],[1710023789000,112],[1710023790000,110],[1710023791000,111],[1710023792000,110],[1710023793000,111],[1710023794000,110],[1710023795000,110],[1710023796000,110],[1710023797000,111],[1710023798000,110],[1710023799000,111],[1710023800000,110],[1710023801000,112],[1710023802000,111],[1710023803000,112],[1710023804000,110],[1710023805000,111],[1710023806000,110],[1710023807000,111],[1710023808000,110],[1710023809000,111],[1710023810000,110],[1710023811000,110],[1710023812000,110],[1710023813000,111],[1710023814000,110],[1710023815000,111],[1710023816000,110],[1710023817000,111],[1710023818000,110],[1710023819000,110],[1710023820000,110],[1710023821000,110],[1710023822000,110],[1710023823000,110],[1710023824000,110],[1710023825000,110],[1710023826000,110],[1710023827000,110],[1710023828000,111],[1710023829000,110],[1710023830000,111],[1710023831000,110],[1710023832000,112],[1710023833000,111],[1710023834000,112],[1710023835000,110],[1710023836000,111],[1710023837000,110],[1710023838000,111],[1710023839000,110],[1710023840000,111],[1710023841000,111],[1710023842000,111],[1710023843000,110],[1710023844000,110],[1710023845000,110],[1710023846000,110],[1710023847000,110],[1710023848000,110],[1710023849000,110],[1710023850000,110],[1710023851000,110],[1710023852000,110],[1710023853000,110],[1710023854000,110],[1710023855000,110],[1710023856000,110],[1710023857000,111],[1710023858000,111],[1710023859000,111],[1710023860000,110],[1710023861000,110],[1710023862000,108]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#68b65c',
name: 'débitos',
data: [
[1710023617000,0],[1710023618000,0],[1710023619000,0],[1710023620000,0],[1710023621000,0],[1710023622000,1],[1710023623000,2],[1710023624000,5],[1710023625000,7],[1710023626000,7],[1710023627000,9],[1710023628000,11],[1710023629000,13],[1710023630000,15],[1710023631000,16],[1710023632000,19],[1710023633000,20],[1710023634000,22],[1710023635000,24],[1710023636000,25],[1710023637000,28],[1710023638000,29],[1710023639000,31],[1710023640000,33],[1710023641000,35],[1710023642000,37],[1710023643000,38],[1710023644000,40],[1710023645000,42],[1710023646000,44],[1710023647000,46],[1710023648000,47],[1710023649000,51],[1710023650000,52],[1710023651000,54],[1710023652000,56],[1710023653000,56],[1710023654000,59],[1710023655000,60],[1710023656000,63],[1710023657000,64],[1710023658000,66],[1710023659000,68],[1710023660000,69],[1710023661000,71],[1710023662000,74],[1710023663000,74],[1710023664000,77],[1710023665000,79],[1710023666000,80],[1710023667000,82],[1710023668000,84],[1710023669000,86],[1710023670000,88],[1710023671000,89],[1710023672000,92],[1710023673000,93],[1710023674000,95],[1710023675000,97],[1710023676000,99],[1710023677000,101],[1710023678000,102],[1710023679000,105],[1710023680000,107],[1710023681000,109],[1710023682000,111],[1710023683000,112],[1710023684000,114],[1710023685000,116],[1710023686000,117],[1710023687000,119],[1710023688000,120],[1710023689000,124],[1710023690000,124],[1710023691000,126],[1710023692000,128],[1710023693000,129],[1710023694000,132],[1710023695000,133],[1710023696000,135],[1710023697000,137],[1710023698000,139],[1710023699000,141],[1710023700000,142],[1710023701000,144],[1710023702000,147],[1710023703000,160],[1710023704000,158],[1710023705000,159],[1710023706000,154],[1710023707000,156],[1710023708000,158],[1710023709000,160],[1710023710000,165],[1710023711000,175],[1710023712000,189],[1710023713000,200],[1710023714000,220],[1710023715000,240],[1710023716000,259],[1710023717000,284],[1710023718000,205],[1710023719000,230],[1710023720000,252],[1710023721000,181],[1710023722000,183],[1710023723000,184],[1710023724000,186],[1710023725000,188],[1710023726000,190],[1710023727000,192],[1710023728000,194],[1710023729000,197],[1710023730000,198],[1710023731000,202],[1710023732000,203],[1710023733000,204],[1710023734000,207],[1710023735000,209],[1710023736000,210],[1710023737000,213],[1710023738000,214],[1710023739000,218],[1710023740000,218],[1710023741000,221],[1710023742000,224],[1710023743000,225],[1710023744000,225],[1710023745000,224],[1710023746000,225],[1710023747000,224],[1710023748000,225],[1710023749000,224],[1710023750000,225],[1710023751000,224],[1710023752000,225],[1710023753000,225],[1710023754000,226],[1710023755000,225],[1710023756000,225],[1710023757000,224],[1710023758000,225],[1710023759000,222],[1710023760000,223],[1710023761000,222],[1710023762000,223],[1710023763000,221],[1710023764000,222],[1710023765000,221],[1710023766000,221],[1710023767000,220],[1710023768000,220],[1710023769000,220],[1710023770000,220],[1710023771000,220],[1710023772000,220],[1710023773000,220],[1710023774000,220],[1710023775000,220],[1710023776000,221],[1710023777000,221],[1710023778000,221],[1710023779000,220],[1710023780000,220],[1710023781000,220],[1710023782000,220],[1710023783000,220],[1710023784000,220],[1710023785000,220],[1710023786000,220],[1710023787000,221],[1710023788000,220],[1710023789000,221],[1710023790000,221],[1710023791000,222],[1710023792000,221],[1710023793000,221],[1710023794000,220],[1710023795000,220],[1710023796000,220],[1710023797000,221],[1710023798000,220],[1710023799000,221],[1710023800000,220],[1710023801000,221],[1710023802000,220],[1710023803000,221],[1710023804000,221],[1710023805000,222],[1710023806000,221],[1710023807000,221],[1710023808000,220],[1710023809000,221],[1710023810000,220],[1710023811000,221],[1710023812000,220],[1710023813000,221],[1710023814000,220],[1710023815000,222],[1710023816000,221],[1710023817000,222],[1710023818000,221],[1710023819000,221],[1710023820000,221],[1710023821000,220],[1710023822000,220],[1710023823000,220],[1710023824000,220],[1710023825000,220],[1710023826000,220],[1710023827000,220],[1710023828000,221],[1710023829000,221],[1710023830000,222],[1710023831000,221],[1710023832000,220],[1710023833000,220],[1710023834000,221],[1710023835000,220],[1710023836000,221],[1710023837000,220],[1710023838000,221],[1710023839000,220],[1710023840000,221],[1710023841000,220],[1710023842000,221],[1710023843000,221],[1710023844000,221],[1710023845000,221],[1710023846000,221],[1710023847000,221],[1710023848000,221],[1710023849000,220],[1710023850000,220],[1710023851000,220],[1710023852000,220],[1710023853000,220],[1710023854000,220],[1710023855000,220],[1710023856000,220],[1710023857000,220],[1710023858000,220],[1710023859000,220],[1710023860000,222],[1710023861000,221],[1710023862000,216]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#f15b4f',
name: 'extratos',
data: [
[1710023617000,0],[1710023618000,0],[1710023619000,0],[1710023620000,0],[1710023621000,0],[1710023622000,1],[1710023623000,2],[1710023624000,2],[1710023625000,1],[1710023626000,1],[1710023627000,1],[1710023628000,2],[1710023629000,1],[1710023630000,2],[1710023631000,2],[1710023632000,1],[1710023633000,2],[1710023634000,2],[1710023635000,2],[1710023636000,2],[1710023637000,2],[1710023638000,2],[1710023639000,2],[1710023640000,3],[1710023641000,2],[1710023642000,3],[1710023643000,2],[1710023644000,3],[1710023645000,2],[1710023646000,3],[1710023647000,3],[1710023648000,4],[1710023649000,3],[1710023650000,3],[1710023651000,3],[1710023652000,3],[1710023653000,4],[1710023654000,3],[1710023655000,3],[1710023656000,4],[1710023657000,3],[1710023658000,4],[1710023659000,4],[1710023660000,4],[1710023661000,4],[1710023662000,4],[1710023663000,4],[1710023664000,4],[1710023665000,4],[1710023666000,4],[1710023667000,4],[1710023668000,5],[1710023669000,4],[1710023670000,5],[1710023671000,5],[1710023672000,4],[1710023673000,5],[1710023674000,5],[1710023675000,5],[1710023676000,5],[1710023677000,5],[1710023678000,5],[1710023679000,5],[1710023680000,6],[1710023681000,5],[1710023682000,6],[1710023683000,5],[1710023684000,6],[1710023685000,5],[1710023686000,6],[1710023687000,6],[1710023688000,6],[1710023689000,6],[1710023690000,6],[1710023691000,6],[1710023692000,6],[1710023693000,7],[1710023694000,6],[1710023695000,6],[1710023696000,7],[1710023697000,6],[1710023698000,7],[1710023699000,7],[1710023700000,7],[1710023701000,7],[1710023702000,7],[1710023703000,8],[1710023704000,8],[1710023705000,7],[1710023706000,7],[1710023707000,7],[1710023708000,8],[1710023709000,7],[1710023710000,9],[1710023711000,9],[1710023712000,8],[1710023713000,11],[1710023714000,11],[1710023715000,15],[1710023716000,12],[1710023717000,13],[1710023718000,10],[1710023719000,11],[1710023720000,13],[1710023721000,8],[1710023722000,9],[1710023723000,8],[1710023724000,9],[1710023725000,8],[1710023726000,9],[1710023727000,9],[1710023728000,9],[1710023729000,9],[1710023730000,9],[1710023731000,9],[1710023732000,9],[1710023733000,10],[1710023734000,9],[1710023735000,9],[1710023736000,10],[1710023737000,9],[1710023738000,10],[1710023739000,10],[1710023740000,10],[1710023741000,10],[1710023742000,10],[1710023743000,10],[1710023744000,10],[1710023745000,10],[1710023746000,10],[1710023747000,10],[1710023748000,10],[1710023749000,10],[1710023750000,10],[1710023751000,10],[1710023752000,10],[1710023753000,10],[1710023754000,10],[1710023755000,10],[1710023756000,10],[1710023757000,10],[1710023758000,10],[1710023759000,10],[1710023760000,10],[1710023761000,10],[1710023762000,10],[1710023763000,10],[1710023764000,10],[1710023765000,10],[1710023766000,10],[1710023767000,10],[1710023768000,10],[1710023769000,10],[1710023770000,10],[1710023771000,10],[1710023772000,10],[1710023773000,10],[1710023774000,10],[1710023775000,10],[1710023776000,10],[1710023777000,10],[1710023778000,10],[1710023779000,10],[1710023780000,10],[1710023781000,10],[1710023782000,10],[1710023783000,10],[1710023784000,10],[1710023785000,10],[1710023786000,10],[1710023787000,10],[1710023788000,10],[1710023789000,10],[1710023790000,10],[1710023791000,10],[1710023792000,10],[1710023793000,10],[1710023794000,10],[1710023795000,10],[1710023796000,10],[1710023797000,10],[1710023798000,10],[1710023799000,10],[1710023800000,10],[1710023801000,10],[1710023802000,10],[1710023803000,10],[1710023804000,10],[1710023805000,10],[1710023806000,10],[1710023807000,10],[1710023808000,10],[1710023809000,10],[1710023810000,10],[1710023811000,10],[1710023812000,10],[1710023813000,10],[1710023814000,10],[1710023815000,10],[1710023816000,10],[1710023817000,10],[1710023818000,10],[1710023819000,10],[1710023820000,10],[1710023821000,10],[1710023822000,10],[1710023823000,10],[1710023824000,10],[1710023825000,10],[1710023826000,10],[1710023827000,10],[1710023828000,10],[1710023829000,10],[1710023830000,10],[1710023831000,10],[1710023832000,10],[1710023833000,10],[1710023834000,10],[1710023835000,10],[1710023836000,10],[1710023837000,10],[1710023838000,10],[1710023839000,10],[1710023840000,10],[1710023841000,10],[1710023842000,10],[1710023843000,10],[1710023844000,10],[1710023845000,10],[1710023846000,10],[1710023847000,10],[1710023848000,10],[1710023849000,10],[1710023850000,10],[1710023851000,10],[1710023852000,10],[1710023853000,10],[1710023854000,10],[1710023855000,10],[1710023856000,10],[1710023857000,10],[1710023858000,10],[1710023859000,10],[1710023860000,10],[1710023861000,10],[1710023862000,9]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FFDD00',
name: 'validações',
data: [
[1710023617000,0],[1710023618000,0],[1710023619000,0],[1710023620000,0],[1710023621000,5],[1710023622000,5],[1710023623000,0],[1710023624000,0],[1710023625000,0],[1710023626000,0],[1710023627000,0],[1710023628000,0],[1710023629000,0],[1710023630000,0],[1710023631000,0],[1710023632000,0],[1710023633000,0],[1710023634000,0],[1710023635000,0],[1710023636000,0],[1710023637000,0],[1710023638000,0],[1710023639000,0],[1710023640000,0],[1710023641000,0],[1710023642000,0],[1710023643000,0],[1710023644000,0],[1710023645000,0],[1710023646000,0],[1710023647000,0],[1710023648000,0],[1710023649000,0],[1710023650000,0],[1710023651000,0],[1710023652000,0],[1710023653000,0],[1710023654000,0],[1710023655000,0],[1710023656000,0],[1710023657000,0],[1710023658000,0],[1710023659000,0],[1710023660000,0],[1710023661000,0],[1710023662000,0],[1710023663000,0],[1710023664000,0],[1710023665000,0],[1710023666000,0],[1710023667000,0],[1710023668000,0],[1710023669000,0],[1710023670000,0],[1710023671000,0],[1710023672000,0],[1710023673000,0],[1710023674000,0],[1710023675000,0],[1710023676000,0],[1710023677000,0],[1710023678000,0],[1710023679000,0],[1710023680000,0],[1710023681000,0],[1710023682000,0],[1710023683000,0],[1710023684000,0],[1710023685000,0],[1710023686000,0],[1710023687000,0],[1710023688000,0],[1710023689000,0],[1710023690000,0],[1710023691000,0],[1710023692000,0],[1710023693000,0],[1710023694000,0],[1710023695000,0],[1710023696000,0],[1710023697000,0],[1710023698000,0],[1710023699000,0],[1710023700000,0],[1710023701000,0],[1710023702000,0],[1710023703000,0],[1710023704000,0],[1710023705000,0],[1710023706000,0],[1710023707000,0],[1710023708000,0],[1710023709000,0],[1710023710000,0],[1710023711000,0],[1710023712000,0],[1710023713000,0],[1710023714000,0],[1710023715000,0],[1710023716000,0],[1710023717000,0],[1710023718000,0],[1710023719000,0],[1710023720000,0],[1710023721000,0],[1710023722000,0],[1710023723000,0],[1710023724000,0],[1710023725000,0],[1710023726000,0],[1710023727000,0],[1710023728000,0],[1710023729000,0],[1710023730000,0],[1710023731000,0],[1710023732000,0],[1710023733000,0],[1710023734000,0],[1710023735000,0],[1710023736000,0],[1710023737000,0],[1710023738000,0],[1710023739000,0],[1710023740000,0],[1710023741000,0],[1710023742000,0],[1710023743000,0],[1710023744000,0],[1710023745000,0],[1710023746000,0],[1710023747000,0],[1710023748000,0],[1710023749000,0],[1710023750000,0],[1710023751000,0],[1710023752000,0],[1710023753000,0],[1710023754000,0],[1710023755000,0],[1710023756000,0],[1710023757000,0],[1710023758000,0],[1710023759000,0],[1710023760000,0],[1710023761000,0],[1710023762000,0],[1710023763000,0],[1710023764000,0],[1710023765000,0],[1710023766000,0],[1710023767000,0],[1710023768000,0],[1710023769000,0],[1710023770000,0],[1710023771000,0],[1710023772000,0],[1710023773000,0],[1710023774000,0],[1710023775000,0],[1710023776000,0],[1710023777000,0],[1710023778000,0],[1710023779000,0],[1710023780000,0],[1710023781000,0],[1710023782000,0],[1710023783000,0],[1710023784000,0],[1710023785000,0],[1710023786000,0],[1710023787000,0],[1710023788000,0],[1710023789000,0],[1710023790000,0],[1710023791000,0],[1710023792000,0],[1710023793000,0],[1710023794000,0],[1710023795000,0],[1710023796000,0],[1710023797000,0],[1710023798000,0],[1710023799000,0],[1710023800000,0],[1710023801000,0],[1710023802000,0],[1710023803000,0],[1710023804000,0],[1710023805000,0],[1710023806000,0],[1710023807000,0],[1710023808000,0],[1710023809000,0],[1710023810000,0],[1710023811000,0],[1710023812000,0],[1710023813000,0],[1710023814000,0],[1710023815000,0],[1710023816000,0],[1710023817000,0],[1710023818000,0],[1710023819000,0],[1710023820000,0],[1710023821000,0],[1710023822000,0],[1710023823000,0],[1710023824000,0],[1710023825000,0],[1710023826000,0],[1710023827000,0],[1710023828000,0],[1710023829000,0],[1710023830000,0],[1710023831000,0],[1710023832000,0],[1710023833000,0],[1710023834000,0],[1710023835000,0],[1710023836000,0],[1710023837000,0],[1710023838000,0],[1710023839000,0],[1710023840000,0],[1710023841000,0],[1710023842000,0],[1710023843000,0],[1710023844000,0],[1710023845000,0],[1710023846000,0],[1710023847000,0],[1710023848000,0],[1710023849000,0],[1710023850000,0],[1710023851000,0],[1710023852000,0],[1710023853000,0],[1710023854000,0],[1710023855000,0],[1710023856000,0],[1710023857000,0],[1710023858000,0],[1710023859000,0],[1710023860000,0],[1710023861000,0],[1710023862000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00D5FF',
name: 'validação HTTP 404',
data: [
[1710023617000,0],[1710023618000,0],[1710023619000,0],[1710023620000,0],[1710023621000,1],[1710023622000,1],[1710023623000,0],[1710023624000,0],[1710023625000,0],[1710023626000,0],[1710023627000,0],[1710023628000,0],[1710023629000,0],[1710023630000,0],[1710023631000,0],[1710023632000,0],[1710023633000,0],[1710023634000,0],[1710023635000,0],[1710023636000,0],[1710023637000,0],[1710023638000,0],[1710023639000,0],[1710023640000,0],[1710023641000,0],[1710023642000,0],[1710023643000,0],[1710023644000,0],[1710023645000,0],[1710023646000,0],[1710023647000,0],[1710023648000,0],[1710023649000,0],[1710023650000,0],[1710023651000,0],[1710023652000,0],[1710023653000,0],[1710023654000,0],[1710023655000,0],[1710023656000,0],[1710023657000,0],[1710023658000,0],[1710023659000,0],[1710023660000,0],[1710023661000,0],[1710023662000,0],[1710023663000,0],[1710023664000,0],[1710023665000,0],[1710023666000,0],[1710023667000,0],[1710023668000,0],[1710023669000,0],[1710023670000,0],[1710023671000,0],[1710023672000,0],[1710023673000,0],[1710023674000,0],[1710023675000,0],[1710023676000,0],[1710023677000,0],[1710023678000,0],[1710023679000,0],[1710023680000,0],[1710023681000,0],[1710023682000,0],[1710023683000,0],[1710023684000,0],[1710023685000,0],[1710023686000,0],[1710023687000,0],[1710023688000,0],[1710023689000,0],[1710023690000,0],[1710023691000,0],[1710023692000,0],[1710023693000,0],[1710023694000,0],[1710023695000,0],[1710023696000,0],[1710023697000,0],[1710023698000,0],[1710023699000,0],[1710023700000,0],[1710023701000,0],[1710023702000,0],[1710023703000,0],[1710023704000,0],[1710023705000,0],[1710023706000,0],[1710023707000,0],[1710023708000,0],[1710023709000,0],[1710023710000,0],[1710023711000,0],[1710023712000,0],[1710023713000,0],[1710023714000,0],[1710023715000,0],[1710023716000,0],[1710023717000,0],[1710023718000,0],[1710023719000,0],[1710023720000,0],[1710023721000,0],[1710023722000,0],[1710023723000,0],[1710023724000,0],[1710023725000,0],[1710023726000,0],[1710023727000,0],[1710023728000,0],[1710023729000,0],[1710023730000,0],[1710023731000,0],[1710023732000,0],[1710023733000,0],[1710023734000,0],[1710023735000,0],[1710023736000,0],[1710023737000,0],[1710023738000,0],[1710023739000,0],[1710023740000,0],[1710023741000,0],[1710023742000,0],[1710023743000,0],[1710023744000,0],[1710023745000,0],[1710023746000,0],[1710023747000,0],[1710023748000,0],[1710023749000,0],[1710023750000,0],[1710023751000,0],[1710023752000,0],[1710023753000,0],[1710023754000,0],[1710023755000,0],[1710023756000,0],[1710023757000,0],[1710023758000,0],[1710023759000,0],[1710023760000,0],[1710023761000,0],[1710023762000,0],[1710023763000,0],[1710023764000,0],[1710023765000,0],[1710023766000,0],[1710023767000,0],[1710023768000,0],[1710023769000,0],[1710023770000,0],[1710023771000,0],[1710023772000,0],[1710023773000,0],[1710023774000,0],[1710023775000,0],[1710023776000,0],[1710023777000,0],[1710023778000,0],[1710023779000,0],[1710023780000,0],[1710023781000,0],[1710023782000,0],[1710023783000,0],[1710023784000,0],[1710023785000,0],[1710023786000,0],[1710023787000,0],[1710023788000,0],[1710023789000,0],[1710023790000,0],[1710023791000,0],[1710023792000,0],[1710023793000,0],[1710023794000,0],[1710023795000,0],[1710023796000,0],[1710023797000,0],[1710023798000,0],[1710023799000,0],[1710023800000,0],[1710023801000,0],[1710023802000,0],[1710023803000,0],[1710023804000,0],[1710023805000,0],[1710023806000,0],[1710023807000,0],[1710023808000,0],[1710023809000,0],[1710023810000,0],[1710023811000,0],[1710023812000,0],[1710023813000,0],[1710023814000,0],[1710023815000,0],[1710023816000,0],[1710023817000,0],[1710023818000,0],[1710023819000,0],[1710023820000,0],[1710023821000,0],[1710023822000,0],[1710023823000,0],[1710023824000,0],[1710023825000,0],[1710023826000,0],[1710023827000,0],[1710023828000,0],[1710023829000,0],[1710023830000,0],[1710023831000,0],[1710023832000,0],[1710023833000,0],[1710023834000,0],[1710023835000,0],[1710023836000,0],[1710023837000,0],[1710023838000,0],[1710023839000,0],[1710023840000,0],[1710023841000,0],[1710023842000,0],[1710023843000,0],[1710023844000,0],[1710023845000,0],[1710023846000,0],[1710023847000,0],[1710023848000,0],[1710023849000,0],[1710023850000,0],[1710023851000,0],[1710023852000,0],[1710023853000,0],[1710023854000,0],[1710023855000,0],[1710023856000,0],[1710023857000,0],[1710023858000,0],[1710023859000,0],[1710023860000,0],[1710023861000,0],[1710023862000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00FF00',
name: 'validação concorrência saldo - 0',
data: [
[1710023617000,0],[1710023618000,0],[1710023619000,0],[1710023620000,1],[1710023621000,0],[1710023622000,0],[1710023623000,0],[1710023624000,0],[1710023625000,0],[1710023626000,0],[1710023627000,0],[1710023628000,0],[1710023629000,0],[1710023630000,0],[1710023631000,0],[1710023632000,0],[1710023633000,0],[1710023634000,0],[1710023635000,0],[1710023636000,0],[1710023637000,0],[1710023638000,0],[1710023639000,0],[1710023640000,0],[1710023641000,0],[1710023642000,0],[1710023643000,0],[1710023644000,0],[1710023645000,0],[1710023646000,0],[1710023647000,0],[1710023648000,0],[1710023649000,0],[1710023650000,0],[1710023651000,0],[1710023652000,0],[1710023653000,0],[1710023654000,0],[1710023655000,0],[1710023656000,0],[1710023657000,0],[1710023658000,0],[1710023659000,0],[1710023660000,0],[1710023661000,0],[1710023662000,0],[1710023663000,0],[1710023664000,0],[1710023665000,0],[1710023666000,0],[1710023667000,0],[1710023668000,0],[1710023669000,0],[1710023670000,0],[1710023671000,0],[1710023672000,0],[1710023673000,0],[1710023674000,0],[1710023675000,0],[1710023676000,0],[1710023677000,0],[1710023678000,0],[1710023679000,0],[1710023680000,0],[1710023681000,0],[1710023682000,0],[1710023683000,0],[1710023684000,0],[1710023685000,0],[1710023686000,0],[1710023687000,0],[1710023688000,0],[1710023689000,0],[1710023690000,0],[1710023691000,0],[1710023692000,0],[1710023693000,0],[1710023694000,0],[1710023695000,0],[1710023696000,0],[1710023697000,0],[1710023698000,0],[1710023699000,0],[1710023700000,0],[1710023701000,0],[1710023702000,0],[1710023703000,0],[1710023704000,0],[1710023705000,0],[1710023706000,0],[1710023707000,0],[1710023708000,0],[1710023709000,0],[1710023710000,0],[1710023711000,0],[1710023712000,0],[1710023713000,0],[1710023714000,0],[1710023715000,0],[1710023716000,0],[1710023717000,0],[1710023718000,0],[1710023719000,0],[1710023720000,0],[1710023721000,0],[1710023722000,0],[1710023723000,0],[1710023724000,0],[1710023725000,0],[1710023726000,0],[1710023727000,0],[1710023728000,0],[1710023729000,0],[1710023730000,0],[1710023731000,0],[1710023732000,0],[1710023733000,0],[1710023734000,0],[1710023735000,0],[1710023736000,0],[1710023737000,0],[1710023738000,0],[1710023739000,0],[1710023740000,0],[1710023741000,0],[1710023742000,0],[1710023743000,0],[1710023744000,0],[1710023745000,0],[1710023746000,0],[1710023747000,0],[1710023748000,0],[1710023749000,0],[1710023750000,0],[1710023751000,0],[1710023752000,0],[1710023753000,0],[1710023754000,0],[1710023755000,0],[1710023756000,0],[1710023757000,0],[1710023758000,0],[1710023759000,0],[1710023760000,0],[1710023761000,0],[1710023762000,0],[1710023763000,0],[1710023764000,0],[1710023765000,0],[1710023766000,0],[1710023767000,0],[1710023768000,0],[1710023769000,0],[1710023770000,0],[1710023771000,0],[1710023772000,0],[1710023773000,0],[1710023774000,0],[1710023775000,0],[1710023776000,0],[1710023777000,0],[1710023778000,0],[1710023779000,0],[1710023780000,0],[1710023781000,0],[1710023782000,0],[1710023783000,0],[1710023784000,0],[1710023785000,0],[1710023786000,0],[1710023787000,0],[1710023788000,0],[1710023789000,0],[1710023790000,0],[1710023791000,0],[1710023792000,0],[1710023793000,0],[1710023794000,0],[1710023795000,0],[1710023796000,0],[1710023797000,0],[1710023798000,0],[1710023799000,0],[1710023800000,0],[1710023801000,0],[1710023802000,0],[1710023803000,0],[1710023804000,0],[1710023805000,0],[1710023806000,0],[1710023807000,0],[1710023808000,0],[1710023809000,0],[1710023810000,0],[1710023811000,0],[1710023812000,0],[1710023813000,0],[1710023814000,0],[1710023815000,0],[1710023816000,0],[1710023817000,0],[1710023818000,0],[1710023819000,0],[1710023820000,0],[1710023821000,0],[1710023822000,0],[1710023823000,0],[1710023824000,0],[1710023825000,0],[1710023826000,0],[1710023827000,0],[1710023828000,0],[1710023829000,0],[1710023830000,0],[1710023831000,0],[1710023832000,0],[1710023833000,0],[1710023834000,0],[1710023835000,0],[1710023836000,0],[1710023837000,0],[1710023838000,0],[1710023839000,0],[1710023840000,0],[1710023841000,0],[1710023842000,0],[1710023843000,0],[1710023844000,0],[1710023845000,0],[1710023846000,0],[1710023847000,0],[1710023848000,0],[1710023849000,0],[1710023850000,0],[1710023851000,0],[1710023852000,0],[1710023853000,0],[1710023854000,0],[1710023855000,0],[1710023856000,0],[1710023857000,0],[1710023858000,0],[1710023859000,0],[1710023860000,0],[1710023861000,0],[1710023862000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#9D00FF',
name: 'validação concorrência transações - c',
data: [
[1710023617000,0],[1710023618000,0],[1710023619000,25],[1710023620000,25],[1710023621000,0],[1710023622000,0],[1710023623000,0],[1710023624000,0],[1710023625000,0],[1710023626000,0],[1710023627000,0],[1710023628000,0],[1710023629000,0],[1710023630000,0],[1710023631000,0],[1710023632000,0],[1710023633000,0],[1710023634000,0],[1710023635000,0],[1710023636000,0],[1710023637000,0],[1710023638000,0],[1710023639000,0],[1710023640000,0],[1710023641000,0],[1710023642000,0],[1710023643000,0],[1710023644000,0],[1710023645000,0],[1710023646000,0],[1710023647000,0],[1710023648000,0],[1710023649000,0],[1710023650000,0],[1710023651000,0],[1710023652000,0],[1710023653000,0],[1710023654000,0],[1710023655000,0],[1710023656000,0],[1710023657000,0],[1710023658000,0],[1710023659000,0],[1710023660000,0],[1710023661000,0],[1710023662000,0],[1710023663000,0],[1710023664000,0],[1710023665000,0],[1710023666000,0],[1710023667000,0],[1710023668000,0],[1710023669000,0],[1710023670000,0],[1710023671000,0],[1710023672000,0],[1710023673000,0],[1710023674000,0],[1710023675000,0],[1710023676000,0],[1710023677000,0],[1710023678000,0],[1710023679000,0],[1710023680000,0],[1710023681000,0],[1710023682000,0],[1710023683000,0],[1710023684000,0],[1710023685000,0],[1710023686000,0],[1710023687000,0],[1710023688000,0],[1710023689000,0],[1710023690000,0],[1710023691000,0],[1710023692000,0],[1710023693000,0],[1710023694000,0],[1710023695000,0],[1710023696000,0],[1710023697000,0],[1710023698000,0],[1710023699000,0],[1710023700000,0],[1710023701000,0],[1710023702000,0],[1710023703000,0],[1710023704000,0],[1710023705000,0],[1710023706000,0],[1710023707000,0],[1710023708000,0],[1710023709000,0],[1710023710000,0],[1710023711000,0],[1710023712000,0],[1710023713000,0],[1710023714000,0],[1710023715000,0],[1710023716000,0],[1710023717000,0],[1710023718000,0],[1710023719000,0],[1710023720000,0],[1710023721000,0],[1710023722000,0],[1710023723000,0],[1710023724000,0],[1710023725000,0],[1710023726000,0],[1710023727000,0],[1710023728000,0],[1710023729000,0],[1710023730000,0],[1710023731000,0],[1710023732000,0],[1710023733000,0],[1710023734000,0],[1710023735000,0],[1710023736000,0],[1710023737000,0],[1710023738000,0],[1710023739000,0],[1710023740000,0],[1710023741000,0],[1710023742000,0],[1710023743000,0],[1710023744000,0],[1710023745000,0],[1710023746000,0],[1710023747000,0],[1710023748000,0],[1710023749000,0],[1710023750000,0],[1710023751000,0],[1710023752000,0],[1710023753000,0],[1710023754000,0],[1710023755000,0],[1710023756000,0],[1710023757000,0],[1710023758000,0],[1710023759000,0],[1710023760000,0],[1710023761000,0],[1710023762000,0],[1710023763000,0],[1710023764000,0],[1710023765000,0],[1710023766000,0],[1710023767000,0],[1710023768000,0],[1710023769000,0],[1710023770000,0],[1710023771000,0],[1710023772000,0],[1710023773000,0],[1710023774000,0],[1710023775000,0],[1710023776000,0],[1710023777000,0],[1710023778000,0],[1710023779000,0],[1710023780000,0],[1710023781000,0],[1710023782000,0],[1710023783000,0],[1710023784000,0],[1710023785000,0],[1710023786000,0],[1710023787000,0],[1710023788000,0],[1710023789000,0],[1710023790000,0],[1710023791000,0],[1710023792000,0],[1710023793000,0],[1710023794000,0],[1710023795000,0],[1710023796000,0],[1710023797000,0],[1710023798000,0],[1710023799000,0],[1710023800000,0],[1710023801000,0],[1710023802000,0],[1710023803000,0],[1710023804000,0],[1710023805000,0],[1710023806000,0],[1710023807000,0],[1710023808000,0],[1710023809000,0],[1710023810000,0],[1710023811000,0],[1710023812000,0],[1710023813000,0],[1710023814000,0],[1710023815000,0],[1710023816000,0],[1710023817000,0],[1710023818000,0],[1710023819000,0],[1710023820000,0],[1710023821000,0],[1710023822000,0],[1710023823000,0],[1710023824000,0],[1710023825000,0],[1710023826000,0],[1710023827000,0],[1710023828000,0],[1710023829000,0],[1710023830000,0],[1710023831000,0],[1710023832000,0],[1710023833000,0],[1710023834000,0],[1710023835000,0],[1710023836000,0],[1710023837000,0],[1710023838000,0],[1710023839000,0],[1710023840000,0],[1710023841000,0],[1710023842000,0],[1710023843000,0],[1710023844000,0],[1710023845000,0],[1710023846000,0],[1710023847000,0],[1710023848000,0],[1710023849000,0],[1710023850000,0],[1710023851000,0],[1710023852000,0],[1710023853000,0],[1710023854000,0],[1710023855000,0],[1710023856000,0],[1710023857000,0],[1710023858000,0],[1710023859000,0],[1710023860000,0],[1710023861000,0],[1710023862000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FF00E1',
name: 'validação concorrência saldo - -25',
data: [
[1710023617000,0],[1710023618000,1],[1710023619000,1],[1710023620000,0],[1710023621000,0],[1710023622000,0],[1710023623000,0],[1710023624000,0],[1710023625000,0],[1710023626000,0],[1710023627000,0],[1710023628000,0],[1710023629000,0],[1710023630000,0],[1710023631000,0],[1710023632000,0],[1710023633000,0],[1710023634000,0],[1710023635000,0],[1710023636000,0],[1710023637000,0],[1710023638000,0],[1710023639000,0],[1710023640000,0],[1710023641000,0],[1710023642000,0],[1710023643000,0],[1710023644000,0],[1710023645000,0],[1710023646000,0],[1710023647000,0],[1710023648000,0],[1710023649000,0],[1710023650000,0],[1710023651000,0],[1710023652000,0],[1710023653000,0],[1710023654000,0],[1710023655000,0],[1710023656000,0],[1710023657000,0],[1710023658000,0],[1710023659000,0],[1710023660000,0],[1710023661000,0],[1710023662000,0],[1710023663000,0],[1710023664000,0],[1710023665000,0],[1710023666000,0],[1710023667000,0],[1710023668000,0],[1710023669000,0],[1710023670000,0],[1710023671000,0],[1710023672000,0],[1710023673000,0],[1710023674000,0],[1710023675000,0],[1710023676000,0],[1710023677000,0],[1710023678000,0],[1710023679000,0],[1710023680000,0],[1710023681000,0],[1710023682000,0],[1710023683000,0],[1710023684000,0],[1710023685000,0],[1710023686000,0],[1710023687000,0],[1710023688000,0],[1710023689000,0],[1710023690000,0],[1710023691000,0],[1710023692000,0],[1710023693000,0],[1710023694000,0],[1710023695000,0],[1710023696000,0],[1710023697000,0],[1710023698000,0],[1710023699000,0],[1710023700000,0],[1710023701000,0],[1710023702000,0],[1710023703000,0],[1710023704000,0],[1710023705000,0],[1710023706000,0],[1710023707000,0],[1710023708000,0],[1710023709000,0],[1710023710000,0],[1710023711000,0],[1710023712000,0],[1710023713000,0],[1710023714000,0],[1710023715000,0],[1710023716000,0],[1710023717000,0],[1710023718000,0],[1710023719000,0],[1710023720000,0],[1710023721000,0],[1710023722000,0],[1710023723000,0],[1710023724000,0],[1710023725000,0],[1710023726000,0],[1710023727000,0],[1710023728000,0],[1710023729000,0],[1710023730000,0],[1710023731000,0],[1710023732000,0],[1710023733000,0],[1710023734000,0],[1710023735000,0],[1710023736000,0],[1710023737000,0],[1710023738000,0],[1710023739000,0],[1710023740000,0],[1710023741000,0],[1710023742000,0],[1710023743000,0],[1710023744000,0],[1710023745000,0],[1710023746000,0],[1710023747000,0],[1710023748000,0],[1710023749000,0],[1710023750000,0],[1710023751000,0],[1710023752000,0],[1710023753000,0],[1710023754000,0],[1710023755000,0],[1710023756000,0],[1710023757000,0],[1710023758000,0],[1710023759000,0],[1710023760000,0],[1710023761000,0],[1710023762000,0],[1710023763000,0],[1710023764000,0],[1710023765000,0],[1710023766000,0],[1710023767000,0],[1710023768000,0],[1710023769000,0],[1710023770000,0],[1710023771000,0],[1710023772000,0],[1710023773000,0],[1710023774000,0],[1710023775000,0],[1710023776000,0],[1710023777000,0],[1710023778000,0],[1710023779000,0],[1710023780000,0],[1710023781000,0],[1710023782000,0],[1710023783000,0],[1710023784000,0],[1710023785000,0],[1710023786000,0],[1710023787000,0],[1710023788000,0],[1710023789000,0],[1710023790000,0],[1710023791000,0],[1710023792000,0],[1710023793000,0],[1710023794000,0],[1710023795000,0],[1710023796000,0],[1710023797000,0],[1710023798000,0],[1710023799000,0],[1710023800000,0],[1710023801000,0],[1710023802000,0],[1710023803000,0],[1710023804000,0],[1710023805000,0],[1710023806000,0],[1710023807000,0],[1710023808000,0],[1710023809000,0],[1710023810000,0],[1710023811000,0],[1710023812000,0],[1710023813000,0],[1710023814000,0],[1710023815000,0],[1710023816000,0],[1710023817000,0],[1710023818000,0],[1710023819000,0],[1710023820000,0],[1710023821000,0],[1710023822000,0],[1710023823000,0],[1710023824000,0],[1710023825000,0],[1710023826000,0],[1710023827000,0],[1710023828000,0],[1710023829000,0],[1710023830000,0],[1710023831000,0],[1710023832000,0],[1710023833000,0],[1710023834000,0],[1710023835000,0],[1710023836000,0],[1710023837000,0],[1710023838000,0],[1710023839000,0],[1710023840000,0],[1710023841000,0],[1710023842000,0],[1710023843000,0],[1710023844000,0],[1710023845000,0],[1710023846000,0],[1710023847000,0],[1710023848000,0],[1710023849000,0],[1710023850000,0],[1710023851000,0],[1710023852000,0],[1710023853000,0],[1710023854000,0],[1710023855000,0],[1710023856000,0],[1710023857000,0],[1710023858000,0],[1710023859000,0],[1710023860000,0],[1710023861000,0],[1710023862000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#AECAEB',
name: 'validação concorrência transações - d',
data: [
[1710023617000,25],[1710023618000,1],[1710023619000,0],[1710023620000,0],[1710023621000,0],[1710023622000,0],[1710023623000,0],[1710023624000,0],[1710023625000,0],[1710023626000,0],[1710023627000,0],[1710023628000,0],[1710023629000,0],[1710023630000,0],[1710023631000,0],[1710023632000,0],[1710023633000,0],[1710023634000,0],[1710023635000,0],[1710023636000,0],[1710023637000,0],[1710023638000,0],[1710023639000,0],[1710023640000,0],[1710023641000,0],[1710023642000,0],[1710023643000,0],[1710023644000,0],[1710023645000,0],[1710023646000,0],[1710023647000,0],[1710023648000,0],[1710023649000,0],[1710023650000,0],[1710023651000,0],[1710023652000,0],[1710023653000,0],[1710023654000,0],[1710023655000,0],[1710023656000,0],[1710023657000,0],[1710023658000,0],[1710023659000,0],[1710023660000,0],[1710023661000,0],[1710023662000,0],[1710023663000,0],[1710023664000,0],[1710023665000,0],[1710023666000,0],[1710023667000,0],[1710023668000,0],[1710023669000,0],[1710023670000,0],[1710023671000,0],[1710023672000,0],[1710023673000,0],[1710023674000,0],[1710023675000,0],[1710023676000,0],[1710023677000,0],[1710023678000,0],[1710023679000,0],[1710023680000,0],[1710023681000,0],[1710023682000,0],[1710023683000,0],[1710023684000,0],[1710023685000,0],[1710023686000,0],[1710023687000,0],[1710023688000,0],[1710023689000,0],[1710023690000,0],[1710023691000,0],[1710023692000,0],[1710023693000,0],[1710023694000,0],[1710023695000,0],[1710023696000,0],[1710023697000,0],[1710023698000,0],[1710023699000,0],[1710023700000,0],[1710023701000,0],[1710023702000,0],[1710023703000,0],[1710023704000,0],[1710023705000,0],[1710023706000,0],[1710023707000,0],[1710023708000,0],[1710023709000,0],[1710023710000,0],[1710023711000,0],[1710023712000,0],[1710023713000,0],[1710023714000,0],[1710023715000,0],[1710023716000,0],[1710023717000,0],[1710023718000,0],[1710023719000,0],[1710023720000,0],[1710023721000,0],[1710023722000,0],[1710023723000,0],[1710023724000,0],[1710023725000,0],[1710023726000,0],[1710023727000,0],[1710023728000,0],[1710023729000,0],[1710023730000,0],[1710023731000,0],[1710023732000,0],[1710023733000,0],[1710023734000,0],[1710023735000,0],[1710023736000,0],[1710023737000,0],[1710023738000,0],[1710023739000,0],[1710023740000,0],[1710023741000,0],[1710023742000,0],[1710023743000,0],[1710023744000,0],[1710023745000,0],[1710023746000,0],[1710023747000,0],[1710023748000,0],[1710023749000,0],[1710023750000,0],[1710023751000,0],[1710023752000,0],[1710023753000,0],[1710023754000,0],[1710023755000,0],[1710023756000,0],[1710023757000,0],[1710023758000,0],[1710023759000,0],[1710023760000,0],[1710023761000,0],[1710023762000,0],[1710023763000,0],[1710023764000,0],[1710023765000,0],[1710023766000,0],[1710023767000,0],[1710023768000,0],[1710023769000,0],[1710023770000,0],[1710023771000,0],[1710023772000,0],[1710023773000,0],[1710023774000,0],[1710023775000,0],[1710023776000,0],[1710023777000,0],[1710023778000,0],[1710023779000,0],[1710023780000,0],[1710023781000,0],[1710023782000,0],[1710023783000,0],[1710023784000,0],[1710023785000,0],[1710023786000,0],[1710023787000,0],[1710023788000,0],[1710023789000,0],[1710023790000,0],[1710023791000,0],[1710023792000,0],[1710023793000,0],[1710023794000,0],[1710023795000,0],[1710023796000,0],[1710023797000,0],[1710023798000,0],[1710023799000,0],[1710023800000,0],[1710023801000,0],[1710023802000,0],[1710023803000,0],[1710023804000,0],[1710023805000,0],[1710023806000,0],[1710023807000,0],[1710023808000,0],[1710023809000,0],[1710023810000,0],[1710023811000,0],[1710023812000,0],[1710023813000,0],[1710023814000,0],[1710023815000,0],[1710023816000,0],[1710023817000,0],[1710023818000,0],[1710023819000,0],[1710023820000,0],[1710023821000,0],[1710023822000,0],[1710023823000,0],[1710023824000,0],[1710023825000,0],[1710023826000,0],[1710023827000,0],[1710023828000,0],[1710023829000,0],[1710023830000,0],[1710023831000,0],[1710023832000,0],[1710023833000,0],[1710023834000,0],[1710023835000,0],[1710023836000,0],[1710023837000,0],[1710023838000,0],[1710023839000,0],[1710023840000,0],[1710023841000,0],[1710023842000,0],[1710023843000,0],[1710023844000,0],[1710023845000,0],[1710023846000,0],[1710023847000,0],[1710023848000,0],[1710023849000,0],[1710023850000,0],[1710023851000,0],[1710023852000,0],[1710023853000,0],[1710023854000,0],[1710023855000,0],[1710023856000,0],[1710023857000,0],[1710023858000,0],[1710023859000,0],[1710023860000,0],[1710023861000,0],[1710023862000,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: ['173', '520', '866', '1212', '1559', '1905', '2252', '2598', '2945', '3291', '3637', '3984', '4330', '4677', '5023', '5370', '5716', '6062', '6409', '6755', '7102', '7448', '7794', '8141', '8487', '8834', '9180', '9527', '9873', '10219', '10566', '10912', '11259', '11605', '11951', '12298', '12644', '12991', '13337', '13684', '14030', '14376', '14723', '15069', '15416', '15762', '16109', '16455', '16801', '17148', '17494', '17841', '18187', '18533', '18880', '19226', '19573', '19919', '20266', '20612', '20958', '21305', '21651', '21998', '22344', '22691', '23037', '23383', '23730', '24076', '24423', '24769', '25115', '25462', '25808', '26155', '26501', '26848', '27194', '27540', '27887', '28233', '28580', '28926', '29272', '29619', '29965', '30312', '30658', '31005', '31351', '31697', '32044', '32390', '32737', '33083', '33430', '33776', '34122', '34469'],
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: [
20.57,0.79,0.22,0.18,0.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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: [
77.82,0.16,0.08,0.05,0.01,0.0,0.0,0.0,0.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
],
tooltip: { yDecimals: 0, ySuffix: 'ms' }
}
]
});
responsetimeDistributionChart.setTitle({
text: '<span class="chart_title">Response Time Distribution</span>',
useHTML: true
});
var responsetimepercentilesovertimeokPercentiles = unpack([[1710023617,[477,573,786,870,877,913,957,957,1431,1581]],[1710023618,null],[1710023619,[12,12,12,12,12,12,12,12,12,12]],[1710023620,[33,107,198,285,285,293,349,383,383,384]],[1710023621,null],[1710023622,[2,10,24,76,81,92,103,107,164,180]],[1710023623,[13,13,14,16,16,16,17,17,17,18]],[1710023624,[8,9,14,19,20,20,20,20,20,21]],[1710023625,[8,9,12,17,18,20,21,23,24,25]],[1710023626,[6,8,8,9,10,11,12,13,13,14]],[1710023627,[6,7,7,9,10,11,13,14,15,16]],[1710023628,[6,7,7,8,9,10,13,25,83,98]],[1710023629,[6,6,7,7,7,8,10,11,15,16]],[1710023630,[6,6,7,7,7,7,8,8,12,14]],[1710023631,[5,6,7,8,8,8,9,10,11,12]],[1710023632,[5,6,6,7,7,8,8,11,23,28]],[1710023633,[5,6,6,7,7,8,8,9,23,30]],[1710023634,[5,6,6,7,7,8,8,9,9,9]],[1710023635,[4,5,6,7,7,7,8,9,22,30]],[1710023636,[4,5,6,6,7,7,7,8,11,13]],[1710023637,[4,5,6,6,7,7,8,8,9,10]],[1710023638,[4,4,5,6,6,6,6,8,15,16]],[1710023639,[3,4,5,5,5,5,6,7,7,7]],[1710023640,[3,4,5,5,5,5,6,6,11,16]],[1710023641,[3,4,4,5,5,5,6,6,8,8]],[1710023642,[3,4,4,4,5,5,5,5,7,9]],[1710023643,[2,4,4,6,8,8,14,35,45,56]],[1710023644,[3,4,5,8,10,28,30,51,53,54]],[1710023645,[3,3,4,4,5,6,7,32,56,60]],[1710023646,[3,4,4,5,5,5,15,34,47,51]],[1710023647,[2,4,5,10,15,29,41,50,58,61]],[1710023648,[3,3,4,20,24,33,46,60,79,83]],[1710023649,[2,3,4,4,5,6,8,28,59,59]],[1710023650,[2,3,3,4,4,4,4,5,8,19]],[1710023651,[2,3,3,4,4,4,4,5,11,19]],[1710023652,[2,3,3,4,4,4,5,6,20,43]],[1710023653,[2,3,3,3,3,4,4,12,36,45]],[1710023654,[2,3,3,3,3,4,4,4,5,5]],[1710023655,[2,3,3,4,4,4,6,15,49,49]],[1710023656,[1,2,3,3,3,4,4,4,5,5]],[1710023657,[1,2,3,4,4,4,5,25,50,60]],[1710023658,[2,3,3,3,4,4,4,4,4,5]],[1710023659,[1,3,3,4,4,5,9,33,56,65]],[1710023660,[1,2,3,3,3,3,3,4,4,4]],[1710023661,[1,2,3,3,3,3,3,4,4,5]],[1710023662,[2,2,3,3,3,3,4,24,47,55]],[1710023663,[1,2,2,3,3,3,3,3,4,4]],[1710023664,[2,2,2,3,3,3,3,4,4,4]],[1710023665,[2,2,3,3,3,3,3,4,24,43]],[1710023666,[1,2,3,3,3,3,3,4,5,30]],[1710023667,[1,2,3,3,3,3,3,4,11,26]],[1710023668,[1,2,2,3,3,3,3,3,21,39]],[1710023669,[2,2,2,3,3,3,3,3,4,15]],[1710023670,[2,2,3,3,3,3,3,4,4,15]],[1710023671,[1,2,2,3,3,3,3,3,4,6]],[1710023672,[1,2,3,3,3,3,3,3,4,4]],[1710023673,[1,2,2,3,3,3,3,4,22,37]],[1710023674,[1,2,2,3,3,3,6,34,52,65]],[1710023675,[1,2,2,3,3,3,4,17,47,59]],[1710023676,[1,2,2,3,3,4,21,38,51,58]],[1710023677,[1,2,2,2,3,3,3,4,21,33]],[1710023678,[1,2,2,2,3,3,3,3,30,48]],[1710023679,[1,2,2,3,3,3,3,3,20,31]],[1710023680,[2,2,3,4,5,20,32,44,56,57]],[1710023681,[1,2,2,3,3,3,3,3,4,4]],[1710023682,[1,2,2,3,3,3,3,3,4,5]],[1710023683,[1,2,3,3,4,7,22,40,52,60]],[1710023684,[1,2,4,22,30,40,44,53,63,67]],[1710023685,[1,2,2,18,26,34,43,52,60,77]],[1710023686,[1,2,2,2,2,2,3,3,4,4]],[1710023687,[1,2,2,2,2,2,3,3,4,6]],[1710023688,[1,2,2,2,2,2,2,3,3,4]],[1710023689,[1,2,2,2,2,2,2,3,4,14]],[1710023690,[1,2,2,10,19,27,34,48,55,57]],[1710023691,[1,2,2,2,3,3,3,7,38,51]],[1710023692,[1,2,2,2,2,3,3,3,4,17]],[1710023693,[1,2,2,2,2,2,2,3,4,4]],[1710023694,[1,2,2,2,2,2,2,3,4,4]],[1710023695,[1,2,2,3,3,3,3,7,38,50]],[1710023696,[1,2,2,2,2,2,2,3,9,28]],[1710023697,[1,1,2,2,2,2,2,3,3,4]],[1710023698,[1,1,2,2,2,2,2,3,4,4]],[1710023699,[1,2,2,2,2,2,3,3,3,4]],[1710023700,[1,2,2,2,2,2,3,9,41,54]],[1710023701,[1,2,2,2,2,3,3,3,3,7]],[1710023702,[1,2,2,3,3,4,65,128,206,265]],[1710023703,[1,38,82,133,151,169,197,236,315,341]],[1710023704,[1,7,45,84,99,117,138,167,204,360]],[1710023705,[1,2,30,60,67,80,97,118,145,190]],[1710023706,[1,1,2,9,15,20,24,30,42,48]],[1710023707,[1,1,2,2,2,2,3,3,6,10]],[1710023708,[1,2,2,2,2,2,3,5,31,44]],[1710023709,[1,2,2,14,24,32,46,56,69,82]],[1710023710,[1,15,42,67,72,81,86,97,133,158]],[1710023711,[2,45,82,143,160,184,220,263,327,366]],[1710023712,[1,63,116,240,297,363,420,460,540,603]],[1710023713,[2,109,187,323,374,509,732,1074,1176,1268]],[1710023714,[1,70,262,581,642,776,931,1157,1240,1331]],[1710023715,[1,78,398,979,1165,1238,1281,1399,1481,1522]],[1710023716,[2,52,133,857,947,1201,1284,1349,1556,1617]],[1710023717,[1,25,54,91,117,198,231,272,403,717]],[1710023718,[11,155,284,441,471,500,520,562,656,685]],[1710023719,[39,222,389,483,520,575,642,713,810,900]],[1710023720,[45,219,386,451,508,544,593,703,767,800]],[1710023721,null],[1710023722,null],[1710023723,null],[1710023724,null],[1710023725,null],[1710023726,null],[1710023727,null],[1710023728,null],[1710023729,null],[1710023730,null],[1710023731,null],[1710023732,null],[1710023733,null],[1710023734,null],[1710023735,null],[1710023736,null],[1710023737,null],[1710023738,null],[1710023739,null],[1710023740,null],[1710023741,null],[1710023742,null],[1710023743,null],[1710023744,null],[1710023745,null],[1710023746,null],[1710023747,null],[1710023748,null],[1710023749,null],[1710023750,null],[1710023751,null],[1710023752,null],[1710023753,null],[1710023754,null],[1710023755,null],[1710023756,null],[1710023757,null],[1710023758,null],[1710023759,null],[1710023760,null],[1710023761,null],[1710023762,null],[1710023763,null],[1710023764,null],[1710023765,null],[1710023766,null],[1710023767,null],[1710023768,null],[1710023769,null],[1710023770,null],[1710023771,null],[1710023772,null],[1710023773,null],[1710023774,null],[1710023775,null],[1710023776,null],[1710023777,null],[1710023778,null],[1710023779,null],[1710023780,null],[1710023781,null],[1710023782,null],[1710023783,null],[1710023784,null],[1710023785,null],[1710023786,null],[1710023787,null],[1710023788,null],[1710023789,null],[1710023790,null],[1710023791,null],[1710023792,null],[1710023793,null],[1710023794,null],[1710023795,null],[1710023796,null],[1710023797,null],[1710023798,null],[1710023799,null],[1710023800,null],[1710023801,null],[1710023802,null],[1710023803,null],[1710023804,null],[1710023805,null],[1710023806,null],[1710023807,null],[1710023808,null],[1710023809,null],[1710023810,null],[1710023811,null],[1710023812,null],[1710023813,null],[1710023814,null],[1710023815,null],[1710023816,null],[1710023817,null],[1710023818,null],[1710023819,null],[1710023820,null],[1710023821,null],[1710023822,null],[1710023823,null],[1710023824,null],[1710023825,null],[1710023826,null],[1710023827,null],[1710023828,null],[1710023829,null],[1710023830,null],[1710023831,null],[1710023832,null],[1710023833,null],[1710023834,null],[1710023835,null],[1710023836,null],[1710023837,null],[1710023838,null],[1710023839,null],[1710023840,null],[1710023841,null],[1710023842,null],[1710023843,null],[1710023844,null],[1710023845,null],[1710023846,null],[1710023847,null],[1710023848,null],[1710023849,null],[1710023850,null],[1710023851,null],[1710023852,null],[1710023853,null],[1710023854,null],[1710023855,null],[1710023856,null],[1710023857,null],[1710023858,null],[1710023859,null],[1710023860,null],[1710023861,null],[1710023862,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([[1710023617,[25,25,0]],[1710023618,[0,0,0]],[1710023619,[1,1,0]],[1710023620,[25,25,0]],[1710023621,[1,0,1]],[1710023622,[71,70,1]],[1710023623,[3,3,0]],[1710023624,[6,6,0]],[1710023625,[9,9,0]],[1710023626,[11,11,0]],[1710023627,[13,13,0]],[1710023628,[18,18,0]],[1710023629,[19,19,0]],[1710023630,[24,24,0]],[1710023631,[26,26,0]],[1710023632,[27,27,0]],[1710023633,[32,32,0]],[1710023634,[34,34,0]],[1710023635,[37,37,0]],[1710023636,[39,39,0]],[1710023637,[43,43,0]],[1710023638,[45,45,0]],[1710023639,[48,48,0]],[1710023640,[50,50,0]],[1710023641,[54,54,0]],[1710023642,[56,56,0]],[1710023643,[60,60,0]],[1710023644,[61,61,0]],[1710023645,[65,65,0]],[1710023646,[67,67,0]],[1710023647,[70,70,0]],[1710023648,[74,73,1]],[1710023649,[76,76,0]],[1710023650,[80,80,0]],[1710023651,[81,81,0]],[1710023652,[84,84,0]],[1710023653,[89,89,0]],[1710023654,[89,89,0]],[1710023655,[93,93,0]],[1710023656,[96,96,0]],[1710023657,[98,98,0]],[1710023658,[102,102,0]],[1710023659,[104,104,0]],[1710023660,[107,107,0]],[1710023661,[109,109,0]],[1710023662,[114,114,0]],[1710023663,[115,115,0]],[1710023664,[118,118,0]],[1710023665,[122,122,0]],[1710023666,[123,123,0]],[1710023667,[126,126,0]],[1710023668,[129,129,0]],[1710023669,[133,133,0]],[1710023670,[134,134,0]],[1710023671,[139,139,0]],[1710023672,[140,140,0]],[1710023673,[144,144,0]],[1710023674,[146,146,0]],[1710023675,[149,148,1]],[1710023676,[151,151,0]],[1710023677,[155,155,0]],[1710023678,[157,157,0]],[1710023679,[160,160,0]],[1710023680,[165,165,0]],[1710023681,[166,166,0]],[1710023682,[170,170,0]],[1710023683,[170,170,0]],[1710023684,[174,174,0]],[1710023685,[177,177,0]],[1710023686,[180,180,0]],[1710023687,[183,183,0]],[1710023688,[186,186,0]],[1710023689,[188,188,0]],[1710023690,[192,192,0]],[1710023691,[194,194,0]],[1710023692,[197,197,0]],[1710023693,[198,198,0]],[1710023694,[204,204,0]],[1710023695,[205,205,0]],[1710023696,[208,208,0]],[1710023697,[210,210,0]],[1710023698,[214,214,0]],[1710023699,[217,217,0]],[1710023700,[219,219,0]],[1710023701,[222,222,0]],[1710023702,[225,225,0]],[1710023703,[228,227,1]],[1710023704,[229,229,0]],[1710023705,[234,234,0]],[1710023706,[236,236,0]],[1710023707,[239,239,0]],[1710023708,[242,242,0]],[1710023709,[245,245,0]],[1710023710,[248,247,1]],[1710023711,[251,247,4]],[1710023712,[251,251,0]],[1710023713,[257,255,2]],[1710023714,[259,256,3]],[1710023715,[262,259,3]],[1710023716,[263,204,59]],[1710023717,[267,152,115]],[1710023718,[269,269,0]],[1710023719,[273,271,2]],[1710023720,[275,117,158]],[1710023721,[279,0,279]],[1710023722,[281,0,281]],[1710023723,[284,0,284]],[1710023724,[286,0,286]],[1710023725,[290,0,290]],[1710023726,[292,0,292]],[1710023727,[295,0,295]],[1710023728,[299,0,299]],[1710023729,[300,0,300]],[1710023730,[304,0,304]],[1710023731,[306,0,306]],[1710023732,[309,0,309]],[1710023733,[312,0,312]],[1710023734,[315,0,315]],[1710023735,[317,0,317]],[1710023736,[320,0,320]],[1710023737,[323,0,323]],[1710023738,[328,0,328]],[1710023739,[328,0,328]],[1710023740,[332,0,332]],[1710023741,[334,0,334]],[1710023742,[338,0,338]],[1710023743,[340,0,340]],[1710023744,[341,0,341]],[1710023745,[340,0,340]],[1710023746,[340,0,340]],[1710023747,[340,0,340]],[1710023748,[340,0,340]],[1710023749,[340,0,340]],[1710023750,[339,0,339]],[1710023751,[341,0,341]],[1710023752,[340,0,340]],[1710023753,[340,0,340]],[1710023754,[340,0,340]],[1710023755,[340,0,340]],[1710023756,[340,0,340]],[1710023757,[340,0,340]],[1710023758,[340,0,340]],[1710023759,[340,0,340]],[1710023760,[340,0,340]],[1710023761,[338,0,338]],[1710023762,[342,0,342]],[1710023763,[340,0,340]],[1710023764,[340,0,340]],[1710023765,[340,0,340]],[1710023766,[339,0,339]],[1710023767,[341,0,341]],[1710023768,[339,0,339]],[1710023769,[341,0,341]],[1710023770,[340,0,340]],[1710023771,[338,0,338]],[1710023772,[342,0,342]],[1710023773,[340,0,340]],[1710023774,[340,0,340]],[1710023775,[340,0,340]],[1710023776,[340,0,340]],[1710023777,[340,0,340]],[1710023778,[339,0,339]],[1710023779,[341,0,341]],[1710023780,[339,0,339]],[1710023781,[341,0,341]],[1710023782,[339,0,339]],[1710023783,[341,0,341]],[1710023784,[339,0,339]],[1710023785,[340,0,340]],[1710023786,[341,0,341]],[1710023787,[340,0,340]],[1710023788,[340,0,340]],[1710023789,[340,0,340]],[1710023790,[340,0,340]],[1710023791,[340,0,340]],[1710023792,[339,0,339]],[1710023793,[341,0,341]],[1710023794,[340,0,340]],[1710023795,[340,0,340]],[1710023796,[340,0,340]],[1710023797,[340,0,340]],[1710023798,[340,0,340]],[1710023799,[338,0,338]],[1710023800,[342,0,342]],[1710023801,[340,0,340]],[1710023802,[340,0,340]],[1710023803,[340,0,340]],[1710023804,[340,0,340]],[1710023805,[338,0,338]],[1710023806,[342,0,342]],[1710023807,[340,0,340]],[1710023808,[340,0,340]],[1710023809,[339,0,339]],[1710023810,[340,0,340]],[1710023811,[340,0,340]],[1710023812,[341,0,341]],[1710023813,[340,0,340]],[1710023814,[340,0,340]],[1710023815,[338,0,338]],[1710023816,[342,0,342]],[1710023817,[340,0,340]],[1710023818,[340,0,340]],[1710023819,[340,0,340]],[1710023820,[340,0,340]],[1710023821,[340,0,340]],[1710023822,[339,0,339]],[1710023823,[341,0,341]],[1710023824,[340,0,340]],[1710023825,[340,0,340]],[1710023826,[338,0,338]],[1710023827,[342,0,342]],[1710023828,[340,0,340]],[1710023829,[340,0,340]],[1710023830,[340,0,340]],[1710023831,[340,0,340]],[1710023832,[340,0,340]],[1710023833,[338,0,338]],[1710023834,[342,0,342]],[1710023835,[340,0,340]],[1710023836,[340,0,340]],[1710023837,[340,0,340]],[1710023838,[340,0,340]],[1710023839,[338,0,338]],[1710023840,[342,0,342]],[1710023841,[340,0,340]],[1710023842,[340,0,340]],[1710023843,[340,0,340]],[1710023844,[340,0,340]],[1710023845,[339,0,339]],[1710023846,[341,0,341]],[1710023847,[340,0,340]],[1710023848,[340,0,340]],[1710023849,[340,0,340]],[1710023850,[339,0,339]],[1710023851,[341,0,341]],[1710023852,[339,0,339]],[1710023853,[341,0,341]],[1710023854,[340,0,340]],[1710023855,[339,0,339]],[1710023856,[341,0,341]],[1710023857,[339,0,339]],[1710023858,[341,0,341]],[1710023859,[340,0,340]],[1710023860,[339,0,339]],[1710023861,[341,0,341]],[1710023862,[501,0,501]]]);
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' }
},