-
Notifications
You must be signed in to change notification settings - Fork 925
/
index.html
1215 lines (1145 loc) · 94.5 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 18:33:46 GMT</span>
</span>
<span class="simulation-information-item">
<span class="simulation-information-label">Duration: </span>
<span>4m 8s </span>
</span>
<span class="simulation-tooltip simulation-information-item description" title="Description" data-content="Rinha de Backend - 2024/Q1: Crébito - andre-lucas-io">
<span class="simulation-information-label">Description: </span>
<span>Rinha de Backend - 2024/Q1: Crébito - andre-lucas-io</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">27657</td>
<td class="value error-col-3 total ko">64.226 %</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">13833</td>
<td class="value error-col-3 total ko">32.123 %</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">1258</td>
<td class="value error-col-3 total ko">2.921 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">Request timeout to localhost/127.0.0.1:9999 after 60000 ms<span class="value" style="display:none">3</span></td>
<td class="value error-col-2 total ko">298</td>
<td class="value error-col-3 total ko">0.692 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">j.i.IOException: Premature close<span class="value" style="display:none">4</span></td>
<td class="value error-col-2 total ko">16</td>
<td class="value error-col-3 total ko">0.037 %</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: [
[1710009227000,0],[1710009228000,0],[1710009229000,0],[1710009230000,0],[1710009231000,0],[1710009232000,0],[1710009233000,1],[1710009234000,2],[1710009235000,2],[1710009236000,4],[1710009237000,4],[1710009238000,5],[1710009239000,6],[1710009240000,7],[1710009241000,8],[1710009242000,8],[1710009243000,10],[1710009244000,10],[1710009245000,12],[1710009246000,12],[1710009247000,14],[1710009248000,14],[1710009249000,15],[1710009250000,16],[1710009251000,17],[1710009252000,17],[1710009253000,19],[1710009254000,20],[1710009255000,20],[1710009256000,22],[1710009257000,22],[1710009258000,23],[1710009259000,25],[1710009260000,25],[1710009261000,26],[1710009262000,26],[1710009263000,28],[1710009264000,29],[1710009265000,30],[1710009266000,30],[1710009267000,32],[1710009268000,32],[1710009269000,33],[1710009270000,34],[1710009271000,35],[1710009272000,36],[1710009273000,38],[1710009274000,39],[1710009275000,40],[1710009276000,40],[1710009277000,42],[1710009278000,42],[1710009279000,44],[1710009280000,44],[1710009281000,44],[1710009282000,48],[1710009283000,47],[1710009284000,47],[1710009285000,49],[1710009286000,48],[1710009287000,53],[1710009288000,53],[1710009289000,55],[1710009290000,52],[1710009291000,53],[1710009292000,57],[1710009293000,56],[1710009294000,55],[1710009295000,60],[1710009296000,58],[1710009297000,59],[1710009298000,62],[1710009299000,62],[1710009300000,64],[1710009301000,67],[1710009302000,65],[1710009303000,68],[1710009304000,66],[1710009305000,67],[1710009306000,73],[1710009307000,73],[1710009308000,74],[1710009309000,72],[1710009310000,76],[1710009311000,78],[1710009312000,74],[1710009313000,77],[1710009314000,81],[1710009315000,77],[1710009316000,79],[1710009317000,83],[1710009318000,81],[1710009319000,82],[1710009320000,82],[1710009321000,85],[1710009322000,86],[1710009323000,86],[1710009324000,88],[1710009325000,89],[1710009326000,89],[1710009327000,90],[1710009328000,90],[1710009329000,92],[1710009330000,93],[1710009331000,93],[1710009332000,95],[1710009333000,96],[1710009334000,97],[1710009335000,104],[1710009336000,104],[1710009337000,100],[1710009338000,101],[1710009339000,102],[1710009340000,108],[1710009341000,105],[1710009342000,105],[1710009343000,109],[1710009344000,105],[1710009345000,107],[1710009346000,105],[1710009347000,135],[1710009348000,237],[1710009349000,343],[1710009350000,343],[1710009351000,294],[1710009352000,216],[1710009353000,214],[1710009354000,214],[1710009355000,214],[1710009356000,214],[1710009357000,214],[1710009358000,214],[1710009359000,212],[1710009360000,205],[1710009361000,206],[1710009362000,206],[1710009363000,206],[1710009364000,206],[1710009365000,206],[1710009366000,205],[1710009367000,207],[1710009368000,207],[1710009369000,207],[1710009370000,205],[1710009371000,205],[1710009372000,206],[1710009373000,206],[1710009374000,206],[1710009375000,206],[1710009376000,206],[1710009377000,206],[1710009378000,206],[1710009379000,206],[1710009380000,207],[1710009381000,210],[1710009382000,252],[1710009383000,226],[1710009384000,227],[1710009385000,227],[1710009386000,219],[1710009387000,219],[1710009388000,219],[1710009389000,219],[1710009390000,219],[1710009391000,219],[1710009392000,219],[1710009393000,206],[1710009394000,206],[1710009395000,207],[1710009396000,207],[1710009397000,207],[1710009398000,207],[1710009399000,207],[1710009400000,207],[1710009401000,207],[1710009402000,207],[1710009403000,207],[1710009404000,209],[1710009405000,208],[1710009406000,208],[1710009407000,205],[1710009408000,205],[1710009409000,136],[1710009410000,113],[1710009411000,112],[1710009412000,112],[1710009413000,112],[1710009414000,112],[1710009415000,112],[1710009416000,113],[1710009417000,111],[1710009418000,112],[1710009419000,112],[1710009420000,112],[1710009421000,110],[1710009422000,110],[1710009423000,110],[1710009424000,110],[1710009425000,110],[1710009426000,110],[1710009427000,110],[1710009428000,111],[1710009429000,111],[1710009430000,111],[1710009431000,110],[1710009432000,111],[1710009433000,111],[1710009434000,111],[1710009435000,110],[1710009436000,110],[1710009437000,110],[1710009438000,110],[1710009439000,110],[1710009440000,110],[1710009441000,110],[1710009442000,112],[1710009443000,112],[1710009444000,112],[1710009445000,110],[1710009446000,111],[1710009447000,111],[1710009448000,110],[1710009449000,110],[1710009450000,110],[1710009451000,110],[1710009452000,110],[1710009453000,110],[1710009454000,110],[1710009455000,110],[1710009456000,111],[1710009457000,111],[1710009458000,111],[1710009459000,111],[1710009460000,111],[1710009461000,111],[1710009462000,110],[1710009463000,110],[1710009464000,110],[1710009465000,110],[1710009466000,110],[1710009467000,110],[1710009468000,110],[1710009469000,110],[1710009470000,110],[1710009471000,110],[1710009472000,110],[1710009473000,108],[1710009474000,1],[1710009475000,1]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#68b65c',
name: 'débitos',
data: [
[1710009227000,0],[1710009228000,0],[1710009229000,0],[1710009230000,0],[1710009231000,0],[1710009232000,0],[1710009233000,1],[1710009234000,2],[1710009235000,4],[1710009236000,6],[1710009237000,7],[1710009238000,9],[1710009239000,11],[1710009240000,13],[1710009241000,15],[1710009242000,16],[1710009243000,19],[1710009244000,20],[1710009245000,22],[1710009246000,24],[1710009247000,25],[1710009248000,28],[1710009249000,29],[1710009250000,31],[1710009251000,33],[1710009252000,35],[1710009253000,37],[1710009254000,39],[1710009255000,41],[1710009256000,43],[1710009257000,45],[1710009258000,46],[1710009259000,47],[1710009260000,50],[1710009261000,52],[1710009262000,53],[1710009263000,55],[1710009264000,56],[1710009265000,59],[1710009266000,60],[1710009267000,62],[1710009268000,64],[1710009269000,67],[1710009270000,68],[1710009271000,69],[1710009272000,71],[1710009273000,74],[1710009274000,75],[1710009275000,78],[1710009276000,80],[1710009277000,81],[1710009278000,83],[1710009279000,85],[1710009280000,86],[1710009281000,88],[1710009282000,94],[1710009283000,94],[1710009284000,93],[1710009285000,95],[1710009286000,97],[1710009287000,103],[1710009288000,105],[1710009289000,108],[1710009290000,104],[1710009291000,106],[1710009292000,114],[1710009293000,110],[1710009294000,111],[1710009295000,120],[1710009296000,116],[1710009297000,118],[1710009298000,125],[1710009299000,122],[1710009300000,128],[1710009301000,132],[1710009302000,130],[1710009303000,136],[1710009304000,130],[1710009305000,133],[1710009306000,142],[1710009307000,144],[1710009308000,146],[1710009309000,140],[1710009310000,152],[1710009311000,153],[1710009312000,147],[1710009313000,154],[1710009314000,160],[1710009315000,154],[1710009316000,156],[1710009317000,164],[1710009318000,160],[1710009319000,162],[1710009320000,164],[1710009321000,165],[1710009322000,167],[1710009323000,169],[1710009324000,170],[1710009325000,172],[1710009326000,174],[1710009327000,175],[1710009328000,178],[1710009329000,179],[1710009330000,181],[1710009331000,183],[1710009332000,185],[1710009333000,187],[1710009334000,189],[1710009335000,200],[1710009336000,200],[1710009337000,195],[1710009338000,197],[1710009339000,198],[1710009340000,212],[1710009341000,202],[1710009342000,203],[1710009343000,207],[1710009344000,204],[1710009345000,207],[1710009346000,205],[1710009347000,265],[1710009348000,463],[1710009349000,675],[1710009350000,682],[1710009351000,584],[1710009352000,426],[1710009353000,424],[1710009354000,424],[1710009355000,425],[1710009356000,424],[1710009357000,424],[1710009358000,424],[1710009359000,420],[1710009360000,408],[1710009361000,409],[1710009362000,409],[1710009363000,409],[1710009364000,409],[1710009365000,409],[1710009366000,409],[1710009367000,409],[1710009368000,409],[1710009369000,409],[1710009370000,410],[1710009371000,410],[1710009372000,410],[1710009373000,410],[1710009374000,410],[1710009375000,410],[1710009376000,410],[1710009377000,410],[1710009378000,410],[1710009379000,410],[1710009380000,410],[1710009381000,410],[1710009382000,426],[1710009383000,424],[1710009384000,424],[1710009385000,424],[1710009386000,413],[1710009387000,413],[1710009388000,413],[1710009389000,413],[1710009390000,413],[1710009391000,413],[1710009392000,414],[1710009393000,411],[1710009394000,412],[1710009395000,412],[1710009396000,412],[1710009397000,412],[1710009398000,412],[1710009399000,412],[1710009400000,412],[1710009401000,412],[1710009402000,412],[1710009403000,412],[1710009404000,412],[1710009405000,411],[1710009406000,411],[1710009407000,410],[1710009408000,409],[1710009409000,269],[1710009410000,223],[1710009411000,222],[1710009412000,222],[1710009413000,222],[1710009414000,222],[1710009415000,222],[1710009416000,222],[1710009417000,221],[1710009418000,222],[1710009419000,222],[1710009420000,222],[1710009421000,220],[1710009422000,220],[1710009423000,220],[1710009424000,220],[1710009425000,221],[1710009426000,221],[1710009427000,220],[1710009428000,221],[1710009429000,221],[1710009430000,221],[1710009431000,220],[1710009432000,221],[1710009433000,221],[1710009434000,221],[1710009435000,220],[1710009436000,220],[1710009437000,220],[1710009438000,220],[1710009439000,220],[1710009440000,220],[1710009441000,220],[1710009442000,221],[1710009443000,221],[1710009444000,221],[1710009445000,220],[1710009446000,221],[1710009447000,221],[1710009448000,220],[1710009449000,220],[1710009450000,220],[1710009451000,220],[1710009452000,220],[1710009453000,220],[1710009454000,220],[1710009455000,220],[1710009456000,221],[1710009457000,221],[1710009458000,221],[1710009459000,221],[1710009460000,221],[1710009461000,221],[1710009462000,220],[1710009463000,220],[1710009464000,220],[1710009465000,220],[1710009466000,220],[1710009467000,220],[1710009468000,220],[1710009469000,220],[1710009470000,222],[1710009471000,223],[1710009472000,223],[1710009473000,216],[1710009474000,2],[1710009475000,2]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#f15b4f',
name: 'extratos',
data: [
[1710009227000,0],[1710009228000,0],[1710009229000,0],[1710009230000,0],[1710009231000,0],[1710009232000,0],[1710009233000,1],[1710009234000,2],[1710009235000,1],[1710009236000,1],[1710009237000,1],[1710009238000,2],[1710009239000,2],[1710009240000,1],[1710009241000,2],[1710009242000,2],[1710009243000,1],[1710009244000,2],[1710009245000,2],[1710009246000,2],[1710009247000,2],[1710009248000,2],[1710009249000,2],[1710009250000,2],[1710009251000,3],[1710009252000,2],[1710009253000,3],[1710009254000,2],[1710009255000,3],[1710009256000,2],[1710009257000,3],[1710009258000,3],[1710009259000,3],[1710009260000,3],[1710009261000,4],[1710009262000,3],[1710009263000,3],[1710009264000,4],[1710009265000,3],[1710009266000,3],[1710009267000,4],[1710009268000,3],[1710009269000,4],[1710009270000,4],[1710009271000,4],[1710009272000,4],[1710009273000,4],[1710009274000,4],[1710009275000,4],[1710009276000,4],[1710009277000,4],[1710009278000,4],[1710009279000,5],[1710009280000,4],[1710009281000,5],[1710009282000,6],[1710009283000,5],[1710009284000,5],[1710009285000,5],[1710009286000,5],[1710009287000,6],[1710009288000,6],[1710009289000,6],[1710009290000,5],[1710009291000,6],[1710009292000,6],[1710009293000,6],[1710009294000,5],[1710009295000,7],[1710009296000,6],[1710009297000,7],[1710009298000,8],[1710009299000,7],[1710009300000,8],[1710009301000,8],[1710009302000,7],[1710009303000,8],[1710009304000,8],[1710009305000,7],[1710009306000,8],[1710009307000,9],[1710009308000,8],[1710009309000,8],[1710009310000,9],[1710009311000,9],[1710009312000,8],[1710009313000,9],[1710009314000,9],[1710009315000,8],[1710009316000,8],[1710009317000,9],[1710009318000,8],[1710009319000,9],[1710009320000,9],[1710009321000,10],[1710009322000,10],[1710009323000,9],[1710009324000,10],[1710009325000,10],[1710009326000,10],[1710009327000,10],[1710009328000,10],[1710009329000,10],[1710009330000,11],[1710009331000,12],[1710009332000,12],[1710009333000,13],[1710009334000,12],[1710009335000,14],[1710009336000,13],[1710009337000,13],[1710009338000,13],[1710009339000,13],[1710009340000,14],[1710009341000,13],[1710009342000,14],[1710009343000,14],[1710009344000,14],[1710009345000,13],[1710009346000,13],[1710009347000,16],[1710009348000,25],[1710009349000,35],[1710009350000,35],[1710009351000,29],[1710009352000,22],[1710009353000,22],[1710009354000,22],[1710009355000,22],[1710009356000,21],[1710009357000,21],[1710009358000,21],[1710009359000,21],[1710009360000,20],[1710009361000,20],[1710009362000,20],[1710009363000,20],[1710009364000,21],[1710009365000,21],[1710009366000,21],[1710009367000,21],[1710009368000,21],[1710009369000,21],[1710009370000,21],[1710009371000,21],[1710009372000,21],[1710009373000,21],[1710009374000,21],[1710009375000,21],[1710009376000,21],[1710009377000,21],[1710009378000,21],[1710009379000,22],[1710009380000,21],[1710009381000,21],[1710009382000,21],[1710009383000,23],[1710009384000,23],[1710009385000,23],[1710009386000,23],[1710009387000,23],[1710009388000,23],[1710009389000,23],[1710009390000,23],[1710009391000,23],[1710009392000,23],[1710009393000,21],[1710009394000,21],[1710009395000,22],[1710009396000,21],[1710009397000,21],[1710009398000,21],[1710009399000,21],[1710009400000,21],[1710009401000,21],[1710009402000,21],[1710009403000,21],[1710009404000,21],[1710009405000,21],[1710009406000,21],[1710009407000,21],[1710009408000,21],[1710009409000,15],[1710009410000,12],[1710009411000,11],[1710009412000,11],[1710009413000,11],[1710009414000,11],[1710009415000,11],[1710009416000,11],[1710009417000,11],[1710009418000,11],[1710009419000,11],[1710009420000,11],[1710009421000,11],[1710009422000,11],[1710009423000,11],[1710009424000,10],[1710009425000,10],[1710009426000,10],[1710009427000,10],[1710009428000,10],[1710009429000,10],[1710009430000,10],[1710009431000,10],[1710009432000,10],[1710009433000,10],[1710009434000,10],[1710009435000,10],[1710009436000,10],[1710009437000,10],[1710009438000,10],[1710009439000,10],[1710009440000,10],[1710009441000,10],[1710009442000,11],[1710009443000,11],[1710009444000,11],[1710009445000,10],[1710009446000,10],[1710009447000,10],[1710009448000,10],[1710009449000,10],[1710009450000,10],[1710009451000,10],[1710009452000,10],[1710009453000,10],[1710009454000,10],[1710009455000,10],[1710009456000,10],[1710009457000,11],[1710009458000,11],[1710009459000,11],[1710009460000,11],[1710009461000,11],[1710009462000,10],[1710009463000,10],[1710009464000,10],[1710009465000,10],[1710009466000,10],[1710009467000,10],[1710009468000,10],[1710009469000,10],[1710009470000,10],[1710009471000,10],[1710009472000,10],[1710009473000,9],[1710009474000,0],[1710009475000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FFDD00',
name: 'validação HTTP 404',
data: [
[1710009227000,0],[1710009228000,0],[1710009229000,0],[1710009230000,0],[1710009231000,0],[1710009232000,1],[1710009233000,1],[1710009234000,0],[1710009235000,0],[1710009236000,0],[1710009237000,0],[1710009238000,0],[1710009239000,0],[1710009240000,0],[1710009241000,0],[1710009242000,0],[1710009243000,0],[1710009244000,0],[1710009245000,0],[1710009246000,0],[1710009247000,0],[1710009248000,0],[1710009249000,0],[1710009250000,0],[1710009251000,0],[1710009252000,0],[1710009253000,0],[1710009254000,0],[1710009255000,0],[1710009256000,0],[1710009257000,0],[1710009258000,0],[1710009259000,0],[1710009260000,0],[1710009261000,0],[1710009262000,0],[1710009263000,0],[1710009264000,0],[1710009265000,0],[1710009266000,0],[1710009267000,0],[1710009268000,0],[1710009269000,0],[1710009270000,0],[1710009271000,0],[1710009272000,0],[1710009273000,0],[1710009274000,0],[1710009275000,0],[1710009276000,0],[1710009277000,0],[1710009278000,0],[1710009279000,0],[1710009280000,0],[1710009281000,0],[1710009282000,0],[1710009283000,0],[1710009284000,0],[1710009285000,0],[1710009286000,0],[1710009287000,0],[1710009288000,0],[1710009289000,0],[1710009290000,0],[1710009291000,0],[1710009292000,0],[1710009293000,0],[1710009294000,0],[1710009295000,0],[1710009296000,0],[1710009297000,0],[1710009298000,0],[1710009299000,0],[1710009300000,0],[1710009301000,0],[1710009302000,0],[1710009303000,0],[1710009304000,0],[1710009305000,0],[1710009306000,0],[1710009307000,0],[1710009308000,0],[1710009309000,0],[1710009310000,0],[1710009311000,0],[1710009312000,0],[1710009313000,0],[1710009314000,0],[1710009315000,0],[1710009316000,0],[1710009317000,0],[1710009318000,0],[1710009319000,0],[1710009320000,0],[1710009321000,0],[1710009322000,0],[1710009323000,0],[1710009324000,0],[1710009325000,0],[1710009326000,0],[1710009327000,0],[1710009328000,0],[1710009329000,0],[1710009330000,0],[1710009331000,0],[1710009332000,0],[1710009333000,0],[1710009334000,0],[1710009335000,0],[1710009336000,0],[1710009337000,0],[1710009338000,0],[1710009339000,0],[1710009340000,0],[1710009341000,0],[1710009342000,0],[1710009343000,0],[1710009344000,0],[1710009345000,0],[1710009346000,0],[1710009347000,0],[1710009348000,0],[1710009349000,0],[1710009350000,0],[1710009351000,0],[1710009352000,0],[1710009353000,0],[1710009354000,0],[1710009355000,0],[1710009356000,0],[1710009357000,0],[1710009358000,0],[1710009359000,0],[1710009360000,0],[1710009361000,0],[1710009362000,0],[1710009363000,0],[1710009364000,0],[1710009365000,0],[1710009366000,0],[1710009367000,0],[1710009368000,0],[1710009369000,0],[1710009370000,0],[1710009371000,0],[1710009372000,0],[1710009373000,0],[1710009374000,0],[1710009375000,0],[1710009376000,0],[1710009377000,0],[1710009378000,0],[1710009379000,0],[1710009380000,0],[1710009381000,0],[1710009382000,0],[1710009383000,0],[1710009384000,0],[1710009385000,0],[1710009386000,0],[1710009387000,0],[1710009388000,0],[1710009389000,0],[1710009390000,0],[1710009391000,0],[1710009392000,0],[1710009393000,0],[1710009394000,0],[1710009395000,0],[1710009396000,0],[1710009397000,0],[1710009398000,0],[1710009399000,0],[1710009400000,0],[1710009401000,0],[1710009402000,0],[1710009403000,0],[1710009404000,0],[1710009405000,0],[1710009406000,0],[1710009407000,0],[1710009408000,0],[1710009409000,0],[1710009410000,0],[1710009411000,0],[1710009412000,0],[1710009413000,0],[1710009414000,0],[1710009415000,0],[1710009416000,0],[1710009417000,0],[1710009418000,0],[1710009419000,0],[1710009420000,0],[1710009421000,0],[1710009422000,0],[1710009423000,0],[1710009424000,0],[1710009425000,0],[1710009426000,0],[1710009427000,0],[1710009428000,0],[1710009429000,0],[1710009430000,0],[1710009431000,0],[1710009432000,0],[1710009433000,0],[1710009434000,0],[1710009435000,0],[1710009436000,0],[1710009437000,0],[1710009438000,0],[1710009439000,0],[1710009440000,0],[1710009441000,0],[1710009442000,0],[1710009443000,0],[1710009444000,0],[1710009445000,0],[1710009446000,0],[1710009447000,0],[1710009448000,0],[1710009449000,0],[1710009450000,0],[1710009451000,0],[1710009452000,0],[1710009453000,0],[1710009454000,0],[1710009455000,0],[1710009456000,0],[1710009457000,0],[1710009458000,0],[1710009459000,0],[1710009460000,0],[1710009461000,0],[1710009462000,0],[1710009463000,0],[1710009464000,0],[1710009465000,0],[1710009466000,0],[1710009467000,0],[1710009468000,0],[1710009469000,0],[1710009470000,0],[1710009471000,0],[1710009472000,0],[1710009473000,0],[1710009474000,0],[1710009475000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00D5FF',
name: 'validações',
data: [
[1710009227000,0],[1710009228000,0],[1710009229000,0],[1710009230000,0],[1710009231000,0],[1710009232000,5],[1710009233000,5],[1710009234000,5],[1710009235000,0],[1710009236000,0],[1710009237000,0],[1710009238000,0],[1710009239000,0],[1710009240000,0],[1710009241000,0],[1710009242000,0],[1710009243000,0],[1710009244000,0],[1710009245000,0],[1710009246000,0],[1710009247000,0],[1710009248000,0],[1710009249000,0],[1710009250000,0],[1710009251000,0],[1710009252000,0],[1710009253000,0],[1710009254000,0],[1710009255000,0],[1710009256000,0],[1710009257000,0],[1710009258000,0],[1710009259000,0],[1710009260000,0],[1710009261000,0],[1710009262000,0],[1710009263000,0],[1710009264000,0],[1710009265000,0],[1710009266000,0],[1710009267000,0],[1710009268000,0],[1710009269000,0],[1710009270000,0],[1710009271000,0],[1710009272000,0],[1710009273000,0],[1710009274000,0],[1710009275000,0],[1710009276000,0],[1710009277000,0],[1710009278000,0],[1710009279000,0],[1710009280000,0],[1710009281000,0],[1710009282000,0],[1710009283000,0],[1710009284000,0],[1710009285000,0],[1710009286000,0],[1710009287000,0],[1710009288000,0],[1710009289000,0],[1710009290000,0],[1710009291000,0],[1710009292000,0],[1710009293000,0],[1710009294000,0],[1710009295000,0],[1710009296000,0],[1710009297000,0],[1710009298000,0],[1710009299000,0],[1710009300000,0],[1710009301000,0],[1710009302000,0],[1710009303000,0],[1710009304000,0],[1710009305000,0],[1710009306000,0],[1710009307000,0],[1710009308000,0],[1710009309000,0],[1710009310000,0],[1710009311000,0],[1710009312000,0],[1710009313000,0],[1710009314000,0],[1710009315000,0],[1710009316000,0],[1710009317000,0],[1710009318000,0],[1710009319000,0],[1710009320000,0],[1710009321000,0],[1710009322000,0],[1710009323000,0],[1710009324000,0],[1710009325000,0],[1710009326000,0],[1710009327000,0],[1710009328000,0],[1710009329000,0],[1710009330000,0],[1710009331000,0],[1710009332000,0],[1710009333000,0],[1710009334000,0],[1710009335000,0],[1710009336000,0],[1710009337000,0],[1710009338000,0],[1710009339000,0],[1710009340000,0],[1710009341000,0],[1710009342000,0],[1710009343000,0],[1710009344000,0],[1710009345000,0],[1710009346000,0],[1710009347000,0],[1710009348000,0],[1710009349000,0],[1710009350000,0],[1710009351000,0],[1710009352000,0],[1710009353000,0],[1710009354000,0],[1710009355000,0],[1710009356000,0],[1710009357000,0],[1710009358000,0],[1710009359000,0],[1710009360000,0],[1710009361000,0],[1710009362000,0],[1710009363000,0],[1710009364000,0],[1710009365000,0],[1710009366000,0],[1710009367000,0],[1710009368000,0],[1710009369000,0],[1710009370000,0],[1710009371000,0],[1710009372000,0],[1710009373000,0],[1710009374000,0],[1710009375000,0],[1710009376000,0],[1710009377000,0],[1710009378000,0],[1710009379000,0],[1710009380000,0],[1710009381000,0],[1710009382000,0],[1710009383000,0],[1710009384000,0],[1710009385000,0],[1710009386000,0],[1710009387000,0],[1710009388000,0],[1710009389000,0],[1710009390000,0],[1710009391000,0],[1710009392000,0],[1710009393000,0],[1710009394000,0],[1710009395000,0],[1710009396000,0],[1710009397000,0],[1710009398000,0],[1710009399000,0],[1710009400000,0],[1710009401000,0],[1710009402000,0],[1710009403000,0],[1710009404000,0],[1710009405000,0],[1710009406000,0],[1710009407000,0],[1710009408000,0],[1710009409000,0],[1710009410000,0],[1710009411000,0],[1710009412000,0],[1710009413000,0],[1710009414000,0],[1710009415000,0],[1710009416000,0],[1710009417000,0],[1710009418000,0],[1710009419000,0],[1710009420000,0],[1710009421000,0],[1710009422000,0],[1710009423000,0],[1710009424000,0],[1710009425000,0],[1710009426000,0],[1710009427000,0],[1710009428000,0],[1710009429000,0],[1710009430000,0],[1710009431000,0],[1710009432000,0],[1710009433000,0],[1710009434000,0],[1710009435000,0],[1710009436000,0],[1710009437000,0],[1710009438000,0],[1710009439000,0],[1710009440000,0],[1710009441000,0],[1710009442000,0],[1710009443000,0],[1710009444000,0],[1710009445000,0],[1710009446000,0],[1710009447000,0],[1710009448000,0],[1710009449000,0],[1710009450000,0],[1710009451000,0],[1710009452000,0],[1710009453000,0],[1710009454000,0],[1710009455000,0],[1710009456000,0],[1710009457000,0],[1710009458000,0],[1710009459000,0],[1710009460000,0],[1710009461000,0],[1710009462000,0],[1710009463000,0],[1710009464000,0],[1710009465000,0],[1710009466000,0],[1710009467000,0],[1710009468000,0],[1710009469000,0],[1710009470000,0],[1710009471000,0],[1710009472000,0],[1710009473000,0],[1710009474000,0],[1710009475000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00FF00',
name: 'validação concorrência saldo - 0',
data: [
[1710009227000,0],[1710009228000,0],[1710009229000,0],[1710009230000,0],[1710009231000,1],[1710009232000,1],[1710009233000,0],[1710009234000,0],[1710009235000,0],[1710009236000,0],[1710009237000,0],[1710009238000,0],[1710009239000,0],[1710009240000,0],[1710009241000,0],[1710009242000,0],[1710009243000,0],[1710009244000,0],[1710009245000,0],[1710009246000,0],[1710009247000,0],[1710009248000,0],[1710009249000,0],[1710009250000,0],[1710009251000,0],[1710009252000,0],[1710009253000,0],[1710009254000,0],[1710009255000,0],[1710009256000,0],[1710009257000,0],[1710009258000,0],[1710009259000,0],[1710009260000,0],[1710009261000,0],[1710009262000,0],[1710009263000,0],[1710009264000,0],[1710009265000,0],[1710009266000,0],[1710009267000,0],[1710009268000,0],[1710009269000,0],[1710009270000,0],[1710009271000,0],[1710009272000,0],[1710009273000,0],[1710009274000,0],[1710009275000,0],[1710009276000,0],[1710009277000,0],[1710009278000,0],[1710009279000,0],[1710009280000,0],[1710009281000,0],[1710009282000,0],[1710009283000,0],[1710009284000,0],[1710009285000,0],[1710009286000,0],[1710009287000,0],[1710009288000,0],[1710009289000,0],[1710009290000,0],[1710009291000,0],[1710009292000,0],[1710009293000,0],[1710009294000,0],[1710009295000,0],[1710009296000,0],[1710009297000,0],[1710009298000,0],[1710009299000,0],[1710009300000,0],[1710009301000,0],[1710009302000,0],[1710009303000,0],[1710009304000,0],[1710009305000,0],[1710009306000,0],[1710009307000,0],[1710009308000,0],[1710009309000,0],[1710009310000,0],[1710009311000,0],[1710009312000,0],[1710009313000,0],[1710009314000,0],[1710009315000,0],[1710009316000,0],[1710009317000,0],[1710009318000,0],[1710009319000,0],[1710009320000,0],[1710009321000,0],[1710009322000,0],[1710009323000,0],[1710009324000,0],[1710009325000,0],[1710009326000,0],[1710009327000,0],[1710009328000,0],[1710009329000,0],[1710009330000,0],[1710009331000,0],[1710009332000,0],[1710009333000,0],[1710009334000,0],[1710009335000,0],[1710009336000,0],[1710009337000,0],[1710009338000,0],[1710009339000,0],[1710009340000,0],[1710009341000,0],[1710009342000,0],[1710009343000,0],[1710009344000,0],[1710009345000,0],[1710009346000,0],[1710009347000,0],[1710009348000,0],[1710009349000,0],[1710009350000,0],[1710009351000,0],[1710009352000,0],[1710009353000,0],[1710009354000,0],[1710009355000,0],[1710009356000,0],[1710009357000,0],[1710009358000,0],[1710009359000,0],[1710009360000,0],[1710009361000,0],[1710009362000,0],[1710009363000,0],[1710009364000,0],[1710009365000,0],[1710009366000,0],[1710009367000,0],[1710009368000,0],[1710009369000,0],[1710009370000,0],[1710009371000,0],[1710009372000,0],[1710009373000,0],[1710009374000,0],[1710009375000,0],[1710009376000,0],[1710009377000,0],[1710009378000,0],[1710009379000,0],[1710009380000,0],[1710009381000,0],[1710009382000,0],[1710009383000,0],[1710009384000,0],[1710009385000,0],[1710009386000,0],[1710009387000,0],[1710009388000,0],[1710009389000,0],[1710009390000,0],[1710009391000,0],[1710009392000,0],[1710009393000,0],[1710009394000,0],[1710009395000,0],[1710009396000,0],[1710009397000,0],[1710009398000,0],[1710009399000,0],[1710009400000,0],[1710009401000,0],[1710009402000,0],[1710009403000,0],[1710009404000,0],[1710009405000,0],[1710009406000,0],[1710009407000,0],[1710009408000,0],[1710009409000,0],[1710009410000,0],[1710009411000,0],[1710009412000,0],[1710009413000,0],[1710009414000,0],[1710009415000,0],[1710009416000,0],[1710009417000,0],[1710009418000,0],[1710009419000,0],[1710009420000,0],[1710009421000,0],[1710009422000,0],[1710009423000,0],[1710009424000,0],[1710009425000,0],[1710009426000,0],[1710009427000,0],[1710009428000,0],[1710009429000,0],[1710009430000,0],[1710009431000,0],[1710009432000,0],[1710009433000,0],[1710009434000,0],[1710009435000,0],[1710009436000,0],[1710009437000,0],[1710009438000,0],[1710009439000,0],[1710009440000,0],[1710009441000,0],[1710009442000,0],[1710009443000,0],[1710009444000,0],[1710009445000,0],[1710009446000,0],[1710009447000,0],[1710009448000,0],[1710009449000,0],[1710009450000,0],[1710009451000,0],[1710009452000,0],[1710009453000,0],[1710009454000,0],[1710009455000,0],[1710009456000,0],[1710009457000,0],[1710009458000,0],[1710009459000,0],[1710009460000,0],[1710009461000,0],[1710009462000,0],[1710009463000,0],[1710009464000,0],[1710009465000,0],[1710009466000,0],[1710009467000,0],[1710009468000,0],[1710009469000,0],[1710009470000,0],[1710009471000,0],[1710009472000,0],[1710009473000,0],[1710009474000,0],[1710009475000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#9D00FF',
name: 'validação concorrência transações - c',
data: [
[1710009227000,0],[1710009228000,0],[1710009229000,0],[1710009230000,25],[1710009231000,25],[1710009232000,0],[1710009233000,0],[1710009234000,0],[1710009235000,0],[1710009236000,0],[1710009237000,0],[1710009238000,0],[1710009239000,0],[1710009240000,0],[1710009241000,0],[1710009242000,0],[1710009243000,0],[1710009244000,0],[1710009245000,0],[1710009246000,0],[1710009247000,0],[1710009248000,0],[1710009249000,0],[1710009250000,0],[1710009251000,0],[1710009252000,0],[1710009253000,0],[1710009254000,0],[1710009255000,0],[1710009256000,0],[1710009257000,0],[1710009258000,0],[1710009259000,0],[1710009260000,0],[1710009261000,0],[1710009262000,0],[1710009263000,0],[1710009264000,0],[1710009265000,0],[1710009266000,0],[1710009267000,0],[1710009268000,0],[1710009269000,0],[1710009270000,0],[1710009271000,0],[1710009272000,0],[1710009273000,0],[1710009274000,0],[1710009275000,0],[1710009276000,0],[1710009277000,0],[1710009278000,0],[1710009279000,0],[1710009280000,0],[1710009281000,0],[1710009282000,0],[1710009283000,0],[1710009284000,0],[1710009285000,0],[1710009286000,0],[1710009287000,0],[1710009288000,0],[1710009289000,0],[1710009290000,0],[1710009291000,0],[1710009292000,0],[1710009293000,0],[1710009294000,0],[1710009295000,0],[1710009296000,0],[1710009297000,0],[1710009298000,0],[1710009299000,0],[1710009300000,0],[1710009301000,0],[1710009302000,0],[1710009303000,0],[1710009304000,0],[1710009305000,0],[1710009306000,0],[1710009307000,0],[1710009308000,0],[1710009309000,0],[1710009310000,0],[1710009311000,0],[1710009312000,0],[1710009313000,0],[1710009314000,0],[1710009315000,0],[1710009316000,0],[1710009317000,0],[1710009318000,0],[1710009319000,0],[1710009320000,0],[1710009321000,0],[1710009322000,0],[1710009323000,0],[1710009324000,0],[1710009325000,0],[1710009326000,0],[1710009327000,0],[1710009328000,0],[1710009329000,0],[1710009330000,0],[1710009331000,0],[1710009332000,0],[1710009333000,0],[1710009334000,0],[1710009335000,0],[1710009336000,0],[1710009337000,0],[1710009338000,0],[1710009339000,0],[1710009340000,0],[1710009341000,0],[1710009342000,0],[1710009343000,0],[1710009344000,0],[1710009345000,0],[1710009346000,0],[1710009347000,0],[1710009348000,0],[1710009349000,0],[1710009350000,0],[1710009351000,0],[1710009352000,0],[1710009353000,0],[1710009354000,0],[1710009355000,0],[1710009356000,0],[1710009357000,0],[1710009358000,0],[1710009359000,0],[1710009360000,0],[1710009361000,0],[1710009362000,0],[1710009363000,0],[1710009364000,0],[1710009365000,0],[1710009366000,0],[1710009367000,0],[1710009368000,0],[1710009369000,0],[1710009370000,0],[1710009371000,0],[1710009372000,0],[1710009373000,0],[1710009374000,0],[1710009375000,0],[1710009376000,0],[1710009377000,0],[1710009378000,0],[1710009379000,0],[1710009380000,0],[1710009381000,0],[1710009382000,0],[1710009383000,0],[1710009384000,0],[1710009385000,0],[1710009386000,0],[1710009387000,0],[1710009388000,0],[1710009389000,0],[1710009390000,0],[1710009391000,0],[1710009392000,0],[1710009393000,0],[1710009394000,0],[1710009395000,0],[1710009396000,0],[1710009397000,0],[1710009398000,0],[1710009399000,0],[1710009400000,0],[1710009401000,0],[1710009402000,0],[1710009403000,0],[1710009404000,0],[1710009405000,0],[1710009406000,0],[1710009407000,0],[1710009408000,0],[1710009409000,0],[1710009410000,0],[1710009411000,0],[1710009412000,0],[1710009413000,0],[1710009414000,0],[1710009415000,0],[1710009416000,0],[1710009417000,0],[1710009418000,0],[1710009419000,0],[1710009420000,0],[1710009421000,0],[1710009422000,0],[1710009423000,0],[1710009424000,0],[1710009425000,0],[1710009426000,0],[1710009427000,0],[1710009428000,0],[1710009429000,0],[1710009430000,0],[1710009431000,0],[1710009432000,0],[1710009433000,0],[1710009434000,0],[1710009435000,0],[1710009436000,0],[1710009437000,0],[1710009438000,0],[1710009439000,0],[1710009440000,0],[1710009441000,0],[1710009442000,0],[1710009443000,0],[1710009444000,0],[1710009445000,0],[1710009446000,0],[1710009447000,0],[1710009448000,0],[1710009449000,0],[1710009450000,0],[1710009451000,0],[1710009452000,0],[1710009453000,0],[1710009454000,0],[1710009455000,0],[1710009456000,0],[1710009457000,0],[1710009458000,0],[1710009459000,0],[1710009460000,0],[1710009461000,0],[1710009462000,0],[1710009463000,0],[1710009464000,0],[1710009465000,0],[1710009466000,0],[1710009467000,0],[1710009468000,0],[1710009469000,0],[1710009470000,0],[1710009471000,0],[1710009472000,0],[1710009473000,0],[1710009474000,0],[1710009475000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FF00E1',
name: 'validação concorrência saldo - -25',
data: [
[1710009227000,0],[1710009228000,0],[1710009229000,1],[1710009230000,1],[1710009231000,0],[1710009232000,0],[1710009233000,0],[1710009234000,0],[1710009235000,0],[1710009236000,0],[1710009237000,0],[1710009238000,0],[1710009239000,0],[1710009240000,0],[1710009241000,0],[1710009242000,0],[1710009243000,0],[1710009244000,0],[1710009245000,0],[1710009246000,0],[1710009247000,0],[1710009248000,0],[1710009249000,0],[1710009250000,0],[1710009251000,0],[1710009252000,0],[1710009253000,0],[1710009254000,0],[1710009255000,0],[1710009256000,0],[1710009257000,0],[1710009258000,0],[1710009259000,0],[1710009260000,0],[1710009261000,0],[1710009262000,0],[1710009263000,0],[1710009264000,0],[1710009265000,0],[1710009266000,0],[1710009267000,0],[1710009268000,0],[1710009269000,0],[1710009270000,0],[1710009271000,0],[1710009272000,0],[1710009273000,0],[1710009274000,0],[1710009275000,0],[1710009276000,0],[1710009277000,0],[1710009278000,0],[1710009279000,0],[1710009280000,0],[1710009281000,0],[1710009282000,0],[1710009283000,0],[1710009284000,0],[1710009285000,0],[1710009286000,0],[1710009287000,0],[1710009288000,0],[1710009289000,0],[1710009290000,0],[1710009291000,0],[1710009292000,0],[1710009293000,0],[1710009294000,0],[1710009295000,0],[1710009296000,0],[1710009297000,0],[1710009298000,0],[1710009299000,0],[1710009300000,0],[1710009301000,0],[1710009302000,0],[1710009303000,0],[1710009304000,0],[1710009305000,0],[1710009306000,0],[1710009307000,0],[1710009308000,0],[1710009309000,0],[1710009310000,0],[1710009311000,0],[1710009312000,0],[1710009313000,0],[1710009314000,0],[1710009315000,0],[1710009316000,0],[1710009317000,0],[1710009318000,0],[1710009319000,0],[1710009320000,0],[1710009321000,0],[1710009322000,0],[1710009323000,0],[1710009324000,0],[1710009325000,0],[1710009326000,0],[1710009327000,0],[1710009328000,0],[1710009329000,0],[1710009330000,0],[1710009331000,0],[1710009332000,0],[1710009333000,0],[1710009334000,0],[1710009335000,0],[1710009336000,0],[1710009337000,0],[1710009338000,0],[1710009339000,0],[1710009340000,0],[1710009341000,0],[1710009342000,0],[1710009343000,0],[1710009344000,0],[1710009345000,0],[1710009346000,0],[1710009347000,0],[1710009348000,0],[1710009349000,0],[1710009350000,0],[1710009351000,0],[1710009352000,0],[1710009353000,0],[1710009354000,0],[1710009355000,0],[1710009356000,0],[1710009357000,0],[1710009358000,0],[1710009359000,0],[1710009360000,0],[1710009361000,0],[1710009362000,0],[1710009363000,0],[1710009364000,0],[1710009365000,0],[1710009366000,0],[1710009367000,0],[1710009368000,0],[1710009369000,0],[1710009370000,0],[1710009371000,0],[1710009372000,0],[1710009373000,0],[1710009374000,0],[1710009375000,0],[1710009376000,0],[1710009377000,0],[1710009378000,0],[1710009379000,0],[1710009380000,0],[1710009381000,0],[1710009382000,0],[1710009383000,0],[1710009384000,0],[1710009385000,0],[1710009386000,0],[1710009387000,0],[1710009388000,0],[1710009389000,0],[1710009390000,0],[1710009391000,0],[1710009392000,0],[1710009393000,0],[1710009394000,0],[1710009395000,0],[1710009396000,0],[1710009397000,0],[1710009398000,0],[1710009399000,0],[1710009400000,0],[1710009401000,0],[1710009402000,0],[1710009403000,0],[1710009404000,0],[1710009405000,0],[1710009406000,0],[1710009407000,0],[1710009408000,0],[1710009409000,0],[1710009410000,0],[1710009411000,0],[1710009412000,0],[1710009413000,0],[1710009414000,0],[1710009415000,0],[1710009416000,0],[1710009417000,0],[1710009418000,0],[1710009419000,0],[1710009420000,0],[1710009421000,0],[1710009422000,0],[1710009423000,0],[1710009424000,0],[1710009425000,0],[1710009426000,0],[1710009427000,0],[1710009428000,0],[1710009429000,0],[1710009430000,0],[1710009431000,0],[1710009432000,0],[1710009433000,0],[1710009434000,0],[1710009435000,0],[1710009436000,0],[1710009437000,0],[1710009438000,0],[1710009439000,0],[1710009440000,0],[1710009441000,0],[1710009442000,0],[1710009443000,0],[1710009444000,0],[1710009445000,0],[1710009446000,0],[1710009447000,0],[1710009448000,0],[1710009449000,0],[1710009450000,0],[1710009451000,0],[1710009452000,0],[1710009453000,0],[1710009454000,0],[1710009455000,0],[1710009456000,0],[1710009457000,0],[1710009458000,0],[1710009459000,0],[1710009460000,0],[1710009461000,0],[1710009462000,0],[1710009463000,0],[1710009464000,0],[1710009465000,0],[1710009466000,0],[1710009467000,0],[1710009468000,0],[1710009469000,0],[1710009470000,0],[1710009471000,0],[1710009472000,0],[1710009473000,0],[1710009474000,0],[1710009475000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#AECAEB',
name: 'validação concorrência transações - d',
data: [
[1710009227000,25],[1710009228000,12],[1710009229000,8],[1710009230000,0],[1710009231000,0],[1710009232000,0],[1710009233000,0],[1710009234000,0],[1710009235000,0],[1710009236000,0],[1710009237000,0],[1710009238000,0],[1710009239000,0],[1710009240000,0],[1710009241000,0],[1710009242000,0],[1710009243000,0],[1710009244000,0],[1710009245000,0],[1710009246000,0],[1710009247000,0],[1710009248000,0],[1710009249000,0],[1710009250000,0],[1710009251000,0],[1710009252000,0],[1710009253000,0],[1710009254000,0],[1710009255000,0],[1710009256000,0],[1710009257000,0],[1710009258000,0],[1710009259000,0],[1710009260000,0],[1710009261000,0],[1710009262000,0],[1710009263000,0],[1710009264000,0],[1710009265000,0],[1710009266000,0],[1710009267000,0],[1710009268000,0],[1710009269000,0],[1710009270000,0],[1710009271000,0],[1710009272000,0],[1710009273000,0],[1710009274000,0],[1710009275000,0],[1710009276000,0],[1710009277000,0],[1710009278000,0],[1710009279000,0],[1710009280000,0],[1710009281000,0],[1710009282000,0],[1710009283000,0],[1710009284000,0],[1710009285000,0],[1710009286000,0],[1710009287000,0],[1710009288000,0],[1710009289000,0],[1710009290000,0],[1710009291000,0],[1710009292000,0],[1710009293000,0],[1710009294000,0],[1710009295000,0],[1710009296000,0],[1710009297000,0],[1710009298000,0],[1710009299000,0],[1710009300000,0],[1710009301000,0],[1710009302000,0],[1710009303000,0],[1710009304000,0],[1710009305000,0],[1710009306000,0],[1710009307000,0],[1710009308000,0],[1710009309000,0],[1710009310000,0],[1710009311000,0],[1710009312000,0],[1710009313000,0],[1710009314000,0],[1710009315000,0],[1710009316000,0],[1710009317000,0],[1710009318000,0],[1710009319000,0],[1710009320000,0],[1710009321000,0],[1710009322000,0],[1710009323000,0],[1710009324000,0],[1710009325000,0],[1710009326000,0],[1710009327000,0],[1710009328000,0],[1710009329000,0],[1710009330000,0],[1710009331000,0],[1710009332000,0],[1710009333000,0],[1710009334000,0],[1710009335000,0],[1710009336000,0],[1710009337000,0],[1710009338000,0],[1710009339000,0],[1710009340000,0],[1710009341000,0],[1710009342000,0],[1710009343000,0],[1710009344000,0],[1710009345000,0],[1710009346000,0],[1710009347000,0],[1710009348000,0],[1710009349000,0],[1710009350000,0],[1710009351000,0],[1710009352000,0],[1710009353000,0],[1710009354000,0],[1710009355000,0],[1710009356000,0],[1710009357000,0],[1710009358000,0],[1710009359000,0],[1710009360000,0],[1710009361000,0],[1710009362000,0],[1710009363000,0],[1710009364000,0],[1710009365000,0],[1710009366000,0],[1710009367000,0],[1710009368000,0],[1710009369000,0],[1710009370000,0],[1710009371000,0],[1710009372000,0],[1710009373000,0],[1710009374000,0],[1710009375000,0],[1710009376000,0],[1710009377000,0],[1710009378000,0],[1710009379000,0],[1710009380000,0],[1710009381000,0],[1710009382000,0],[1710009383000,0],[1710009384000,0],[1710009385000,0],[1710009386000,0],[1710009387000,0],[1710009388000,0],[1710009389000,0],[1710009390000,0],[1710009391000,0],[1710009392000,0],[1710009393000,0],[1710009394000,0],[1710009395000,0],[1710009396000,0],[1710009397000,0],[1710009398000,0],[1710009399000,0],[1710009400000,0],[1710009401000,0],[1710009402000,0],[1710009403000,0],[1710009404000,0],[1710009405000,0],[1710009406000,0],[1710009407000,0],[1710009408000,0],[1710009409000,0],[1710009410000,0],[1710009411000,0],[1710009412000,0],[1710009413000,0],[1710009414000,0],[1710009415000,0],[1710009416000,0],[1710009417000,0],[1710009418000,0],[1710009419000,0],[1710009420000,0],[1710009421000,0],[1710009422000,0],[1710009423000,0],[1710009424000,0],[1710009425000,0],[1710009426000,0],[1710009427000,0],[1710009428000,0],[1710009429000,0],[1710009430000,0],[1710009431000,0],[1710009432000,0],[1710009433000,0],[1710009434000,0],[1710009435000,0],[1710009436000,0],[1710009437000,0],[1710009438000,0],[1710009439000,0],[1710009440000,0],[1710009441000,0],[1710009442000,0],[1710009443000,0],[1710009444000,0],[1710009445000,0],[1710009446000,0],[1710009447000,0],[1710009448000,0],[1710009449000,0],[1710009450000,0],[1710009451000,0],[1710009452000,0],[1710009453000,0],[1710009454000,0],[1710009455000,0],[1710009456000,0],[1710009457000,0],[1710009458000,0],[1710009459000,0],[1710009460000,0],[1710009461000,0],[1710009462000,0],[1710009463000,0],[1710009464000,0],[1710009465000,0],[1710009466000,0],[1710009467000,0],[1710009468000,0],[1710009469000,0],[1710009470000,0],[1710009471000,0],[1710009472000,0],[1710009473000,0],[1710009474000,0],[1710009475000,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: ['300', '900', '1500', '2100', '2700', '3300', '3900', '4500', '5100', '5700', '6300', '6900', '7500', '8100', '8700', '9300', '9900', '10500', '11100', '11700', '12300', '12900', '13500', '14100', '14700', '15300', '15900', '16500', '17100', '17700', '18300', '18900', '19500', '20100', '20700', '21300', '21900', '22500', '23100', '23700', '24300', '24900', '25500', '26100', '26700', '27300', '27900', '28500', '29100', '29700', '30301', '30901', '31501', '32101', '32701', '33301', '33901', '34501', '35101', '35701', '36301', '36901', '37501', '38101', '38701', '39301', '39901', '40501', '41101', '41701', '42301', '42901', '43501', '44101', '44701', '45301', '45901', '46501', '47101', '47701', '48301', '48901', '49501', '50101', '50701', '51301', '51901', '52501', '53101', '53701', '54301', '54901', '55501', '56101', '56701', '57301', '57901', '58501', '59101', '59701'],
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: [
29.7,0.05,0.01,0.12,0.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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: [
68.6,0.06,0.03,0.13,0.11,0.39,0.06,0.0,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.02,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.48
],
tooltip: { yDecimals: 0, ySuffix: 'ms' }
}
]
});
responsetimeDistributionChart.setTitle({
text: '<span class="chart_title">Response Time Distribution</span>',
useHTML: true
});
var responsetimepercentilesovertimeokPercentiles = unpack([[1710009227,[533,737,922,2428,2493,2501,2516,2529,2599,2621]],[1710009228,null],[1710009229,null],[1710009230,[19,19,19,19,19,19,19,19,19,19]],[1710009231,[44,253,360,451,454,464,515,550,557,560]],[1710009232,[69,69,69,69,69,69,69,69,69,69]],[1710009233,[17,53,102,200,247,285,297,305,440,503]],[1710009234,[3,16,76,103,174,196,226,321,415,423]],[1710009235,[12,13,19,20,20,20,21,21,21,22]],[1710009236,[10,10,14,18,20,22,23,23,23,23]],[1710009237,[9,10,11,15,18,19,20,21,22,23]],[1710009238,[9,10,11,11,14,16,19,29,40,43]],[1710009239,[9,9,10,11,12,12,12,15,15,15]],[1710009240,[8,8,9,10,10,10,13,14,15,16]],[1710009241,[8,8,8,9,9,10,11,12,13,14]],[1710009242,[7,8,8,10,11,11,12,13,14,14]],[1710009243,[6,7,8,10,10,10,11,14,15,16]],[1710009244,[5,7,8,10,10,11,12,13,15,16]],[1710009245,[5,7,8,9,9,10,10,13,14,14]],[1710009246,[5,7,7,9,9,9,10,11,12,13]],[1710009247,[6,7,7,8,8,9,11,12,12,13]],[1710009248,[5,6,7,8,8,9,11,13,15,16]],[1710009249,[4,6,6,7,7,8,8,9,9,10]],[1710009250,[4,6,6,7,7,7,7,9,11,12]],[1710009251,[4,5,6,7,7,7,7,8,10,11]],[1710009252,[4,5,6,6,6,7,7,8,9,9]],[1710009253,[4,5,6,6,6,6,6,7,8,9]],[1710009254,[3,5,5,6,6,6,7,8,9,9]],[1710009255,[3,5,5,6,6,7,7,8,9,10]],[1710009256,[4,5,6,6,6,6,7,7,10,11]],[1710009257,[3,5,5,6,7,8,10,29,50,54]],[1710009258,[3,4,5,5,6,6,7,7,8,9]],[1710009259,[4,4,4,5,5,6,6,6,8,8]],[1710009260,[3,4,5,5,5,6,6,6,11,26]],[1710009261,[2,4,5,9,12,27,38,51,72,72]],[1710009262,[3,4,4,5,5,5,6,7,7,9]],[1710009263,[3,4,4,5,5,5,6,7,33,55]],[1710009264,[2,3,4,4,4,5,5,7,36,44]],[1710009265,[3,3,4,4,4,5,5,6,7,10]],[1710009266,[2,3,4,4,4,5,5,5,6,6]],[1710009267,[2,3,4,45,62,83,135,169,239,276]],[1710009268,[2,4,5,31,41,64,72,104,137,188]],[1710009269,[2,3,4,5,5,6,16,25,53,54]],[1710009270,[2,3,4,4,4,4,4,5,6,7]],[1710009271,[2,3,3,4,4,4,4,5,5,11]],[1710009272,[2,3,3,4,4,4,4,4,16,33]],[1710009273,[2,3,3,4,4,4,4,6,22,37]],[1710009274,[2,3,3,3,3,4,4,4,5,5]],[1710009275,[2,3,3,3,4,4,4,4,5,6]],[1710009276,[2,3,3,4,4,4,4,6,15,21]],[1710009277,[2,3,3,4,4,5,7,26,56,61]],[1710009278,[2,3,3,3,4,4,4,4,5,5]],[1710009279,[2,3,3,3,3,4,4,4,5,5]],[1710009280,[2,3,3,4,4,10,31,51,64,72]],[1710009281,[2,3,3,4,6,15,33,52,65,71]],[1710009282,[1,2,3,32,40,47,53,61,69,71]],[1710009283,[2,3,3,10,18,32,46,57,62,70]],[1710009284,[2,2,3,3,3,3,4,4,5,15]],[1710009285,[2,2,3,3,3,3,4,4,41,56]],[1710009286,[1,2,3,3,3,4,21,44,59,72]],[1710009287,[1,3,12,45,53,56,63,68,71,72]],[1710009288,[1,4,27,51,54,61,65,72,77,84]],[1710009289,[1,2,16,54,61,70,79,104,132,158]],[1710009290,[1,2,3,4,8,26,43,54,70,74]],[1710009291,[2,3,3,30,40,51,57,66,77,80]],[1710009292,[1,9,31,58,64,68,71,77,81,86]],[1710009293,[1,2,3,25,33,44,52,68,72,75]],[1710009294,[1,2,3,29,40,48,60,69,83,87]],[1710009295,[1,8,27,53,59,64,68,73,79,85]],[1710009296,[1,2,2,11,18,29,41,54,79,84]],[1710009297,[1,2,2,2,3,3,5,18,62,68]],[1710009298,[1,2,2,15,23,31,42,54,64,67]],[1710009299,[1,2,2,2,3,3,3,21,46,54]],[1710009300,[1,2,2,28,36,45,59,70,79,83]],[1710009301,[1,1,2,11,20,31,42,52,69,78]],[1710009302,[1,2,2,2,2,2,3,4,30,39]],[1710009303,[1,2,3,32,39,47,57,67,76,82]],[1710009304,[1,2,2,33,40,52,65,74,80,84]],[1710009305,[1,2,2,3,6,17,30,45,69,75]],[1710009306,[1,2,10,40,48,58,65,74,80,85]],[1710009307,[1,2,14,44,52,56,65,72,78,81]],[1710009308,[1,12,37,60,68,72,75,80,85,92]],[1710009309,[1,2,2,3,3,6,23,48,76,33858]],[1710009310,[1,2,2,27,35,47,57,67,82,33441]],[1710009311,[1,2,21,49,56,61,68,75,81,82]],[1710009312,[1,2,2,2,2,3,4,16,38,44]],[1710009313,[1,1,2,3,11,24,37,52,74,77]],[1710009314,[1,1,12,43,49,57,64,71,79,82]],[1710009315,[1,1,2,2,2,2,4,22,43,51]],[1710009316,[1,2,2,11,22,35,46,63,69,73]],[1710009317,[1,2,6,41,45,54,62,71,78,81]],[1710009318,[1,1,2,2,2,2,2,4,24,31]],[1710009319,[1,1,2,2,2,4,18,39,67,83]],[1710009320,[1,1,2,2,3,11,23,41,69,76]],[1710009321,[1,2,2,2,2,2,3,16,49,59]],[1710009322,[1,2,2,2,2,2,2,3,3,3]],[1710009323,[1,2,2,2,2,2,3,3,3,4]],[1710009324,[1,2,2,2,2,2,2,3,3,4]],[1710009325,[1,2,2,2,2,2,2,3,12,22]],[1710009326,[1,1,2,2,2,2,2,2,3,3]],[1710009327,[1,1,1,2,2,2,2,2,3,5]],[1710009328,[1,1,1,2,2,2,2,2,3,3]],[1710009329,[1,1,1,2,2,2,2,3,22,17136]],[1710009330,[1,1,2,2,2,3,16,40,63,71]],[1710009331,[1,1,2,2,2,2,2,2,3,3]],[1710009332,[0,1,1,1,2,2,2,2,3,4]],[1710009333,[1,1,1,2,2,2,2,2,3,10367]],[1710009334,[1,1,2,2,2,2,2,2,3,4]],[1710009335,[1,1,2,2,2,8,30,52,72,83]],[1710009336,[1,2,2,2,2,3,5,27,58,66]],[1710009337,[1,1,2,2,2,2,2,3,3,3]],[1710009338,[1,1,2,2,2,2,2,2,3,3]],[1710009339,[1,1,1,2,2,2,2,3,43,52]],[1710009340,[1,2,17,49,59,65,71,76,81,88]],[1710009341,[1,1,1,2,2,2,2,3,3,2191]],[1710009342,[1,1,2,2,2,2,2,3,3,857]],[1710009343,[1,2,2,2,2,3,11,29,68,75]],[1710009344,[1,1,2,2,2,2,2,3,3,4]],[1710009345,[1,1,2,2,2,3,3,4,5,9]],[1710009346,[1,2,2,3,4,4,9,34,59,71]],[1710009347,[2,4,775,2276,2595,2627,2724,2758,2785,3318]],[1710009348,[1658,1900,1960,2023,2034,2043,2065,2090,2100,2101]],[1710009349,null],[1710009350,[96,96,96,96,96,96,96,96,96,96]],[1710009351,null],[1710009352,null],[1710009353,null],[1710009354,null],[1710009355,null],[1710009356,null],[1710009357,null],[1710009358,null],[1710009359,null],[1710009360,null],[1710009361,null],[1710009362,null],[1710009363,null],[1710009364,null],[1710009365,null],[1710009366,null],[1710009367,null],[1710009368,null],[1710009369,null],[1710009370,null],[1710009371,null],[1710009372,null],[1710009373,null],[1710009374,null],[1710009375,null],[1710009376,null],[1710009377,null],[1710009378,null],[1710009379,null],[1710009380,null],[1710009381,null],[1710009382,null],[1710009383,null],[1710009384,null],[1710009385,null],[1710009386,null],[1710009387,null],[1710009388,null],[1710009389,null],[1710009390,null],[1710009391,null],[1710009392,null],[1710009393,null],[1710009394,null],[1710009395,null],[1710009396,null],[1710009397,null],[1710009398,null],[1710009399,null],[1710009400,null],[1710009401,null],[1710009402,null],[1710009403,null],[1710009404,null],[1710009405,null],[1710009406,null],[1710009407,null],[1710009408,null],[1710009409,null],[1710009410,null],[1710009411,null],[1710009412,null],[1710009413,null],[1710009414,null],[1710009415,null],[1710009416,null],[1710009417,null],[1710009418,null],[1710009419,null],[1710009420,null],[1710009421,null],[1710009422,null],[1710009423,null],[1710009424,null],[1710009425,null],[1710009426,null],[1710009427,null],[1710009428,null],[1710009429,null],[1710009430,null],[1710009431,null],[1710009432,null],[1710009433,null],[1710009434,null],[1710009435,null],[1710009436,null],[1710009437,null],[1710009438,null],[1710009439,null],[1710009440,null],[1710009441,null],[1710009442,null],[1710009443,null],[1710009444,null],[1710009445,null],[1710009446,null],[1710009447,null],[1710009448,null],[1710009449,null],[1710009450,null],[1710009451,null],[1710009452,null],[1710009453,null],[1710009454,null],[1710009455,null],[1710009456,null],[1710009457,null],[1710009458,null],[1710009459,null],[1710009460,null],[1710009461,null],[1710009462,null],[1710009463,null],[1710009464,null],[1710009465,null],[1710009466,null],[1710009467,null],[1710009468,null],[1710009469,null],[1710009470,null],[1710009471,null],[1710009472,null],[1710009473,null],[1710009474,null],[1710009475,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([[1710009227,[25,25,0]],[1710009228,[0,0,0]],[1710009229,[0,0,0]],[1710009230,[1,1,0]],[1710009231,[25,25,0]],[1710009232,[1,1,0]],[1710009233,[33,33,0]],[1710009234,[41,41,0]],[1710009235,[6,6,0]],[1710009236,[9,9,0]],[1710009237,[11,11,0]],[1710009238,[13,13,0]],[1710009239,[18,18,0]],[1710009240,[19,19,0]],[1710009241,[24,24,0]],[1710009242,[26,26,0]],[1710009243,[27,27,0]],[1710009244,[32,32,0]],[1710009245,[34,34,0]],[1710009246,[37,37,0]],[1710009247,[40,40,0]],[1710009248,[42,42,0]],[1710009249,[45,45,0]],[1710009250,[48,48,0]],[1710009251,[50,50,0]],[1710009252,[54,54,0]],[1710009253,[56,56,0]],[1710009254,[60,60,0]],[1710009255,[62,62,0]],[1710009256,[65,65,0]],[1710009257,[67,67,0]],[1710009258,[71,71,0]],[1710009259,[73,73,0]],[1710009260,[77,77,0]],[1710009261,[78,78,0]],[1710009262,[81,81,0]],[1710009263,[84,84,0]],[1710009264,[89,89,0]],[1710009265,[90,90,0]],[1710009266,[92,92,0]],[1710009267,[96,96,0]],[1710009268,[98,98,0]],[1710009269,[102,102,0]],[1710009270,[104,104,0]],[1710009271,[108,108,0]],[1710009272,[109,109,0]],[1710009273,[113,113,0]],[1710009274,[115,115,0]],[1710009275,[119,119,0]],[1710009276,[121,121,0]],[1710009277,[124,124,0]],[1710009278,[126,126,0]],[1710009279,[129,129,0]],[1710009280,[133,133,0]],[1710009281,[135,135,0]],[1710009282,[137,137,0]],[1710009283,[142,142,0]],[1710009284,[142,142,0]],[1710009285,[147,147,0]],[1710009286,[150,150,0]],[1710009287,[151,151,0]],[1710009288,[155,148,7]],[1710009289,[157,157,0]],[1710009290,[160,160,0]],[1710009291,[163,163,0]],[1710009292,[166,166,0]],[1710009293,[170,170,0]],[1710009294,[171,171,0]],[1710009295,[174,174,0]],[1710009296,[177,176,1]],[1710009297,[181,181,0]],[1710009298,[182,181,1]],[1710009299,[187,186,1]],[1710009300,[188,188,0]],[1710009301,[192,192,0]],[1710009302,[194,194,0]],[1710009303,[196,196,0]],[1710009304,[199,199,0]],[1710009305,[203,203,0]],[1710009306,[205,204,1]],[1710009307,[208,208,0]],[1710009308,[211,211,0]],[1710009309,[213,213,0]],[1710009310,[217,217,0]],[1710009311,[219,219,0]],[1710009312,[222,222,0]],[1710009313,[226,226,0]],[1710009314,[227,227,0]],[1710009315,[230,230,0]],[1710009316,[233,233,0]],[1710009317,[237,236,1]],[1710009318,[238,238,0]],[1710009319,[243,243,0]],[1710009320,[244,242,2]],[1710009321,[248,247,1]],[1710009322,[251,251,0]],[1710009323,[252,252,0]],[1710009324,[256,256,0]],[1710009325,[259,259,0]],[1710009326,[262,262,0]],[1710009327,[264,264,0]],[1710009328,[267,267,0]],[1710009329,[270,270,0]],[1710009330,[272,272,0]],[1710009331,[275,274,1]],[1710009332,[279,279,0]],[1710009333,[281,281,0]],[1710009334,[284,284,0]],[1710009335,[286,286,0]],[1710009336,[290,290,0]],[1710009337,[291,291,0]],[1710009338,[296,296,0]],[1710009339,[299,299,0]],[1710009340,[301,301,0]],[1710009341,[303,303,0]],[1710009342,[306,306,0]],[1710009343,[309,309,0]],[1710009344,[313,313,0]],[1710009345,[314,314,0]],[1710009346,[318,318,0]],[1710009347,[320,175,145]],[1710009348,[323,40,283]],[1710009349,[326,0,326]],[1710009350,[330,1,329]],[1710009351,[332,0,332]],[1710009352,[333,0,333]],[1710009353,[338,0,338]],[1710009354,[340,0,340]],[1710009355,[340,0,340]],[1710009356,[340,0,340]],[1710009357,[340,0,340]],[1710009358,[340,0,340]],[1710009359,[340,0,340]],[1710009360,[340,0,340]],[1710009361,[340,0,340]],[1710009362,[340,0,340]],[1710009363,[340,0,340]],[1710009364,[340,0,340]],[1710009365,[340,0,340]],[1710009366,[340,0,340]],[1710009367,[340,0,340]],[1710009368,[340,0,340]],[1710009369,[340,0,340]],[1710009370,[340,0,340]],[1710009371,[340,0,340]],[1710009372,[340,0,340]],[1710009373,[340,0,340]],[1710009374,[340,0,340]],[1710009375,[340,0,340]],[1710009376,[340,0,340]],[1710009377,[340,0,340]],[1710009378,[340,0,340]],[1710009379,[340,0,340]],[1710009380,[340,0,340]],[1710009381,[340,0,340]],[1710009382,[340,0,340]],[1710009383,[340,0,340]],[1710009384,[340,0,340]],[1710009385,[340,0,340]],[1710009386,[340,0,340]],[1710009387,[340,0,340]],[1710009388,[340,0,340]],[1710009389,[340,0,340]],[1710009390,[340,0,340]],[1710009391,[340,0,340]],[1710009392,[340,0,340]],[1710009393,[340,0,340]],[1710009394,[340,0,340]],[1710009395,[340,0,340]],[1710009396,[340,0,340]],[1710009397,[340,0,340]],[1710009398,[340,0,340]],[1710009399,[340,0,340]],[1710009400,[340,0,340]],[1710009401,[340,0,340]],[1710009402,[340,0,340]],[1710009403,[340,0,340]],[1710009404,[340,0,340]],[1710009405,[340,0,340]],[1710009406,[340,0,340]],[1710009407,[340,0,340]],[1710009408,[340,0,340]],[1710009409,[340,0,340]],[1710009410,[340,0,340]],[1710009411,[340,0,340]],[1710009412,[340,0,340]],[1710009413,[340,0,340]],[1710009414,[340,0,340]],[1710009415,[340,0,340]],[1710009416,[340,0,340]],[1710009417,[340,0,340]],[1710009418,[340,0,340]],[1710009419,[340,0,340]],[1710009420,[340,0,340]],[1710009421,[340,0,340]],[1710009422,[340,0,340]],[1710009423,[340,0,340]],[1710009424,[340,0,340]],[1710009425,[340,0,340]],[1710009426,[340,0,340]],[1710009427,[340,0,340]],[1710009428,[340,0,340]],[1710009429,[340,0,340]],[1710009430,[340,0,340]],[1710009431,[340,0,340]],[1710009432,[340,0,340]],[1710009433,[340,0,340]],[1710009434,[340,0,340]],[1710009435,[340,0,340]],[1710009436,[340,0,340]],[1710009437,[340,0,340]],[1710009438,[340,0,340]],[1710009439,[340,0,340]],[1710009440,[340,0,340]],[1710009441,[340,0,340]],[1710009442,[340,0,340]],[1710009443,[340,0,340]],[1710009444,[340,0,340]],[1710009445,[340,0,340]],[1710009446,[340,0,340]],[1710009447,[340,0,340]],[1710009448,[340,0,340]],[1710009449,[340,0,340]],[1710009450,[340,0,340]],[1710009451,[340,0,340]],[1710009452,[340,0,340]],[1710009453,[340,0,340]],[1710009454,[340,0,340]],[1710009455,[340,0,340]],[1710009456,[340,0,340]],[1710009457,[340,0,340]],[1710009458,[340,0,340]],[1710009459,[340,0,340]],[1710009460,[340,0,340]],[1710009461,[340,0,340]],[1710009462,[340,0,340]],[1710009463,[340,0,340]],[1710009464,[340,0,340]],[1710009465,[340,0,340]],[1710009466,[340,0,340]],[1710009467,[340,0,340]],[1710009468,[340,0,340]],[1710009469,[340,0,340]],[1710009470,[340,0,340]],[1710009471,[340,0,340]],[1710009472,[340,0,340]],[1710009473,[340,0,340]],[1710009474,[160,0,160]],[1710009475,[0,0,0]]]);
var requestsChart = new Highcharts.StockChart({
chart: {
renderTo: 'requests',
zoomType: 'x',
marginBottom: 60
},
credits: { enabled: false },
legend: {
enabled: true,
floating: true,
y: -65,
borderWidth: 0,
itemStyle: { fontWeight: "normal" },
symbolRadius: 0
},
title: { text: 'A title to let highcharts reserve the place for the title set later' },
navigator: {
maskInside: false
},
rangeSelector: {
buttonSpacing: 0,
buttonTheme: {
fill: '#CFC9C6',
padding: 1,
stroke: '#000000',
'stroke-width': 0.25,
style: {
color: '#000000',
fontWeight: 'bold',
},
states: {
stroke: '#000000',
'stroke-width': 0.25,
hover: {
fill: '#92918C',
style: { color: 'black' }
},