-
Notifications
You must be signed in to change notification settings - Fork 925
/
index.html
1225 lines (1155 loc) · 104 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="shortcut icon" type="image/x-icon" href="style/favicon.ico"/>
<link href="style/style.css" rel="stylesheet" type="text/css" />
<link href="style/bootstrap.min.css" rel="stylesheet" type="text/css" />
<script src="js/jquery-3.5.1.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/gatling.js"></script>
<script src="js/menu.js"></script>
<script src="js/ellipsis.js"></script>
<script src="js/all_sessions.js"></script>
<script src="js/stats.js"></script>
<script src="js/highstock.js"></script>
<script src="js/highcharts-more.js"></script>
<script src="js/theme.js"></script>
<script src="js/unpack.js"></script>
<title>Gatling Stats - Global Information</title>
</head>
<body>
<script>
const storedTheme = localStorage.getItem('theme') || (window.matchMedia("(prefers-color-scheme: dark)").matches ? "dark" : "light");
if (storedTheme) document.documentElement.setAttribute('data-theme', storedTheme)
function toggleTheme() {
const currentTheme = document.documentElement.getAttribute("data-theme");
const targetTheme = currentTheme === "light" ? "dark" : "light";
document.documentElement.setAttribute('data-theme', targetTheme)
localStorage.setItem('theme', targetTheme);
};
</script>
<div class="app-container">
<div class="frise"></div>
<div class="head">
<div class="gatling-open-source">
<a class="gatling-logo gatling-logo-light" href="https://gatling.io" target="blank_" title="Gatling Home Page"><img alt="Gatling" src="style/logo-light.svg"/></a>
<a class="gatling-logo gatling-logo-dark" href="https://gatling.io" target="blank_" title="Gatling Home Page"><img alt="Gatling" src="style/logo-dark.svg"/></a>
<a class="gatling-documentation" href="https://gatling.io/docs/" target="_blank">Documentation</a>
</div>
<div class="nav spacer"></div>
<a class="enterprise" href="https://gatling.io/enterprise/next-step/" target="_blank"><strong>Try</strong>
<img class="logo-enterprise-light" alt="Gatling Enterprise" src="style/logo-enterprise-light.svg"/>
<img class="logo-enterprise-dark" alt="Gatling Enterprise" src="style/logo-enterprise-dark.svg"/>
</a>
<button id="theme-toggle" class="theme-toggle" type="button" onclick="toggleTheme()" aria-label="Toggle user interface mode">
<span class="toggle-dark"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-moon"><path d="M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z"></path></svg></span>
<span class="toggle-light"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-sun"><circle cx="12" cy="12" r="5"></circle><line x1="12" y1="1" x2="12" y2="3"></line><line x1="12" y1="21" x2="12" y2="23"></line><line x1="4.22" y1="4.22" x2="5.64" y2="5.64"></line><line x1="18.36" y1="18.36" x2="19.78" y2="19.78"></line><line x1="1" y1="12" x2="3" y2="12"></line><line x1="21" y1="12" x2="23" y2="12"></line><line x1="4.22" y1="19.78" x2="5.64" y2="18.36"></line><line x1="18.36" y1="5.64" x2="19.78" y2="4.22"></line></svg></span>
</button>
</div>
<div class="container details">
<div class="nav">
<ul></ul>
</div>
<div class="cadre">
<div class="content">
<div class="content-header">
<div class="onglet">
RinhaBackendCrebitosSimulation
</div>
<div class="sous-menu" id="sousMenu">
<div class="sous-menu-spacer">
<div class="item ouvert"><a href="index.html">Global</a></div>
<div class="item "><a id="details_link" href="#">Details</a></div>
</div>
</div>
</div>
<div class="content-in">
<div class="container-article">
<div class="article">
<div class="schema-container">
<div id="ranges" class="schema ranges">
</div>
<div class="schema polar">
<div id="container_number_of_requests"></div>
</div>
<div class="simulation-card">
<div class="simulation-version-information">
<span class="simulation-information-title">Gatling Version</span>
<span class="simulation-information-item">
<span class="simulation-information-label">Version: </span>
<span>3.10.3</span>
</span>
<span class="simulation-information-item">
<span class="simulation-information-label">Released: </span>
<span>2023-12-20</span>
</span>
</div>
<div id="simulation-information" class="simulation-version-information">
<span class="simulation-information-title">Run Information</span>
<div class="simulation-information-container">
<span class="simulation-information-item">
<span class="simulation-information-label">Date: </span>
<span>2024-03-09 22:44:09 GMT</span>
</span>
<span class="simulation-information-item">
<span class="simulation-information-label">Duration: </span>
<span>4m 47s </span>
</span>
<span class="simulation-tooltip simulation-information-item description" title="Description" data-content="Rinha de Backend - 2024/Q1: Crébito - marcosprado-java-micronaut">
<span class="simulation-information-label">Description: </span>
<span>Rinha de Backend - 2024/Q1: Crébito - marcosprado-java-micronaut</span>
</span>
</div>
</div>
</div>
</div>
<div id="statistics_table_container">
<div id="stats" class="statistics extensible-geant collapsed">
<div class="title">
<div id="statistics_title" class="title_base"><span class="title_base_stats">Stats</span><span class="expand-table">Fixed height</span><span id="toggle-stats" class="toggle-table"></span><span class="collapse-table">Full size</span></div>
<div class="right">
<button class="statistics-button expand-all-button">Expand all groups</button>
<button class="statistics-button collapse-all-button">Collapse all groups</button>
<button id="statistics_full_screen" class="statistics-button" onclick="openStatisticsTableModal()"><img alt="Fullscreen" src="style/fullscreen.svg"></button>
</div>
</div>
<div class="scrollable">
<table id="container_statistics_head" class="statistics-in extensible-geant">
<thead>
<tr>
<th rowspan="2" id="col-1" class="header sortable sorted-up"><span>Requests</span></th>
<th colspan="5" class="header"><span class="executions">Executions</span></th>
<th colspan="8" class="header"><span class="response-time">Response Time (ms)</span></th>
</tr>
<tr>
<th id="col-2" class="header sortable"><span>Total</span></th>
<th id="col-3" class="header sortable"><span>OK</span></th>
<th id="col-4" class="header sortable"><span>KO</span></th>
<th id="col-5" class="header sortable"><span>% KO</span></th>
<th id="col-6" class="header sortable"><span><abbr title="Count of events per second">Cnt/s</abbr></span></th>
<th id="col-7" class="header sortable"><span>Min</span></th>
<th id="col-8" class="header sortable"><span>50th pct</span></th>
<th id="col-9" class="header sortable"><span>75th pct</span></th>
<th id="col-10" class="header sortable"><span>95th pct</span></th>
<th id="col-11" class="header sortable"><span>99th pct</span></th>
<th id="col-12" class="header sortable"><span>Max</span></th>
<th id="col-13" class="header sortable"><span>Mean</span></th>
<th id="col-14" class="header sortable"><span><abbr title="Standard Deviation">Std Dev</abbr></span></th>
</tr>
</thead>
<tbody></tbody>
</table>
<table id="container_statistics_body" class="statistics-in extensible-geant">
<tbody></tbody>
</table>
</div>
</div>
</div>
<dialog id="statistics_table_modal" class="statistics-table-modal">
<div class="statistics-table-modal-header"><button class="button-modal" onclick="closeStatisticsTableModal()"><img alt="Close" src="style/close.svg"></button></div>
<div class="statistics-table-modal-container">
<div id="statistics_table_modal_content" class="statistics-table-modal-content"></div>
</div>
</dialog>
<script>
function openStatisticsTableModal () {
const statsTable = document.getElementById("stats");
const statsTableModal = document.getElementById("statistics_table_modal");
const fullScreenButton = document.getElementById("statistics_full_screen");
fullScreenButton.disabled = true;
if (typeof statsTableModal.showModal === "function") {
const statsTableModalContent = document.getElementById("statistics_table_modal_content");
statsTableModalContent.innerHTML = "";
statsTableModalContent.appendChild(statsTable);
statsTableModal.showModal();
statsTableModal.addEventListener("close", function () {
const container = document.getElementById("statistics_table_container");
container.appendChild(statsTable);
fullScreenButton.disabled = false;
});
} else {
const incompatibleBrowserVersionMessage = document.createElement("div");
incompatibleBrowserVersionMessage.innerText = "Sorry, the <dialog> API is not supported by this browser.";
statsTable.insertBefore(incompatibleBrowserVersionMessage, statsTable.children[0]);
}
}
function closeStatisticsTableModal () {
const statsTableModal = document.getElementById("statistics_table_modal");
statsTableModal.close();
}
</script>
<div class="statistics extensible-geant collapsed">
<div class="title">
Errors
</div>
<table id="container_errors" class="statistics-in extensible-geant">
<thead>
<tr>
<th id="error-col-1" class="header sortable"><span>Error</span></th>
<th id="error-col-2" class="header sortable"><span>Count</span></th>
<th id="error-col-3" class="header sortable"><span>Percentage</span></th>
</tr>
</thead>
<tbody>
<tr>
<td class="error-col-1 total ko">j.i.IOException: Premature close<span class="value" style="display:none">0</span></td>
<td class="value error-col-2 total ko">27552</td>
<td class="value error-col-3 total ko">77.793 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">status.find.in(200,422), but actually found 502<span class="value" style="display:none">1</span></td>
<td class="value error-col-2 total ko">4573</td>
<td class="value error-col-3 total ko">12.912 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">status.find.in(200), but actually found 502<span class="value" style="display:none">2</span></td>
<td class="value error-col-2 total ko">2287</td>
<td class="value error-col-3 total ko">6.457 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">Request timeout to localhost/127.0.0.1:9999 after 60000 ms<span class="value" style="display:none">3</span></td>
<td class="value error-col-2 total ko">810</td>
<td class="value error-col-3 total ko">2.287 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">status.find.in([200, 209], 304), found 502<span class="value" style="display:none">4</span></td>
<td class="value error-col-2 total ko">185</td>
<td class="value error-col-3 total ko">0.522 %</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">5</span></td>
<td class="value error-col-2 total ko">5</td>
<td class="value error-col-3 total ko">0.014 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">status.find.in(422,400), but actually found 500<span class="value" style="display:none">6</span></td>
<td class="value error-col-2 total ko">5</td>
<td class="value error-col-3 total ko">0.014 %</td>
</tr>
</tbody>
</table>
</div>
<div class="schema geant">
<div id="active_users" class="geant"></div>
</div>
<div class="schema geant">
<div id="responsetimeDistributionContainer" class="geant"></div>
</div>
<div class="schema geant">
<div id="responsetimepercentilesovertimeokPercentilesContainer" class="geant"></div>
</div>
<div class="schema geant">
<div id="requests" class="geant"></div>
</div>
<div class="schema geant">
<div id="responses" class="geant"></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<script>
var pageStats = stats.stats;
$(document).ready(function() {
$('.simulation-tooltip').popover({trigger:'hover', placement:'left'});
setDetailsLinkUrl();
setGlobalMenu();
setActiveMenu();
fillStats(pageStats);
Highcharts.setOptions({
global: { useUTC: false }
});
var rangesChart = new Highcharts.Chart({
chart: {
renderTo: 'ranges',
marginRight: 100
},
credits: { enabled: false },
legend: { enabled: false },
title: { text: 'A title to let highcharts reserve the place for the title set later' },
xAxis: {
categories: [
pageStats.group1.htmlName,
pageStats.group2.htmlName,
pageStats.group3.htmlName,
pageStats.group4.htmlName
]
},
yAxis: {
title: { text: 'Number of Requests' },
reversedStacks: false
},
tooltip: {
formatter: function() {
var s;
if (this.point.name) { // the pie chart
s = ''+ this.point.name +': '+ this.y +'% requests';
} else {
s = ''+ this.y + ' requests';
}
return s;
}
},
plotOptions: {
series: {
stacking: 'normal',
shadow: true
}
},
series: [
{
type: 'column',
data: [{
color: '#68b65c',
y: pageStats.group1.count
},
{
color: '#FFDD00',
y: pageStats.group2.count
},
{
color: '#FFA900',
y: pageStats.group3.count
},
{
color: '#f15b4f',
y: pageStats.group4.count
}]
},
{
type: 'pie',
name: 'Percentages',
data: [
{
name: pageStats.group1.name,
y: pageStats.group1.percentage,
color: '#68b65c'
},
{
name: pageStats.group2.name,
y: pageStats.group2.percentage,
color: '#FFDD00'
},
{
name: pageStats.group3.name,
y: pageStats.group3.percentage,
color: '#FFA900'
},
{
name: pageStats.group4.name,
y: pageStats.group4.percentage,
color: '#f15b4f'
}
],
center: [345, 0],
size: 90,
showInLegend: false,
dataLabels: { enabled: false }
}
]
});
rangesChart.setTitle({
text: '<span class="chart_title">Response Time Ranges</span>',
useHTML: true
});
function numberOfRequestsDataForGroup(group) {
var data = {names: [], oks: [], kos: []};
$.each(group.contents, function(contentName, content) {
if (content.type == 'GROUP') {
var result = numberOfRequestsDataForGroup(content);
data.names = data.names.concat(result.names);
data.oks = data.oks.concat(result.oks);
data.kos = data.kos.concat(result.kos);
}
else if (content.type == 'REQUEST') {
data.names.push(content.path);
data.oks.push(parseInt(content.stats.numberOfRequests.ok));
data.kos.push(parseInt(content.stats.numberOfRequests.ko));
}
});
return data;
}
var numberOfRequestsData = numberOfRequestsDataForGroup(stats);
var tickInterval = Math.ceil(numberOfRequestsData.names.length / 1000);
new Highcharts.Chart({
chart: {
renderTo:'container_number_of_requests',
polar:true,
type:'column',
height:330
},
credits:{
enabled:false
},
title:{
text:'<span class="chart_title">Number of requests</span>',
useHTML: true,
widthAdjust:-20
},
xAxis:{
tickmarkPlacement:'on',
tickInterval: tickInterval,
categories:numberOfRequestsData.names,
labels:{ enabled:false }
},
yAxis:{
min:0,
reversedStacks: false
},
plotOptions:{
series:{
stacking:'normal',
groupPadding:0,
pointPlacement:'on',
shadow: true
}
},
legend: {
borderWidth: 0,
itemStyle: { fontWeight: "normal" },
symbolRadius: 0
},
series:[
{
name:'OK',
data:numberOfRequestsData.oks,
color:"#68b65c"
},
{
name:'KO',
data:numberOfRequestsData.kos,
color:"#f15b4f"
}
]
});
$('#container_exceptions').sortable('#container_exceptions');
function generateHtmlRow(request, level, index, parent, group) {
if (request.name == 'All Requests')
var url = 'index.html';
else
var url = request.pathFormatted + '.html';
if (group)
var expandButtonStyle = '';
else
var expandButtonStyle = ' hidden';
if (request.stats.numberOfRequests.total != 0)
var koPercent = (request.stats.numberOfRequests.ko * 100 / request.stats.numberOfRequests.total).toFixed(0) + '%';
else
var koPercent = '-'
return '<tr id="' + request.pathFormatted + '" data-parent=' + parent + '> \
<td class="total col-1"> \
<div class="expandable-container"> \
<span id="' + request.pathFormatted + '" style="margin-left: ' + (level * 10) + 'px;" class="expand-button' + expandButtonStyle + '"> </span> \
<a href="' + url +'" class="withTooltip">' + ellipsedLabel({ name: request.name, parentClass: "table-cell-tooltip" }) + '</a><span class="value" style="display:none;">' + index + '</span> \
</div> \
</td> \
<td class="value total col-2">' + request.stats.numberOfRequests.total + '</td> \
<td class="value ok col-3">' + request.stats.numberOfRequests.ok + '</td> \
<td class="value ko col-4">' + request.stats.numberOfRequests.ko + '</td> \
<td class="value ko col-5">' + koPercent + '</td> \
<td class="value total col-6">' + request.stats.meanNumberOfRequestsPerSecond.total + '</td> \
<td class="value total col-7">' + request.stats.minResponseTime.total + '</td> \
<td class="value total col-8">' + request.stats.percentiles1.total + '</td> \
<td class="value total col-9">' + request.stats.percentiles2.total + '</td> \
<td class="value total col-10">' + request.stats.percentiles3.total + '</td> \
<td class="value total col-11">' + request.stats.percentiles4.total + '</td> \
<td class="value total col-12">' + request.stats.maxResponseTime.total + '</td> \
<td class="value total col-13">' + request.stats.meanResponseTime.total + '</td> \
<td class="value total col-14">' + request.stats.standardDeviation.total + '</td> \
</tr>';
}
function generateHtmlRowsForGroup(group, level, index, parent) {
var buffer = '';
if (!parent)
parent = 'ROOT';
else {
buffer += generateHtmlRow(group, level - 1, index, parent, true);
index++;
parent = group.pathFormatted;
}
$.each(group.contents, function(contentName, content) {
if (content.type == 'GROUP') {
var result = generateHtmlRowsForGroup(content, level + 1, index, parent);
buffer += result.html;
index = result.index;
}
else if (content.type == 'REQUEST') {
buffer += generateHtmlRow(content, level, index, parent);
index++;
}
});
return { html: buffer, index: index };
}
$('#container_statistics_head tbody').append(generateHtmlRow(stats, 0, 0));
var lines = generateHtmlRowsForGroup(stats, 0, 0);
$('#container_statistics_body tbody').append(lines.html);
$('#container_statistics_head').sortable('#container_statistics_body');
$('.statistics').expandable();
if (lines.index < 30) {
$('#statistics_title span').attr('style', 'display: none;');
} else {
$('#statistics_title').addClass('title_collapsed');
$('#statistics_title').click(function() {
$('#toggle-stats').toggleClass("off");
$(this).toggleClass('title_collapsed').toggleClass('title_expanded');
$('#container_statistics_body').parent().toggleClass('scrollable').toggleClass('');
});
}
$('.table-cell-tooltip').popover({trigger:'hover'});
$('#container_errors').sortable('#container_errors');
allUsersData.yAxis = 0;
var allUsersChart = new Highcharts.StockChart({
chart: {
renderTo: 'active_users',
zoomType: 'x'
},
credits: { enabled: false },
legend: {
enabled: true,
floating: true,
align: 'right',
verticalAlign: 'top',
layout: 'vertical',
borderWidth: 0,
itemStyle: { fontWeight: "normal" },
symbolRadius: 0
},
title: { text: 'A title to let highcharts reserve the place for the title set later' },
navigator: {
maskInside: false
},
rangeSelector: {
buttonSpacing: 0,
buttonTheme: {
fill: '#CFC9C6',
padding: 1,
stroke: '#000000',
'stroke-width': 0.25,
style: {
color: '#000000',
fontWeight: 'bold',
},
states: {
stroke: '#000000',
'stroke-width': 0.25,
hover: {
fill: '#92918C',
style: { color: 'black' }
},
select: {
fill: '#FFA900',
style: { color: 'white' }
}
}
},
buttons : [
{
type : 'minute',
count : 1,
text : '1m'
}, {
type : 'minute',
count : 10,
text : '10m'
}, {
type : 'hour',
count : 1,
text : '1h'
}, {
type : 'all',
count : 1,
text : 'All'
}
],
selected : 3,
inputEnabled : false
},
xAxis: {
type: 'datetime',
ordinal: false,
maxZoom: 10000 // three days
},
yAxis: {
title: { text: 'Number of Active Users' },
opposite: false,
min: 0
},
series: [
{
color: '#5E7BE2',
name: 'créditos',
data: [
[1710024249000,0],[1710024250000,0],[1710024251000,0],[1710024252000,0],[1710024253000,1],[1710024254000,2],[1710024255000,2],[1710024256000,4],[1710024257000,4],[1710024258000,5],[1710024259000,6],[1710024260000,7],[1710024261000,8],[1710024262000,8],[1710024263000,10],[1710024264000,10],[1710024265000,12],[1710024266000,12],[1710024267000,14],[1710024268000,14],[1710024269000,15],[1710024270000,16],[1710024271000,17],[1710024272000,17],[1710024273000,19],[1710024274000,20],[1710024275000,20],[1710024276000,22],[1710024277000,22],[1710024278000,23],[1710024279000,25],[1710024280000,25],[1710024281000,26],[1710024282000,26],[1710024283000,28],[1710024284000,29],[1710024285000,30],[1710024286000,30],[1710024287000,32],[1710024288000,32],[1710024289000,33],[1710024290000,34],[1710024291000,35],[1710024292000,36],[1710024293000,37],[1710024294000,38],[1710024295000,39],[1710024296000,39],[1710024297000,41],[1710024298000,41],[1710024299000,43],[1710024300000,43],[1710024301000,44],[1710024302000,45],[1710024303000,46],[1710024304000,47],[1710024305000,48],[1710024306000,48],[1710024307000,50],[1710024308000,50],[1710024309000,52],[1710024310000,52],[1710024311000,53],[1710024312000,54],[1710024313000,56],[1710024314000,55],[1710024315000,57],[1710024316000,58],[1710024317000,59],[1710024318000,59],[1710024319000,61],[1710024320000,61],[1710024321000,63],[1710024322000,63],[1710024323000,64],[1710024324000,65],[1710024325000,67],[1710024326000,68],[1710024327000,69],[1710024328000,69],[1710024329000,71],[1710024330000,71],[1710024331000,73],[1710024332000,73],[1710024333000,74],[1710024334000,75],[1710024335000,76],[1710024336000,77],[1710024337000,78],[1710024338000,78],[1710024339000,80],[1710024340000,80],[1710024341000,81],[1710024342000,82],[1710024343000,82],[1710024344000,84],[1710024345000,85],[1710024346000,85],[1710024347000,87],[1710024348000,109],[1710024349000,89],[1710024350000,89],[1710024351000,89],[1710024352000,92],[1710024353000,92],[1710024354000,93],[1710024355000,95],[1710024356000,94],[1710024357000,95],[1710024358000,96],[1710024359000,98],[1710024360000,97],[1710024361000,99],[1710024362000,99],[1710024363000,101],[1710024364000,101],[1710024365000,104],[1710024366000,104],[1710024367000,105],[1710024368000,106],[1710024369000,107],[1710024370000,107],[1710024371000,107],[1710024372000,109],[1710024373000,111],[1710024374000,115],[1710024375000,111],[1710024376000,143],[1710024377000,162],[1710024378000,176],[1710024379000,201],[1710024380000,211],[1710024381000,227],[1710024382000,240],[1710024383000,266],[1710024384000,326],[1710024385000,338],[1710024386000,336],[1710024387000,354],[1710024388000,383],[1710024389000,422],[1710024390000,448],[1710024391000,453],[1710024392000,472],[1710024393000,522],[1710024394000,572],[1710024395000,194],[1710024396000,304],[1710024397000,414],[1710024398000,524],[1710024399000,148],[1710024400000,258],[1710024401000,368],[1710024402000,478],[1710024403000,588],[1710024404000,210],[1710024405000,320],[1710024406000,430],[1710024407000,540],[1710024408000,161],[1710024409000,271],[1710024410000,381],[1710024411000,491],[1710024412000,601],[1710024413000,218],[1710024414000,328],[1710024415000,438],[1710024416000,548],[1710024417000,160],[1710024418000,270],[1710024419000,380],[1710024420000,490],[1710024421000,600],[1710024422000,208],[1710024423000,318],[1710024424000,428],[1710024425000,538],[1710024426000,142],[1710024427000,252],[1710024428000,362],[1710024429000,472],[1710024430000,582],[1710024431000,180],[1710024432000,290],[1710024433000,400],[1710024434000,510],[1710024435000,620],[1710024436000,215],[1710024437000,325],[1710024438000,435],[1710024439000,545],[1710024440000,139],[1710024441000,249],[1710024442000,359],[1710024443000,469],[1710024444000,382],[1710024445000,460],[1710024446000,570],[1710024447000,175],[1710024448000,285],[1710024449000,395],[1710024450000,505],[1710024451000,205],[1710024452000,315],[1710024453000,425],[1710024454000,123],[1710024455000,233],[1710024456000,343],[1710024457000,453],[1710024458000,149],[1710024459000,259],[1710024460000,369],[1710024461000,479],[1710024462000,172],[1710024463000,282],[1710024464000,392],[1710024465000,502],[1710024466000,193],[1710024467000,303],[1710024468000,413],[1710024469000,523],[1710024470000,215],[1710024471000,325],[1710024472000,435],[1710024473000,124],[1710024474000,234],[1710024475000,344],[1710024476000,454],[1710024477000,484],[1710024478000,471],[1710024479000,471],[1710024480000,456],[1710024481000,456],[1710024482000,456],[1710024483000,456],[1710024484000,424],[1710024485000,424],[1710024486000,424],[1710024487000,408],[1710024488000,408],[1710024489000,408],[1710024490000,408],[1710024491000,408],[1710024492000,397],[1710024493000,395],[1710024494000,287],[1710024495000,274],[1710024496000,274],[1710024497000,274],[1710024499000,274],[1710024500000,274],[1710024501000,274],[1710024502000,274],[1710024503000,274],[1710024504000,274],[1710024505000,274],[1710024506000,274],[1710024507000,274],[1710024508000,274],[1710024509000,274],[1710024510000,274],[1710024511000,274],[1710024512000,264],[1710024513000,264],[1710024514000,264],[1710024515000,264],[1710024516000,264],[1710024517000,264],[1710024518000,264],[1710024519000,264],[1710024520000,264],[1710024521000,264],[1710024522000,264],[1710024523000,264],[1710024524000,264],[1710024525000,264],[1710024526000,264],[1710024527000,264],[1710024528000,264],[1710024529000,264],[1710024530000,264],[1710024531000,264],[1710024532000,264],[1710024533000,264],[1710024534000,250],[1710024535000,177],[1710024536000,34]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#68b65c',
name: 'débitos',
data: [
[1710024249000,0],[1710024250000,0],[1710024251000,0],[1710024252000,0],[1710024253000,1],[1710024254000,2],[1710024255000,4],[1710024256000,6],[1710024257000,7],[1710024258000,9],[1710024259000,11],[1710024260000,13],[1710024261000,15],[1710024262000,16],[1710024263000,19],[1710024264000,20],[1710024265000,22],[1710024266000,24],[1710024267000,25],[1710024268000,28],[1710024269000,29],[1710024270000,31],[1710024271000,33],[1710024272000,35],[1710024273000,37],[1710024274000,38],[1710024275000,40],[1710024276000,42],[1710024277000,44],[1710024278000,46],[1710024279000,47],[1710024280000,50],[1710024281000,51],[1710024282000,53],[1710024283000,55],[1710024284000,56],[1710024285000,59],[1710024286000,60],[1710024287000,62],[1710024288000,64],[1710024289000,66],[1710024290000,69],[1710024291000,70],[1710024292000,72],[1710024293000,75],[1710024294000,74],[1710024295000,77],[1710024296000,79],[1710024297000,80],[1710024298000,82],[1710024299000,84],[1710024300000,86],[1710024301000,88],[1710024302000,89],[1710024303000,92],[1710024304000,93],[1710024305000,95],[1710024306000,97],[1710024307000,98],[1710024308000,101],[1710024309000,102],[1710024310000,104],[1710024311000,106],[1710024312000,108],[1710024313000,110],[1710024314000,111],[1710024315000,113],[1710024316000,115],[1710024317000,117],[1710024318000,119],[1710024319000,120],[1710024320000,123],[1710024321000,124],[1710024322000,126],[1710024323000,128],[1710024324000,129],[1710024325000,132],[1710024326000,134],[1710024327000,136],[1710024328000,138],[1710024329000,140],[1710024330000,142],[1710024331000,143],[1710024332000,145],[1710024333000,148],[1710024334000,148],[1710024335000,151],[1710024336000,153],[1710024337000,154],[1710024338000,156],[1710024339000,157],[1710024340000,160],[1710024341000,161],[1710024342000,163],[1710024343000,166],[1710024344000,167],[1710024345000,169],[1710024346000,171],[1710024347000,171],[1710024348000,214],[1710024349000,175],[1710024350000,178],[1710024351000,180],[1710024352000,181],[1710024353000,183],[1710024354000,184],[1710024355000,186],[1710024356000,189],[1710024357000,191],[1710024358000,192],[1710024359000,193],[1710024360000,196],[1710024361000,197],[1710024362000,201],[1710024363000,202],[1710024364000,204],[1710024365000,205],[1710024366000,207],[1710024367000,209],[1710024368000,211],[1710024369000,213],[1710024370000,216],[1710024371000,216],[1710024372000,218],[1710024373000,221],[1710024374000,235],[1710024375000,221],[1710024376000,278],[1710024377000,321],[1710024378000,359],[1710024379000,386],[1710024380000,418],[1710024381000,455],[1710024382000,491],[1710024383000,534],[1710024384000,633],[1710024385000,650],[1710024386000,667],[1710024387000,724],[1710024388000,765],[1710024389000,852],[1710024390000,897],[1710024391000,904],[1710024392000,967],[1710024393000,1069],[1710024394000,1166],[1710024395000,389],[1710024396000,609],[1710024397000,829],[1710024398000,1049],[1710024399000,297],[1710024400000,517],[1710024401000,737],[1710024402000,957],[1710024403000,1177],[1710024404000,421],[1710024405000,641],[1710024406000,861],[1710024407000,1081],[1710024408000,322],[1710024409000,542],[1710024410000,762],[1710024411000,982],[1710024412000,1202],[1710024413000,435],[1710024414000,655],[1710024415000,875],[1710024416000,1095],[1710024417000,320],[1710024418000,540],[1710024419000,760],[1710024420000,980],[1710024421000,1200],[1710024422000,417],[1710024423000,637],[1710024424000,857],[1710024425000,1077],[1710024426000,285],[1710024427000,505],[1710024428000,725],[1710024429000,945],[1710024430000,1165],[1710024431000,360],[1710024432000,580],[1710024433000,800],[1710024434000,1020],[1710024435000,1240],[1710024436000,430],[1710024437000,650],[1710024438000,870],[1710024439000,1090],[1710024440000,278],[1710024441000,498],[1710024442000,718],[1710024443000,937],[1710024444000,761],[1710024445000,929],[1710024446000,1149],[1710024447000,349],[1710024448000,569],[1710024449000,789],[1710024450000,1009],[1710024451000,410],[1710024452000,630],[1710024453000,850],[1710024454000,246],[1710024455000,466],[1710024456000,686],[1710024457000,906],[1710024458000,298],[1710024459000,518],[1710024460000,738],[1710024461000,958],[1710024462000,345],[1710024463000,565],[1710024464000,785],[1710024465000,1005],[1710024466000,387],[1710024467000,607],[1710024468000,827],[1710024469000,1047],[1710024470000,430],[1710024471000,650],[1710024472000,870],[1710024473000,248],[1710024474000,468],[1710024475000,688],[1710024476000,908],[1710024477000,967],[1710024478000,941],[1710024479000,941],[1710024480000,911],[1710024481000,911],[1710024482000,911],[1710024483000,911],[1710024484000,839],[1710024485000,839],[1710024486000,839],[1710024487000,810],[1710024488000,810],[1710024489000,810],[1710024490000,810],[1710024491000,810],[1710024492000,789],[1710024493000,785],[1710024494000,569],[1710024495000,539],[1710024496000,539],[1710024497000,539],[1710024499000,539],[1710024500000,539],[1710024501000,539],[1710024502000,539],[1710024503000,539],[1710024504000,539],[1710024505000,539],[1710024506000,539],[1710024507000,539],[1710024508000,539],[1710024509000,539],[1710024510000,539],[1710024511000,539],[1710024512000,520],[1710024513000,520],[1710024514000,520],[1710024515000,520],[1710024516000,520],[1710024517000,520],[1710024518000,520],[1710024519000,520],[1710024520000,520],[1710024521000,520],[1710024522000,520],[1710024523000,520],[1710024524000,520],[1710024525000,520],[1710024526000,520],[1710024527000,520],[1710024528000,520],[1710024529000,520],[1710024530000,520],[1710024531000,520],[1710024532000,520],[1710024533000,520],[1710024534000,492],[1710024535000,351],[1710024536000,65]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#f15b4f',
name: 'extratos',
data: [
[1710024249000,0],[1710024250000,0],[1710024251000,0],[1710024252000,0],[1710024253000,1],[1710024254000,2],[1710024255000,1],[1710024256000,1],[1710024257000,1],[1710024258000,1],[1710024259000,2],[1710024260000,1],[1710024261000,2],[1710024262000,2],[1710024263000,1],[1710024264000,2],[1710024265000,2],[1710024266000,2],[1710024267000,2],[1710024268000,2],[1710024269000,2],[1710024270000,2],[1710024271000,3],[1710024272000,2],[1710024273000,3],[1710024274000,2],[1710024275000,3],[1710024276000,2],[1710024277000,3],[1710024278000,3],[1710024279000,3],[1710024280000,3],[1710024281000,3],[1710024282000,3],[1710024283000,3],[1710024284000,4],[1710024285000,3],[1710024286000,3],[1710024287000,4],[1710024288000,3],[1710024289000,4],[1710024290000,4],[1710024291000,4],[1710024292000,4],[1710024293000,4],[1710024294000,4],[1710024295000,4],[1710024296000,4],[1710024297000,4],[1710024298000,4],[1710024299000,5],[1710024300000,4],[1710024301000,5],[1710024302000,5],[1710024303000,4],[1710024304000,5],[1710024305000,5],[1710024306000,5],[1710024307000,5],[1710024308000,5],[1710024309000,5],[1710024310000,5],[1710024311000,6],[1710024312000,5],[1710024313000,6],[1710024314000,5],[1710024315000,7],[1710024316000,6],[1710024317000,6],[1710024318000,6],[1710024319000,6],[1710024320000,6],[1710024321000,7],[1710024322000,7],[1710024323000,7],[1710024324000,7],[1710024325000,6],[1710024326000,6],[1710024327000,8],[1710024328000,6],[1710024329000,8],[1710024330000,8],[1710024331000,7],[1710024332000,8],[1710024333000,8],[1710024334000,8],[1710024335000,8],[1710024336000,8],[1710024337000,8],[1710024338000,8],[1710024339000,9],[1710024340000,8],[1710024341000,9],[1710024342000,9],[1710024343000,8],[1710024344000,9],[1710024345000,9],[1710024346000,9],[1710024347000,9],[1710024348000,10],[1710024349000,9],[1710024350000,9],[1710024351000,10],[1710024352000,9],[1710024353000,10],[1710024354000,9],[1710024355000,10],[1710024356000,9],[1710024357000,10],[1710024358000,10],[1710024359000,10],[1710024360000,10],[1710024361000,10],[1710024362000,10],[1710024363000,10],[1710024364000,11],[1710024365000,10],[1710024366000,10],[1710024367000,11],[1710024368000,10],[1710024369000,11],[1710024370000,11],[1710024371000,11],[1710024372000,11],[1710024373000,11],[1710024374000,12],[1710024375000,11],[1710024376000,13],[1710024377000,15],[1710024378000,16],[1710024379000,18],[1710024380000,21],[1710024381000,23],[1710024382000,25],[1710024383000,26],[1710024384000,27],[1710024385000,29],[1710024386000,33],[1710024387000,36],[1710024388000,38],[1710024389000,39],[1710024390000,41],[1710024391000,46],[1710024392000,51],[1710024393000,53],[1710024394000,55],[1710024395000,18],[1710024396000,28],[1710024397000,38],[1710024398000,48],[1710024399000,14],[1710024400000,24],[1710024401000,34],[1710024402000,44],[1710024403000,54],[1710024404000,19],[1710024405000,29],[1710024406000,39],[1710024407000,49],[1710024408000,15],[1710024409000,25],[1710024410000,35],[1710024411000,45],[1710024412000,55],[1710024413000,20],[1710024414000,30],[1710024415000,40],[1710024416000,50],[1710024417000,15],[1710024418000,25],[1710024419000,35],[1710024420000,45],[1710024421000,55],[1710024422000,19],[1710024423000,29],[1710024424000,39],[1710024425000,49],[1710024426000,13],[1710024427000,23],[1710024428000,33],[1710024429000,43],[1710024430000,53],[1710024431000,17],[1710024432000,27],[1710024433000,37],[1710024434000,47],[1710024435000,57],[1710024436000,20],[1710024437000,30],[1710024438000,40],[1710024439000,50],[1710024440000,13],[1710024441000,23],[1710024442000,33],[1710024443000,42],[1710024444000,53],[1710024445000,63],[1710024446000,73],[1710024447000,16],[1710024448000,26],[1710024449000,36],[1710024450000,46],[1710024451000,19],[1710024452000,29],[1710024453000,39],[1710024454000,11],[1710024455000,21],[1710024456000,31],[1710024457000,41],[1710024458000,14],[1710024459000,24],[1710024460000,34],[1710024461000,44],[1710024462000,16],[1710024463000,26],[1710024464000,36],[1710024465000,46],[1710024466000,18],[1710024467000,28],[1710024468000,38],[1710024469000,48],[1710024470000,20],[1710024471000,30],[1710024472000,40],[1710024473000,12],[1710024474000,22],[1710024475000,32],[1710024476000,42],[1710024477000,44],[1710024478000,42],[1710024479000,42],[1710024480000,41],[1710024481000,41],[1710024482000,41],[1710024483000,41],[1710024484000,40],[1710024485000,40],[1710024486000,40],[1710024487000,38],[1710024488000,38],[1710024489000,38],[1710024490000,38],[1710024491000,38],[1710024492000,37],[1710024493000,36],[1710024494000,27],[1710024495000,26],[1710024496000,26],[1710024497000,26],[1710024499000,26],[1710024500000,26],[1710024501000,26],[1710024502000,26],[1710024503000,26],[1710024504000,26],[1710024505000,26],[1710024506000,26],[1710024507000,26],[1710024508000,26],[1710024509000,26],[1710024510000,26],[1710024511000,26],[1710024512000,26],[1710024513000,26],[1710024514000,26],[1710024515000,26],[1710024516000,26],[1710024517000,26],[1710024518000,26],[1710024519000,26],[1710024520000,26],[1710024521000,26],[1710024522000,26],[1710024523000,26],[1710024524000,26],[1710024525000,26],[1710024526000,26],[1710024527000,26],[1710024528000,26],[1710024529000,26],[1710024530000,26],[1710024531000,26],[1710024532000,26],[1710024533000,26],[1710024534000,24],[1710024535000,17],[1710024536000,3]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FFDD00',
name: 'validações',
data: [
[1710024249000,0],[1710024250000,0],[1710024251000,0],[1710024252000,5],[1710024253000,5],[1710024254000,0],[1710024255000,0],[1710024256000,0],[1710024257000,0],[1710024258000,0],[1710024259000,0],[1710024260000,0],[1710024261000,0],[1710024262000,0],[1710024263000,0],[1710024264000,0],[1710024265000,0],[1710024266000,0],[1710024267000,0],[1710024268000,0],[1710024269000,0],[1710024270000,0],[1710024271000,0],[1710024272000,0],[1710024273000,0],[1710024274000,0],[1710024275000,0],[1710024276000,0],[1710024277000,0],[1710024278000,0],[1710024279000,0],[1710024280000,0],[1710024281000,0],[1710024282000,0],[1710024283000,0],[1710024284000,0],[1710024285000,0],[1710024286000,0],[1710024287000,0],[1710024288000,0],[1710024289000,0],[1710024290000,0],[1710024291000,0],[1710024292000,0],[1710024293000,0],[1710024294000,0],[1710024295000,0],[1710024296000,0],[1710024297000,0],[1710024298000,0],[1710024299000,0],[1710024300000,0],[1710024301000,0],[1710024302000,0],[1710024303000,0],[1710024304000,0],[1710024305000,0],[1710024306000,0],[1710024307000,0],[1710024308000,0],[1710024309000,0],[1710024310000,0],[1710024311000,0],[1710024312000,0],[1710024313000,0],[1710024314000,0],[1710024315000,0],[1710024316000,0],[1710024317000,0],[1710024318000,0],[1710024319000,0],[1710024320000,0],[1710024321000,0],[1710024322000,0],[1710024323000,0],[1710024324000,0],[1710024325000,0],[1710024326000,0],[1710024327000,0],[1710024328000,0],[1710024329000,0],[1710024330000,0],[1710024331000,0],[1710024332000,0],[1710024333000,0],[1710024334000,0],[1710024335000,0],[1710024336000,0],[1710024337000,0],[1710024338000,0],[1710024339000,0],[1710024340000,0],[1710024341000,0],[1710024342000,0],[1710024343000,0],[1710024344000,0],[1710024345000,0],[1710024346000,0],[1710024347000,0],[1710024348000,0],[1710024349000,0],[1710024350000,0],[1710024351000,0],[1710024352000,0],[1710024353000,0],[1710024354000,0],[1710024355000,0],[1710024356000,0],[1710024357000,0],[1710024358000,0],[1710024359000,0],[1710024360000,0],[1710024361000,0],[1710024362000,0],[1710024363000,0],[1710024364000,0],[1710024365000,0],[1710024366000,0],[1710024367000,0],[1710024368000,0],[1710024369000,0],[1710024370000,0],[1710024371000,0],[1710024372000,0],[1710024373000,0],[1710024374000,0],[1710024375000,0],[1710024376000,0],[1710024377000,0],[1710024378000,0],[1710024379000,0],[1710024380000,0],[1710024381000,0],[1710024382000,0],[1710024383000,0],[1710024384000,0],[1710024385000,0],[1710024386000,0],[1710024387000,0],[1710024388000,0],[1710024389000,0],[1710024390000,0],[1710024391000,0],[1710024392000,0],[1710024393000,0],[1710024394000,0],[1710024395000,0],[1710024396000,0],[1710024397000,0],[1710024398000,0],[1710024399000,0],[1710024400000,0],[1710024401000,0],[1710024402000,0],[1710024403000,0],[1710024404000,0],[1710024405000,0],[1710024406000,0],[1710024407000,0],[1710024408000,0],[1710024409000,0],[1710024410000,0],[1710024411000,0],[1710024412000,0],[1710024413000,0],[1710024414000,0],[1710024415000,0],[1710024416000,0],[1710024417000,0],[1710024418000,0],[1710024419000,0],[1710024420000,0],[1710024421000,0],[1710024422000,0],[1710024423000,0],[1710024424000,0],[1710024425000,0],[1710024426000,0],[1710024427000,0],[1710024428000,0],[1710024429000,0],[1710024430000,0],[1710024431000,0],[1710024432000,0],[1710024433000,0],[1710024434000,0],[1710024435000,0],[1710024436000,0],[1710024437000,0],[1710024438000,0],[1710024439000,0],[1710024440000,0],[1710024441000,0],[1710024442000,0],[1710024443000,0],[1710024444000,0],[1710024445000,0],[1710024446000,0],[1710024447000,0],[1710024448000,0],[1710024449000,0],[1710024450000,0],[1710024451000,0],[1710024452000,0],[1710024453000,0],[1710024454000,0],[1710024455000,0],[1710024456000,0],[1710024457000,0],[1710024458000,0],[1710024459000,0],[1710024460000,0],[1710024461000,0],[1710024462000,0],[1710024463000,0],[1710024464000,0],[1710024465000,0],[1710024466000,0],[1710024467000,0],[1710024468000,0],[1710024469000,0],[1710024470000,0],[1710024471000,0],[1710024472000,0],[1710024473000,0],[1710024474000,0],[1710024475000,0],[1710024476000,0],[1710024477000,0],[1710024478000,0],[1710024479000,0],[1710024480000,0],[1710024481000,0],[1710024482000,0],[1710024483000,0],[1710024484000,0],[1710024485000,0],[1710024486000,0],[1710024487000,0],[1710024488000,0],[1710024489000,0],[1710024490000,0],[1710024491000,0],[1710024492000,0],[1710024493000,0],[1710024494000,0],[1710024495000,0],[1710024496000,0],[1710024497000,0],[1710024499000,0],[1710024500000,0],[1710024501000,0],[1710024502000,0],[1710024503000,0],[1710024504000,0],[1710024505000,0],[1710024506000,0],[1710024507000,0],[1710024508000,0],[1710024509000,0],[1710024510000,0],[1710024511000,0],[1710024512000,0],[1710024513000,0],[1710024514000,0],[1710024515000,0],[1710024516000,0],[1710024517000,0],[1710024518000,0],[1710024519000,0],[1710024520000,0],[1710024521000,0],[1710024522000,0],[1710024523000,0],[1710024524000,0],[1710024525000,0],[1710024526000,0],[1710024527000,0],[1710024528000,0],[1710024529000,0],[1710024530000,0],[1710024531000,0],[1710024532000,0],[1710024533000,0],[1710024534000,0],[1710024535000,0],[1710024536000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00D5FF',
name: 'validação HTTP 404',
data: [
[1710024249000,0],[1710024250000,0],[1710024251000,0],[1710024252000,1],[1710024253000,0],[1710024254000,0],[1710024255000,0],[1710024256000,0],[1710024257000,0],[1710024258000,0],[1710024259000,0],[1710024260000,0],[1710024261000,0],[1710024262000,0],[1710024263000,0],[1710024264000,0],[1710024265000,0],[1710024266000,0],[1710024267000,0],[1710024268000,0],[1710024269000,0],[1710024270000,0],[1710024271000,0],[1710024272000,0],[1710024273000,0],[1710024274000,0],[1710024275000,0],[1710024276000,0],[1710024277000,0],[1710024278000,0],[1710024279000,0],[1710024280000,0],[1710024281000,0],[1710024282000,0],[1710024283000,0],[1710024284000,0],[1710024285000,0],[1710024286000,0],[1710024287000,0],[1710024288000,0],[1710024289000,0],[1710024290000,0],[1710024291000,0],[1710024292000,0],[1710024293000,0],[1710024294000,0],[1710024295000,0],[1710024296000,0],[1710024297000,0],[1710024298000,0],[1710024299000,0],[1710024300000,0],[1710024301000,0],[1710024302000,0],[1710024303000,0],[1710024304000,0],[1710024305000,0],[1710024306000,0],[1710024307000,0],[1710024308000,0],[1710024309000,0],[1710024310000,0],[1710024311000,0],[1710024312000,0],[1710024313000,0],[1710024314000,0],[1710024315000,0],[1710024316000,0],[1710024317000,0],[1710024318000,0],[1710024319000,0],[1710024320000,0],[1710024321000,0],[1710024322000,0],[1710024323000,0],[1710024324000,0],[1710024325000,0],[1710024326000,0],[1710024327000,0],[1710024328000,0],[1710024329000,0],[1710024330000,0],[1710024331000,0],[1710024332000,0],[1710024333000,0],[1710024334000,0],[1710024335000,0],[1710024336000,0],[1710024337000,0],[1710024338000,0],[1710024339000,0],[1710024340000,0],[1710024341000,0],[1710024342000,0],[1710024343000,0],[1710024344000,0],[1710024345000,0],[1710024346000,0],[1710024347000,0],[1710024348000,0],[1710024349000,0],[1710024350000,0],[1710024351000,0],[1710024352000,0],[1710024353000,0],[1710024354000,0],[1710024355000,0],[1710024356000,0],[1710024357000,0],[1710024358000,0],[1710024359000,0],[1710024360000,0],[1710024361000,0],[1710024362000,0],[1710024363000,0],[1710024364000,0],[1710024365000,0],[1710024366000,0],[1710024367000,0],[1710024368000,0],[1710024369000,0],[1710024370000,0],[1710024371000,0],[1710024372000,0],[1710024373000,0],[1710024374000,0],[1710024375000,0],[1710024376000,0],[1710024377000,0],[1710024378000,0],[1710024379000,0],[1710024380000,0],[1710024381000,0],[1710024382000,0],[1710024383000,0],[1710024384000,0],[1710024385000,0],[1710024386000,0],[1710024387000,0],[1710024388000,0],[1710024389000,0],[1710024390000,0],[1710024391000,0],[1710024392000,0],[1710024393000,0],[1710024394000,0],[1710024395000,0],[1710024396000,0],[1710024397000,0],[1710024398000,0],[1710024399000,0],[1710024400000,0],[1710024401000,0],[1710024402000,0],[1710024403000,0],[1710024404000,0],[1710024405000,0],[1710024406000,0],[1710024407000,0],[1710024408000,0],[1710024409000,0],[1710024410000,0],[1710024411000,0],[1710024412000,0],[1710024413000,0],[1710024414000,0],[1710024415000,0],[1710024416000,0],[1710024417000,0],[1710024418000,0],[1710024419000,0],[1710024420000,0],[1710024421000,0],[1710024422000,0],[1710024423000,0],[1710024424000,0],[1710024425000,0],[1710024426000,0],[1710024427000,0],[1710024428000,0],[1710024429000,0],[1710024430000,0],[1710024431000,0],[1710024432000,0],[1710024433000,0],[1710024434000,0],[1710024435000,0],[1710024436000,0],[1710024437000,0],[1710024438000,0],[1710024439000,0],[1710024440000,0],[1710024441000,0],[1710024442000,0],[1710024443000,0],[1710024444000,0],[1710024445000,0],[1710024446000,0],[1710024447000,0],[1710024448000,0],[1710024449000,0],[1710024450000,0],[1710024451000,0],[1710024452000,0],[1710024453000,0],[1710024454000,0],[1710024455000,0],[1710024456000,0],[1710024457000,0],[1710024458000,0],[1710024459000,0],[1710024460000,0],[1710024461000,0],[1710024462000,0],[1710024463000,0],[1710024464000,0],[1710024465000,0],[1710024466000,0],[1710024467000,0],[1710024468000,0],[1710024469000,0],[1710024470000,0],[1710024471000,0],[1710024472000,0],[1710024473000,0],[1710024474000,0],[1710024475000,0],[1710024476000,0],[1710024477000,0],[1710024478000,0],[1710024479000,0],[1710024480000,0],[1710024481000,0],[1710024482000,0],[1710024483000,0],[1710024484000,0],[1710024485000,0],[1710024486000,0],[1710024487000,0],[1710024488000,0],[1710024489000,0],[1710024490000,0],[1710024491000,0],[1710024492000,0],[1710024493000,0],[1710024494000,0],[1710024495000,0],[1710024496000,0],[1710024497000,0],[1710024499000,0],[1710024500000,0],[1710024501000,0],[1710024502000,0],[1710024503000,0],[1710024504000,0],[1710024505000,0],[1710024506000,0],[1710024507000,0],[1710024508000,0],[1710024509000,0],[1710024510000,0],[1710024511000,0],[1710024512000,0],[1710024513000,0],[1710024514000,0],[1710024515000,0],[1710024516000,0],[1710024517000,0],[1710024518000,0],[1710024519000,0],[1710024520000,0],[1710024521000,0],[1710024522000,0],[1710024523000,0],[1710024524000,0],[1710024525000,0],[1710024526000,0],[1710024527000,0],[1710024528000,0],[1710024529000,0],[1710024530000,0],[1710024531000,0],[1710024532000,0],[1710024533000,0],[1710024534000,0],[1710024535000,0],[1710024536000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00FF00',
name: 'validação concorrência saldo - 0',
data: [
[1710024249000,0],[1710024250000,0],[1710024251000,1],[1710024252000,0],[1710024253000,0],[1710024254000,0],[1710024255000,0],[1710024256000,0],[1710024257000,0],[1710024258000,0],[1710024259000,0],[1710024260000,0],[1710024261000,0],[1710024262000,0],[1710024263000,0],[1710024264000,0],[1710024265000,0],[1710024266000,0],[1710024267000,0],[1710024268000,0],[1710024269000,0],[1710024270000,0],[1710024271000,0],[1710024272000,0],[1710024273000,0],[1710024274000,0],[1710024275000,0],[1710024276000,0],[1710024277000,0],[1710024278000,0],[1710024279000,0],[1710024280000,0],[1710024281000,0],[1710024282000,0],[1710024283000,0],[1710024284000,0],[1710024285000,0],[1710024286000,0],[1710024287000,0],[1710024288000,0],[1710024289000,0],[1710024290000,0],[1710024291000,0],[1710024292000,0],[1710024293000,0],[1710024294000,0],[1710024295000,0],[1710024296000,0],[1710024297000,0],[1710024298000,0],[1710024299000,0],[1710024300000,0],[1710024301000,0],[1710024302000,0],[1710024303000,0],[1710024304000,0],[1710024305000,0],[1710024306000,0],[1710024307000,0],[1710024308000,0],[1710024309000,0],[1710024310000,0],[1710024311000,0],[1710024312000,0],[1710024313000,0],[1710024314000,0],[1710024315000,0],[1710024316000,0],[1710024317000,0],[1710024318000,0],[1710024319000,0],[1710024320000,0],[1710024321000,0],[1710024322000,0],[1710024323000,0],[1710024324000,0],[1710024325000,0],[1710024326000,0],[1710024327000,0],[1710024328000,0],[1710024329000,0],[1710024330000,0],[1710024331000,0],[1710024332000,0],[1710024333000,0],[1710024334000,0],[1710024335000,0],[1710024336000,0],[1710024337000,0],[1710024338000,0],[1710024339000,0],[1710024340000,0],[1710024341000,0],[1710024342000,0],[1710024343000,0],[1710024344000,0],[1710024345000,0],[1710024346000,0],[1710024347000,0],[1710024348000,0],[1710024349000,0],[1710024350000,0],[1710024351000,0],[1710024352000,0],[1710024353000,0],[1710024354000,0],[1710024355000,0],[1710024356000,0],[1710024357000,0],[1710024358000,0],[1710024359000,0],[1710024360000,0],[1710024361000,0],[1710024362000,0],[1710024363000,0],[1710024364000,0],[1710024365000,0],[1710024366000,0],[1710024367000,0],[1710024368000,0],[1710024369000,0],[1710024370000,0],[1710024371000,0],[1710024372000,0],[1710024373000,0],[1710024374000,0],[1710024375000,0],[1710024376000,0],[1710024377000,0],[1710024378000,0],[1710024379000,0],[1710024380000,0],[1710024381000,0],[1710024382000,0],[1710024383000,0],[1710024384000,0],[1710024385000,0],[1710024386000,0],[1710024387000,0],[1710024388000,0],[1710024389000,0],[1710024390000,0],[1710024391000,0],[1710024392000,0],[1710024393000,0],[1710024394000,0],[1710024395000,0],[1710024396000,0],[1710024397000,0],[1710024398000,0],[1710024399000,0],[1710024400000,0],[1710024401000,0],[1710024402000,0],[1710024403000,0],[1710024404000,0],[1710024405000,0],[1710024406000,0],[1710024407000,0],[1710024408000,0],[1710024409000,0],[1710024410000,0],[1710024411000,0],[1710024412000,0],[1710024413000,0],[1710024414000,0],[1710024415000,0],[1710024416000,0],[1710024417000,0],[1710024418000,0],[1710024419000,0],[1710024420000,0],[1710024421000,0],[1710024422000,0],[1710024423000,0],[1710024424000,0],[1710024425000,0],[1710024426000,0],[1710024427000,0],[1710024428000,0],[1710024429000,0],[1710024430000,0],[1710024431000,0],[1710024432000,0],[1710024433000,0],[1710024434000,0],[1710024435000,0],[1710024436000,0],[1710024437000,0],[1710024438000,0],[1710024439000,0],[1710024440000,0],[1710024441000,0],[1710024442000,0],[1710024443000,0],[1710024444000,0],[1710024445000,0],[1710024446000,0],[1710024447000,0],[1710024448000,0],[1710024449000,0],[1710024450000,0],[1710024451000,0],[1710024452000,0],[1710024453000,0],[1710024454000,0],[1710024455000,0],[1710024456000,0],[1710024457000,0],[1710024458000,0],[1710024459000,0],[1710024460000,0],[1710024461000,0],[1710024462000,0],[1710024463000,0],[1710024464000,0],[1710024465000,0],[1710024466000,0],[1710024467000,0],[1710024468000,0],[1710024469000,0],[1710024470000,0],[1710024471000,0],[1710024472000,0],[1710024473000,0],[1710024474000,0],[1710024475000,0],[1710024476000,0],[1710024477000,0],[1710024478000,0],[1710024479000,0],[1710024480000,0],[1710024481000,0],[1710024482000,0],[1710024483000,0],[1710024484000,0],[1710024485000,0],[1710024486000,0],[1710024487000,0],[1710024488000,0],[1710024489000,0],[1710024490000,0],[1710024491000,0],[1710024492000,0],[1710024493000,0],[1710024494000,0],[1710024495000,0],[1710024496000,0],[1710024497000,0],[1710024499000,0],[1710024500000,0],[1710024501000,0],[1710024502000,0],[1710024503000,0],[1710024504000,0],[1710024505000,0],[1710024506000,0],[1710024507000,0],[1710024508000,0],[1710024509000,0],[1710024510000,0],[1710024511000,0],[1710024512000,0],[1710024513000,0],[1710024514000,0],[1710024515000,0],[1710024516000,0],[1710024517000,0],[1710024518000,0],[1710024519000,0],[1710024520000,0],[1710024521000,0],[1710024522000,0],[1710024523000,0],[1710024524000,0],[1710024525000,0],[1710024526000,0],[1710024527000,0],[1710024528000,0],[1710024529000,0],[1710024530000,0],[1710024531000,0],[1710024532000,0],[1710024533000,0],[1710024534000,0],[1710024535000,0],[1710024536000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#9D00FF',
name: 'validação concorrência transações - c',
data: [
[1710024249000,0],[1710024250000,25],[1710024251000,25],[1710024252000,0],[1710024253000,0],[1710024254000,0],[1710024255000,0],[1710024256000,0],[1710024257000,0],[1710024258000,0],[1710024259000,0],[1710024260000,0],[1710024261000,0],[1710024262000,0],[1710024263000,0],[1710024264000,0],[1710024265000,0],[1710024266000,0],[1710024267000,0],[1710024268000,0],[1710024269000,0],[1710024270000,0],[1710024271000,0],[1710024272000,0],[1710024273000,0],[1710024274000,0],[1710024275000,0],[1710024276000,0],[1710024277000,0],[1710024278000,0],[1710024279000,0],[1710024280000,0],[1710024281000,0],[1710024282000,0],[1710024283000,0],[1710024284000,0],[1710024285000,0],[1710024286000,0],[1710024287000,0],[1710024288000,0],[1710024289000,0],[1710024290000,0],[1710024291000,0],[1710024292000,0],[1710024293000,0],[1710024294000,0],[1710024295000,0],[1710024296000,0],[1710024297000,0],[1710024298000,0],[1710024299000,0],[1710024300000,0],[1710024301000,0],[1710024302000,0],[1710024303000,0],[1710024304000,0],[1710024305000,0],[1710024306000,0],[1710024307000,0],[1710024308000,0],[1710024309000,0],[1710024310000,0],[1710024311000,0],[1710024312000,0],[1710024313000,0],[1710024314000,0],[1710024315000,0],[1710024316000,0],[1710024317000,0],[1710024318000,0],[1710024319000,0],[1710024320000,0],[1710024321000,0],[1710024322000,0],[1710024323000,0],[1710024324000,0],[1710024325000,0],[1710024326000,0],[1710024327000,0],[1710024328000,0],[1710024329000,0],[1710024330000,0],[1710024331000,0],[1710024332000,0],[1710024333000,0],[1710024334000,0],[1710024335000,0],[1710024336000,0],[1710024337000,0],[1710024338000,0],[1710024339000,0],[1710024340000,0],[1710024341000,0],[1710024342000,0],[1710024343000,0],[1710024344000,0],[1710024345000,0],[1710024346000,0],[1710024347000,0],[1710024348000,0],[1710024349000,0],[1710024350000,0],[1710024351000,0],[1710024352000,0],[1710024353000,0],[1710024354000,0],[1710024355000,0],[1710024356000,0],[1710024357000,0],[1710024358000,0],[1710024359000,0],[1710024360000,0],[1710024361000,0],[1710024362000,0],[1710024363000,0],[1710024364000,0],[1710024365000,0],[1710024366000,0],[1710024367000,0],[1710024368000,0],[1710024369000,0],[1710024370000,0],[1710024371000,0],[1710024372000,0],[1710024373000,0],[1710024374000,0],[1710024375000,0],[1710024376000,0],[1710024377000,0],[1710024378000,0],[1710024379000,0],[1710024380000,0],[1710024381000,0],[1710024382000,0],[1710024383000,0],[1710024384000,0],[1710024385000,0],[1710024386000,0],[1710024387000,0],[1710024388000,0],[1710024389000,0],[1710024390000,0],[1710024391000,0],[1710024392000,0],[1710024393000,0],[1710024394000,0],[1710024395000,0],[1710024396000,0],[1710024397000,0],[1710024398000,0],[1710024399000,0],[1710024400000,0],[1710024401000,0],[1710024402000,0],[1710024403000,0],[1710024404000,0],[1710024405000,0],[1710024406000,0],[1710024407000,0],[1710024408000,0],[1710024409000,0],[1710024410000,0],[1710024411000,0],[1710024412000,0],[1710024413000,0],[1710024414000,0],[1710024415000,0],[1710024416000,0],[1710024417000,0],[1710024418000,0],[1710024419000,0],[1710024420000,0],[1710024421000,0],[1710024422000,0],[1710024423000,0],[1710024424000,0],[1710024425000,0],[1710024426000,0],[1710024427000,0],[1710024428000,0],[1710024429000,0],[1710024430000,0],[1710024431000,0],[1710024432000,0],[1710024433000,0],[1710024434000,0],[1710024435000,0],[1710024436000,0],[1710024437000,0],[1710024438000,0],[1710024439000,0],[1710024440000,0],[1710024441000,0],[1710024442000,0],[1710024443000,0],[1710024444000,0],[1710024445000,0],[1710024446000,0],[1710024447000,0],[1710024448000,0],[1710024449000,0],[1710024450000,0],[1710024451000,0],[1710024452000,0],[1710024453000,0],[1710024454000,0],[1710024455000,0],[1710024456000,0],[1710024457000,0],[1710024458000,0],[1710024459000,0],[1710024460000,0],[1710024461000,0],[1710024462000,0],[1710024463000,0],[1710024464000,0],[1710024465000,0],[1710024466000,0],[1710024467000,0],[1710024468000,0],[1710024469000,0],[1710024470000,0],[1710024471000,0],[1710024472000,0],[1710024473000,0],[1710024474000,0],[1710024475000,0],[1710024476000,0],[1710024477000,0],[1710024478000,0],[1710024479000,0],[1710024480000,0],[1710024481000,0],[1710024482000,0],[1710024483000,0],[1710024484000,0],[1710024485000,0],[1710024486000,0],[1710024487000,0],[1710024488000,0],[1710024489000,0],[1710024490000,0],[1710024491000,0],[1710024492000,0],[1710024493000,0],[1710024494000,0],[1710024495000,0],[1710024496000,0],[1710024497000,0],[1710024499000,0],[1710024500000,0],[1710024501000,0],[1710024502000,0],[1710024503000,0],[1710024504000,0],[1710024505000,0],[1710024506000,0],[1710024507000,0],[1710024508000,0],[1710024509000,0],[1710024510000,0],[1710024511000,0],[1710024512000,0],[1710024513000,0],[1710024514000,0],[1710024515000,0],[1710024516000,0],[1710024517000,0],[1710024518000,0],[1710024519000,0],[1710024520000,0],[1710024521000,0],[1710024522000,0],[1710024523000,0],[1710024524000,0],[1710024525000,0],[1710024526000,0],[1710024527000,0],[1710024528000,0],[1710024529000,0],[1710024530000,0],[1710024531000,0],[1710024532000,0],[1710024533000,0],[1710024534000,0],[1710024535000,0],[1710024536000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FF00E1',
name: 'validação concorrência saldo - -25',
data: [
[1710024249000,1],[1710024250000,1],[1710024251000,0],[1710024252000,0],[1710024253000,0],[1710024254000,0],[1710024255000,0],[1710024256000,0],[1710024257000,0],[1710024258000,0],[1710024259000,0],[1710024260000,0],[1710024261000,0],[1710024262000,0],[1710024263000,0],[1710024264000,0],[1710024265000,0],[1710024266000,0],[1710024267000,0],[1710024268000,0],[1710024269000,0],[1710024270000,0],[1710024271000,0],[1710024272000,0],[1710024273000,0],[1710024274000,0],[1710024275000,0],[1710024276000,0],[1710024277000,0],[1710024278000,0],[1710024279000,0],[1710024280000,0],[1710024281000,0],[1710024282000,0],[1710024283000,0],[1710024284000,0],[1710024285000,0],[1710024286000,0],[1710024287000,0],[1710024288000,0],[1710024289000,0],[1710024290000,0],[1710024291000,0],[1710024292000,0],[1710024293000,0],[1710024294000,0],[1710024295000,0],[1710024296000,0],[1710024297000,0],[1710024298000,0],[1710024299000,0],[1710024300000,0],[1710024301000,0],[1710024302000,0],[1710024303000,0],[1710024304000,0],[1710024305000,0],[1710024306000,0],[1710024307000,0],[1710024308000,0],[1710024309000,0],[1710024310000,0],[1710024311000,0],[1710024312000,0],[1710024313000,0],[1710024314000,0],[1710024315000,0],[1710024316000,0],[1710024317000,0],[1710024318000,0],[1710024319000,0],[1710024320000,0],[1710024321000,0],[1710024322000,0],[1710024323000,0],[1710024324000,0],[1710024325000,0],[1710024326000,0],[1710024327000,0],[1710024328000,0],[1710024329000,0],[1710024330000,0],[1710024331000,0],[1710024332000,0],[1710024333000,0],[1710024334000,0],[1710024335000,0],[1710024336000,0],[1710024337000,0],[1710024338000,0],[1710024339000,0],[1710024340000,0],[1710024341000,0],[1710024342000,0],[1710024343000,0],[1710024344000,0],[1710024345000,0],[1710024346000,0],[1710024347000,0],[1710024348000,0],[1710024349000,0],[1710024350000,0],[1710024351000,0],[1710024352000,0],[1710024353000,0],[1710024354000,0],[1710024355000,0],[1710024356000,0],[1710024357000,0],[1710024358000,0],[1710024359000,0],[1710024360000,0],[1710024361000,0],[1710024362000,0],[1710024363000,0],[1710024364000,0],[1710024365000,0],[1710024366000,0],[1710024367000,0],[1710024368000,0],[1710024369000,0],[1710024370000,0],[1710024371000,0],[1710024372000,0],[1710024373000,0],[1710024374000,0],[1710024375000,0],[1710024376000,0],[1710024377000,0],[1710024378000,0],[1710024379000,0],[1710024380000,0],[1710024381000,0],[1710024382000,0],[1710024383000,0],[1710024384000,0],[1710024385000,0],[1710024386000,0],[1710024387000,0],[1710024388000,0],[1710024389000,0],[1710024390000,0],[1710024391000,0],[1710024392000,0],[1710024393000,0],[1710024394000,0],[1710024395000,0],[1710024396000,0],[1710024397000,0],[1710024398000,0],[1710024399000,0],[1710024400000,0],[1710024401000,0],[1710024402000,0],[1710024403000,0],[1710024404000,0],[1710024405000,0],[1710024406000,0],[1710024407000,0],[1710024408000,0],[1710024409000,0],[1710024410000,0],[1710024411000,0],[1710024412000,0],[1710024413000,0],[1710024414000,0],[1710024415000,0],[1710024416000,0],[1710024417000,0],[1710024418000,0],[1710024419000,0],[1710024420000,0],[1710024421000,0],[1710024422000,0],[1710024423000,0],[1710024424000,0],[1710024425000,0],[1710024426000,0],[1710024427000,0],[1710024428000,0],[1710024429000,0],[1710024430000,0],[1710024431000,0],[1710024432000,0],[1710024433000,0],[1710024434000,0],[1710024435000,0],[1710024436000,0],[1710024437000,0],[1710024438000,0],[1710024439000,0],[1710024440000,0],[1710024441000,0],[1710024442000,0],[1710024443000,0],[1710024444000,0],[1710024445000,0],[1710024446000,0],[1710024447000,0],[1710024448000,0],[1710024449000,0],[1710024450000,0],[1710024451000,0],[1710024452000,0],[1710024453000,0],[1710024454000,0],[1710024455000,0],[1710024456000,0],[1710024457000,0],[1710024458000,0],[1710024459000,0],[1710024460000,0],[1710024461000,0],[1710024462000,0],[1710024463000,0],[1710024464000,0],[1710024465000,0],[1710024466000,0],[1710024467000,0],[1710024468000,0],[1710024469000,0],[1710024470000,0],[1710024471000,0],[1710024472000,0],[1710024473000,0],[1710024474000,0],[1710024475000,0],[1710024476000,0],[1710024477000,0],[1710024478000,0],[1710024479000,0],[1710024480000,0],[1710024481000,0],[1710024482000,0],[1710024483000,0],[1710024484000,0],[1710024485000,0],[1710024486000,0],[1710024487000,0],[1710024488000,0],[1710024489000,0],[1710024490000,0],[1710024491000,0],[1710024492000,0],[1710024493000,0],[1710024494000,0],[1710024495000,0],[1710024496000,0],[1710024497000,0],[1710024499000,0],[1710024500000,0],[1710024501000,0],[1710024502000,0],[1710024503000,0],[1710024504000,0],[1710024505000,0],[1710024506000,0],[1710024507000,0],[1710024508000,0],[1710024509000,0],[1710024510000,0],[1710024511000,0],[1710024512000,0],[1710024513000,0],[1710024514000,0],[1710024515000,0],[1710024516000,0],[1710024517000,0],[1710024518000,0],[1710024519000,0],[1710024520000,0],[1710024521000,0],[1710024522000,0],[1710024523000,0],[1710024524000,0],[1710024525000,0],[1710024526000,0],[1710024527000,0],[1710024528000,0],[1710024529000,0],[1710024530000,0],[1710024531000,0],[1710024532000,0],[1710024533000,0],[1710024534000,0],[1710024535000,0],[1710024536000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#AECAEB',
name: 'validação concorrência transações - d',
data: [
[1710024249000,25],[1710024250000,0],[1710024251000,0],[1710024252000,0],[1710024253000,0],[1710024254000,0],[1710024255000,0],[1710024256000,0],[1710024257000,0],[1710024258000,0],[1710024259000,0],[1710024260000,0],[1710024261000,0],[1710024262000,0],[1710024263000,0],[1710024264000,0],[1710024265000,0],[1710024266000,0],[1710024267000,0],[1710024268000,0],[1710024269000,0],[1710024270000,0],[1710024271000,0],[1710024272000,0],[1710024273000,0],[1710024274000,0],[1710024275000,0],[1710024276000,0],[1710024277000,0],[1710024278000,0],[1710024279000,0],[1710024280000,0],[1710024281000,0],[1710024282000,0],[1710024283000,0],[1710024284000,0],[1710024285000,0],[1710024286000,0],[1710024287000,0],[1710024288000,0],[1710024289000,0],[1710024290000,0],[1710024291000,0],[1710024292000,0],[1710024293000,0],[1710024294000,0],[1710024295000,0],[1710024296000,0],[1710024297000,0],[1710024298000,0],[1710024299000,0],[1710024300000,0],[1710024301000,0],[1710024302000,0],[1710024303000,0],[1710024304000,0],[1710024305000,0],[1710024306000,0],[1710024307000,0],[1710024308000,0],[1710024309000,0],[1710024310000,0],[1710024311000,0],[1710024312000,0],[1710024313000,0],[1710024314000,0],[1710024315000,0],[1710024316000,0],[1710024317000,0],[1710024318000,0],[1710024319000,0],[1710024320000,0],[1710024321000,0],[1710024322000,0],[1710024323000,0],[1710024324000,0],[1710024325000,0],[1710024326000,0],[1710024327000,0],[1710024328000,0],[1710024329000,0],[1710024330000,0],[1710024331000,0],[1710024332000,0],[1710024333000,0],[1710024334000,0],[1710024335000,0],[1710024336000,0],[1710024337000,0],[1710024338000,0],[1710024339000,0],[1710024340000,0],[1710024341000,0],[1710024342000,0],[1710024343000,0],[1710024344000,0],[1710024345000,0],[1710024346000,0],[1710024347000,0],[1710024348000,0],[1710024349000,0],[1710024350000,0],[1710024351000,0],[1710024352000,0],[1710024353000,0],[1710024354000,0],[1710024355000,0],[1710024356000,0],[1710024357000,0],[1710024358000,0],[1710024359000,0],[1710024360000,0],[1710024361000,0],[1710024362000,0],[1710024363000,0],[1710024364000,0],[1710024365000,0],[1710024366000,0],[1710024367000,0],[1710024368000,0],[1710024369000,0],[1710024370000,0],[1710024371000,0],[1710024372000,0],[1710024373000,0],[1710024374000,0],[1710024375000,0],[1710024376000,0],[1710024377000,0],[1710024378000,0],[1710024379000,0],[1710024380000,0],[1710024381000,0],[1710024382000,0],[1710024383000,0],[1710024384000,0],[1710024385000,0],[1710024386000,0],[1710024387000,0],[1710024388000,0],[1710024389000,0],[1710024390000,0],[1710024391000,0],[1710024392000,0],[1710024393000,0],[1710024394000,0],[1710024395000,0],[1710024396000,0],[1710024397000,0],[1710024398000,0],[1710024399000,0],[1710024400000,0],[1710024401000,0],[1710024402000,0],[1710024403000,0],[1710024404000,0],[1710024405000,0],[1710024406000,0],[1710024407000,0],[1710024408000,0],[1710024409000,0],[1710024410000,0],[1710024411000,0],[1710024412000,0],[1710024413000,0],[1710024414000,0],[1710024415000,0],[1710024416000,0],[1710024417000,0],[1710024418000,0],[1710024419000,0],[1710024420000,0],[1710024421000,0],[1710024422000,0],[1710024423000,0],[1710024424000,0],[1710024425000,0],[1710024426000,0],[1710024427000,0],[1710024428000,0],[1710024429000,0],[1710024430000,0],[1710024431000,0],[1710024432000,0],[1710024433000,0],[1710024434000,0],[1710024435000,0],[1710024436000,0],[1710024437000,0],[1710024438000,0],[1710024439000,0],[1710024440000,0],[1710024441000,0],[1710024442000,0],[1710024443000,0],[1710024444000,0],[1710024445000,0],[1710024446000,0],[1710024447000,0],[1710024448000,0],[1710024449000,0],[1710024450000,0],[1710024451000,0],[1710024452000,0],[1710024453000,0],[1710024454000,0],[1710024455000,0],[1710024456000,0],[1710024457000,0],[1710024458000,0],[1710024459000,0],[1710024460000,0],[1710024461000,0],[1710024462000,0],[1710024463000,0],[1710024464000,0],[1710024465000,0],[1710024466000,0],[1710024467000,0],[1710024468000,0],[1710024469000,0],[1710024470000,0],[1710024471000,0],[1710024472000,0],[1710024473000,0],[1710024474000,0],[1710024475000,0],[1710024476000,0],[1710024477000,0],[1710024478000,0],[1710024479000,0],[1710024480000,0],[1710024481000,0],[1710024482000,0],[1710024483000,0],[1710024484000,0],[1710024485000,0],[1710024486000,0],[1710024487000,0],[1710024488000,0],[1710024489000,0],[1710024490000,0],[1710024491000,0],[1710024492000,0],[1710024493000,0],[1710024494000,0],[1710024495000,0],[1710024496000,0],[1710024497000,0],[1710024499000,0],[1710024500000,0],[1710024501000,0],[1710024502000,0],[1710024503000,0],[1710024504000,0],[1710024505000,0],[1710024506000,0],[1710024507000,0],[1710024508000,0],[1710024509000,0],[1710024510000,0],[1710024511000,0],[1710024512000,0],[1710024513000,0],[1710024514000,0],[1710024515000,0],[1710024516000,0],[1710024517000,0],[1710024518000,0],[1710024519000,0],[1710024520000,0],[1710024521000,0],[1710024522000,0],[1710024523000,0],[1710024524000,0],[1710024525000,0],[1710024526000,0],[1710024527000,0],[1710024528000,0],[1710024529000,0],[1710024530000,0],[1710024531000,0],[1710024532000,0],[1710024533000,0],[1710024534000,0],[1710024535000,0],[1710024536000,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', '15301', '15901', '16501', '17101', '17701', '18301', '18901', '19501', '20101', '20701', '21301', '21901', '22501', '23101', '23701', '24301', '24901', '25501', '26101', '26701', '27301', '27901', '28501', '29101', '29701', '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', '45302', '45902', '46502', '47102', '47702', '48302', '48902', '49502', '50102', '50702', '51302', '51902', '52502', '53102', '53702', '54302', '54902', '55502', '56102', '56702', '57302', '57902', '58502', '59102', '59702'],
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: [
35.57,1.75,1.43,0.97,1.16,0.56,0.61,0.24,0.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
],
tooltip: { yDecimals: 0, ySuffix: 'ms' }
},
{
type: 'column',
color: '#f15b4f',
name: 'KO',
data: [
15.65,6.35,6.37,6.36,6.26,6.29,4.92,2.91,0.29,0.16,0.16,0.06,0.09,0.0,0.0,0.0,0.11,0.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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.31
],
tooltip: { yDecimals: 0, ySuffix: 'ms' }
}
]
});
responsetimeDistributionChart.setTitle({
text: '<span class="chart_title">Response Time Distribution</span>',
useHTML: true
});
var responsetimepercentilesovertimeokPercentiles = unpack([[1710024249,[37,446,457,530,536,538,538,539,542,544]],[1710024250,[5,5,5,5,5,5,5,5,5,5]],[1710024251,[9,24,34,41,44,45,47,49,52,53]],[1710024252,[3,3,3,3,3,3,3,3,3,3]],[1710024253,[2,3,5,10,11,13,14,19,23,29]],[1710024254,[4,4,4,4,4,4,4,4,4,5]],[1710024255,[3,4,4,4,5,5,5,5,5,6]],[1710024256,[3,4,4,5,5,5,6,7,7,8]],[1710024257,[3,3,4,4,4,4,4,4,4,5]],[1710024258,[3,3,4,4,4,4,4,5,5,5]],[1710024259,[3,3,4,4,4,4,4,5,5,6]],[1710024260,[2,3,3,4,4,4,4,4,8,10]],[1710024261,[2,3,3,3,3,3,3,3,9,11]],[1710024262,[2,3,3,3,4,4,4,5,5,6]],[1710024263,[2,3,3,4,4,4,4,4,4,4]],[1710024264,[2,3,3,4,4,4,4,4,4,5]],[1710024265,[2,3,3,3,3,4,4,4,4,4]],[1710024266,[2,2,3,3,3,3,4,4,4,4]],[1710024267,[2,3,3,3,3,3,4,4,5,5]],[1710024268,[2,2,3,3,4,4,4,4,4,4]],[1710024269,[2,2,3,3,3,3,4,4,5,5]],[1710024270,[2,2,2,3,3,3,3,3,4,4]],[1710024271,[1,2,2,3,3,3,3,3,4,4]],[1710024272,[1,2,2,3,3,3,3,3,4,5]],[1710024273,[2,2,2,3,3,3,3,4,4,4]],[1710024274,[1,2,2,3,3,3,3,3,4,5]],[1710024275,[1,2,2,3,3,3,3,3,3,3]],[1710024276,[1,2,2,3,3,3,3,3,4,4]],[1710024277,[1,2,2,3,3,3,3,3,4,5]],[1710024278,[2,2,2,3,3,3,3,3,4,5]],[1710024279,[1,2,2,3,3,3,3,4,6,8]],[1710024280,[1,2,2,3,3,3,3,3,4,4]],[1710024281,[1,2,2,3,3,3,3,3,4,5]],[1710024282,[1,2,2,2,3,3,3,3,4,5]],[1710024283,[1,2,2,3,3,3,3,3,4,5]],[1710024284,[1,2,2,2,3,3,3,3,5,8]],[1710024285,[1,2,2,2,2,3,3,3,4,5]],[1710024286,[1,2,2,3,3,3,3,3,4,5]],[1710024287,[1,2,2,3,3,3,3,4,5,6]],[1710024288,[1,2,2,3,3,3,3,3,6,8]],[1710024289,[1,2,2,3,3,3,3,4,5,6]],[1710024290,[1,2,2,3,3,3,3,4,5,7]],[1710024291,[1,2,2,3,3,3,3,3,4,5]],[1710024292,[1,2,2,2,3,3,3,3,5,7]],[1710024293,[2,2,2,3,3,3,3,3,5,6]],[1710024294,[1,2,2,2,3,3,3,3,5,7]],[1710024295,[1,2,2,3,3,3,3,3,6,7]],[1710024296,[1,2,2,2,3,3,3,3,7,8]],[1710024297,[1,2,2,2,2,3,3,3,6,8]],[1710024298,[1,2,2,3,3,3,3,3,6,8]],[1710024299,[1,2,2,3,3,3,3,3,6,9]],[1710024300,[1,2,2,2,3,3,3,3,6,7]],[1710024301,[1,2,2,2,2,2,3,3,6,8]],[1710024302,[1,2,2,2,3,3,3,3,8,8]],[1710024303,[1,2,2,3,3,3,3,3,7,7]],[1710024304,[1,2,2,3,3,3,3,3,6,7]],[1710024305,[1,2,2,2,3,3,3,3,6,7]],[1710024306,[1,2,2,2,3,3,3,3,7,9]],[1710024307,[1,1,2,2,2,2,3,3,7,8]],[1710024308,[1,2,2,2,2,3,3,3,8,12]],[1710024309,[1,2,2,2,2,3,3,3,9,13]],[1710024310,[1,1,2,2,2,2,2,3,8,10]],[1710024311,[1,2,2,2,2,2,2,3,9,11]],[1710024312,[1,2,2,2,3,3,3,3,9,10]],[1710024313,[1,2,2,3,3,3,3,3,9,15]],[1710024314,[1,2,2,2,2,2,3,4,12,13]],[1710024315,[1,2,2,2,2,3,3,3,11,17]],[1710024316,[1,2,2,2,2,2,3,3,11,15]],[1710024317,[1,2,2,2,2,2,3,3,10,11]],[1710024318,[1,2,2,2,2,2,2,3,11,14]],[1710024319,[1,2,2,2,2,3,3,3,11,11]],[1710024320,[1,2,2,2,2,2,3,3,12,13]],[1710024321,[1,2,2,2,3,3,3,3,12,15]],[1710024322,[1,2,2,3,3,3,3,3,13,15]],[1710024323,[1,2,2,3,3,3,3,4,14,17]],[1710024324,[1,1,2,2,2,2,2,2,12,16]],[1710024325,[1,2,2,2,2,3,3,3,13,17]],[1710024326,[1,2,2,2,3,3,3,3,12,18]],[1710024327,[1,2,2,2,2,2,3,4,14,18]],[1710024328,[1,1,2,2,2,2,2,3,17,20]],[1710024329,[1,1,2,2,2,2,2,3,14,21]],[1710024330,[1,2,2,2,2,2,3,4,17,19]],[1710024331,[1,2,2,2,2,2,3,4,16,18]],[1710024332,[1,2,2,2,3,3,3,4,16,23]],[1710024333,[1,2,2,3,3,3,3,5,18,23]],[1710024334,[1,1,2,2,2,2,3,5,19,24]],[1710024335,[1,2,2,2,3,3,3,5,19,23]],[1710024336,[1,1,2,2,2,2,3,6,20,24]],[1710024337,[1,1,2,2,2,2,2,5,18,24]],[1710024338,[1,1,2,2,2,2,2,5,18,24]],[1710024339,[1,2,2,2,2,3,3,7,21,25]],[1710024340,[1,2,2,2,2,3,3,9,20,27]],[1710024341,[1,2,2,2,2,3,3,6,21,22]],[1710024342,[1,2,2,2,2,3,3,7,22,29]],[1710024343,[1,1,2,2,2,2,2,3,19,23]],[1710024344,[1,2,2,2,2,3,3,11,22,26]],[1710024345,[1,2,2,2,2,3,3,9,23,31]],[1710024346,[1,2,2,2,3,3,3,7,19,29]],[1710024347,[1,2,2,7,80,334,386,453,579,1099]],[1710024348,[3,112,189,281,307,332,369,429,532,584]],[1710024349,[1,2,2,26,42,66,92,138,237,249]],[1710024350,[1,2,2,2,2,3,3,9,21,28]],[1710024351,[1,2,2,2,2,3,3,9,27,30]],[1710024352,[1,1,2,2,2,2,3,8,23,29]],[1710024353,[1,1,2,2,2,3,3,9,23,32]],[1710024354,[1,1,2,2,2,2,3,11,23,28]],[1710024355,[1,1,2,2,2,2,2,10,23,31]],[1710024356,[1,1,2,2,2,2,3,10,25,30]],[1710024357,[1,2,2,3,3,3,3,9,24,31]],[1710024358,[1,2,2,2,3,3,3,14,26,40]],[1710024359,[1,2,2,2,2,3,3,11,26,33]],[1710024360,[1,2,2,2,2,3,3,15,27,36]],[1710024361,[1,2,2,2,2,3,3,11,23,30]],[1710024362,[1,2,2,2,2,3,3,14,26,34]],[1710024363,[1,2,2,2,2,3,4,17,32,52]],[1710024364,[1,2,2,2,2,3,5,18,40,52]],[1710024365,[1,2,2,2,3,3,7,16,30,35]],[1710024366,[1,2,3,4,4,5,8,26,37,50]],[1710024367,[1,2,2,4,6,14,28,40,94,105]],[1710024368,[1,3,3,4,5,6,10,23,41,61]],[1710024369,[1,2,3,4,6,13,23,35,62,86]],[1710024370,[1,3,4,8,14,23,34,51,66,75]],[1710024371,[1,2,2,4,7,14,25,39,53,72]],[1710024372,[1,3,3,4,5,8,18,32,53,60]],[1710024373,[1,2,3,9,19,30,43,57,82,155]],[1710024374,[1,3,4,31,36,48,64,84,145,245]],[1710024375,[1,2,5,39,49,62,74,111,431,487]],[1710024376,[1,230,359,462,495,549,598,682,1019,1602]],[1710024377,[222,445,547,655,681,724,804,947,1393,2658]],[1710024378,[404,612,697,816,851,896,1019,1234,1635,1905]],[1710024379,[502,659,908,1185,1248,1284,1370,1530,1726,1797]],[1710024380,[521,677,1222,1612,1653,1681,1739,1826,2029,2383]],[1710024381,[577,765,1495,1931,1978,2038,2116,2313,2527,2765]],[1710024382,[683,974,2186,2550,2569,2620,2671,2724,3046,3203]],[1710024383,[1040,1365,2237,2539,2585,2673,2742,2878,3113,3553]],[1710024384,[1158,1346,2360,2876,2906,2951,2999,3071,3260,3488]],[1710024385,[1218,1544,2456,3166,3228,3306,3397,3550,3715,3958]],[1710024386,[1516,1764,2996,3644,3673,3706,3757,3851,4312,4741]],[1710024387,[1808,2313,3259,3779,3810,3863,3937,4032,4224,4639]],[1710024388,[2176,2355,3379,4151,4305,4381,4463,4664,4810,4904]],[1710024389,[2209,2360,2536,4665,4714,4806,4943,4985,5107,5166]],[1710024390,[2364,2769,3087,3370,3461,3546,3600,3683,3851,3914]],[1710024391,[3553,3564,3600,3620,3623,3629,3636,3642,3647,3649]],[1710024392,null],[1710024393,null],[1710024394,null],[1710024395,null],[1710024396,null],[1710024397,null],[1710024398,null],[1710024399,null],[1710024400,null],[1710024401,null],[1710024402,null],[1710024403,null],[1710024404,null],[1710024405,null],[1710024406,null],[1710024407,null],[1710024408,null],[1710024409,null],[1710024410,null],[1710024411,null],[1710024412,null],[1710024413,null],[1710024414,null],[1710024415,null],[1710024416,null],[1710024417,null],[1710024418,null],[1710024419,null],[1710024420,null],[1710024421,null],[1710024422,null],[1710024423,null],[1710024424,null],[1710024425,null],[1710024426,null],[1710024427,null],[1710024428,null],[1710024429,null],[1710024430,null],[1710024431,null],[1710024432,null],[1710024433,null],[1710024434,null],[1710024435,null],[1710024436,null],[1710024437,null],[1710024438,null],[1710024439,null],[1710024440,null],[1710024441,null],[1710024442,null],[1710024443,null],[1710024444,null],[1710024445,null],[1710024446,null],[1710024447,null],[1710024448,null],[1710024449,null],[1710024450,null],[1710024451,null],[1710024452,null],[1710024453,null],[1710024454,null],[1710024455,null],[1710024456,null],[1710024457,null],[1710024458,null],[1710024459,null],[1710024460,null],[1710024461,null],[1710024462,null],[1710024463,null],[1710024464,null],[1710024465,null],[1710024466,null],[1710024467,null],[1710024468,null],[1710024469,null],[1710024470,null],[1710024471,null],[1710024472,null],[1710024473,null],[1710024474,null],[1710024475,null],[1710024476,null],[1710024477,null],[1710024478,null],[1710024479,null],[1710024480,null],[1710024481,null],[1710024482,null],[1710024483,null],[1710024484,null],[1710024485,null],[1710024486,null],[1710024487,null],[1710024488,null],[1710024489,null],[1710024490,null],[1710024491,null],[1710024492,null],[1710024493,null],[1710024494,null],[1710024495,null],[1710024496,null],[1710024497,null],[1710024498,null],[1710024499,null],[1710024500,null],[1710024501,null],[1710024502,null],[1710024503,null],[1710024504,null],[1710024505,null],[1710024506,null],[1710024507,null],[1710024508,null],[1710024509,null],[1710024510,null],[1710024511,null],[1710024512,null],[1710024513,null],[1710024514,null],[1710024515,null],[1710024516,null],[1710024517,null],[1710024518,null],[1710024519,null],[1710024520,null],[1710024521,null],[1710024522,null],[1710024523,null],[1710024524,null],[1710024525,null],[1710024526,null],[1710024527,null],[1710024528,null],[1710024529,null],[1710024530,null],[1710024531,null],[1710024532,null],[1710024533,null],[1710024534,null],[1710024535,null],[1710024536,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([[1710024249,[25,25,0]],[1710024250,[1,1,0]],[1710024251,[25,25,0]],[1710024252,[1,1,0]],[1710024253,[71,61,10]],[1710024254,[3,3,0]],[1710024255,[6,6,0]],[1710024256,[9,9,0]],[1710024257,[11,11,0]],[1710024258,[13,13,0]],[1710024259,[18,18,0]],[1710024260,[19,19,0]],[1710024261,[24,24,0]],[1710024262,[26,26,0]],[1710024263,[27,27,0]],[1710024264,[32,32,0]],[1710024265,[34,34,0]],[1710024266,[37,37,0]],[1710024267,[39,39,0]],[1710024268,[43,43,0]],[1710024269,[44,44,0]],[1710024270,[48,48,0]],[1710024271,[50,50,0]],[1710024272,[54,54,0]],[1710024273,[57,57,0]],[1710024274,[60,60,0]],[1710024275,[61,61,0]],[1710024276,[65,65,0]],[1710024277,[67,67,0]],[1710024278,[70,70,0]],[1710024279,[74,74,0]],[1710024280,[76,76,0]],[1710024281,[80,80,0]],[1710024282,[81,81,0]],[1710024283,[84,84,0]],[1710024284,[87,87,0]],[1710024285,[91,91,0]],[1710024286,[92,92,0]],[1710024287,[96,96,0]],[1710024288,[98,98,0]],[1710024289,[101,101,0]],[1710024290,[105,105,0]],[1710024291,[107,107,0]],[1710024292,[110,110,0]],[1710024293,[113,113,0]],[1710024294,[116,116,0]],[1710024295,[118,118,0]],[1710024296,[121,121,0]],[1710024297,[124,124,0]],[1710024298,[126,126,0]],[1710024299,[129,129,0]],[1710024300,[133,133,0]],[1710024301,[134,134,0]],[1710024302,[138,138,0]],[1710024303,[141,141,0]],[1710024304,[143,143,0]],[1710024305,[146,146,0]],[1710024306,[149,149,0]],[1710024307,[152,152,0]],[1710024308,[154,154,0]],[1710024309,[158,158,0]],[1710024310,[160,160,0]],[1710024311,[164,164,0]],[1710024312,[165,165,0]],[1710024313,[170,170,0]],[1710024314,[172,172,0]],[1710024315,[174,174,0]],[1710024316,[176,176,0]],[1710024317,[181,181,0]],[1710024318,[183,183,0]],[1710024319,[185,185,0]],[1710024320,[189,189,0]],[1710024321,[191,191,0]],[1710024322,[194,194,0]],[1710024323,[196,196,0]],[1710024324,[200,200,0]],[1710024325,[202,202,0]],[1710024326,[206,206,0]],[1710024327,[207,207,0]],[1710024328,[211,211,0]],[1710024329,[213,213,0]],[1710024330,[217,217,0]],[1710024331,[220,220,0]],[1710024332,[222,222,0]],[1710024333,[225,225,0]],[1710024334,[227,227,0]],[1710024335,[231,231,0]],[1710024336,[233,233,0]],[1710024337,[236,236,0]],[1710024338,[239,239,0]],[1710024339,[242,242,0]],[1710024340,[244,244,0]],[1710024341,[248,248,0]],[1710024342,[251,251,0]],[1710024343,[252,252,0]],[1710024344,[256,256,0]],[1710024345,[259,259,0]],[1710024346,[262,262,0]],[1710024347,[264,264,0]],[1710024348,[267,267,0]],[1710024349,[269,269,0]],[1710024350,[272,272,0]],[1710024351,[276,276,0]],[1710024352,[278,278,0]],[1710024353,[282,282,0]],[1710024354,[284,284,0]],[1710024355,[286,286,0]],[1710024356,[290,290,0]],[1710024357,[291,291,0]],[1710024358,[296,296,0]],[1710024359,[298,298,0]],[1710024360,[300,300,0]],[1710024361,[304,304,0]],[1710024362,[306,306,0]],[1710024363,[309,309,0]],[1710024364,[312,312,0]],[1710024365,[315,315,0]],[1710024366,[317,317,0]],[1710024367,[321,321,0]],[1710024368,[322,322,0]],[1710024369,[327,327,0]],[1710024370,[329,329,0]],[1710024371,[332,332,0]],[1710024372,[335,335,0]],[1710024373,[338,338,0]],[1710024374,[339,339,0]],[1710024375,[341,341,0]],[1710024376,[340,340,0]],[1710024377,[340,340,0]],[1710024378,[340,340,0]],[1710024379,[340,340,0]],[1710024380,[340,340,0]],[1710024381,[340,340,0]],[1710024382,[340,340,0]],[1710024383,[340,340,0]],[1710024384,[340,340,0]],[1710024385,[340,340,0]],[1710024386,[340,340,0]],[1710024387,[340,340,0]],[1710024388,[340,340,0]],[1710024389,[340,280,60]],[1710024390,[340,170,170]],[1710024391,[340,6,334]],[1710024392,[339,0,339]],[1710024393,[340,0,340]],[1710024394,[341,0,341]],[1710024395,[340,0,340]],[1710024396,[340,0,340]],[1710024397,[340,0,340]],[1710024398,[340,0,340]],[1710024399,[340,0,340]],[1710024400,[340,0,340]],[1710024401,[340,0,340]],[1710024402,[339,0,339]],[1710024403,[341,0,341]],[1710024404,[340,0,340]],[1710024405,[340,0,340]],[1710024406,[340,0,340]],[1710024407,[340,0,340]],[1710024408,[340,0,340]],[1710024409,[339,0,339]],[1710024410,[341,0,341]],[1710024411,[339,0,339]],[1710024412,[341,0,341]],[1710024413,[340,0,340]],[1710024414,[340,0,340]],[1710024415,[340,0,340]],[1710024416,[340,0,340]],[1710024417,[339,0,339]],[1710024418,[340,0,340]],[1710024419,[340,0,340]],[1710024420,[341,0,341]],[1710024421,[340,0,340]],[1710024422,[340,0,340]],[1710024423,[339,0,339]],[1710024424,[341,0,341]],[1710024425,[340,0,340]],[1710024426,[340,0,340]],[1710024427,[340,0,340]],[1710024428,[340,0,340]],[1710024429,[339,0,339]],[1710024430,[340,0,340]],[1710024431,[341,0,341]],[1710024432,[340,0,340]],[1710024433,[340,0,340]],[1710024434,[340,0,340]],[1710024435,[340,0,340]],[1710024436,[340,0,340]],[1710024437,[340,0,340]],[1710024438,[340,0,340]],[1710024439,[339,0,339]],[1710024440,[340,0,340]],[1710024441,[340,0,340]],[1710024442,[341,0,341]],[1710024443,[340,0,340]],[1710024444,[340,0,340]],[1710024445,[339,0,339]],[1710024446,[341,0,341]],[1710024447,[340,0,340]],[1710024448,[339,0,339]],[1710024449,[341,0,341]],[1710024450,[340,0,340]],[1710024451,[339,0,339]],[1710024452,[341,0,341]],[1710024453,[339,0,339]],[1710024454,[341,0,341]],[1710024455,[340,0,340]],[1710024456,[340,0,340]],[1710024457,[340,0,340]],[1710024458,[340,0,340]],[1710024459,[340,0,340]],[1710024460,[340,0,340]],[1710024461,[339,0,339]],[1710024462,[341,0,341]],[1710024463,[340,0,340]],[1710024464,[340,0,340]],[1710024465,[340,0,340]],[1710024466,[340,0,340]],[1710024467,[339,0,339]],[1710024468,[341,0,341]],[1710024469,[340,0,340]],[1710024470,[339,0,339]],[1710024471,[341,0,341]],[1710024472,[340,0,340]],[1710024473,[340,0,340]],[1710024474,[340,0,340]],[1710024475,[340,0,340]],[1710024476,[340,0,340]],[1710024477,[340,0,340]],[1710024478,[340,0,340]],[1710024479,[340,0,340]],[1710024480,[339,0,339]],[1710024481,[341,0,341]],[1710024482,[340,0,340]],[1710024483,[340,0,340]],[1710024484,[340,0,340]],[1710024485,[340,0,340]],[1710024486,[339,0,339]],[1710024487,[341,0,341]],[1710024488,[339,0,339]],[1710024489,[341,0,341]],[1710024490,[339,0,339]],[1710024491,[341,0,341]],[1710024492,[340,0,340]],[1710024493,[340,0,340]],[1710024494,[163,0,163]],[1710024495,[0,0,0]],[1710024496,[0,0,0]],[1710024497,[0,0,0]],[1710024498,[0,0,0]],[1710024499,[0,0,0]],[1710024500,[0,0,0]],[1710024501,[0,0,0]],[1710024502,[0,0,0]],[1710024503,[0,0,0]],[1710024504,[0,0,0]],[1710024505,[0,0,0]],[1710024506,[0,0,0]],[1710024507,[0,0,0]],[1710024508,[0,0,0]],[1710024509,[0,0,0]],[1710024510,[0,0,0]],[1710024511,[0,0,0]],[1710024512,[0,0,0]],[1710024513,[0,0,0]],[1710024514,[0,0,0]],[1710024515,[0,0,0]],[1710024516,[0,0,0]],[1710024517,[0,0,0]],[1710024518,[0,0,0]],[1710024519,[0,0,0]],[1710024520,[0,0,0]],[1710024521,[0,0,0]],[1710024522,[0,0,0]],[1710024523,[0,0,0]],[1710024524,[0,0,0]],[1710024525,[0,0,0]],[1710024526,[0,0,0]],[1710024527,[0,0,0]],[1710024528,[0,0,0]],[1710024529,[0,0,0]],[1710024530,[0,0,0]],[1710024531,[0,0,0]],[1710024532,[0,0,0]],[1710024533,[0,0,0]],[1710024534,[0,0,0]],[1710024535,[0,0,0]],[1710024536,[0,0,0]]]);
var requestsChart = new Highcharts.StockChart({
chart: {
renderTo: 'requests',
zoomType: 'x',
marginBottom: 60
},
credits: { enabled: false },
legend: {
enabled: true,
floating: true,
y: -65,
borderWidth: 0,
itemStyle: { fontWeight: "normal" },
symbolRadius: 0
},
title: { text: 'A title to let highcharts reserve the place for the title set later' },
navigator: {
maskInside: false
},
rangeSelector: {
buttonSpacing: 0,
buttonTheme: {
fill: '#CFC9C6',
padding: 1,
stroke: '#000000',
'stroke-width': 0.25,
style: {