-
Notifications
You must be signed in to change notification settings - Fork 925
/
index.html
1225 lines (1155 loc) · 98.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-03-09 19:30:26 GMT</span>
</span>
<span class="simulation-information-item">
<span class="simulation-information-label">Duration: </span>
<span>4m 34s </span>
</span>
<span class="simulation-tooltip simulation-information-item description" title="Description" data-content="Rinha de Backend - 2024/Q1: Crébito - mdssjc-springboot-java">
<span class="simulation-information-label">Description: </span>
<span>Rinha de Backend - 2024/Q1: Crébito - mdssjc-springboot-java</span>
</span>
</div>
</div>
</div>
</div>
<div id="statistics_table_container">
<div id="stats" class="statistics extensible-geant collapsed">
<div class="title">
<div id="statistics_title" class="title_base"><span class="title_base_stats">Stats</span><span class="expand-table">Fixed height</span><span id="toggle-stats" class="toggle-table"></span><span class="collapse-table">Full size</span></div>
<div class="right">
<button class="statistics-button expand-all-button">Expand all groups</button>
<button class="statistics-button collapse-all-button">Collapse all groups</button>
<button id="statistics_full_screen" class="statistics-button" onclick="openStatisticsTableModal()"><img alt="Fullscreen" src="style/fullscreen.svg"></button>
</div>
</div>
<div class="scrollable">
<table id="container_statistics_head" class="statistics-in extensible-geant">
<thead>
<tr>
<th rowspan="2" id="col-1" class="header sortable sorted-up"><span>Requests</span></th>
<th colspan="5" class="header"><span class="executions">Executions</span></th>
<th colspan="8" class="header"><span class="response-time">Response Time (ms)</span></th>
</tr>
<tr>
<th id="col-2" class="header sortable"><span>Total</span></th>
<th id="col-3" class="header sortable"><span>OK</span></th>
<th id="col-4" class="header sortable"><span>KO</span></th>
<th id="col-5" class="header sortable"><span>% KO</span></th>
<th id="col-6" class="header sortable"><span><abbr title="Count of events per second">Cnt/s</abbr></span></th>
<th id="col-7" class="header sortable"><span>Min</span></th>
<th id="col-8" class="header sortable"><span>50th pct</span></th>
<th id="col-9" class="header sortable"><span>75th pct</span></th>
<th id="col-10" class="header sortable"><span>95th pct</span></th>
<th id="col-11" class="header sortable"><span>99th pct</span></th>
<th id="col-12" class="header sortable"><span>Max</span></th>
<th id="col-13" class="header sortable"><span>Mean</span></th>
<th id="col-14" class="header sortable"><span><abbr title="Standard Deviation">Std Dev</abbr></span></th>
</tr>
</thead>
<tbody></tbody>
</table>
<table id="container_statistics_body" class="statistics-in extensible-geant">
<tbody></tbody>
</table>
</div>
</div>
</div>
<dialog id="statistics_table_modal" class="statistics-table-modal">
<div class="statistics-table-modal-header"><button class="button-modal" onclick="closeStatisticsTableModal()"><img alt="Close" src="style/close.svg"></button></div>
<div class="statistics-table-modal-container">
<div id="statistics_table_modal_content" class="statistics-table-modal-content"></div>
</div>
</dialog>
<script>
function openStatisticsTableModal () {
const statsTable = document.getElementById("stats");
const statsTableModal = document.getElementById("statistics_table_modal");
const fullScreenButton = document.getElementById("statistics_full_screen");
fullScreenButton.disabled = true;
if (typeof statsTableModal.showModal === "function") {
const statsTableModalContent = document.getElementById("statistics_table_modal_content");
statsTableModalContent.innerHTML = "";
statsTableModalContent.appendChild(statsTable);
statsTableModal.showModal();
statsTableModal.addEventListener("close", function () {
const container = document.getElementById("statistics_table_container");
container.appendChild(statsTable);
fullScreenButton.disabled = false;
});
} else {
const incompatibleBrowserVersionMessage = document.createElement("div");
incompatibleBrowserVersionMessage.innerText = "Sorry, the <dialog> API is not supported by this browser.";
statsTable.insertBefore(incompatibleBrowserVersionMessage, statsTable.children[0]);
}
}
function closeStatisticsTableModal () {
const statsTableModal = document.getElementById("statistics_table_modal");
statsTableModal.close();
}
</script>
<div class="statistics extensible-geant collapsed">
<div class="title">
Errors
</div>
<table id="container_errors" class="statistics-in extensible-geant">
<thead>
<tr>
<th id="error-col-1" class="header sortable"><span>Error</span></th>
<th id="error-col-2" class="header sortable"><span>Count</span></th>
<th id="error-col-3" class="header sortable"><span>Percentage</span></th>
</tr>
</thead>
<tbody>
<tr>
<td class="error-col-1 total ko">j.i.IOException: Premature close<span class="value" style="display:none">0</span></td>
<td class="value error-col-2 total ko">57987</td>
<td class="value error-col-3 total ko">94.444 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">status.find.in(200,422), but actually found 500<span class="value" style="display:none">1</span></td>
<td class="value error-col-2 total ko">2036</td>
<td class="value error-col-3 total ko">3.316 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">j.u.NoSuchElementException: No attribute named 'limite' is defined<span class="value" style="display:none">2</span></td>
<td class="value error-col-2 total ko">1348</td>
<td class="value error-col-3 total ko">2.196 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">jmesPath(ultimas_transacoes[0].descricao).find.is(danada), but actually found nothing<span class="value" style="display:none">3</span></td>
<td class="value error-col-2 total ko">20</td>
<td class="value error-col-3 total ko">0.033 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">jmesPath(ultimas_transacoes[0].descricao).find.is(devolve), but actually found nothing<span class="value" style="display:none">4</span></td>
<td class="value error-col-2 total ko">5</td>
<td class="value error-col-3 total ko">0.008 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">status.find.is(404), but actually found 422<span class="value" style="display:none">5</span></td>
<td class="value error-col-2 total ko">1</td>
<td class="value error-col-3 total ko">0.002 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">jmesPath(saldo.total).find.is(-25), but actually found -6<span class="value" style="display:none">6</span></td>
<td class="value error-col-2 total ko">1</td>
<td class="value error-col-3 total ko">0.002 %</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: 'débitos',
data: [
[1710012627000,0],[1710012628000,0],[1710012629000,0],[1710012630000,0],[1710012631000,1],[1710012632000,1],[1710012633000,4],[1710012634000,7],[1710012635000,14],[1710012636000,23],[1710012637000,34],[1710012638000,47],[1710012639000,62],[1710012640000,78],[1710012641000,97],[1710012642000,117],[1710012643000,139],[1710012644000,163],[1710012645000,187],[1710012646000,196],[1710012647000,202],[1710012648000,204],[1710012649000,206],[1710012650000,209],[1710012651000,211],[1710012652000,212],[1710012653000,214],[1710012654000,221],[1710012655000,222],[1710012656000,227],[1710012657000,228],[1710012658000,231],[1710012659000,232],[1710012660000,234],[1710012661000,236],[1710012662000,237],[1710012663000,240],[1710012664000,240],[1710012665000,245],[1710012666000,248],[1710012667000,249],[1710012668000,258],[1710012669000,266],[1710012670000,268],[1710012671000,272],[1710012672000,282],[1710012673000,285],[1710012674000,292],[1710012675000,296],[1710012676000,298],[1710012677000,295],[1710012678000,297],[1710012679000,298],[1710012680000,298],[1710012681000,301],[1710012682000,302],[1710012683000,304],[1710012684000,302],[1710012685000,303],[1710012686000,304],[1710012687000,305],[1710012688000,307],[1710012689000,309],[1710012690000,311],[1710012691000,313],[1710012692000,314],[1710012693000,316],[1710012694000,318],[1710012695000,317],[1710012696000,319],[1710012697000,323],[1710012698000,322],[1710012699000,318],[1710012700000,323],[1710012701000,320],[1710012702000,315],[1710012703000,318],[1710012704000,327],[1710012705000,327],[1710012706000,331],[1710012707000,333],[1710012708000,335],[1710012709000,336],[1710012710000,339],[1710012711000,346],[1710012712000,348],[1710012713000,351],[1710012714000,354],[1710012715000,355],[1710012716000,357],[1710012717000,359],[1710012718000,361],[1710012719000,363],[1710012720000,364],[1710012721000,369],[1710012722000,370],[1710012723000,377],[1710012724000,378],[1710012725000,381],[1710012726000,381],[1710012727000,384],[1710012728000,385],[1710012729000,388],[1710012730000,388],[1710012731000,399],[1710012732000,399],[1710012733000,415],[1710012734000,414],[1710012735000,415],[1710012736000,421],[1710012737000,426],[1710012738000,429],[1710012739000,431],[1710012740000,432],[1710012741000,431],[1710012742000,431],[1710012743000,435],[1710012744000,437],[1710012745000,449],[1710012746000,452],[1710012747000,455],[1710012748000,459],[1710012749000,460],[1710012750000,464],[1710012751000,465],[1710012752000,465],[1710012753000,462],[1710012754000,462],[1710012755000,473],[1710012756000,478],[1710012757000,484],[1710012758000,489],[1710012759000,493],[1710012760000,501],[1710012761000,505],[1710012762000,497],[1710012763000,490],[1710012764000,496],[1710012765000,511],[1710012766000,513],[1710012767000,509],[1710012768000,514],[1710012769000,513],[1710012770000,516],[1710012771000,515],[1710012772000,521],[1710012773000,520],[1710012774000,522],[1710012775000,516],[1710012776000,514],[1710012777000,516],[1710012778000,515],[1710012779000,516],[1710012780000,516],[1710012781000,515],[1710012782000,516],[1710012783000,518],[1710012784000,518],[1710012785000,514],[1710012786000,511],[1710012787000,510],[1710012788000,515],[1710012789000,515],[1710012790000,514],[1710012791000,514],[1710012792000,528],[1710012793000,528],[1710012794000,528],[1710012795000,526],[1710012796000,529],[1710012797000,531],[1710012798000,530],[1710012799000,539],[1710012800000,544],[1710012801000,544],[1710012802000,537],[1710012803000,536],[1710012804000,534],[1710012805000,529],[1710012806000,532],[1710012807000,529],[1710012808000,530],[1710012809000,529],[1710012810000,538],[1710012811000,539],[1710012812000,538],[1710012813000,535],[1710012814000,535],[1710012815000,536],[1710012816000,538],[1710012817000,531],[1710012818000,526],[1710012819000,530],[1710012820000,530],[1710012821000,532],[1710012822000,517],[1710012823000,522],[1710012824000,508],[1710012825000,513],[1710012826000,512],[1710012827000,510],[1710012828000,510],[1710012829000,501],[1710012830000,493],[1710012831000,493],[1710012832000,493],[1710012833000,493],[1710012834000,493],[1710012835000,493],[1710012836000,491],[1710012837000,492],[1710012838000,493],[1710012839000,494],[1710012840000,495],[1710012841000,501],[1710012842000,501],[1710012843000,505],[1710012844000,506],[1710012845000,504],[1710012846000,504],[1710012847000,498],[1710012848000,492],[1710012849000,485],[1710012850000,486],[1710012851000,489],[1710012852000,507],[1710012853000,501],[1710012854000,510],[1710012855000,503],[1710012856000,501],[1710012857000,505],[1710012858000,511],[1710012859000,511],[1710012860000,513],[1710012861000,513],[1710012862000,516],[1710012863000,518],[1710012864000,519],[1710012865000,519],[1710012866000,524],[1710012867000,525],[1710012868000,526],[1710012869000,526],[1710012870000,525],[1710012871000,521],[1710012872000,307],[1710012873000,303],[1710012874000,302],[1710012875000,289],[1710012876000,279],[1710012877000,274],[1710012878000,263],[1710012879000,246],[1710012880000,221],[1710012881000,192],[1710012882000,161],[1710012883000,134],[1710012884000,101],[1710012885000,67],[1710012886000,54],[1710012887000,50],[1710012888000,40],[1710012889000,40],[1710012890000,38],[1710012891000,38],[1710012892000,35],[1710012893000,33],[1710012894000,32],[1710012895000,32],[1710012896000,27],[1710012897000,25],[1710012898000,21],[1710012899000,20],[1710012900000,9],[1710012901000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#68b65c',
name: 'créditos',
data: [
[1710012627000,0],[1710012628000,0],[1710012629000,0],[1710012630000,0],[1710012631000,1],[1710012632000,1],[1710012633000,2],[1710012634000,5],[1710012635000,9],[1710012636000,14],[1710012637000,20],[1710012638000,27],[1710012639000,35],[1710012640000,43],[1710012641000,53],[1710012642000,63],[1710012643000,75],[1710012644000,87],[1710012645000,100],[1710012646000,103],[1710012647000,108],[1710012648000,109],[1710012649000,110],[1710012650000,110],[1710012651000,112],[1710012652000,113],[1710012653000,113],[1710012654000,119],[1710012655000,119],[1710012656000,122],[1710012657000,124],[1710012658000,124],[1710012659000,128],[1710012660000,128],[1710012661000,130],[1710012662000,131],[1710012663000,132],[1710012664000,131],[1710012665000,131],[1710012666000,130],[1710012667000,134],[1710012668000,134],[1710012669000,136],[1710012670000,137],[1710012671000,138],[1710012672000,136],[1710012673000,134],[1710012674000,135],[1710012675000,136],[1710012676000,140],[1710012677000,138],[1710012678000,138],[1710012679000,139],[1710012680000,140],[1710012681000,141],[1710012682000,142],[1710012683000,143],[1710012684000,140],[1710012685000,142],[1710012686000,141],[1710012687000,143],[1710012688000,143],[1710012689000,141],[1710012690000,142],[1710012691000,144],[1710012692000,144],[1710012693000,146],[1710012694000,147],[1710012695000,148],[1710012696000,148],[1710012697000,147],[1710012698000,148],[1710012699000,147],[1710012700000,144],[1710012701000,150],[1710012702000,156],[1710012703000,160],[1710012704000,163],[1710012705000,171],[1710012706000,170],[1710012707000,173],[1710012708000,174],[1710012709000,175],[1710012710000,176],[1710012711000,181],[1710012712000,182],[1710012713000,183],[1710012714000,183],[1710012715000,185],[1710012716000,185],[1710012717000,186],[1710012718000,186],[1710012719000,188],[1710012720000,189],[1710012721000,193],[1710012722000,194],[1710012723000,196],[1710012724000,196],[1710012725000,203],[1710012726000,204],[1710012727000,202],[1710012728000,205],[1710012729000,206],[1710012730000,211],[1710012731000,204],[1710012732000,205],[1710012733000,209],[1710012734000,204],[1710012735000,207],[1710012736000,207],[1710012737000,212],[1710012738000,211],[1710012739000,214],[1710012740000,214],[1710012741000,214],[1710012742000,214],[1710012743000,218],[1710012744000,219],[1710012745000,219],[1710012746000,221],[1710012747000,222],[1710012748000,223],[1710012749000,225],[1710012750000,229],[1710012751000,227],[1710012752000,227],[1710012753000,229],[1710012754000,228],[1710012755000,234],[1710012756000,236],[1710012757000,243],[1710012758000,244],[1710012759000,241],[1710012760000,237],[1710012761000,242],[1710012762000,249],[1710012763000,245],[1710012764000,250],[1710012765000,248],[1710012766000,253],[1710012767000,253],[1710012768000,263],[1710012769000,267],[1710012770000,274],[1710012771000,274],[1710012772000,285],[1710012773000,285],[1710012774000,288],[1710012775000,290],[1710012776000,289],[1710012777000,290],[1710012778000,291],[1710012779000,290],[1710012780000,289],[1710012781000,290],[1710012782000,290],[1710012783000,289],[1710012784000,289],[1710012785000,289],[1710012786000,287],[1710012787000,289],[1710012788000,291],[1710012789000,292],[1710012790000,293],[1710012791000,291],[1710012792000,279],[1710012793000,282],[1710012794000,284],[1710012795000,285],[1710012796000,282],[1710012797000,280],[1710012798000,275],[1710012799000,278],[1710012800000,275],[1710012801000,275],[1710012802000,264],[1710012803000,264],[1710012804000,261],[1710012805000,264],[1710012806000,267],[1710012807000,270],[1710012808000,272],[1710012809000,273],[1710012810000,279],[1710012811000,278],[1710012812000,278],[1710012813000,281],[1710012814000,283],[1710012815000,279],[1710012816000,278],[1710012817000,276],[1710012818000,284],[1710012819000,289],[1710012820000,288],[1710012821000,289],[1710012822000,300],[1710012823000,294],[1710012824000,295],[1710012825000,301],[1710012826000,303],[1710012827000,302],[1710012828000,303],[1710012829000,295],[1710012830000,293],[1710012831000,296],[1710012832000,299],[1710012833000,299],[1710012834000,302],[1710012835000,300],[1710012836000,300],[1710012837000,300],[1710012838000,299],[1710012839000,298],[1710012840000,296],[1710012841000,302],[1710012842000,302],[1710012843000,304],[1710012844000,303],[1710012845000,305],[1710012846000,305],[1710012847000,308],[1710012848000,298],[1710012849000,291],[1710012850000,298],[1710012851000,310],[1710012852000,302],[1710012853000,310],[1710012854000,302],[1710012855000,297],[1710012856000,295],[1710012857000,296],[1710012858000,298],[1710012859000,298],[1710012860000,296],[1710012861000,293],[1710012862000,292],[1710012863000,292],[1710012864000,288],[1710012865000,288],[1710012866000,290],[1710012867000,287],[1710012868000,287],[1710012869000,290],[1710012870000,288],[1710012871000,281],[1710012872000,175],[1710012873000,168],[1710012874000,167],[1710012875000,157],[1710012876000,154],[1710012877000,142],[1710012878000,134],[1710012879000,131],[1710012880000,120],[1710012881000,99],[1710012882000,89],[1710012883000,75],[1710012884000,66],[1710012885000,47],[1710012886000,40],[1710012887000,37],[1710012888000,29],[1710012889000,29],[1710012890000,28],[1710012891000,26],[1710012892000,24],[1710012893000,22],[1710012894000,22],[1710012895000,19],[1710012896000,14],[1710012897000,13],[1710012898000,11],[1710012899000,7],[1710012900000,3],[1710012901000,1]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#f15b4f',
name: 'extratos',
data: [
[1710012627000,0],[1710012628000,0],[1710012629000,0],[1710012630000,0],[1710012631000,1],[1710012632000,1],[1710012633000,1],[1710012634000,1],[1710012635000,2],[1710012636000,3],[1710012637000,5],[1710012638000,6],[1710012639000,8],[1710012640000,10],[1710012641000,11],[1710012642000,13],[1710012643000,15],[1710012644000,17],[1710012645000,19],[1710012646000,19],[1710012647000,19],[1710012648000,19],[1710012649000,20],[1710012650000,20],[1710012651000,21],[1710012652000,20],[1710012653000,21],[1710012654000,20],[1710012655000,21],[1710012656000,21],[1710012657000,21],[1710012658000,21],[1710012659000,21],[1710012660000,21],[1710012661000,21],[1710012662000,22],[1710012663000,21],[1710012664000,21],[1710012665000,21],[1710012666000,20],[1710012667000,20],[1710012668000,18],[1710012669000,17],[1710012670000,15],[1710012671000,13],[1710012672000,12],[1710012673000,10],[1710012674000,8],[1710012675000,6],[1710012676000,6],[1710012677000,7],[1710012678000,6],[1710012679000,7],[1710012680000,6],[1710012681000,5],[1710012682000,6],[1710012683000,6],[1710012684000,6],[1710012685000,6],[1710012686000,8],[1710012687000,8],[1710012688000,8],[1710012689000,9],[1710012690000,8],[1710012691000,9],[1710012692000,8],[1710012693000,9],[1710012694000,8],[1710012695000,9],[1710012696000,8],[1710012697000,8],[1710012698000,8],[1710012699000,9],[1710012700000,9],[1710012701000,10],[1710012702000,11],[1710012703000,10],[1710012704000,10],[1710012705000,11],[1710012706000,10],[1710012707000,11],[1710012708000,12],[1710012709000,12],[1710012710000,12],[1710012711000,12],[1710012712000,12],[1710012713000,12],[1710012714000,13],[1710012715000,13],[1710012716000,11],[1710012717000,12],[1710012718000,11],[1710012719000,12],[1710012720000,13],[1710012721000,13],[1710012722000,14],[1710012723000,14],[1710012724000,14],[1710012725000,15],[1710012726000,15],[1710012727000,15],[1710012728000,15],[1710012729000,15],[1710012730000,14],[1710012731000,14],[1710012732000,15],[1710012733000,17],[1710012734000,17],[1710012735000,19],[1710012736000,19],[1710012737000,19],[1710012738000,18],[1710012739000,18],[1710012740000,18],[1710012741000,19],[1710012742000,20],[1710012743000,19],[1710012744000,18],[1710012745000,19],[1710012746000,19],[1710012747000,20],[1710012748000,20],[1710012749000,20],[1710012750000,19],[1710012751000,18],[1710012752000,19],[1710012753000,22],[1710012754000,22],[1710012755000,23],[1710012756000,23],[1710012757000,25],[1710012758000,25],[1710012759000,27],[1710012760000,28],[1710012761000,28],[1710012762000,29],[1710012763000,31],[1710012764000,31],[1710012765000,31],[1710012766000,33],[1710012767000,34],[1710012768000,37],[1710012769000,40],[1710012770000,43],[1710012771000,42],[1710012772000,44],[1710012773000,44],[1710012774000,46],[1710012775000,48],[1710012776000,49],[1710012777000,49],[1710012778000,50],[1710012779000,50],[1710012780000,51],[1710012781000,51],[1710012782000,50],[1710012783000,49],[1710012784000,51],[1710012785000,50],[1710012786000,51],[1710012787000,52],[1710012788000,55],[1710012789000,54],[1710012790000,53],[1710012791000,55],[1710012792000,52],[1710012793000,51],[1710012794000,51],[1710012795000,51],[1710012796000,52],[1710012797000,51],[1710012798000,49],[1710012799000,48],[1710012800000,48],[1710012801000,48],[1710012802000,46],[1710012803000,47],[1710012804000,47],[1710012805000,45],[1710012806000,46],[1710012807000,49],[1710012808000,49],[1710012809000,49],[1710012810000,54],[1710012811000,55],[1710012812000,55],[1710012813000,54],[1710012814000,52],[1710012815000,53],[1710012816000,52],[1710012817000,51],[1710012818000,49],[1710012819000,50],[1710012820000,53],[1710012821000,53],[1710012822000,57],[1710012823000,57],[1710012824000,58],[1710012825000,59],[1710012826000,58],[1710012827000,60],[1710012828000,59],[1710012829000,57],[1710012830000,55],[1710012831000,55],[1710012832000,57],[1710012833000,58],[1710012834000,59],[1710012835000,61],[1710012836000,60],[1710012837000,58],[1710012838000,62],[1710012839000,64],[1710012840000,58],[1710012841000,59],[1710012842000,60],[1710012843000,62],[1710012844000,63],[1710012845000,63],[1710012846000,64],[1710012847000,62],[1710012848000,61],[1710012849000,61],[1710012850000,60],[1710012851000,61],[1710012852000,57],[1710012853000,56],[1710012854000,55],[1710012855000,55],[1710012856000,55],[1710012857000,54],[1710012858000,57],[1710012859000,57],[1710012860000,56],[1710012861000,59],[1710012862000,57],[1710012863000,56],[1710012864000,54],[1710012865000,53],[1710012866000,53],[1710012867000,52],[1710012868000,50],[1710012869000,50],[1710012870000,53],[1710012871000,53],[1710012872000,43],[1710012873000,40],[1710012874000,39],[1710012875000,37],[1710012876000,36],[1710012877000,36],[1710012878000,36],[1710012879000,34],[1710012880000,32],[1710012881000,29],[1710012882000,29],[1710012883000,28],[1710012884000,27],[1710012885000,25],[1710012886000,23],[1710012887000,22],[1710012888000,19],[1710012889000,19],[1710012890000,19],[1710012891000,16],[1710012892000,16],[1710012893000,15],[1710012894000,14],[1710012895000,13],[1710012896000,11],[1710012897000,11],[1710012898000,8],[1710012899000,6],[1710012900000,3],[1710012901000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FFDD00',
name: 'validações',
data: [
[1710012627000,0],[1710012628000,0],[1710012629000,0],[1710012630000,5],[1710012631000,5],[1710012632000,0],[1710012633000,0],[1710012634000,0],[1710012635000,0],[1710012636000,0],[1710012637000,0],[1710012638000,0],[1710012639000,0],[1710012640000,0],[1710012641000,0],[1710012642000,0],[1710012643000,0],[1710012644000,0],[1710012645000,0],[1710012646000,0],[1710012647000,0],[1710012648000,0],[1710012649000,0],[1710012650000,0],[1710012651000,0],[1710012652000,0],[1710012653000,0],[1710012654000,0],[1710012655000,0],[1710012656000,0],[1710012657000,0],[1710012658000,0],[1710012659000,0],[1710012660000,0],[1710012661000,0],[1710012662000,0],[1710012663000,0],[1710012664000,0],[1710012665000,0],[1710012666000,0],[1710012667000,0],[1710012668000,0],[1710012669000,0],[1710012670000,0],[1710012671000,0],[1710012672000,0],[1710012673000,0],[1710012674000,0],[1710012675000,0],[1710012676000,0],[1710012677000,0],[1710012678000,0],[1710012679000,0],[1710012680000,0],[1710012681000,0],[1710012682000,0],[1710012683000,0],[1710012684000,0],[1710012685000,0],[1710012686000,0],[1710012687000,0],[1710012688000,0],[1710012689000,0],[1710012690000,0],[1710012691000,0],[1710012692000,0],[1710012693000,0],[1710012694000,0],[1710012695000,0],[1710012696000,0],[1710012697000,0],[1710012698000,0],[1710012699000,0],[1710012700000,0],[1710012701000,0],[1710012702000,0],[1710012703000,0],[1710012704000,0],[1710012705000,0],[1710012706000,0],[1710012707000,0],[1710012708000,0],[1710012709000,0],[1710012710000,0],[1710012711000,0],[1710012712000,0],[1710012713000,0],[1710012714000,0],[1710012715000,0],[1710012716000,0],[1710012717000,0],[1710012718000,0],[1710012719000,0],[1710012720000,0],[1710012721000,0],[1710012722000,0],[1710012723000,0],[1710012724000,0],[1710012725000,0],[1710012726000,0],[1710012727000,0],[1710012728000,0],[1710012729000,0],[1710012730000,0],[1710012731000,0],[1710012732000,0],[1710012733000,0],[1710012734000,0],[1710012735000,0],[1710012736000,0],[1710012737000,0],[1710012738000,0],[1710012739000,0],[1710012740000,0],[1710012741000,0],[1710012742000,0],[1710012743000,0],[1710012744000,0],[1710012745000,0],[1710012746000,0],[1710012747000,0],[1710012748000,0],[1710012749000,0],[1710012750000,0],[1710012751000,0],[1710012752000,0],[1710012753000,0],[1710012754000,0],[1710012755000,0],[1710012756000,0],[1710012757000,0],[1710012758000,0],[1710012759000,0],[1710012760000,0],[1710012761000,0],[1710012762000,0],[1710012763000,0],[1710012764000,0],[1710012765000,0],[1710012766000,0],[1710012767000,0],[1710012768000,0],[1710012769000,0],[1710012770000,0],[1710012771000,0],[1710012772000,0],[1710012773000,0],[1710012774000,0],[1710012775000,0],[1710012776000,0],[1710012777000,0],[1710012778000,0],[1710012779000,0],[1710012780000,0],[1710012781000,0],[1710012782000,0],[1710012783000,0],[1710012784000,0],[1710012785000,0],[1710012786000,0],[1710012787000,0],[1710012788000,0],[1710012789000,0],[1710012790000,0],[1710012791000,0],[1710012792000,0],[1710012793000,0],[1710012794000,0],[1710012795000,0],[1710012796000,0],[1710012797000,0],[1710012798000,0],[1710012799000,0],[1710012800000,0],[1710012801000,0],[1710012802000,0],[1710012803000,0],[1710012804000,0],[1710012805000,0],[1710012806000,0],[1710012807000,0],[1710012808000,0],[1710012809000,0],[1710012810000,0],[1710012811000,0],[1710012812000,0],[1710012813000,0],[1710012814000,0],[1710012815000,0],[1710012816000,0],[1710012817000,0],[1710012818000,0],[1710012819000,0],[1710012820000,0],[1710012821000,0],[1710012822000,0],[1710012823000,0],[1710012824000,0],[1710012825000,0],[1710012826000,0],[1710012827000,0],[1710012828000,0],[1710012829000,0],[1710012830000,0],[1710012831000,0],[1710012832000,0],[1710012833000,0],[1710012834000,0],[1710012835000,0],[1710012836000,0],[1710012837000,0],[1710012838000,0],[1710012839000,0],[1710012840000,0],[1710012841000,0],[1710012842000,0],[1710012843000,0],[1710012844000,0],[1710012845000,0],[1710012846000,0],[1710012847000,0],[1710012848000,0],[1710012849000,0],[1710012850000,0],[1710012851000,0],[1710012852000,0],[1710012853000,0],[1710012854000,0],[1710012855000,0],[1710012856000,0],[1710012857000,0],[1710012858000,0],[1710012859000,0],[1710012860000,0],[1710012861000,0],[1710012862000,0],[1710012863000,0],[1710012864000,0],[1710012865000,0],[1710012866000,0],[1710012867000,0],[1710012868000,0],[1710012869000,0],[1710012870000,0],[1710012871000,0],[1710012872000,0],[1710012873000,0],[1710012874000,0],[1710012875000,0],[1710012876000,0],[1710012877000,0],[1710012878000,0],[1710012879000,0],[1710012880000,0],[1710012881000,0],[1710012882000,0],[1710012883000,0],[1710012884000,0],[1710012885000,0],[1710012886000,0],[1710012887000,0],[1710012888000,0],[1710012889000,0],[1710012890000,0],[1710012891000,0],[1710012892000,0],[1710012893000,0],[1710012894000,0],[1710012895000,0],[1710012896000,0],[1710012897000,0],[1710012898000,0],[1710012899000,0],[1710012900000,0],[1710012901000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00D5FF',
name: 'validação HTTP 404',
data: [
[1710012627000,0],[1710012628000,0],[1710012629000,0],[1710012630000,1],[1710012631000,0],[1710012632000,0],[1710012633000,0],[1710012634000,0],[1710012635000,0],[1710012636000,0],[1710012637000,0],[1710012638000,0],[1710012639000,0],[1710012640000,0],[1710012641000,0],[1710012642000,0],[1710012643000,0],[1710012644000,0],[1710012645000,0],[1710012646000,0],[1710012647000,0],[1710012648000,0],[1710012649000,0],[1710012650000,0],[1710012651000,0],[1710012652000,0],[1710012653000,0],[1710012654000,0],[1710012655000,0],[1710012656000,0],[1710012657000,0],[1710012658000,0],[1710012659000,0],[1710012660000,0],[1710012661000,0],[1710012662000,0],[1710012663000,0],[1710012664000,0],[1710012665000,0],[1710012666000,0],[1710012667000,0],[1710012668000,0],[1710012669000,0],[1710012670000,0],[1710012671000,0],[1710012672000,0],[1710012673000,0],[1710012674000,0],[1710012675000,0],[1710012676000,0],[1710012677000,0],[1710012678000,0],[1710012679000,0],[1710012680000,0],[1710012681000,0],[1710012682000,0],[1710012683000,0],[1710012684000,0],[1710012685000,0],[1710012686000,0],[1710012687000,0],[1710012688000,0],[1710012689000,0],[1710012690000,0],[1710012691000,0],[1710012692000,0],[1710012693000,0],[1710012694000,0],[1710012695000,0],[1710012696000,0],[1710012697000,0],[1710012698000,0],[1710012699000,0],[1710012700000,0],[1710012701000,0],[1710012702000,0],[1710012703000,0],[1710012704000,0],[1710012705000,0],[1710012706000,0],[1710012707000,0],[1710012708000,0],[1710012709000,0],[1710012710000,0],[1710012711000,0],[1710012712000,0],[1710012713000,0],[1710012714000,0],[1710012715000,0],[1710012716000,0],[1710012717000,0],[1710012718000,0],[1710012719000,0],[1710012720000,0],[1710012721000,0],[1710012722000,0],[1710012723000,0],[1710012724000,0],[1710012725000,0],[1710012726000,0],[1710012727000,0],[1710012728000,0],[1710012729000,0],[1710012730000,0],[1710012731000,0],[1710012732000,0],[1710012733000,0],[1710012734000,0],[1710012735000,0],[1710012736000,0],[1710012737000,0],[1710012738000,0],[1710012739000,0],[1710012740000,0],[1710012741000,0],[1710012742000,0],[1710012743000,0],[1710012744000,0],[1710012745000,0],[1710012746000,0],[1710012747000,0],[1710012748000,0],[1710012749000,0],[1710012750000,0],[1710012751000,0],[1710012752000,0],[1710012753000,0],[1710012754000,0],[1710012755000,0],[1710012756000,0],[1710012757000,0],[1710012758000,0],[1710012759000,0],[1710012760000,0],[1710012761000,0],[1710012762000,0],[1710012763000,0],[1710012764000,0],[1710012765000,0],[1710012766000,0],[1710012767000,0],[1710012768000,0],[1710012769000,0],[1710012770000,0],[1710012771000,0],[1710012772000,0],[1710012773000,0],[1710012774000,0],[1710012775000,0],[1710012776000,0],[1710012777000,0],[1710012778000,0],[1710012779000,0],[1710012780000,0],[1710012781000,0],[1710012782000,0],[1710012783000,0],[1710012784000,0],[1710012785000,0],[1710012786000,0],[1710012787000,0],[1710012788000,0],[1710012789000,0],[1710012790000,0],[1710012791000,0],[1710012792000,0],[1710012793000,0],[1710012794000,0],[1710012795000,0],[1710012796000,0],[1710012797000,0],[1710012798000,0],[1710012799000,0],[1710012800000,0],[1710012801000,0],[1710012802000,0],[1710012803000,0],[1710012804000,0],[1710012805000,0],[1710012806000,0],[1710012807000,0],[1710012808000,0],[1710012809000,0],[1710012810000,0],[1710012811000,0],[1710012812000,0],[1710012813000,0],[1710012814000,0],[1710012815000,0],[1710012816000,0],[1710012817000,0],[1710012818000,0],[1710012819000,0],[1710012820000,0],[1710012821000,0],[1710012822000,0],[1710012823000,0],[1710012824000,0],[1710012825000,0],[1710012826000,0],[1710012827000,0],[1710012828000,0],[1710012829000,0],[1710012830000,0],[1710012831000,0],[1710012832000,0],[1710012833000,0],[1710012834000,0],[1710012835000,0],[1710012836000,0],[1710012837000,0],[1710012838000,0],[1710012839000,0],[1710012840000,0],[1710012841000,0],[1710012842000,0],[1710012843000,0],[1710012844000,0],[1710012845000,0],[1710012846000,0],[1710012847000,0],[1710012848000,0],[1710012849000,0],[1710012850000,0],[1710012851000,0],[1710012852000,0],[1710012853000,0],[1710012854000,0],[1710012855000,0],[1710012856000,0],[1710012857000,0],[1710012858000,0],[1710012859000,0],[1710012860000,0],[1710012861000,0],[1710012862000,0],[1710012863000,0],[1710012864000,0],[1710012865000,0],[1710012866000,0],[1710012867000,0],[1710012868000,0],[1710012869000,0],[1710012870000,0],[1710012871000,0],[1710012872000,0],[1710012873000,0],[1710012874000,0],[1710012875000,0],[1710012876000,0],[1710012877000,0],[1710012878000,0],[1710012879000,0],[1710012880000,0],[1710012881000,0],[1710012882000,0],[1710012883000,0],[1710012884000,0],[1710012885000,0],[1710012886000,0],[1710012887000,0],[1710012888000,0],[1710012889000,0],[1710012890000,0],[1710012891000,0],[1710012892000,0],[1710012893000,0],[1710012894000,0],[1710012895000,0],[1710012896000,0],[1710012897000,0],[1710012898000,0],[1710012899000,0],[1710012900000,0],[1710012901000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00FF00',
name: 'validação concorrência saldo - 0',
data: [
[1710012627000,0],[1710012628000,0],[1710012629000,1],[1710012630000,0],[1710012631000,0],[1710012632000,0],[1710012633000,0],[1710012634000,0],[1710012635000,0],[1710012636000,0],[1710012637000,0],[1710012638000,0],[1710012639000,0],[1710012640000,0],[1710012641000,0],[1710012642000,0],[1710012643000,0],[1710012644000,0],[1710012645000,0],[1710012646000,0],[1710012647000,0],[1710012648000,0],[1710012649000,0],[1710012650000,0],[1710012651000,0],[1710012652000,0],[1710012653000,0],[1710012654000,0],[1710012655000,0],[1710012656000,0],[1710012657000,0],[1710012658000,0],[1710012659000,0],[1710012660000,0],[1710012661000,0],[1710012662000,0],[1710012663000,0],[1710012664000,0],[1710012665000,0],[1710012666000,0],[1710012667000,0],[1710012668000,0],[1710012669000,0],[1710012670000,0],[1710012671000,0],[1710012672000,0],[1710012673000,0],[1710012674000,0],[1710012675000,0],[1710012676000,0],[1710012677000,0],[1710012678000,0],[1710012679000,0],[1710012680000,0],[1710012681000,0],[1710012682000,0],[1710012683000,0],[1710012684000,0],[1710012685000,0],[1710012686000,0],[1710012687000,0],[1710012688000,0],[1710012689000,0],[1710012690000,0],[1710012691000,0],[1710012692000,0],[1710012693000,0],[1710012694000,0],[1710012695000,0],[1710012696000,0],[1710012697000,0],[1710012698000,0],[1710012699000,0],[1710012700000,0],[1710012701000,0],[1710012702000,0],[1710012703000,0],[1710012704000,0],[1710012705000,0],[1710012706000,0],[1710012707000,0],[1710012708000,0],[1710012709000,0],[1710012710000,0],[1710012711000,0],[1710012712000,0],[1710012713000,0],[1710012714000,0],[1710012715000,0],[1710012716000,0],[1710012717000,0],[1710012718000,0],[1710012719000,0],[1710012720000,0],[1710012721000,0],[1710012722000,0],[1710012723000,0],[1710012724000,0],[1710012725000,0],[1710012726000,0],[1710012727000,0],[1710012728000,0],[1710012729000,0],[1710012730000,0],[1710012731000,0],[1710012732000,0],[1710012733000,0],[1710012734000,0],[1710012735000,0],[1710012736000,0],[1710012737000,0],[1710012738000,0],[1710012739000,0],[1710012740000,0],[1710012741000,0],[1710012742000,0],[1710012743000,0],[1710012744000,0],[1710012745000,0],[1710012746000,0],[1710012747000,0],[1710012748000,0],[1710012749000,0],[1710012750000,0],[1710012751000,0],[1710012752000,0],[1710012753000,0],[1710012754000,0],[1710012755000,0],[1710012756000,0],[1710012757000,0],[1710012758000,0],[1710012759000,0],[1710012760000,0],[1710012761000,0],[1710012762000,0],[1710012763000,0],[1710012764000,0],[1710012765000,0],[1710012766000,0],[1710012767000,0],[1710012768000,0],[1710012769000,0],[1710012770000,0],[1710012771000,0],[1710012772000,0],[1710012773000,0],[1710012774000,0],[1710012775000,0],[1710012776000,0],[1710012777000,0],[1710012778000,0],[1710012779000,0],[1710012780000,0],[1710012781000,0],[1710012782000,0],[1710012783000,0],[1710012784000,0],[1710012785000,0],[1710012786000,0],[1710012787000,0],[1710012788000,0],[1710012789000,0],[1710012790000,0],[1710012791000,0],[1710012792000,0],[1710012793000,0],[1710012794000,0],[1710012795000,0],[1710012796000,0],[1710012797000,0],[1710012798000,0],[1710012799000,0],[1710012800000,0],[1710012801000,0],[1710012802000,0],[1710012803000,0],[1710012804000,0],[1710012805000,0],[1710012806000,0],[1710012807000,0],[1710012808000,0],[1710012809000,0],[1710012810000,0],[1710012811000,0],[1710012812000,0],[1710012813000,0],[1710012814000,0],[1710012815000,0],[1710012816000,0],[1710012817000,0],[1710012818000,0],[1710012819000,0],[1710012820000,0],[1710012821000,0],[1710012822000,0],[1710012823000,0],[1710012824000,0],[1710012825000,0],[1710012826000,0],[1710012827000,0],[1710012828000,0],[1710012829000,0],[1710012830000,0],[1710012831000,0],[1710012832000,0],[1710012833000,0],[1710012834000,0],[1710012835000,0],[1710012836000,0],[1710012837000,0],[1710012838000,0],[1710012839000,0],[1710012840000,0],[1710012841000,0],[1710012842000,0],[1710012843000,0],[1710012844000,0],[1710012845000,0],[1710012846000,0],[1710012847000,0],[1710012848000,0],[1710012849000,0],[1710012850000,0],[1710012851000,0],[1710012852000,0],[1710012853000,0],[1710012854000,0],[1710012855000,0],[1710012856000,0],[1710012857000,0],[1710012858000,0],[1710012859000,0],[1710012860000,0],[1710012861000,0],[1710012862000,0],[1710012863000,0],[1710012864000,0],[1710012865000,0],[1710012866000,0],[1710012867000,0],[1710012868000,0],[1710012869000,0],[1710012870000,0],[1710012871000,0],[1710012872000,0],[1710012873000,0],[1710012874000,0],[1710012875000,0],[1710012876000,0],[1710012877000,0],[1710012878000,0],[1710012879000,0],[1710012880000,0],[1710012881000,0],[1710012882000,0],[1710012883000,0],[1710012884000,0],[1710012885000,0],[1710012886000,0],[1710012887000,0],[1710012888000,0],[1710012889000,0],[1710012890000,0],[1710012891000,0],[1710012892000,0],[1710012893000,0],[1710012894000,0],[1710012895000,0],[1710012896000,0],[1710012897000,0],[1710012898000,0],[1710012899000,0],[1710012900000,0],[1710012901000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#9D00FF',
name: 'validação concorrência transações - c',
data: [
[1710012627000,0],[1710012628000,25],[1710012629000,24],[1710012630000,0],[1710012631000,0],[1710012632000,0],[1710012633000,0],[1710012634000,0],[1710012635000,0],[1710012636000,0],[1710012637000,0],[1710012638000,0],[1710012639000,0],[1710012640000,0],[1710012641000,0],[1710012642000,0],[1710012643000,0],[1710012644000,0],[1710012645000,0],[1710012646000,0],[1710012647000,0],[1710012648000,0],[1710012649000,0],[1710012650000,0],[1710012651000,0],[1710012652000,0],[1710012653000,0],[1710012654000,0],[1710012655000,0],[1710012656000,0],[1710012657000,0],[1710012658000,0],[1710012659000,0],[1710012660000,0],[1710012661000,0],[1710012662000,0],[1710012663000,0],[1710012664000,0],[1710012665000,0],[1710012666000,0],[1710012667000,0],[1710012668000,0],[1710012669000,0],[1710012670000,0],[1710012671000,0],[1710012672000,0],[1710012673000,0],[1710012674000,0],[1710012675000,0],[1710012676000,0],[1710012677000,0],[1710012678000,0],[1710012679000,0],[1710012680000,0],[1710012681000,0],[1710012682000,0],[1710012683000,0],[1710012684000,0],[1710012685000,0],[1710012686000,0],[1710012687000,0],[1710012688000,0],[1710012689000,0],[1710012690000,0],[1710012691000,0],[1710012692000,0],[1710012693000,0],[1710012694000,0],[1710012695000,0],[1710012696000,0],[1710012697000,0],[1710012698000,0],[1710012699000,0],[1710012700000,0],[1710012701000,0],[1710012702000,0],[1710012703000,0],[1710012704000,0],[1710012705000,0],[1710012706000,0],[1710012707000,0],[1710012708000,0],[1710012709000,0],[1710012710000,0],[1710012711000,0],[1710012712000,0],[1710012713000,0],[1710012714000,0],[1710012715000,0],[1710012716000,0],[1710012717000,0],[1710012718000,0],[1710012719000,0],[1710012720000,0],[1710012721000,0],[1710012722000,0],[1710012723000,0],[1710012724000,0],[1710012725000,0],[1710012726000,0],[1710012727000,0],[1710012728000,0],[1710012729000,0],[1710012730000,0],[1710012731000,0],[1710012732000,0],[1710012733000,0],[1710012734000,0],[1710012735000,0],[1710012736000,0],[1710012737000,0],[1710012738000,0],[1710012739000,0],[1710012740000,0],[1710012741000,0],[1710012742000,0],[1710012743000,0],[1710012744000,0],[1710012745000,0],[1710012746000,0],[1710012747000,0],[1710012748000,0],[1710012749000,0],[1710012750000,0],[1710012751000,0],[1710012752000,0],[1710012753000,0],[1710012754000,0],[1710012755000,0],[1710012756000,0],[1710012757000,0],[1710012758000,0],[1710012759000,0],[1710012760000,0],[1710012761000,0],[1710012762000,0],[1710012763000,0],[1710012764000,0],[1710012765000,0],[1710012766000,0],[1710012767000,0],[1710012768000,0],[1710012769000,0],[1710012770000,0],[1710012771000,0],[1710012772000,0],[1710012773000,0],[1710012774000,0],[1710012775000,0],[1710012776000,0],[1710012777000,0],[1710012778000,0],[1710012779000,0],[1710012780000,0],[1710012781000,0],[1710012782000,0],[1710012783000,0],[1710012784000,0],[1710012785000,0],[1710012786000,0],[1710012787000,0],[1710012788000,0],[1710012789000,0],[1710012790000,0],[1710012791000,0],[1710012792000,0],[1710012793000,0],[1710012794000,0],[1710012795000,0],[1710012796000,0],[1710012797000,0],[1710012798000,0],[1710012799000,0],[1710012800000,0],[1710012801000,0],[1710012802000,0],[1710012803000,0],[1710012804000,0],[1710012805000,0],[1710012806000,0],[1710012807000,0],[1710012808000,0],[1710012809000,0],[1710012810000,0],[1710012811000,0],[1710012812000,0],[1710012813000,0],[1710012814000,0],[1710012815000,0],[1710012816000,0],[1710012817000,0],[1710012818000,0],[1710012819000,0],[1710012820000,0],[1710012821000,0],[1710012822000,0],[1710012823000,0],[1710012824000,0],[1710012825000,0],[1710012826000,0],[1710012827000,0],[1710012828000,0],[1710012829000,0],[1710012830000,0],[1710012831000,0],[1710012832000,0],[1710012833000,0],[1710012834000,0],[1710012835000,0],[1710012836000,0],[1710012837000,0],[1710012838000,0],[1710012839000,0],[1710012840000,0],[1710012841000,0],[1710012842000,0],[1710012843000,0],[1710012844000,0],[1710012845000,0],[1710012846000,0],[1710012847000,0],[1710012848000,0],[1710012849000,0],[1710012850000,0],[1710012851000,0],[1710012852000,0],[1710012853000,0],[1710012854000,0],[1710012855000,0],[1710012856000,0],[1710012857000,0],[1710012858000,0],[1710012859000,0],[1710012860000,0],[1710012861000,0],[1710012862000,0],[1710012863000,0],[1710012864000,0],[1710012865000,0],[1710012866000,0],[1710012867000,0],[1710012868000,0],[1710012869000,0],[1710012870000,0],[1710012871000,0],[1710012872000,0],[1710012873000,0],[1710012874000,0],[1710012875000,0],[1710012876000,0],[1710012877000,0],[1710012878000,0],[1710012879000,0],[1710012880000,0],[1710012881000,0],[1710012882000,0],[1710012883000,0],[1710012884000,0],[1710012885000,0],[1710012886000,0],[1710012887000,0],[1710012888000,0],[1710012889000,0],[1710012890000,0],[1710012891000,0],[1710012892000,0],[1710012893000,0],[1710012894000,0],[1710012895000,0],[1710012896000,0],[1710012897000,0],[1710012898000,0],[1710012899000,0],[1710012900000,0],[1710012901000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FF00E1',
name: 'validação concorrência saldo - -25',
data: [
[1710012627000,1],[1710012628000,1],[1710012629000,0],[1710012630000,0],[1710012631000,0],[1710012632000,0],[1710012633000,0],[1710012634000,0],[1710012635000,0],[1710012636000,0],[1710012637000,0],[1710012638000,0],[1710012639000,0],[1710012640000,0],[1710012641000,0],[1710012642000,0],[1710012643000,0],[1710012644000,0],[1710012645000,0],[1710012646000,0],[1710012647000,0],[1710012648000,0],[1710012649000,0],[1710012650000,0],[1710012651000,0],[1710012652000,0],[1710012653000,0],[1710012654000,0],[1710012655000,0],[1710012656000,0],[1710012657000,0],[1710012658000,0],[1710012659000,0],[1710012660000,0],[1710012661000,0],[1710012662000,0],[1710012663000,0],[1710012664000,0],[1710012665000,0],[1710012666000,0],[1710012667000,0],[1710012668000,0],[1710012669000,0],[1710012670000,0],[1710012671000,0],[1710012672000,0],[1710012673000,0],[1710012674000,0],[1710012675000,0],[1710012676000,0],[1710012677000,0],[1710012678000,0],[1710012679000,0],[1710012680000,0],[1710012681000,0],[1710012682000,0],[1710012683000,0],[1710012684000,0],[1710012685000,0],[1710012686000,0],[1710012687000,0],[1710012688000,0],[1710012689000,0],[1710012690000,0],[1710012691000,0],[1710012692000,0],[1710012693000,0],[1710012694000,0],[1710012695000,0],[1710012696000,0],[1710012697000,0],[1710012698000,0],[1710012699000,0],[1710012700000,0],[1710012701000,0],[1710012702000,0],[1710012703000,0],[1710012704000,0],[1710012705000,0],[1710012706000,0],[1710012707000,0],[1710012708000,0],[1710012709000,0],[1710012710000,0],[1710012711000,0],[1710012712000,0],[1710012713000,0],[1710012714000,0],[1710012715000,0],[1710012716000,0],[1710012717000,0],[1710012718000,0],[1710012719000,0],[1710012720000,0],[1710012721000,0],[1710012722000,0],[1710012723000,0],[1710012724000,0],[1710012725000,0],[1710012726000,0],[1710012727000,0],[1710012728000,0],[1710012729000,0],[1710012730000,0],[1710012731000,0],[1710012732000,0],[1710012733000,0],[1710012734000,0],[1710012735000,0],[1710012736000,0],[1710012737000,0],[1710012738000,0],[1710012739000,0],[1710012740000,0],[1710012741000,0],[1710012742000,0],[1710012743000,0],[1710012744000,0],[1710012745000,0],[1710012746000,0],[1710012747000,0],[1710012748000,0],[1710012749000,0],[1710012750000,0],[1710012751000,0],[1710012752000,0],[1710012753000,0],[1710012754000,0],[1710012755000,0],[1710012756000,0],[1710012757000,0],[1710012758000,0],[1710012759000,0],[1710012760000,0],[1710012761000,0],[1710012762000,0],[1710012763000,0],[1710012764000,0],[1710012765000,0],[1710012766000,0],[1710012767000,0],[1710012768000,0],[1710012769000,0],[1710012770000,0],[1710012771000,0],[1710012772000,0],[1710012773000,0],[1710012774000,0],[1710012775000,0],[1710012776000,0],[1710012777000,0],[1710012778000,0],[1710012779000,0],[1710012780000,0],[1710012781000,0],[1710012782000,0],[1710012783000,0],[1710012784000,0],[1710012785000,0],[1710012786000,0],[1710012787000,0],[1710012788000,0],[1710012789000,0],[1710012790000,0],[1710012791000,0],[1710012792000,0],[1710012793000,0],[1710012794000,0],[1710012795000,0],[1710012796000,0],[1710012797000,0],[1710012798000,0],[1710012799000,0],[1710012800000,0],[1710012801000,0],[1710012802000,0],[1710012803000,0],[1710012804000,0],[1710012805000,0],[1710012806000,0],[1710012807000,0],[1710012808000,0],[1710012809000,0],[1710012810000,0],[1710012811000,0],[1710012812000,0],[1710012813000,0],[1710012814000,0],[1710012815000,0],[1710012816000,0],[1710012817000,0],[1710012818000,0],[1710012819000,0],[1710012820000,0],[1710012821000,0],[1710012822000,0],[1710012823000,0],[1710012824000,0],[1710012825000,0],[1710012826000,0],[1710012827000,0],[1710012828000,0],[1710012829000,0],[1710012830000,0],[1710012831000,0],[1710012832000,0],[1710012833000,0],[1710012834000,0],[1710012835000,0],[1710012836000,0],[1710012837000,0],[1710012838000,0],[1710012839000,0],[1710012840000,0],[1710012841000,0],[1710012842000,0],[1710012843000,0],[1710012844000,0],[1710012845000,0],[1710012846000,0],[1710012847000,0],[1710012848000,0],[1710012849000,0],[1710012850000,0],[1710012851000,0],[1710012852000,0],[1710012853000,0],[1710012854000,0],[1710012855000,0],[1710012856000,0],[1710012857000,0],[1710012858000,0],[1710012859000,0],[1710012860000,0],[1710012861000,0],[1710012862000,0],[1710012863000,0],[1710012864000,0],[1710012865000,0],[1710012866000,0],[1710012867000,0],[1710012868000,0],[1710012869000,0],[1710012870000,0],[1710012871000,0],[1710012872000,0],[1710012873000,0],[1710012874000,0],[1710012875000,0],[1710012876000,0],[1710012877000,0],[1710012878000,0],[1710012879000,0],[1710012880000,0],[1710012881000,0],[1710012882000,0],[1710012883000,0],[1710012884000,0],[1710012885000,0],[1710012886000,0],[1710012887000,0],[1710012888000,0],[1710012889000,0],[1710012890000,0],[1710012891000,0],[1710012892000,0],[1710012893000,0],[1710012894000,0],[1710012895000,0],[1710012896000,0],[1710012897000,0],[1710012898000,0],[1710012899000,0],[1710012900000,0],[1710012901000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#AECAEB',
name: 'validação concorrência transações - d',
data: [
[1710012627000,25],[1710012628000,0],[1710012629000,0],[1710012630000,0],[1710012631000,0],[1710012632000,0],[1710012633000,0],[1710012634000,0],[1710012635000,0],[1710012636000,0],[1710012637000,0],[1710012638000,0],[1710012639000,0],[1710012640000,0],[1710012641000,0],[1710012642000,0],[1710012643000,0],[1710012644000,0],[1710012645000,0],[1710012646000,0],[1710012647000,0],[1710012648000,0],[1710012649000,0],[1710012650000,0],[1710012651000,0],[1710012652000,0],[1710012653000,0],[1710012654000,0],[1710012655000,0],[1710012656000,0],[1710012657000,0],[1710012658000,0],[1710012659000,0],[1710012660000,0],[1710012661000,0],[1710012662000,0],[1710012663000,0],[1710012664000,0],[1710012665000,0],[1710012666000,0],[1710012667000,0],[1710012668000,0],[1710012669000,0],[1710012670000,0],[1710012671000,0],[1710012672000,0],[1710012673000,0],[1710012674000,0],[1710012675000,0],[1710012676000,0],[1710012677000,0],[1710012678000,0],[1710012679000,0],[1710012680000,0],[1710012681000,0],[1710012682000,0],[1710012683000,0],[1710012684000,0],[1710012685000,0],[1710012686000,0],[1710012687000,0],[1710012688000,0],[1710012689000,0],[1710012690000,0],[1710012691000,0],[1710012692000,0],[1710012693000,0],[1710012694000,0],[1710012695000,0],[1710012696000,0],[1710012697000,0],[1710012698000,0],[1710012699000,0],[1710012700000,0],[1710012701000,0],[1710012702000,0],[1710012703000,0],[1710012704000,0],[1710012705000,0],[1710012706000,0],[1710012707000,0],[1710012708000,0],[1710012709000,0],[1710012710000,0],[1710012711000,0],[1710012712000,0],[1710012713000,0],[1710012714000,0],[1710012715000,0],[1710012716000,0],[1710012717000,0],[1710012718000,0],[1710012719000,0],[1710012720000,0],[1710012721000,0],[1710012722000,0],[1710012723000,0],[1710012724000,0],[1710012725000,0],[1710012726000,0],[1710012727000,0],[1710012728000,0],[1710012729000,0],[1710012730000,0],[1710012731000,0],[1710012732000,0],[1710012733000,0],[1710012734000,0],[1710012735000,0],[1710012736000,0],[1710012737000,0],[1710012738000,0],[1710012739000,0],[1710012740000,0],[1710012741000,0],[1710012742000,0],[1710012743000,0],[1710012744000,0],[1710012745000,0],[1710012746000,0],[1710012747000,0],[1710012748000,0],[1710012749000,0],[1710012750000,0],[1710012751000,0],[1710012752000,0],[1710012753000,0],[1710012754000,0],[1710012755000,0],[1710012756000,0],[1710012757000,0],[1710012758000,0],[1710012759000,0],[1710012760000,0],[1710012761000,0],[1710012762000,0],[1710012763000,0],[1710012764000,0],[1710012765000,0],[1710012766000,0],[1710012767000,0],[1710012768000,0],[1710012769000,0],[1710012770000,0],[1710012771000,0],[1710012772000,0],[1710012773000,0],[1710012774000,0],[1710012775000,0],[1710012776000,0],[1710012777000,0],[1710012778000,0],[1710012779000,0],[1710012780000,0],[1710012781000,0],[1710012782000,0],[1710012783000,0],[1710012784000,0],[1710012785000,0],[1710012786000,0],[1710012787000,0],[1710012788000,0],[1710012789000,0],[1710012790000,0],[1710012791000,0],[1710012792000,0],[1710012793000,0],[1710012794000,0],[1710012795000,0],[1710012796000,0],[1710012797000,0],[1710012798000,0],[1710012799000,0],[1710012800000,0],[1710012801000,0],[1710012802000,0],[1710012803000,0],[1710012804000,0],[1710012805000,0],[1710012806000,0],[1710012807000,0],[1710012808000,0],[1710012809000,0],[1710012810000,0],[1710012811000,0],[1710012812000,0],[1710012813000,0],[1710012814000,0],[1710012815000,0],[1710012816000,0],[1710012817000,0],[1710012818000,0],[1710012819000,0],[1710012820000,0],[1710012821000,0],[1710012822000,0],[1710012823000,0],[1710012824000,0],[1710012825000,0],[1710012826000,0],[1710012827000,0],[1710012828000,0],[1710012829000,0],[1710012830000,0],[1710012831000,0],[1710012832000,0],[1710012833000,0],[1710012834000,0],[1710012835000,0],[1710012836000,0],[1710012837000,0],[1710012838000,0],[1710012839000,0],[1710012840000,0],[1710012841000,0],[1710012842000,0],[1710012843000,0],[1710012844000,0],[1710012845000,0],[1710012846000,0],[1710012847000,0],[1710012848000,0],[1710012849000,0],[1710012850000,0],[1710012851000,0],[1710012852000,0],[1710012853000,0],[1710012854000,0],[1710012855000,0],[1710012856000,0],[1710012857000,0],[1710012858000,0],[1710012859000,0],[1710012860000,0],[1710012861000,0],[1710012862000,0],[1710012863000,0],[1710012864000,0],[1710012865000,0],[1710012866000,0],[1710012867000,0],[1710012868000,0],[1710012869000,0],[1710012870000,0],[1710012871000,0],[1710012872000,0],[1710012873000,0],[1710012874000,0],[1710012875000,0],[1710012876000,0],[1710012877000,0],[1710012878000,0],[1710012879000,0],[1710012880000,0],[1710012881000,0],[1710012882000,0],[1710012883000,0],[1710012884000,0],[1710012885000,0],[1710012886000,0],[1710012887000,0],[1710012888000,0],[1710012889000,0],[1710012890000,0],[1710012891000,0],[1710012892000,0],[1710012893000,0],[1710012894000,0],[1710012895000,0],[1710012896000,0],[1710012897000,0],[1710012898000,0],[1710012899000,0],[1710012900000,0],[1710012901000,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: ['150', '451', '751', '1051', '1352', '1652', '1953', '2253', '2553', '2854', '3154', '3455', '3755', '4056', '4356', '4656', '4957', '5257', '5558', '5858', '6158', '6459', '6759', '7060', '7360', '7660', '7961', '8261', '8562', '8862', '9163', '9463', '9763', '10064', '10364', '10665', '10965', '11265', '11566', '11866', '12167', '12467', '12767', '13068', '13368', '13669', '13969', '14269', '14570', '14870', '15171', '15471', '15772', '16072', '16372', '16673', '16973', '17274', '17574', '17874', '18175', '18475', '18776', '19076', '19376', '19677', '19977', '20278', '20578', '20878', '21179', '21479', '21780', '22080', '22381', '22681', '22981', '23282', '23582', '23883', '24183', '24483', '24784', '25084', '25385', '25685', '25985', '26286', '26586', '26887', '27187', '27488', '27788', '28088', '28389', '28689', '28990', '29290', '29590', '29891'],
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: [
0.17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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: [
94.33,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.49
],
tooltip: { yDecimals: 0, ySuffix: 'ms' }
}
]
});
responsetimeDistributionChart.setTitle({
text: '<span class="chart_title">Response Time Distribution</span>',
useHTML: true
});
var responsetimepercentilesovertimeokPercentiles = unpack([[1710012627,[35,52,88,100,101,103,108,111,112,113]],[1710012628,null],[1710012629,[8,30,38,43,43,44,45,47,48,49]],[1710012630,[2,2,2,2,2,2,2,2,2,2]],[1710012631,[1,2,3,4,4,5,5,5,6,6]],[1710012632,[4,4,4,4,4,4,4,4,4,4]],[1710012633,[3,3,3,4,4,4,4,4,4,5]],[1710012634,null],[1710012635,null],[1710012636,null],[1710012637,null],[1710012638,null],[1710012639,null],[1710012640,null],[1710012641,null],[1710012642,null],[1710012643,null],[1710012644,null],[1710012645,null],[1710012646,null],[1710012647,null],[1710012648,null],[1710012649,null],[1710012650,null],[1710012651,null],[1710012652,null],[1710012653,null],[1710012654,null],[1710012655,null],[1710012656,null],[1710012657,null],[1710012658,null],[1710012659,null],[1710012660,null],[1710012661,null],[1710012662,null],[1710012663,null],[1710012664,null],[1710012665,null],[1710012666,null],[1710012667,null],[1710012668,null],[1710012669,null],[1710012670,null],[1710012671,null],[1710012672,null],[1710012673,null],[1710012674,null],[1710012675,null],[1710012676,null],[1710012677,null],[1710012678,null],[1710012679,null],[1710012680,null],[1710012681,null],[1710012682,null],[1710012683,null],[1710012684,null],[1710012685,null],[1710012686,null],[1710012687,null],[1710012688,null],[1710012689,null],[1710012690,null],[1710012691,null],[1710012692,null],[1710012693,null],[1710012694,null],[1710012695,null],[1710012696,null],[1710012697,null],[1710012698,null],[1710012699,null],[1710012700,null],[1710012701,null],[1710012702,null],[1710012703,null],[1710012704,null],[1710012705,null],[1710012706,null],[1710012707,null],[1710012708,null],[1710012709,null],[1710012710,null],[1710012711,null],[1710012712,null],[1710012713,null],[1710012714,null],[1710012715,null],[1710012716,null],[1710012717,null],[1710012718,null],[1710012719,null],[1710012720,null],[1710012721,null],[1710012722,null],[1710012723,null],[1710012724,null],[1710012725,null],[1710012726,null],[1710012727,null],[1710012728,null],[1710012729,null],[1710012730,null],[1710012731,null],[1710012732,null],[1710012733,null],[1710012734,null],[1710012735,null],[1710012736,null],[1710012737,null],[1710012738,null],[1710012739,null],[1710012740,null],[1710012741,null],[1710012742,null],[1710012743,null],[1710012744,null],[1710012745,null],[1710012746,null],[1710012747,null],[1710012748,null],[1710012749,null],[1710012750,null],[1710012751,null],[1710012752,null],[1710012753,null],[1710012754,null],[1710012755,null],[1710012756,null],[1710012757,null],[1710012758,null],[1710012759,null],[1710012760,null],[1710012761,null],[1710012762,null],[1710012763,null],[1710012764,null],[1710012765,null],[1710012766,null],[1710012767,null],[1710012768,null],[1710012769,null],[1710012770,null],[1710012771,null],[1710012772,null],[1710012773,null],[1710012774,null],[1710012775,null],[1710012776,null],[1710012777,null],[1710012778,null],[1710012779,null],[1710012780,null],[1710012781,null],[1710012782,null],[1710012783,null],[1710012784,null],[1710012785,null],[1710012786,null],[1710012787,null],[1710012788,null],[1710012789,null],[1710012790,null],[1710012791,null],[1710012792,null],[1710012793,null],[1710012794,null],[1710012795,null],[1710012796,null],[1710012797,null],[1710012798,null],[1710012799,null],[1710012800,null],[1710012801,null],[1710012802,null],[1710012803,null],[1710012804,null],[1710012805,null],[1710012806,null],[1710012807,null],[1710012808,null],[1710012809,null],[1710012810,null],[1710012811,null],[1710012812,null],[1710012813,null],[1710012814,null],[1710012815,null],[1710012816,null],[1710012817,null],[1710012818,null],[1710012819,null],[1710012820,null],[1710012821,null],[1710012822,null],[1710012823,null],[1710012824,null],[1710012825,null],[1710012826,null],[1710012827,null],[1710012828,null],[1710012829,null],[1710012830,null],[1710012831,null],[1710012832,null],[1710012833,null],[1710012834,null],[1710012835,null],[1710012836,null],[1710012837,null],[1710012838,null],[1710012839,null],[1710012840,null],[1710012841,null],[1710012842,null],[1710012843,null],[1710012844,null],[1710012845,null],[1710012846,null],[1710012847,null],[1710012848,null],[1710012849,null],[1710012850,null],[1710012851,null],[1710012852,null],[1710012853,null],[1710012854,null],[1710012855,null],[1710012856,null],[1710012857,null],[1710012858,null],[1710012859,null],[1710012860,null],[1710012861,null],[1710012862,null],[1710012863,null],[1710012864,null],[1710012865,null],[1710012866,null],[1710012867,null],[1710012868,null],[1710012869,null],[1710012870,null],[1710012871,null],[1710012872,null],[1710012873,null],[1710012874,null],[1710012875,null],[1710012876,null],[1710012877,null],[1710012878,null],[1710012879,null],[1710012880,null],[1710012881,null],[1710012882,null],[1710012883,null],[1710012884,null],[1710012885,null],[1710012886,null],[1710012887,null],[1710012888,null],[1710012889,null],[1710012890,null],[1710012891,null],[1710012892,null],[1710012893,null],[1710012894,null],[1710012895,null],[1710012896,null],[1710012897,null],[1710012898,null],[1710012899,null],[1710012900,null],[1710012901,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([[1710012627,[25,25,0]],[1710012628,[1,0,1]],[1710012629,[25,25,0]],[1710012630,[1,1,0]],[1710012631,[71,45,26]],[1710012632,[3,3,0]],[1710012633,[6,6,0]],[1710012634,[9,0,9]],[1710012635,[11,0,11]],[1710012636,[13,0,13]],[1710012637,[18,0,18]],[1710012638,[19,0,19]],[1710012639,[24,0,24]],[1710012640,[26,0,26]],[1710012641,[27,0,27]],[1710012642,[32,0,32]],[1710012643,[34,0,34]],[1710012644,[37,0,37]],[1710012645,[40,0,40]],[1710012646,[42,0,42]],[1710012647,[45,0,45]],[1710012648,[48,0,48]],[1710012649,[50,0,50]],[1710012650,[54,0,54]],[1710012651,[56,0,56]],[1710012652,[60,0,60]],[1710012653,[61,0,61]],[1710012654,[65,0,65]],[1710012655,[68,0,68]],[1710012656,[71,0,71]],[1710012657,[73,0,73]],[1710012658,[77,0,77]],[1710012659,[78,0,78]],[1710012660,[81,0,81]],[1710012661,[84,0,84]],[1710012662,[89,0,89]],[1710012663,[89,0,89]],[1710012664,[93,0,93]],[1710012665,[96,0,96]],[1710012666,[98,0,98]],[1710012667,[102,0,102]],[1710012668,[104,0,104]],[1710012669,[108,0,108]],[1710012670,[109,0,109]],[1710012671,[113,0,113]],[1710012672,[115,0,115]],[1710012673,[119,0,119]],[1710012674,[121,0,121]],[1710012675,[123,0,123]],[1710012676,[126,0,126]],[1710012677,[129,0,129]],[1710012678,[133,0,133]],[1710012679,[136,0,136]],[1710012680,[137,0,137]],[1710012681,[142,0,142]],[1710012682,[142,0,142]],[1710012683,[147,0,147]],[1710012684,[149,0,149]],[1710012685,[152,0,152]],[1710012686,[154,0,154]],[1710012687,[158,0,158]],[1710012688,[160,0,160]],[1710012689,[163,0,163]],[1710012690,[166,0,166]],[1710012691,[170,0,170]],[1710012692,[171,0,171]],[1710012693,[174,0,174]],[1710012694,[177,0,177]],[1710012695,[180,0,180]],[1710012696,[183,0,183]],[1710012697,[185,0,185]],[1710012698,[189,0,189]],[1710012699,[191,0,191]],[1710012700,[194,0,194]],[1710012701,[197,0,197]],[1710012702,[199,0,199]],[1710012703,[204,0,204]],[1710012704,[205,0,205]],[1710012705,[207,0,207]],[1710012706,[211,0,211]],[1710012707,[213,0,213]],[1710012708,[217,0,217]],[1710012709,[220,0,220]],[1710012710,[222,0,222]],[1710012711,[225,0,225]],[1710012712,[227,0,227]],[1710012713,[231,0,231]],[1710012714,[233,0,233]],[1710012715,[237,0,237]],[1710012716,[238,0,238]],[1710012717,[243,0,243]],[1710012718,[244,0,244]],[1710012719,[248,0,248]],[1710012720,[250,0,250]],[1710012721,[252,0,252]],[1710012722,[256,0,256]],[1710012723,[259,0,259]],[1710012724,[262,0,262]],[1710012725,[264,0,264]],[1710012726,[267,0,267]],[1710012727,[270,0,270]],[1710012728,[272,0,272]],[1710012729,[275,0,275]],[1710012730,[279,0,279]],[1710012731,[281,0,281]],[1710012732,[285,0,285]],[1710012733,[286,0,286]],[1710012734,[290,0,290]],[1710012735,[291,0,291]],[1710012736,[296,0,296]],[1710012737,[297,0,297]],[1710012738,[301,0,301]],[1710012739,[304,0,304]],[1710012740,[306,0,306]],[1710012741,[309,0,309]],[1710012742,[312,0,312]],[1710012743,[315,0,315]],[1710012744,[317,0,317]],[1710012745,[321,0,321]],[1710012746,[322,0,322]],[1710012747,[327,0,327]],[1710012748,[329,0,329]],[1710012749,[332,0,332]],[1710012750,[335,0,335]],[1710012751,[338,0,338]],[1710012752,[339,0,339]],[1710012753,[341,0,341]],[1710012754,[340,0,340]],[1710012755,[340,0,340]],[1710012756,[340,0,340]],[1710012757,[340,0,340]],[1710012758,[340,0,340]],[1710012759,[340,0,340]],[1710012760,[340,0,340]],[1710012761,[339,0,339]],[1710012762,[341,0,341]],[1710012763,[340,0,340]],[1710012764,[340,0,340]],[1710012765,[340,0,340]],[1710012766,[339,0,339]],[1710012767,[341,0,341]],[1710012768,[339,0,339]],[1710012769,[341,0,341]],[1710012770,[340,0,340]],[1710012771,[340,0,340]],[1710012772,[339,0,339]],[1710012773,[341,0,341]],[1710012774,[340,0,340]],[1710012775,[339,0,339]],[1710012776,[340,0,340]],[1710012777,[341,0,341]],[1710012778,[340,0,340]],[1710012779,[340,0,340]],[1710012780,[339,0,339]],[1710012781,[341,0,341]],[1710012782,[340,0,340]],[1710012783,[339,0,339]],[1710012784,[341,0,341]],[1710012785,[339,0,339]],[1710012786,[341,0,341]],[1710012787,[340,0,340]],[1710012788,[340,0,340]],[1710012789,[340,0,340]],[1710012790,[340,0,340]],[1710012791,[340,0,340]],[1710012792,[340,0,340]],[1710012793,[340,0,340]],[1710012794,[340,0,340]],[1710012795,[340,0,340]],[1710012796,[340,0,340]],[1710012797,[340,0,340]],[1710012798,[340,0,340]],[1710012799,[340,0,340]],[1710012800,[339,0,339]],[1710012801,[340,0,340]],[1710012802,[341,0,341]],[1710012803,[340,0,340]],[1710012804,[340,0,340]],[1710012805,[340,0,340]],[1710012806,[339,0,339]],[1710012807,[341,0,341]],[1710012808,[339,0,339]],[1710012809,[341,0,341]],[1710012810,[340,0,340]],[1710012811,[340,0,340]],[1710012812,[340,0,340]],[1710012813,[339,0,339]],[1710012814,[341,0,341]],[1710012815,[340,0,340]],[1710012816,[340,0,340]],[1710012817,[340,0,340]],[1710012818,[340,0,340]],[1710012819,[340,0,340]],[1710012820,[340,0,340]],[1710012821,[339,0,339]],[1710012822,[341,0,341]],[1710012823,[339,0,339]],[1710012824,[341,0,341]],[1710012825,[340,0,340]],[1710012826,[339,0,339]],[1710012827,[341,0,341]],[1710012828,[340,0,340]],[1710012829,[340,0,340]],[1710012830,[339,0,339]],[1710012831,[341,0,341]],[1710012832,[340,0,340]],[1710012833,[340,0,340]],[1710012834,[339,0,339]],[1710012835,[340,0,340]],[1710012836,[341,0,341]],[1710012837,[340,0,340]],[1710012838,[339,0,339]],[1710012839,[341,0,341]],[1710012840,[340,0,340]],[1710012841,[339,0,339]],[1710012842,[341,0,341]],[1710012843,[340,0,340]],[1710012844,[340,0,340]],[1710012845,[339,0,339]],[1710012846,[340,0,340]],[1710012847,[340,0,340]],[1710012848,[341,0,341]],[1710012849,[340,0,340]],[1710012850,[340,0,340]],[1710012851,[340,0,340]],[1710012852,[340,0,340]],[1710012853,[340,0,340]],[1710012854,[340,0,340]],[1710012855,[340,0,340]],[1710012856,[340,0,340]],[1710012857,[340,0,340]],[1710012858,[340,0,340]],[1710012859,[340,0,340]],[1710012860,[339,0,339]],[1710012861,[340,0,340]],[1710012862,[341,0,341]],[1710012863,[340,0,340]],[1710012864,[340,0,340]],[1710012865,[340,0,340]],[1710012866,[339,0,339]],[1710012867,[341,0,341]],[1710012868,[340,0,340]],[1710012869,[340,0,340]],[1710012870,[340,0,340]],[1710012871,[340,0,340]],[1710012872,[160,0,160]],[1710012873,[0,0,0]],[1710012874,[0,0,0]],[1710012875,[0,0,0]],[1710012876,[0,0,0]],[1710012877,[0,0,0]],[1710012878,[0,0,0]],[1710012879,[0,0,0]],[1710012880,[0,0,0]],[1710012881,[0,0,0]],[1710012882,[0,0,0]],[1710012883,[0,0,0]],[1710012884,[0,0,0]],[1710012885,[0,0,0]],[1710012886,[0,0,0]],[1710012887,[0,0,0]],[1710012888,[0,0,0]],[1710012889,[0,0,0]],[1710012890,[0,0,0]],[1710012891,[0,0,0]],[1710012892,[0,0,0]],[1710012893,[0,0,0]],[1710012894,[0,0,0]],[1710012895,[0,0,0]],[1710012896,[0,0,0]],[1710012897,[0,0,0]],[1710012898,[0,0,0]],[1710012899,[0,0,0]],[1710012900,[0,0,0]],[1710012901,[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: {