forked from zanfranceschi/rinha-de-backend-2024-q1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1230 lines (1160 loc) · 109 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-11 01:33:08 GMT</span>
</span>
<span class="simulation-information-item">
<span class="simulation-information-label">Duration: </span>
<span>5m 4s </span>
</span>
<span class="simulation-tooltip simulation-information-item description" title="Description" data-content="Rinha de Backend - 2024/Q1: Crébito - LeGustaLagosta">
<span class="simulation-information-label">Description: </span>
<span>Rinha de Backend - 2024/Q1: Crébito - LeGustaLagosta</span>
</span>
</div>
</div>
</div>
</div>
<div id="statistics_table_container">
<div id="stats" class="statistics extensible-geant collapsed">
<div class="title">
<div id="statistics_title" class="title_base"><span class="title_base_stats">Stats</span><span class="expand-table">Fixed height</span><span id="toggle-stats" class="toggle-table"></span><span class="collapse-table">Full size</span></div>
<div class="right">
<button class="statistics-button expand-all-button">Expand all groups</button>
<button class="statistics-button collapse-all-button">Collapse all groups</button>
<button id="statistics_full_screen" class="statistics-button" onclick="openStatisticsTableModal()"><img alt="Fullscreen" src="style/fullscreen.svg"></button>
</div>
</div>
<div class="scrollable">
<table id="container_statistics_head" class="statistics-in extensible-geant">
<thead>
<tr>
<th rowspan="2" id="col-1" class="header sortable sorted-up"><span>Requests</span></th>
<th colspan="5" class="header"><span class="executions">Executions</span></th>
<th colspan="8" class="header"><span class="response-time">Response Time (ms)</span></th>
</tr>
<tr>
<th id="col-2" class="header sortable"><span>Total</span></th>
<th id="col-3" class="header sortable"><span>OK</span></th>
<th id="col-4" class="header sortable"><span>KO</span></th>
<th id="col-5" class="header sortable"><span>% KO</span></th>
<th id="col-6" class="header sortable"><span><abbr title="Count of events per second">Cnt/s</abbr></span></th>
<th id="col-7" class="header sortable"><span>Min</span></th>
<th id="col-8" class="header sortable"><span>50th pct</span></th>
<th id="col-9" class="header sortable"><span>75th pct</span></th>
<th id="col-10" class="header sortable"><span>95th pct</span></th>
<th id="col-11" class="header sortable"><span>99th pct</span></th>
<th id="col-12" class="header sortable"><span>Max</span></th>
<th id="col-13" class="header sortable"><span>Mean</span></th>
<th id="col-14" class="header sortable"><span><abbr title="Standard Deviation">Std Dev</abbr></span></th>
</tr>
</thead>
<tbody></tbody>
</table>
<table id="container_statistics_body" class="statistics-in extensible-geant">
<tbody></tbody>
</table>
</div>
</div>
</div>
<dialog id="statistics_table_modal" class="statistics-table-modal">
<div class="statistics-table-modal-header"><button class="button-modal" onclick="closeStatisticsTableModal()"><img alt="Close" src="style/close.svg"></button></div>
<div class="statistics-table-modal-container">
<div id="statistics_table_modal_content" class="statistics-table-modal-content"></div>
</div>
</dialog>
<script>
function openStatisticsTableModal () {
const statsTable = document.getElementById("stats");
const statsTableModal = document.getElementById("statistics_table_modal");
const fullScreenButton = document.getElementById("statistics_full_screen");
fullScreenButton.disabled = true;
if (typeof statsTableModal.showModal === "function") {
const statsTableModalContent = document.getElementById("statistics_table_modal_content");
statsTableModalContent.innerHTML = "";
statsTableModalContent.appendChild(statsTable);
statsTableModal.showModal();
statsTableModal.addEventListener("close", function () {
const container = document.getElementById("statistics_table_container");
container.appendChild(statsTable);
fullScreenButton.disabled = false;
});
} else {
const incompatibleBrowserVersionMessage = document.createElement("div");
incompatibleBrowserVersionMessage.innerText = "Sorry, the <dialog> API is not supported by this browser.";
statsTable.insertBefore(incompatibleBrowserVersionMessage, statsTable.children[0]);
}
}
function closeStatisticsTableModal () {
const statsTableModal = document.getElementById("statistics_table_modal");
statsTableModal.close();
}
</script>
<div class="statistics extensible-geant collapsed">
<div class="title">
Errors
</div>
<table id="container_errors" class="statistics-in extensible-geant">
<thead>
<tr>
<th id="error-col-1" class="header sortable"><span>Error</span></th>
<th id="error-col-2" class="header sortable"><span>Count</span></th>
<th id="error-col-3" class="header sortable"><span>Percentage</span></th>
</tr>
</thead>
<tbody>
<tr>
<td class="error-col-1 total ko">status.find.in(200,422), but actually found 502<span class="value" style="display:none">0</span></td>
<td class="value error-col-2 total ko">19165</td>
<td class="value error-col-3 total ko">54.604 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">status.find.in(200), but actually found 502<span class="value" style="display:none">1</span></td>
<td class="value error-col-2 total ko">9949</td>
<td class="value error-col-3 total ko">28.346 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">j.i.IOException: Premature close<span class="value" style="display:none">2</span></td>
<td class="value error-col-2 total ko">3923</td>
<td class="value error-col-3 total ko">11.177 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">status.find.in([200, 209], 304), found 502<span class="value" style="display:none">3</span></td>
<td class="value error-col-2 total ko">899</td>
<td class="value error-col-3 total ko">2.561 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">Request timeout to localhost/127.0.0.1:9999 after 60000 ms<span class="value" style="display:none">4</span></td>
<td class="value error-col-2 total ko">724</td>
<td class="value error-col-3 total ko">2.063 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">jmesPath(saldo).find.ConsistenciaSaldoLimite - Transação, Limite ultrapassado!<span class="value" style="display:none">5</span></td>
<td class="value error-col-2 total ko">373</td>
<td class="value error-col-3 total ko">1.063 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">jmesPath(saldo.total).find.ConsistenciaSaldoLimite - Extrato, Limite ultrapassado!<span class="value" style="display:none">6</span></td>
<td class="value error-col-2 total ko">55</td>
<td class="value error-col-3 total ko">0.157 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">status.find.in(422,400), but actually found 200<span class="value" style="display:none">7</span></td>
<td class="value error-col-2 total ko">10</td>
<td class="value error-col-3 total ko">0.028 %</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: 'extratos',
data: [
[1710120789000,0],[1710120790000,0],[1710120791000,0],[1710120792000,0],[1710120793000,1],[1710120794000,2],[1710120795000,1],[1710120796000,1],[1710120797000,1],[1710120798000,1],[1710120799000,2],[1710120800000,1],[1710120801000,2],[1710120802000,2],[1710120803000,1],[1710120804000,2],[1710120805000,2],[1710120806000,2],[1710120807000,2],[1710120808000,2],[1710120809000,2],[1710120810000,2],[1710120811000,3],[1710120812000,2],[1710120813000,3],[1710120814000,2],[1710120815000,3],[1710120816000,2],[1710120817000,3],[1710120818000,3],[1710120819000,3],[1710120820000,3],[1710120821000,3],[1710120822000,3],[1710120823000,3],[1710120824000,4],[1710120825000,3],[1710120826000,3],[1710120827000,4],[1710120828000,3],[1710120829000,4],[1710120830000,4],[1710120831000,4],[1710120832000,4],[1710120833000,4],[1710120834000,4],[1710120835000,4],[1710120836000,4],[1710120837000,4],[1710120838000,4],[1710120839000,5],[1710120840000,4],[1710120841000,5],[1710120842000,5],[1710120843000,4],[1710120844000,5],[1710120845000,5],[1710120846000,5],[1710120847000,5],[1710120848000,5],[1710120849000,5],[1710120850000,5],[1710120851000,6],[1710120852000,5],[1710120853000,6],[1710120854000,5],[1710120855000,6],[1710120856000,5],[1710120857000,6],[1710120858000,6],[1710120859000,6],[1710120860000,6],[1710120861000,6],[1710120862000,6],[1710120863000,6],[1710120864000,7],[1710120865000,6],[1710120866000,6],[1710120867000,7],[1710120868000,6],[1710120869000,7],[1710120870000,7],[1710120871000,7],[1710120872000,7],[1710120873000,7],[1710120874000,7],[1710120875000,7],[1710120876000,7],[1710120877000,7],[1710120878000,7],[1710120879000,8],[1710120880000,7],[1710120881000,8],[1710120882000,8],[1710120883000,7],[1710120884000,8],[1710120885000,8],[1710120886000,8],[1710120887000,8],[1710120888000,8],[1710120889000,8],[1710120890000,8],[1710120891000,9],[1710120892000,8],[1710120893000,9],[1710120894000,8],[1710120895000,9],[1710120896000,8],[1710120897000,9],[1710120898000,9],[1710120899000,9],[1710120900000,9],[1710120901000,9],[1710120902000,9],[1710120903000,9],[1710120904000,10],[1710120905000,9],[1710120906000,9],[1710120907000,10],[1710120908000,9],[1710120909000,10],[1710120910000,10],[1710120911000,10],[1710120912000,10],[1710120913000,10],[1710120914000,10],[1710120915000,10],[1710120916000,10],[1710120917000,10],[1710120918000,10],[1710120919000,11],[1710120920000,16],[1710120921000,23],[1710120922000,27],[1710120923000,27],[1710120924000,29],[1710120925000,38],[1710120926000,37],[1710120927000,39],[1710120928000,40],[1710120929000,35],[1710120930000,36],[1710120931000,34],[1710120932000,41],[1710120933000,47],[1710120934000,50],[1710120935000,33],[1710120936000,41],[1710120937000,43],[1710120938000,49],[1710120939000,57],[1710120940000,50],[1710120941000,49],[1710120942000,52],[1710120943000,58],[1710120944000,60],[1710120945000,47],[1710120946000,57],[1710120947000,62],[1710120948000,70],[1710120949000,11],[1710120950000,10],[1710120951000,10],[1710120952000,10],[1710120953000,10],[1710120954000,10],[1710120955000,10],[1710120956000,10],[1710120957000,10],[1710120958000,10],[1710120959000,10],[1710120960000,11],[1710120961000,11],[1710120962000,11],[1710120963000,11],[1710120964000,11],[1710120965000,11],[1710120966000,11],[1710120967000,11],[1710120968000,11],[1710120969000,11],[1710120970000,11],[1710120971000,13],[1710120972000,14],[1710120973000,14],[1710120974000,14],[1710120975000,14],[1710120976000,14],[1710120977000,14],[1710120978000,14],[1710120979000,14],[1710120980000,14],[1710120981000,14],[1710120982000,14],[1710120983000,14],[1710120984000,14],[1710120985000,15],[1710120986000,15],[1710120987000,15],[1710120988000,15],[1710120989000,15],[1710120990000,15],[1710120991000,15],[1710120992000,15],[1710120993000,15],[1710120994000,15],[1710120995000,15],[1710120996000,15],[1710120997000,15],[1710120998000,15],[1710120999000,15],[1710121000000,15],[1710121001000,15],[1710121002000,15],[1710121003000,15],[1710121004000,16],[1710121005000,16],[1710121006000,16],[1710121007000,14],[1710121008000,14],[1710121009000,14],[1710121010000,14],[1710121011000,14],[1710121012000,14],[1710121013000,14],[1710121014000,14],[1710121015000,14],[1710121016000,13],[1710121017000,13],[1710121018000,13],[1710121019000,13],[1710121020000,12],[1710121021000,12],[1710121022000,12],[1710121023000,12],[1710121024000,12],[1710121025000,12],[1710121026000,12],[1710121027000,12],[1710121028000,12],[1710121029000,12],[1710121030000,12],[1710121031000,16],[1710121032000,21],[1710121033000,24],[1710121034000,16],[1710121035000,16],[1710121036000,16],[1710121037000,16],[1710121038000,16],[1710121039000,16],[1710121040000,16],[1710121041000,16],[1710121042000,16],[1710121043000,16],[1710121044000,16],[1710121045000,16],[1710121046000,16],[1710121047000,16],[1710121048000,16],[1710121049000,14],[1710121050000,14],[1710121051000,14],[1710121052000,14],[1710121053000,14],[1710121054000,14],[1710121055000,14],[1710121056000,14],[1710121057000,14],[1710121058000,14],[1710121059000,14],[1710121060000,14],[1710121061000,14],[1710121062000,14],[1710121063000,14],[1710121064000,14],[1710121065000,14],[1710121066000,14],[1710121067000,14],[1710121068000,14],[1710121069000,14],[1710121070000,14],[1710121071000,14],[1710121072000,14],[1710121073000,14],[1710121074000,14],[1710121075000,14],[1710121076000,14],[1710121077000,14],[1710121078000,14],[1710121079000,14],[1710121080000,14],[1710121081000,14],[1710121082000,14],[1710121083000,14],[1710121084000,14],[1710121085000,14],[1710121086000,14],[1710121087000,14],[1710121088000,14],[1710121089000,14],[1710121090000,14],[1710121091000,9],[1710121092000,4],[1710121093000,1]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#68b65c',
name: 'créditos',
data: [
[1710120789000,0],[1710120790000,0],[1710120791000,0],[1710120792000,0],[1710120793000,1],[1710120794000,2],[1710120795000,2],[1710120796000,4],[1710120797000,4],[1710120798000,5],[1710120799000,6],[1710120800000,7],[1710120801000,8],[1710120802000,8],[1710120803000,10],[1710120804000,10],[1710120805000,12],[1710120806000,12],[1710120807000,14],[1710120808000,14],[1710120809000,15],[1710120810000,16],[1710120811000,17],[1710120812000,17],[1710120813000,19],[1710120814000,20],[1710120815000,20],[1710120816000,22],[1710120817000,22],[1710120818000,23],[1710120819000,25],[1710120820000,25],[1710120821000,26],[1710120822000,26],[1710120823000,28],[1710120824000,29],[1710120825000,30],[1710120826000,30],[1710120827000,32],[1710120828000,32],[1710120829000,33],[1710120830000,34],[1710120831000,35],[1710120832000,36],[1710120833000,37],[1710120834000,38],[1710120835000,39],[1710120836000,39],[1710120837000,41],[1710120838000,41],[1710120839000,43],[1710120840000,43],[1710120841000,44],[1710120842000,45],[1710120843000,46],[1710120844000,47],[1710120845000,48],[1710120846000,48],[1710120847000,50],[1710120848000,50],[1710120849000,52],[1710120850000,53],[1710120851000,53],[1710120852000,55],[1710120853000,56],[1710120854000,56],[1710120855000,58],[1710120856000,59],[1710120857000,59],[1710120858000,59],[1710120859000,61],[1710120860000,62],[1710120861000,63],[1710120862000,63],[1710120863000,64],[1710120864000,65],[1710120865000,66],[1710120866000,67],[1710120867000,68],[1710120868000,68],[1710120869000,70],[1710120870000,70],[1710120871000,72],[1710120872000,72],[1710120873000,73],[1710120874000,74],[1710120875000,75],[1710120876000,76],[1710120877000,77],[1710120878000,78],[1710120879000,79],[1710120880000,79],[1710120881000,81],[1710120882000,81],[1710120883000,82],[1710120884000,83],[1710120885000,85],[1710120886000,85],[1710120887000,86],[1710120888000,86],[1710120889000,88],[1710120890000,89],[1710120891000,89],[1710120892000,91],[1710120893000,91],[1710120894000,92],[1710120895000,94],[1710120896000,94],[1710120897000,95],[1710120898000,96],[1710120899000,97],[1710120900000,97],[1710120901000,99],[1710120902000,99],[1710120903000,101],[1710120904000,101],[1710120905000,103],[1710120906000,103],[1710120907000,104],[1710120908000,106],[1710120909000,107],[1710120910000,108],[1710120911000,108],[1710120912000,110],[1710120913000,110],[1710120914000,111],[1710120915000,111],[1710120916000,111],[1710120917000,111],[1710120918000,111],[1710120919000,126],[1710120920000,180],[1710120921000,271],[1710120922000,344],[1710120923000,385],[1710120924000,411],[1710120925000,471],[1710120926000,508],[1710120927000,542],[1710120928000,578],[1710120929000,598],[1710120930000,643],[1710120931000,694],[1710120932000,730],[1710120933000,775],[1710120934000,820],[1710120935000,442],[1710120936000,530],[1710120937000,610],[1710120938000,695],[1710120939000,776],[1710120940000,595],[1710120941000,649],[1710120942000,743],[1710120943000,827],[1710120944000,911],[1710120945000,498],[1710120946000,598],[1710120947000,691],[1710120948000,777],[1710120949000,113],[1710120950000,111],[1710120951000,110],[1710120952000,110],[1710120953000,111],[1710120954000,110],[1710120955000,110],[1710120956000,110],[1710120957000,110],[1710120958000,110],[1710120959000,111],[1710120960000,113],[1710120961000,114],[1710120962000,114],[1710120963000,114],[1710120964000,114],[1710120965000,113],[1710120966000,114],[1710120967000,114],[1710120968000,114],[1710120969000,113],[1710120970000,113],[1710120971000,113],[1710120972000,115],[1710120973000,114],[1710120974000,115],[1710120975000,115],[1710120976000,114],[1710120977000,115],[1710120978000,113],[1710120979000,115],[1710120980000,115],[1710120981000,115],[1710120982000,117],[1710120983000,117],[1710120984000,115],[1710120985000,117],[1710120986000,117],[1710120987000,117],[1710120988000,116],[1710120989000,117],[1710120990000,117],[1710120991000,116],[1710120992000,117],[1710120993000,120],[1710120994000,119],[1710120995000,120],[1710120996000,119],[1710120997000,120],[1710120998000,119],[1710120999000,120],[1710121000000,120],[1710121001000,120],[1710121002000,120],[1710121003000,120],[1710121004000,122],[1710121005000,121],[1710121006000,122],[1710121007000,120],[1710121008000,119],[1710121009000,120],[1710121010000,117],[1710121011000,116],[1710121012000,116],[1710121013000,117],[1710121014000,116],[1710121015000,117],[1710121016000,115],[1710121017000,115],[1710121018000,114],[1710121019000,115],[1710121020000,111],[1710121021000,112],[1710121022000,112],[1710121023000,112],[1710121024000,112],[1710121025000,112],[1710121026000,112],[1710121027000,112],[1710121028000,112],[1710121029000,112],[1710121030000,112],[1710121031000,163],[1710121032000,229],[1710121033000,295],[1710121034000,204],[1710121035000,204],[1710121036000,204],[1710121037000,188],[1710121038000,188],[1710121039000,188],[1710121040000,188],[1710121041000,188],[1710121042000,188],[1710121043000,188],[1710121044000,186],[1710121045000,186],[1710121046000,186],[1710121047000,186],[1710121048000,186],[1710121049000,170],[1710121050000,170],[1710121051000,170],[1710121052000,170],[1710121053000,170],[1710121054000,170],[1710121055000,170],[1710121056000,170],[1710121057000,170],[1710121058000,170],[1710121059000,170],[1710121060000,170],[1710121061000,170],[1710121062000,170],[1710121063000,170],[1710121064000,170],[1710121065000,170],[1710121066000,170],[1710121067000,170],[1710121068000,165],[1710121069000,165],[1710121070000,165],[1710121071000,165],[1710121072000,165],[1710121073000,165],[1710121074000,165],[1710121075000,165],[1710121076000,165],[1710121077000,165],[1710121078000,165],[1710121079000,165],[1710121080000,165],[1710121081000,165],[1710121082000,165],[1710121083000,165],[1710121084000,165],[1710121085000,165],[1710121086000,165],[1710121087000,165],[1710121088000,165],[1710121089000,165],[1710121090000,165],[1710121091000,113],[1710121092000,46],[1710121093000,9]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#f15b4f',
name: 'débitos',
data: [
[1710120789000,0],[1710120790000,0],[1710120791000,0],[1710120792000,0],[1710120793000,1],[1710120794000,2],[1710120795000,4],[1710120796000,6],[1710120797000,7],[1710120798000,9],[1710120799000,11],[1710120800000,13],[1710120801000,15],[1710120802000,16],[1710120803000,19],[1710120804000,20],[1710120805000,22],[1710120806000,24],[1710120807000,25],[1710120808000,28],[1710120809000,29],[1710120810000,31],[1710120811000,33],[1710120812000,35],[1710120813000,37],[1710120814000,38],[1710120815000,40],[1710120816000,42],[1710120817000,44],[1710120818000,46],[1710120819000,47],[1710120820000,50],[1710120821000,52],[1710120822000,54],[1710120823000,56],[1710120824000,57],[1710120825000,59],[1710120826000,60],[1710120827000,62],[1710120828000,64],[1710120829000,66],[1710120830000,68],[1710120831000,69],[1710120832000,71],[1710120833000,74],[1710120834000,74],[1710120835000,77],[1710120836000,79],[1710120837000,80],[1710120838000,82],[1710120839000,84],[1710120840000,86],[1710120841000,88],[1710120842000,89],[1710120843000,92],[1710120844000,93],[1710120845000,95],[1710120846000,97],[1710120847000,98],[1710120848000,101],[1710120849000,102],[1710120850000,104],[1710120851000,106],[1710120852000,108],[1710120853000,111],[1710120854000,112],[1710120855000,114],[1710120856000,116],[1710120857000,118],[1710120858000,119],[1710120859000,120],[1710120860000,123],[1710120861000,124],[1710120862000,126],[1710120863000,128],[1710120864000,129],[1710120865000,132],[1710120866000,133],[1710120867000,135],[1710120868000,137],[1710120869000,139],[1710120870000,141],[1710120871000,142],[1710120872000,144],[1710120873000,147],[1710120874000,147],[1710120875000,150],[1710120876000,152],[1710120877000,153],[1710120878000,155],[1710120879000,158],[1710120880000,160],[1710120881000,162],[1710120882000,163],[1710120883000,166],[1710120884000,167],[1710120885000,169],[1710120886000,171],[1710120887000,171],[1710120888000,175],[1710120889000,176],[1710120890000,177],[1710120891000,179],[1710120892000,181],[1710120893000,183],[1710120894000,184],[1710120895000,186],[1710120896000,188],[1710120897000,190],[1710120898000,192],[1710120899000,193],[1710120900000,196],[1710120901000,197],[1710120902000,199],[1710120903000,201],[1710120904000,202],[1710120905000,205],[1710120906000,206],[1710120907000,208],[1710120908000,211],[1710120909000,213],[1710120910000,215],[1710120911000,216],[1710120912000,218],[1710120913000,221],[1710120914000,221],[1710120915000,221],[1710120916000,221],[1710120917000,221],[1710120918000,221],[1710120919000,253],[1710120920000,350],[1710120921000,478],[1710120922000,577],[1710120923000,616],[1710120924000,681],[1710120925000,724],[1710120926000,775],[1710120927000,835],[1710120928000,899],[1710120929000,987],[1710120930000,1070],[1710120931000,1096],[1710120932000,1102],[1710120933000,1142],[1710120934000,1171],[1710120935000,451],[1710120936000,626],[1710120937000,800],[1710120938000,963],[1710120939000,1106],[1710120940000,448],[1710120941000,593],[1710120942000,792],[1710120943000,976],[1710120944000,1141],[1710120945000,540],[1710120946000,726],[1710120947000,902],[1710120948000,1062],[1710120949000,226],[1710120950000,221],[1710120951000,220],[1710120952000,221],[1710120953000,221],[1710120954000,220],[1710120955000,220],[1710120956000,220],[1710120957000,219],[1710120958000,221],[1710120959000,221],[1710120960000,222],[1710120961000,222],[1710120962000,223],[1710120963000,223],[1710120964000,222],[1710120965000,222],[1710120966000,223],[1710120967000,223],[1710120968000,223],[1710120969000,221],[1710120970000,223],[1710120971000,223],[1710120972000,225],[1710120973000,225],[1710120974000,225],[1710120975000,225],[1710120976000,225],[1710120977000,224],[1710120978000,225],[1710120979000,225],[1710120980000,224],[1710120981000,225],[1710120982000,227],[1710120983000,227],[1710120984000,226],[1710120985000,228],[1710120986000,228],[1710120987000,228],[1710120988000,227],[1710120989000,228],[1710120990000,228],[1710120991000,228],[1710120992000,228],[1710120993000,229],[1710120994000,228],[1710120995000,229],[1710120996000,228],[1710120997000,229],[1710120998000,228],[1710120999000,229],[1710121000000,228],[1710121001000,229],[1710121002000,228],[1710121003000,229],[1710121004000,230],[1710121005000,230],[1710121006000,230],[1710121007000,229],[1710121008000,229],[1710121009000,229],[1710121010000,227],[1710121011000,228],[1710121012000,227],[1710121013000,227],[1710121014000,227],[1710121015000,227],[1710121016000,225],[1710121017000,226],[1710121018000,226],[1710121019000,226],[1710121020000,222],[1710121021000,223],[1710121022000,223],[1710121023000,223],[1710121024000,223],[1710121025000,223],[1710121026000,223],[1710121027000,221],[1710121028000,223],[1710121029000,222],[1710121030000,223],[1710121031000,403],[1710121032000,616],[1710121033000,821],[1710121034000,646],[1710121035000,646],[1710121036000,646],[1710121037000,601],[1710121038000,601],[1710121039000,601],[1710121040000,601],[1710121041000,601],[1710121042000,601],[1710121043000,601],[1710121044000,596],[1710121045000,596],[1710121046000,596],[1710121047000,596],[1710121048000,596],[1710121049000,554],[1710121050000,554],[1710121051000,554],[1710121052000,554],[1710121053000,554],[1710121054000,554],[1710121055000,554],[1710121056000,554],[1710121057000,554],[1710121058000,554],[1710121059000,554],[1710121060000,554],[1710121061000,554],[1710121062000,554],[1710121063000,554],[1710121064000,554],[1710121065000,554],[1710121066000,554],[1710121067000,554],[1710121068000,538],[1710121069000,538],[1710121070000,538],[1710121071000,538],[1710121072000,538],[1710121073000,538],[1710121074000,538],[1710121075000,538],[1710121076000,538],[1710121077000,538],[1710121078000,538],[1710121079000,538],[1710121080000,538],[1710121081000,538],[1710121082000,538],[1710121083000,538],[1710121084000,538],[1710121085000,538],[1710121086000,538],[1710121087000,538],[1710121088000,538],[1710121089000,538],[1710121090000,538],[1710121091000,355],[1710121092000,142],[1710121093000,22]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FFDD00',
name: 'validação HTTP 404',
data: [
[1710120789000,0],[1710120790000,0],[1710120791000,0],[1710120792000,1],[1710120793000,0],[1710120794000,0],[1710120795000,0],[1710120796000,0],[1710120797000,0],[1710120798000,0],[1710120799000,0],[1710120800000,0],[1710120801000,0],[1710120802000,0],[1710120803000,0],[1710120804000,0],[1710120805000,0],[1710120806000,0],[1710120807000,0],[1710120808000,0],[1710120809000,0],[1710120810000,0],[1710120811000,0],[1710120812000,0],[1710120813000,0],[1710120814000,0],[1710120815000,0],[1710120816000,0],[1710120817000,0],[1710120818000,0],[1710120819000,0],[1710120820000,0],[1710120821000,0],[1710120822000,0],[1710120823000,0],[1710120824000,0],[1710120825000,0],[1710120826000,0],[1710120827000,0],[1710120828000,0],[1710120829000,0],[1710120830000,0],[1710120831000,0],[1710120832000,0],[1710120833000,0],[1710120834000,0],[1710120835000,0],[1710120836000,0],[1710120837000,0],[1710120838000,0],[1710120839000,0],[1710120840000,0],[1710120841000,0],[1710120842000,0],[1710120843000,0],[1710120844000,0],[1710120845000,0],[1710120846000,0],[1710120847000,0],[1710120848000,0],[1710120849000,0],[1710120850000,0],[1710120851000,0],[1710120852000,0],[1710120853000,0],[1710120854000,0],[1710120855000,0],[1710120856000,0],[1710120857000,0],[1710120858000,0],[1710120859000,0],[1710120860000,0],[1710120861000,0],[1710120862000,0],[1710120863000,0],[1710120864000,0],[1710120865000,0],[1710120866000,0],[1710120867000,0],[1710120868000,0],[1710120869000,0],[1710120870000,0],[1710120871000,0],[1710120872000,0],[1710120873000,0],[1710120874000,0],[1710120875000,0],[1710120876000,0],[1710120877000,0],[1710120878000,0],[1710120879000,0],[1710120880000,0],[1710120881000,0],[1710120882000,0],[1710120883000,0],[1710120884000,0],[1710120885000,0],[1710120886000,0],[1710120887000,0],[1710120888000,0],[1710120889000,0],[1710120890000,0],[1710120891000,0],[1710120892000,0],[1710120893000,0],[1710120894000,0],[1710120895000,0],[1710120896000,0],[1710120897000,0],[1710120898000,0],[1710120899000,0],[1710120900000,0],[1710120901000,0],[1710120902000,0],[1710120903000,0],[1710120904000,0],[1710120905000,0],[1710120906000,0],[1710120907000,0],[1710120908000,0],[1710120909000,0],[1710120910000,0],[1710120911000,0],[1710120912000,0],[1710120913000,0],[1710120914000,0],[1710120915000,0],[1710120916000,0],[1710120917000,0],[1710120918000,0],[1710120919000,0],[1710120920000,0],[1710120921000,0],[1710120922000,0],[1710120923000,0],[1710120924000,0],[1710120925000,0],[1710120926000,0],[1710120927000,0],[1710120928000,0],[1710120929000,0],[1710120930000,0],[1710120931000,0],[1710120932000,0],[1710120933000,0],[1710120934000,0],[1710120935000,0],[1710120936000,0],[1710120937000,0],[1710120938000,0],[1710120939000,0],[1710120940000,0],[1710120941000,0],[1710120942000,0],[1710120943000,0],[1710120944000,0],[1710120945000,0],[1710120946000,0],[1710120947000,0],[1710120948000,0],[1710120949000,0],[1710120950000,0],[1710120951000,0],[1710120952000,0],[1710120953000,0],[1710120954000,0],[1710120955000,0],[1710120956000,0],[1710120957000,0],[1710120958000,0],[1710120959000,0],[1710120960000,0],[1710120961000,0],[1710120962000,0],[1710120963000,0],[1710120964000,0],[1710120965000,0],[1710120966000,0],[1710120967000,0],[1710120968000,0],[1710120969000,0],[1710120970000,0],[1710120971000,0],[1710120972000,0],[1710120973000,0],[1710120974000,0],[1710120975000,0],[1710120976000,0],[1710120977000,0],[1710120978000,0],[1710120979000,0],[1710120980000,0],[1710120981000,0],[1710120982000,0],[1710120983000,0],[1710120984000,0],[1710120985000,0],[1710120986000,0],[1710120987000,0],[1710120988000,0],[1710120989000,0],[1710120990000,0],[1710120991000,0],[1710120992000,0],[1710120993000,0],[1710120994000,0],[1710120995000,0],[1710120996000,0],[1710120997000,0],[1710120998000,0],[1710120999000,0],[1710121000000,0],[1710121001000,0],[1710121002000,0],[1710121003000,0],[1710121004000,0],[1710121005000,0],[1710121006000,0],[1710121007000,0],[1710121008000,0],[1710121009000,0],[1710121010000,0],[1710121011000,0],[1710121012000,0],[1710121013000,0],[1710121014000,0],[1710121015000,0],[1710121016000,0],[1710121017000,0],[1710121018000,0],[1710121019000,0],[1710121020000,0],[1710121021000,0],[1710121022000,0],[1710121023000,0],[1710121024000,0],[1710121025000,0],[1710121026000,0],[1710121027000,0],[1710121028000,0],[1710121029000,0],[1710121030000,0],[1710121031000,0],[1710121032000,0],[1710121033000,0],[1710121034000,0],[1710121035000,0],[1710121036000,0],[1710121037000,0],[1710121038000,0],[1710121039000,0],[1710121040000,0],[1710121041000,0],[1710121042000,0],[1710121043000,0],[1710121044000,0],[1710121045000,0],[1710121046000,0],[1710121047000,0],[1710121048000,0],[1710121049000,0],[1710121050000,0],[1710121051000,0],[1710121052000,0],[1710121053000,0],[1710121054000,0],[1710121055000,0],[1710121056000,0],[1710121057000,0],[1710121058000,0],[1710121059000,0],[1710121060000,0],[1710121061000,0],[1710121062000,0],[1710121063000,0],[1710121064000,0],[1710121065000,0],[1710121066000,0],[1710121067000,0],[1710121068000,0],[1710121069000,0],[1710121070000,0],[1710121071000,0],[1710121072000,0],[1710121073000,0],[1710121074000,0],[1710121075000,0],[1710121076000,0],[1710121077000,0],[1710121078000,0],[1710121079000,0],[1710121080000,0],[1710121081000,0],[1710121082000,0],[1710121083000,0],[1710121084000,0],[1710121085000,0],[1710121086000,0],[1710121087000,0],[1710121088000,0],[1710121089000,0],[1710121090000,0],[1710121091000,0],[1710121092000,0],[1710121093000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00D5FF',
name: 'validações',
data: [
[1710120789000,0],[1710120790000,0],[1710120791000,0],[1710120792000,5],[1710120793000,5],[1710120794000,0],[1710120795000,0],[1710120796000,0],[1710120797000,0],[1710120798000,0],[1710120799000,0],[1710120800000,0],[1710120801000,0],[1710120802000,0],[1710120803000,0],[1710120804000,0],[1710120805000,0],[1710120806000,0],[1710120807000,0],[1710120808000,0],[1710120809000,0],[1710120810000,0],[1710120811000,0],[1710120812000,0],[1710120813000,0],[1710120814000,0],[1710120815000,0],[1710120816000,0],[1710120817000,0],[1710120818000,0],[1710120819000,0],[1710120820000,0],[1710120821000,0],[1710120822000,0],[1710120823000,0],[1710120824000,0],[1710120825000,0],[1710120826000,0],[1710120827000,0],[1710120828000,0],[1710120829000,0],[1710120830000,0],[1710120831000,0],[1710120832000,0],[1710120833000,0],[1710120834000,0],[1710120835000,0],[1710120836000,0],[1710120837000,0],[1710120838000,0],[1710120839000,0],[1710120840000,0],[1710120841000,0],[1710120842000,0],[1710120843000,0],[1710120844000,0],[1710120845000,0],[1710120846000,0],[1710120847000,0],[1710120848000,0],[1710120849000,0],[1710120850000,0],[1710120851000,0],[1710120852000,0],[1710120853000,0],[1710120854000,0],[1710120855000,0],[1710120856000,0],[1710120857000,0],[1710120858000,0],[1710120859000,0],[1710120860000,0],[1710120861000,0],[1710120862000,0],[1710120863000,0],[1710120864000,0],[1710120865000,0],[1710120866000,0],[1710120867000,0],[1710120868000,0],[1710120869000,0],[1710120870000,0],[1710120871000,0],[1710120872000,0],[1710120873000,0],[1710120874000,0],[1710120875000,0],[1710120876000,0],[1710120877000,0],[1710120878000,0],[1710120879000,0],[1710120880000,0],[1710120881000,0],[1710120882000,0],[1710120883000,0],[1710120884000,0],[1710120885000,0],[1710120886000,0],[1710120887000,0],[1710120888000,0],[1710120889000,0],[1710120890000,0],[1710120891000,0],[1710120892000,0],[1710120893000,0],[1710120894000,0],[1710120895000,0],[1710120896000,0],[1710120897000,0],[1710120898000,0],[1710120899000,0],[1710120900000,0],[1710120901000,0],[1710120902000,0],[1710120903000,0],[1710120904000,0],[1710120905000,0],[1710120906000,0],[1710120907000,0],[1710120908000,0],[1710120909000,0],[1710120910000,0],[1710120911000,0],[1710120912000,0],[1710120913000,0],[1710120914000,0],[1710120915000,0],[1710120916000,0],[1710120917000,0],[1710120918000,0],[1710120919000,0],[1710120920000,0],[1710120921000,0],[1710120922000,0],[1710120923000,0],[1710120924000,0],[1710120925000,0],[1710120926000,0],[1710120927000,0],[1710120928000,0],[1710120929000,0],[1710120930000,0],[1710120931000,0],[1710120932000,0],[1710120933000,0],[1710120934000,0],[1710120935000,0],[1710120936000,0],[1710120937000,0],[1710120938000,0],[1710120939000,0],[1710120940000,0],[1710120941000,0],[1710120942000,0],[1710120943000,0],[1710120944000,0],[1710120945000,0],[1710120946000,0],[1710120947000,0],[1710120948000,0],[1710120949000,0],[1710120950000,0],[1710120951000,0],[1710120952000,0],[1710120953000,0],[1710120954000,0],[1710120955000,0],[1710120956000,0],[1710120957000,0],[1710120958000,0],[1710120959000,0],[1710120960000,0],[1710120961000,0],[1710120962000,0],[1710120963000,0],[1710120964000,0],[1710120965000,0],[1710120966000,0],[1710120967000,0],[1710120968000,0],[1710120969000,0],[1710120970000,0],[1710120971000,0],[1710120972000,0],[1710120973000,0],[1710120974000,0],[1710120975000,0],[1710120976000,0],[1710120977000,0],[1710120978000,0],[1710120979000,0],[1710120980000,0],[1710120981000,0],[1710120982000,0],[1710120983000,0],[1710120984000,0],[1710120985000,0],[1710120986000,0],[1710120987000,0],[1710120988000,0],[1710120989000,0],[1710120990000,0],[1710120991000,0],[1710120992000,0],[1710120993000,0],[1710120994000,0],[1710120995000,0],[1710120996000,0],[1710120997000,0],[1710120998000,0],[1710120999000,0],[1710121000000,0],[1710121001000,0],[1710121002000,0],[1710121003000,0],[1710121004000,0],[1710121005000,0],[1710121006000,0],[1710121007000,0],[1710121008000,0],[1710121009000,0],[1710121010000,0],[1710121011000,0],[1710121012000,0],[1710121013000,0],[1710121014000,0],[1710121015000,0],[1710121016000,0],[1710121017000,0],[1710121018000,0],[1710121019000,0],[1710121020000,0],[1710121021000,0],[1710121022000,0],[1710121023000,0],[1710121024000,0],[1710121025000,0],[1710121026000,0],[1710121027000,0],[1710121028000,0],[1710121029000,0],[1710121030000,0],[1710121031000,0],[1710121032000,0],[1710121033000,0],[1710121034000,0],[1710121035000,0],[1710121036000,0],[1710121037000,0],[1710121038000,0],[1710121039000,0],[1710121040000,0],[1710121041000,0],[1710121042000,0],[1710121043000,0],[1710121044000,0],[1710121045000,0],[1710121046000,0],[1710121047000,0],[1710121048000,0],[1710121049000,0],[1710121050000,0],[1710121051000,0],[1710121052000,0],[1710121053000,0],[1710121054000,0],[1710121055000,0],[1710121056000,0],[1710121057000,0],[1710121058000,0],[1710121059000,0],[1710121060000,0],[1710121061000,0],[1710121062000,0],[1710121063000,0],[1710121064000,0],[1710121065000,0],[1710121066000,0],[1710121067000,0],[1710121068000,0],[1710121069000,0],[1710121070000,0],[1710121071000,0],[1710121072000,0],[1710121073000,0],[1710121074000,0],[1710121075000,0],[1710121076000,0],[1710121077000,0],[1710121078000,0],[1710121079000,0],[1710121080000,0],[1710121081000,0],[1710121082000,0],[1710121083000,0],[1710121084000,0],[1710121085000,0],[1710121086000,0],[1710121087000,0],[1710121088000,0],[1710121089000,0],[1710121090000,0],[1710121091000,0],[1710121092000,0],[1710121093000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00FF00',
name: 'validação concorrência saldo - 0',
data: [
[1710120789000,0],[1710120790000,0],[1710120791000,1],[1710120792000,0],[1710120793000,0],[1710120794000,0],[1710120795000,0],[1710120796000,0],[1710120797000,0],[1710120798000,0],[1710120799000,0],[1710120800000,0],[1710120801000,0],[1710120802000,0],[1710120803000,0],[1710120804000,0],[1710120805000,0],[1710120806000,0],[1710120807000,0],[1710120808000,0],[1710120809000,0],[1710120810000,0],[1710120811000,0],[1710120812000,0],[1710120813000,0],[1710120814000,0],[1710120815000,0],[1710120816000,0],[1710120817000,0],[1710120818000,0],[1710120819000,0],[1710120820000,0],[1710120821000,0],[1710120822000,0],[1710120823000,0],[1710120824000,0],[1710120825000,0],[1710120826000,0],[1710120827000,0],[1710120828000,0],[1710120829000,0],[1710120830000,0],[1710120831000,0],[1710120832000,0],[1710120833000,0],[1710120834000,0],[1710120835000,0],[1710120836000,0],[1710120837000,0],[1710120838000,0],[1710120839000,0],[1710120840000,0],[1710120841000,0],[1710120842000,0],[1710120843000,0],[1710120844000,0],[1710120845000,0],[1710120846000,0],[1710120847000,0],[1710120848000,0],[1710120849000,0],[1710120850000,0],[1710120851000,0],[1710120852000,0],[1710120853000,0],[1710120854000,0],[1710120855000,0],[1710120856000,0],[1710120857000,0],[1710120858000,0],[1710120859000,0],[1710120860000,0],[1710120861000,0],[1710120862000,0],[1710120863000,0],[1710120864000,0],[1710120865000,0],[1710120866000,0],[1710120867000,0],[1710120868000,0],[1710120869000,0],[1710120870000,0],[1710120871000,0],[1710120872000,0],[1710120873000,0],[1710120874000,0],[1710120875000,0],[1710120876000,0],[1710120877000,0],[1710120878000,0],[1710120879000,0],[1710120880000,0],[1710120881000,0],[1710120882000,0],[1710120883000,0],[1710120884000,0],[1710120885000,0],[1710120886000,0],[1710120887000,0],[1710120888000,0],[1710120889000,0],[1710120890000,0],[1710120891000,0],[1710120892000,0],[1710120893000,0],[1710120894000,0],[1710120895000,0],[1710120896000,0],[1710120897000,0],[1710120898000,0],[1710120899000,0],[1710120900000,0],[1710120901000,0],[1710120902000,0],[1710120903000,0],[1710120904000,0],[1710120905000,0],[1710120906000,0],[1710120907000,0],[1710120908000,0],[1710120909000,0],[1710120910000,0],[1710120911000,0],[1710120912000,0],[1710120913000,0],[1710120914000,0],[1710120915000,0],[1710120916000,0],[1710120917000,0],[1710120918000,0],[1710120919000,0],[1710120920000,0],[1710120921000,0],[1710120922000,0],[1710120923000,0],[1710120924000,0],[1710120925000,0],[1710120926000,0],[1710120927000,0],[1710120928000,0],[1710120929000,0],[1710120930000,0],[1710120931000,0],[1710120932000,0],[1710120933000,0],[1710120934000,0],[1710120935000,0],[1710120936000,0],[1710120937000,0],[1710120938000,0],[1710120939000,0],[1710120940000,0],[1710120941000,0],[1710120942000,0],[1710120943000,0],[1710120944000,0],[1710120945000,0],[1710120946000,0],[1710120947000,0],[1710120948000,0],[1710120949000,0],[1710120950000,0],[1710120951000,0],[1710120952000,0],[1710120953000,0],[1710120954000,0],[1710120955000,0],[1710120956000,0],[1710120957000,0],[1710120958000,0],[1710120959000,0],[1710120960000,0],[1710120961000,0],[1710120962000,0],[1710120963000,0],[1710120964000,0],[1710120965000,0],[1710120966000,0],[1710120967000,0],[1710120968000,0],[1710120969000,0],[1710120970000,0],[1710120971000,0],[1710120972000,0],[1710120973000,0],[1710120974000,0],[1710120975000,0],[1710120976000,0],[1710120977000,0],[1710120978000,0],[1710120979000,0],[1710120980000,0],[1710120981000,0],[1710120982000,0],[1710120983000,0],[1710120984000,0],[1710120985000,0],[1710120986000,0],[1710120987000,0],[1710120988000,0],[1710120989000,0],[1710120990000,0],[1710120991000,0],[1710120992000,0],[1710120993000,0],[1710120994000,0],[1710120995000,0],[1710120996000,0],[1710120997000,0],[1710120998000,0],[1710120999000,0],[1710121000000,0],[1710121001000,0],[1710121002000,0],[1710121003000,0],[1710121004000,0],[1710121005000,0],[1710121006000,0],[1710121007000,0],[1710121008000,0],[1710121009000,0],[1710121010000,0],[1710121011000,0],[1710121012000,0],[1710121013000,0],[1710121014000,0],[1710121015000,0],[1710121016000,0],[1710121017000,0],[1710121018000,0],[1710121019000,0],[1710121020000,0],[1710121021000,0],[1710121022000,0],[1710121023000,0],[1710121024000,0],[1710121025000,0],[1710121026000,0],[1710121027000,0],[1710121028000,0],[1710121029000,0],[1710121030000,0],[1710121031000,0],[1710121032000,0],[1710121033000,0],[1710121034000,0],[1710121035000,0],[1710121036000,0],[1710121037000,0],[1710121038000,0],[1710121039000,0],[1710121040000,0],[1710121041000,0],[1710121042000,0],[1710121043000,0],[1710121044000,0],[1710121045000,0],[1710121046000,0],[1710121047000,0],[1710121048000,0],[1710121049000,0],[1710121050000,0],[1710121051000,0],[1710121052000,0],[1710121053000,0],[1710121054000,0],[1710121055000,0],[1710121056000,0],[1710121057000,0],[1710121058000,0],[1710121059000,0],[1710121060000,0],[1710121061000,0],[1710121062000,0],[1710121063000,0],[1710121064000,0],[1710121065000,0],[1710121066000,0],[1710121067000,0],[1710121068000,0],[1710121069000,0],[1710121070000,0],[1710121071000,0],[1710121072000,0],[1710121073000,0],[1710121074000,0],[1710121075000,0],[1710121076000,0],[1710121077000,0],[1710121078000,0],[1710121079000,0],[1710121080000,0],[1710121081000,0],[1710121082000,0],[1710121083000,0],[1710121084000,0],[1710121085000,0],[1710121086000,0],[1710121087000,0],[1710121088000,0],[1710121089000,0],[1710121090000,0],[1710121091000,0],[1710121092000,0],[1710121093000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#9D00FF',
name: 'validação concorrência transações - c',
data: [
[1710120789000,0],[1710120790000,24],[1710120791000,7],[1710120792000,0],[1710120793000,0],[1710120794000,0],[1710120795000,0],[1710120796000,0],[1710120797000,0],[1710120798000,0],[1710120799000,0],[1710120800000,0],[1710120801000,0],[1710120802000,0],[1710120803000,0],[1710120804000,0],[1710120805000,0],[1710120806000,0],[1710120807000,0],[1710120808000,0],[1710120809000,0],[1710120810000,0],[1710120811000,0],[1710120812000,0],[1710120813000,0],[1710120814000,0],[1710120815000,0],[1710120816000,0],[1710120817000,0],[1710120818000,0],[1710120819000,0],[1710120820000,0],[1710120821000,0],[1710120822000,0],[1710120823000,0],[1710120824000,0],[1710120825000,0],[1710120826000,0],[1710120827000,0],[1710120828000,0],[1710120829000,0],[1710120830000,0],[1710120831000,0],[1710120832000,0],[1710120833000,0],[1710120834000,0],[1710120835000,0],[1710120836000,0],[1710120837000,0],[1710120838000,0],[1710120839000,0],[1710120840000,0],[1710120841000,0],[1710120842000,0],[1710120843000,0],[1710120844000,0],[1710120845000,0],[1710120846000,0],[1710120847000,0],[1710120848000,0],[1710120849000,0],[1710120850000,0],[1710120851000,0],[1710120852000,0],[1710120853000,0],[1710120854000,0],[1710120855000,0],[1710120856000,0],[1710120857000,0],[1710120858000,0],[1710120859000,0],[1710120860000,0],[1710120861000,0],[1710120862000,0],[1710120863000,0],[1710120864000,0],[1710120865000,0],[1710120866000,0],[1710120867000,0],[1710120868000,0],[1710120869000,0],[1710120870000,0],[1710120871000,0],[1710120872000,0],[1710120873000,0],[1710120874000,0],[1710120875000,0],[1710120876000,0],[1710120877000,0],[1710120878000,0],[1710120879000,0],[1710120880000,0],[1710120881000,0],[1710120882000,0],[1710120883000,0],[1710120884000,0],[1710120885000,0],[1710120886000,0],[1710120887000,0],[1710120888000,0],[1710120889000,0],[1710120890000,0],[1710120891000,0],[1710120892000,0],[1710120893000,0],[1710120894000,0],[1710120895000,0],[1710120896000,0],[1710120897000,0],[1710120898000,0],[1710120899000,0],[1710120900000,0],[1710120901000,0],[1710120902000,0],[1710120903000,0],[1710120904000,0],[1710120905000,0],[1710120906000,0],[1710120907000,0],[1710120908000,0],[1710120909000,0],[1710120910000,0],[1710120911000,0],[1710120912000,0],[1710120913000,0],[1710120914000,0],[1710120915000,0],[1710120916000,0],[1710120917000,0],[1710120918000,0],[1710120919000,0],[1710120920000,0],[1710120921000,0],[1710120922000,0],[1710120923000,0],[1710120924000,0],[1710120925000,0],[1710120926000,0],[1710120927000,0],[1710120928000,0],[1710120929000,0],[1710120930000,0],[1710120931000,0],[1710120932000,0],[1710120933000,0],[1710120934000,0],[1710120935000,0],[1710120936000,0],[1710120937000,0],[1710120938000,0],[1710120939000,0],[1710120940000,0],[1710120941000,0],[1710120942000,0],[1710120943000,0],[1710120944000,0],[1710120945000,0],[1710120946000,0],[1710120947000,0],[1710120948000,0],[1710120949000,0],[1710120950000,0],[1710120951000,0],[1710120952000,0],[1710120953000,0],[1710120954000,0],[1710120955000,0],[1710120956000,0],[1710120957000,0],[1710120958000,0],[1710120959000,0],[1710120960000,0],[1710120961000,0],[1710120962000,0],[1710120963000,0],[1710120964000,0],[1710120965000,0],[1710120966000,0],[1710120967000,0],[1710120968000,0],[1710120969000,0],[1710120970000,0],[1710120971000,0],[1710120972000,0],[1710120973000,0],[1710120974000,0],[1710120975000,0],[1710120976000,0],[1710120977000,0],[1710120978000,0],[1710120979000,0],[1710120980000,0],[1710120981000,0],[1710120982000,0],[1710120983000,0],[1710120984000,0],[1710120985000,0],[1710120986000,0],[1710120987000,0],[1710120988000,0],[1710120989000,0],[1710120990000,0],[1710120991000,0],[1710120992000,0],[1710120993000,0],[1710120994000,0],[1710120995000,0],[1710120996000,0],[1710120997000,0],[1710120998000,0],[1710120999000,0],[1710121000000,0],[1710121001000,0],[1710121002000,0],[1710121003000,0],[1710121004000,0],[1710121005000,0],[1710121006000,0],[1710121007000,0],[1710121008000,0],[1710121009000,0],[1710121010000,0],[1710121011000,0],[1710121012000,0],[1710121013000,0],[1710121014000,0],[1710121015000,0],[1710121016000,0],[1710121017000,0],[1710121018000,0],[1710121019000,0],[1710121020000,0],[1710121021000,0],[1710121022000,0],[1710121023000,0],[1710121024000,0],[1710121025000,0],[1710121026000,0],[1710121027000,0],[1710121028000,0],[1710121029000,0],[1710121030000,0],[1710121031000,0],[1710121032000,0],[1710121033000,0],[1710121034000,0],[1710121035000,0],[1710121036000,0],[1710121037000,0],[1710121038000,0],[1710121039000,0],[1710121040000,0],[1710121041000,0],[1710121042000,0],[1710121043000,0],[1710121044000,0],[1710121045000,0],[1710121046000,0],[1710121047000,0],[1710121048000,0],[1710121049000,0],[1710121050000,0],[1710121051000,0],[1710121052000,0],[1710121053000,0],[1710121054000,0],[1710121055000,0],[1710121056000,0],[1710121057000,0],[1710121058000,0],[1710121059000,0],[1710121060000,0],[1710121061000,0],[1710121062000,0],[1710121063000,0],[1710121064000,0],[1710121065000,0],[1710121066000,0],[1710121067000,0],[1710121068000,0],[1710121069000,0],[1710121070000,0],[1710121071000,0],[1710121072000,0],[1710121073000,0],[1710121074000,0],[1710121075000,0],[1710121076000,0],[1710121077000,0],[1710121078000,0],[1710121079000,0],[1710121080000,0],[1710121081000,0],[1710121082000,0],[1710121083000,0],[1710121084000,0],[1710121085000,0],[1710121086000,0],[1710121087000,0],[1710121088000,0],[1710121089000,0],[1710121090000,0],[1710121091000,0],[1710121092000,0],[1710121093000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FF00E1',
name: 'validação concorrência saldo - -25',
data: [
[1710120789000,1],[1710120790000,1],[1710120791000,0],[1710120792000,0],[1710120793000,0],[1710120794000,0],[1710120795000,0],[1710120796000,0],[1710120797000,0],[1710120798000,0],[1710120799000,0],[1710120800000,0],[1710120801000,0],[1710120802000,0],[1710120803000,0],[1710120804000,0],[1710120805000,0],[1710120806000,0],[1710120807000,0],[1710120808000,0],[1710120809000,0],[1710120810000,0],[1710120811000,0],[1710120812000,0],[1710120813000,0],[1710120814000,0],[1710120815000,0],[1710120816000,0],[1710120817000,0],[1710120818000,0],[1710120819000,0],[1710120820000,0],[1710120821000,0],[1710120822000,0],[1710120823000,0],[1710120824000,0],[1710120825000,0],[1710120826000,0],[1710120827000,0],[1710120828000,0],[1710120829000,0],[1710120830000,0],[1710120831000,0],[1710120832000,0],[1710120833000,0],[1710120834000,0],[1710120835000,0],[1710120836000,0],[1710120837000,0],[1710120838000,0],[1710120839000,0],[1710120840000,0],[1710120841000,0],[1710120842000,0],[1710120843000,0],[1710120844000,0],[1710120845000,0],[1710120846000,0],[1710120847000,0],[1710120848000,0],[1710120849000,0],[1710120850000,0],[1710120851000,0],[1710120852000,0],[1710120853000,0],[1710120854000,0],[1710120855000,0],[1710120856000,0],[1710120857000,0],[1710120858000,0],[1710120859000,0],[1710120860000,0],[1710120861000,0],[1710120862000,0],[1710120863000,0],[1710120864000,0],[1710120865000,0],[1710120866000,0],[1710120867000,0],[1710120868000,0],[1710120869000,0],[1710120870000,0],[1710120871000,0],[1710120872000,0],[1710120873000,0],[1710120874000,0],[1710120875000,0],[1710120876000,0],[1710120877000,0],[1710120878000,0],[1710120879000,0],[1710120880000,0],[1710120881000,0],[1710120882000,0],[1710120883000,0],[1710120884000,0],[1710120885000,0],[1710120886000,0],[1710120887000,0],[1710120888000,0],[1710120889000,0],[1710120890000,0],[1710120891000,0],[1710120892000,0],[1710120893000,0],[1710120894000,0],[1710120895000,0],[1710120896000,0],[1710120897000,0],[1710120898000,0],[1710120899000,0],[1710120900000,0],[1710120901000,0],[1710120902000,0],[1710120903000,0],[1710120904000,0],[1710120905000,0],[1710120906000,0],[1710120907000,0],[1710120908000,0],[1710120909000,0],[1710120910000,0],[1710120911000,0],[1710120912000,0],[1710120913000,0],[1710120914000,0],[1710120915000,0],[1710120916000,0],[1710120917000,0],[1710120918000,0],[1710120919000,0],[1710120920000,0],[1710120921000,0],[1710120922000,0],[1710120923000,0],[1710120924000,0],[1710120925000,0],[1710120926000,0],[1710120927000,0],[1710120928000,0],[1710120929000,0],[1710120930000,0],[1710120931000,0],[1710120932000,0],[1710120933000,0],[1710120934000,0],[1710120935000,0],[1710120936000,0],[1710120937000,0],[1710120938000,0],[1710120939000,0],[1710120940000,0],[1710120941000,0],[1710120942000,0],[1710120943000,0],[1710120944000,0],[1710120945000,0],[1710120946000,0],[1710120947000,0],[1710120948000,0],[1710120949000,0],[1710120950000,0],[1710120951000,0],[1710120952000,0],[1710120953000,0],[1710120954000,0],[1710120955000,0],[1710120956000,0],[1710120957000,0],[1710120958000,0],[1710120959000,0],[1710120960000,0],[1710120961000,0],[1710120962000,0],[1710120963000,0],[1710120964000,0],[1710120965000,0],[1710120966000,0],[1710120967000,0],[1710120968000,0],[1710120969000,0],[1710120970000,0],[1710120971000,0],[1710120972000,0],[1710120973000,0],[1710120974000,0],[1710120975000,0],[1710120976000,0],[1710120977000,0],[1710120978000,0],[1710120979000,0],[1710120980000,0],[1710120981000,0],[1710120982000,0],[1710120983000,0],[1710120984000,0],[1710120985000,0],[1710120986000,0],[1710120987000,0],[1710120988000,0],[1710120989000,0],[1710120990000,0],[1710120991000,0],[1710120992000,0],[1710120993000,0],[1710120994000,0],[1710120995000,0],[1710120996000,0],[1710120997000,0],[1710120998000,0],[1710120999000,0],[1710121000000,0],[1710121001000,0],[1710121002000,0],[1710121003000,0],[1710121004000,0],[1710121005000,0],[1710121006000,0],[1710121007000,0],[1710121008000,0],[1710121009000,0],[1710121010000,0],[1710121011000,0],[1710121012000,0],[1710121013000,0],[1710121014000,0],[1710121015000,0],[1710121016000,0],[1710121017000,0],[1710121018000,0],[1710121019000,0],[1710121020000,0],[1710121021000,0],[1710121022000,0],[1710121023000,0],[1710121024000,0],[1710121025000,0],[1710121026000,0],[1710121027000,0],[1710121028000,0],[1710121029000,0],[1710121030000,0],[1710121031000,0],[1710121032000,0],[1710121033000,0],[1710121034000,0],[1710121035000,0],[1710121036000,0],[1710121037000,0],[1710121038000,0],[1710121039000,0],[1710121040000,0],[1710121041000,0],[1710121042000,0],[1710121043000,0],[1710121044000,0],[1710121045000,0],[1710121046000,0],[1710121047000,0],[1710121048000,0],[1710121049000,0],[1710121050000,0],[1710121051000,0],[1710121052000,0],[1710121053000,0],[1710121054000,0],[1710121055000,0],[1710121056000,0],[1710121057000,0],[1710121058000,0],[1710121059000,0],[1710121060000,0],[1710121061000,0],[1710121062000,0],[1710121063000,0],[1710121064000,0],[1710121065000,0],[1710121066000,0],[1710121067000,0],[1710121068000,0],[1710121069000,0],[1710121070000,0],[1710121071000,0],[1710121072000,0],[1710121073000,0],[1710121074000,0],[1710121075000,0],[1710121076000,0],[1710121077000,0],[1710121078000,0],[1710121079000,0],[1710121080000,0],[1710121081000,0],[1710121082000,0],[1710121083000,0],[1710121084000,0],[1710121085000,0],[1710121086000,0],[1710121087000,0],[1710121088000,0],[1710121089000,0],[1710121090000,0],[1710121091000,0],[1710121092000,0],[1710121093000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#AECAEB',
name: 'validação concorrência transações - d',
data: [
[1710120789000,25],[1710120790000,0],[1710120791000,0],[1710120792000,0],[1710120793000,0],[1710120794000,0],[1710120795000,0],[1710120796000,0],[1710120797000,0],[1710120798000,0],[1710120799000,0],[1710120800000,0],[1710120801000,0],[1710120802000,0],[1710120803000,0],[1710120804000,0],[1710120805000,0],[1710120806000,0],[1710120807000,0],[1710120808000,0],[1710120809000,0],[1710120810000,0],[1710120811000,0],[1710120812000,0],[1710120813000,0],[1710120814000,0],[1710120815000,0],[1710120816000,0],[1710120817000,0],[1710120818000,0],[1710120819000,0],[1710120820000,0],[1710120821000,0],[1710120822000,0],[1710120823000,0],[1710120824000,0],[1710120825000,0],[1710120826000,0],[1710120827000,0],[1710120828000,0],[1710120829000,0],[1710120830000,0],[1710120831000,0],[1710120832000,0],[1710120833000,0],[1710120834000,0],[1710120835000,0],[1710120836000,0],[1710120837000,0],[1710120838000,0],[1710120839000,0],[1710120840000,0],[1710120841000,0],[1710120842000,0],[1710120843000,0],[1710120844000,0],[1710120845000,0],[1710120846000,0],[1710120847000,0],[1710120848000,0],[1710120849000,0],[1710120850000,0],[1710120851000,0],[1710120852000,0],[1710120853000,0],[1710120854000,0],[1710120855000,0],[1710120856000,0],[1710120857000,0],[1710120858000,0],[1710120859000,0],[1710120860000,0],[1710120861000,0],[1710120862000,0],[1710120863000,0],[1710120864000,0],[1710120865000,0],[1710120866000,0],[1710120867000,0],[1710120868000,0],[1710120869000,0],[1710120870000,0],[1710120871000,0],[1710120872000,0],[1710120873000,0],[1710120874000,0],[1710120875000,0],[1710120876000,0],[1710120877000,0],[1710120878000,0],[1710120879000,0],[1710120880000,0],[1710120881000,0],[1710120882000,0],[1710120883000,0],[1710120884000,0],[1710120885000,0],[1710120886000,0],[1710120887000,0],[1710120888000,0],[1710120889000,0],[1710120890000,0],[1710120891000,0],[1710120892000,0],[1710120893000,0],[1710120894000,0],[1710120895000,0],[1710120896000,0],[1710120897000,0],[1710120898000,0],[1710120899000,0],[1710120900000,0],[1710120901000,0],[1710120902000,0],[1710120903000,0],[1710120904000,0],[1710120905000,0],[1710120906000,0],[1710120907000,0],[1710120908000,0],[1710120909000,0],[1710120910000,0],[1710120911000,0],[1710120912000,0],[1710120913000,0],[1710120914000,0],[1710120915000,0],[1710120916000,0],[1710120917000,0],[1710120918000,0],[1710120919000,0],[1710120920000,0],[1710120921000,0],[1710120922000,0],[1710120923000,0],[1710120924000,0],[1710120925000,0],[1710120926000,0],[1710120927000,0],[1710120928000,0],[1710120929000,0],[1710120930000,0],[1710120931000,0],[1710120932000,0],[1710120933000,0],[1710120934000,0],[1710120935000,0],[1710120936000,0],[1710120937000,0],[1710120938000,0],[1710120939000,0],[1710120940000,0],[1710120941000,0],[1710120942000,0],[1710120943000,0],[1710120944000,0],[1710120945000,0],[1710120946000,0],[1710120947000,0],[1710120948000,0],[1710120949000,0],[1710120950000,0],[1710120951000,0],[1710120952000,0],[1710120953000,0],[1710120954000,0],[1710120955000,0],[1710120956000,0],[1710120957000,0],[1710120958000,0],[1710120959000,0],[1710120960000,0],[1710120961000,0],[1710120962000,0],[1710120963000,0],[1710120964000,0],[1710120965000,0],[1710120966000,0],[1710120967000,0],[1710120968000,0],[1710120969000,0],[1710120970000,0],[1710120971000,0],[1710120972000,0],[1710120973000,0],[1710120974000,0],[1710120975000,0],[1710120976000,0],[1710120977000,0],[1710120978000,0],[1710120979000,0],[1710120980000,0],[1710120981000,0],[1710120982000,0],[1710120983000,0],[1710120984000,0],[1710120985000,0],[1710120986000,0],[1710120987000,0],[1710120988000,0],[1710120989000,0],[1710120990000,0],[1710120991000,0],[1710120992000,0],[1710120993000,0],[1710120994000,0],[1710120995000,0],[1710120996000,0],[1710120997000,0],[1710120998000,0],[1710120999000,0],[1710121000000,0],[1710121001000,0],[1710121002000,0],[1710121003000,0],[1710121004000,0],[1710121005000,0],[1710121006000,0],[1710121007000,0],[1710121008000,0],[1710121009000,0],[1710121010000,0],[1710121011000,0],[1710121012000,0],[1710121013000,0],[1710121014000,0],[1710121015000,0],[1710121016000,0],[1710121017000,0],[1710121018000,0],[1710121019000,0],[1710121020000,0],[1710121021000,0],[1710121022000,0],[1710121023000,0],[1710121024000,0],[1710121025000,0],[1710121026000,0],[1710121027000,0],[1710121028000,0],[1710121029000,0],[1710121030000,0],[1710121031000,0],[1710121032000,0],[1710121033000,0],[1710121034000,0],[1710121035000,0],[1710121036000,0],[1710121037000,0],[1710121038000,0],[1710121039000,0],[1710121040000,0],[1710121041000,0],[1710121042000,0],[1710121043000,0],[1710121044000,0],[1710121045000,0],[1710121046000,0],[1710121047000,0],[1710121048000,0],[1710121049000,0],[1710121050000,0],[1710121051000,0],[1710121052000,0],[1710121053000,0],[1710121054000,0],[1710121055000,0],[1710121056000,0],[1710121057000,0],[1710121058000,0],[1710121059000,0],[1710121060000,0],[1710121061000,0],[1710121062000,0],[1710121063000,0],[1710121064000,0],[1710121065000,0],[1710121066000,0],[1710121067000,0],[1710121068000,0],[1710121069000,0],[1710121070000,0],[1710121071000,0],[1710121072000,0],[1710121073000,0],[1710121074000,0],[1710121075000,0],[1710121076000,0],[1710121077000,0],[1710121078000,0],[1710121079000,0],[1710121080000,0],[1710121081000,0],[1710121082000,0],[1710121083000,0],[1710121084000,0],[1710121085000,0],[1710121086000,0],[1710121087000,0],[1710121088000,0],[1710121089000,0],[1710121090000,0],[1710121091000,0],[1710121092000,0],[1710121093000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
allUsersData
]
});
allUsersChart.setTitle({
text: '<span class="chart_title">Active Users along the Simulation</span>',
useHTML: true
});
allUsersData.yAxis = 1;
var responsetimeDistributionChart = new Highcharts.Chart({
chart: {
renderTo: 'responsetimeDistributionContainer',
type: 'column',
marginBottom: 60
},
credits: { enabled: false },
legend: {
enabled: true,
floating: true,
y: 5,
borderWidth: 0,
itemStyle: { fontWeight: "normal" },
symbolRadius: 0
},
title: { text: 'A title to let highcharts reserve the place for the title set later' },
navigator: {
maskInside: false
},
xAxis: {
categories: ['300', '900', '1500', '2100', '2700', '3300', '3900', '4500', '5100', '5700', '6300', '6900', '7500', '8100', '8700', '9300', '9900', '10500', '11100', '11700', '12300', '12900', '13500', '14100', '14700', '15300', '15900', '16500', '17100', '17700', '18300', '18900', '19500', '20100', '20700', '21300', '21900', '22500', '23100', '23700', '24300', '24900', '25500', '26100', '26700', '27300', '27900', '28500', '29100', '29700', '30301', '30901', '31501', '32101', '32701', '33301', '33901', '34501', '35101', '35701', '36301', '36901', '37501', '38101', '38701', '39301', '39901', '40501', '41101', '41701', '42301', '42901', '43501', '44101', '44701', '45301', '45901', '46501', '47101', '47701', '48301', '48901', '49501', '50101', '50701', '51301', '51901', '52501', '53101', '53701', '54301', '54901', '55501', '56101', '56701', '57301', '57901', '58501', '59101', '59701'],
tickInterval: 20
},
yAxis: {
min: 0,
title: { text: 'Percentage of Requests' },
reversedStacks: false
},
tooltip: {
formatter: function() {
return '<b>'+ this.x +' ms</b><br/>'+
this.series.name +': '+ this.y +' %<br/>'+
'Total: '+ this.point.stackTotal + ' %';
}
},
plotOptions: {
series: {
groupPadding: 0,
stacking: 'normal',
shadow: true
}
},
series: [
{
type: 'column',
color: '#68b65c',
name: 'OK',
data: [
37.53,0.88,0.81,0.77,0.61,0.52,0.43,0.36,0.24,0.18,0.13,0.11,0.09,0.05,0.06,0.02,0.01,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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: [
46.62,0.99,1.11,1.05,0.95,0.92,0.86,0.6,0.44,0.34,0.31,0.26,0.24,0.27,0.22,0.14,0.08,0.05,0.05,0.02,0.02,0.02,0.01,0.01,0.01,0.0,0.08,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.04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.18
],
tooltip: { yDecimals: 0, ySuffix: 'ms' }
}
]
});
responsetimeDistributionChart.setTitle({
text: '<span class="chart_title">Response Time Distribution</span>',
useHTML: true
});
var responsetimepercentilesovertimeokPercentiles = unpack([[1710120789,[40,59,69,78,79,82,82,86,87,88]],[1710120790,[2,2,2,2,2,2,2,2,2,2]],[1710120791,[5,9,12,15,15,16,18,19,20,21]],[1710120792,[3,3,3,3,3,3,3,3,3,3]],[1710120793,[0,2,4,8,10,14,16,20,24,26]],[1710120794,[4,4,5,5,5,5,5,5,5,6]],[1710120795,[3,3,3,3,3,3,3,3,3,4]],[1710120796,[2,3,3,4,4,4,4,4,4,5]],[1710120797,[2,2,3,3,3,3,3,3,3,3]],[1710120798,[2,3,3,3,3,3,3,3,4,5]],[1710120799,[2,2,2,3,3,3,3,3,3,3]],[1710120800,[2,2,2,3,3,3,3,3,3,3]],[1710120801,[2,2,2,3,3,3,3,3,3,4]],[1710120802,[2,2,3,3,3,3,3,3,5,6]],[1710120803,[2,2,2,3,3,3,3,3,3,3]],[1710120804,[1,2,2,3,3,3,3,3,4,4]],[1710120805,[1,2,2,2,2,3,3,3,3,3]],[1710120806,[2,2,2,2,3,3,3,3,3,3]],[1710120807,[1,2,2,2,2,2,3,3,3,3]],[1710120808,[1,2,2,2,2,2,3,3,5,7]],[1710120809,[1,2,2,2,2,2,2,3,3,3]],[1710120810,[1,2,2,2,2,2,2,2,2,2]],[1710120811,[1,2,2,2,2,2,2,2,3,3]],[1710120812,[1,1,2,2,2,2,2,2,2,2]],[1710120813,[1,1,1,2,2,2,2,2,2,2]],[1710120814,[1,1,2,2,2,2,2,2,3,3]],[1710120815,[1,2,2,2,2,2,2,2,2,2]],[1710120816,[1,2,2,2,2,2,2,2,3,3]],[1710120817,[1,1,2,2,2,2,2,2,3,5]],[1710120818,[1,1,2,2,2,2,2,2,3,3]],[1710120819,[1,1,1,2,2,2,2,2,2,3]],[1710120820,[1,1,2,2,2,2,2,2,2,3]],[1710120821,[1,2,2,2,2,2,2,2,3,4]],[1710120822,[1,1,1,2,2,2,2,2,2,2]],[1710120823,[1,1,2,2,2,2,2,2,2,3]],[1710120824,[1,1,1,2,2,2,2,2,2,2]],[1710120825,[1,1,1,1,1,2,2,2,2,3]],[1710120826,[1,1,2,2,2,2,2,2,2,2]],[1710120827,[1,2,2,2,2,2,2,3,3,3]],[1710120828,[1,1,2,2,2,2,2,2,2,3]],[1710120829,[1,1,2,2,2,2,2,2,2,2]],[1710120830,[1,1,2,2,2,2,2,2,3,3]],[1710120831,[1,1,1,2,2,2,2,2,2,2]],[1710120832,[1,1,2,2,2,2,2,2,4,5]],[1710120833,[1,1,1,2,2,2,2,2,2,2]],[1710120834,[1,1,1,2,2,2,2,2,2,2]],[1710120835,[1,1,1,2,2,2,2,2,2,2]],[1710120836,[1,1,2,2,2,2,2,2,2,2]],[1710120837,[1,1,2,2,2,2,2,2,2,2]],[1710120838,[1,1,1,2,2,2,2,2,2,2]],[1710120839,[1,1,1,2,2,2,2,2,2,2]],[1710120840,[1,1,1,2,2,2,2,2,2,3]],[1710120841,[1,2,2,2,2,2,2,2,2,2]],[1710120842,[1,1,2,2,2,2,2,2,2,3]],[1710120843,[1,1,2,2,2,2,2,2,2,2]],[1710120844,[1,1,1,2,2,2,2,2,2,2]],[1710120845,[1,1,1,1,1,2,2,2,2,2]],[1710120846,[1,1,1,2,2,2,2,2,2,2]],[1710120847,[1,1,2,2,2,2,2,2,2,4]],[1710120848,[1,1,1,2,2,2,2,2,2,3]],[1710120849,[1,1,1,2,2,2,2,2,2,2]],[1710120850,[1,1,2,2,2,2,2,2,2,3]],[1710120851,[1,1,1,2,2,2,2,2,3,3]],[1710120852,[1,1,1,2,2,2,2,2,3,3]],[1710120853,[1,1,1,2,2,2,2,2,2,3]],[1710120854,[1,1,1,2,2,2,2,2,2,3]],[1710120855,[1,1,2,2,2,2,2,2,2,3]],[1710120856,[1,1,2,2,2,2,2,2,3,3]],[1710120857,[1,1,2,2,2,2,2,2,3,3]],[1710120858,[1,1,1,2,2,2,2,2,2,2]],[1710120859,[1,1,2,2,2,2,2,2,2,3]],[1710120860,[1,1,2,2,2,2,2,2,3,3]],[1710120861,[1,1,1,2,2,2,2,2,2,3]],[1710120862,[1,1,2,2,2,2,2,2,2,3]],[1710120863,[1,1,2,2,2,2,2,2,18,35]],[1710120864,[1,1,1,2,2,2,2,2,2,3]],[1710120865,[1,2,2,2,2,2,2,2,3,3]],[1710120866,[1,1,2,2,2,2,2,2,3,3]],[1710120867,[1,2,2,2,2,2,2,2,2,2]],[1710120868,[1,2,2,2,2,2,2,2,12,29]],[1710120869,[0,1,1,2,2,2,2,2,2,2]],[1710120870,[1,1,1,2,2,2,2,2,2,3]],[1710120871,[0,1,1,2,2,2,2,2,2,3]],[1710120872,[1,1,1,2,2,2,2,2,2,3]],[1710120873,[1,1,1,2,2,2,2,2,2,2]],[1710120874,[1,1,2,2,2,2,2,2,3,3]],[1710120875,[1,2,2,2,2,2,2,2,3,3]],[1710120876,[1,1,1,2,2,2,2,2,3,3]],[1710120877,[1,1,1,2,2,2,2,2,2,3]],[1710120878,[1,1,1,2,2,2,2,2,2,3]],[1710120879,[1,2,2,2,2,2,2,2,2,2]],[1710120880,[1,2,2,2,2,2,2,2,3,3]],[1710120881,[1,1,2,2,2,2,2,2,2,3]],[1710120882,[1,1,2,2,2,2,2,2,3,3]],[1710120883,[1,1,2,2,2,2,2,3,14,24]],[1710120884,[1,1,2,2,2,2,2,2,2,3]],[1710120885,[1,2,2,2,2,2,2,2,3,6]],[1710120886,[1,2,2,2,2,2,2,2,3,3]],[1710120887,[1,1,1,2,2,2,2,2,2,2]],[1710120888,[1,1,2,2,2,2,2,2,4,16]],[1710120889,[1,1,2,2,2,2,2,2,3,3]],[1710120890,[1,1,1,2,2,2,2,2,2,3]],[1710120891,[1,1,1,2,2,2,2,2,2,3]],[1710120892,[1,1,2,2,2,2,2,2,2,3]],[1710120893,[1,2,2,2,2,2,2,3,14,29]],[1710120894,[1,1,2,2,2,2,2,2,3,3]],[1710120895,[1,2,2,2,2,2,2,2,3,3]],[1710120896,[1,2,2,2,2,2,2,3,3,3]],[1710120897,[1,1,2,2,2,2,2,2,3,3]],[1710120898,[1,2,2,2,2,2,2,3,10,21]],[1710120899,[1,2,2,2,2,2,3,3,3,3]],[1710120900,[1,2,2,2,2,2,2,2,3,3]],[1710120901,[1,2,2,2,2,2,2,2,3,3]],[1710120902,[1,2,2,2,2,2,2,3,3,3]],[1710120903,[1,2,2,2,2,2,3,5,23,32]],[1710120904,[1,2,2,2,2,2,2,3,3,3]],[1710120905,[1,2,2,2,3,3,3,3,4,5]],[1710120906,[1,2,2,3,3,3,3,3,4,4]],[1710120907,[1,3,3,4,4,4,4,4,5,5]],[1710120908,[1,2,2,3,4,4,4,5,38,45]],[1710120909,[1,3,3,4,4,4,4,5,5,13]],[1710120910,[1,2,2,3,3,4,4,4,4,4]],[1710120911,[1,2,3,3,3,4,4,4,4,5]],[1710120912,[1,2,2,3,3,3,4,4,4,5]],[1710120913,[1,2,3,4,4,4,4,5,6,12]],[1710120914,[1,2,2,4,4,5,18,34,54,64]],[1710120915,[1,2,3,3,3,4,4,4,6,7]],[1710120916,[1,2,3,3,3,4,4,4,5,5]],[1710120917,[1,2,2,3,4,4,4,5,5,6]],[1710120918,[1,2,3,3,4,4,4,4,5,6]],[1710120919,[1,39,77,438,677,1626,2756,3760,4970,5706]],[1710120920,[6,597,1498,2760,3220,3675,4357,5372,7818,9370]],[1710120921,[28,1109,1946,3217,3740,4264,5088,6765,9867,16522]],[1710120922,[129,1006,2183,3901,4383,5481,6561,8409,9448,11081]],[1710120923,[129,1385,2380,4537,5061,5742,6672,8258,10329,10691]],[1710120924,[146,1404,2459,4115,4495,5008,6248,7724,9191,9762]],[1710120925,[239,1126,2594,4202,4762,5376,6180,6957,8378,8752]],[1710120926,[174,1414,2656,4381,4735,5210,6453,7038,8139,11096]],[1710120927,[121,1845,3183,4606,5070,5208,5815,6800,7985,10315]],[1710120928,[236,1843,3252,4488,4705,5004,5717,6294,10287,11476]],[1710120929,[221,1386,2547,3808,4225,4551,4993,5696,9752,13198]],[1710120930,[157,1104,1924,3407,3714,4170,4937,6466,8968,9527]],[1710120931,[188,592,1776,3031,3261,3855,5095,7300,8494,12086]],[1710120932,[198,617,1147,1721,1934,2112,3113,5255,7324,7437]],[1710120933,[111,567,821,1341,1632,2450,3374,5150,6495,6616]],[1710120934,[215,898,2941,4791,5439,6489,8341,9462,12806,13482]],[1710120935,[220,1059,2899,4582,4821,6091,7333,8484,11176,12320]],[1710120936,[212,1541,2542,3483,3537,4285,5996,7282,9850,10185]],[1710120937,[193,961,1874,3554,4246,4828,5183,6174,6692,6889]],[1710120938,[261,738,1723,4743,4855,5387,5661,6716,9441,9883]],[1710120939,[283,2248,3450,4478,4672,5660,7509,8602,8666,8682]],[1710120940,[1062,3123,4872,5944,6272,6997,7965,8262,8642,8804]],[1710120941,[319,953,2480,4884,5262,5694,6204,6746,7224,7349]],[1710120942,[378,789,1131,1721,1881,2390,3857,5864,6609,6663]],[1710120943,[371,525,918,3299,3624,4011,4563,5498,5659,5680]],[1710120944,[190,598,1220,2644,3091,3732,3986,4166,4506,4605]],[1710120945,[204,1064,1936,2959,3083,3171,3269,3378,3598,3689]],[1710120946,[163,530,977,1935,2045,2186,2320,2519,2958,3204]],[1710120947,[162,589,1045,1440,1644,1682,1734,1795,1888,1933]],[1710120948,[283,416,549,858,890,923,955,988,1014,1021]],[1710120949,[127,139,152,165,167,170,172,175,177,178]],[1710120950,null],[1710120951,null],[1710120952,null],[1710120953,null],[1710120954,null],[1710120955,null],[1710120956,null],[1710120957,null],[1710120958,null],[1710120959,null],[1710120960,null],[1710120961,null],[1710120962,null],[1710120963,null],[1710120964,null],[1710120965,null],[1710120966,null],[1710120967,null],[1710120968,null],[1710120969,null],[1710120970,null],[1710120971,null],[1710120972,null],[1710120973,null],[1710120974,null],[1710120975,null],[1710120976,null],[1710120977,null],[1710120978,null],[1710120979,null],[1710120980,null],[1710120981,null],[1710120982,null],[1710120983,null],[1710120984,null],[1710120985,null],[1710120986,null],[1710120987,null],[1710120988,null],[1710120989,null],[1710120990,null],[1710120991,null],[1710120992,null],[1710120993,null],[1710120994,null],[1710120995,null],[1710120996,null],[1710120997,null],[1710120998,null],[1710120999,null],[1710121000,null],[1710121001,null],[1710121002,null],[1710121003,null],[1710121004,null],[1710121005,null],[1710121006,null],[1710121007,null],[1710121008,null],[1710121009,null],[1710121010,null],[1710121011,null],[1710121012,null],[1710121013,null],[1710121014,null],[1710121015,null],[1710121016,null],[1710121017,null],[1710121018,null],[1710121019,null],[1710121020,null],[1710121021,null],[1710121022,null],[1710121023,null],[1710121024,null],[1710121025,null],[1710121026,null],[1710121027,null],[1710121028,null],[1710121029,null],[1710121030,null],[1710121031,null],[1710121032,null],[1710121033,null],[1710121034,null],[1710121035,null],[1710121036,null],[1710121037,null],[1710121038,null],[1710121039,null],[1710121040,null],[1710121041,null],[1710121042,null],[1710121043,null],[1710121044,null],[1710121045,null],[1710121046,null],[1710121047,null],[1710121048,null],[1710121049,null],[1710121050,null],[1710121051,null],[1710121052,null],[1710121053,null],[1710121054,null],[1710121055,null],[1710121056,null],[1710121057,null],[1710121058,null],[1710121059,null],[1710121060,null],[1710121061,null],[1710121062,null],[1710121063,null],[1710121064,null],[1710121065,null],[1710121066,null],[1710121067,null],[1710121068,null],[1710121069,null],[1710121070,null],[1710121071,null],[1710121072,null],[1710121073,null],[1710121074,null],[1710121075,null],[1710121076,null],[1710121077,null],[1710121078,null],[1710121079,null],[1710121080,null],[1710121081,null],[1710121082,null],[1710121083,null],[1710121084,null],[1710121085,null],[1710121086,null],[1710121087,null],[1710121088,null],[1710121089,null],[1710121090,null],[1710121091,null],[1710121092,null],[1710121093,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([[1710120789,[25,25,0]],[1710120790,[1,1,0]],[1710120791,[25,25,0]],[1710120792,[1,1,0]],[1710120793,[71,61,10]],[1710120794,[3,3,0]],[1710120795,[6,6,0]],[1710120796,[9,9,0]],[1710120797,[11,11,0]],[1710120798,[13,13,0]],[1710120799,[18,18,0]],[1710120800,[19,19,0]],[1710120801,[24,24,0]],[1710120802,[26,26,0]],[1710120803,[27,27,0]],[1710120804,[32,32,0]],[1710120805,[34,34,0]],[1710120806,[37,37,0]],[1710120807,[39,39,0]],[1710120808,[43,43,0]],[1710120809,[44,44,0]],[1710120810,[49,49,0]],[1710120811,[50,50,0]],[1710120812,[54,54,0]],[1710120813,[56,56,0]],[1710120814,[60,60,0]],[1710120815,[61,61,0]],[1710120816,[65,65,0]],[1710120817,[67,67,0]],[1710120818,[70,70,0]],[1710120819,[74,74,0]],[1710120820,[76,76,0]],[1710120821,[80,80,0]],[1710120822,[81,81,0]],[1710120823,[84,84,0]],[1710120824,[88,88,0]],[1710120825,[90,90,0]],[1710120826,[93,93,0]],[1710120827,[96,96,0]],[1710120828,[98,98,0]],[1710120829,[102,102,0]],[1710120830,[104,104,0]],[1710120831,[107,107,0]],[1710120832,[109,109,0]],[1710120833,[114,114,0]],[1710120834,[115,115,0]],[1710120835,[118,118,0]],[1710120836,[121,121,0]],[1710120837,[124,124,0]],[1710120838,[126,126,0]],[1710120839,[129,129,0]],[1710120840,[133,133,0]],[1710120841,[134,134,0]],[1710120842,[139,139,0]],[1710120843,[140,140,0]],[1710120844,[144,144,0]],[1710120845,[146,146,0]],[1710120846,[149,149,0]],[1710120847,[151,151,0]],[1710120848,[155,155,0]],[1710120849,[157,157,0]],[1710120850,[160,160,0]],[1710120851,[164,164,0]],[1710120852,[165,165,0]],[1710120853,[171,171,0]],[1710120854,[171,171,0]],[1710120855,[174,174,0]],[1710120856,[177,177,0]],[1710120857,[180,180,0]],[1710120858,[183,183,0]],[1710120859,[186,186,0]],[1710120860,[188,188,0]],[1710120861,[192,192,0]],[1710120862,[194,194,0]],[1710120863,[197,197,0]],[1710120864,[198,198,0]],[1710120865,[204,204,0]],[1710120866,[204,204,0]],[1710120867,[208,208,0]],[1710120868,[211,211,0]],[1710120869,[213,213,0]],[1710120870,[218,218,0]],[1710120871,[219,219,0]],[1710120872,[222,222,0]],[1710120873,[225,225,0]],[1710120874,[228,228,0]],[1710120875,[229,229,0]],[1710120876,[234,234,0]],[1710120877,[236,236,0]],[1710120878,[239,239,0]],[1710120879,[242,242,0]],[1710120880,[244,244,0]],[1710120881,[248,248,0]],[1710120882,[250,250,0]],[1710120883,[253,253,0]],[1710120884,[255,255,0]],[1710120885,[261,261,0]],[1710120886,[262,262,0]],[1710120887,[263,263,0]],[1710120888,[267,267,0]],[1710120889,[269,269,0]],[1710120890,[273,273,0]],[1710120891,[275,275,0]],[1710120892,[279,279,0]],[1710120893,[281,281,0]],[1710120894,[284,284,0]],[1710120895,[286,286,0]],[1710120896,[290,290,0]],[1710120897,[292,292,0]],[1710120898,[295,295,0]],[1710120899,[298,298,0]],[1710120900,[301,301,0]],[1710120901,[304,304,0]],[1710120902,[306,306,0]],[1710120903,[309,309,0]],[1710120904,[312,312,0]],[1710120905,[315,315,0]],[1710120906,[317,317,0]],[1710120907,[320,320,0]],[1710120908,[323,323,0]],[1710120909,[326,326,0]],[1710120910,[330,330,0]],[1710120911,[332,332,0]],[1710120912,[334,334,0]],[1710120913,[337,337,0]],[1710120914,[340,340,0]],[1710120915,[340,340,0]],[1710120916,[340,340,0]],[1710120917,[340,340,0]],[1710120918,[340,340,0]],[1710120919,[340,332,8]],[1710120920,[340,325,15]],[1710120921,[340,295,45]],[1710120922,[340,295,45]],[1710120923,[340,280,60]],[1710120924,[340,282,58]],[1710120925,[340,263,77]],[1710120926,[340,227,113]],[1710120927,[340,214,126]],[1710120928,[340,204,136]],[1710120929,[340,178,162]],[1710120930,[340,171,169]],[1710120931,[340,147,193]],[1710120932,[340,110,230]],[1710120933,[340,76,264]],[1710120934,[340,61,279]],[1710120935,[340,134,206]],[1710120936,[340,84,256]],[1710120937,[340,67,273]],[1710120938,[340,45,295]],[1710120939,[340,20,320]],[1710120940,[340,62,278]],[1710120941,[340,59,281]],[1710120942,[340,39,301]],[1710120943,[340,23,317]],[1710120944,[340,32,308]],[1710120945,[340,54,286]],[1710120946,[340,52,288]],[1710120947,[340,37,303]],[1710120948,[340,5,335]],[1710120949,[340,2,338]],[1710120950,[340,0,340]],[1710120951,[340,0,340]],[1710120952,[340,0,340]],[1710120953,[340,0,340]],[1710120954,[340,0,340]],[1710120955,[340,0,340]],[1710120956,[340,0,340]],[1710120957,[340,0,340]],[1710120958,[340,0,340]],[1710120959,[340,0,340]],[1710120960,[340,0,340]],[1710120961,[340,0,340]],[1710120962,[340,0,340]],[1710120963,[340,0,340]],[1710120964,[340,0,340]],[1710120965,[340,0,340]],[1710120966,[340,0,340]],[1710120967,[340,0,340]],[1710120968,[340,0,340]],[1710120969,[340,0,340]],[1710120970,[340,0,340]],[1710120971,[340,0,340]],[1710120972,[340,0,340]],[1710120973,[340,0,340]],[1710120974,[340,0,340]],[1710120975,[340,0,340]],[1710120976,[340,0,340]],[1710120977,[340,0,340]],[1710120978,[340,0,340]],[1710120979,[340,0,340]],[1710120980,[340,0,340]],[1710120981,[340,0,340]],[1710120982,[340,0,340]],[1710120983,[340,0,340]],[1710120984,[340,0,340]],[1710120985,[340,0,340]],[1710120986,[340,0,340]],[1710120987,[340,0,340]],[1710120988,[340,0,340]],[1710120989,[340,0,340]],[1710120990,[340,0,340]],[1710120991,[340,0,340]],[1710120992,[340,0,340]],[1710120993,[340,0,340]],[1710120994,[340,0,340]],[1710120995,[340,0,340]],[1710120996,[340,0,340]],[1710120997,[340,0,340]],[1710120998,[340,0,340]],[1710120999,[340,0,340]],[1710121000,[340,0,340]],[1710121001,[340,0,340]],[1710121002,[340,0,340]],[1710121003,[340,0,340]],[1710121004,[340,0,340]],[1710121005,[340,0,340]],[1710121006,[340,0,340]],[1710121007,[340,0,340]],[1710121008,[340,0,340]],[1710121009,[340,0,340]],[1710121010,[340,0,340]],[1710121011,[340,0,340]],[1710121012,[340,0,340]],[1710121013,[340,0,340]],[1710121014,[340,0,340]],[1710121015,[340,0,340]],[1710121016,[340,0,340]],[1710121017,[340,0,340]],[1710121018,[340,0,340]],[1710121019,[340,0,340]],[1710121020,[340,0,340]],[1710121021,[340,0,340]],[1710121022,[340,0,340]],[1710121023,[340,0,340]],[1710121024,[340,0,340]],[1710121025,[340,0,340]],[1710121026,[340,0,340]],[1710121027,[340,0,340]],[1710121028,[340,0,340]],[1710121029,[340,0,340]],[1710121030,[340,0,340]],[1710121031,[340,0,340]],[1710121032,[340,0,340]],[1710121033,[340,0,340]],[1710121034,[163,0,163]],[1710121035,[0,0,0]],[1710121036,[0,0,0]],[1710121037,[0,0,0]],[1710121038,[0,0,0]],[1710121039,[0,0,0]],[1710121040,[0,0,0]],[1710121041,[0,0,0]],[1710121042,[0,0,0]],[1710121043,[0,0,0]],[1710121044,[0,0,0]],[1710121045,[0,0,0]],[1710121046,[0,0,0]],[1710121047,[0,0,0]],[1710121048,[0,0,0]],[1710121049,[0,0,0]],[1710121050,[0,0,0]],[1710121051,[0,0,0]],[1710121052,[0,0,0]],[1710121053,[0,0,0]],[1710121054,[0,0,0]],[1710121055,[0,0,0]],[1710121056,[0,0,0]],[1710121057,[0,0,0]],[1710121058,[0,0,0]],[1710121059,[0,0,0]],[1710121060,[0,0,0]],[1710121061,[0,0,0]],[1710121062,[0,0,0]],[1710121063,[0,0,0]],[1710121064,[0,0,0]],[1710121065,[0,0,0]],[1710121066,[0,0,0]],[1710121067,[0,0,0]],[1710121068,[0,0,0]],[1710121069,[0,0,0]],[1710121070,[0,0,0]],[1710121071,[0,0,0]],[1710121072,[0,0,0]],[1710121073,[0,0,0]],[1710121074,[0,0,0]],[1710121075,[0,0,0]],[1710121076,[0,0,0]],[1710121077,[0,0,0]],[1710121078,[0,0,0]],[1710121079,[0,0,0]],[1710121080,[0,0,0]],[1710121081,[0,0,0]],[1710121082,[0,0,0]],[1710121083,[0,0,0]],[1710121084,[0,0,0]],[1710121085,[0,0,0]],[1710121086,[0,0,0]],[1710121087,[0,0,0]],[1710121088,[0,0,0]],[1710121089,[0,0,0]],[1710121090,[0,0,0]],[1710121091,[0,0,0]],[1710121092,[0,0,0]],[1710121093,[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: {