-
Notifications
You must be signed in to change notification settings - Fork 923
/
Copy pathindex.html
1220 lines (1150 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-02-24 01:17:52 GMT</span>
</span>
<span class="simulation-information-item">
<span class="simulation-information-label">Duration: </span>
<span>4m 45s </span>
</span>
<span class="simulation-tooltip simulation-information-item description" title="Description" data-content="Rinha de Backend - 2024/Q1: Crébito - hiroshimorowaka">
<span class="simulation-information-label">Description: </span>
<span>Rinha de Backend - 2024/Q1: Crébito - hiroshimorowaka</span>
</span>
</div>
</div>
</div>
</div>
<div id="statistics_table_container">
<div id="stats" class="statistics extensible-geant collapsed">
<div class="title">
<div id="statistics_title" class="title_base"><span class="title_base_stats">Stats</span><span class="expand-table">Fixed height</span><span id="toggle-stats" class="toggle-table"></span><span class="collapse-table">Full size</span></div>
<div class="right">
<button class="statistics-button expand-all-button">Expand all groups</button>
<button class="statistics-button collapse-all-button">Collapse all groups</button>
<button id="statistics_full_screen" class="statistics-button" onclick="openStatisticsTableModal()"><img alt="Fullscreen" src="style/fullscreen.svg"></button>
</div>
</div>
<div class="scrollable">
<table id="container_statistics_head" class="statistics-in extensible-geant">
<thead>
<tr>
<th rowspan="2" id="col-1" class="header sortable sorted-up"><span>Requests</span></th>
<th colspan="5" class="header"><span class="executions">Executions</span></th>
<th colspan="8" class="header"><span class="response-time">Response Time (ms)</span></th>
</tr>
<tr>
<th id="col-2" class="header sortable"><span>Total</span></th>
<th id="col-3" class="header sortable"><span>OK</span></th>
<th id="col-4" class="header sortable"><span>KO</span></th>
<th id="col-5" class="header sortable"><span>% KO</span></th>
<th id="col-6" class="header sortable"><span><abbr title="Count of events per second">Cnt/s</abbr></span></th>
<th id="col-7" class="header sortable"><span>Min</span></th>
<th id="col-8" class="header sortable"><span>50th pct</span></th>
<th id="col-9" class="header sortable"><span>75th pct</span></th>
<th id="col-10" class="header sortable"><span>95th pct</span></th>
<th id="col-11" class="header sortable"><span>99th pct</span></th>
<th id="col-12" class="header sortable"><span>Max</span></th>
<th id="col-13" class="header sortable"><span>Mean</span></th>
<th id="col-14" class="header sortable"><span><abbr title="Standard Deviation">Std Dev</abbr></span></th>
</tr>
</thead>
<tbody></tbody>
</table>
<table id="container_statistics_body" class="statistics-in extensible-geant">
<tbody></tbody>
</table>
</div>
</div>
</div>
<dialog id="statistics_table_modal" class="statistics-table-modal">
<div class="statistics-table-modal-header"><button class="button-modal" onclick="closeStatisticsTableModal()"><img alt="Close" src="style/close.svg"></button></div>
<div class="statistics-table-modal-container">
<div id="statistics_table_modal_content" class="statistics-table-modal-content"></div>
</div>
</dialog>
<script>
function openStatisticsTableModal () {
const statsTable = document.getElementById("stats");
const statsTableModal = document.getElementById("statistics_table_modal");
const fullScreenButton = document.getElementById("statistics_full_screen");
fullScreenButton.disabled = true;
if (typeof statsTableModal.showModal === "function") {
const statsTableModalContent = document.getElementById("statistics_table_modal_content");
statsTableModalContent.innerHTML = "";
statsTableModalContent.appendChild(statsTable);
statsTableModal.showModal();
statsTableModal.addEventListener("close", function () {
const container = document.getElementById("statistics_table_container");
container.appendChild(statsTable);
fullScreenButton.disabled = false;
});
} else {
const incompatibleBrowserVersionMessage = document.createElement("div");
incompatibleBrowserVersionMessage.innerText = "Sorry, the <dialog> API is not supported by this browser.";
statsTable.insertBefore(incompatibleBrowserVersionMessage, statsTable.children[0]);
}
}
function closeStatisticsTableModal () {
const statsTableModal = document.getElementById("statistics_table_modal");
statsTableModal.close();
}
</script>
<div class="statistics extensible-geant collapsed">
<div class="title">
Errors
</div>
<table id="container_errors" class="statistics-in extensible-geant">
<thead>
<tr>
<th id="error-col-1" class="header sortable"><span>Error</span></th>
<th id="error-col-2" class="header sortable"><span>Count</span></th>
<th id="error-col-3" class="header sortable"><span>Percentage</span></th>
</tr>
</thead>
<tbody>
<tr>
<td class="error-col-1 total ko">status.find.in(200,422), but actually found 502<span class="value" style="display:none">0</span></td>
<td class="value error-col-2 total ko">16725</td>
<td class="value error-col-3 total ko">62.458 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">status.find.in(200), but actually found 502<span class="value" style="display:none">1</span></td>
<td class="value error-col-2 total ko">8364</td>
<td class="value error-col-3 total ko">31.235 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">status.find.in([200, 209], 304), found 502<span class="value" style="display:none">2</span></td>
<td class="value error-col-2 total ko">788</td>
<td class="value error-col-3 total ko">2.943 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">status.find.in(200,422), but actually found 501<span class="value" style="display:none">3</span></td>
<td class="value error-col-2 total ko">579</td>
<td class="value error-col-3 total ko">2.162 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">status.find.in(200), but actually found 501<span class="value" style="display:none">4</span></td>
<td class="value error-col-2 total ko">307</td>
<td class="value error-col-3 total ko">1.146 %</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">5</span></td>
<td class="value error-col-2 total ko">15</td>
<td class="value error-col-3 total ko">0.056 %</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: [
[1708737473000,0],[1708737474000,0],[1708737475000,0],[1708737476000,0],[1708737477000,0],[1708737478000,2],[1708737479000,2],[1708737480000,5],[1708737481000,4],[1708737482000,5],[1708737483000,6],[1708737484000,7],[1708737485000,8],[1708737486000,8],[1708737487000,10],[1708737488000,10],[1708737489000,12],[1708737490000,12],[1708737491000,14],[1708737492000,14],[1708737493000,15],[1708737494000,16],[1708737495000,17],[1708737496000,17],[1708737497000,19],[1708737498000,20],[1708737499000,20],[1708737500000,22],[1708737501000,22],[1708737502000,23],[1708737503000,25],[1708737504000,25],[1708737505000,26],[1708737506000,26],[1708737507000,28],[1708737508000,29],[1708737509000,30],[1708737510000,30],[1708737511000,32],[1708737512000,32],[1708737513000,33],[1708737514000,34],[1708737515000,35],[1708737516000,36],[1708737517000,37],[1708737518000,38],[1708737519000,39],[1708737520000,39],[1708737521000,41],[1708737522000,41],[1708737523000,43],[1708737524000,43],[1708737525000,44],[1708737526000,45],[1708737527000,46],[1708737528000,47],[1708737529000,48],[1708737530000,48],[1708737531000,50],[1708737532000,50],[1708737533000,52],[1708737534000,52],[1708737535000,53],[1708737536000,54],[1708737537000,56],[1708737538000,55],[1708737539000,57],[1708737540000,58],[1708737541000,59],[1708737542000,59],[1708737543000,61],[1708737544000,61],[1708737545000,63],[1708737546000,63],[1708737547000,64],[1708737548000,65],[1708737549000,66],[1708737550000,67],[1708737551000,68],[1708737552000,68],[1708737553000,70],[1708737554000,70],[1708737555000,72],[1708737556000,72],[1708737557000,73],[1708737558000,74],[1708737559000,75],[1708737560000,76],[1708737561000,77],[1708737562000,78],[1708737563000,79],[1708737564000,79],[1708737565000,81],[1708737566000,81],[1708737567000,82],[1708737568000,83],[1708737569000,85],[1708737570000,85],[1708737571000,86],[1708737572000,86],[1708737573000,88],[1708737574000,89],[1708737575000,89],[1708737576000,91],[1708737577000,91],[1708737578000,92],[1708737579000,94],[1708737580000,94],[1708737581000,95],[1708737582000,96],[1708737583000,97],[1708737584000,97],[1708737585000,99],[1708737586000,100],[1708737587000,102],[1708737588000,102],[1708737589000,103],[1708737590000,104],[1708737591000,105],[1708737592000,106],[1708737593000,107],[1708737594000,108],[1708737595000,108],[1708737596000,110],[1708737597000,111],[1708737598000,111],[1708737599000,110],[1708737600000,111],[1708737601000,111],[1708737602000,111],[1708737603000,111],[1708737604000,111],[1708737605000,111],[1708737606000,111],[1708737607000,111],[1708737608000,110],[1708737609000,111],[1708737610000,111],[1708737611000,111],[1708737612000,111],[1708737613000,111],[1708737614000,111],[1708737615000,111],[1708737616000,111],[1708737617000,111],[1708737618000,110],[1708737619000,111],[1708737620000,110],[1708737621000,111],[1708737622000,111],[1708737623000,111],[1708737624000,111],[1708737625000,111],[1708737626000,111],[1708737627000,111],[1708737628000,111],[1708737629000,146],[1708737630000,176],[1708737631000,187],[1708737632000,124],[1708737633000,112],[1708737634000,111],[1708737635000,110],[1708737636000,112],[1708737637000,111],[1708737638000,111],[1708737639000,112],[1708737640000,112],[1708737641000,139],[1708737642000,112],[1708737643000,144],[1708737644000,113],[1708737645000,113],[1708737646000,111],[1708737647000,112],[1708737648000,113],[1708737649000,112],[1708737650000,112],[1708737651000,111],[1708737652000,113],[1708737653000,114],[1708737654000,125],[1708737655000,115],[1708737656000,114],[1708737657000,115],[1708737658000,114],[1708737659000,114],[1708737660000,114],[1708737661000,115],[1708737662000,114],[1708737663000,114],[1708737664000,115],[1708737665000,132],[1708737666000,116],[1708737667000,116],[1708737668000,116],[1708737669000,116],[1708737670000,116],[1708737671000,116],[1708737672000,117],[1708737673000,117],[1708737674000,116],[1708737675000,116],[1708737676000,116],[1708737677000,117],[1708737678000,117],[1708737679000,117],[1708737680000,116],[1708737681000,116],[1708737682000,117],[1708737683000,115],[1708737684000,117],[1708737685000,116],[1708737686000,117],[1708737687000,153],[1708737688000,131],[1708737689000,118],[1708737690000,116],[1708737691000,117],[1708737692000,116],[1708737693000,116],[1708737694000,117],[1708737695000,117],[1708737696000,117],[1708737697000,116],[1708737698000,117],[1708737699000,133],[1708737700000,117],[1708737701000,118],[1708737702000,117],[1708737703000,115],[1708737704000,117],[1708737705000,116],[1708737706000,116],[1708737707000,117],[1708737708000,116],[1708737709000,117],[1708737710000,116],[1708737711000,129],[1708737712000,116],[1708737713000,115],[1708737714000,114],[1708737715000,115],[1708737716000,115],[1708737717000,113],[1708737718000,4],[1708737719000,4],[1708737720000,4],[1708737721000,4],[1708737722000,4],[1708737723000,4],[1708737724000,3],[1708737725000,2],[1708737726000,2],[1708737727000,2],[1708737728000,2],[1708737729000,2],[1708737730000,2],[1708737731000,2],[1708737732000,2],[1708737733000,2],[1708737734000,2],[1708737735000,2],[1708737736000,2],[1708737737000,2],[1708737738000,2],[1708737739000,2],[1708737740000,2],[1708737741000,2],[1708737742000,2],[1708737743000,2],[1708737744000,2],[1708737745000,2],[1708737746000,1],[1708737747000,1],[1708737748000,1],[1708737749000,1],[1708737750000,1],[1708737751000,1],[1708737752000,1],[1708737753000,1],[1708737754000,1],[1708737755000,1],[1708737756000,1],[1708737757000,1],[1708737758000,1]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#68b65c',
name: 'débitos',
data: [
[1708737473000,0],[1708737474000,0],[1708737475000,0],[1708737476000,0],[1708737477000,0],[1708737478000,2],[1708737479000,4],[1708737480000,6],[1708737481000,7],[1708737482000,9],[1708737483000,11],[1708737484000,13],[1708737485000,15],[1708737486000,16],[1708737487000,19],[1708737488000,20],[1708737489000,22],[1708737490000,25],[1708737491000,25],[1708737492000,28],[1708737493000,29],[1708737494000,31],[1708737495000,33],[1708737496000,35],[1708737497000,37],[1708737498000,38],[1708737499000,40],[1708737500000,42],[1708737501000,44],[1708737502000,46],[1708737503000,47],[1708737504000,50],[1708737505000,51],[1708737506000,53],[1708737507000,55],[1708737508000,56],[1708737509000,59],[1708737510000,60],[1708737511000,62],[1708737512000,64],[1708737513000,66],[1708737514000,68],[1708737515000,69],[1708737516000,71],[1708737517000,74],[1708737518000,74],[1708737519000,77],[1708737520000,79],[1708737521000,80],[1708737522000,82],[1708737523000,84],[1708737524000,86],[1708737525000,88],[1708737526000,89],[1708737527000,92],[1708737528000,93],[1708737529000,95],[1708737530000,97],[1708737531000,99],[1708737532000,102],[1708737533000,102],[1708737534000,105],[1708737535000,106],[1708737536000,108],[1708737537000,110],[1708737538000,112],[1708737539000,114],[1708737540000,116],[1708737541000,118],[1708737542000,120],[1708737543000,121],[1708737544000,124],[1708737545000,125],[1708737546000,127],[1708737547000,128],[1708737548000,129],[1708737549000,132],[1708737550000,133],[1708737551000,135],[1708737552000,137],[1708737553000,139],[1708737554000,141],[1708737555000,142],[1708737556000,144],[1708737557000,147],[1708737558000,147],[1708737559000,150],[1708737560000,152],[1708737561000,153],[1708737562000,155],[1708737563000,157],[1708737564000,159],[1708737565000,161],[1708737566000,162],[1708737567000,165],[1708737568000,166],[1708737569000,168],[1708737570000,170],[1708737571000,171],[1708737572000,174],[1708737573000,175],[1708737574000,177],[1708737575000,179],[1708737576000,181],[1708737577000,183],[1708737578000,184],[1708737579000,186],[1708737580000,188],[1708737581000,190],[1708737582000,192],[1708737583000,193],[1708737584000,196],[1708737585000,197],[1708737586000,200],[1708737587000,202],[1708737588000,203],[1708737589000,206],[1708737590000,207],[1708737591000,209],[1708737592000,211],[1708737593000,213],[1708737594000,215],[1708737595000,216],[1708737596000,218],[1708737597000,221],[1708737598000,221],[1708737599000,221],[1708737600000,220],[1708737601000,221],[1708737602000,221],[1708737603000,221],[1708737604000,221],[1708737605000,220],[1708737606000,221],[1708737607000,220],[1708737608000,221],[1708737609000,221],[1708737610000,221],[1708737611000,221],[1708737612000,221],[1708737613000,220],[1708737614000,221],[1708737615000,220],[1708737616000,221],[1708737617000,221],[1708737618000,220],[1708737619000,221],[1708737620000,221],[1708737621000,221],[1708737622000,221],[1708737623000,221],[1708737624000,221],[1708737625000,221],[1708737626000,221],[1708737627000,221],[1708737628000,221],[1708737629000,295],[1708737630000,357],[1708737631000,370],[1708737632000,244],[1708737633000,222],[1708737634000,221],[1708737635000,221],[1708737636000,222],[1708737637000,220],[1708737638000,222],[1708737639000,221],[1708737640000,221],[1708737641000,277],[1708737642000,223],[1708737643000,295],[1708737644000,222],[1708737645000,222],[1708737646000,223],[1708737647000,222],[1708737648000,223],[1708737649000,222],[1708737650000,221],[1708737651000,223],[1708737652000,222],[1708737653000,222],[1708737654000,256],[1708737655000,223],[1708737656000,223],[1708737657000,223],[1708737658000,222],[1708737659000,224],[1708737660000,223],[1708737661000,224],[1708737662000,223],[1708737663000,223],[1708737664000,223],[1708737665000,258],[1708737666000,223],[1708737667000,223],[1708737668000,223],[1708737669000,222],[1708737670000,224],[1708737671000,223],[1708737672000,223],[1708737673000,224],[1708737674000,223],[1708737675000,225],[1708737676000,225],[1708737677000,225],[1708737678000,225],[1708737679000,226],[1708737680000,225],[1708737681000,225],[1708737682000,225],[1708737683000,225],[1708737684000,226],[1708737685000,225],[1708737686000,226],[1708737687000,299],[1708737688000,271],[1708737689000,225],[1708737690000,225],[1708737691000,225],[1708737692000,224],[1708737693000,224],[1708737694000,225],[1708737695000,225],[1708737696000,224],[1708737697000,225],[1708737698000,226],[1708737699000,262],[1708737700000,226],[1708737701000,226],[1708737702000,223],[1708737703000,224],[1708737704000,225],[1708737705000,223],[1708737706000,225],[1708737707000,225],[1708737708000,223],[1708737709000,225],[1708737710000,225],[1708737711000,247],[1708737712000,224],[1708737713000,225],[1708737714000,223],[1708737715000,224],[1708737716000,224],[1708737717000,220],[1708737718000,3],[1708737719000,3],[1708737720000,3],[1708737721000,3],[1708737722000,3],[1708737723000,3],[1708737724000,3],[1708737725000,3],[1708737726000,3],[1708737727000,3],[1708737728000,3],[1708737729000,3],[1708737730000,3],[1708737731000,3],[1708737732000,3],[1708737733000,3],[1708737734000,3],[1708737735000,2],[1708737736000,1],[1708737737000,1],[1708737738000,1],[1708737739000,1],[1708737740000,1],[1708737741000,1],[1708737742000,1],[1708737743000,1],[1708737744000,1],[1708737745000,1],[1708737746000,1],[1708737747000,1],[1708737748000,1],[1708737749000,1],[1708737750000,1],[1708737751000,1],[1708737752000,1],[1708737753000,1],[1708737754000,1],[1708737755000,1],[1708737756000,1],[1708737757000,0],[1708737758000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#f15b4f',
name: 'extratos',
data: [
[1708737473000,0],[1708737474000,0],[1708737475000,0],[1708737476000,0],[1708737477000,0],[1708737478000,2],[1708737479000,1],[1708737480000,2],[1708737481000,1],[1708737482000,1],[1708737483000,2],[1708737484000,1],[1708737485000,2],[1708737486000,2],[1708737487000,1],[1708737488000,2],[1708737489000,2],[1708737490000,2],[1708737491000,2],[1708737492000,2],[1708737493000,2],[1708737494000,2],[1708737495000,3],[1708737496000,2],[1708737497000,3],[1708737498000,2],[1708737499000,3],[1708737500000,2],[1708737501000,3],[1708737502000,3],[1708737503000,3],[1708737504000,3],[1708737505000,3],[1708737506000,3],[1708737507000,3],[1708737508000,4],[1708737509000,3],[1708737510000,3],[1708737511000,4],[1708737512000,3],[1708737513000,4],[1708737514000,4],[1708737515000,4],[1708737516000,4],[1708737517000,4],[1708737518000,4],[1708737519000,4],[1708737520000,4],[1708737521000,4],[1708737522000,4],[1708737523000,5],[1708737524000,4],[1708737525000,5],[1708737526000,5],[1708737527000,4],[1708737528000,5],[1708737529000,5],[1708737530000,5],[1708737531000,5],[1708737532000,5],[1708737533000,5],[1708737534000,5],[1708737535000,6],[1708737536000,5],[1708737537000,6],[1708737538000,5],[1708737539000,6],[1708737540000,5],[1708737541000,6],[1708737542000,6],[1708737543000,6],[1708737544000,6],[1708737545000,6],[1708737546000,6],[1708737547000,6],[1708737548000,7],[1708737549000,6],[1708737550000,6],[1708737551000,7],[1708737552000,6],[1708737553000,7],[1708737554000,7],[1708737555000,7],[1708737556000,7],[1708737557000,7],[1708737558000,7],[1708737559000,7],[1708737560000,7],[1708737561000,7],[1708737562000,7],[1708737563000,8],[1708737564000,7],[1708737565000,8],[1708737566000,8],[1708737567000,7],[1708737568000,8],[1708737569000,8],[1708737570000,8],[1708737571000,8],[1708737572000,8],[1708737573000,8],[1708737574000,8],[1708737575000,9],[1708737576000,8],[1708737577000,9],[1708737578000,8],[1708737579000,9],[1708737580000,8],[1708737581000,9],[1708737582000,9],[1708737583000,9],[1708737584000,9],[1708737585000,9],[1708737586000,9],[1708737587000,9],[1708737588000,10],[1708737589000,9],[1708737590000,9],[1708737591000,10],[1708737592000,9],[1708737593000,10],[1708737594000,10],[1708737595000,10],[1708737596000,10],[1708737597000,10],[1708737598000,10],[1708737599000,10],[1708737600000,10],[1708737601000,10],[1708737602000,10],[1708737603000,10],[1708737604000,10],[1708737605000,10],[1708737606000,10],[1708737607000,10],[1708737608000,10],[1708737609000,10],[1708737610000,10],[1708737611000,10],[1708737612000,10],[1708737613000,10],[1708737614000,10],[1708737615000,10],[1708737616000,10],[1708737617000,10],[1708737618000,10],[1708737619000,10],[1708737620000,10],[1708737621000,10],[1708737622000,10],[1708737623000,10],[1708737624000,10],[1708737625000,10],[1708737626000,10],[1708737627000,10],[1708737628000,10],[1708737629000,11],[1708737630000,16],[1708737631000,18],[1708737632000,12],[1708737633000,10],[1708737634000,10],[1708737635000,10],[1708737636000,10],[1708737637000,10],[1708737638000,10],[1708737639000,10],[1708737640000,10],[1708737641000,12],[1708737642000,10],[1708737643000,12],[1708737644000,10],[1708737645000,10],[1708737646000,10],[1708737647000,10],[1708737648000,10],[1708737649000,10],[1708737650000,10],[1708737651000,10],[1708737652000,10],[1708737653000,10],[1708737654000,11],[1708737655000,10],[1708737656000,10],[1708737657000,10],[1708737658000,10],[1708737659000,10],[1708737660000,10],[1708737661000,10],[1708737662000,10],[1708737663000,10],[1708737664000,10],[1708737665000,11],[1708737666000,10],[1708737667000,10],[1708737668000,10],[1708737669000,10],[1708737670000,10],[1708737671000,10],[1708737672000,10],[1708737673000,10],[1708737674000,10],[1708737675000,10],[1708737676000,10],[1708737677000,10],[1708737678000,10],[1708737679000,10],[1708737680000,10],[1708737681000,10],[1708737682000,10],[1708737683000,10],[1708737684000,10],[1708737685000,10],[1708737686000,10],[1708737687000,12],[1708737688000,11],[1708737689000,11],[1708737690000,11],[1708737691000,11],[1708737692000,11],[1708737693000,11],[1708737694000,11],[1708737695000,11],[1708737696000,11],[1708737697000,11],[1708737698000,11],[1708737699000,12],[1708737700000,11],[1708737701000,11],[1708737702000,11],[1708737703000,11],[1708737704000,11],[1708737705000,11],[1708737706000,11],[1708737707000,11],[1708737708000,11],[1708737709000,11],[1708737710000,11],[1708737711000,12],[1708737712000,11],[1708737713000,11],[1708737714000,11],[1708737715000,11],[1708737716000,11],[1708737717000,10],[1708737718000,1],[1708737719000,1],[1708737720000,1],[1708737721000,1],[1708737722000,1],[1708737723000,1],[1708737724000,1],[1708737725000,1],[1708737726000,1],[1708737727000,1],[1708737728000,1],[1708737729000,1],[1708737730000,1],[1708737731000,1],[1708737732000,1],[1708737733000,1],[1708737734000,1],[1708737735000,1],[1708737736000,1],[1708737737000,1],[1708737738000,1],[1708737739000,1],[1708737740000,1],[1708737741000,1],[1708737742000,1],[1708737743000,1],[1708737744000,1],[1708737745000,1],[1708737746000,1],[1708737747000,1],[1708737748000,0],[1708737749000,0],[1708737750000,0],[1708737751000,0],[1708737752000,0],[1708737753000,0],[1708737754000,0],[1708737755000,0],[1708737756000,0],[1708737757000,0],[1708737758000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FFDD00',
name: 'validações',
data: [
[1708737473000,0],[1708737474000,0],[1708737475000,0],[1708737476000,5],[1708737477000,5],[1708737478000,0],[1708737479000,0],[1708737480000,0],[1708737481000,0],[1708737482000,0],[1708737483000,0],[1708737484000,0],[1708737485000,0],[1708737486000,0],[1708737487000,0],[1708737488000,0],[1708737489000,0],[1708737490000,0],[1708737491000,0],[1708737492000,0],[1708737493000,0],[1708737494000,0],[1708737495000,0],[1708737496000,0],[1708737497000,0],[1708737498000,0],[1708737499000,0],[1708737500000,0],[1708737501000,0],[1708737502000,0],[1708737503000,0],[1708737504000,0],[1708737505000,0],[1708737506000,0],[1708737507000,0],[1708737508000,0],[1708737509000,0],[1708737510000,0],[1708737511000,0],[1708737512000,0],[1708737513000,0],[1708737514000,0],[1708737515000,0],[1708737516000,0],[1708737517000,0],[1708737518000,0],[1708737519000,0],[1708737520000,0],[1708737521000,0],[1708737522000,0],[1708737523000,0],[1708737524000,0],[1708737525000,0],[1708737526000,0],[1708737527000,0],[1708737528000,0],[1708737529000,0],[1708737530000,0],[1708737531000,0],[1708737532000,0],[1708737533000,0],[1708737534000,0],[1708737535000,0],[1708737536000,0],[1708737537000,0],[1708737538000,0],[1708737539000,0],[1708737540000,0],[1708737541000,0],[1708737542000,0],[1708737543000,0],[1708737544000,0],[1708737545000,0],[1708737546000,0],[1708737547000,0],[1708737548000,0],[1708737549000,0],[1708737550000,0],[1708737551000,0],[1708737552000,0],[1708737553000,0],[1708737554000,0],[1708737555000,0],[1708737556000,0],[1708737557000,0],[1708737558000,0],[1708737559000,0],[1708737560000,0],[1708737561000,0],[1708737562000,0],[1708737563000,0],[1708737564000,0],[1708737565000,0],[1708737566000,0],[1708737567000,0],[1708737568000,0],[1708737569000,0],[1708737570000,0],[1708737571000,0],[1708737572000,0],[1708737573000,0],[1708737574000,0],[1708737575000,0],[1708737576000,0],[1708737577000,0],[1708737578000,0],[1708737579000,0],[1708737580000,0],[1708737581000,0],[1708737582000,0],[1708737583000,0],[1708737584000,0],[1708737585000,0],[1708737586000,0],[1708737587000,0],[1708737588000,0],[1708737589000,0],[1708737590000,0],[1708737591000,0],[1708737592000,0],[1708737593000,0],[1708737594000,0],[1708737595000,0],[1708737596000,0],[1708737597000,0],[1708737598000,0],[1708737599000,0],[1708737600000,0],[1708737601000,0],[1708737602000,0],[1708737603000,0],[1708737604000,0],[1708737605000,0],[1708737606000,0],[1708737607000,0],[1708737608000,0],[1708737609000,0],[1708737610000,0],[1708737611000,0],[1708737612000,0],[1708737613000,0],[1708737614000,0],[1708737615000,0],[1708737616000,0],[1708737617000,0],[1708737618000,0],[1708737619000,0],[1708737620000,0],[1708737621000,0],[1708737622000,0],[1708737623000,0],[1708737624000,0],[1708737625000,0],[1708737626000,0],[1708737627000,0],[1708737628000,0],[1708737629000,0],[1708737630000,0],[1708737631000,0],[1708737632000,0],[1708737633000,0],[1708737634000,0],[1708737635000,0],[1708737636000,0],[1708737637000,0],[1708737638000,0],[1708737639000,0],[1708737640000,0],[1708737641000,0],[1708737642000,0],[1708737643000,0],[1708737644000,0],[1708737645000,0],[1708737646000,0],[1708737647000,0],[1708737648000,0],[1708737649000,0],[1708737650000,0],[1708737651000,0],[1708737652000,0],[1708737653000,0],[1708737654000,0],[1708737655000,0],[1708737656000,0],[1708737657000,0],[1708737658000,0],[1708737659000,0],[1708737660000,0],[1708737661000,0],[1708737662000,0],[1708737663000,0],[1708737664000,0],[1708737665000,0],[1708737666000,0],[1708737667000,0],[1708737668000,0],[1708737669000,0],[1708737670000,0],[1708737671000,0],[1708737672000,0],[1708737673000,0],[1708737674000,0],[1708737675000,0],[1708737676000,0],[1708737677000,0],[1708737678000,0],[1708737679000,0],[1708737680000,0],[1708737681000,0],[1708737682000,0],[1708737683000,0],[1708737684000,0],[1708737685000,0],[1708737686000,0],[1708737687000,0],[1708737688000,0],[1708737689000,0],[1708737690000,0],[1708737691000,0],[1708737692000,0],[1708737693000,0],[1708737694000,0],[1708737695000,0],[1708737696000,0],[1708737697000,0],[1708737698000,0],[1708737699000,0],[1708737700000,0],[1708737701000,0],[1708737702000,0],[1708737703000,0],[1708737704000,0],[1708737705000,0],[1708737706000,0],[1708737707000,0],[1708737708000,0],[1708737709000,0],[1708737710000,0],[1708737711000,0],[1708737712000,0],[1708737713000,0],[1708737714000,0],[1708737715000,0],[1708737716000,0],[1708737717000,0],[1708737718000,0],[1708737719000,0],[1708737720000,0],[1708737721000,0],[1708737722000,0],[1708737723000,0],[1708737724000,0],[1708737725000,0],[1708737726000,0],[1708737727000,0],[1708737728000,0],[1708737729000,0],[1708737730000,0],[1708737731000,0],[1708737732000,0],[1708737733000,0],[1708737734000,0],[1708737735000,0],[1708737736000,0],[1708737737000,0],[1708737738000,0],[1708737739000,0],[1708737740000,0],[1708737741000,0],[1708737742000,0],[1708737743000,0],[1708737744000,0],[1708737745000,0],[1708737746000,0],[1708737747000,0],[1708737748000,0],[1708737749000,0],[1708737750000,0],[1708737751000,0],[1708737752000,0],[1708737753000,0],[1708737754000,0],[1708737755000,0],[1708737756000,0],[1708737757000,0],[1708737758000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00D5FF',
name: 'validação HTTP 404',
data: [
[1708737473000,0],[1708737474000,0],[1708737475000,0],[1708737476000,1],[1708737477000,0],[1708737478000,0],[1708737479000,0],[1708737480000,0],[1708737481000,0],[1708737482000,0],[1708737483000,0],[1708737484000,0],[1708737485000,0],[1708737486000,0],[1708737487000,0],[1708737488000,0],[1708737489000,0],[1708737490000,0],[1708737491000,0],[1708737492000,0],[1708737493000,0],[1708737494000,0],[1708737495000,0],[1708737496000,0],[1708737497000,0],[1708737498000,0],[1708737499000,0],[1708737500000,0],[1708737501000,0],[1708737502000,0],[1708737503000,0],[1708737504000,0],[1708737505000,0],[1708737506000,0],[1708737507000,0],[1708737508000,0],[1708737509000,0],[1708737510000,0],[1708737511000,0],[1708737512000,0],[1708737513000,0],[1708737514000,0],[1708737515000,0],[1708737516000,0],[1708737517000,0],[1708737518000,0],[1708737519000,0],[1708737520000,0],[1708737521000,0],[1708737522000,0],[1708737523000,0],[1708737524000,0],[1708737525000,0],[1708737526000,0],[1708737527000,0],[1708737528000,0],[1708737529000,0],[1708737530000,0],[1708737531000,0],[1708737532000,0],[1708737533000,0],[1708737534000,0],[1708737535000,0],[1708737536000,0],[1708737537000,0],[1708737538000,0],[1708737539000,0],[1708737540000,0],[1708737541000,0],[1708737542000,0],[1708737543000,0],[1708737544000,0],[1708737545000,0],[1708737546000,0],[1708737547000,0],[1708737548000,0],[1708737549000,0],[1708737550000,0],[1708737551000,0],[1708737552000,0],[1708737553000,0],[1708737554000,0],[1708737555000,0],[1708737556000,0],[1708737557000,0],[1708737558000,0],[1708737559000,0],[1708737560000,0],[1708737561000,0],[1708737562000,0],[1708737563000,0],[1708737564000,0],[1708737565000,0],[1708737566000,0],[1708737567000,0],[1708737568000,0],[1708737569000,0],[1708737570000,0],[1708737571000,0],[1708737572000,0],[1708737573000,0],[1708737574000,0],[1708737575000,0],[1708737576000,0],[1708737577000,0],[1708737578000,0],[1708737579000,0],[1708737580000,0],[1708737581000,0],[1708737582000,0],[1708737583000,0],[1708737584000,0],[1708737585000,0],[1708737586000,0],[1708737587000,0],[1708737588000,0],[1708737589000,0],[1708737590000,0],[1708737591000,0],[1708737592000,0],[1708737593000,0],[1708737594000,0],[1708737595000,0],[1708737596000,0],[1708737597000,0],[1708737598000,0],[1708737599000,0],[1708737600000,0],[1708737601000,0],[1708737602000,0],[1708737603000,0],[1708737604000,0],[1708737605000,0],[1708737606000,0],[1708737607000,0],[1708737608000,0],[1708737609000,0],[1708737610000,0],[1708737611000,0],[1708737612000,0],[1708737613000,0],[1708737614000,0],[1708737615000,0],[1708737616000,0],[1708737617000,0],[1708737618000,0],[1708737619000,0],[1708737620000,0],[1708737621000,0],[1708737622000,0],[1708737623000,0],[1708737624000,0],[1708737625000,0],[1708737626000,0],[1708737627000,0],[1708737628000,0],[1708737629000,0],[1708737630000,0],[1708737631000,0],[1708737632000,0],[1708737633000,0],[1708737634000,0],[1708737635000,0],[1708737636000,0],[1708737637000,0],[1708737638000,0],[1708737639000,0],[1708737640000,0],[1708737641000,0],[1708737642000,0],[1708737643000,0],[1708737644000,0],[1708737645000,0],[1708737646000,0],[1708737647000,0],[1708737648000,0],[1708737649000,0],[1708737650000,0],[1708737651000,0],[1708737652000,0],[1708737653000,0],[1708737654000,0],[1708737655000,0],[1708737656000,0],[1708737657000,0],[1708737658000,0],[1708737659000,0],[1708737660000,0],[1708737661000,0],[1708737662000,0],[1708737663000,0],[1708737664000,0],[1708737665000,0],[1708737666000,0],[1708737667000,0],[1708737668000,0],[1708737669000,0],[1708737670000,0],[1708737671000,0],[1708737672000,0],[1708737673000,0],[1708737674000,0],[1708737675000,0],[1708737676000,0],[1708737677000,0],[1708737678000,0],[1708737679000,0],[1708737680000,0],[1708737681000,0],[1708737682000,0],[1708737683000,0],[1708737684000,0],[1708737685000,0],[1708737686000,0],[1708737687000,0],[1708737688000,0],[1708737689000,0],[1708737690000,0],[1708737691000,0],[1708737692000,0],[1708737693000,0],[1708737694000,0],[1708737695000,0],[1708737696000,0],[1708737697000,0],[1708737698000,0],[1708737699000,0],[1708737700000,0],[1708737701000,0],[1708737702000,0],[1708737703000,0],[1708737704000,0],[1708737705000,0],[1708737706000,0],[1708737707000,0],[1708737708000,0],[1708737709000,0],[1708737710000,0],[1708737711000,0],[1708737712000,0],[1708737713000,0],[1708737714000,0],[1708737715000,0],[1708737716000,0],[1708737717000,0],[1708737718000,0],[1708737719000,0],[1708737720000,0],[1708737721000,0],[1708737722000,0],[1708737723000,0],[1708737724000,0],[1708737725000,0],[1708737726000,0],[1708737727000,0],[1708737728000,0],[1708737729000,0],[1708737730000,0],[1708737731000,0],[1708737732000,0],[1708737733000,0],[1708737734000,0],[1708737735000,0],[1708737736000,0],[1708737737000,0],[1708737738000,0],[1708737739000,0],[1708737740000,0],[1708737741000,0],[1708737742000,0],[1708737743000,0],[1708737744000,0],[1708737745000,0],[1708737746000,0],[1708737747000,0],[1708737748000,0],[1708737749000,0],[1708737750000,0],[1708737751000,0],[1708737752000,0],[1708737753000,0],[1708737754000,0],[1708737755000,0],[1708737756000,0],[1708737757000,0],[1708737758000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00FF00',
name: 'validação concorrência saldo - 0',
data: [
[1708737473000,0],[1708737474000,0],[1708737475000,1],[1708737476000,0],[1708737477000,0],[1708737478000,0],[1708737479000,0],[1708737480000,0],[1708737481000,0],[1708737482000,0],[1708737483000,0],[1708737484000,0],[1708737485000,0],[1708737486000,0],[1708737487000,0],[1708737488000,0],[1708737489000,0],[1708737490000,0],[1708737491000,0],[1708737492000,0],[1708737493000,0],[1708737494000,0],[1708737495000,0],[1708737496000,0],[1708737497000,0],[1708737498000,0],[1708737499000,0],[1708737500000,0],[1708737501000,0],[1708737502000,0],[1708737503000,0],[1708737504000,0],[1708737505000,0],[1708737506000,0],[1708737507000,0],[1708737508000,0],[1708737509000,0],[1708737510000,0],[1708737511000,0],[1708737512000,0],[1708737513000,0],[1708737514000,0],[1708737515000,0],[1708737516000,0],[1708737517000,0],[1708737518000,0],[1708737519000,0],[1708737520000,0],[1708737521000,0],[1708737522000,0],[1708737523000,0],[1708737524000,0],[1708737525000,0],[1708737526000,0],[1708737527000,0],[1708737528000,0],[1708737529000,0],[1708737530000,0],[1708737531000,0],[1708737532000,0],[1708737533000,0],[1708737534000,0],[1708737535000,0],[1708737536000,0],[1708737537000,0],[1708737538000,0],[1708737539000,0],[1708737540000,0],[1708737541000,0],[1708737542000,0],[1708737543000,0],[1708737544000,0],[1708737545000,0],[1708737546000,0],[1708737547000,0],[1708737548000,0],[1708737549000,0],[1708737550000,0],[1708737551000,0],[1708737552000,0],[1708737553000,0],[1708737554000,0],[1708737555000,0],[1708737556000,0],[1708737557000,0],[1708737558000,0],[1708737559000,0],[1708737560000,0],[1708737561000,0],[1708737562000,0],[1708737563000,0],[1708737564000,0],[1708737565000,0],[1708737566000,0],[1708737567000,0],[1708737568000,0],[1708737569000,0],[1708737570000,0],[1708737571000,0],[1708737572000,0],[1708737573000,0],[1708737574000,0],[1708737575000,0],[1708737576000,0],[1708737577000,0],[1708737578000,0],[1708737579000,0],[1708737580000,0],[1708737581000,0],[1708737582000,0],[1708737583000,0],[1708737584000,0],[1708737585000,0],[1708737586000,0],[1708737587000,0],[1708737588000,0],[1708737589000,0],[1708737590000,0],[1708737591000,0],[1708737592000,0],[1708737593000,0],[1708737594000,0],[1708737595000,0],[1708737596000,0],[1708737597000,0],[1708737598000,0],[1708737599000,0],[1708737600000,0],[1708737601000,0],[1708737602000,0],[1708737603000,0],[1708737604000,0],[1708737605000,0],[1708737606000,0],[1708737607000,0],[1708737608000,0],[1708737609000,0],[1708737610000,0],[1708737611000,0],[1708737612000,0],[1708737613000,0],[1708737614000,0],[1708737615000,0],[1708737616000,0],[1708737617000,0],[1708737618000,0],[1708737619000,0],[1708737620000,0],[1708737621000,0],[1708737622000,0],[1708737623000,0],[1708737624000,0],[1708737625000,0],[1708737626000,0],[1708737627000,0],[1708737628000,0],[1708737629000,0],[1708737630000,0],[1708737631000,0],[1708737632000,0],[1708737633000,0],[1708737634000,0],[1708737635000,0],[1708737636000,0],[1708737637000,0],[1708737638000,0],[1708737639000,0],[1708737640000,0],[1708737641000,0],[1708737642000,0],[1708737643000,0],[1708737644000,0],[1708737645000,0],[1708737646000,0],[1708737647000,0],[1708737648000,0],[1708737649000,0],[1708737650000,0],[1708737651000,0],[1708737652000,0],[1708737653000,0],[1708737654000,0],[1708737655000,0],[1708737656000,0],[1708737657000,0],[1708737658000,0],[1708737659000,0],[1708737660000,0],[1708737661000,0],[1708737662000,0],[1708737663000,0],[1708737664000,0],[1708737665000,0],[1708737666000,0],[1708737667000,0],[1708737668000,0],[1708737669000,0],[1708737670000,0],[1708737671000,0],[1708737672000,0],[1708737673000,0],[1708737674000,0],[1708737675000,0],[1708737676000,0],[1708737677000,0],[1708737678000,0],[1708737679000,0],[1708737680000,0],[1708737681000,0],[1708737682000,0],[1708737683000,0],[1708737684000,0],[1708737685000,0],[1708737686000,0],[1708737687000,0],[1708737688000,0],[1708737689000,0],[1708737690000,0],[1708737691000,0],[1708737692000,0],[1708737693000,0],[1708737694000,0],[1708737695000,0],[1708737696000,0],[1708737697000,0],[1708737698000,0],[1708737699000,0],[1708737700000,0],[1708737701000,0],[1708737702000,0],[1708737703000,0],[1708737704000,0],[1708737705000,0],[1708737706000,0],[1708737707000,0],[1708737708000,0],[1708737709000,0],[1708737710000,0],[1708737711000,0],[1708737712000,0],[1708737713000,0],[1708737714000,0],[1708737715000,0],[1708737716000,0],[1708737717000,0],[1708737718000,0],[1708737719000,0],[1708737720000,0],[1708737721000,0],[1708737722000,0],[1708737723000,0],[1708737724000,0],[1708737725000,0],[1708737726000,0],[1708737727000,0],[1708737728000,0],[1708737729000,0],[1708737730000,0],[1708737731000,0],[1708737732000,0],[1708737733000,0],[1708737734000,0],[1708737735000,0],[1708737736000,0],[1708737737000,0],[1708737738000,0],[1708737739000,0],[1708737740000,0],[1708737741000,0],[1708737742000,0],[1708737743000,0],[1708737744000,0],[1708737745000,0],[1708737746000,0],[1708737747000,0],[1708737748000,0],[1708737749000,0],[1708737750000,0],[1708737751000,0],[1708737752000,0],[1708737753000,0],[1708737754000,0],[1708737755000,0],[1708737756000,0],[1708737757000,0],[1708737758000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#9D00FF',
name: 'validação concorrência transações - c',
data: [
[1708737473000,0],[1708737474000,20],[1708737475000,24],[1708737476000,0],[1708737477000,0],[1708737478000,0],[1708737479000,0],[1708737480000,0],[1708737481000,0],[1708737482000,0],[1708737483000,0],[1708737484000,0],[1708737485000,0],[1708737486000,0],[1708737487000,0],[1708737488000,0],[1708737489000,0],[1708737490000,0],[1708737491000,0],[1708737492000,0],[1708737493000,0],[1708737494000,0],[1708737495000,0],[1708737496000,0],[1708737497000,0],[1708737498000,0],[1708737499000,0],[1708737500000,0],[1708737501000,0],[1708737502000,0],[1708737503000,0],[1708737504000,0],[1708737505000,0],[1708737506000,0],[1708737507000,0],[1708737508000,0],[1708737509000,0],[1708737510000,0],[1708737511000,0],[1708737512000,0],[1708737513000,0],[1708737514000,0],[1708737515000,0],[1708737516000,0],[1708737517000,0],[1708737518000,0],[1708737519000,0],[1708737520000,0],[1708737521000,0],[1708737522000,0],[1708737523000,0],[1708737524000,0],[1708737525000,0],[1708737526000,0],[1708737527000,0],[1708737528000,0],[1708737529000,0],[1708737530000,0],[1708737531000,0],[1708737532000,0],[1708737533000,0],[1708737534000,0],[1708737535000,0],[1708737536000,0],[1708737537000,0],[1708737538000,0],[1708737539000,0],[1708737540000,0],[1708737541000,0],[1708737542000,0],[1708737543000,0],[1708737544000,0],[1708737545000,0],[1708737546000,0],[1708737547000,0],[1708737548000,0],[1708737549000,0],[1708737550000,0],[1708737551000,0],[1708737552000,0],[1708737553000,0],[1708737554000,0],[1708737555000,0],[1708737556000,0],[1708737557000,0],[1708737558000,0],[1708737559000,0],[1708737560000,0],[1708737561000,0],[1708737562000,0],[1708737563000,0],[1708737564000,0],[1708737565000,0],[1708737566000,0],[1708737567000,0],[1708737568000,0],[1708737569000,0],[1708737570000,0],[1708737571000,0],[1708737572000,0],[1708737573000,0],[1708737574000,0],[1708737575000,0],[1708737576000,0],[1708737577000,0],[1708737578000,0],[1708737579000,0],[1708737580000,0],[1708737581000,0],[1708737582000,0],[1708737583000,0],[1708737584000,0],[1708737585000,0],[1708737586000,0],[1708737587000,0],[1708737588000,0],[1708737589000,0],[1708737590000,0],[1708737591000,0],[1708737592000,0],[1708737593000,0],[1708737594000,0],[1708737595000,0],[1708737596000,0],[1708737597000,0],[1708737598000,0],[1708737599000,0],[1708737600000,0],[1708737601000,0],[1708737602000,0],[1708737603000,0],[1708737604000,0],[1708737605000,0],[1708737606000,0],[1708737607000,0],[1708737608000,0],[1708737609000,0],[1708737610000,0],[1708737611000,0],[1708737612000,0],[1708737613000,0],[1708737614000,0],[1708737615000,0],[1708737616000,0],[1708737617000,0],[1708737618000,0],[1708737619000,0],[1708737620000,0],[1708737621000,0],[1708737622000,0],[1708737623000,0],[1708737624000,0],[1708737625000,0],[1708737626000,0],[1708737627000,0],[1708737628000,0],[1708737629000,0],[1708737630000,0],[1708737631000,0],[1708737632000,0],[1708737633000,0],[1708737634000,0],[1708737635000,0],[1708737636000,0],[1708737637000,0],[1708737638000,0],[1708737639000,0],[1708737640000,0],[1708737641000,0],[1708737642000,0],[1708737643000,0],[1708737644000,0],[1708737645000,0],[1708737646000,0],[1708737647000,0],[1708737648000,0],[1708737649000,0],[1708737650000,0],[1708737651000,0],[1708737652000,0],[1708737653000,0],[1708737654000,0],[1708737655000,0],[1708737656000,0],[1708737657000,0],[1708737658000,0],[1708737659000,0],[1708737660000,0],[1708737661000,0],[1708737662000,0],[1708737663000,0],[1708737664000,0],[1708737665000,0],[1708737666000,0],[1708737667000,0],[1708737668000,0],[1708737669000,0],[1708737670000,0],[1708737671000,0],[1708737672000,0],[1708737673000,0],[1708737674000,0],[1708737675000,0],[1708737676000,0],[1708737677000,0],[1708737678000,0],[1708737679000,0],[1708737680000,0],[1708737681000,0],[1708737682000,0],[1708737683000,0],[1708737684000,0],[1708737685000,0],[1708737686000,0],[1708737687000,0],[1708737688000,0],[1708737689000,0],[1708737690000,0],[1708737691000,0],[1708737692000,0],[1708737693000,0],[1708737694000,0],[1708737695000,0],[1708737696000,0],[1708737697000,0],[1708737698000,0],[1708737699000,0],[1708737700000,0],[1708737701000,0],[1708737702000,0],[1708737703000,0],[1708737704000,0],[1708737705000,0],[1708737706000,0],[1708737707000,0],[1708737708000,0],[1708737709000,0],[1708737710000,0],[1708737711000,0],[1708737712000,0],[1708737713000,0],[1708737714000,0],[1708737715000,0],[1708737716000,0],[1708737717000,0],[1708737718000,0],[1708737719000,0],[1708737720000,0],[1708737721000,0],[1708737722000,0],[1708737723000,0],[1708737724000,0],[1708737725000,0],[1708737726000,0],[1708737727000,0],[1708737728000,0],[1708737729000,0],[1708737730000,0],[1708737731000,0],[1708737732000,0],[1708737733000,0],[1708737734000,0],[1708737735000,0],[1708737736000,0],[1708737737000,0],[1708737738000,0],[1708737739000,0],[1708737740000,0],[1708737741000,0],[1708737742000,0],[1708737743000,0],[1708737744000,0],[1708737745000,0],[1708737746000,0],[1708737747000,0],[1708737748000,0],[1708737749000,0],[1708737750000,0],[1708737751000,0],[1708737752000,0],[1708737753000,0],[1708737754000,0],[1708737755000,0],[1708737756000,0],[1708737757000,0],[1708737758000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FF00E1',
name: 'validação concorrência saldo - -25',
data: [
[1708737473000,1],[1708737474000,1],[1708737475000,0],[1708737476000,0],[1708737477000,0],[1708737478000,0],[1708737479000,0],[1708737480000,0],[1708737481000,0],[1708737482000,0],[1708737483000,0],[1708737484000,0],[1708737485000,0],[1708737486000,0],[1708737487000,0],[1708737488000,0],[1708737489000,0],[1708737490000,0],[1708737491000,0],[1708737492000,0],[1708737493000,0],[1708737494000,0],[1708737495000,0],[1708737496000,0],[1708737497000,0],[1708737498000,0],[1708737499000,0],[1708737500000,0],[1708737501000,0],[1708737502000,0],[1708737503000,0],[1708737504000,0],[1708737505000,0],[1708737506000,0],[1708737507000,0],[1708737508000,0],[1708737509000,0],[1708737510000,0],[1708737511000,0],[1708737512000,0],[1708737513000,0],[1708737514000,0],[1708737515000,0],[1708737516000,0],[1708737517000,0],[1708737518000,0],[1708737519000,0],[1708737520000,0],[1708737521000,0],[1708737522000,0],[1708737523000,0],[1708737524000,0],[1708737525000,0],[1708737526000,0],[1708737527000,0],[1708737528000,0],[1708737529000,0],[1708737530000,0],[1708737531000,0],[1708737532000,0],[1708737533000,0],[1708737534000,0],[1708737535000,0],[1708737536000,0],[1708737537000,0],[1708737538000,0],[1708737539000,0],[1708737540000,0],[1708737541000,0],[1708737542000,0],[1708737543000,0],[1708737544000,0],[1708737545000,0],[1708737546000,0],[1708737547000,0],[1708737548000,0],[1708737549000,0],[1708737550000,0],[1708737551000,0],[1708737552000,0],[1708737553000,0],[1708737554000,0],[1708737555000,0],[1708737556000,0],[1708737557000,0],[1708737558000,0],[1708737559000,0],[1708737560000,0],[1708737561000,0],[1708737562000,0],[1708737563000,0],[1708737564000,0],[1708737565000,0],[1708737566000,0],[1708737567000,0],[1708737568000,0],[1708737569000,0],[1708737570000,0],[1708737571000,0],[1708737572000,0],[1708737573000,0],[1708737574000,0],[1708737575000,0],[1708737576000,0],[1708737577000,0],[1708737578000,0],[1708737579000,0],[1708737580000,0],[1708737581000,0],[1708737582000,0],[1708737583000,0],[1708737584000,0],[1708737585000,0],[1708737586000,0],[1708737587000,0],[1708737588000,0],[1708737589000,0],[1708737590000,0],[1708737591000,0],[1708737592000,0],[1708737593000,0],[1708737594000,0],[1708737595000,0],[1708737596000,0],[1708737597000,0],[1708737598000,0],[1708737599000,0],[1708737600000,0],[1708737601000,0],[1708737602000,0],[1708737603000,0],[1708737604000,0],[1708737605000,0],[1708737606000,0],[1708737607000,0],[1708737608000,0],[1708737609000,0],[1708737610000,0],[1708737611000,0],[1708737612000,0],[1708737613000,0],[1708737614000,0],[1708737615000,0],[1708737616000,0],[1708737617000,0],[1708737618000,0],[1708737619000,0],[1708737620000,0],[1708737621000,0],[1708737622000,0],[1708737623000,0],[1708737624000,0],[1708737625000,0],[1708737626000,0],[1708737627000,0],[1708737628000,0],[1708737629000,0],[1708737630000,0],[1708737631000,0],[1708737632000,0],[1708737633000,0],[1708737634000,0],[1708737635000,0],[1708737636000,0],[1708737637000,0],[1708737638000,0],[1708737639000,0],[1708737640000,0],[1708737641000,0],[1708737642000,0],[1708737643000,0],[1708737644000,0],[1708737645000,0],[1708737646000,0],[1708737647000,0],[1708737648000,0],[1708737649000,0],[1708737650000,0],[1708737651000,0],[1708737652000,0],[1708737653000,0],[1708737654000,0],[1708737655000,0],[1708737656000,0],[1708737657000,0],[1708737658000,0],[1708737659000,0],[1708737660000,0],[1708737661000,0],[1708737662000,0],[1708737663000,0],[1708737664000,0],[1708737665000,0],[1708737666000,0],[1708737667000,0],[1708737668000,0],[1708737669000,0],[1708737670000,0],[1708737671000,0],[1708737672000,0],[1708737673000,0],[1708737674000,0],[1708737675000,0],[1708737676000,0],[1708737677000,0],[1708737678000,0],[1708737679000,0],[1708737680000,0],[1708737681000,0],[1708737682000,0],[1708737683000,0],[1708737684000,0],[1708737685000,0],[1708737686000,0],[1708737687000,0],[1708737688000,0],[1708737689000,0],[1708737690000,0],[1708737691000,0],[1708737692000,0],[1708737693000,0],[1708737694000,0],[1708737695000,0],[1708737696000,0],[1708737697000,0],[1708737698000,0],[1708737699000,0],[1708737700000,0],[1708737701000,0],[1708737702000,0],[1708737703000,0],[1708737704000,0],[1708737705000,0],[1708737706000,0],[1708737707000,0],[1708737708000,0],[1708737709000,0],[1708737710000,0],[1708737711000,0],[1708737712000,0],[1708737713000,0],[1708737714000,0],[1708737715000,0],[1708737716000,0],[1708737717000,0],[1708737718000,0],[1708737719000,0],[1708737720000,0],[1708737721000,0],[1708737722000,0],[1708737723000,0],[1708737724000,0],[1708737725000,0],[1708737726000,0],[1708737727000,0],[1708737728000,0],[1708737729000,0],[1708737730000,0],[1708737731000,0],[1708737732000,0],[1708737733000,0],[1708737734000,0],[1708737735000,0],[1708737736000,0],[1708737737000,0],[1708737738000,0],[1708737739000,0],[1708737740000,0],[1708737741000,0],[1708737742000,0],[1708737743000,0],[1708737744000,0],[1708737745000,0],[1708737746000,0],[1708737747000,0],[1708737748000,0],[1708737749000,0],[1708737750000,0],[1708737751000,0],[1708737752000,0],[1708737753000,0],[1708737754000,0],[1708737755000,0],[1708737756000,0],[1708737757000,0],[1708737758000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#AECAEB',
name: 'validação concorrência transações - d',
data: [
[1708737473000,25],[1708737474000,0],[1708737475000,0],[1708737476000,0],[1708737477000,0],[1708737478000,0],[1708737479000,0],[1708737480000,0],[1708737481000,0],[1708737482000,0],[1708737483000,0],[1708737484000,0],[1708737485000,0],[1708737486000,0],[1708737487000,0],[1708737488000,0],[1708737489000,0],[1708737490000,0],[1708737491000,0],[1708737492000,0],[1708737493000,0],[1708737494000,0],[1708737495000,0],[1708737496000,0],[1708737497000,0],[1708737498000,0],[1708737499000,0],[1708737500000,0],[1708737501000,0],[1708737502000,0],[1708737503000,0],[1708737504000,0],[1708737505000,0],[1708737506000,0],[1708737507000,0],[1708737508000,0],[1708737509000,0],[1708737510000,0],[1708737511000,0],[1708737512000,0],[1708737513000,0],[1708737514000,0],[1708737515000,0],[1708737516000,0],[1708737517000,0],[1708737518000,0],[1708737519000,0],[1708737520000,0],[1708737521000,0],[1708737522000,0],[1708737523000,0],[1708737524000,0],[1708737525000,0],[1708737526000,0],[1708737527000,0],[1708737528000,0],[1708737529000,0],[1708737530000,0],[1708737531000,0],[1708737532000,0],[1708737533000,0],[1708737534000,0],[1708737535000,0],[1708737536000,0],[1708737537000,0],[1708737538000,0],[1708737539000,0],[1708737540000,0],[1708737541000,0],[1708737542000,0],[1708737543000,0],[1708737544000,0],[1708737545000,0],[1708737546000,0],[1708737547000,0],[1708737548000,0],[1708737549000,0],[1708737550000,0],[1708737551000,0],[1708737552000,0],[1708737553000,0],[1708737554000,0],[1708737555000,0],[1708737556000,0],[1708737557000,0],[1708737558000,0],[1708737559000,0],[1708737560000,0],[1708737561000,0],[1708737562000,0],[1708737563000,0],[1708737564000,0],[1708737565000,0],[1708737566000,0],[1708737567000,0],[1708737568000,0],[1708737569000,0],[1708737570000,0],[1708737571000,0],[1708737572000,0],[1708737573000,0],[1708737574000,0],[1708737575000,0],[1708737576000,0],[1708737577000,0],[1708737578000,0],[1708737579000,0],[1708737580000,0],[1708737581000,0],[1708737582000,0],[1708737583000,0],[1708737584000,0],[1708737585000,0],[1708737586000,0],[1708737587000,0],[1708737588000,0],[1708737589000,0],[1708737590000,0],[1708737591000,0],[1708737592000,0],[1708737593000,0],[1708737594000,0],[1708737595000,0],[1708737596000,0],[1708737597000,0],[1708737598000,0],[1708737599000,0],[1708737600000,0],[1708737601000,0],[1708737602000,0],[1708737603000,0],[1708737604000,0],[1708737605000,0],[1708737606000,0],[1708737607000,0],[1708737608000,0],[1708737609000,0],[1708737610000,0],[1708737611000,0],[1708737612000,0],[1708737613000,0],[1708737614000,0],[1708737615000,0],[1708737616000,0],[1708737617000,0],[1708737618000,0],[1708737619000,0],[1708737620000,0],[1708737621000,0],[1708737622000,0],[1708737623000,0],[1708737624000,0],[1708737625000,0],[1708737626000,0],[1708737627000,0],[1708737628000,0],[1708737629000,0],[1708737630000,0],[1708737631000,0],[1708737632000,0],[1708737633000,0],[1708737634000,0],[1708737635000,0],[1708737636000,0],[1708737637000,0],[1708737638000,0],[1708737639000,0],[1708737640000,0],[1708737641000,0],[1708737642000,0],[1708737643000,0],[1708737644000,0],[1708737645000,0],[1708737646000,0],[1708737647000,0],[1708737648000,0],[1708737649000,0],[1708737650000,0],[1708737651000,0],[1708737652000,0],[1708737653000,0],[1708737654000,0],[1708737655000,0],[1708737656000,0],[1708737657000,0],[1708737658000,0],[1708737659000,0],[1708737660000,0],[1708737661000,0],[1708737662000,0],[1708737663000,0],[1708737664000,0],[1708737665000,0],[1708737666000,0],[1708737667000,0],[1708737668000,0],[1708737669000,0],[1708737670000,0],[1708737671000,0],[1708737672000,0],[1708737673000,0],[1708737674000,0],[1708737675000,0],[1708737676000,0],[1708737677000,0],[1708737678000,0],[1708737679000,0],[1708737680000,0],[1708737681000,0],[1708737682000,0],[1708737683000,0],[1708737684000,0],[1708737685000,0],[1708737686000,0],[1708737687000,0],[1708737688000,0],[1708737689000,0],[1708737690000,0],[1708737691000,0],[1708737692000,0],[1708737693000,0],[1708737694000,0],[1708737695000,0],[1708737696000,0],[1708737697000,0],[1708737698000,0],[1708737699000,0],[1708737700000,0],[1708737701000,0],[1708737702000,0],[1708737703000,0],[1708737704000,0],[1708737705000,0],[1708737706000,0],[1708737707000,0],[1708737708000,0],[1708737709000,0],[1708737710000,0],[1708737711000,0],[1708737712000,0],[1708737713000,0],[1708737714000,0],[1708737715000,0],[1708737716000,0],[1708737717000,0],[1708737718000,0],[1708737719000,0],[1708737720000,0],[1708737721000,0],[1708737722000,0],[1708737723000,0],[1708737724000,0],[1708737725000,0],[1708737726000,0],[1708737727000,0],[1708737728000,0],[1708737729000,0],[1708737730000,0],[1708737731000,0],[1708737732000,0],[1708737733000,0],[1708737734000,0],[1708737735000,0],[1708737736000,0],[1708737737000,0],[1708737738000,0],[1708737739000,0],[1708737740000,0],[1708737741000,0],[1708737742000,0],[1708737743000,0],[1708737744000,0],[1708737745000,0],[1708737746000,0],[1708737747000,0],[1708737748000,0],[1708737749000,0],[1708737750000,0],[1708737751000,0],[1708737752000,0],[1708737753000,0],[1708737754000,0],[1708737755000,0],[1708737756000,0],[1708737757000,0],[1708737758000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
allUsersData
]
});
allUsersChart.setTitle({
text: '<span class="chart_title">Active Users along the Simulation</span>',
useHTML: true
});
allUsersData.yAxis = 1;
var responsetimeDistributionChart = new Highcharts.Chart({
chart: {
renderTo: 'responsetimeDistributionContainer',
type: 'column',
marginBottom: 60
},
credits: { enabled: false },
legend: {
enabled: true,
floating: true,
y: 5,
borderWidth: 0,
itemStyle: { fontWeight: "normal" },
symbolRadius: 0
},
title: { text: 'A title to let highcharts reserve the place for the title set later' },
navigator: {
maskInside: false
},
xAxis: {
categories: ['300', '900', '1500', '2100', '2700', '3300', '3900', '4500', '5100', '5700', '6300', '6900', '7500', '8100', '8700', '9300', '9900', '10500', '11100', '11700', '12300', '12900', '13500', '14100', '14700', '15300', '15900', '16500', '17100', '17700', '18300', '18900', '19500', '20100', '20700', '21300', '21900', '22500', '23100', '23700', '24300', '24900', '25500', '26100', '26700', '27300', '27900', '28500', '29100', '29700', '30301', '30901', '31501', '32101', '32701', '33301', '33901', '34501', '35101', '35701', '36301', '36901', '37501', '38101', '38701', '39301', '39901', '40501', '41101', '41701', '42301', '42901', '43501', '44101', '44701', '45301', '45901', '46501', '47101', '47701', '48301', '48901', '49501', '50101', '50701', '51301', '51901', '52501', '53101', '53701', '54301', '54901', '55501', '56101', '56701', '57301', '57901', '58501', '59101', '59701'],
tickInterval: 20
},
yAxis: {
min: 0,
title: { text: 'Percentage of Requests' },
reversedStacks: false
},
tooltip: {
formatter: function() {
return '<b>'+ this.x +' ms</b><br/>'+
this.series.name +': '+ this.y +' %<br/>'+
'Total: '+ this.point.stackTotal + ' %';
}
},
plotOptions: {
series: {
groupPadding: 0,
stacking: 'normal',
shadow: true
}
},
series: [
{
type: 'column',
color: '#68b65c',
name: 'OK',
data: [
55.67,0.62,0.14,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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: [
43.09,0.28,0.13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02
],
tooltip: { yDecimals: 0, ySuffix: 'ms' }
}
]
});
responsetimeDistributionChart.setTitle({
text: '<span class="chart_title">Response Time Distribution</span>',
useHTML: true
});
var responsetimepercentilesovertimeokPercentiles = unpack([[1708737473,[106,262,293,324,331,335,339,352,363,366]],[1708737474,[6,6,6,6,6,6,6,6,6,6]],[1708737475,[8,29,38,48,52,56,56,57,59,60]],[1708737476,[5,5,5,5,5,5,5,5,5,5]],[1708737477,[1,2,6,9,13,16,23,26,29,31]],[1708737478,[5,5,6,6,6,6,6,6,6,6]],[1708737479,[4,4,5,5,5,5,5,5,5,6]],[1708737480,[4,4,4,5,5,5,5,6,6,7]],[1708737481,[3,4,5,5,5,5,5,5,5,5]],[1708737482,[3,4,4,4,4,5,5,5,6,7]],[1708737483,[3,4,4,4,4,5,5,5,5,5]],[1708737484,[3,3,4,4,4,4,4,4,4,5]],[1708737485,[3,3,3,4,4,4,4,4,4,4]],[1708737486,[2,3,4,4,4,5,5,6,7,8]],[1708737487,[3,3,4,4,4,4,5,5,5,5]],[1708737488,[2,3,3,4,4,5,5,5,6,7]],[1708737489,[3,3,4,4,4,4,4,4,6,7]],[1708737490,[2,3,3,4,4,4,4,14,61,77]],[1708737491,[2,3,4,4,4,4,4,4,4,5]],[1708737492,[2,3,3,3,3,3,4,4,5,5]],[1708737493,[2,3,3,4,4,4,4,4,5,5]],[1708737494,[2,3,3,3,3,3,4,5,6,7]],[1708737495,[2,3,3,3,3,3,4,4,4,4]],[1708737496,[2,2,3,3,3,3,3,4,4,5]],[1708737497,[2,3,3,3,3,3,3,4,5,5]],[1708737498,[2,2,3,3,3,3,4,4,5,7]],[1708737499,[2,2,2,3,3,3,3,3,4,4]],[1708737500,[2,2,3,3,3,3,3,3,4,5]],[1708737501,[1,2,2,3,3,3,3,4,4,4]],[1708737502,[2,2,3,3,3,3,4,4,4,5]],[1708737503,[1,2,2,3,3,3,3,4,4,4]],[1708737504,[1,2,2,3,3,3,3,3,4,4]],[1708737505,[1,2,2,3,3,3,3,3,4,5]],[1708737506,[1,2,2,2,3,3,3,3,4,5]],[1708737507,[2,2,3,3,3,3,3,4,4,5]],[1708737508,[1,2,2,3,3,3,3,3,3,3]],[1708737509,[1,2,2,2,3,3,3,3,5,5]],[1708737510,[1,2,2,3,3,3,3,4,4,5]],[1708737511,[2,2,2,3,3,3,3,4,5,5]],[1708737512,[1,2,2,3,3,3,3,3,4,4]],[1708737513,[1,2,2,3,3,3,3,4,4,5]],[1708737514,[1,2,2,3,3,3,3,3,3,4]],[1708737515,[1,2,2,2,2,3,3,3,4,4]],[1708737516,[1,2,2,2,3,3,3,3,4,5]],[1708737517,[1,2,2,2,2,2,3,3,3,4]],[1708737518,[1,2,2,2,2,2,3,3,3,4]],[1708737519,[1,2,2,2,2,3,3,3,3,3]],[1708737520,[1,2,2,2,2,3,3,3,4,4]],[1708737521,[1,2,2,2,2,2,3,3,3,3]],[1708737522,[1,2,2,2,3,3,3,3,5,6]],[1708737523,[1,1,2,2,2,2,3,3,3,4]],[1708737524,[1,1,2,2,2,3,3,3,3,4]],[1708737525,[1,2,2,2,3,3,3,3,3,3]],[1708737526,[1,2,2,2,2,2,3,3,3,4]],[1708737527,[1,2,2,2,2,2,2,3,3,6]],[1708737528,[1,2,2,2,2,2,3,3,3,8]],[1708737529,[1,2,2,2,2,2,2,3,3,3]],[1708737530,[1,2,2,2,2,2,2,3,3,5]],[1708737531,[1,2,2,2,2,2,2,2,3,3]],[1708737532,[1,2,2,2,2,2,2,2,3,3]],[1708737533,[1,2,2,2,2,2,3,3,3,4]],[1708737534,[1,1,2,2,2,2,2,2,3,3]],[1708737535,[1,2,2,2,2,2,2,3,3,4]],[1708737536,[1,2,2,2,2,2,3,3,3,6]],[1708737537,[1,1,2,2,2,2,2,2,3,3]],[1708737538,[1,1,2,2,2,2,2,2,3,4]],[1708737539,[1,2,2,2,2,2,2,3,3,3]],[1708737540,[1,1,2,2,2,2,2,2,3,3]],[1708737541,[1,1,2,2,2,2,2,3,3,4]],[1708737542,[1,2,2,2,2,2,2,2,3,3]],[1708737543,[1,1,2,2,2,2,2,2,3,3]],[1708737544,[1,1,2,2,2,2,2,3,3,7]],[1708737545,[1,2,2,2,2,2,2,3,3,3]],[1708737546,[1,1,2,2,2,2,2,2,3,8]],[1708737547,[1,1,2,2,2,2,2,3,3,3]],[1708737548,[1,1,2,2,2,3,3,3,3,8]],[1708737549,[1,1,2,2,2,2,2,3,3,4]],[1708737550,[1,2,2,2,2,2,2,3,3,4]],[1708737551,[1,1,2,2,2,2,2,2,3,4]],[1708737552,[1,1,2,2,2,2,2,2,3,3]],[1708737553,[1,2,2,2,2,2,3,3,3,3]],[1708737554,[1,1,2,2,2,2,2,2,3,3]],[1708737555,[1,1,2,2,2,2,2,2,3,8]],[1708737556,[1,1,2,2,2,2,2,2,3,3]],[1708737557,[1,1,2,2,2,2,2,2,3,4]],[1708737558,[1,2,2,2,2,2,2,2,3,3]],[1708737559,[1,1,2,2,2,2,2,3,3,7]],[1708737560,[1,1,2,2,2,2,2,2,3,3]],[1708737561,[1,1,2,2,2,2,2,2,3,3]],[1708737562,[1,2,2,2,2,2,2,2,3,3]],[1708737563,[1,1,2,2,2,2,2,2,3,3]],[1708737564,[1,1,2,2,2,2,2,2,3,4]],[1708737565,[1,2,2,2,2,2,2,2,3,3]],[1708737566,[1,1,2,2,2,2,2,2,2,5]],[1708737567,[1,1,1,1,2,2,2,2,2,3]],[1708737568,[1,1,2,2,2,2,2,2,3,3]],[1708737569,[1,1,1,2,2,2,2,2,3,5]],[1708737570,[1,1,1,2,2,2,2,2,3,3]],[1708737571,[1,1,2,2,2,2,2,3,35,58]],[1708737572,[1,1,2,2,2,2,2,2,3,5]],[1708737573,[1,1,2,2,2,2,2,2,3,3]],[1708737574,[1,1,1,2,2,2,2,2,3,7]],[1708737575,[1,1,1,1,2,2,2,2,2,3]],[1708737576,[1,1,1,2,2,2,2,2,2,3]],[1708737577,[1,1,1,1,1,2,2,2,2,3]],[1708737578,[1,1,1,2,2,2,2,2,3,3]],[1708737579,[0,1,1,2,2,2,2,2,3,15]],[1708737580,[1,1,2,2,2,2,2,2,3,4]],[1708737581,[1,1,2,2,2,2,2,3,3,3]],[1708737582,[1,1,2,2,2,2,2,3,3,4]],[1708737583,[1,2,2,2,2,2,2,2,3,4]],[1708737584,[1,1,1,2,2,2,2,2,3,4]],[1708737585,[0,1,1,1,1,1,1,2,2,2]],[1708737586,[1,1,1,2,2,2,2,2,2,3]],[1708737587,[1,1,2,2,2,2,2,2,2,3]],[1708737588,[1,1,2,2,2,2,2,2,3,7]],[1708737589,[1,1,2,2,2,2,2,2,3,3]],[1708737590,[1,1,2,2,2,2,2,2,2,3]],[1708737591,[0,1,2,2,2,2,2,2,3,4]],[1708737592,[1,1,2,2,2,2,2,2,3,4]],[1708737593,[1,1,2,2,2,2,2,2,3,3]],[1708737594,[1,1,2,2,2,2,2,2,3,3]],[1708737595,[1,1,1,2,2,2,2,2,2,3]],[1708737596,[1,1,1,2,2,2,2,2,2,3]],[1708737597,[1,1,1,2,2,2,2,2,2,3]],[1708737598,[1,1,2,2,2,2,2,2,3,4]],[1708737599,[1,2,2,2,2,2,2,2,3,3]],[1708737600,[1,2,2,2,2,2,2,2,3,4]],[1708737601,[1,1,1,2,2,2,2,2,2,3]],[1708737602,[1,1,1,1,1,2,2,2,2,3]],[1708737603,[1,1,1,2,2,2,2,2,3,4]],[1708737604,[1,1,2,2,2,2,2,3,3,4]],[1708737605,[1,1,2,2,2,2,2,2,3,3]],[1708737606,[1,1,1,2,2,2,2,2,3,3]],[1708737607,[1,1,1,2,2,2,2,2,3,3]],[1708737608,[1,1,2,2,2,2,2,3,3,6]],[1708737609,[1,1,2,2,2,2,2,2,3,3]],[1708737610,[1,1,2,2,2,2,2,3,3,3]],[1708737611,[1,2,2,2,2,2,2,3,3,5]],[1708737612,[1,1,2,2,2,2,2,3,3,3]],[1708737613,[1,2,2,2,2,2,2,3,3,4]],[1708737614,[1,1,2,2,2,2,2,2,3,3]],[1708737615,[1,1,1,2,2,2,2,2,3,4]],[1708737616,[1,1,1,2,2,2,2,2,4,5]],[1708737617,[1,1,1,2,2,2,2,2,3,3]],[1708737618,[1,1,2,2,2,2,2,3,3,4]],[1708737619,[1,1,1,2,2,2,2,2,3,4]],[1708737620,[1,1,1,2,2,2,2,2,3,3]],[1708737621,[1,1,2,2,2,2,2,3,3,3]],[1708737622,[1,1,1,2,2,2,2,2,3,3]],[1708737623,[1,1,1,2,2,2,2,2,13,35]],[1708737624,[1,1,2,2,2,2,2,3,3,3]],[1708737625,[1,1,2,2,2,2,2,3,3,3]],[1708737626,[1,1,1,2,2,2,2,2,3,8]],[1708737627,[1,1,2,2,2,2,2,2,3,6]],[1708737628,[1,1,2,2,2,2,2,3,3,7]],[1708737629,[2,169,369,726,841,1005,1086,1379,1892,1966]],[1708737630,[71,628,1006,1174,1257,1324,1538,1660,2016,2169]],[1708737631,[982,1281,1357,1427,1509,1538,1572,1587,1602,1612]],[1708737632,null],[1708737633,null],[1708737634,null],[1708737635,null],[1708737636,null],[1708737637,null],[1708737638,null],[1708737639,null],[1708737640,[1,6,40,77,87,100,114,141,195,393]],[1708737641,[15,123,346,685,706,746,781,806,868,914]],[1708737642,[1,8,95,334,411,479,546,620,688,709]],[1708737643,[215,480,573,657,668,679,721,741,768,793]],[1708737644,null],[1708737645,null],[1708737646,null],[1708737647,null],[1708737648,null],[1708737649,null],[1708737650,null],[1708737651,null],[1708737652,[2,71,135,256,293,330,431,497,541,544]],[1708737653,[1,53,215,427,440,466,594,683,734,738]],[1708737654,[97,256,369,440,456,505,548,555,617,624]],[1708737655,null],[1708737656,null],[1708737657,null],[1708737658,null],[1708737659,null],[1708737660,null],[1708737661,null],[1708737662,null],[1708737663,[2,14,74,177,220,277,310,359,428,438]],[1708737664,[1,51,200,342,393,440,511,577,597,603]],[1708737665,[308,404,447,496,502,516,525,543,569,584]],[1708737666,null],[1708737667,null],[1708737668,null],[1708737669,null],[1708737670,null],[1708737671,null],[1708737672,null],[1708737673,null],[1708737674,[1,74,160,228,234,283,307,310,314,316]],[1708737675,[1,11,78,217,265,294,326,372,400,428]],[1708737676,[71,167,214,239,242,248,251,259,267,269]],[1708737677,null],[1708737678,null],[1708737679,null],[1708737680,null],[1708737681,null],[1708737682,null],[1708737683,null],[1708737684,null],[1708737685,[1,51,119,156,163,174,201,256,301,328]],[1708737686,[1,3,77,284,400,518,578,792,896,920]],[1708737687,[6,728,913,1035,1050,1075,1122,1147,1221,1229]],[1708737688,null],[1708737689,null],[1708737690,null],[1708737691,null],[1708737692,null],[1708737693,null],[1708737694,null],[1708737695,null],[1708737696,[1,2,5,57,59,61,63,68,72,73]],[1708737697,[1,2,2,2,2,3,3,3,4,4]],[1708737698,[1,2,16,234,322,413,494,576,633,642]],[1708737699,[128,410,461,540,565,575,602,606,617,619]],[1708737700,[1,2,2,13,40,59,65,67,67,67]],[1708737701,null],[1708737702,null],[1708737703,null],[1708737704,null],[1708737705,null],[1708737706,null],[1708737707,[1,2,52,59,62,64,64,67,71,73]],[1708737708,[59,64,67,68,68,68,68,68,68,68]],[1708737709,[1,1,2,2,2,3,3,11,29,30]],[1708737710,[1,2,2,2,3,3,4,15,32,37]],[1708737711,[2,76,158,257,297,331,346,367,452,513]],[1708737712,[1,1,2,3,4,13,23,57,78,83]],[1708737713,[1,2,2,3,3,4,13,24,69,86]],[1708737714,[1,2,7,41,47,55,79,96,157,166]],[1708737715,[1,1,2,2,2,2,3,3,4,8]],[1708737716,[1,1,2,2,2,2,2,3,3,3]],[1708737717,[1,1,2,2,2,2,2,3,3,10]],[1708737718,[1,1,2,2,2,2,2,3,4,4]],[1708737719,null],[1708737720,null],[1708737721,null],[1708737722,null],[1708737723,null],[1708737724,null],[1708737725,null],[1708737726,null],[1708737727,null],[1708737728,null],[1708737729,null],[1708737730,null],[1708737731,null],[1708737732,null],[1708737733,null],[1708737734,null],[1708737735,null],[1708737736,null],[1708737737,null],[1708737738,null],[1708737739,null],[1708737740,null],[1708737741,null],[1708737742,null],[1708737743,null],[1708737744,null],[1708737745,null],[1708737746,null],[1708737747,null],[1708737748,null],[1708737749,null],[1708737750,null],[1708737751,null],[1708737752,null],[1708737753,null],[1708737754,null],[1708737755,null],[1708737756,null],[1708737757,null],[1708737758,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([[1708737473,[25,25,0]],[1708737474,[1,1,0]],[1708737475,[25,25,0]],[1708737476,[1,1,0]],[1708737477,[71,71,0]],[1708737478,[3,3,0]],[1708737479,[6,6,0]],[1708737480,[9,9,0]],[1708737481,[11,11,0]],[1708737482,[13,13,0]],[1708737483,[18,18,0]],[1708737484,[19,19,0]],[1708737485,[24,24,0]],[1708737486,[26,26,0]],[1708737487,[27,27,0]],[1708737488,[32,32,0]],[1708737489,[34,34,0]],[1708737490,[37,37,0]],[1708737491,[39,39,0]],[1708737492,[43,43,0]],[1708737493,[44,44,0]],[1708737494,[48,48,0]],[1708737495,[50,50,0]],[1708737496,[54,54,0]],[1708737497,[56,56,0]],[1708737498,[61,61,0]],[1708737499,[61,61,0]],[1708737500,[65,65,0]],[1708737501,[67,67,0]],[1708737502,[70,70,0]],[1708737503,[73,73,0]],[1708737504,[77,77,0]],[1708737505,[79,79,0]],[1708737506,[81,81,0]],[1708737507,[84,84,0]],[1708737508,[88,88,0]],[1708737509,[90,90,0]],[1708737510,[93,93,0]],[1708737511,[96,96,0]],[1708737512,[98,98,0]],[1708737513,[101,101,0]],[1708737514,[105,105,0]],[1708737515,[107,107,0]],[1708737516,[110,110,0]],[1708737517,[112,112,0]],[1708737518,[116,116,0]],[1708737519,[118,118,0]],[1708737520,[121,121,0]],[1708737521,[123,123,0]],[1708737522,[126,126,0]],[1708737523,[129,129,0]],[1708737524,[133,133,0]],[1708737525,[135,135,0]],[1708737526,[138,138,0]],[1708737527,[141,141,0]],[1708737528,[143,143,0]],[1708737529,[147,147,0]],[1708737530,[149,149,0]],[1708737531,[151,151,0]],[1708737532,[155,155,0]],[1708737533,[157,157,0]],[1708737534,[160,160,0]],[1708737535,[163,163,0]],[1708737536,[166,166,0]],[1708737537,[170,170,0]],[1708737538,[171,171,0]],[1708737539,[175,175,0]],[1708737540,[176,176,0]],[1708737541,[181,181,0]],[1708737542,[183,183,0]],[1708737543,[185,185,0]],[1708737544,[189,189,0]],[1708737545,[192,192,0]],[1708737546,[194,194,0]],[1708737547,[196,196,0]],[1708737548,[199,199,0]],[1708737549,[203,203,0]],[1708737550,[205,205,0]],[1708737551,[207,207,0]],[1708737552,[211,211,0]],[1708737553,[213,213,0]],[1708737554,[217,217,0]],[1708737555,[220,220,0]],[1708737556,[222,222,0]],[1708737557,[225,225,0]],[1708737558,[227,227,0]],[1708737559,[231,231,0]],[1708737560,[233,233,0]],[1708737561,[236,236,0]],[1708737562,[238,238,0]],[1708737563,[243,243,0]],[1708737564,[244,244,0]],[1708737565,[248,248,0]],[1708737566,[251,251,0]],[1708737567,[251,251,0]],[1708737568,[257,257,0]],[1708737569,[259,259,0]],[1708737570,[262,262,0]],[1708737571,[264,264,0]],[1708737572,[266,266,0]],[1708737573,[270,270,0]],[1708737574,[272,272,0]],[1708737575,[276,276,0]],[1708737576,[279,279,0]],[1708737577,[280,280,0]],[1708737578,[284,284,0]],[1708737579,[286,286,0]],[1708737580,[290,290,0]],[1708737581,[292,292,0]],[1708737582,[295,295,0]],[1708737583,[299,299,0]],[1708737584,[300,300,0]],[1708737585,[304,304,0]],[1708737586,[306,306,0]],[1708737587,[309,309,0]],[1708737588,[312,312,0]],[1708737589,[315,315,0]],[1708737590,[317,317,0]],[1708737591,[320,320,0]],[1708737592,[323,323,0]],[1708737593,[326,326,0]],[1708737594,[330,330,0]],[1708737595,[332,332,0]],[1708737596,[334,334,0]],[1708737597,[337,337,0]],[1708737598,[340,340,0]],[1708737599,[340,340,0]],[1708737600,[340,340,0]],[1708737601,[340,340,0]],[1708737602,[340,340,0]],[1708737603,[340,340,0]],[1708737604,[340,340,0]],[1708737605,[340,340,0]],[1708737606,[340,340,0]],[1708737607,[340,340,0]],[1708737608,[340,340,0]],[1708737609,[340,340,0]],[1708737610,[340,340,0]],[1708737611,[340,340,0]],[1708737612,[340,340,0]],[1708737613,[340,340,0]],[1708737614,[340,340,0]],[1708737615,[340,340,0]],[1708737616,[340,340,0]],[1708737617,[340,340,0]],[1708737618,[340,340,0]],[1708737619,[340,340,0]],[1708737620,[340,340,0]],[1708737621,[340,340,0]],[1708737622,[340,340,0]],[1708737623,[340,340,0]],[1708737624,[340,340,0]],[1708737625,[340,340,0]],[1708737626,[340,340,0]],[1708737627,[340,340,0]],[1708737628,[340,340,0]],[1708737629,[340,212,128]],[1708737630,[340,184,156]],[1708737631,[340,47,293]],[1708737632,[340,0,340]],[1708737633,[340,0,340]],[1708737634,[340,0,340]],[1708737635,[340,0,340]],[1708737636,[340,0,340]],[1708737637,[340,0,340]],[1708737638,[340,0,340]],[1708737639,[340,0,340]],[1708737640,[340,126,214]],[1708737641,[340,81,259]],[1708737642,[340,93,247]],[1708737643,[340,89,251]],[1708737644,[340,0,340]],[1708737645,[340,0,340]],[1708737646,[340,0,340]],[1708737647,[340,0,340]],[1708737648,[340,0,340]],[1708737649,[340,0,340]],[1708737650,[340,0,340]],[1708737651,[340,0,340]],[1708737652,[340,67,273]],[1708737653,[340,109,231]],[1708737654,[340,61,279]],[1708737655,[340,0,340]],[1708737656,[340,0,340]],[1708737657,[340,0,340]],[1708737658,[340,0,340]],[1708737659,[340,0,340]],[1708737660,[340,0,340]],[1708737661,[340,0,340]],[1708737662,[340,0,340]],[1708737663,[340,72,268]],[1708737664,[340,136,204]],[1708737665,[340,57,283]],[1708737666,[340,0,340]],[1708737667,[340,0,340]],[1708737668,[340,0,340]],[1708737669,[340,0,340]],[1708737670,[340,0,340]],[1708737671,[340,0,340]],[1708737672,[340,0,340]],[1708737673,[340,0,340]],[1708737674,[340,36,304]],[1708737675,[340,123,217]],[1708737676,[340,20,320]],[1708737677,[340,0,340]],[1708737678,[340,0,340]],[1708737679,[340,0,340]],[1708737680,[340,0,340]],[1708737681,[340,0,340]],[1708737682,[340,0,340]],[1708737683,[340,0,340]],[1708737684,[340,0,340]],[1708737685,[340,48,292]],[1708737686,[340,86,254]],[1708737687,[340,146,194]],[1708737688,[340,0,340]],[1708737689,[340,0,340]],[1708737690,[340,0,340]],[1708737691,[340,0,340]],[1708737692,[340,0,340]],[1708737693,[340,0,340]],[1708737694,[340,0,340]],[1708737695,[340,0,340]],[1708737696,[340,24,316]],[1708737697,[340,37,303]],[1708737698,[340,142,198]],[1708737699,[340,56,284]],[1708737700,[340,13,327]],[1708737701,[340,0,340]],[1708737702,[340,0,340]],[1708737703,[340,0,340]],[1708737704,[340,0,340]],[1708737705,[340,0,340]],[1708737706,[340,0,340]],[1708737707,[340,19,321]],[1708737708,[340,4,336]],[1708737709,[340,98,242]],[1708737710,[340,234,106]],[1708737711,[340,139,201]],[1708737712,[340,149,191]],[1708737713,[340,189,151]],[1708737714,[340,163,177]],[1708737715,[340,171,169]],[1708737716,[340,173,167]],[1708737717,[340,158,182]],[1708737718,[166,86,80]],[1708737719,[0,0,0]],[1708737720,[0,0,0]],[1708737721,[0,0,0]],[1708737722,[0,0,0]],[1708737723,[0,0,0]],[1708737724,[0,0,0]],[1708737725,[0,0,0]],[1708737726,[0,0,0]],[1708737727,[0,0,0]],[1708737728,[0,0,0]],[1708737729,[0,0,0]],[1708737730,[0,0,0]],[1708737731,[0,0,0]],[1708737732,[0,0,0]],[1708737733,[0,0,0]],[1708737734,[0,0,0]],[1708737735,[0,0,0]],[1708737736,[0,0,0]],[1708737737,[0,0,0]],[1708737738,[0,0,0]],[1708737739,[0,0,0]],[1708737740,[0,0,0]],[1708737741,[0,0,0]],[1708737742,[0,0,0]],[1708737743,[0,0,0]],[1708737744,[0,0,0]],[1708737745,[0,0,0]],[1708737746,[0,0,0]],[1708737747,[0,0,0]],[1708737748,[0,0,0]],[1708737749,[0,0,0]],[1708737750,[0,0,0]],[1708737751,[0,0,0]],[1708737752,[0,0,0]],[1708737753,[0,0,0]],[1708737754,[0,0,0]],[1708737755,[0,0,0]],[1708737756,[0,0,0]],[1708737757,[0,0,0]],[1708737758,[0,0,0]]]);
var requestsChart = new Highcharts.StockChart({
chart: {
renderTo: 'requests',
zoomType: 'x',
marginBottom: 60
},
credits: { enabled: false },
legend: {
enabled: true,
floating: true,
y: -65,
borderWidth: 0,
itemStyle: { fontWeight: "normal" },
symbolRadius: 0
},
title: { text: 'A title to let highcharts reserve the place for the title set later' },
navigator: {
maskInside: false
},
rangeSelector: {
buttonSpacing: 0,
buttonTheme: {
fill: '#CFC9C6',
padding: 1,
stroke: '#000000',
'stroke-width': 0.25,
style: {
color: '#000000',
fontWeight: 'bold',
},
states: {
stroke: '#000000',