-
Notifications
You must be signed in to change notification settings - Fork 923
/
Copy pathindex.html
1240 lines (1170 loc) · 105 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-19 19:07:55 GMT</span>
</span>
<span class="simulation-information-item">
<span class="simulation-information-label">Duration: </span>
<span>4m 52s </span>
</span>
<span class="simulation-tooltip simulation-information-item description" title="Description" data-content="Rinha de Backend - 2024/Q1: Crébito - dscorzoni-fastapi">
<span class="simulation-information-label">Description: </span>
<span>Rinha de Backend - 2024/Q1: Crébito - dscorzoni-fastapi</span>
</span>
</div>
</div>
</div>
</div>
<div id="statistics_table_container">
<div id="stats" class="statistics extensible-geant collapsed">
<div class="title">
<div id="statistics_title" class="title_base"><span class="title_base_stats">Stats</span><span class="expand-table">Fixed height</span><span id="toggle-stats" class="toggle-table"></span><span class="collapse-table">Full size</span></div>
<div class="right">
<button class="statistics-button expand-all-button">Expand all groups</button>
<button class="statistics-button collapse-all-button">Collapse all groups</button>
<button id="statistics_full_screen" class="statistics-button" onclick="openStatisticsTableModal()"><img alt="Fullscreen" src="style/fullscreen.svg"></button>
</div>
</div>
<div class="scrollable">
<table id="container_statistics_head" class="statistics-in extensible-geant">
<thead>
<tr>
<th rowspan="2" id="col-1" class="header sortable sorted-up"><span>Requests</span></th>
<th colspan="5" class="header"><span class="executions">Executions</span></th>
<th colspan="8" class="header"><span class="response-time">Response Time (ms)</span></th>
</tr>
<tr>
<th id="col-2" class="header sortable"><span>Total</span></th>
<th id="col-3" class="header sortable"><span>OK</span></th>
<th id="col-4" class="header sortable"><span>KO</span></th>
<th id="col-5" class="header sortable"><span>% KO</span></th>
<th id="col-6" class="header sortable"><span><abbr title="Count of events per second">Cnt/s</abbr></span></th>
<th id="col-7" class="header sortable"><span>Min</span></th>
<th id="col-8" class="header sortable"><span>50th pct</span></th>
<th id="col-9" class="header sortable"><span>75th pct</span></th>
<th id="col-10" class="header sortable"><span>95th pct</span></th>
<th id="col-11" class="header sortable"><span>99th pct</span></th>
<th id="col-12" class="header sortable"><span>Max</span></th>
<th id="col-13" class="header sortable"><span>Mean</span></th>
<th id="col-14" class="header sortable"><span><abbr title="Standard Deviation">Std Dev</abbr></span></th>
</tr>
</thead>
<tbody></tbody>
</table>
<table id="container_statistics_body" class="statistics-in extensible-geant">
<tbody></tbody>
</table>
</div>
</div>
</div>
<dialog id="statistics_table_modal" class="statistics-table-modal">
<div class="statistics-table-modal-header"><button class="button-modal" onclick="closeStatisticsTableModal()"><img alt="Close" src="style/close.svg"></button></div>
<div class="statistics-table-modal-container">
<div id="statistics_table_modal_content" class="statistics-table-modal-content"></div>
</div>
</dialog>
<script>
function openStatisticsTableModal () {
const statsTable = document.getElementById("stats");
const statsTableModal = document.getElementById("statistics_table_modal");
const fullScreenButton = document.getElementById("statistics_full_screen");
fullScreenButton.disabled = true;
if (typeof statsTableModal.showModal === "function") {
const statsTableModalContent = document.getElementById("statistics_table_modal_content");
statsTableModalContent.innerHTML = "";
statsTableModalContent.appendChild(statsTable);
statsTableModal.showModal();
statsTableModal.addEventListener("close", function () {
const container = document.getElementById("statistics_table_container");
container.appendChild(statsTable);
fullScreenButton.disabled = false;
});
} else {
const incompatibleBrowserVersionMessage = document.createElement("div");
incompatibleBrowserVersionMessage.innerText = "Sorry, the <dialog> API is not supported by this browser.";
statsTable.insertBefore(incompatibleBrowserVersionMessage, statsTable.children[0]);
}
}
function closeStatisticsTableModal () {
const statsTableModal = document.getElementById("statistics_table_modal");
statsTableModal.close();
}
</script>
<div class="statistics extensible-geant collapsed">
<div class="title">
Errors
</div>
<table id="container_errors" class="statistics-in extensible-geant">
<thead>
<tr>
<th id="error-col-1" class="header sortable"><span>Error</span></th>
<th id="error-col-2" class="header sortable"><span>Count</span></th>
<th id="error-col-3" class="header sortable"><span>Percentage</span></th>
</tr>
</thead>
<tbody>
<tr>
<td class="error-col-1 total ko">j.i.IOException: Premature close<span class="value" style="display:none">0</span></td>
<td class="value error-col-2 total ko">32795</td>
<td class="value error-col-3 total ko">80.939 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">status.find.in(200,422), but actually found 500<span class="value" style="display:none">1</span></td>
<td class="value error-col-2 total ko">2862</td>
<td class="value error-col-3 total ko">7.064 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">status.find.in(200,422), but actually found 502<span class="value" style="display:none">2</span></td>
<td class="value error-col-2 total ko">2278</td>
<td class="value error-col-3 total ko">5.622 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">status.find.in(200), but actually found 500<span class="value" style="display:none">3</span></td>
<td class="value error-col-2 total ko">1218</td>
<td class="value error-col-3 total ko">3.006 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">status.find.in(200), but actually found 502<span class="value" style="display:none">4</span></td>
<td class="value error-col-2 total ko">1125</td>
<td class="value error-col-3 total ko">2.777 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">status.find.in([200, 209], 304), found 502<span class="value" style="display:none">5</span></td>
<td class="value error-col-2 total ko">102</td>
<td class="value error-col-3 total ko">0.252 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">status.find.in([200, 209], 304), found 500<span class="value" style="display:none">6</span></td>
<td class="value error-col-2 total ko">93</td>
<td class="value error-col-3 total ko">0.23 %</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">7</span></td>
<td class="value error-col-2 total ko">38</td>
<td class="value error-col-3 total ko">0.094 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">status.find.in(200,422), but actually found 504<span class="value" style="display:none">8</span></td>
<td class="value error-col-2 total ko">6</td>
<td class="value error-col-3 total ko">0.015 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">status.find.in(200), but actually found 504<span class="value" style="display:none">9</span></td>
<td class="value error-col-2 total ko">1</td>
<td class="value error-col-3 total ko">0.002 %</td>
</tr>
</tbody>
</table>
</div>
<div class="schema geant">
<div id="active_users" class="geant"></div>
</div>
<div class="schema geant">
<div id="responsetimeDistributionContainer" class="geant"></div>
</div>
<div class="schema geant">
<div id="responsetimepercentilesovertimeokPercentilesContainer" class="geant"></div>
</div>
<div class="schema geant">
<div id="requests" class="geant"></div>
</div>
<div class="schema geant">
<div id="responses" class="geant"></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<script>
var pageStats = stats.stats;
$(document).ready(function() {
$('.simulation-tooltip').popover({trigger:'hover', placement:'left'});
setDetailsLinkUrl();
setGlobalMenu();
setActiveMenu();
fillStats(pageStats);
Highcharts.setOptions({
global: { useUTC: false }
});
var rangesChart = new Highcharts.Chart({
chart: {
renderTo: 'ranges',
marginRight: 100
},
credits: { enabled: false },
legend: { enabled: false },
title: { text: 'A title to let highcharts reserve the place for the title set later' },
xAxis: {
categories: [
pageStats.group1.htmlName,
pageStats.group2.htmlName,
pageStats.group3.htmlName,
pageStats.group4.htmlName
]
},
yAxis: {
title: { text: 'Number of Requests' },
reversedStacks: false
},
tooltip: {
formatter: function() {
var s;
if (this.point.name) { // the pie chart
s = ''+ this.point.name +': '+ this.y +'% requests';
} else {
s = ''+ this.y + ' requests';
}
return s;
}
},
plotOptions: {
series: {
stacking: 'normal',
shadow: true
}
},
series: [
{
type: 'column',
data: [{
color: '#68b65c',
y: pageStats.group1.count
},
{
color: '#FFDD00',
y: pageStats.group2.count
},
{
color: '#FFA900',
y: pageStats.group3.count
},
{
color: '#f15b4f',
y: pageStats.group4.count
}]
},
{
type: 'pie',
name: 'Percentages',
data: [
{
name: pageStats.group1.name,
y: pageStats.group1.percentage,
color: '#68b65c'
},
{
name: pageStats.group2.name,
y: pageStats.group2.percentage,
color: '#FFDD00'
},
{
name: pageStats.group3.name,
y: pageStats.group3.percentage,
color: '#FFA900'
},
{
name: pageStats.group4.name,
y: pageStats.group4.percentage,
color: '#f15b4f'
}
],
center: [345, 0],
size: 90,
showInLegend: false,
dataLabels: { enabled: false }
}
]
});
rangesChart.setTitle({
text: '<span class="chart_title">Response Time Ranges</span>',
useHTML: true
});
function numberOfRequestsDataForGroup(group) {
var data = {names: [], oks: [], kos: []};
$.each(group.contents, function(contentName, content) {
if (content.type == 'GROUP') {
var result = numberOfRequestsDataForGroup(content);
data.names = data.names.concat(result.names);
data.oks = data.oks.concat(result.oks);
data.kos = data.kos.concat(result.kos);
}
else if (content.type == 'REQUEST') {
data.names.push(content.path);
data.oks.push(parseInt(content.stats.numberOfRequests.ok));
data.kos.push(parseInt(content.stats.numberOfRequests.ko));
}
});
return data;
}
var numberOfRequestsData = numberOfRequestsDataForGroup(stats);
var tickInterval = Math.ceil(numberOfRequestsData.names.length / 1000);
new Highcharts.Chart({
chart: {
renderTo:'container_number_of_requests',
polar:true,
type:'column',
height:330
},
credits:{
enabled:false
},
title:{
text:'<span class="chart_title">Number of requests</span>',
useHTML: true,
widthAdjust:-20
},
xAxis:{
tickmarkPlacement:'on',
tickInterval: tickInterval,
categories:numberOfRequestsData.names,
labels:{ enabled:false }
},
yAxis:{
min:0,
reversedStacks: false
},
plotOptions:{
series:{
stacking:'normal',
groupPadding:0,
pointPlacement:'on',
shadow: true
}
},
legend: {
borderWidth: 0,
itemStyle: { fontWeight: "normal" },
symbolRadius: 0
},
series:[
{
name:'OK',
data:numberOfRequestsData.oks,
color:"#68b65c"
},
{
name:'KO',
data:numberOfRequestsData.kos,
color:"#f15b4f"
}
]
});
$('#container_exceptions').sortable('#container_exceptions');
function generateHtmlRow(request, level, index, parent, group) {
if (request.name == 'All Requests')
var url = 'index.html';
else
var url = request.pathFormatted + '.html';
if (group)
var expandButtonStyle = '';
else
var expandButtonStyle = ' hidden';
if (request.stats.numberOfRequests.total != 0)
var koPercent = (request.stats.numberOfRequests.ko * 100 / request.stats.numberOfRequests.total).toFixed(0) + '%';
else
var koPercent = '-'
return '<tr id="' + request.pathFormatted + '" data-parent=' + parent + '> \
<td class="total col-1"> \
<div class="expandable-container"> \
<span id="' + request.pathFormatted + '" style="margin-left: ' + (level * 10) + 'px;" class="expand-button' + expandButtonStyle + '"> </span> \
<a href="' + url +'" class="withTooltip">' + ellipsedLabel({ name: request.name, parentClass: "table-cell-tooltip" }) + '</a><span class="value" style="display:none;">' + index + '</span> \
</div> \
</td> \
<td class="value total col-2">' + request.stats.numberOfRequests.total + '</td> \
<td class="value ok col-3">' + request.stats.numberOfRequests.ok + '</td> \
<td class="value ko col-4">' + request.stats.numberOfRequests.ko + '</td> \
<td class="value ko col-5">' + koPercent + '</td> \
<td class="value total col-6">' + request.stats.meanNumberOfRequestsPerSecond.total + '</td> \
<td class="value total col-7">' + request.stats.minResponseTime.total + '</td> \
<td class="value total col-8">' + request.stats.percentiles1.total + '</td> \
<td class="value total col-9">' + request.stats.percentiles2.total + '</td> \
<td class="value total col-10">' + request.stats.percentiles3.total + '</td> \
<td class="value total col-11">' + request.stats.percentiles4.total + '</td> \
<td class="value total col-12">' + request.stats.maxResponseTime.total + '</td> \
<td class="value total col-13">' + request.stats.meanResponseTime.total + '</td> \
<td class="value total col-14">' + request.stats.standardDeviation.total + '</td> \
</tr>';
}
function generateHtmlRowsForGroup(group, level, index, parent) {
var buffer = '';
if (!parent)
parent = 'ROOT';
else {
buffer += generateHtmlRow(group, level - 1, index, parent, true);
index++;
parent = group.pathFormatted;
}
$.each(group.contents, function(contentName, content) {
if (content.type == 'GROUP') {
var result = generateHtmlRowsForGroup(content, level + 1, index, parent);
buffer += result.html;
index = result.index;
}
else if (content.type == 'REQUEST') {
buffer += generateHtmlRow(content, level, index, parent);
index++;
}
});
return { html: buffer, index: index };
}
$('#container_statistics_head tbody').append(generateHtmlRow(stats, 0, 0));
var lines = generateHtmlRowsForGroup(stats, 0, 0);
$('#container_statistics_body tbody').append(lines.html);
$('#container_statistics_head').sortable('#container_statistics_body');
$('.statistics').expandable();
if (lines.index < 30) {
$('#statistics_title span').attr('style', 'display: none;');
} else {
$('#statistics_title').addClass('title_collapsed');
$('#statistics_title').click(function() {
$('#toggle-stats').toggleClass("off");
$(this).toggleClass('title_collapsed').toggleClass('title_expanded');
$('#container_statistics_body').parent().toggleClass('scrollable').toggleClass('');
});
}
$('.table-cell-tooltip').popover({trigger:'hover'});
$('#container_errors').sortable('#container_errors');
allUsersData.yAxis = 0;
var allUsersChart = new Highcharts.StockChart({
chart: {
renderTo: 'active_users',
zoomType: 'x'
},
credits: { enabled: false },
legend: {
enabled: true,
floating: true,
align: 'right',
verticalAlign: 'top',
layout: 'vertical',
borderWidth: 0,
itemStyle: { fontWeight: "normal" },
symbolRadius: 0
},
title: { text: 'A title to let highcharts reserve the place for the title set later' },
navigator: {
maskInside: false
},
rangeSelector: {
buttonSpacing: 0,
buttonTheme: {
fill: '#CFC9C6',
padding: 1,
stroke: '#000000',
'stroke-width': 0.25,
style: {
color: '#000000',
fontWeight: 'bold',
},
states: {
stroke: '#000000',
'stroke-width': 0.25,
hover: {
fill: '#92918C',
style: { color: 'black' }
},
select: {
fill: '#FFA900',
style: { color: 'white' }
}
}
},
buttons : [
{
type : 'minute',
count : 1,
text : '1m'
}, {
type : 'minute',
count : 10,
text : '10m'
}, {
type : 'hour',
count : 1,
text : '1h'
}, {
type : 'all',
count : 1,
text : 'All'
}
],
selected : 3,
inputEnabled : false
},
xAxis: {
type: 'datetime',
ordinal: false,
maxZoom: 10000 // three days
},
yAxis: {
title: { text: 'Number of Active Users' },
opposite: false,
min: 0
},
series: [
{
color: '#5E7BE2',
name: 'créditos',
data: [
[1708369675000,0],[1708369676000,0],[1708369677000,0],[1708369678000,0],[1708369679000,1],[1708369680000,2],[1708369681000,2],[1708369682000,4],[1708369683000,4],[1708369684000,5],[1708369685000,6],[1708369686000,8],[1708369687000,8],[1708369688000,8],[1708369689000,10],[1708369690000,10],[1708369691000,12],[1708369692000,12],[1708369693000,14],[1708369694000,14],[1708369695000,15],[1708369696000,16],[1708369697000,17],[1708369698000,17],[1708369699000,19],[1708369700000,20],[1708369701000,20],[1708369702000,22],[1708369703000,22],[1708369704000,23],[1708369705000,25],[1708369706000,25],[1708369707000,27],[1708369708000,26],[1708369709000,28],[1708369710000,29],[1708369711000,30],[1708369712000,30],[1708369713000,32],[1708369714000,32],[1708369715000,33],[1708369716000,34],[1708369717000,35],[1708369718000,36],[1708369719000,37],[1708369720000,38],[1708369721000,39],[1708369722000,39],[1708369723000,41],[1708369724000,42],[1708369725000,43],[1708369726000,44],[1708369727000,45],[1708369728000,46],[1708369729000,47],[1708369730000,48],[1708369731000,49],[1708369732000,49],[1708369733000,51],[1708369734000,51],[1708369735000,53],[1708369736000,53],[1708369737000,53],[1708369738000,54],[1708369739000,56],[1708369740000,56],[1708369741000,57],[1708369742000,58],[1708369743000,59],[1708369744000,59],[1708369745000,61],[1708369746000,61],[1708369747000,67],[1708369748000,63],[1708369749000,64],[1708369750000,65],[1708369751000,66],[1708369752000,67],[1708369753000,68],[1708369754000,68],[1708369755000,70],[1708369756000,70],[1708369757000,72],[1708369758000,72],[1708369759000,73],[1708369760000,74],[1708369761000,75],[1708369762000,76],[1708369763000,77],[1708369764000,78],[1708369765000,79],[1708369766000,85],[1708369767000,81],[1708369768000,81],[1708369769000,82],[1708369770000,84],[1708369771000,86],[1708369772000,86],[1708369773000,87],[1708369774000,87],[1708369775000,89],[1708369776000,90],[1708369777000,90],[1708369778000,92],[1708369779000,99],[1708369780000,93],[1708369781000,98],[1708369782000,95],[1708369783000,96],[1708369784000,97],[1708369785000,98],[1708369786000,98],[1708369787000,99],[1708369788000,101],[1708369789000,101],[1708369790000,103],[1708369791000,103],[1708369792000,107],[1708369793000,105],[1708369794000,105],[1708369795000,107],[1708369796000,107],[1708369797000,111],[1708369798000,109],[1708369799000,115],[1708369800000,116],[1708369801000,142],[1708369802000,228],[1708369803000,295],[1708369804000,402],[1708369805000,448],[1708369806000,448],[1708369807000,448],[1708369808000,448],[1708369809000,448],[1708369810000,448],[1708369811000,448],[1708369812000,448],[1708369813000,449],[1708369814000,449],[1708369815000,449],[1708369816000,449],[1708369817000,449],[1708369818000,452],[1708369819000,452],[1708369820000,452],[1708369821000,452],[1708369822000,452],[1708369823000,447],[1708369824000,447],[1708369825000,447],[1708369826000,447],[1708369827000,447],[1708369828000,444],[1708369829000,444],[1708369830000,444],[1708369831000,443],[1708369832000,425],[1708369833000,414],[1708369834000,424],[1708369835000,406],[1708369836000,406],[1708369837000,406],[1708369838000,410],[1708369839000,410],[1708369840000,410],[1708369841000,410],[1708369842000,410],[1708369843000,406],[1708369844000,406],[1708369845000,406],[1708369846000,406],[1708369847000,406],[1708369848000,402],[1708369849000,402],[1708369850000,402],[1708369851000,402],[1708369852000,402],[1708369853000,403],[1708369854000,403],[1708369855000,403],[1708369856000,403],[1708369857000,403],[1708369858000,404],[1708369859000,404],[1708369860000,404],[1708369861000,404],[1708369862000,418],[1708369863000,397],[1708369864000,328],[1708369865000,245],[1708369866000,201],[1708369867000,201],[1708369868000,195],[1708369869000,195],[1708369870000,195],[1708369871000,195],[1708369872000,195],[1708369873000,230],[1708369874000,340],[1708369875000,426],[1708369876000,426],[1708369877000,426],[1708369878000,425],[1708369879000,425],[1708369880000,425],[1708369881000,425],[1708369882000,425],[1708369883000,423],[1708369884000,423],[1708369885000,423],[1708369886000,423],[1708369887000,423],[1708369888000,424],[1708369889000,424],[1708369890000,424],[1708369891000,424],[1708369892000,420],[1708369893000,424],[1708369894000,424],[1708369895000,424],[1708369896000,424],[1708369897000,424],[1708369898000,424],[1708369899000,424],[1708369900000,424],[1708369901000,424],[1708369902000,424],[1708369903000,421],[1708369904000,397],[1708369905000,363],[1708369906000,365],[1708369907000,365],[1708369908000,364],[1708369909000,364],[1708369910000,364],[1708369911000,364],[1708369912000,364],[1708369913000,360],[1708369914000,360],[1708369915000,360],[1708369916000,360],[1708369917000,360],[1708369918000,358],[1708369919000,355],[1708369920000,248],[1708369921000,248],[1708369922000,210],[1708369923000,198],[1708369924000,198],[1708369925000,198],[1708369926000,198],[1708369927000,198],[1708369928000,195],[1708369929000,195],[1708369930000,195],[1708369931000,195],[1708369932000,195],[1708369933000,175],[1708369934000,127],[1708369935000,85],[1708369936000,30],[1708369937000,30],[1708369938000,24],[1708369939000,24],[1708369940000,24],[1708369941000,24],[1708369942000,24],[1708369943000,18],[1708369944000,18],[1708369945000,18],[1708369946000,18],[1708369947000,18],[1708369948000,12],[1708369949000,12],[1708369950000,12],[1708369951000,12],[1708369952000,12],[1708369953000,7],[1708369954000,7],[1708369955000,7],[1708369956000,7],[1708369957000,7],[1708369958000,5],[1708369959000,5],[1708369960000,5],[1708369961000,5],[1708369962000,5],[1708369963000,2],[1708369964000,2],[1708369965000,2],[1708369966000,2],[1708369967000,2]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#68b65c',
name: 'débitos',
data: [
[1708369675000,0],[1708369676000,0],[1708369677000,0],[1708369678000,0],[1708369679000,1],[1708369680000,2],[1708369681000,4],[1708369682000,6],[1708369683000,7],[1708369684000,9],[1708369685000,11],[1708369686000,14],[1708369687000,15],[1708369688000,16],[1708369689000,19],[1708369690000,20],[1708369691000,22],[1708369692000,24],[1708369693000,25],[1708369694000,28],[1708369695000,29],[1708369696000,31],[1708369697000,33],[1708369698000,35],[1708369699000,37],[1708369700000,39],[1708369701000,40],[1708369702000,43],[1708369703000,45],[1708369704000,47],[1708369705000,48],[1708369706000,51],[1708369707000,52],[1708369708000,54],[1708369709000,55],[1708369710000,56],[1708369711000,59],[1708369712000,60],[1708369713000,62],[1708369714000,64],[1708369715000,66],[1708369716000,68],[1708369717000,69],[1708369718000,71],[1708369719000,74],[1708369720000,74],[1708369721000,77],[1708369722000,79],[1708369723000,80],[1708369724000,83],[1708369725000,84],[1708369726000,87],[1708369727000,89],[1708369728000,91],[1708369729000,93],[1708369730000,94],[1708369731000,96],[1708369732000,98],[1708369733000,99],[1708369734000,101],[1708369735000,102],[1708369736000,105],[1708369737000,106],[1708369738000,108],[1708369739000,110],[1708369740000,111],[1708369741000,113],[1708369742000,115],[1708369743000,117],[1708369744000,119],[1708369745000,120],[1708369746000,123],[1708369747000,132],[1708369748000,127],[1708369749000,129],[1708369750000,129],[1708369751000,133],[1708369752000,134],[1708369753000,136],[1708369754000,138],[1708369755000,140],[1708369756000,142],[1708369757000,143],[1708369758000,145],[1708369759000,147],[1708369760000,148],[1708369761000,151],[1708369762000,152],[1708369763000,153],[1708369764000,155],[1708369765000,157],[1708369766000,168],[1708369767000,161],[1708369768000,163],[1708369769000,165],[1708369770000,167],[1708369771000,169],[1708369772000,171],[1708369773000,172],[1708369774000,175],[1708369775000,176],[1708369776000,178],[1708369777000,180],[1708369778000,182],[1708369779000,200],[1708369780000,185],[1708369781000,192],[1708369782000,189],[1708369783000,191],[1708369784000,193],[1708369785000,193],[1708369786000,197],[1708369787000,198],[1708369788000,202],[1708369789000,201],[1708369790000,205],[1708369791000,205],[1708369792000,211],[1708369793000,210],[1708369794000,211],[1708369795000,213],[1708369796000,215],[1708369797000,223],[1708369798000,218],[1708369799000,230],[1708369800000,230],[1708369801000,281],[1708369802000,445],[1708369803000,573],[1708369804000,787],[1708369805000,874],[1708369806000,874],[1708369807000,874],[1708369808000,874],[1708369809000,874],[1708369810000,874],[1708369811000,874],[1708369812000,874],[1708369813000,874],[1708369814000,874],[1708369815000,874],[1708369816000,874],[1708369817000,874],[1708369818000,871],[1708369819000,871],[1708369820000,871],[1708369821000,871],[1708369822000,871],[1708369823000,876],[1708369824000,876],[1708369825000,876],[1708369826000,876],[1708369827000,876],[1708369828000,879],[1708369829000,879],[1708369830000,879],[1708369831000,880],[1708369832000,902],[1708369833000,903],[1708369834000,912],[1708369835000,916],[1708369836000,929],[1708369837000,929],[1708369838000,925],[1708369839000,925],[1708369840000,925],[1708369841000,925],[1708369842000,925],[1708369843000,929],[1708369844000,929],[1708369845000,929],[1708369846000,929],[1708369847000,929],[1708369848000,933],[1708369849000,933],[1708369850000,933],[1708369851000,933],[1708369852000,933],[1708369853000,932],[1708369854000,932],[1708369855000,932],[1708369856000,932],[1708369857000,932],[1708369858000,931],[1708369859000,931],[1708369860000,931],[1708369861000,931],[1708369862000,910],[1708369863000,858],[1708369864000,720],[1708369865000,532],[1708369866000,423],[1708369867000,423],[1708369868000,407],[1708369869000,407],[1708369870000,407],[1708369871000,407],[1708369872000,407],[1708369873000,479],[1708369874000,699],[1708369875000,900],[1708369876000,900],[1708369877000,900],[1708369878000,902],[1708369879000,902],[1708369880000,902],[1708369881000,902],[1708369882000,902],[1708369883000,904],[1708369884000,904],[1708369885000,904],[1708369886000,904],[1708369887000,904],[1708369888000,903],[1708369889000,903],[1708369890000,903],[1708369891000,903],[1708369892000,906],[1708369893000,904],[1708369894000,904],[1708369895000,904],[1708369896000,904],[1708369897000,904],[1708369898000,904],[1708369899000,904],[1708369900000,904],[1708369901000,904],[1708369902000,904],[1708369903000,902],[1708369904000,924],[1708369905000,944],[1708369906000,968],[1708369907000,968],[1708369908000,969],[1708369909000,969],[1708369910000,969],[1708369911000,969],[1708369912000,969],[1708369913000,973],[1708369914000,973],[1708369915000,973],[1708369916000,973],[1708369917000,973],[1708369918000,977],[1708369919000,971],[1708369920000,757],[1708369921000,757],[1708369922000,685],[1708369923000,644],[1708369924000,644],[1708369925000,644],[1708369926000,644],[1708369927000,644],[1708369928000,631],[1708369929000,631],[1708369930000,631],[1708369931000,631],[1708369932000,631],[1708369933000,585],[1708369934000,433],[1708369935000,275],[1708369936000,86],[1708369937000,86],[1708369938000,65],[1708369939000,65],[1708369940000,65],[1708369941000,65],[1708369942000,65],[1708369943000,53],[1708369944000,53],[1708369945000,53],[1708369946000,53],[1708369947000,53],[1708369948000,43],[1708369949000,43],[1708369950000,43],[1708369951000,43],[1708369952000,43],[1708369953000,32],[1708369954000,32],[1708369955000,32],[1708369956000,32],[1708369957000,32],[1708369958000,18],[1708369959000,18],[1708369960000,18],[1708369961000,18],[1708369962000,18],[1708369963000,5],[1708369964000,5],[1708369965000,5],[1708369966000,5],[1708369967000,5]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#f15b4f',
name: 'extratos',
data: [
[1708369675000,0],[1708369676000,0],[1708369677000,0],[1708369678000,0],[1708369679000,1],[1708369680000,1],[1708369681000,1],[1708369682000,1],[1708369683000,1],[1708369684000,1],[1708369685000,2],[1708369686000,2],[1708369687000,2],[1708369688000,2],[1708369689000,1],[1708369690000,2],[1708369691000,2],[1708369692000,2],[1708369693000,2],[1708369694000,2],[1708369695000,2],[1708369696000,2],[1708369697000,3],[1708369698000,2],[1708369699000,3],[1708369700000,3],[1708369701000,3],[1708369702000,2],[1708369703000,3],[1708369704000,3],[1708369705000,3],[1708369706000,3],[1708369707000,4],[1708369708000,3],[1708369709000,3],[1708369710000,4],[1708369711000,3],[1708369712000,3],[1708369713000,4],[1708369714000,3],[1708369715000,4],[1708369716000,4],[1708369717000,4],[1708369718000,4],[1708369719000,4],[1708369720000,4],[1708369721000,4],[1708369722000,4],[1708369723000,4],[1708369724000,4],[1708369725000,5],[1708369726000,4],[1708369727000,5],[1708369728000,6],[1708369729000,4],[1708369730000,5],[1708369731000,5],[1708369732000,5],[1708369733000,5],[1708369734000,5],[1708369735000,5],[1708369736000,5],[1708369737000,6],[1708369738000,5],[1708369739000,6],[1708369740000,5],[1708369741000,6],[1708369742000,5],[1708369743000,6],[1708369744000,6],[1708369745000,6],[1708369746000,6],[1708369747000,7],[1708369748000,6],[1708369749000,6],[1708369750000,7],[1708369751000,6],[1708369752000,6],[1708369753000,7],[1708369754000,6],[1708369755000,7],[1708369756000,7],[1708369757000,7],[1708369758000,7],[1708369759000,7],[1708369760000,7],[1708369761000,7],[1708369762000,7],[1708369763000,7],[1708369764000,7],[1708369765000,8],[1708369766000,8],[1708369767000,8],[1708369768000,8],[1708369769000,7],[1708369770000,8],[1708369771000,8],[1708369772000,8],[1708369773000,8],[1708369774000,8],[1708369775000,8],[1708369776000,8],[1708369777000,9],[1708369778000,8],[1708369779000,10],[1708369780000,8],[1708369781000,10],[1708369782000,8],[1708369783000,9],[1708369784000,9],[1708369785000,9],[1708369786000,9],[1708369787000,9],[1708369788000,9],[1708369789000,9],[1708369790000,10],[1708369791000,9],[1708369792000,9],[1708369793000,10],[1708369794000,9],[1708369795000,10],[1708369796000,10],[1708369797000,11],[1708369798000,10],[1708369799000,11],[1708369800000,11],[1708369801000,13],[1708369802000,20],[1708369803000,28],[1708369804000,38],[1708369805000,41],[1708369806000,41],[1708369807000,41],[1708369808000,41],[1708369809000,41],[1708369810000,41],[1708369811000,41],[1708369812000,41],[1708369813000,40],[1708369814000,40],[1708369815000,40],[1708369816000,40],[1708369817000,40],[1708369818000,40],[1708369819000,40],[1708369820000,40],[1708369821000,40],[1708369822000,40],[1708369823000,40],[1708369824000,40],[1708369825000,40],[1708369826000,40],[1708369827000,40],[1708369828000,40],[1708369829000,40],[1708369830000,40],[1708369831000,40],[1708369832000,36],[1708369833000,34],[1708369834000,27],[1708369835000,27],[1708369836000,28],[1708369837000,28],[1708369838000,28],[1708369839000,28],[1708369840000,28],[1708369841000,28],[1708369842000,28],[1708369843000,28],[1708369844000,28],[1708369845000,28],[1708369846000,28],[1708369847000,28],[1708369848000,28],[1708369849000,28],[1708369850000,28],[1708369851000,28],[1708369852000,28],[1708369853000,28],[1708369854000,28],[1708369855000,28],[1708369856000,28],[1708369857000,28],[1708369858000,28],[1708369859000,28],[1708369860000,28],[1708369861000,28],[1708369862000,29],[1708369863000,29],[1708369864000,28],[1708369865000,20],[1708369866000,16],[1708369867000,16],[1708369868000,16],[1708369869000,16],[1708369870000,16],[1708369871000,16],[1708369872000,16],[1708369873000,20],[1708369874000,30],[1708369875000,37],[1708369876000,37],[1708369877000,37],[1708369878000,36],[1708369879000,36],[1708369880000,36],[1708369881000,36],[1708369882000,36],[1708369883000,36],[1708369884000,36],[1708369885000,36],[1708369886000,36],[1708369887000,36],[1708369888000,36],[1708369889000,36],[1708369890000,36],[1708369891000,36],[1708369892000,36],[1708369893000,35],[1708369894000,35],[1708369895000,35],[1708369896000,35],[1708369897000,35],[1708369898000,35],[1708369899000,35],[1708369900000,35],[1708369901000,35],[1708369902000,35],[1708369903000,34],[1708369904000,31],[1708369905000,27],[1708369906000,30],[1708369907000,30],[1708369908000,30],[1708369909000,30],[1708369910000,30],[1708369911000,30],[1708369912000,30],[1708369913000,30],[1708369914000,30],[1708369915000,30],[1708369916000,30],[1708369917000,30],[1708369918000,28],[1708369919000,27],[1708369920000,18],[1708369921000,18],[1708369922000,16],[1708369923000,15],[1708369924000,15],[1708369925000,15],[1708369926000,15],[1708369927000,15],[1708369928000,15],[1708369929000,15],[1708369930000,15],[1708369931000,15],[1708369932000,15],[1708369933000,13],[1708369934000,11],[1708369935000,8],[1708369936000,0],[1708369937000,0],[1708369938000,0],[1708369939000,0],[1708369940000,0],[1708369941000,0],[1708369942000,0],[1708369943000,0],[1708369944000,0],[1708369945000,0],[1708369946000,0],[1708369947000,0],[1708369948000,0],[1708369949000,0],[1708369950000,0],[1708369951000,0],[1708369952000,0],[1708369953000,0],[1708369954000,0],[1708369955000,0],[1708369956000,0],[1708369957000,0],[1708369958000,0],[1708369959000,0],[1708369960000,0],[1708369961000,0],[1708369962000,0],[1708369963000,0],[1708369964000,0],[1708369965000,0],[1708369966000,0],[1708369967000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FFDD00',
name: 'validações',
data: [
[1708369675000,0],[1708369676000,0],[1708369677000,0],[1708369678000,5],[1708369679000,5],[1708369680000,0],[1708369681000,0],[1708369682000,0],[1708369683000,0],[1708369684000,0],[1708369685000,0],[1708369686000,0],[1708369687000,0],[1708369688000,0],[1708369689000,0],[1708369690000,0],[1708369691000,0],[1708369692000,0],[1708369693000,0],[1708369694000,0],[1708369695000,0],[1708369696000,0],[1708369697000,0],[1708369698000,0],[1708369699000,0],[1708369700000,0],[1708369701000,0],[1708369702000,0],[1708369703000,0],[1708369704000,0],[1708369705000,0],[1708369706000,0],[1708369707000,0],[1708369708000,0],[1708369709000,0],[1708369710000,0],[1708369711000,0],[1708369712000,0],[1708369713000,0],[1708369714000,0],[1708369715000,0],[1708369716000,0],[1708369717000,0],[1708369718000,0],[1708369719000,0],[1708369720000,0],[1708369721000,0],[1708369722000,0],[1708369723000,0],[1708369724000,0],[1708369725000,0],[1708369726000,0],[1708369727000,0],[1708369728000,0],[1708369729000,0],[1708369730000,0],[1708369731000,0],[1708369732000,0],[1708369733000,0],[1708369734000,0],[1708369735000,0],[1708369736000,0],[1708369737000,0],[1708369738000,0],[1708369739000,0],[1708369740000,0],[1708369741000,0],[1708369742000,0],[1708369743000,0],[1708369744000,0],[1708369745000,0],[1708369746000,0],[1708369747000,0],[1708369748000,0],[1708369749000,0],[1708369750000,0],[1708369751000,0],[1708369752000,0],[1708369753000,0],[1708369754000,0],[1708369755000,0],[1708369756000,0],[1708369757000,0],[1708369758000,0],[1708369759000,0],[1708369760000,0],[1708369761000,0],[1708369762000,0],[1708369763000,0],[1708369764000,0],[1708369765000,0],[1708369766000,0],[1708369767000,0],[1708369768000,0],[1708369769000,0],[1708369770000,0],[1708369771000,0],[1708369772000,0],[1708369773000,0],[1708369774000,0],[1708369775000,0],[1708369776000,0],[1708369777000,0],[1708369778000,0],[1708369779000,0],[1708369780000,0],[1708369781000,0],[1708369782000,0],[1708369783000,0],[1708369784000,0],[1708369785000,0],[1708369786000,0],[1708369787000,0],[1708369788000,0],[1708369789000,0],[1708369790000,0],[1708369791000,0],[1708369792000,0],[1708369793000,0],[1708369794000,0],[1708369795000,0],[1708369796000,0],[1708369797000,0],[1708369798000,0],[1708369799000,0],[1708369800000,0],[1708369801000,0],[1708369802000,0],[1708369803000,0],[1708369804000,0],[1708369805000,0],[1708369806000,0],[1708369807000,0],[1708369808000,0],[1708369809000,0],[1708369810000,0],[1708369811000,0],[1708369812000,0],[1708369813000,0],[1708369814000,0],[1708369815000,0],[1708369816000,0],[1708369817000,0],[1708369818000,0],[1708369819000,0],[1708369820000,0],[1708369821000,0],[1708369822000,0],[1708369823000,0],[1708369824000,0],[1708369825000,0],[1708369826000,0],[1708369827000,0],[1708369828000,0],[1708369829000,0],[1708369830000,0],[1708369831000,0],[1708369832000,0],[1708369833000,0],[1708369834000,0],[1708369835000,0],[1708369836000,0],[1708369837000,0],[1708369838000,0],[1708369839000,0],[1708369840000,0],[1708369841000,0],[1708369842000,0],[1708369843000,0],[1708369844000,0],[1708369845000,0],[1708369846000,0],[1708369847000,0],[1708369848000,0],[1708369849000,0],[1708369850000,0],[1708369851000,0],[1708369852000,0],[1708369853000,0],[1708369854000,0],[1708369855000,0],[1708369856000,0],[1708369857000,0],[1708369858000,0],[1708369859000,0],[1708369860000,0],[1708369861000,0],[1708369862000,0],[1708369863000,0],[1708369864000,0],[1708369865000,0],[1708369866000,0],[1708369867000,0],[1708369868000,0],[1708369869000,0],[1708369870000,0],[1708369871000,0],[1708369872000,0],[1708369873000,0],[1708369874000,0],[1708369875000,0],[1708369876000,0],[1708369877000,0],[1708369878000,0],[1708369879000,0],[1708369880000,0],[1708369881000,0],[1708369882000,0],[1708369883000,0],[1708369884000,0],[1708369885000,0],[1708369886000,0],[1708369887000,0],[1708369888000,0],[1708369889000,0],[1708369890000,0],[1708369891000,0],[1708369892000,0],[1708369893000,0],[1708369894000,0],[1708369895000,0],[1708369896000,0],[1708369897000,0],[1708369898000,0],[1708369899000,0],[1708369900000,0],[1708369901000,0],[1708369902000,0],[1708369903000,0],[1708369904000,0],[1708369905000,0],[1708369906000,0],[1708369907000,0],[1708369908000,0],[1708369909000,0],[1708369910000,0],[1708369911000,0],[1708369912000,0],[1708369913000,0],[1708369914000,0],[1708369915000,0],[1708369916000,0],[1708369917000,0],[1708369918000,0],[1708369919000,0],[1708369920000,0],[1708369921000,0],[1708369922000,0],[1708369923000,0],[1708369924000,0],[1708369925000,0],[1708369926000,0],[1708369927000,0],[1708369928000,0],[1708369929000,0],[1708369930000,0],[1708369931000,0],[1708369932000,0],[1708369933000,0],[1708369934000,0],[1708369935000,0],[1708369936000,0],[1708369937000,0],[1708369938000,0],[1708369939000,0],[1708369940000,0],[1708369941000,0],[1708369942000,0],[1708369943000,0],[1708369944000,0],[1708369945000,0],[1708369946000,0],[1708369947000,0],[1708369948000,0],[1708369949000,0],[1708369950000,0],[1708369951000,0],[1708369952000,0],[1708369953000,0],[1708369954000,0],[1708369955000,0],[1708369956000,0],[1708369957000,0],[1708369958000,0],[1708369959000,0],[1708369960000,0],[1708369961000,0],[1708369962000,0],[1708369963000,0],[1708369964000,0],[1708369965000,0],[1708369966000,0],[1708369967000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00D5FF',
name: 'validação HTTP 404',
data: [
[1708369675000,0],[1708369676000,0],[1708369677000,0],[1708369678000,1],[1708369679000,0],[1708369680000,0],[1708369681000,0],[1708369682000,0],[1708369683000,0],[1708369684000,0],[1708369685000,0],[1708369686000,0],[1708369687000,0],[1708369688000,0],[1708369689000,0],[1708369690000,0],[1708369691000,0],[1708369692000,0],[1708369693000,0],[1708369694000,0],[1708369695000,0],[1708369696000,0],[1708369697000,0],[1708369698000,0],[1708369699000,0],[1708369700000,0],[1708369701000,0],[1708369702000,0],[1708369703000,0],[1708369704000,0],[1708369705000,0],[1708369706000,0],[1708369707000,0],[1708369708000,0],[1708369709000,0],[1708369710000,0],[1708369711000,0],[1708369712000,0],[1708369713000,0],[1708369714000,0],[1708369715000,0],[1708369716000,0],[1708369717000,0],[1708369718000,0],[1708369719000,0],[1708369720000,0],[1708369721000,0],[1708369722000,0],[1708369723000,0],[1708369724000,0],[1708369725000,0],[1708369726000,0],[1708369727000,0],[1708369728000,0],[1708369729000,0],[1708369730000,0],[1708369731000,0],[1708369732000,0],[1708369733000,0],[1708369734000,0],[1708369735000,0],[1708369736000,0],[1708369737000,0],[1708369738000,0],[1708369739000,0],[1708369740000,0],[1708369741000,0],[1708369742000,0],[1708369743000,0],[1708369744000,0],[1708369745000,0],[1708369746000,0],[1708369747000,0],[1708369748000,0],[1708369749000,0],[1708369750000,0],[1708369751000,0],[1708369752000,0],[1708369753000,0],[1708369754000,0],[1708369755000,0],[1708369756000,0],[1708369757000,0],[1708369758000,0],[1708369759000,0],[1708369760000,0],[1708369761000,0],[1708369762000,0],[1708369763000,0],[1708369764000,0],[1708369765000,0],[1708369766000,0],[1708369767000,0],[1708369768000,0],[1708369769000,0],[1708369770000,0],[1708369771000,0],[1708369772000,0],[1708369773000,0],[1708369774000,0],[1708369775000,0],[1708369776000,0],[1708369777000,0],[1708369778000,0],[1708369779000,0],[1708369780000,0],[1708369781000,0],[1708369782000,0],[1708369783000,0],[1708369784000,0],[1708369785000,0],[1708369786000,0],[1708369787000,0],[1708369788000,0],[1708369789000,0],[1708369790000,0],[1708369791000,0],[1708369792000,0],[1708369793000,0],[1708369794000,0],[1708369795000,0],[1708369796000,0],[1708369797000,0],[1708369798000,0],[1708369799000,0],[1708369800000,0],[1708369801000,0],[1708369802000,0],[1708369803000,0],[1708369804000,0],[1708369805000,0],[1708369806000,0],[1708369807000,0],[1708369808000,0],[1708369809000,0],[1708369810000,0],[1708369811000,0],[1708369812000,0],[1708369813000,0],[1708369814000,0],[1708369815000,0],[1708369816000,0],[1708369817000,0],[1708369818000,0],[1708369819000,0],[1708369820000,0],[1708369821000,0],[1708369822000,0],[1708369823000,0],[1708369824000,0],[1708369825000,0],[1708369826000,0],[1708369827000,0],[1708369828000,0],[1708369829000,0],[1708369830000,0],[1708369831000,0],[1708369832000,0],[1708369833000,0],[1708369834000,0],[1708369835000,0],[1708369836000,0],[1708369837000,0],[1708369838000,0],[1708369839000,0],[1708369840000,0],[1708369841000,0],[1708369842000,0],[1708369843000,0],[1708369844000,0],[1708369845000,0],[1708369846000,0],[1708369847000,0],[1708369848000,0],[1708369849000,0],[1708369850000,0],[1708369851000,0],[1708369852000,0],[1708369853000,0],[1708369854000,0],[1708369855000,0],[1708369856000,0],[1708369857000,0],[1708369858000,0],[1708369859000,0],[1708369860000,0],[1708369861000,0],[1708369862000,0],[1708369863000,0],[1708369864000,0],[1708369865000,0],[1708369866000,0],[1708369867000,0],[1708369868000,0],[1708369869000,0],[1708369870000,0],[1708369871000,0],[1708369872000,0],[1708369873000,0],[1708369874000,0],[1708369875000,0],[1708369876000,0],[1708369877000,0],[1708369878000,0],[1708369879000,0],[1708369880000,0],[1708369881000,0],[1708369882000,0],[1708369883000,0],[1708369884000,0],[1708369885000,0],[1708369886000,0],[1708369887000,0],[1708369888000,0],[1708369889000,0],[1708369890000,0],[1708369891000,0],[1708369892000,0],[1708369893000,0],[1708369894000,0],[1708369895000,0],[1708369896000,0],[1708369897000,0],[1708369898000,0],[1708369899000,0],[1708369900000,0],[1708369901000,0],[1708369902000,0],[1708369903000,0],[1708369904000,0],[1708369905000,0],[1708369906000,0],[1708369907000,0],[1708369908000,0],[1708369909000,0],[1708369910000,0],[1708369911000,0],[1708369912000,0],[1708369913000,0],[1708369914000,0],[1708369915000,0],[1708369916000,0],[1708369917000,0],[1708369918000,0],[1708369919000,0],[1708369920000,0],[1708369921000,0],[1708369922000,0],[1708369923000,0],[1708369924000,0],[1708369925000,0],[1708369926000,0],[1708369927000,0],[1708369928000,0],[1708369929000,0],[1708369930000,0],[1708369931000,0],[1708369932000,0],[1708369933000,0],[1708369934000,0],[1708369935000,0],[1708369936000,0],[1708369937000,0],[1708369938000,0],[1708369939000,0],[1708369940000,0],[1708369941000,0],[1708369942000,0],[1708369943000,0],[1708369944000,0],[1708369945000,0],[1708369946000,0],[1708369947000,0],[1708369948000,0],[1708369949000,0],[1708369950000,0],[1708369951000,0],[1708369952000,0],[1708369953000,0],[1708369954000,0],[1708369955000,0],[1708369956000,0],[1708369957000,0],[1708369958000,0],[1708369959000,0],[1708369960000,0],[1708369961000,0],[1708369962000,0],[1708369963000,0],[1708369964000,0],[1708369965000,0],[1708369966000,0],[1708369967000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00FF00',
name: 'validação concorrência saldo - 0',
data: [
[1708369675000,0],[1708369676000,0],[1708369677000,1],[1708369678000,0],[1708369679000,0],[1708369680000,0],[1708369681000,0],[1708369682000,0],[1708369683000,0],[1708369684000,0],[1708369685000,0],[1708369686000,0],[1708369687000,0],[1708369688000,0],[1708369689000,0],[1708369690000,0],[1708369691000,0],[1708369692000,0],[1708369693000,0],[1708369694000,0],[1708369695000,0],[1708369696000,0],[1708369697000,0],[1708369698000,0],[1708369699000,0],[1708369700000,0],[1708369701000,0],[1708369702000,0],[1708369703000,0],[1708369704000,0],[1708369705000,0],[1708369706000,0],[1708369707000,0],[1708369708000,0],[1708369709000,0],[1708369710000,0],[1708369711000,0],[1708369712000,0],[1708369713000,0],[1708369714000,0],[1708369715000,0],[1708369716000,0],[1708369717000,0],[1708369718000,0],[1708369719000,0],[1708369720000,0],[1708369721000,0],[1708369722000,0],[1708369723000,0],[1708369724000,0],[1708369725000,0],[1708369726000,0],[1708369727000,0],[1708369728000,0],[1708369729000,0],[1708369730000,0],[1708369731000,0],[1708369732000,0],[1708369733000,0],[1708369734000,0],[1708369735000,0],[1708369736000,0],[1708369737000,0],[1708369738000,0],[1708369739000,0],[1708369740000,0],[1708369741000,0],[1708369742000,0],[1708369743000,0],[1708369744000,0],[1708369745000,0],[1708369746000,0],[1708369747000,0],[1708369748000,0],[1708369749000,0],[1708369750000,0],[1708369751000,0],[1708369752000,0],[1708369753000,0],[1708369754000,0],[1708369755000,0],[1708369756000,0],[1708369757000,0],[1708369758000,0],[1708369759000,0],[1708369760000,0],[1708369761000,0],[1708369762000,0],[1708369763000,0],[1708369764000,0],[1708369765000,0],[1708369766000,0],[1708369767000,0],[1708369768000,0],[1708369769000,0],[1708369770000,0],[1708369771000,0],[1708369772000,0],[1708369773000,0],[1708369774000,0],[1708369775000,0],[1708369776000,0],[1708369777000,0],[1708369778000,0],[1708369779000,0],[1708369780000,0],[1708369781000,0],[1708369782000,0],[1708369783000,0],[1708369784000,0],[1708369785000,0],[1708369786000,0],[1708369787000,0],[1708369788000,0],[1708369789000,0],[1708369790000,0],[1708369791000,0],[1708369792000,0],[1708369793000,0],[1708369794000,0],[1708369795000,0],[1708369796000,0],[1708369797000,0],[1708369798000,0],[1708369799000,0],[1708369800000,0],[1708369801000,0],[1708369802000,0],[1708369803000,0],[1708369804000,0],[1708369805000,0],[1708369806000,0],[1708369807000,0],[1708369808000,0],[1708369809000,0],[1708369810000,0],[1708369811000,0],[1708369812000,0],[1708369813000,0],[1708369814000,0],[1708369815000,0],[1708369816000,0],[1708369817000,0],[1708369818000,0],[1708369819000,0],[1708369820000,0],[1708369821000,0],[1708369822000,0],[1708369823000,0],[1708369824000,0],[1708369825000,0],[1708369826000,0],[1708369827000,0],[1708369828000,0],[1708369829000,0],[1708369830000,0],[1708369831000,0],[1708369832000,0],[1708369833000,0],[1708369834000,0],[1708369835000,0],[1708369836000,0],[1708369837000,0],[1708369838000,0],[1708369839000,0],[1708369840000,0],[1708369841000,0],[1708369842000,0],[1708369843000,0],[1708369844000,0],[1708369845000,0],[1708369846000,0],[1708369847000,0],[1708369848000,0],[1708369849000,0],[1708369850000,0],[1708369851000,0],[1708369852000,0],[1708369853000,0],[1708369854000,0],[1708369855000,0],[1708369856000,0],[1708369857000,0],[1708369858000,0],[1708369859000,0],[1708369860000,0],[1708369861000,0],[1708369862000,0],[1708369863000,0],[1708369864000,0],[1708369865000,0],[1708369866000,0],[1708369867000,0],[1708369868000,0],[1708369869000,0],[1708369870000,0],[1708369871000,0],[1708369872000,0],[1708369873000,0],[1708369874000,0],[1708369875000,0],[1708369876000,0],[1708369877000,0],[1708369878000,0],[1708369879000,0],[1708369880000,0],[1708369881000,0],[1708369882000,0],[1708369883000,0],[1708369884000,0],[1708369885000,0],[1708369886000,0],[1708369887000,0],[1708369888000,0],[1708369889000,0],[1708369890000,0],[1708369891000,0],[1708369892000,0],[1708369893000,0],[1708369894000,0],[1708369895000,0],[1708369896000,0],[1708369897000,0],[1708369898000,0],[1708369899000,0],[1708369900000,0],[1708369901000,0],[1708369902000,0],[1708369903000,0],[1708369904000,0],[1708369905000,0],[1708369906000,0],[1708369907000,0],[1708369908000,0],[1708369909000,0],[1708369910000,0],[1708369911000,0],[1708369912000,0],[1708369913000,0],[1708369914000,0],[1708369915000,0],[1708369916000,0],[1708369917000,0],[1708369918000,0],[1708369919000,0],[1708369920000,0],[1708369921000,0],[1708369922000,0],[1708369923000,0],[1708369924000,0],[1708369925000,0],[1708369926000,0],[1708369927000,0],[1708369928000,0],[1708369929000,0],[1708369930000,0],[1708369931000,0],[1708369932000,0],[1708369933000,0],[1708369934000,0],[1708369935000,0],[1708369936000,0],[1708369937000,0],[1708369938000,0],[1708369939000,0],[1708369940000,0],[1708369941000,0],[1708369942000,0],[1708369943000,0],[1708369944000,0],[1708369945000,0],[1708369946000,0],[1708369947000,0],[1708369948000,0],[1708369949000,0],[1708369950000,0],[1708369951000,0],[1708369952000,0],[1708369953000,0],[1708369954000,0],[1708369955000,0],[1708369956000,0],[1708369957000,0],[1708369958000,0],[1708369959000,0],[1708369960000,0],[1708369961000,0],[1708369962000,0],[1708369963000,0],[1708369964000,0],[1708369965000,0],[1708369966000,0],[1708369967000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#9D00FF',
name: 'validação concorrência transações - c',
data: [
[1708369675000,0],[1708369676000,25],[1708369677000,25],[1708369678000,0],[1708369679000,0],[1708369680000,0],[1708369681000,0],[1708369682000,0],[1708369683000,0],[1708369684000,0],[1708369685000,0],[1708369686000,0],[1708369687000,0],[1708369688000,0],[1708369689000,0],[1708369690000,0],[1708369691000,0],[1708369692000,0],[1708369693000,0],[1708369694000,0],[1708369695000,0],[1708369696000,0],[1708369697000,0],[1708369698000,0],[1708369699000,0],[1708369700000,0],[1708369701000,0],[1708369702000,0],[1708369703000,0],[1708369704000,0],[1708369705000,0],[1708369706000,0],[1708369707000,0],[1708369708000,0],[1708369709000,0],[1708369710000,0],[1708369711000,0],[1708369712000,0],[1708369713000,0],[1708369714000,0],[1708369715000,0],[1708369716000,0],[1708369717000,0],[1708369718000,0],[1708369719000,0],[1708369720000,0],[1708369721000,0],[1708369722000,0],[1708369723000,0],[1708369724000,0],[1708369725000,0],[1708369726000,0],[1708369727000,0],[1708369728000,0],[1708369729000,0],[1708369730000,0],[1708369731000,0],[1708369732000,0],[1708369733000,0],[1708369734000,0],[1708369735000,0],[1708369736000,0],[1708369737000,0],[1708369738000,0],[1708369739000,0],[1708369740000,0],[1708369741000,0],[1708369742000,0],[1708369743000,0],[1708369744000,0],[1708369745000,0],[1708369746000,0],[1708369747000,0],[1708369748000,0],[1708369749000,0],[1708369750000,0],[1708369751000,0],[1708369752000,0],[1708369753000,0],[1708369754000,0],[1708369755000,0],[1708369756000,0],[1708369757000,0],[1708369758000,0],[1708369759000,0],[1708369760000,0],[1708369761000,0],[1708369762000,0],[1708369763000,0],[1708369764000,0],[1708369765000,0],[1708369766000,0],[1708369767000,0],[1708369768000,0],[1708369769000,0],[1708369770000,0],[1708369771000,0],[1708369772000,0],[1708369773000,0],[1708369774000,0],[1708369775000,0],[1708369776000,0],[1708369777000,0],[1708369778000,0],[1708369779000,0],[1708369780000,0],[1708369781000,0],[1708369782000,0],[1708369783000,0],[1708369784000,0],[1708369785000,0],[1708369786000,0],[1708369787000,0],[1708369788000,0],[1708369789000,0],[1708369790000,0],[1708369791000,0],[1708369792000,0],[1708369793000,0],[1708369794000,0],[1708369795000,0],[1708369796000,0],[1708369797000,0],[1708369798000,0],[1708369799000,0],[1708369800000,0],[1708369801000,0],[1708369802000,0],[1708369803000,0],[1708369804000,0],[1708369805000,0],[1708369806000,0],[1708369807000,0],[1708369808000,0],[1708369809000,0],[1708369810000,0],[1708369811000,0],[1708369812000,0],[1708369813000,0],[1708369814000,0],[1708369815000,0],[1708369816000,0],[1708369817000,0],[1708369818000,0],[1708369819000,0],[1708369820000,0],[1708369821000,0],[1708369822000,0],[1708369823000,0],[1708369824000,0],[1708369825000,0],[1708369826000,0],[1708369827000,0],[1708369828000,0],[1708369829000,0],[1708369830000,0],[1708369831000,0],[1708369832000,0],[1708369833000,0],[1708369834000,0],[1708369835000,0],[1708369836000,0],[1708369837000,0],[1708369838000,0],[1708369839000,0],[1708369840000,0],[1708369841000,0],[1708369842000,0],[1708369843000,0],[1708369844000,0],[1708369845000,0],[1708369846000,0],[1708369847000,0],[1708369848000,0],[1708369849000,0],[1708369850000,0],[1708369851000,0],[1708369852000,0],[1708369853000,0],[1708369854000,0],[1708369855000,0],[1708369856000,0],[1708369857000,0],[1708369858000,0],[1708369859000,0],[1708369860000,0],[1708369861000,0],[1708369862000,0],[1708369863000,0],[1708369864000,0],[1708369865000,0],[1708369866000,0],[1708369867000,0],[1708369868000,0],[1708369869000,0],[1708369870000,0],[1708369871000,0],[1708369872000,0],[1708369873000,0],[1708369874000,0],[1708369875000,0],[1708369876000,0],[1708369877000,0],[1708369878000,0],[1708369879000,0],[1708369880000,0],[1708369881000,0],[1708369882000,0],[1708369883000,0],[1708369884000,0],[1708369885000,0],[1708369886000,0],[1708369887000,0],[1708369888000,0],[1708369889000,0],[1708369890000,0],[1708369891000,0],[1708369892000,0],[1708369893000,0],[1708369894000,0],[1708369895000,0],[1708369896000,0],[1708369897000,0],[1708369898000,0],[1708369899000,0],[1708369900000,0],[1708369901000,0],[1708369902000,0],[1708369903000,0],[1708369904000,0],[1708369905000,0],[1708369906000,0],[1708369907000,0],[1708369908000,0],[1708369909000,0],[1708369910000,0],[1708369911000,0],[1708369912000,0],[1708369913000,0],[1708369914000,0],[1708369915000,0],[1708369916000,0],[1708369917000,0],[1708369918000,0],[1708369919000,0],[1708369920000,0],[1708369921000,0],[1708369922000,0],[1708369923000,0],[1708369924000,0],[1708369925000,0],[1708369926000,0],[1708369927000,0],[1708369928000,0],[1708369929000,0],[1708369930000,0],[1708369931000,0],[1708369932000,0],[1708369933000,0],[1708369934000,0],[1708369935000,0],[1708369936000,0],[1708369937000,0],[1708369938000,0],[1708369939000,0],[1708369940000,0],[1708369941000,0],[1708369942000,0],[1708369943000,0],[1708369944000,0],[1708369945000,0],[1708369946000,0],[1708369947000,0],[1708369948000,0],[1708369949000,0],[1708369950000,0],[1708369951000,0],[1708369952000,0],[1708369953000,0],[1708369954000,0],[1708369955000,0],[1708369956000,0],[1708369957000,0],[1708369958000,0],[1708369959000,0],[1708369960000,0],[1708369961000,0],[1708369962000,0],[1708369963000,0],[1708369964000,0],[1708369965000,0],[1708369966000,0],[1708369967000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FF00E1',
name: 'validação concorrência saldo - -25',
data: [
[1708369675000,1],[1708369676000,1],[1708369677000,0],[1708369678000,0],[1708369679000,0],[1708369680000,0],[1708369681000,0],[1708369682000,0],[1708369683000,0],[1708369684000,0],[1708369685000,0],[1708369686000,0],[1708369687000,0],[1708369688000,0],[1708369689000,0],[1708369690000,0],[1708369691000,0],[1708369692000,0],[1708369693000,0],[1708369694000,0],[1708369695000,0],[1708369696000,0],[1708369697000,0],[1708369698000,0],[1708369699000,0],[1708369700000,0],[1708369701000,0],[1708369702000,0],[1708369703000,0],[1708369704000,0],[1708369705000,0],[1708369706000,0],[1708369707000,0],[1708369708000,0],[1708369709000,0],[1708369710000,0],[1708369711000,0],[1708369712000,0],[1708369713000,0],[1708369714000,0],[1708369715000,0],[1708369716000,0],[1708369717000,0],[1708369718000,0],[1708369719000,0],[1708369720000,0],[1708369721000,0],[1708369722000,0],[1708369723000,0],[1708369724000,0],[1708369725000,0],[1708369726000,0],[1708369727000,0],[1708369728000,0],[1708369729000,0],[1708369730000,0],[1708369731000,0],[1708369732000,0],[1708369733000,0],[1708369734000,0],[1708369735000,0],[1708369736000,0],[1708369737000,0],[1708369738000,0],[1708369739000,0],[1708369740000,0],[1708369741000,0],[1708369742000,0],[1708369743000,0],[1708369744000,0],[1708369745000,0],[1708369746000,0],[1708369747000,0],[1708369748000,0],[1708369749000,0],[1708369750000,0],[1708369751000,0],[1708369752000,0],[1708369753000,0],[1708369754000,0],[1708369755000,0],[1708369756000,0],[1708369757000,0],[1708369758000,0],[1708369759000,0],[1708369760000,0],[1708369761000,0],[1708369762000,0],[1708369763000,0],[1708369764000,0],[1708369765000,0],[1708369766000,0],[1708369767000,0],[1708369768000,0],[1708369769000,0],[1708369770000,0],[1708369771000,0],[1708369772000,0],[1708369773000,0],[1708369774000,0],[1708369775000,0],[1708369776000,0],[1708369777000,0],[1708369778000,0],[1708369779000,0],[1708369780000,0],[1708369781000,0],[1708369782000,0],[1708369783000,0],[1708369784000,0],[1708369785000,0],[1708369786000,0],[1708369787000,0],[1708369788000,0],[1708369789000,0],[1708369790000,0],[1708369791000,0],[1708369792000,0],[1708369793000,0],[1708369794000,0],[1708369795000,0],[1708369796000,0],[1708369797000,0],[1708369798000,0],[1708369799000,0],[1708369800000,0],[1708369801000,0],[1708369802000,0],[1708369803000,0],[1708369804000,0],[1708369805000,0],[1708369806000,0],[1708369807000,0],[1708369808000,0],[1708369809000,0],[1708369810000,0],[1708369811000,0],[1708369812000,0],[1708369813000,0],[1708369814000,0],[1708369815000,0],[1708369816000,0],[1708369817000,0],[1708369818000,0],[1708369819000,0],[1708369820000,0],[1708369821000,0],[1708369822000,0],[1708369823000,0],[1708369824000,0],[1708369825000,0],[1708369826000,0],[1708369827000,0],[1708369828000,0],[1708369829000,0],[1708369830000,0],[1708369831000,0],[1708369832000,0],[1708369833000,0],[1708369834000,0],[1708369835000,0],[1708369836000,0],[1708369837000,0],[1708369838000,0],[1708369839000,0],[1708369840000,0],[1708369841000,0],[1708369842000,0],[1708369843000,0],[1708369844000,0],[1708369845000,0],[1708369846000,0],[1708369847000,0],[1708369848000,0],[1708369849000,0],[1708369850000,0],[1708369851000,0],[1708369852000,0],[1708369853000,0],[1708369854000,0],[1708369855000,0],[1708369856000,0],[1708369857000,0],[1708369858000,0],[1708369859000,0],[1708369860000,0],[1708369861000,0],[1708369862000,0],[1708369863000,0],[1708369864000,0],[1708369865000,0],[1708369866000,0],[1708369867000,0],[1708369868000,0],[1708369869000,0],[1708369870000,0],[1708369871000,0],[1708369872000,0],[1708369873000,0],[1708369874000,0],[1708369875000,0],[1708369876000,0],[1708369877000,0],[1708369878000,0],[1708369879000,0],[1708369880000,0],[1708369881000,0],[1708369882000,0],[1708369883000,0],[1708369884000,0],[1708369885000,0],[1708369886000,0],[1708369887000,0],[1708369888000,0],[1708369889000,0],[1708369890000,0],[1708369891000,0],[1708369892000,0],[1708369893000,0],[1708369894000,0],[1708369895000,0],[1708369896000,0],[1708369897000,0],[1708369898000,0],[1708369899000,0],[1708369900000,0],[1708369901000,0],[1708369902000,0],[1708369903000,0],[1708369904000,0],[1708369905000,0],[1708369906000,0],[1708369907000,0],[1708369908000,0],[1708369909000,0],[1708369910000,0],[1708369911000,0],[1708369912000,0],[1708369913000,0],[1708369914000,0],[1708369915000,0],[1708369916000,0],[1708369917000,0],[1708369918000,0],[1708369919000,0],[1708369920000,0],[1708369921000,0],[1708369922000,0],[1708369923000,0],[1708369924000,0],[1708369925000,0],[1708369926000,0],[1708369927000,0],[1708369928000,0],[1708369929000,0],[1708369930000,0],[1708369931000,0],[1708369932000,0],[1708369933000,0],[1708369934000,0],[1708369935000,0],[1708369936000,0],[1708369937000,0],[1708369938000,0],[1708369939000,0],[1708369940000,0],[1708369941000,0],[1708369942000,0],[1708369943000,0],[1708369944000,0],[1708369945000,0],[1708369946000,0],[1708369947000,0],[1708369948000,0],[1708369949000,0],[1708369950000,0],[1708369951000,0],[1708369952000,0],[1708369953000,0],[1708369954000,0],[1708369955000,0],[1708369956000,0],[1708369957000,0],[1708369958000,0],[1708369959000,0],[1708369960000,0],[1708369961000,0],[1708369962000,0],[1708369963000,0],[1708369964000,0],[1708369965000,0],[1708369966000,0],[1708369967000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#AECAEB',
name: 'validação concorrência transações - d',
data: [
[1708369675000,25],[1708369676000,0],[1708369677000,0],[1708369678000,0],[1708369679000,0],[1708369680000,0],[1708369681000,0],[1708369682000,0],[1708369683000,0],[1708369684000,0],[1708369685000,0],[1708369686000,0],[1708369687000,0],[1708369688000,0],[1708369689000,0],[1708369690000,0],[1708369691000,0],[1708369692000,0],[1708369693000,0],[1708369694000,0],[1708369695000,0],[1708369696000,0],[1708369697000,0],[1708369698000,0],[1708369699000,0],[1708369700000,0],[1708369701000,0],[1708369702000,0],[1708369703000,0],[1708369704000,0],[1708369705000,0],[1708369706000,0],[1708369707000,0],[1708369708000,0],[1708369709000,0],[1708369710000,0],[1708369711000,0],[1708369712000,0],[1708369713000,0],[1708369714000,0],[1708369715000,0],[1708369716000,0],[1708369717000,0],[1708369718000,0],[1708369719000,0],[1708369720000,0],[1708369721000,0],[1708369722000,0],[1708369723000,0],[1708369724000,0],[1708369725000,0],[1708369726000,0],[1708369727000,0],[1708369728000,0],[1708369729000,0],[1708369730000,0],[1708369731000,0],[1708369732000,0],[1708369733000,0],[1708369734000,0],[1708369735000,0],[1708369736000,0],[1708369737000,0],[1708369738000,0],[1708369739000,0],[1708369740000,0],[1708369741000,0],[1708369742000,0],[1708369743000,0],[1708369744000,0],[1708369745000,0],[1708369746000,0],[1708369747000,0],[1708369748000,0],[1708369749000,0],[1708369750000,0],[1708369751000,0],[1708369752000,0],[1708369753000,0],[1708369754000,0],[1708369755000,0],[1708369756000,0],[1708369757000,0],[1708369758000,0],[1708369759000,0],[1708369760000,0],[1708369761000,0],[1708369762000,0],[1708369763000,0],[1708369764000,0],[1708369765000,0],[1708369766000,0],[1708369767000,0],[1708369768000,0],[1708369769000,0],[1708369770000,0],[1708369771000,0],[1708369772000,0],[1708369773000,0],[1708369774000,0],[1708369775000,0],[1708369776000,0],[1708369777000,0],[1708369778000,0],[1708369779000,0],[1708369780000,0],[1708369781000,0],[1708369782000,0],[1708369783000,0],[1708369784000,0],[1708369785000,0],[1708369786000,0],[1708369787000,0],[1708369788000,0],[1708369789000,0],[1708369790000,0],[1708369791000,0],[1708369792000,0],[1708369793000,0],[1708369794000,0],[1708369795000,0],[1708369796000,0],[1708369797000,0],[1708369798000,0],[1708369799000,0],[1708369800000,0],[1708369801000,0],[1708369802000,0],[1708369803000,0],[1708369804000,0],[1708369805000,0],[1708369806000,0],[1708369807000,0],[1708369808000,0],[1708369809000,0],[1708369810000,0],[1708369811000,0],[1708369812000,0],[1708369813000,0],[1708369814000,0],[1708369815000,0],[1708369816000,0],[1708369817000,0],[1708369818000,0],[1708369819000,0],[1708369820000,0],[1708369821000,0],[1708369822000,0],[1708369823000,0],[1708369824000,0],[1708369825000,0],[1708369826000,0],[1708369827000,0],[1708369828000,0],[1708369829000,0],[1708369830000,0],[1708369831000,0],[1708369832000,0],[1708369833000,0],[1708369834000,0],[1708369835000,0],[1708369836000,0],[1708369837000,0],[1708369838000,0],[1708369839000,0],[1708369840000,0],[1708369841000,0],[1708369842000,0],[1708369843000,0],[1708369844000,0],[1708369845000,0],[1708369846000,0],[1708369847000,0],[1708369848000,0],[1708369849000,0],[1708369850000,0],[1708369851000,0],[1708369852000,0],[1708369853000,0],[1708369854000,0],[1708369855000,0],[1708369856000,0],[1708369857000,0],[1708369858000,0],[1708369859000,0],[1708369860000,0],[1708369861000,0],[1708369862000,0],[1708369863000,0],[1708369864000,0],[1708369865000,0],[1708369866000,0],[1708369867000,0],[1708369868000,0],[1708369869000,0],[1708369870000,0],[1708369871000,0],[1708369872000,0],[1708369873000,0],[1708369874000,0],[1708369875000,0],[1708369876000,0],[1708369877000,0],[1708369878000,0],[1708369879000,0],[1708369880000,0],[1708369881000,0],[1708369882000,0],[1708369883000,0],[1708369884000,0],[1708369885000,0],[1708369886000,0],[1708369887000,0],[1708369888000,0],[1708369889000,0],[1708369890000,0],[1708369891000,0],[1708369892000,0],[1708369893000,0],[1708369894000,0],[1708369895000,0],[1708369896000,0],[1708369897000,0],[1708369898000,0],[1708369899000,0],[1708369900000,0],[1708369901000,0],[1708369902000,0],[1708369903000,0],[1708369904000,0],[1708369905000,0],[1708369906000,0],[1708369907000,0],[1708369908000,0],[1708369909000,0],[1708369910000,0],[1708369911000,0],[1708369912000,0],[1708369913000,0],[1708369914000,0],[1708369915000,0],[1708369916000,0],[1708369917000,0],[1708369918000,0],[1708369919000,0],[1708369920000,0],[1708369921000,0],[1708369922000,0],[1708369923000,0],[1708369924000,0],[1708369925000,0],[1708369926000,0],[1708369927000,0],[1708369928000,0],[1708369929000,0],[1708369930000,0],[1708369931000,0],[1708369932000,0],[1708369933000,0],[1708369934000,0],[1708369935000,0],[1708369936000,0],[1708369937000,0],[1708369938000,0],[1708369939000,0],[1708369940000,0],[1708369941000,0],[1708369942000,0],[1708369943000,0],[1708369944000,0],[1708369945000,0],[1708369946000,0],[1708369947000,0],[1708369948000,0],[1708369949000,0],[1708369950000,0],[1708369951000,0],[1708369952000,0],[1708369953000,0],[1708369954000,0],[1708369955000,0],[1708369956000,0],[1708369957000,0],[1708369958000,0],[1708369959000,0],[1708369960000,0],[1708369961000,0],[1708369962000,0],[1708369963000,0],[1708369964000,0],[1708369965000,0],[1708369966000,0],[1708369967000,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', '30300', '30900', '31500', '32100', '32700', '33300', '33900', '34500', '35100', '35700', '36300', '36900', '37500', '38100', '38700', '39300', '39900', '40500', '41100', '41700', '42300', '42900', '43500', '44100', '44700', '45300', '45900', '46500', '47100', '47700', '48300', '48900', '49500', '50100', '50700', '51300', '51900', '52500', '53100', '53700', '54300', '54900', '55500', '56100', '56700', '57300', '57900', '58500', '59100', '59700'],
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: [
34.1,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,0.0,0.0
],
tooltip: { yDecimals: 0, ySuffix: 'ms' }
},
{
type: 'column',
color: '#f15b4f',
name: 'KO',
data: [
59.1,0.1,0.11,0.02,0.0,0.0,0.0,0.0,0.0,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.0,0.0,0.0,0.0,0.0,0.0,5.42,0.29,0.01,0.0,0.0,0.0,0.0,0.0,0.09,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.2,0.0,0.02,0.0,0.0,0.0,0.0,0.06,0.09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07
],
tooltip: { yDecimals: 0, ySuffix: 'ms' }
}
]
});
responsetimeDistributionChart.setTitle({
text: '<span class="chart_title">Response Time Distribution</span>',
useHTML: true
});
var responsetimepercentilesovertimeokPercentiles = unpack([[1708369675,[51,512,524,546,604,608,610,610,612,613]],[1708369676,[5,5,5,5,5,5,5,5,5,5]],[1708369677,[27,123,144,168,170,170,174,207,218,219]],[1708369678,[6,6,6,6,6,6,6,6,6,6]],[1708369679,[2,4,11,21,54,55,57,61,65,67]],[1708369680,[7,8,10,10,10,10,10,10,10,10]],[1708369681,[6,6,6,8,9,9,9,9,9,9]],[1708369682,[5,6,7,9,9,9,10,12,13,14]],[1708369683,[5,5,6,6,6,7,8,8,8,9]],[1708369684,[5,6,6,6,6,6,8,9,9,9]],[1708369685,[5,6,6,6,6,7,7,10,11,12]],[1708369686,[5,5,6,6,6,11,25,27,28,29]],[1708369687,[5,5,5,6,6,6,6,7,8,8]],[1708369688,[5,5,6,6,7,7,8,9,9,10]],[1708369689,[5,5,6,6,6,6,6,8,9,10]],[1708369690,[5,5,6,7,7,7,8,8,9,10]],[1708369691,[5,5,5,6,6,6,7,8,8,9]],[1708369692,[4,5,6,6,7,7,8,9,9,9]],[1708369693,[5,5,6,6,6,7,7,8,9,11]],[1708369694,[5,5,5,6,6,7,7,8,8,8]],[1708369695,[3,5,5,6,6,6,7,7,8,8]],[1708369696,[3,5,5,6,6,6,6,10,30,34]],[1708369697,[3,5,5,5,6,6,6,6,7,8]],[1708369698,[3,5,5,5,5,5,6,6,8,9]],[1708369699,[3,4,5,5,6,6,6,6,8,9]],[1708369700,[4,5,5,5,6,6,6,7,34,34]],[1708369701,[3,5,5,6,6,6,6,7,11,18]],[1708369702,[3,4,5,5,5,6,6,6,8,8]],[1708369703,[3,5,5,6,6,6,7,7,8,10]],[1708369704,[3,5,5,6,6,6,6,7,8,8]],[1708369705,[3,4,5,5,6,6,6,7,10,13]],[1708369706,[3,5,5,5,5,6,6,6,7,8]],[1708369707,[3,5,5,6,6,6,6,7,26,28]],[1708369708,[3,5,5,5,5,5,5,6,8,8]],[1708369709,[3,4,5,5,5,5,6,6,9,19]],[1708369710,[3,4,5,5,5,5,5,6,8,8]],[1708369711,[3,5,5,5,6,6,6,7,8,8]],[1708369712,[3,4,5,6,6,6,6,6,8,8]],[1708369713,[3,4,5,5,6,6,6,7,8,16]],[1708369714,[3,5,5,5,6,6,6,7,9,9]],[1708369715,[4,5,5,7,7,7,8,14,33,43]],[1708369716,[3,5,5,6,6,6,6,7,8,8]],[1708369717,[3,4,5,5,6,6,6,7,8,23]],[1708369718,[3,4,5,5,6,6,6,6,8,9]],[1708369719,[2,4,5,5,5,5,5,6,7,9]],[1708369720,[3,4,5,5,5,5,6,6,8,21]],[1708369721,[3,4,5,5,5,5,5,6,6,8]],[1708369722,[3,4,5,5,6,6,6,6,7,9]],[1708369723,[3,4,5,5,5,5,6,6,6,7]],[1708369724,[3,4,5,5,5,5,6,6,9,26]],[1708369725,[3,4,5,5,5,5,6,7,8,9]],[1708369726,[3,4,5,5,5,5,6,6,7,20]],[1708369727,[3,4,4,5,5,5,6,6,7,7]],[1708369728,[3,4,4,5,5,5,6,6,15,30]],[1708369729,[3,4,4,5,5,5,5,6,8,8]],[1708369730,[3,4,4,5,5,5,6,6,14,22]],[1708369731,[2,3,4,4,4,5,5,5,6,8]],[1708369732,[2,4,4,5,5,5,5,6,7,8]],[1708369733,[3,4,4,5,5,5,5,6,7,7]],[1708369734,[3,4,4,5,5,5,5,6,7,7]],[1708369735,[3,4,4,5,5,5,5,6,7,7]],[1708369736,[2,4,5,5,5,6,7,24,53,65]],[1708369737,[3,4,5,5,5,5,6,6,7,8]],[1708369738,[3,4,5,5,5,6,6,7,14,26]],[1708369739,[2,3,4,5,5,5,5,5,7,8]],[1708369740,[2,3,4,5,5,5,5,6,7,8]],[1708369741,[2,4,5,5,6,6,7,24,78,81]],[1708369742,[2,4,4,5,5,5,5,6,6,7]],[1708369743,[2,4,4,5,5,5,5,7,41,56]],[1708369744,[2,3,4,4,4,4,5,5,5,7]],[1708369745,[3,4,4,5,5,5,7,18,71,86]],[1708369746,[2,4,4,5,5,5,5,5,7,7]],[1708369747,[2,4,4,5,5,5,7,26,66,84]],[1708369748,[3,4,5,5,5,5,6,6,7,7]],[1708369749,[2,4,4,5,5,5,5,6,12,19]],[1708369750,[2,3,4,4,5,5,5,5,7,7]],[1708369751,[2,4,4,5,5,5,6,28,69,80]],[1708369752,[3,4,4,5,5,5,5,5,6,7]],[1708369753,[2,4,4,5,5,6,7,14,49,52]],[1708369754,[3,4,4,5,5,5,5,5,6,9]],[1708369755,[3,4,5,5,5,6,8,29,69,87]],[1708369756,[2,4,4,5,5,5,5,6,7,9]],[1708369757,[2,4,4,5,5,5,5,6,7,13]],[1708369758,[2,4,4,5,5,5,6,32,67,86]],[1708369759,[2,4,4,4,4,5,5,5,6,8]],[1708369760,[2,3,4,4,4,5,6,34,67,78]],[1708369761,[2,3,4,4,4,5,5,6,7,9]],[1708369762,[2,4,4,5,5,6,6,13,51,68]],[1708369763,[2,3,4,4,5,5,5,5,6,7]],[1708369764,[2,3,4,4,5,6,8,34,72,78]],[1708369765,[2,3,4,4,4,4,5,5,6,7]],[1708369766,[2,4,4,5,5,5,8,32,78,87]],[1708369767,[2,3,4,4,4,5,5,5,6,7]],[1708369768,[2,3,4,5,5,6,11,38,85,106]],[1708369769,[2,3,4,4,4,4,4,5,6,7]],[1708369770,[2,3,4,4,5,5,6,33,65,78]],[1708369771,[2,3,4,4,5,5,5,6,7,7]],[1708369772,[2,4,4,5,5,6,12,43,81,101]],[1708369773,[2,4,4,4,5,5,5,5,6,7]],[1708369774,[2,4,4,4,5,5,8,40,82,92]],[1708369775,[2,3,4,4,5,6,11,15,28,30]],[1708369776,[2,3,4,4,4,4,4,5,6,8]],[1708369777,[2,4,4,5,6,13,27,45,76,107]],[1708369778,[2,3,4,4,4,4,5,5,6,7]],[1708369779,[2,4,5,29,39,52,69,117,138,195]],[1708369780,[2,4,4,5,5,5,5,5,7,9]],[1708369781,[2,4,5,12,19,27,37,60,105,118]],[1708369782,[2,3,4,4,5,5,5,5,7,10]],[1708369783,[2,3,4,8,16,33,51,84,112,154]],[1708369784,[2,3,4,4,5,5,5,6,21,29]],[1708369785,[2,3,4,5,5,6,23,69,101,177]],[1708369786,[2,3,4,5,6,11,18,31,57,86]],[1708369787,[2,3,4,4,4,4,4,5,6,7]],[1708369788,[2,4,4,17,26,36,49,73,101,119]],[1708369789,[2,4,4,5,5,5,5,6,6,7]],[1708369790,[2,4,4,5,5,6,13,34,86,103]],[1708369791,[2,4,4,6,6,7,7,8,12,21]],[1708369792,[2,4,4,9,16,22,32,52,107,134]],[1708369793,[3,5,6,7,7,7,7,8,9,10]],[1708369794,[2,3,4,13,23,32,48,66,87,96]],[1708369795,[4,6,7,9,10,12,18,25,46,54]],[1708369796,[2,3,4,5,5,6,8,51,78,109]],[1708369797,[4,7,16,34,37,40,43,46,55,58]],[1708369798,[2,3,4,4,5,5,6,9,21,28]],[1708369799,[2,23,46,76,87,94,108,126,162,203]],[1708369800,[2,25,51,79,86,92,105,147,219,385]],[1708369801,[3,39,83,214,260,310,394,446,576,675]],[1708369802,null],[1708369803,null],[1708369804,null],[1708369805,null],[1708369806,null],[1708369807,null],[1708369808,null],[1708369809,null],[1708369810,null],[1708369811,null],[1708369812,null],[1708369813,null],[1708369814,null],[1708369815,null],[1708369816,null],[1708369817,null],[1708369818,null],[1708369819,null],[1708369820,null],[1708369821,null],[1708369822,null],[1708369823,null],[1708369824,null],[1708369825,null],[1708369826,null],[1708369827,null],[1708369828,null],[1708369829,null],[1708369830,null],[1708369831,null],[1708369832,null],[1708369833,null],[1708369834,null],[1708369835,null],[1708369836,null],[1708369837,null],[1708369838,null],[1708369839,null],[1708369840,null],[1708369841,null],[1708369842,null],[1708369843,null],[1708369844,null],[1708369845,null],[1708369846,null],[1708369847,null],[1708369848,null],[1708369849,null],[1708369850,null],[1708369851,null],[1708369852,null],[1708369853,null],[1708369854,null],[1708369855,null],[1708369856,null],[1708369857,null],[1708369858,null],[1708369859,null],[1708369860,null],[1708369861,null],[1708369862,null],[1708369863,null],[1708369864,null],[1708369865,null],[1708369866,null],[1708369867,null],[1708369868,null],[1708369869,null],[1708369870,null],[1708369871,null],[1708369872,null],[1708369873,null],[1708369874,null],[1708369875,null],[1708369876,null],[1708369877,null],[1708369878,null],[1708369879,null],[1708369880,null],[1708369881,null],[1708369882,null],[1708369883,null],[1708369884,null],[1708369885,null],[1708369886,null],[1708369887,null],[1708369888,null],[1708369889,null],[1708369890,null],[1708369891,null],[1708369892,null],[1708369893,null],[1708369894,null],[1708369895,null],[1708369896,null],[1708369897,null],[1708369898,null],[1708369899,null],[1708369900,null],[1708369901,null],[1708369902,null],[1708369903,null],[1708369904,null],[1708369905,null],[1708369906,null],[1708369907,null],[1708369908,null],[1708369909,null],[1708369910,null],[1708369911,null],[1708369912,null],[1708369913,null],[1708369914,null],[1708369915,null],[1708369916,null],[1708369917,null],[1708369918,null],[1708369919,null],[1708369920,null],[1708369921,null],[1708369922,null],[1708369923,null],[1708369924,null],[1708369925,null],[1708369926,null],[1708369927,null],[1708369928,null],[1708369929,null],[1708369930,null],[1708369931,null],[1708369932,null],[1708369933,null],[1708369934,null],[1708369935,null],[1708369936,null],[1708369937,null],[1708369938,null],[1708369939,null],[1708369940,null],[1708369941,null],[1708369942,null],[1708369943,null],[1708369944,null],[1708369945,null],[1708369946,null],[1708369947,null],[1708369948,null],[1708369949,null],[1708369950,null],[1708369951,null],[1708369952,null],[1708369953,null],[1708369954,null],[1708369955,null],[1708369956,null],[1708369957,null],[1708369958,null],[1708369959,null],[1708369960,null],[1708369961,null],[1708369962,null],[1708369963,null],[1708369964,null],[1708369965,null],[1708369966,null],[1708369967,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([[1708369675,[25,25,0]],[1708369676,[1,1,0]],[1708369677,[25,25,0]],[1708369678,[1,1,0]],[1708369679,[71,71,0]],[1708369680,[3,3,0]],[1708369681,[6,6,0]],[1708369682,[9,9,0]],[1708369683,[11,11,0]],[1708369684,[13,13,0]],[1708369685,[18,18,0]],[1708369686,[19,19,0]],[1708369687,[24,24,0]],[1708369688,[26,26,0]],[1708369689,[27,27,0]],[1708369690,[32,32,0]],[1708369691,[34,34,0]],[1708369692,[37,37,0]],[1708369693,[40,40,0]],[1708369694,[42,42,0]],[1708369695,[45,45,0]],[1708369696,[48,48,0]],[1708369697,[50,50,0]],[1708369698,[54,54,0]],[1708369699,[56,56,0]],[1708369700,[60,60,0]],[1708369701,[61,61,0]],[1708369702,[65,65,0]],[1708369703,[68,68,0]],[1708369704,[71,71,0]],[1708369705,[73,73,0]],[1708369706,[77,77,0]],[1708369707,[78,78,0]],[1708369708,[81,81,0]],[1708369709,[84,84,0]],[1708369710,[89,89,0]],[1708369711,[89,89,0]],[1708369712,[93,93,0]],[1708369713,[96,96,0]],[1708369714,[98,98,0]],[1708369715,[102,102,0]],[1708369716,[104,104,0]],[1708369717,[108,108,0]],[1708369718,[109,109,0]],[1708369719,[113,113,0]],[1708369720,[115,115,0]],[1708369721,[119,119,0]],[1708369722,[121,121,0]],[1708369723,[123,123,0]],[1708369724,[126,126,0]],[1708369725,[129,129,0]],[1708369726,[133,133,0]],[1708369727,[135,135,0]],[1708369728,[138,138,0]],[1708369729,[142,142,0]],[1708369730,[142,142,0]],[1708369731,[147,147,0]],[1708369732,[149,149,0]],[1708369733,[152,152,0]],[1708369734,[154,154,0]],[1708369735,[158,158,0]],[1708369736,[160,160,0]],[1708369737,[163,163,0]],[1708369738,[166,166,0]],[1708369739,[170,170,0]],[1708369740,[170,170,0]],[1708369741,[175,175,0]],[1708369742,[177,177,0]],[1708369743,[180,180,0]],[1708369744,[183,183,0]],[1708369745,[185,185,0]],[1708369746,[189,189,0]],[1708369747,[191,191,0]],[1708369748,[194,194,0]],[1708369749,[197,197,0]],[1708369750,[199,199,0]],[1708369751,[203,203,0]],[1708369752,[206,206,0]],[1708369753,[207,207,0]],[1708369754,[211,211,0]],[1708369755,[213,213,0]],[1708369756,[217,217,0]],[1708369757,[220,220,0]],[1708369758,[222,222,0]],[1708369759,[225,225,0]],[1708369760,[227,227,0]],[1708369761,[231,231,0]],[1708369762,[233,233,0]],[1708369763,[236,236,0]],[1708369764,[239,239,0]],[1708369765,[243,243,0]],[1708369766,[244,244,0]],[1708369767,[248,248,0]],[1708369768,[250,250,0]],[1708369769,[252,252,0]],[1708369770,[256,256,0]],[1708369771,[259,259,0]],[1708369772,[262,262,0]],[1708369773,[264,264,0]],[1708369774,[267,267,0]],[1708369775,[270,270,0]],[1708369776,[272,272,0]],[1708369777,[275,275,0]],[1708369778,[279,279,0]],[1708369779,[281,281,0]],[1708369780,[285,285,0]],[1708369781,[286,286,0]],[1708369782,[290,290,0]],[1708369783,[291,291,0]],[1708369784,[296,296,0]],[1708369785,[297,297,0]],[1708369786,[301,301,0]],[1708369787,[304,304,0]],[1708369788,[306,306,0]],[1708369789,[309,309,0]],[1708369790,[312,312,0]],[1708369791,[315,315,0]],[1708369792,[317,317,0]],[1708369793,[321,321,0]],[1708369794,[322,322,0]],[1708369795,[327,327,0]],[1708369796,[329,329,0]],[1708369797,[332,332,0]],[1708369798,[335,335,0]],[1708369799,[337,337,0]],[1708369800,[340,340,0]],[1708369801,[340,103,237]],[1708369802,[341,0,341]],[1708369803,[339,0,339]],[1708369804,[341,0,341]],[1708369805,[339,0,339]],[1708369806,[341,0,341]],[1708369807,[340,0,340]],[1708369808,[340,0,340]],[1708369809,[340,0,340]],[1708369810,[340,0,340]],[1708369811,[340,0,340]],[1708369812,[339,0,339]],[1708369813,[341,0,341]],[1708369814,[339,0,339]],[1708369815,[341,0,341]],[1708369816,[340,0,340]],[1708369817,[339,0,339]],[1708369818,[341,0,341]],[1708369819,[340,0,340]],[1708369820,[339,0,339]],[1708369821,[341,0,341]],[1708369822,[340,0,340]],[1708369823,[340,0,340]],[1708369824,[340,0,340]],[1708369825,[340,0,340]],[1708369826,[340,0,340]],[1708369827,[340,0,340]],[1708369828,[340,0,340]],[1708369829,[339,0,339]],[1708369830,[341,0,341]],[1708369831,[340,0,340]],[1708369832,[340,0,340]],[1708369833,[339,0,339]],[1708369834,[341,0,341]],[1708369835,[340,0,340]],[1708369836,[340,0,340]],[1708369837,[339,0,339]],[1708369838,[341,0,341]],[1708369839,[340,0,340]],[1708369840,[339,0,339]],[1708369841,[341,0,341]],[1708369842,[340,0,340]],[1708369843,[340,0,340]],[1708369844,[340,0,340]],[1708369845,[339,0,339]],[1708369846,[341,0,341]],[1708369847,[340,0,340]],[1708369848,[340,0,340]],[1708369849,[340,0,340]],[1708369850,[339,0,339]],[1708369851,[341,0,341]],[1708369852,[340,0,340]],[1708369853,[340,0,340]],[1708369854,[340,0,340]],[1708369855,[339,0,339]],[1708369856,[341,0,341]],[1708369857,[340,0,340]],[1708369858,[340,0,340]],[1708369859,[339,0,339]],[1708369860,[341,0,341]],[1708369861,[339,0,339]],[1708369862,[341,0,341]],[1708369863,[340,0,340]],[1708369864,[340,0,340]],[1708369865,[340,0,340]],[1708369866,[340,0,340]],[1708369867,[340,0,340]],[1708369868,[340,0,340]],[1708369869,[340,0,340]],[1708369870,[339,0,339]],[1708369871,[341,0,341]],[1708369872,[340,0,340]],[1708369873,[339,0,339]],[1708369874,[341,0,341]],[1708369875,[340,0,340]],[1708369876,[339,0,339]],[1708369877,[341,0,341]],[1708369878,[340,0,340]],[1708369879,[340,0,340]],[1708369880,[340,0,340]],[1708369881,[340,0,340]],[1708369882,[340,0,340]],[1708369883,[340,0,340]],[1708369884,[340,0,340]],[1708369885,[339,0,339]],[1708369886,[341,0,341]],[1708369887,[340,0,340]],[1708369888,[340,0,340]],[1708369889,[340,0,340]],[1708369890,[340,0,340]],[1708369891,[339,0,339]],[1708369892,[341,0,341]],[1708369893,[340,0,340]],[1708369894,[340,0,340]],[1708369895,[340,0,340]],[1708369896,[339,0,339]],[1708369897,[341,0,341]],[1708369898,[340,0,340]],[1708369899,[340,0,340]],[1708369900,[339,0,339]],[1708369901,[341,0,341]],[1708369902,[340,0,340]],[1708369903,[340,0,340]],[1708369904,[340,0,340]],[1708369905,[340,0,340]],[1708369906,[340,0,340]],[1708369907,[340,0,340]],[1708369908,[340,0,340]],[1708369909,[340,0,340]],[1708369910,[340,0,340]],[1708369911,[340,0,340]],[1708369912,[339,0,339]],[1708369913,[341,0,341]],[1708369914,[340,0,340]],[1708369915,[340,0,340]],[1708369916,[339,0,339]],[1708369917,[341,0,341]],[1708369918,[340,0,340]],[1708369919,[340,0,340]],[1708369920,[160,0,160]],[1708369921,[0,0,0]],[1708369922,[0,0,0]],[1708369923,[0,0,0]],[1708369924,[0,0,0]],[1708369925,[0,0,0]],[1708369926,[0,0,0]],[1708369927,[0,0,0]],[1708369928,[0,0,0]],[1708369929,[0,0,0]],[1708369930,[0,0,0]],[1708369931,[0,0,0]],[1708369932,[0,0,0]],[1708369933,[0,0,0]],[1708369934,[0,0,0]],[1708369935,[0,0,0]],[1708369936,[0,0,0]],[1708369937,[0,0,0]],[1708369938,[0,0,0]],[1708369939,[0,0,0]],[1708369940,[0,0,0]],[1708369941,[0,0,0]],[1708369942,[0,0,0]],[1708369943,[0,0,0]],[1708369944,[0,0,0]],[1708369945,[0,0,0]],[1708369946,[0,0,0]],[1708369947,[0,0,0]],[1708369948,[0,0,0]],[1708369949,[0,0,0]],[1708369950,[0,0,0]],[1708369951,[0,0,0]],[1708369952,[0,0,0]],[1708369953,[0,0,0]],[1708369954,[0,0,0]],[1708369955,[0,0,0]],[1708369956,[0,0,0]],[1708369957,[0,0,0]],[1708369958,[0,0,0]],[1708369959,[0,0,0]],[1708369960,[0,0,0]],[1708369961,[0,0,0]],[1708369962,[0,0,0]],[1708369963,[0,0,0]],[1708369964,[0,0,0]],[1708369965,[0,0,0]],[1708369966,[0,0,0]],[1708369967,[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,