-
Notifications
You must be signed in to change notification settings - Fork 925
/
index.html
1215 lines (1145 loc) · 93.6 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="shortcut icon" type="image/x-icon" href="style/favicon.ico"/>
<link href="style/style.css" rel="stylesheet" type="text/css" />
<link href="style/bootstrap.min.css" rel="stylesheet" type="text/css" />
<script src="js/jquery-3.5.1.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/gatling.js"></script>
<script src="js/menu.js"></script>
<script src="js/ellipsis.js"></script>
<script src="js/all_sessions.js"></script>
<script src="js/stats.js"></script>
<script src="js/highstock.js"></script>
<script src="js/highcharts-more.js"></script>
<script src="js/theme.js"></script>
<script src="js/unpack.js"></script>
<title>Gatling Stats - Global Information</title>
</head>
<body>
<script>
const storedTheme = localStorage.getItem('theme') || (window.matchMedia("(prefers-color-scheme: dark)").matches ? "dark" : "light");
if (storedTheme) document.documentElement.setAttribute('data-theme', storedTheme)
function toggleTheme() {
const currentTheme = document.documentElement.getAttribute("data-theme");
const targetTheme = currentTheme === "light" ? "dark" : "light";
document.documentElement.setAttribute('data-theme', targetTheme)
localStorage.setItem('theme', targetTheme);
};
</script>
<div class="app-container">
<div class="frise"></div>
<div class="head">
<div class="gatling-open-source">
<a class="gatling-logo gatling-logo-light" href="https://gatling.io" target="blank_" title="Gatling Home Page"><img alt="Gatling" src="style/logo-light.svg"/></a>
<a class="gatling-logo gatling-logo-dark" href="https://gatling.io" target="blank_" title="Gatling Home Page"><img alt="Gatling" src="style/logo-dark.svg"/></a>
<a class="gatling-documentation" href="https://gatling.io/docs/" target="_blank">Documentation</a>
</div>
<div class="nav spacer"></div>
<a class="enterprise" href="https://gatling.io/enterprise/next-step/" target="_blank"><strong>Try</strong>
<img class="logo-enterprise-light" alt="Gatling Enterprise" src="style/logo-enterprise-light.svg"/>
<img class="logo-enterprise-dark" alt="Gatling Enterprise" src="style/logo-enterprise-dark.svg"/>
</a>
<button id="theme-toggle" class="theme-toggle" type="button" onclick="toggleTheme()" aria-label="Toggle user interface mode">
<span class="toggle-dark"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-moon"><path d="M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z"></path></svg></span>
<span class="toggle-light"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-sun"><circle cx="12" cy="12" r="5"></circle><line x1="12" y1="1" x2="12" y2="3"></line><line x1="12" y1="21" x2="12" y2="23"></line><line x1="4.22" y1="4.22" x2="5.64" y2="5.64"></line><line x1="18.36" y1="18.36" x2="19.78" y2="19.78"></line><line x1="1" y1="12" x2="3" y2="12"></line><line x1="21" y1="12" x2="23" y2="12"></line><line x1="4.22" y1="19.78" x2="5.64" y2="18.36"></line><line x1="18.36" y1="5.64" x2="19.78" y2="4.22"></line></svg></span>
</button>
</div>
<div class="container details">
<div class="nav">
<ul></ul>
</div>
<div class="cadre">
<div class="content">
<div class="content-header">
<div class="onglet">
RinhaBackendCrebitosSimulation
</div>
<div class="sous-menu" id="sousMenu">
<div class="sous-menu-spacer">
<div class="item ouvert"><a href="index.html">Global</a></div>
<div class="item "><a id="details_link" href="#">Details</a></div>
</div>
</div>
</div>
<div class="content-in">
<div class="container-article">
<div class="article">
<div class="schema-container">
<div id="ranges" class="schema ranges">
</div>
<div class="schema polar">
<div id="container_number_of_requests"></div>
</div>
<div class="simulation-card">
<div class="simulation-version-information">
<span class="simulation-information-title">Gatling Version</span>
<span class="simulation-information-item">
<span class="simulation-information-label">Version: </span>
<span>3.10.3</span>
</span>
<span class="simulation-information-item">
<span class="simulation-information-label">Released: </span>
<span>2023-12-20</span>
</span>
</div>
<div id="simulation-information" class="simulation-version-information">
<span class="simulation-information-title">Run Information</span>
<div class="simulation-information-container">
<span class="simulation-information-item">
<span class="simulation-information-label">Date: </span>
<span>2024-02-26 19:32:14 GMT</span>
</span>
<span class="simulation-information-item">
<span class="simulation-information-label">Duration: </span>
<span>4m 4s </span>
</span>
<span class="simulation-tooltip simulation-information-item description" title="Description" data-content="Rinha de Backend - 2024/Q1: Crébito - hendrikaraujo">
<span class="simulation-information-label">Description: </span>
<span>Rinha de Backend - 2024/Q1: Crébito - hendrikaraujo</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">j.i.IOException: Premature close<span class="value" style="display:none">0</span></td>
<td class="value error-col-2 total ko">30201</td>
<td class="value error-col-3 total ko">73.71 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">j.n.ConnectException: finishConnect(..) failed: Connection refused<span class="value" style="display:none">1</span></td>
<td class="value error-col-2 total ko">10251</td>
<td class="value error-col-3 total ko">25.019 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">status.find.in(200,422), but actually found 502<span class="value" style="display:none">2</span></td>
<td class="value error-col-2 total ko">333</td>
<td class="value error-col-3 total ko">0.813 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">status.find.in(200), but actually found 502<span class="value" style="display:none">3</span></td>
<td class="value error-col-2 total ko">170</td>
<td class="value error-col-3 total ko">0.415 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">status.find.in([200, 209], 304), found 502<span class="value" style="display:none">4</span></td>
<td class="value error-col-2 total ko">18</td>
<td class="value error-col-3 total ko">0.044 %</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: [
[1708975935000,0],[1708975936000,0],[1708975937000,0],[1708975938000,0],[1708975939000,1],[1708975940000,2],[1708975941000,2],[1708975942000,4],[1708975943000,4],[1708975944000,5],[1708975945000,6],[1708975946000,7],[1708975947000,8],[1708975948000,8],[1708975949000,10],[1708975950000,10],[1708975951000,12],[1708975952000,12],[1708975953000,14],[1708975954000,14],[1708975955000,15],[1708975956000,16],[1708975957000,17],[1708975958000,17],[1708975959000,19],[1708975960000,20],[1708975961000,20],[1708975962000,22],[1708975963000,22],[1708975964000,23],[1708975965000,25],[1708975966000,25],[1708975967000,26],[1708975968000,26],[1708975969000,28],[1708975970000,29],[1708975971000,30],[1708975972000,30],[1708975973000,32],[1708975974000,32],[1708975975000,33],[1708975976000,34],[1708975977000,35],[1708975978000,36],[1708975979000,37],[1708975980000,38],[1708975981000,39],[1708975982000,39],[1708975983000,41],[1708975984000,41],[1708975985000,43],[1708975986000,43],[1708975987000,44],[1708975988000,45],[1708975989000,46],[1708975990000,47],[1708975991000,48],[1708975992000,48],[1708975993000,50],[1708975994000,50],[1708975995000,52],[1708975996000,52],[1708975997000,53],[1708975998000,54],[1708975999000,56],[1708976000000,55],[1708976001000,57],[1708976002000,58],[1708976003000,59],[1708976004000,59],[1708976005000,61],[1708976006000,62],[1708976007000,64],[1708976008000,63],[1708976009000,64],[1708976010000,66],[1708976011000,67],[1708976012000,68],[1708976013000,69],[1708976014000,69],[1708976015000,71],[1708976016000,72],[1708976017000,73],[1708976018000,73],[1708976019000,74],[1708976020000,75],[1708976021000,76],[1708976022000,76],[1708976023000,77],[1708976024000,79],[1708976025000,79],[1708976026000,79],[1708976027000,81],[1708976028000,82],[1708976029000,82],[1708976030000,84],[1708976031000,85],[1708976032000,85],[1708976033000,86],[1708976034000,86],[1708976035000,88],[1708976036000,89],[1708976037000,89],[1708976038000,91],[1708976039000,91],[1708976040000,92],[1708976041000,94],[1708976042000,94],[1708976043000,95],[1708976044000,96],[1708976045000,97],[1708976046000,97],[1708976047000,99],[1708976048000,132],[1708976049000,139],[1708976050000,184],[1708976051000,103],[1708976052000,127],[1708976053000,104],[1708976054000,120],[1708976055000,121],[1708976056000,187],[1708976057000,107],[1708976058000,159],[1708976059000,110],[1708976060000,161],[1708976061000,266],[1708976062000,110],[1708976063000,197],[1708976064000,110],[1708976065000,110],[1708976066000,121],[1708976067000,174],[1708976068000,215],[1708976069000,111],[1708976070000,134],[1708976071000,110],[1708976072000,110],[1708976073000,127],[1708976074000,184],[1708976075000,111],[1708976076000,110],[1708976077000,110],[1708976078000,158],[1708976079000,123],[1708976080000,110],[1708976081000,110],[1708976082000,110],[1708976083000,131],[1708976084000,233],[1708976085000,110],[1708976086000,110],[1708976087000,110],[1708976088000,110],[1708976089000,111],[1708976090000,110],[1708976091000,132],[1708976092000,110],[1708976093000,110],[1708976094000,110],[1708976095000,110],[1708976096000,110],[1708976097000,191],[1708976098000,110],[1708976099000,110],[1708976100000,110],[1708976101000,110],[1708976102000,110],[1708976103000,110],[1708976104000,110],[1708976105000,110],[1708976106000,111],[1708976107000,111],[1708976108000,110],[1708976109000,110],[1708976110000,110],[1708976111000,132],[1708976112000,110],[1708976113000,110],[1708976114000,110],[1708976115000,110],[1708976116000,110],[1708976117000,110],[1708976118000,110],[1708976119000,110],[1708976120000,110],[1708976121000,110],[1708976122000,110],[1708976123000,110],[1708976124000,119],[1708976125000,150],[1708976126000,233],[1708976127000,110],[1708976128000,130],[1708976129000,110],[1708976130000,110],[1708976131000,110],[1708976132000,110],[1708976133000,110],[1708976134000,110],[1708976135000,110],[1708976136000,110],[1708976137000,110],[1708976138000,110],[1708976139000,110],[1708976140000,110],[1708976141000,110],[1708976142000,110],[1708976143000,110],[1708976144000,110],[1708976145000,110],[1708976146000,110],[1708976147000,110],[1708976148000,115],[1708976149000,127],[1708976150000,110],[1708976151000,110],[1708976152000,110],[1708976153000,110],[1708976154000,110],[1708976155000,110],[1708976156000,110],[1708976157000,110],[1708976158000,110],[1708976159000,110],[1708976160000,110],[1708976161000,110],[1708976162000,110],[1708976163000,110],[1708976164000,110],[1708976165000,110],[1708976166000,110],[1708976167000,110],[1708976168000,110],[1708976169000,125],[1708976170000,118],[1708976171000,110],[1708976172000,110],[1708976173000,110],[1708976174000,110],[1708976175000,110],[1708976176000,110],[1708976177000,123],[1708976178000,130],[1708976179000,165]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#68b65c',
name: 'débitos',
data: [
[1708975935000,0],[1708975936000,0],[1708975937000,0],[1708975938000,0],[1708975939000,1],[1708975940000,2],[1708975941000,4],[1708975942000,6],[1708975943000,7],[1708975944000,9],[1708975945000,11],[1708975946000,13],[1708975947000,15],[1708975948000,16],[1708975949000,19],[1708975950000,20],[1708975951000,22],[1708975952000,24],[1708975953000,25],[1708975954000,28],[1708975955000,29],[1708975956000,31],[1708975957000,33],[1708975958000,35],[1708975959000,37],[1708975960000,38],[1708975961000,40],[1708975962000,42],[1708975963000,44],[1708975964000,46],[1708975965000,47],[1708975966000,50],[1708975967000,51],[1708975968000,53],[1708975969000,55],[1708975970000,56],[1708975971000,59],[1708975972000,60],[1708975973000,63],[1708975974000,64],[1708975975000,67],[1708975976000,69],[1708975977000,70],[1708975978000,72],[1708975979000,75],[1708975980000,74],[1708975981000,77],[1708975982000,79],[1708975983000,80],[1708975984000,82],[1708975985000,84],[1708975986000,86],[1708975987000,88],[1708975988000,89],[1708975989000,92],[1708975990000,93],[1708975991000,95],[1708975992000,97],[1708975993000,98],[1708975994000,101],[1708975995000,102],[1708975996000,104],[1708975997000,106],[1708975998000,108],[1708975999000,110],[1708976000000,111],[1708976001000,113],[1708976002000,115],[1708976003000,117],[1708976004000,119],[1708976005000,120],[1708976006000,123],[1708976007000,124],[1708976008000,127],[1708976009000,129],[1708976010000,130],[1708976011000,133],[1708976012000,134],[1708976013000,136],[1708976014000,138],[1708976015000,140],[1708976016000,145],[1708976017000,143],[1708976018000,145],[1708976019000,148],[1708976020000,148],[1708976021000,151],[1708976022000,152],[1708976023000,154],[1708976024000,155],[1708976025000,158],[1708976026000,160],[1708976027000,161],[1708976028000,162],[1708976029000,165],[1708976030000,166],[1708976031000,168],[1708976032000,170],[1708976033000,171],[1708976034000,174],[1708976035000,175],[1708976036000,177],[1708976037000,179],[1708976038000,181],[1708976039000,183],[1708976040000,184],[1708976041000,187],[1708976042000,189],[1708976043000,191],[1708976044000,193],[1708976045000,194],[1708976046000,197],[1708976047000,198],[1708976048000,269],[1708976049000,286],[1708976050000,373],[1708976051000,205],[1708976052000,253],[1708976053000,208],[1708976054000,240],[1708976055000,243],[1708976056000,390],[1708976057000,215],[1708976058000,307],[1708976059000,220],[1708976060000,322],[1708976061000,528],[1708976062000,221],[1708976063000,395],[1708976064000,220],[1708976065000,220],[1708976066000,239],[1708976067000,350],[1708976068000,445],[1708976069000,220],[1708976070000,268],[1708976071000,220],[1708976072000,220],[1708976073000,252],[1708976074000,374],[1708976075000,222],[1708976076000,221],[1708976077000,221],[1708976078000,317],[1708976079000,245],[1708976080000,220],[1708976081000,220],[1708976082000,220],[1708976083000,260],[1708976084000,470],[1708976085000,220],[1708976086000,220],[1708976087000,221],[1708976088000,222],[1708976089000,220],[1708976090000,220],[1708976091000,265],[1708976092000,220],[1708976093000,220],[1708976094000,220],[1708976095000,220],[1708976096000,220],[1708976097000,384],[1708976098000,220],[1708976099000,220],[1708976100000,220],[1708976101000,220],[1708976102000,220],[1708976103000,220],[1708976104000,220],[1708976105000,220],[1708976106000,221],[1708976107000,220],[1708976108000,220],[1708976109000,220],[1708976110000,220],[1708976111000,263],[1708976112000,220],[1708976113000,220],[1708976114000,220],[1708976115000,220],[1708976116000,220],[1708976117000,220],[1708976118000,220],[1708976119000,220],[1708976120000,220],[1708976121000,220],[1708976122000,220],[1708976123000,220],[1708976124000,239],[1708976125000,286],[1708976126000,450],[1708976127000,220],[1708976128000,259],[1708976129000,220],[1708976130000,220],[1708976131000,220],[1708976132000,220],[1708976133000,220],[1708976134000,220],[1708976135000,220],[1708976136000,220],[1708976137000,220],[1708976138000,220],[1708976139000,220],[1708976140000,220],[1708976141000,220],[1708976142000,220],[1708976143000,220],[1708976144000,220],[1708976145000,220],[1708976146000,220],[1708976147000,220],[1708976148000,230],[1708976149000,253],[1708976150000,220],[1708976151000,220],[1708976152000,220],[1708976153000,220],[1708976154000,220],[1708976155000,220],[1708976156000,220],[1708976157000,220],[1708976158000,220],[1708976159000,220],[1708976160000,220],[1708976161000,220],[1708976162000,220],[1708976163000,220],[1708976164000,220],[1708976165000,220],[1708976166000,220],[1708976167000,220],[1708976168000,220],[1708976169000,251],[1708976170000,238],[1708976171000,220],[1708976172000,220],[1708976173000,220],[1708976174000,220],[1708976175000,220],[1708976176000,220],[1708976177000,252],[1708976178000,261],[1708976179000,323]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#f15b4f',
name: 'extratos',
data: [
[1708975935000,0],[1708975936000,0],[1708975937000,0],[1708975938000,0],[1708975939000,1],[1708975940000,2],[1708975941000,1],[1708975942000,1],[1708975943000,1],[1708975944000,1],[1708975945000,2],[1708975946000,1],[1708975947000,2],[1708975948000,2],[1708975949000,1],[1708975950000,2],[1708975951000,2],[1708975952000,2],[1708975953000,2],[1708975954000,2],[1708975955000,2],[1708975956000,2],[1708975957000,3],[1708975958000,2],[1708975959000,3],[1708975960000,2],[1708975961000,3],[1708975962000,2],[1708975963000,3],[1708975964000,3],[1708975965000,3],[1708975966000,3],[1708975967000,3],[1708975968000,3],[1708975969000,3],[1708975970000,4],[1708975971000,3],[1708975972000,3],[1708975973000,4],[1708975974000,3],[1708975975000,4],[1708975976000,4],[1708975977000,4],[1708975978000,4],[1708975979000,4],[1708975980000,4],[1708975981000,4],[1708975982000,4],[1708975983000,4],[1708975984000,4],[1708975985000,5],[1708975986000,4],[1708975987000,5],[1708975988000,5],[1708975989000,4],[1708975990000,5],[1708975991000,5],[1708975992000,5],[1708975993000,5],[1708975994000,5],[1708975995000,5],[1708975996000,5],[1708975997000,6],[1708975998000,5],[1708975999000,6],[1708976000000,5],[1708976001000,6],[1708976002000,5],[1708976003000,6],[1708976004000,6],[1708976005000,6],[1708976006000,6],[1708976007000,6],[1708976008000,6],[1708976009000,6],[1708976010000,7],[1708976011000,6],[1708976012000,6],[1708976013000,7],[1708976014000,6],[1708976015000,7],[1708976016000,7],[1708976017000,7],[1708976018000,7],[1708976019000,7],[1708976020000,7],[1708976021000,7],[1708976022000,7],[1708976023000,7],[1708976024000,7],[1708976025000,8],[1708976026000,7],[1708976027000,8],[1708976028000,8],[1708976029000,7],[1708976030000,8],[1708976031000,8],[1708976032000,8],[1708976033000,8],[1708976034000,8],[1708976035000,8],[1708976036000,8],[1708976037000,9],[1708976038000,8],[1708976039000,9],[1708976040000,8],[1708976041000,9],[1708976042000,8],[1708976043000,9],[1708976044000,9],[1708976045000,9],[1708976046000,9],[1708976047000,9],[1708976048000,11],[1708976049000,16],[1708976050000,19],[1708976051000,9],[1708976052000,12],[1708976053000,10],[1708976054000,11],[1708976055000,11],[1708976056000,17],[1708976057000,10],[1708976058000,15],[1708976059000,10],[1708976060000,18],[1708976061000,27],[1708976062000,10],[1708976063000,18],[1708976064000,10],[1708976065000,10],[1708976066000,10],[1708976067000,16],[1708976068000,17],[1708976069000,11],[1708976070000,12],[1708976071000,10],[1708976072000,10],[1708976073000,12],[1708976074000,18],[1708976075000,10],[1708976076000,10],[1708976077000,10],[1708976078000,15],[1708976079000,11],[1708976080000,10],[1708976081000,10],[1708976082000,10],[1708976083000,13],[1708976084000,23],[1708976085000,10],[1708976086000,10],[1708976087000,10],[1708976088000,10],[1708976089000,10],[1708976090000,10],[1708976091000,12],[1708976092000,10],[1708976093000,10],[1708976094000,10],[1708976095000,10],[1708976096000,10],[1708976097000,18],[1708976098000,10],[1708976099000,10],[1708976100000,10],[1708976101000,10],[1708976102000,10],[1708976103000,10],[1708976104000,10],[1708976105000,10],[1708976106000,10],[1708976107000,10],[1708976108000,10],[1708976109000,10],[1708976110000,10],[1708976111000,12],[1708976112000,10],[1708976113000,10],[1708976114000,10],[1708976115000,10],[1708976116000,10],[1708976117000,10],[1708976118000,10],[1708976119000,10],[1708976120000,10],[1708976121000,10],[1708976122000,10],[1708976123000,10],[1708976124000,11],[1708976125000,14],[1708976126000,22],[1708976127000,10],[1708976128000,11],[1708976129000,10],[1708976130000,10],[1708976131000,10],[1708976132000,10],[1708976133000,10],[1708976134000,10],[1708976135000,10],[1708976136000,10],[1708976137000,10],[1708976138000,10],[1708976139000,10],[1708976140000,10],[1708976141000,10],[1708976142000,10],[1708976143000,10],[1708976144000,10],[1708976145000,10],[1708976146000,10],[1708976147000,10],[1708976148000,11],[1708976149000,12],[1708976150000,10],[1708976151000,10],[1708976152000,10],[1708976153000,10],[1708976154000,10],[1708976155000,10],[1708976156000,10],[1708976157000,10],[1708976158000,10],[1708976159000,10],[1708976160000,10],[1708976161000,10],[1708976162000,10],[1708976163000,10],[1708976164000,10],[1708976165000,10],[1708976166000,10],[1708976167000,10],[1708976168000,10],[1708976169000,12],[1708976170000,11],[1708976171000,10],[1708976172000,10],[1708976173000,10],[1708976174000,10],[1708976175000,10],[1708976176000,10],[1708976177000,13],[1708976178000,13],[1708976179000,14]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FFDD00',
name: 'validação HTTP 404',
data: [
[1708975935000,0],[1708975936000,0],[1708975937000,0],[1708975938000,1],[1708975939000,0],[1708975940000,0],[1708975941000,0],[1708975942000,0],[1708975943000,0],[1708975944000,0],[1708975945000,0],[1708975946000,0],[1708975947000,0],[1708975948000,0],[1708975949000,0],[1708975950000,0],[1708975951000,0],[1708975952000,0],[1708975953000,0],[1708975954000,0],[1708975955000,0],[1708975956000,0],[1708975957000,0],[1708975958000,0],[1708975959000,0],[1708975960000,0],[1708975961000,0],[1708975962000,0],[1708975963000,0],[1708975964000,0],[1708975965000,0],[1708975966000,0],[1708975967000,0],[1708975968000,0],[1708975969000,0],[1708975970000,0],[1708975971000,0],[1708975972000,0],[1708975973000,0],[1708975974000,0],[1708975975000,0],[1708975976000,0],[1708975977000,0],[1708975978000,0],[1708975979000,0],[1708975980000,0],[1708975981000,0],[1708975982000,0],[1708975983000,0],[1708975984000,0],[1708975985000,0],[1708975986000,0],[1708975987000,0],[1708975988000,0],[1708975989000,0],[1708975990000,0],[1708975991000,0],[1708975992000,0],[1708975993000,0],[1708975994000,0],[1708975995000,0],[1708975996000,0],[1708975997000,0],[1708975998000,0],[1708975999000,0],[1708976000000,0],[1708976001000,0],[1708976002000,0],[1708976003000,0],[1708976004000,0],[1708976005000,0],[1708976006000,0],[1708976007000,0],[1708976008000,0],[1708976009000,0],[1708976010000,0],[1708976011000,0],[1708976012000,0],[1708976013000,0],[1708976014000,0],[1708976015000,0],[1708976016000,0],[1708976017000,0],[1708976018000,0],[1708976019000,0],[1708976020000,0],[1708976021000,0],[1708976022000,0],[1708976023000,0],[1708976024000,0],[1708976025000,0],[1708976026000,0],[1708976027000,0],[1708976028000,0],[1708976029000,0],[1708976030000,0],[1708976031000,0],[1708976032000,0],[1708976033000,0],[1708976034000,0],[1708976035000,0],[1708976036000,0],[1708976037000,0],[1708976038000,0],[1708976039000,0],[1708976040000,0],[1708976041000,0],[1708976042000,0],[1708976043000,0],[1708976044000,0],[1708976045000,0],[1708976046000,0],[1708976047000,0],[1708976048000,0],[1708976049000,0],[1708976050000,0],[1708976051000,0],[1708976052000,0],[1708976053000,0],[1708976054000,0],[1708976055000,0],[1708976056000,0],[1708976057000,0],[1708976058000,0],[1708976059000,0],[1708976060000,0],[1708976061000,0],[1708976062000,0],[1708976063000,0],[1708976064000,0],[1708976065000,0],[1708976066000,0],[1708976067000,0],[1708976068000,0],[1708976069000,0],[1708976070000,0],[1708976071000,0],[1708976072000,0],[1708976073000,0],[1708976074000,0],[1708976075000,0],[1708976076000,0],[1708976077000,0],[1708976078000,0],[1708976079000,0],[1708976080000,0],[1708976081000,0],[1708976082000,0],[1708976083000,0],[1708976084000,0],[1708976085000,0],[1708976086000,0],[1708976087000,0],[1708976088000,0],[1708976089000,0],[1708976090000,0],[1708976091000,0],[1708976092000,0],[1708976093000,0],[1708976094000,0],[1708976095000,0],[1708976096000,0],[1708976097000,0],[1708976098000,0],[1708976099000,0],[1708976100000,0],[1708976101000,0],[1708976102000,0],[1708976103000,0],[1708976104000,0],[1708976105000,0],[1708976106000,0],[1708976107000,0],[1708976108000,0],[1708976109000,0],[1708976110000,0],[1708976111000,0],[1708976112000,0],[1708976113000,0],[1708976114000,0],[1708976115000,0],[1708976116000,0],[1708976117000,0],[1708976118000,0],[1708976119000,0],[1708976120000,0],[1708976121000,0],[1708976122000,0],[1708976123000,0],[1708976124000,0],[1708976125000,0],[1708976126000,0],[1708976127000,0],[1708976128000,0],[1708976129000,0],[1708976130000,0],[1708976131000,0],[1708976132000,0],[1708976133000,0],[1708976134000,0],[1708976135000,0],[1708976136000,0],[1708976137000,0],[1708976138000,0],[1708976139000,0],[1708976140000,0],[1708976141000,0],[1708976142000,0],[1708976143000,0],[1708976144000,0],[1708976145000,0],[1708976146000,0],[1708976147000,0],[1708976148000,0],[1708976149000,0],[1708976150000,0],[1708976151000,0],[1708976152000,0],[1708976153000,0],[1708976154000,0],[1708976155000,0],[1708976156000,0],[1708976157000,0],[1708976158000,0],[1708976159000,0],[1708976160000,0],[1708976161000,0],[1708976162000,0],[1708976163000,0],[1708976164000,0],[1708976165000,0],[1708976166000,0],[1708976167000,0],[1708976168000,0],[1708976169000,0],[1708976170000,0],[1708976171000,0],[1708976172000,0],[1708976173000,0],[1708976174000,0],[1708976175000,0],[1708976176000,0],[1708976177000,0],[1708976178000,0],[1708976179000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00D5FF',
name: 'validações',
data: [
[1708975935000,0],[1708975936000,0],[1708975937000,0],[1708975938000,5],[1708975939000,5],[1708975940000,0],[1708975941000,0],[1708975942000,0],[1708975943000,0],[1708975944000,0],[1708975945000,0],[1708975946000,0],[1708975947000,0],[1708975948000,0],[1708975949000,0],[1708975950000,0],[1708975951000,0],[1708975952000,0],[1708975953000,0],[1708975954000,0],[1708975955000,0],[1708975956000,0],[1708975957000,0],[1708975958000,0],[1708975959000,0],[1708975960000,0],[1708975961000,0],[1708975962000,0],[1708975963000,0],[1708975964000,0],[1708975965000,0],[1708975966000,0],[1708975967000,0],[1708975968000,0],[1708975969000,0],[1708975970000,0],[1708975971000,0],[1708975972000,0],[1708975973000,0],[1708975974000,0],[1708975975000,0],[1708975976000,0],[1708975977000,0],[1708975978000,0],[1708975979000,0],[1708975980000,0],[1708975981000,0],[1708975982000,0],[1708975983000,0],[1708975984000,0],[1708975985000,0],[1708975986000,0],[1708975987000,0],[1708975988000,0],[1708975989000,0],[1708975990000,0],[1708975991000,0],[1708975992000,0],[1708975993000,0],[1708975994000,0],[1708975995000,0],[1708975996000,0],[1708975997000,0],[1708975998000,0],[1708975999000,0],[1708976000000,0],[1708976001000,0],[1708976002000,0],[1708976003000,0],[1708976004000,0],[1708976005000,0],[1708976006000,0],[1708976007000,0],[1708976008000,0],[1708976009000,0],[1708976010000,0],[1708976011000,0],[1708976012000,0],[1708976013000,0],[1708976014000,0],[1708976015000,0],[1708976016000,0],[1708976017000,0],[1708976018000,0],[1708976019000,0],[1708976020000,0],[1708976021000,0],[1708976022000,0],[1708976023000,0],[1708976024000,0],[1708976025000,0],[1708976026000,0],[1708976027000,0],[1708976028000,0],[1708976029000,0],[1708976030000,0],[1708976031000,0],[1708976032000,0],[1708976033000,0],[1708976034000,0],[1708976035000,0],[1708976036000,0],[1708976037000,0],[1708976038000,0],[1708976039000,0],[1708976040000,0],[1708976041000,0],[1708976042000,0],[1708976043000,0],[1708976044000,0],[1708976045000,0],[1708976046000,0],[1708976047000,0],[1708976048000,0],[1708976049000,0],[1708976050000,0],[1708976051000,0],[1708976052000,0],[1708976053000,0],[1708976054000,0],[1708976055000,0],[1708976056000,0],[1708976057000,0],[1708976058000,0],[1708976059000,0],[1708976060000,0],[1708976061000,0],[1708976062000,0],[1708976063000,0],[1708976064000,0],[1708976065000,0],[1708976066000,0],[1708976067000,0],[1708976068000,0],[1708976069000,0],[1708976070000,0],[1708976071000,0],[1708976072000,0],[1708976073000,0],[1708976074000,0],[1708976075000,0],[1708976076000,0],[1708976077000,0],[1708976078000,0],[1708976079000,0],[1708976080000,0],[1708976081000,0],[1708976082000,0],[1708976083000,0],[1708976084000,0],[1708976085000,0],[1708976086000,0],[1708976087000,0],[1708976088000,0],[1708976089000,0],[1708976090000,0],[1708976091000,0],[1708976092000,0],[1708976093000,0],[1708976094000,0],[1708976095000,0],[1708976096000,0],[1708976097000,0],[1708976098000,0],[1708976099000,0],[1708976100000,0],[1708976101000,0],[1708976102000,0],[1708976103000,0],[1708976104000,0],[1708976105000,0],[1708976106000,0],[1708976107000,0],[1708976108000,0],[1708976109000,0],[1708976110000,0],[1708976111000,0],[1708976112000,0],[1708976113000,0],[1708976114000,0],[1708976115000,0],[1708976116000,0],[1708976117000,0],[1708976118000,0],[1708976119000,0],[1708976120000,0],[1708976121000,0],[1708976122000,0],[1708976123000,0],[1708976124000,0],[1708976125000,0],[1708976126000,0],[1708976127000,0],[1708976128000,0],[1708976129000,0],[1708976130000,0],[1708976131000,0],[1708976132000,0],[1708976133000,0],[1708976134000,0],[1708976135000,0],[1708976136000,0],[1708976137000,0],[1708976138000,0],[1708976139000,0],[1708976140000,0],[1708976141000,0],[1708976142000,0],[1708976143000,0],[1708976144000,0],[1708976145000,0],[1708976146000,0],[1708976147000,0],[1708976148000,0],[1708976149000,0],[1708976150000,0],[1708976151000,0],[1708976152000,0],[1708976153000,0],[1708976154000,0],[1708976155000,0],[1708976156000,0],[1708976157000,0],[1708976158000,0],[1708976159000,0],[1708976160000,0],[1708976161000,0],[1708976162000,0],[1708976163000,0],[1708976164000,0],[1708976165000,0],[1708976166000,0],[1708976167000,0],[1708976168000,0],[1708976169000,0],[1708976170000,0],[1708976171000,0],[1708976172000,0],[1708976173000,0],[1708976174000,0],[1708976175000,0],[1708976176000,0],[1708976177000,0],[1708976178000,0],[1708976179000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00FF00',
name: 'validação concorrência saldo - 0',
data: [
[1708975935000,0],[1708975936000,0],[1708975937000,1],[1708975938000,0],[1708975939000,0],[1708975940000,0],[1708975941000,0],[1708975942000,0],[1708975943000,0],[1708975944000,0],[1708975945000,0],[1708975946000,0],[1708975947000,0],[1708975948000,0],[1708975949000,0],[1708975950000,0],[1708975951000,0],[1708975952000,0],[1708975953000,0],[1708975954000,0],[1708975955000,0],[1708975956000,0],[1708975957000,0],[1708975958000,0],[1708975959000,0],[1708975960000,0],[1708975961000,0],[1708975962000,0],[1708975963000,0],[1708975964000,0],[1708975965000,0],[1708975966000,0],[1708975967000,0],[1708975968000,0],[1708975969000,0],[1708975970000,0],[1708975971000,0],[1708975972000,0],[1708975973000,0],[1708975974000,0],[1708975975000,0],[1708975976000,0],[1708975977000,0],[1708975978000,0],[1708975979000,0],[1708975980000,0],[1708975981000,0],[1708975982000,0],[1708975983000,0],[1708975984000,0],[1708975985000,0],[1708975986000,0],[1708975987000,0],[1708975988000,0],[1708975989000,0],[1708975990000,0],[1708975991000,0],[1708975992000,0],[1708975993000,0],[1708975994000,0],[1708975995000,0],[1708975996000,0],[1708975997000,0],[1708975998000,0],[1708975999000,0],[1708976000000,0],[1708976001000,0],[1708976002000,0],[1708976003000,0],[1708976004000,0],[1708976005000,0],[1708976006000,0],[1708976007000,0],[1708976008000,0],[1708976009000,0],[1708976010000,0],[1708976011000,0],[1708976012000,0],[1708976013000,0],[1708976014000,0],[1708976015000,0],[1708976016000,0],[1708976017000,0],[1708976018000,0],[1708976019000,0],[1708976020000,0],[1708976021000,0],[1708976022000,0],[1708976023000,0],[1708976024000,0],[1708976025000,0],[1708976026000,0],[1708976027000,0],[1708976028000,0],[1708976029000,0],[1708976030000,0],[1708976031000,0],[1708976032000,0],[1708976033000,0],[1708976034000,0],[1708976035000,0],[1708976036000,0],[1708976037000,0],[1708976038000,0],[1708976039000,0],[1708976040000,0],[1708976041000,0],[1708976042000,0],[1708976043000,0],[1708976044000,0],[1708976045000,0],[1708976046000,0],[1708976047000,0],[1708976048000,0],[1708976049000,0],[1708976050000,0],[1708976051000,0],[1708976052000,0],[1708976053000,0],[1708976054000,0],[1708976055000,0],[1708976056000,0],[1708976057000,0],[1708976058000,0],[1708976059000,0],[1708976060000,0],[1708976061000,0],[1708976062000,0],[1708976063000,0],[1708976064000,0],[1708976065000,0],[1708976066000,0],[1708976067000,0],[1708976068000,0],[1708976069000,0],[1708976070000,0],[1708976071000,0],[1708976072000,0],[1708976073000,0],[1708976074000,0],[1708976075000,0],[1708976076000,0],[1708976077000,0],[1708976078000,0],[1708976079000,0],[1708976080000,0],[1708976081000,0],[1708976082000,0],[1708976083000,0],[1708976084000,0],[1708976085000,0],[1708976086000,0],[1708976087000,0],[1708976088000,0],[1708976089000,0],[1708976090000,0],[1708976091000,0],[1708976092000,0],[1708976093000,0],[1708976094000,0],[1708976095000,0],[1708976096000,0],[1708976097000,0],[1708976098000,0],[1708976099000,0],[1708976100000,0],[1708976101000,0],[1708976102000,0],[1708976103000,0],[1708976104000,0],[1708976105000,0],[1708976106000,0],[1708976107000,0],[1708976108000,0],[1708976109000,0],[1708976110000,0],[1708976111000,0],[1708976112000,0],[1708976113000,0],[1708976114000,0],[1708976115000,0],[1708976116000,0],[1708976117000,0],[1708976118000,0],[1708976119000,0],[1708976120000,0],[1708976121000,0],[1708976122000,0],[1708976123000,0],[1708976124000,0],[1708976125000,0],[1708976126000,0],[1708976127000,0],[1708976128000,0],[1708976129000,0],[1708976130000,0],[1708976131000,0],[1708976132000,0],[1708976133000,0],[1708976134000,0],[1708976135000,0],[1708976136000,0],[1708976137000,0],[1708976138000,0],[1708976139000,0],[1708976140000,0],[1708976141000,0],[1708976142000,0],[1708976143000,0],[1708976144000,0],[1708976145000,0],[1708976146000,0],[1708976147000,0],[1708976148000,0],[1708976149000,0],[1708976150000,0],[1708976151000,0],[1708976152000,0],[1708976153000,0],[1708976154000,0],[1708976155000,0],[1708976156000,0],[1708976157000,0],[1708976158000,0],[1708976159000,0],[1708976160000,0],[1708976161000,0],[1708976162000,0],[1708976163000,0],[1708976164000,0],[1708976165000,0],[1708976166000,0],[1708976167000,0],[1708976168000,0],[1708976169000,0],[1708976170000,0],[1708976171000,0],[1708976172000,0],[1708976173000,0],[1708976174000,0],[1708976175000,0],[1708976176000,0],[1708976177000,0],[1708976178000,0],[1708976179000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#9D00FF',
name: 'validação concorrência transações - c',
data: [
[1708975935000,0],[1708975936000,25],[1708975937000,23],[1708975938000,0],[1708975939000,0],[1708975940000,0],[1708975941000,0],[1708975942000,0],[1708975943000,0],[1708975944000,0],[1708975945000,0],[1708975946000,0],[1708975947000,0],[1708975948000,0],[1708975949000,0],[1708975950000,0],[1708975951000,0],[1708975952000,0],[1708975953000,0],[1708975954000,0],[1708975955000,0],[1708975956000,0],[1708975957000,0],[1708975958000,0],[1708975959000,0],[1708975960000,0],[1708975961000,0],[1708975962000,0],[1708975963000,0],[1708975964000,0],[1708975965000,0],[1708975966000,0],[1708975967000,0],[1708975968000,0],[1708975969000,0],[1708975970000,0],[1708975971000,0],[1708975972000,0],[1708975973000,0],[1708975974000,0],[1708975975000,0],[1708975976000,0],[1708975977000,0],[1708975978000,0],[1708975979000,0],[1708975980000,0],[1708975981000,0],[1708975982000,0],[1708975983000,0],[1708975984000,0],[1708975985000,0],[1708975986000,0],[1708975987000,0],[1708975988000,0],[1708975989000,0],[1708975990000,0],[1708975991000,0],[1708975992000,0],[1708975993000,0],[1708975994000,0],[1708975995000,0],[1708975996000,0],[1708975997000,0],[1708975998000,0],[1708975999000,0],[1708976000000,0],[1708976001000,0],[1708976002000,0],[1708976003000,0],[1708976004000,0],[1708976005000,0],[1708976006000,0],[1708976007000,0],[1708976008000,0],[1708976009000,0],[1708976010000,0],[1708976011000,0],[1708976012000,0],[1708976013000,0],[1708976014000,0],[1708976015000,0],[1708976016000,0],[1708976017000,0],[1708976018000,0],[1708976019000,0],[1708976020000,0],[1708976021000,0],[1708976022000,0],[1708976023000,0],[1708976024000,0],[1708976025000,0],[1708976026000,0],[1708976027000,0],[1708976028000,0],[1708976029000,0],[1708976030000,0],[1708976031000,0],[1708976032000,0],[1708976033000,0],[1708976034000,0],[1708976035000,0],[1708976036000,0],[1708976037000,0],[1708976038000,0],[1708976039000,0],[1708976040000,0],[1708976041000,0],[1708976042000,0],[1708976043000,0],[1708976044000,0],[1708976045000,0],[1708976046000,0],[1708976047000,0],[1708976048000,0],[1708976049000,0],[1708976050000,0],[1708976051000,0],[1708976052000,0],[1708976053000,0],[1708976054000,0],[1708976055000,0],[1708976056000,0],[1708976057000,0],[1708976058000,0],[1708976059000,0],[1708976060000,0],[1708976061000,0],[1708976062000,0],[1708976063000,0],[1708976064000,0],[1708976065000,0],[1708976066000,0],[1708976067000,0],[1708976068000,0],[1708976069000,0],[1708976070000,0],[1708976071000,0],[1708976072000,0],[1708976073000,0],[1708976074000,0],[1708976075000,0],[1708976076000,0],[1708976077000,0],[1708976078000,0],[1708976079000,0],[1708976080000,0],[1708976081000,0],[1708976082000,0],[1708976083000,0],[1708976084000,0],[1708976085000,0],[1708976086000,0],[1708976087000,0],[1708976088000,0],[1708976089000,0],[1708976090000,0],[1708976091000,0],[1708976092000,0],[1708976093000,0],[1708976094000,0],[1708976095000,0],[1708976096000,0],[1708976097000,0],[1708976098000,0],[1708976099000,0],[1708976100000,0],[1708976101000,0],[1708976102000,0],[1708976103000,0],[1708976104000,0],[1708976105000,0],[1708976106000,0],[1708976107000,0],[1708976108000,0],[1708976109000,0],[1708976110000,0],[1708976111000,0],[1708976112000,0],[1708976113000,0],[1708976114000,0],[1708976115000,0],[1708976116000,0],[1708976117000,0],[1708976118000,0],[1708976119000,0],[1708976120000,0],[1708976121000,0],[1708976122000,0],[1708976123000,0],[1708976124000,0],[1708976125000,0],[1708976126000,0],[1708976127000,0],[1708976128000,0],[1708976129000,0],[1708976130000,0],[1708976131000,0],[1708976132000,0],[1708976133000,0],[1708976134000,0],[1708976135000,0],[1708976136000,0],[1708976137000,0],[1708976138000,0],[1708976139000,0],[1708976140000,0],[1708976141000,0],[1708976142000,0],[1708976143000,0],[1708976144000,0],[1708976145000,0],[1708976146000,0],[1708976147000,0],[1708976148000,0],[1708976149000,0],[1708976150000,0],[1708976151000,0],[1708976152000,0],[1708976153000,0],[1708976154000,0],[1708976155000,0],[1708976156000,0],[1708976157000,0],[1708976158000,0],[1708976159000,0],[1708976160000,0],[1708976161000,0],[1708976162000,0],[1708976163000,0],[1708976164000,0],[1708976165000,0],[1708976166000,0],[1708976167000,0],[1708976168000,0],[1708976169000,0],[1708976170000,0],[1708976171000,0],[1708976172000,0],[1708976173000,0],[1708976174000,0],[1708976175000,0],[1708976176000,0],[1708976177000,0],[1708976178000,0],[1708976179000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FF00E1',
name: 'validação concorrência saldo - -25',
data: [
[1708975935000,1],[1708975936000,1],[1708975937000,0],[1708975938000,0],[1708975939000,0],[1708975940000,0],[1708975941000,0],[1708975942000,0],[1708975943000,0],[1708975944000,0],[1708975945000,0],[1708975946000,0],[1708975947000,0],[1708975948000,0],[1708975949000,0],[1708975950000,0],[1708975951000,0],[1708975952000,0],[1708975953000,0],[1708975954000,0],[1708975955000,0],[1708975956000,0],[1708975957000,0],[1708975958000,0],[1708975959000,0],[1708975960000,0],[1708975961000,0],[1708975962000,0],[1708975963000,0],[1708975964000,0],[1708975965000,0],[1708975966000,0],[1708975967000,0],[1708975968000,0],[1708975969000,0],[1708975970000,0],[1708975971000,0],[1708975972000,0],[1708975973000,0],[1708975974000,0],[1708975975000,0],[1708975976000,0],[1708975977000,0],[1708975978000,0],[1708975979000,0],[1708975980000,0],[1708975981000,0],[1708975982000,0],[1708975983000,0],[1708975984000,0],[1708975985000,0],[1708975986000,0],[1708975987000,0],[1708975988000,0],[1708975989000,0],[1708975990000,0],[1708975991000,0],[1708975992000,0],[1708975993000,0],[1708975994000,0],[1708975995000,0],[1708975996000,0],[1708975997000,0],[1708975998000,0],[1708975999000,0],[1708976000000,0],[1708976001000,0],[1708976002000,0],[1708976003000,0],[1708976004000,0],[1708976005000,0],[1708976006000,0],[1708976007000,0],[1708976008000,0],[1708976009000,0],[1708976010000,0],[1708976011000,0],[1708976012000,0],[1708976013000,0],[1708976014000,0],[1708976015000,0],[1708976016000,0],[1708976017000,0],[1708976018000,0],[1708976019000,0],[1708976020000,0],[1708976021000,0],[1708976022000,0],[1708976023000,0],[1708976024000,0],[1708976025000,0],[1708976026000,0],[1708976027000,0],[1708976028000,0],[1708976029000,0],[1708976030000,0],[1708976031000,0],[1708976032000,0],[1708976033000,0],[1708976034000,0],[1708976035000,0],[1708976036000,0],[1708976037000,0],[1708976038000,0],[1708976039000,0],[1708976040000,0],[1708976041000,0],[1708976042000,0],[1708976043000,0],[1708976044000,0],[1708976045000,0],[1708976046000,0],[1708976047000,0],[1708976048000,0],[1708976049000,0],[1708976050000,0],[1708976051000,0],[1708976052000,0],[1708976053000,0],[1708976054000,0],[1708976055000,0],[1708976056000,0],[1708976057000,0],[1708976058000,0],[1708976059000,0],[1708976060000,0],[1708976061000,0],[1708976062000,0],[1708976063000,0],[1708976064000,0],[1708976065000,0],[1708976066000,0],[1708976067000,0],[1708976068000,0],[1708976069000,0],[1708976070000,0],[1708976071000,0],[1708976072000,0],[1708976073000,0],[1708976074000,0],[1708976075000,0],[1708976076000,0],[1708976077000,0],[1708976078000,0],[1708976079000,0],[1708976080000,0],[1708976081000,0],[1708976082000,0],[1708976083000,0],[1708976084000,0],[1708976085000,0],[1708976086000,0],[1708976087000,0],[1708976088000,0],[1708976089000,0],[1708976090000,0],[1708976091000,0],[1708976092000,0],[1708976093000,0],[1708976094000,0],[1708976095000,0],[1708976096000,0],[1708976097000,0],[1708976098000,0],[1708976099000,0],[1708976100000,0],[1708976101000,0],[1708976102000,0],[1708976103000,0],[1708976104000,0],[1708976105000,0],[1708976106000,0],[1708976107000,0],[1708976108000,0],[1708976109000,0],[1708976110000,0],[1708976111000,0],[1708976112000,0],[1708976113000,0],[1708976114000,0],[1708976115000,0],[1708976116000,0],[1708976117000,0],[1708976118000,0],[1708976119000,0],[1708976120000,0],[1708976121000,0],[1708976122000,0],[1708976123000,0],[1708976124000,0],[1708976125000,0],[1708976126000,0],[1708976127000,0],[1708976128000,0],[1708976129000,0],[1708976130000,0],[1708976131000,0],[1708976132000,0],[1708976133000,0],[1708976134000,0],[1708976135000,0],[1708976136000,0],[1708976137000,0],[1708976138000,0],[1708976139000,0],[1708976140000,0],[1708976141000,0],[1708976142000,0],[1708976143000,0],[1708976144000,0],[1708976145000,0],[1708976146000,0],[1708976147000,0],[1708976148000,0],[1708976149000,0],[1708976150000,0],[1708976151000,0],[1708976152000,0],[1708976153000,0],[1708976154000,0],[1708976155000,0],[1708976156000,0],[1708976157000,0],[1708976158000,0],[1708976159000,0],[1708976160000,0],[1708976161000,0],[1708976162000,0],[1708976163000,0],[1708976164000,0],[1708976165000,0],[1708976166000,0],[1708976167000,0],[1708976168000,0],[1708976169000,0],[1708976170000,0],[1708976171000,0],[1708976172000,0],[1708976173000,0],[1708976174000,0],[1708976175000,0],[1708976176000,0],[1708976177000,0],[1708976178000,0],[1708976179000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#AECAEB',
name: 'validação concorrência transações - d',
data: [
[1708975935000,25],[1708975936000,0],[1708975937000,0],[1708975938000,0],[1708975939000,0],[1708975940000,0],[1708975941000,0],[1708975942000,0],[1708975943000,0],[1708975944000,0],[1708975945000,0],[1708975946000,0],[1708975947000,0],[1708975948000,0],[1708975949000,0],[1708975950000,0],[1708975951000,0],[1708975952000,0],[1708975953000,0],[1708975954000,0],[1708975955000,0],[1708975956000,0],[1708975957000,0],[1708975958000,0],[1708975959000,0],[1708975960000,0],[1708975961000,0],[1708975962000,0],[1708975963000,0],[1708975964000,0],[1708975965000,0],[1708975966000,0],[1708975967000,0],[1708975968000,0],[1708975969000,0],[1708975970000,0],[1708975971000,0],[1708975972000,0],[1708975973000,0],[1708975974000,0],[1708975975000,0],[1708975976000,0],[1708975977000,0],[1708975978000,0],[1708975979000,0],[1708975980000,0],[1708975981000,0],[1708975982000,0],[1708975983000,0],[1708975984000,0],[1708975985000,0],[1708975986000,0],[1708975987000,0],[1708975988000,0],[1708975989000,0],[1708975990000,0],[1708975991000,0],[1708975992000,0],[1708975993000,0],[1708975994000,0],[1708975995000,0],[1708975996000,0],[1708975997000,0],[1708975998000,0],[1708975999000,0],[1708976000000,0],[1708976001000,0],[1708976002000,0],[1708976003000,0],[1708976004000,0],[1708976005000,0],[1708976006000,0],[1708976007000,0],[1708976008000,0],[1708976009000,0],[1708976010000,0],[1708976011000,0],[1708976012000,0],[1708976013000,0],[1708976014000,0],[1708976015000,0],[1708976016000,0],[1708976017000,0],[1708976018000,0],[1708976019000,0],[1708976020000,0],[1708976021000,0],[1708976022000,0],[1708976023000,0],[1708976024000,0],[1708976025000,0],[1708976026000,0],[1708976027000,0],[1708976028000,0],[1708976029000,0],[1708976030000,0],[1708976031000,0],[1708976032000,0],[1708976033000,0],[1708976034000,0],[1708976035000,0],[1708976036000,0],[1708976037000,0],[1708976038000,0],[1708976039000,0],[1708976040000,0],[1708976041000,0],[1708976042000,0],[1708976043000,0],[1708976044000,0],[1708976045000,0],[1708976046000,0],[1708976047000,0],[1708976048000,0],[1708976049000,0],[1708976050000,0],[1708976051000,0],[1708976052000,0],[1708976053000,0],[1708976054000,0],[1708976055000,0],[1708976056000,0],[1708976057000,0],[1708976058000,0],[1708976059000,0],[1708976060000,0],[1708976061000,0],[1708976062000,0],[1708976063000,0],[1708976064000,0],[1708976065000,0],[1708976066000,0],[1708976067000,0],[1708976068000,0],[1708976069000,0],[1708976070000,0],[1708976071000,0],[1708976072000,0],[1708976073000,0],[1708976074000,0],[1708976075000,0],[1708976076000,0],[1708976077000,0],[1708976078000,0],[1708976079000,0],[1708976080000,0],[1708976081000,0],[1708976082000,0],[1708976083000,0],[1708976084000,0],[1708976085000,0],[1708976086000,0],[1708976087000,0],[1708976088000,0],[1708976089000,0],[1708976090000,0],[1708976091000,0],[1708976092000,0],[1708976093000,0],[1708976094000,0],[1708976095000,0],[1708976096000,0],[1708976097000,0],[1708976098000,0],[1708976099000,0],[1708976100000,0],[1708976101000,0],[1708976102000,0],[1708976103000,0],[1708976104000,0],[1708976105000,0],[1708976106000,0],[1708976107000,0],[1708976108000,0],[1708976109000,0],[1708976110000,0],[1708976111000,0],[1708976112000,0],[1708976113000,0],[1708976114000,0],[1708976115000,0],[1708976116000,0],[1708976117000,0],[1708976118000,0],[1708976119000,0],[1708976120000,0],[1708976121000,0],[1708976122000,0],[1708976123000,0],[1708976124000,0],[1708976125000,0],[1708976126000,0],[1708976127000,0],[1708976128000,0],[1708976129000,0],[1708976130000,0],[1708976131000,0],[1708976132000,0],[1708976133000,0],[1708976134000,0],[1708976135000,0],[1708976136000,0],[1708976137000,0],[1708976138000,0],[1708976139000,0],[1708976140000,0],[1708976141000,0],[1708976142000,0],[1708976143000,0],[1708976144000,0],[1708976145000,0],[1708976146000,0],[1708976147000,0],[1708976148000,0],[1708976149000,0],[1708976150000,0],[1708976151000,0],[1708976152000,0],[1708976153000,0],[1708976154000,0],[1708976155000,0],[1708976156000,0],[1708976157000,0],[1708976158000,0],[1708976159000,0],[1708976160000,0],[1708976161000,0],[1708976162000,0],[1708976163000,0],[1708976164000,0],[1708976165000,0],[1708976166000,0],[1708976167000,0],[1708976168000,0],[1708976169000,0],[1708976170000,0],[1708976171000,0],[1708976172000,0],[1708976173000,0],[1708976174000,0],[1708976175000,0],[1708976176000,0],[1708976177000,0],[1708976178000,0],[1708976179000,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: ['16', '49', '81', '113', '146', '178', '210', '243', '275', '308', '340', '372', '405', '437', '470', '502', '534', '567', '599', '631', '664', '696', '729', '761', '793', '826', '858', '890', '923', '955', '988', '1020', '1052', '1085', '1117', '1149', '1182', '1214', '1247', '1279', '1311', '1344', '1376', '1409', '1441', '1473', '1506', '1538', '1570', '1603', '1635', '1668', '1700', '1732', '1765', '1797', '1829', '1862', '1894', '1927', '1959', '1991', '2024', '2056', '2089', '2121', '2153', '2186', '2218', '2250', '2283', '2315', '2348', '2380', '2412', '2445', '2477', '2509', '2542', '2574', '2607', '2639', '2671', '2704', '2736', '2768', '2801', '2833', '2866', '2898', '2930', '2963', '2995', '3028', '3060', '3092', '3125', '3157', '3189', '3222'],
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: [
31.42,0.33,0.26,0.17,0.14,0.12,0.1,0.1,0.05,0.06,0.03,0.03,0.03,0.02,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.28,0.05,0.03,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
],
tooltip: { yDecimals: 0, ySuffix: 'ms' }
},
{
type: 'column',
color: '#f15b4f',
name: 'KO',
data: [
57.52,0.36,0.31,0.32,0.24,0.25,0.24,0.22,0.2,0.22,0.21,0.17,0.18,0.2,0.18,0.15,0.15,0.15,0.14,0.15,0.13,0.12,0.13,0.12,0.13,0.13,0.16,0.13,0.11,0.1,0.21,1.22,0.19,0.14,0.15,0.13,0.12,0.13,0.1,0.1,0.1,0.1,0.08,0.06,0.06,0.05,0.05,0.04,0.04,0.02,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.02,0.01,0.01,0.01,0.01,0.01,0.01,0.0,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
],
tooltip: { yDecimals: 0, ySuffix: 'ms' }
}
]
});
responsetimeDistributionChart.setTitle({
text: '<span class="chart_title">Response Time Distribution</span>',
useHTML: true
});
var responsetimepercentilesovertimeokPercentiles = unpack([[1708975935,[10,96,200,227,228,229,233,236,240,241]],[1708975936,[3,3,3,3,3,3,3,3,3,3]],[1708975937,[7,21,29,43,47,48,50,51,55,57]],[1708975938,[3,3,3,3,3,3,3,3,3,3]],[1708975939,[0,2,4,8,11,12,15,17,22,25]],[1708975940,[3,4,5,6,6,7,7,7,7,8]],[1708975941,[3,4,4,5,5,5,5,5,5,5]],[1708975942,[2,4,4,5,5,5,6,6,6,6]],[1708975943,[2,3,4,4,4,4,4,4,4,4]],[1708975944,[3,4,4,4,4,4,4,5,5,6]],[1708975945,[3,3,4,4,4,4,5,6,7,8]],[1708975946,[2,3,4,4,4,4,4,6,6,6]],[1708975947,[2,3,3,4,4,4,4,4,4,5]],[1708975948,[2,4,4,4,5,5,5,5,6,7]],[1708975949,[2,3,4,4,4,4,5,33,47,48]],[1708975950,[1,3,4,4,4,4,4,5,6,6]],[1708975951,[2,3,4,4,4,4,4,5,5,6]],[1708975952,[1,3,3,4,4,4,4,4,5,6]],[1708975953,[2,3,3,4,4,4,4,5,5,5]],[1708975954,[1,3,3,4,4,4,4,5,7,8]],[1708975955,[1,3,3,4,4,4,4,4,4,4]],[1708975956,[1,2,3,3,3,3,3,4,4,5]],[1708975957,[1,3,3,3,3,3,4,4,4,5]],[1708975958,[1,2,3,3,3,3,3,4,4,4]],[1708975959,[1,3,3,3,3,3,4,4,4,5]],[1708975960,[1,2,3,3,3,4,4,4,5,5]],[1708975961,[1,3,3,4,4,4,5,5,5,6]],[1708975962,[1,3,3,4,4,4,5,5,5,5]],[1708975963,[1,3,3,4,4,4,5,5,5,6]],[1708975964,[1,3,3,3,3,4,4,4,8,14]],[1708975965,[1,3,3,3,3,4,4,4,5,6]],[1708975966,[1,3,3,3,3,4,4,5,5,6]],[1708975967,[1,3,3,3,4,4,4,5,5,5]],[1708975968,[1,3,3,3,3,3,3,5,7,9]],[1708975969,[1,3,3,3,3,3,4,4,5,8]],[1708975970,[1,3,3,3,3,3,4,4,5,10]],[1708975971,[1,2,3,3,3,3,3,4,4,4]],[1708975972,[1,2,3,3,3,3,3,4,4,5]],[1708975973,[1,2,2,3,3,3,3,3,4,4]],[1708975974,[1,2,2,3,3,3,4,5,9,10]],[1708975975,[1,2,3,3,3,3,4,6,9,9]],[1708975976,[1,2,2,3,3,3,3,3,4,4]],[1708975977,[0,2,3,3,3,3,3,3,4,5]],[1708975978,[1,2,2,3,3,3,4,4,30,45]],[1708975979,[1,2,3,3,3,4,4,16,70,72]],[1708975980,[1,2,3,3,4,4,17,79,115,134]],[1708975981,[0,2,2,3,3,3,3,3,4,4]],[1708975982,[1,2,2,3,3,3,3,4,4,5]],[1708975983,[1,2,3,3,3,3,3,4,4,5]],[1708975984,[1,2,3,3,3,3,3,4,8,11]],[1708975985,[1,2,3,3,3,3,4,4,6,8]],[1708975986,[1,2,3,3,3,3,3,3,4,4]],[1708975987,[1,2,3,3,3,3,4,4,4,5]],[1708975988,[1,2,3,3,3,3,4,4,5,5]],[1708975989,[1,3,3,3,3,3,4,4,5,6]],[1708975990,[1,2,3,3,3,4,4,4,15,24]],[1708975991,[1,2,3,3,3,3,3,3,3,4]],[1708975992,[1,2,3,3,3,3,3,3,4,5]],[1708975993,[1,2,3,3,3,3,4,29,74,88]],[1708975994,[1,1,3,3,3,3,3,4,4,6]],[1708975995,[1,1,2,3,3,3,3,4,12,21]],[1708975996,[1,2,3,3,3,3,4,4,5,6]],[1708975997,[1,2,3,3,3,3,3,4,5,7]],[1708975998,[1,3,3,3,3,3,4,4,4,6]],[1708975999,[1,2,3,3,3,3,4,4,5,5]],[1708976000,[0,2,2,3,3,3,3,4,20,32]],[1708976001,[0,2,2,3,3,3,3,3,4,5]],[1708976002,[1,2,2,2,3,3,3,3,4,4]],[1708976003,[1,2,2,2,2,3,3,3,4,5]],[1708976004,[1,2,2,2,2,3,3,3,4,5]],[1708976005,[0,2,2,2,3,3,3,4,9,24]],[1708976006,[0,2,2,2,2,3,3,3,4,4]],[1708976007,[0,2,2,2,2,2,3,3,3,5]],[1708976008,[0,2,2,2,2,2,3,3,4,5]],[1708976009,[0,2,2,3,3,3,3,4,4,5]],[1708976010,[1,2,2,3,3,3,3,3,4,6]],[1708976011,[1,2,3,3,3,3,4,4,5,6]],[1708976012,[0,2,3,3,3,3,4,4,4,8]],[1708976013,[0,2,2,2,2,3,3,3,3,4]],[1708976014,[0,1,2,3,3,3,3,3,4,4]],[1708976015,[0,1,2,3,3,3,3,3,5,8]],[1708976016,[1,2,2,3,3,3,3,3,17,28]],[1708976017,[1,1,2,3,3,3,3,3,4,5]],[1708976018,[1,2,3,3,3,3,3,3,4,6]],[1708976019,[0,2,3,3,3,3,3,3,4,4]],[1708976020,[1,1,3,3,3,3,3,4,13,21]],[1708976021,[1,2,3,3,3,3,3,4,4,6]],[1708976022,[0,2,2,3,3,3,3,4,4,4]],[1708976023,[1,2,2,3,3,3,3,4,4,5]],[1708976024,[0,1,2,3,3,3,3,4,11,21]],[1708976025,[0,2,2,3,3,3,3,3,25,36]],[1708976026,[0,2,2,2,2,3,3,4,8,14]],[1708976027,[0,1,2,3,3,3,3,3,4,5]],[1708976028,[1,2,2,3,3,3,4,4,5,7]],[1708976029,[1,2,2,3,3,4,4,4,29,38]],[1708976030,[1,2,3,3,3,4,4,4,7,17]],[1708976031,[1,2,3,3,3,3,4,4,5,5]],[1708976032,[1,2,3,3,3,3,3,4,4,5]],[1708976033,[0,2,2,3,3,3,3,3,4,5]],[1708976034,[0,1,2,2,2,2,3,3,3,4]],[1708976035,[0,1,2,2,2,2,3,3,4,14]],[1708976036,[1,1,2,2,2,3,3,3,4,5]],[1708976037,[1,2,2,2,3,3,3,4,6,6]],[1708976038,[0,2,2,2,3,3,3,3,4,6]],[1708976039,[0,2,2,2,2,2,3,3,4,5]],[1708976040,[1,2,2,3,3,3,3,4,4,6]],[1708976041,[1,2,2,2,3,3,3,4,5,16]],[1708976042,[1,2,2,3,3,3,4,7,40,50]],[1708976043,[1,2,2,3,3,4,4,4,5,7]],[1708976044,[1,2,2,3,3,4,4,4,5,5]],[1708976045,[0,2,2,3,3,3,3,4,4,4]],[1708976046,[0,2,2,3,3,3,3,4,5,23]],[1708976047,[1,2,3,3,3,3,3,4,6,11]],[1708976048,[1,3,211,1024,1032,1046,1069,1088,1123,1184]],[1708976049,[1,2,3,11,26,35,57,77,120,157]],[1708976050,null],[1708976051,null],[1708976052,[6,41,69,95,97,99,102,109,114,116]],[1708976053,null],[1708976054,[1,146,310,1020,1025,1029,1032,1037,1043,1047]],[1708976055,[1,2,6,66,87,113,152,181,231,276]],[1708976056,null],[1708976057,[1003,1013,1023,1030,1032,1034,1035,1038,1041,1043]],[1708976058,[1,3,50,138,168,198,247,310,395,483]],[1708976059,[1,2,2,3,3,3,3,4,4,15]],[1708976060,[1009,1040,1072,1115,1116,1122,1124,1135,1151,1156]],[1708976061,[16,49,69,83,98,114,124,128,132,133]],[1708976062,null],[1708976063,null],[1708976064,null],[1708976065,[1,2,2,3,3,3,4,4,20,31]],[1708976066,[1,2,3,173,245,305,366,422,458,483]],[1708976067,[0,2,3,3,3,6,18,51,98,115]],[1708976068,null],[1708976069,null],[1708976070,null],[1708976071,null],[1708976072,null],[1708976073,[1,13,114,251,290,331,363,414,451,465]],[1708976074,[7,38,76,113,120,128,139,156,173,178]],[1708976075,null],[1708976076,null],[1708976077,null],[1708976078,null],[1708976079,null],[1708976080,[0,2,2,4,4,11,23,28,35,38]],[1708976081,[0,2,4,60,77,99,138,174,244,274]],[1708976082,[0,2,2,3,3,4,4,4,7,21]],[1708976083,[0,2,2,3,3,3,4,4,9,13]],[1708976084,null],[1708976085,null],[1708976086,null],[1708976087,null],[1708976088,null],[1708976089,null],[1708976090,null],[1708976091,null],[1708976092,null],[1708976093,null],[1708976094,null],[1708976095,null],[1708976096,[1,2,3,19,32,35,43,53,56,57]],[1708976097,null],[1708976098,null],[1708976099,null],[1708976100,null],[1708976101,null],[1708976102,null],[1708976103,null],[1708976104,null],[1708976105,null],[1708976106,null],[1708976107,null],[1708976108,null],[1708976109,null],[1708976110,null],[1708976111,null],[1708976112,null],[1708976113,null],[1708976114,null],[1708976115,null],[1708976116,null],[1708976117,null],[1708976118,null],[1708976119,null],[1708976120,null],[1708976121,null],[1708976122,null],[1708976123,null],[1708976124,[1,5,143,239,274,601,1024,1235,1350,1358]],[1708976125,[1,2,25,81,95,104,137,182,324,336]],[1708976126,null],[1708976127,null],[1708976128,null],[1708976129,null],[1708976130,null],[1708976131,null],[1708976132,null],[1708976133,null],[1708976134,null],[1708976135,null],[1708976136,null],[1708976137,null],[1708976138,null],[1708976139,null],[1708976140,null],[1708976141,null],[1708976142,null],[1708976143,null],[1708976144,null],[1708976145,null],[1708976146,null],[1708976147,null],[1708976148,null],[1708976149,null],[1708976150,null],[1708976151,null],[1708976152,null],[1708976153,null],[1708976154,null],[1708976155,null],[1708976156,null],[1708976157,null],[1708976158,null],[1708976159,null],[1708976160,null],[1708976161,null],[1708976162,null],[1708976163,null],[1708976164,null],[1708976165,null],[1708976166,null],[1708976167,null],[1708976168,null],[1708976169,null],[1708976170,null],[1708976171,null],[1708976172,null],[1708976173,null],[1708976174,null],[1708976175,null],[1708976176,null],[1708976177,[0,2,3,3,4,4,5,13,1159,1313]],[1708976178,[1,2,3,4,4,12,335,378,424,440]],[1708976179,[1,2,3,101,128,159,169,181,218,222]]]);
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([[1708975935,[25,25,0]],[1708975936,[1,1,0]],[1708975937,[25,25,0]],[1708975938,[1,1,0]],[1708975939,[71,71,0]],[1708975940,[3,3,0]],[1708975941,[6,6,0]],[1708975942,[9,9,0]],[1708975943,[11,11,0]],[1708975944,[13,13,0]],[1708975945,[18,18,0]],[1708975946,[19,19,0]],[1708975947,[24,24,0]],[1708975948,[26,26,0]],[1708975949,[27,27,0]],[1708975950,[32,32,0]],[1708975951,[34,34,0]],[1708975952,[37,37,0]],[1708975953,[39,39,0]],[1708975954,[43,43,0]],[1708975955,[44,44,0]],[1708975956,[48,48,0]],[1708975957,[50,50,0]],[1708975958,[55,55,0]],[1708975959,[56,56,0]],[1708975960,[60,60,0]],[1708975961,[61,61,0]],[1708975962,[65,65,0]],[1708975963,[67,67,0]],[1708975964,[70,70,0]],[1708975965,[74,74,0]],[1708975966,[76,76,0]],[1708975967,[80,80,0]],[1708975968,[81,81,0]],[1708975969,[84,84,0]],[1708975970,[87,87,0]],[1708975971,[91,91,0]],[1708975972,[92,92,0]],[1708975973,[96,96,0]],[1708975974,[98,98,0]],[1708975975,[101,101,0]],[1708975976,[105,105,0]],[1708975977,[108,108,0]],[1708975978,[109,109,0]],[1708975979,[114,114,0]],[1708975980,[115,115,0]],[1708975981,[118,118,0]],[1708975982,[121,121,0]],[1708975983,[124,124,0]],[1708975984,[126,126,0]],[1708975985,[129,129,0]],[1708975986,[133,133,0]],[1708975987,[134,134,0]],[1708975988,[138,138,0]],[1708975989,[141,141,0]],[1708975990,[143,143,0]],[1708975991,[146,146,0]],[1708975992,[149,149,0]],[1708975993,[152,152,0]],[1708975994,[155,155,0]],[1708975995,[157,157,0]],[1708975996,[160,160,0]],[1708975997,[164,164,0]],[1708975998,[165,165,0]],[1708975999,[170,170,0]],[1708976000,[172,172,0]],[1708976001,[174,174,0]],[1708976002,[176,176,0]],[1708976003,[181,181,0]],[1708976004,[183,183,0]],[1708976005,[185,185,0]],[1708976006,[189,189,0]],[1708976007,[191,191,0]],[1708976008,[194,194,0]],[1708976009,[196,196,0]],[1708976010,[200,200,0]],[1708976011,[202,202,0]],[1708976012,[206,206,0]],[1708976013,[208,208,0]],[1708976014,[210,210,0]],[1708976015,[213,213,0]],[1708976016,[217,217,0]],[1708976017,[221,221,0]],[1708976018,[222,222,0]],[1708976019,[224,224,0]],[1708976020,[228,228,0]],[1708976021,[230,230,0]],[1708976022,[234,234,0]],[1708976023,[235,235,0]],[1708976024,[239,239,0]],[1708976025,[242,242,0]],[1708976026,[244,244,0]],[1708976027,[248,248,0]],[1708976028,[251,251,0]],[1708976029,[252,252,0]],[1708976030,[256,256,0]],[1708976031,[259,259,0]],[1708976032,[262,262,0]],[1708976033,[265,265,0]],[1708976034,[266,266,0]],[1708976035,[270,270,0]],[1708976036,[272,272,0]],[1708976037,[275,275,0]],[1708976038,[279,279,0]],[1708976039,[281,281,0]],[1708976040,[284,284,0]],[1708976041,[286,286,0]],[1708976042,[290,290,0]],[1708976043,[291,291,0]],[1708976044,[296,296,0]],[1708976045,[298,298,0]],[1708976046,[300,300,0]],[1708976047,[304,301,3]],[1708976048,[306,257,49]],[1708976049,[310,240,70]],[1708976050,[313,0,313]],[1708976051,[314,0,314]],[1708976052,[318,10,308]],[1708976053,[320,0,320]],[1708976054,[323,120,203]],[1708976055,[326,201,125]],[1708976056,[330,0,330]],[1708976057,[331,74,257]],[1708976058,[334,264,70]],[1708976059,[338,293,45]],[1708976060,[340,15,325]],[1708976061,[340,9,331]],[1708976062,[340,0,340]],[1708976063,[340,0,340]],[1708976064,[340,0,340]],[1708976065,[340,161,179]],[1708976066,[340,224,116]],[1708976067,[340,167,173]],[1708976068,[336,0,336]],[1708976069,[344,0,344]],[1708976070,[340,0,340]],[1708976071,[340,0,340]],[1708976072,[340,0,340]],[1708976073,[340,159,181]],[1708976074,[340,22,318]],[1708976075,[340,0,340]],[1708976076,[340,0,340]],[1708976077,[340,0,340]],[1708976078,[340,0,340]],[1708976079,[340,0,340]],[1708976080,[340,31,309]],[1708976081,[340,340,0]],[1708976082,[340,340,0]],[1708976083,[339,103,236]],[1708976084,[341,0,341]],[1708976085,[340,0,340]],[1708976086,[340,0,340]],[1708976087,[340,0,340]],[1708976088,[340,0,340]],[1708976089,[340,0,340]],[1708976090,[340,0,340]],[1708976091,[340,0,340]],[1708976092,[340,0,340]],[1708976093,[340,0,340]],[1708976094,[340,0,340]],[1708976095,[340,0,340]],[1708976096,[340,46,294]],[1708976097,[340,0,340]],[1708976098,[340,0,340]],[1708976099,[340,0,340]],[1708976100,[340,0,340]],[1708976101,[340,0,340]],[1708976102,[340,0,340]],[1708976103,[340,0,340]],[1708976104,[340,0,340]],[1708976105,[340,0,340]],[1708976106,[340,0,340]],[1708976107,[340,0,340]],[1708976108,[340,0,340]],[1708976109,[340,0,340]],[1708976110,[340,0,340]],[1708976111,[340,0,340]],[1708976112,[340,0,340]],[1708976113,[340,0,340]],[1708976114,[340,0,340]],[1708976115,[340,0,340]],[1708976116,[340,0,340]],[1708976117,[340,0,340]],[1708976118,[340,0,340]],[1708976119,[340,0,340]],[1708976120,[340,0,340]],[1708976121,[340,0,340]],[1708976122,[340,0,340]],[1708976123,[340,0,340]],[1708976124,[340,65,275]],[1708976125,[340,89,251]],[1708976126,[340,0,340]],[1708976127,[340,0,340]],[1708976128,[340,0,340]],[1708976129,[340,0,340]],[1708976130,[340,0,340]],[1708976131,[340,0,340]],[1708976132,[340,0,340]],[1708976133,[340,0,340]],[1708976134,[340,0,340]],[1708976135,[340,0,340]],[1708976136,[340,0,340]],[1708976137,[340,0,340]],[1708976138,[340,0,340]],[1708976139,[340,0,340]],[1708976140,[340,0,340]],[1708976141,[340,0,340]],[1708976142,[340,0,340]],[1708976143,[340,0,340]],[1708976144,[340,0,340]],[1708976145,[340,0,340]],[1708976146,[340,0,340]],[1708976147,[340,0,340]],[1708976148,[340,0,340]],[1708976149,[340,0,340]],[1708976150,[340,0,340]],[1708976151,[340,0,340]],[1708976152,[340,0,340]],[1708976153,[340,0,340]],[1708976154,[340,0,340]],[1708976155,[340,0,340]],[1708976156,[340,0,340]],[1708976157,[340,0,340]],[1708976158,[340,0,340]],[1708976159,[340,0,340]],[1708976160,[340,0,340]],[1708976161,[340,0,340]],[1708976162,[340,0,340]],[1708976163,[340,0,340]],[1708976164,[340,0,340]],[1708976165,[340,0,340]],[1708976166,[340,0,340]],[1708976167,[340,0,340]],[1708976168,[340,0,340]],[1708976169,[340,0,340]],[1708976170,[340,0,340]],[1708976171,[340,0,340]],[1708976172,[340,0,340]],[1708976173,[340,0,340]],[1708976174,[340,0,340]],[1708976175,[340,0,340]],[1708976176,[340,0,340]],[1708976177,[340,251,89]],[1708976178,[318,229,89]],[1708976179,[525,146,379]]]);
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' }
},