-
Notifications
You must be signed in to change notification settings - Fork 923
/
Copy pathindex.html
1230 lines (1160 loc) · 101 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="shortcut icon" type="image/x-icon" href="style/favicon.ico"/>
<link href="style/style.css" rel="stylesheet" type="text/css" />
<link href="style/bootstrap.min.css" rel="stylesheet" type="text/css" />
<script src="js/jquery-3.5.1.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/gatling.js"></script>
<script src="js/menu.js"></script>
<script src="js/ellipsis.js"></script>
<script src="js/all_sessions.js"></script>
<script src="js/stats.js"></script>
<script src="js/highstock.js"></script>
<script src="js/highcharts-more.js"></script>
<script src="js/theme.js"></script>
<script src="js/unpack.js"></script>
<title>Gatling Stats - Global Information</title>
</head>
<body>
<script>
const storedTheme = localStorage.getItem('theme') || (window.matchMedia("(prefers-color-scheme: dark)").matches ? "dark" : "light");
if (storedTheme) document.documentElement.setAttribute('data-theme', storedTheme)
function toggleTheme() {
const currentTheme = document.documentElement.getAttribute("data-theme");
const targetTheme = currentTheme === "light" ? "dark" : "light";
document.documentElement.setAttribute('data-theme', targetTheme)
localStorage.setItem('theme', targetTheme);
};
</script>
<div class="app-container">
<div class="frise"></div>
<div class="head">
<div class="gatling-open-source">
<a class="gatling-logo gatling-logo-light" href="https://gatling.io" target="blank_" title="Gatling Home Page"><img alt="Gatling" src="style/logo-light.svg"/></a>
<a class="gatling-logo gatling-logo-dark" href="https://gatling.io" target="blank_" title="Gatling Home Page"><img alt="Gatling" src="style/logo-dark.svg"/></a>
<a class="gatling-documentation" href="https://gatling.io/docs/" target="_blank">Documentation</a>
</div>
<div class="nav spacer"></div>
<a class="enterprise" href="https://gatling.io/enterprise/next-step/" target="_blank"><strong>Try</strong>
<img class="logo-enterprise-light" alt="Gatling Enterprise" src="style/logo-enterprise-light.svg"/>
<img class="logo-enterprise-dark" alt="Gatling Enterprise" src="style/logo-enterprise-dark.svg"/>
</a>
<button id="theme-toggle" class="theme-toggle" type="button" onclick="toggleTheme()" aria-label="Toggle user interface mode">
<span class="toggle-dark"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-moon"><path d="M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z"></path></svg></span>
<span class="toggle-light"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-sun"><circle cx="12" cy="12" r="5"></circle><line x1="12" y1="1" x2="12" y2="3"></line><line x1="12" y1="21" x2="12" y2="23"></line><line x1="4.22" y1="4.22" x2="5.64" y2="5.64"></line><line x1="18.36" y1="18.36" x2="19.78" y2="19.78"></line><line x1="1" y1="12" x2="3" y2="12"></line><line x1="21" y1="12" x2="23" y2="12"></line><line x1="4.22" y1="19.78" x2="5.64" y2="18.36"></line><line x1="18.36" y1="5.64" x2="19.78" y2="4.22"></line></svg></span>
</button>
</div>
<div class="container details">
<div class="nav">
<ul></ul>
</div>
<div class="cadre">
<div class="content">
<div class="content-header">
<div class="onglet">
RinhaBackendCrebitosSimulation
</div>
<div class="sous-menu" id="sousMenu">
<div class="sous-menu-spacer">
<div class="item ouvert"><a href="index.html">Global</a></div>
<div class="item "><a id="details_link" href="#">Details</a></div>
</div>
</div>
</div>
<div class="content-in">
<div class="container-article">
<div class="article">
<div class="schema-container">
<div id="ranges" class="schema ranges">
</div>
<div class="schema polar">
<div id="container_number_of_requests"></div>
</div>
<div class="simulation-card">
<div class="simulation-version-information">
<span class="simulation-information-title">Gatling Version</span>
<span class="simulation-information-item">
<span class="simulation-information-label">Version: </span>
<span>3.10.3</span>
</span>
<span class="simulation-information-item">
<span class="simulation-information-label">Released: </span>
<span>2023-12-20</span>
</span>
</div>
<div id="simulation-information" class="simulation-version-information">
<span class="simulation-information-title">Run Information</span>
<div class="simulation-information-container">
<span class="simulation-information-item">
<span class="simulation-information-label">Date: </span>
<span>2024-03-01 13:47:15 GMT</span>
</span>
<span class="simulation-information-item">
<span class="simulation-information-label">Duration: </span>
<span>4m 6s </span>
</span>
<span class="simulation-tooltip simulation-information-item description" title="Description" data-content="Rinha de Backend - 2024/Q1: Crébito - brunodelucasbarbosa">
<span class="simulation-information-label">Description: </span>
<span>Rinha de Backend - 2024/Q1: Crébito - brunodelucasbarbosa</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">41872</td>
<td class="value error-col-3 total ko">98.806 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">jmesPath(saldo).find.ConsistenciaSaldoLimite - Transação, Limite ultrapassado!<span class="value" style="display:none">1</span></td>
<td class="value error-col-2 total ko">474</td>
<td class="value error-col-3 total ko">1.119 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">jmesPath(saldo.total).find.ConsistenciaSaldoLimite - Extrato, Limite ultrapassado!<span class="value" style="display:none">2</span></td>
<td class="value error-col-2 total ko">18</td>
<td class="value error-col-3 total ko">0.042 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">status.find.in(422,400), but actually found 200<span class="value" style="display:none">3</span></td>
<td class="value error-col-2 total ko">10</td>
<td class="value error-col-3 total ko">0.024 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">jmesPath(saldo.limite).find.is(500000), but actually found 0<span class="value" style="display:none">4</span></td>
<td class="value error-col-2 total ko">1</td>
<td class="value error-col-3 total ko">0.002 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">jmesPath(saldo.limite).find.is(80000), but actually found 0<span class="value" style="display:none">5</span></td>
<td class="value error-col-2 total ko">1</td>
<td class="value error-col-3 total ko">0.002 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">jmesPath(saldo.limite).find.is(10000000), but actually found 0<span class="value" style="display:none">6</span></td>
<td class="value error-col-2 total ko">1</td>
<td class="value error-col-3 total ko">0.002 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">jmesPath(saldo.limite).find.is(1000000), but actually found 0<span class="value" style="display:none">7</span></td>
<td class="value error-col-2 total ko">1</td>
<td class="value error-col-3 total ko">0.002 %</td>
</tr>
</tbody>
</table>
</div>
<div class="schema geant">
<div id="active_users" class="geant"></div>
</div>
<div class="schema geant">
<div id="responsetimeDistributionContainer" class="geant"></div>
</div>
<div class="schema geant">
<div id="responsetimepercentilesovertimeokPercentilesContainer" class="geant"></div>
</div>
<div class="schema geant">
<div id="requests" class="geant"></div>
</div>
<div class="schema geant">
<div id="responses" class="geant"></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<script>
var pageStats = stats.stats;
$(document).ready(function() {
$('.simulation-tooltip').popover({trigger:'hover', placement:'left'});
setDetailsLinkUrl();
setGlobalMenu();
setActiveMenu();
fillStats(pageStats);
Highcharts.setOptions({
global: { useUTC: false }
});
var rangesChart = new Highcharts.Chart({
chart: {
renderTo: 'ranges',
marginRight: 100
},
credits: { enabled: false },
legend: { enabled: false },
title: { text: 'A title to let highcharts reserve the place for the title set later' },
xAxis: {
categories: [
pageStats.group1.htmlName,
pageStats.group2.htmlName,
pageStats.group3.htmlName,
pageStats.group4.htmlName
]
},
yAxis: {
title: { text: 'Number of Requests' },
reversedStacks: false
},
tooltip: {
formatter: function() {
var s;
if (this.point.name) { // the pie chart
s = ''+ this.point.name +': '+ this.y +'% requests';
} else {
s = ''+ this.y + ' requests';
}
return s;
}
},
plotOptions: {
series: {
stacking: 'normal',
shadow: true
}
},
series: [
{
type: 'column',
data: [{
color: '#68b65c',
y: pageStats.group1.count
},
{
color: '#FFDD00',
y: pageStats.group2.count
},
{
color: '#FFA900',
y: pageStats.group3.count
},
{
color: '#f15b4f',
y: pageStats.group4.count
}]
},
{
type: 'pie',
name: 'Percentages',
data: [
{
name: pageStats.group1.name,
y: pageStats.group1.percentage,
color: '#68b65c'
},
{
name: pageStats.group2.name,
y: pageStats.group2.percentage,
color: '#FFDD00'
},
{
name: pageStats.group3.name,
y: pageStats.group3.percentage,
color: '#FFA900'
},
{
name: pageStats.group4.name,
y: pageStats.group4.percentage,
color: '#f15b4f'
}
],
center: [345, 0],
size: 90,
showInLegend: false,
dataLabels: { enabled: false }
}
]
});
rangesChart.setTitle({
text: '<span class="chart_title">Response Time Ranges</span>',
useHTML: true
});
function numberOfRequestsDataForGroup(group) {
var data = {names: [], oks: [], kos: []};
$.each(group.contents, function(contentName, content) {
if (content.type == 'GROUP') {
var result = numberOfRequestsDataForGroup(content);
data.names = data.names.concat(result.names);
data.oks = data.oks.concat(result.oks);
data.kos = data.kos.concat(result.kos);
}
else if (content.type == 'REQUEST') {
data.names.push(content.path);
data.oks.push(parseInt(content.stats.numberOfRequests.ok));
data.kos.push(parseInt(content.stats.numberOfRequests.ko));
}
});
return data;
}
var numberOfRequestsData = numberOfRequestsDataForGroup(stats);
var tickInterval = Math.ceil(numberOfRequestsData.names.length / 1000);
new Highcharts.Chart({
chart: {
renderTo:'container_number_of_requests',
polar:true,
type:'column',
height:330
},
credits:{
enabled:false
},
title:{
text:'<span class="chart_title">Number of requests</span>',
useHTML: true,
widthAdjust:-20
},
xAxis:{
tickmarkPlacement:'on',
tickInterval: tickInterval,
categories:numberOfRequestsData.names,
labels:{ enabled:false }
},
yAxis:{
min:0,
reversedStacks: false
},
plotOptions:{
series:{
stacking:'normal',
groupPadding:0,
pointPlacement:'on',
shadow: true
}
},
legend: {
borderWidth: 0,
itemStyle: { fontWeight: "normal" },
symbolRadius: 0
},
series:[
{
name:'OK',
data:numberOfRequestsData.oks,
color:"#68b65c"
},
{
name:'KO',
data:numberOfRequestsData.kos,
color:"#f15b4f"
}
]
});
$('#container_exceptions').sortable('#container_exceptions');
function generateHtmlRow(request, level, index, parent, group) {
if (request.name == 'All Requests')
var url = 'index.html';
else
var url = request.pathFormatted + '.html';
if (group)
var expandButtonStyle = '';
else
var expandButtonStyle = ' hidden';
if (request.stats.numberOfRequests.total != 0)
var koPercent = (request.stats.numberOfRequests.ko * 100 / request.stats.numberOfRequests.total).toFixed(0) + '%';
else
var koPercent = '-'
return '<tr id="' + request.pathFormatted + '" data-parent=' + parent + '> \
<td class="total col-1"> \
<div class="expandable-container"> \
<span id="' + request.pathFormatted + '" style="margin-left: ' + (level * 10) + 'px;" class="expand-button' + expandButtonStyle + '"> </span> \
<a href="' + url +'" class="withTooltip">' + ellipsedLabel({ name: request.name, parentClass: "table-cell-tooltip" }) + '</a><span class="value" style="display:none;">' + index + '</span> \
</div> \
</td> \
<td class="value total col-2">' + request.stats.numberOfRequests.total + '</td> \
<td class="value ok col-3">' + request.stats.numberOfRequests.ok + '</td> \
<td class="value ko col-4">' + request.stats.numberOfRequests.ko + '</td> \
<td class="value ko col-5">' + koPercent + '</td> \
<td class="value total col-6">' + request.stats.meanNumberOfRequestsPerSecond.total + '</td> \
<td class="value total col-7">' + request.stats.minResponseTime.total + '</td> \
<td class="value total col-8">' + request.stats.percentiles1.total + '</td> \
<td class="value total col-9">' + request.stats.percentiles2.total + '</td> \
<td class="value total col-10">' + request.stats.percentiles3.total + '</td> \
<td class="value total col-11">' + request.stats.percentiles4.total + '</td> \
<td class="value total col-12">' + request.stats.maxResponseTime.total + '</td> \
<td class="value total col-13">' + request.stats.meanResponseTime.total + '</td> \
<td class="value total col-14">' + request.stats.standardDeviation.total + '</td> \
</tr>';
}
function generateHtmlRowsForGroup(group, level, index, parent) {
var buffer = '';
if (!parent)
parent = 'ROOT';
else {
buffer += generateHtmlRow(group, level - 1, index, parent, true);
index++;
parent = group.pathFormatted;
}
$.each(group.contents, function(contentName, content) {
if (content.type == 'GROUP') {
var result = generateHtmlRowsForGroup(content, level + 1, index, parent);
buffer += result.html;
index = result.index;
}
else if (content.type == 'REQUEST') {
buffer += generateHtmlRow(content, level, index, parent);
index++;
}
});
return { html: buffer, index: index };
}
$('#container_statistics_head tbody').append(generateHtmlRow(stats, 0, 0));
var lines = generateHtmlRowsForGroup(stats, 0, 0);
$('#container_statistics_body tbody').append(lines.html);
$('#container_statistics_head').sortable('#container_statistics_body');
$('.statistics').expandable();
if (lines.index < 30) {
$('#statistics_title span').attr('style', 'display: none;');
} else {
$('#statistics_title').addClass('title_collapsed');
$('#statistics_title').click(function() {
$('#toggle-stats').toggleClass("off");
$(this).toggleClass('title_collapsed').toggleClass('title_expanded');
$('#container_statistics_body').parent().toggleClass('scrollable').toggleClass('');
});
}
$('.table-cell-tooltip').popover({trigger:'hover'});
$('#container_errors').sortable('#container_errors');
allUsersData.yAxis = 0;
var allUsersChart = new Highcharts.StockChart({
chart: {
renderTo: 'active_users',
zoomType: 'x'
},
credits: { enabled: false },
legend: {
enabled: true,
floating: true,
align: 'right',
verticalAlign: 'top',
layout: 'vertical',
borderWidth: 0,
itemStyle: { fontWeight: "normal" },
symbolRadius: 0
},
title: { text: 'A title to let highcharts reserve the place for the title set later' },
navigator: {
maskInside: false
},
rangeSelector: {
buttonSpacing: 0,
buttonTheme: {
fill: '#CFC9C6',
padding: 1,
stroke: '#000000',
'stroke-width': 0.25,
style: {
color: '#000000',
fontWeight: 'bold',
},
states: {
stroke: '#000000',
'stroke-width': 0.25,
hover: {
fill: '#92918C',
style: { color: 'black' }
},
select: {
fill: '#FFA900',
style: { color: 'white' }
}
}
},
buttons : [
{
type : 'minute',
count : 1,
text : '1m'
}, {
type : 'minute',
count : 10,
text : '10m'
}, {
type : 'hour',
count : 1,
text : '1h'
}, {
type : 'all',
count : 1,
text : 'All'
}
],
selected : 3,
inputEnabled : false
},
xAxis: {
type: 'datetime',
ordinal: false,
maxZoom: 10000 // three days
},
yAxis: {
title: { text: 'Number of Active Users' },
opposite: false,
min: 0
},
series: [
{
color: '#5E7BE2',
name: 'débitos',
data: [
[1709300835000,0],[1709300836000,0],[1709300837000,0],[1709300838000,0],[1709300839000,1],[1709300840000,2],[1709300841000,5],[1709300842000,6],[1709300843000,7],[1709300844000,9],[1709300845000,11],[1709300846000,13],[1709300847000,15],[1709300848000,16],[1709300849000,19],[1709300850000,20],[1709300851000,22],[1709300852000,24],[1709300853000,25],[1709300854000,28],[1709300855000,29],[1709300856000,31],[1709300857000,33],[1709300858000,35],[1709300859000,37],[1709300860000,38],[1709300861000,40],[1709300862000,42],[1709300863000,44],[1709300864000,46],[1709300865000,47],[1709300866000,50],[1709300867000,51],[1709300868000,53],[1709300869000,55],[1709300870000,56],[1709300871000,59],[1709300872000,60],[1709300873000,63],[1709300874000,64],[1709300875000,67],[1709300876000,69],[1709300877000,70],[1709300878000,72],[1709300879000,75],[1709300880000,75],[1709300881000,78],[1709300882000,79],[1709300883000,81],[1709300884000,83],[1709300885000,84],[1709300886000,86],[1709300887000,89],[1709300888000,89],[1709300889000,92],[1709300890000,93],[1709300891000,95],[1709300892000,97],[1709300893000,98],[1709300894000,101],[1709300895000,102],[1709300896000,104],[1709300897000,106],[1709300898000,108],[1709300899000,110],[1709300900000,111],[1709300901000,113],[1709300902000,115],[1709300903000,117],[1709300904000,119],[1709300905000,120],[1709300906000,123],[1709300907000,125],[1709300908000,127],[1709300909000,129],[1709300910000,130],[1709300911000,133],[1709300912000,134],[1709300913000,201],[1709300914000,203],[1709300915000,201],[1709300916000,208],[1709300917000,210],[1709300918000,213],[1709300919000,215],[1709300920000,215],[1709300921000,216],[1709300922000,215],[1709300923000,211],[1709300924000,214],[1709300925000,218],[1709300926000,218],[1709300927000,223],[1709300928000,226],[1709300929000,231],[1709300930000,223],[1709300931000,229],[1709300932000,232],[1709300933000,234],[1709300934000,240],[1709300935000,240],[1709300936000,239],[1709300937000,238],[1709300938000,244],[1709300939000,247],[1709300940000,247],[1709300941000,253],[1709300942000,257],[1709300943000,260],[1709300944000,255],[1709300945000,261],[1709300946000,267],[1709300947000,268],[1709300948000,270],[1709300949000,273],[1709300950000,272],[1709300951000,280],[1709300952000,274],[1709300953000,276],[1709300954000,280],[1709300955000,286],[1709300956000,286],[1709300957000,283],[1709300958000,285],[1709300959000,288],[1709300960000,286],[1709300961000,285],[1709300962000,293],[1709300963000,295],[1709300964000,297],[1709300965000,294],[1709300966000,294],[1709300967000,293],[1709300968000,292],[1709300969000,285],[1709300970000,292],[1709300971000,293],[1709300972000,293],[1709300973000,294],[1709300974000,293],[1709300975000,293],[1709300976000,292],[1709300977000,290],[1709300978000,290],[1709300979000,287],[1709300980000,291],[1709300981000,286],[1709300982000,292],[1709300983000,289],[1709300984000,292],[1709300985000,290],[1709300986000,292],[1709300987000,290],[1709300988000,287],[1709300989000,296],[1709300990000,291],[1709300991000,292],[1709300992000,292],[1709300993000,292],[1709300994000,300],[1709300995000,290],[1709300996000,294],[1709300997000,284],[1709300998000,290],[1709300999000,293],[1709301000000,296],[1709301001000,289],[1709301002000,285],[1709301003000,287],[1709301004000,278],[1709301005000,289],[1709301006000,292],[1709301007000,296],[1709301008000,298],[1709301009000,290],[1709301010000,291],[1709301011000,290],[1709301012000,291],[1709301013000,295],[1709301014000,290],[1709301015000,288],[1709301016000,284],[1709301017000,287],[1709301018000,293],[1709301019000,307],[1709301020000,296],[1709301021000,293],[1709301022000,287],[1709301023000,287],[1709301024000,293],[1709301025000,289],[1709301026000,295],[1709301027000,296],[1709301028000,292],[1709301029000,292],[1709301030000,295],[1709301031000,290],[1709301032000,291],[1709301033000,295],[1709301034000,293],[1709301035000,292],[1709301036000,296],[1709301037000,289],[1709301038000,283],[1709301039000,290],[1709301040000,296],[1709301041000,300],[1709301042000,301],[1709301043000,297],[1709301044000,294],[1709301045000,295],[1709301046000,294],[1709301047000,298],[1709301048000,297],[1709301049000,295],[1709301050000,294],[1709301051000,293],[1709301052000,300],[1709301053000,305],[1709301054000,293],[1709301055000,293],[1709301056000,293],[1709301057000,289],[1709301058000,297],[1709301059000,292],[1709301060000,292],[1709301061000,292],[1709301062000,293],[1709301063000,288],[1709301064000,293],[1709301065000,294],[1709301066000,301],[1709301067000,301],[1709301068000,305],[1709301069000,299],[1709301070000,291],[1709301071000,297],[1709301072000,294],[1709301073000,297],[1709301074000,301],[1709301075000,291],[1709301076000,293],[1709301077000,289],[1709301078000,289],[1709301079000,282],[1709301080000,67],[1709301081000,24]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#68b65c',
name: 'créditos',
data: [
[1709300835000,0],[1709300836000,0],[1709300837000,0],[1709300838000,0],[1709300839000,1],[1709300840000,2],[1709300841000,2],[1709300842000,4],[1709300843000,4],[1709300844000,5],[1709300845000,6],[1709300846000,7],[1709300847000,8],[1709300848000,8],[1709300849000,10],[1709300850000,10],[1709300851000,12],[1709300852000,12],[1709300853000,14],[1709300854000,14],[1709300855000,15],[1709300856000,16],[1709300857000,17],[1709300858000,17],[1709300859000,19],[1709300860000,20],[1709300861000,20],[1709300862000,22],[1709300863000,22],[1709300864000,23],[1709300865000,25],[1709300866000,25],[1709300867000,26],[1709300868000,26],[1709300869000,28],[1709300870000,29],[1709300871000,30],[1709300872000,30],[1709300873000,32],[1709300874000,32],[1709300875000,33],[1709300876000,34],[1709300877000,35],[1709300878000,36],[1709300879000,37],[1709300880000,38],[1709300881000,39],[1709300882000,39],[1709300883000,41],[1709300884000,41],[1709300885000,43],[1709300886000,43],[1709300887000,44],[1709300888000,45],[1709300889000,46],[1709300890000,47],[1709300891000,48],[1709300892000,48],[1709300893000,50],[1709300894000,50],[1709300895000,52],[1709300896000,52],[1709300897000,53],[1709300898000,54],[1709300899000,56],[1709300900000,55],[1709300901000,57],[1709300902000,58],[1709300903000,59],[1709300904000,59],[1709300905000,61],[1709300906000,62],[1709300907000,64],[1709300908000,64],[1709300909000,65],[1709300910000,66],[1709300911000,67],[1709300912000,68],[1709300913000,100],[1709300914000,100],[1709300915000,104],[1709300916000,99],[1709300917000,100],[1709300918000,99],[1709300919000,101],[1709300920000,101],[1709300921000,105],[1709300922000,109],[1709300923000,116],[1709300924000,115],[1709300925000,113],[1709300926000,114],[1709300927000,114],[1709300928000,114],[1709300929000,112],[1709300930000,122],[1709300931000,119],[1709300932000,117],[1709300933000,117],[1709300934000,116],[1709300935000,120],[1709300936000,124],[1709300937000,126],[1709300938000,123],[1709300939000,121],[1709300940000,122],[1709300941000,120],[1709300942000,119],[1709300943000,121],[1709300944000,129],[1709300945000,125],[1709300946000,122],[1709300947000,127],[1709300948000,125],[1709300949000,127],[1709300950000,129],[1709300951000,127],[1709300952000,133],[1709300953000,133],[1709300954000,132],[1709300955000,130],[1709300956000,133],[1709300957000,138],[1709300958000,140],[1709300959000,141],[1709300960000,143],[1709300961000,144],[1709300962000,136],[1709300963000,134],[1709300964000,132],[1709300965000,135],[1709300966000,135],[1709300967000,136],[1709300968000,137],[1709300969000,144],[1709300970000,137],[1709300971000,136],[1709300972000,136],[1709300973000,135],[1709300974000,136],[1709300975000,136],[1709300976000,137],[1709300977000,139],[1709300978000,139],[1709300979000,142],[1709300980000,138],[1709300981000,143],[1709300982000,137],[1709300983000,140],[1709300984000,137],[1709300985000,139],[1709300986000,137],[1709300987000,139],[1709300988000,142],[1709300989000,133],[1709300990000,138],[1709300991000,137],[1709300992000,137],[1709300993000,137],[1709300994000,129],[1709300995000,139],[1709300996000,135],[1709300997000,145],[1709300998000,139],[1709300999000,136],[1709301000000,133],[1709301001000,139],[1709301002000,143],[1709301003000,141],[1709301004000,150],[1709301005000,140],[1709301006000,137],[1709301007000,133],[1709301008000,131],[1709301009000,139],[1709301010000,138],[1709301011000,139],[1709301012000,138],[1709301013000,134],[1709301014000,139],[1709301015000,141],[1709301016000,145],[1709301017000,142],[1709301018000,136],[1709301019000,139],[1709301020000,133],[1709301021000,136],[1709301022000,141],[1709301023000,141],[1709301024000,136],[1709301025000,140],[1709301026000,134],[1709301027000,133],[1709301028000,137],[1709301029000,137],[1709301030000,134],[1709301031000,139],[1709301032000,138],[1709301033000,134],[1709301034000,136],[1709301035000,137],[1709301036000,133],[1709301037000,140],[1709301038000,146],[1709301039000,139],[1709301040000,133],[1709301041000,129],[1709301042000,128],[1709301043000,132],[1709301044000,134],[1709301045000,133],[1709301046000,134],[1709301047000,130],[1709301048000,132],[1709301049000,134],[1709301050000,135],[1709301051000,136],[1709301052000,129],[1709301053000,124],[1709301054000,136],[1709301055000,135],[1709301056000,135],[1709301057000,139],[1709301058000,131],[1709301059000,137],[1709301060000,137],[1709301061000,137],[1709301062000,136],[1709301063000,141],[1709301064000,136],[1709301065000,135],[1709301066000,128],[1709301067000,128],[1709301068000,124],[1709301069000,130],[1709301070000,138],[1709301071000,132],[1709301072000,135],[1709301073000,132],[1709301074000,128],[1709301075000,138],[1709301076000,136],[1709301077000,140],[1709301078000,140],[1709301079000,141],[1709301080000,32],[1709301081000,17]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#f15b4f',
name: 'extratos',
data: [
[1709300835000,0],[1709300836000,0],[1709300837000,0],[1709300838000,0],[1709300839000,1],[1709300840000,2],[1709300841000,1],[1709300842000,1],[1709300843000,1],[1709300844000,1],[1709300845000,2],[1709300846000,1],[1709300847000,2],[1709300848000,2],[1709300849000,1],[1709300850000,2],[1709300851000,2],[1709300852000,2],[1709300853000,2],[1709300854000,2],[1709300855000,2],[1709300856000,2],[1709300857000,3],[1709300858000,2],[1709300859000,3],[1709300860000,2],[1709300861000,3],[1709300862000,2],[1709300863000,3],[1709300864000,3],[1709300865000,3],[1709300866000,3],[1709300867000,3],[1709300868000,3],[1709300869000,3],[1709300870000,4],[1709300871000,3],[1709300872000,3],[1709300873000,4],[1709300874000,3],[1709300875000,4],[1709300876000,4],[1709300877000,4],[1709300878000,4],[1709300879000,4],[1709300880000,4],[1709300881000,4],[1709300882000,4],[1709300883000,4],[1709300884000,4],[1709300885000,5],[1709300886000,4],[1709300887000,5],[1709300888000,5],[1709300889000,4],[1709300890000,5],[1709300891000,5],[1709300892000,5],[1709300893000,5],[1709300894000,5],[1709300895000,5],[1709300896000,5],[1709300897000,6],[1709300898000,5],[1709300899000,6],[1709300900000,5],[1709300901000,6],[1709300902000,5],[1709300903000,6],[1709300904000,6],[1709300905000,6],[1709300906000,6],[1709300907000,6],[1709300908000,6],[1709300909000,6],[1709300910000,7],[1709300911000,6],[1709300912000,6],[1709300913000,8],[1709300914000,7],[1709300915000,10],[1709300916000,10],[1709300917000,10],[1709300918000,10],[1709300919000,10],[1709300920000,11],[1709300921000,10],[1709300922000,10],[1709300923000,9],[1709300924000,10],[1709300925000,12],[1709300926000,12],[1709300927000,12],[1709300928000,10],[1709300929000,10],[1709300930000,11],[1709300931000,12],[1709300932000,13],[1709300933000,13],[1709300934000,11],[1709300935000,10],[1709300936000,10],[1709300937000,12],[1709300938000,12],[1709300939000,14],[1709300940000,14],[1709300941000,16],[1709300942000,13],[1709300943000,13],[1709300944000,13],[1709300945000,13],[1709300946000,13],[1709300947000,10],[1709300948000,11],[1709300949000,10],[1709300950000,11],[1709300951000,9],[1709300952000,10],[1709300953000,12],[1709300954000,11],[1709300955000,11],[1709300956000,11],[1709300957000,10],[1709300958000,10],[1709300959000,10],[1709300960000,10],[1709300961000,10],[1709300962000,10],[1709300963000,10],[1709300964000,10],[1709300965000,10],[1709300966000,10],[1709300967000,10],[1709300968000,10],[1709300969000,10],[1709300970000,10],[1709300971000,10],[1709300972000,10],[1709300973000,10],[1709300974000,10],[1709300975000,10],[1709300976000,10],[1709300977000,10],[1709300978000,10],[1709300979000,10],[1709300980000,10],[1709300981000,10],[1709300982000,10],[1709300983000,10],[1709300984000,10],[1709300985000,10],[1709300986000,10],[1709300987000,10],[1709300988000,10],[1709300989000,10],[1709300990000,10],[1709300991000,10],[1709300992000,10],[1709300993000,10],[1709300994000,10],[1709300995000,10],[1709300996000,10],[1709300997000,10],[1709300998000,10],[1709300999000,10],[1709301000000,10],[1709301001000,11],[1709301002000,11],[1709301003000,11],[1709301004000,11],[1709301005000,10],[1709301006000,10],[1709301007000,10],[1709301008000,10],[1709301009000,10],[1709301010000,10],[1709301011000,10],[1709301012000,10],[1709301013000,10],[1709301014000,10],[1709301015000,10],[1709301016000,10],[1709301017000,10],[1709301018000,10],[1709301019000,11],[1709301020000,10],[1709301021000,10],[1709301022000,11],[1709301023000,11],[1709301024000,10],[1709301025000,10],[1709301026000,10],[1709301027000,10],[1709301028000,10],[1709301029000,10],[1709301030000,10],[1709301031000,10],[1709301032000,10],[1709301033000,10],[1709301034000,10],[1709301035000,10],[1709301036000,10],[1709301037000,10],[1709301038000,10],[1709301039000,10],[1709301040000,10],[1709301041000,10],[1709301042000,10],[1709301043000,10],[1709301044000,11],[1709301045000,11],[1709301046000,11],[1709301047000,11],[1709301048000,10],[1709301049000,10],[1709301050000,10],[1709301051000,10],[1709301052000,10],[1709301053000,10],[1709301054000,10],[1709301055000,11],[1709301056000,11],[1709301057000,11],[1709301058000,11],[1709301059000,10],[1709301060000,10],[1709301061000,10],[1709301062000,10],[1709301063000,10],[1709301064000,10],[1709301065000,10],[1709301066000,10],[1709301067000,10],[1709301068000,10],[1709301069000,10],[1709301070000,10],[1709301071000,10],[1709301072000,10],[1709301073000,10],[1709301074000,10],[1709301075000,10],[1709301076000,10],[1709301077000,10],[1709301078000,10],[1709301079000,9],[1709301080000,0],[1709301081000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FFDD00',
name: 'validações',
data: [
[1709300835000,0],[1709300836000,0],[1709300837000,0],[1709300838000,5],[1709300839000,5],[1709300840000,0],[1709300841000,0],[1709300842000,0],[1709300843000,0],[1709300844000,0],[1709300845000,0],[1709300846000,0],[1709300847000,0],[1709300848000,0],[1709300849000,0],[1709300850000,0],[1709300851000,0],[1709300852000,0],[1709300853000,0],[1709300854000,0],[1709300855000,0],[1709300856000,0],[1709300857000,0],[1709300858000,0],[1709300859000,0],[1709300860000,0],[1709300861000,0],[1709300862000,0],[1709300863000,0],[1709300864000,0],[1709300865000,0],[1709300866000,0],[1709300867000,0],[1709300868000,0],[1709300869000,0],[1709300870000,0],[1709300871000,0],[1709300872000,0],[1709300873000,0],[1709300874000,0],[1709300875000,0],[1709300876000,0],[1709300877000,0],[1709300878000,0],[1709300879000,0],[1709300880000,0],[1709300881000,0],[1709300882000,0],[1709300883000,0],[1709300884000,0],[1709300885000,0],[1709300886000,0],[1709300887000,0],[1709300888000,0],[1709300889000,0],[1709300890000,0],[1709300891000,0],[1709300892000,0],[1709300893000,0],[1709300894000,0],[1709300895000,0],[1709300896000,0],[1709300897000,0],[1709300898000,0],[1709300899000,0],[1709300900000,0],[1709300901000,0],[1709300902000,0],[1709300903000,0],[1709300904000,0],[1709300905000,0],[1709300906000,0],[1709300907000,0],[1709300908000,0],[1709300909000,0],[1709300910000,0],[1709300911000,0],[1709300912000,0],[1709300913000,0],[1709300914000,0],[1709300915000,0],[1709300916000,0],[1709300917000,0],[1709300918000,0],[1709300919000,0],[1709300920000,0],[1709300921000,0],[1709300922000,0],[1709300923000,0],[1709300924000,0],[1709300925000,0],[1709300926000,0],[1709300927000,0],[1709300928000,0],[1709300929000,0],[1709300930000,0],[1709300931000,0],[1709300932000,0],[1709300933000,0],[1709300934000,0],[1709300935000,0],[1709300936000,0],[1709300937000,0],[1709300938000,0],[1709300939000,0],[1709300940000,0],[1709300941000,0],[1709300942000,0],[1709300943000,0],[1709300944000,0],[1709300945000,0],[1709300946000,0],[1709300947000,0],[1709300948000,0],[1709300949000,0],[1709300950000,0],[1709300951000,0],[1709300952000,0],[1709300953000,0],[1709300954000,0],[1709300955000,0],[1709300956000,0],[1709300957000,0],[1709300958000,0],[1709300959000,0],[1709300960000,0],[1709300961000,0],[1709300962000,0],[1709300963000,0],[1709300964000,0],[1709300965000,0],[1709300966000,0],[1709300967000,0],[1709300968000,0],[1709300969000,0],[1709300970000,0],[1709300971000,0],[1709300972000,0],[1709300973000,0],[1709300974000,0],[1709300975000,0],[1709300976000,0],[1709300977000,0],[1709300978000,0],[1709300979000,0],[1709300980000,0],[1709300981000,0],[1709300982000,0],[1709300983000,0],[1709300984000,0],[1709300985000,0],[1709300986000,0],[1709300987000,0],[1709300988000,0],[1709300989000,0],[1709300990000,0],[1709300991000,0],[1709300992000,0],[1709300993000,0],[1709300994000,0],[1709300995000,0],[1709300996000,0],[1709300997000,0],[1709300998000,0],[1709300999000,0],[1709301000000,0],[1709301001000,0],[1709301002000,0],[1709301003000,0],[1709301004000,0],[1709301005000,0],[1709301006000,0],[1709301007000,0],[1709301008000,0],[1709301009000,0],[1709301010000,0],[1709301011000,0],[1709301012000,0],[1709301013000,0],[1709301014000,0],[1709301015000,0],[1709301016000,0],[1709301017000,0],[1709301018000,0],[1709301019000,0],[1709301020000,0],[1709301021000,0],[1709301022000,0],[1709301023000,0],[1709301024000,0],[1709301025000,0],[1709301026000,0],[1709301027000,0],[1709301028000,0],[1709301029000,0],[1709301030000,0],[1709301031000,0],[1709301032000,0],[1709301033000,0],[1709301034000,0],[1709301035000,0],[1709301036000,0],[1709301037000,0],[1709301038000,0],[1709301039000,0],[1709301040000,0],[1709301041000,0],[1709301042000,0],[1709301043000,0],[1709301044000,0],[1709301045000,0],[1709301046000,0],[1709301047000,0],[1709301048000,0],[1709301049000,0],[1709301050000,0],[1709301051000,0],[1709301052000,0],[1709301053000,0],[1709301054000,0],[1709301055000,0],[1709301056000,0],[1709301057000,0],[1709301058000,0],[1709301059000,0],[1709301060000,0],[1709301061000,0],[1709301062000,0],[1709301063000,0],[1709301064000,0],[1709301065000,0],[1709301066000,0],[1709301067000,0],[1709301068000,0],[1709301069000,0],[1709301070000,0],[1709301071000,0],[1709301072000,0],[1709301073000,0],[1709301074000,0],[1709301075000,0],[1709301076000,0],[1709301077000,0],[1709301078000,0],[1709301079000,0],[1709301080000,0],[1709301081000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00D5FF',
name: 'validação HTTP 404',
data: [
[1709300835000,0],[1709300836000,0],[1709300837000,0],[1709300838000,1],[1709300839000,0],[1709300840000,0],[1709300841000,0],[1709300842000,0],[1709300843000,0],[1709300844000,0],[1709300845000,0],[1709300846000,0],[1709300847000,0],[1709300848000,0],[1709300849000,0],[1709300850000,0],[1709300851000,0],[1709300852000,0],[1709300853000,0],[1709300854000,0],[1709300855000,0],[1709300856000,0],[1709300857000,0],[1709300858000,0],[1709300859000,0],[1709300860000,0],[1709300861000,0],[1709300862000,0],[1709300863000,0],[1709300864000,0],[1709300865000,0],[1709300866000,0],[1709300867000,0],[1709300868000,0],[1709300869000,0],[1709300870000,0],[1709300871000,0],[1709300872000,0],[1709300873000,0],[1709300874000,0],[1709300875000,0],[1709300876000,0],[1709300877000,0],[1709300878000,0],[1709300879000,0],[1709300880000,0],[1709300881000,0],[1709300882000,0],[1709300883000,0],[1709300884000,0],[1709300885000,0],[1709300886000,0],[1709300887000,0],[1709300888000,0],[1709300889000,0],[1709300890000,0],[1709300891000,0],[1709300892000,0],[1709300893000,0],[1709300894000,0],[1709300895000,0],[1709300896000,0],[1709300897000,0],[1709300898000,0],[1709300899000,0],[1709300900000,0],[1709300901000,0],[1709300902000,0],[1709300903000,0],[1709300904000,0],[1709300905000,0],[1709300906000,0],[1709300907000,0],[1709300908000,0],[1709300909000,0],[1709300910000,0],[1709300911000,0],[1709300912000,0],[1709300913000,0],[1709300914000,0],[1709300915000,0],[1709300916000,0],[1709300917000,0],[1709300918000,0],[1709300919000,0],[1709300920000,0],[1709300921000,0],[1709300922000,0],[1709300923000,0],[1709300924000,0],[1709300925000,0],[1709300926000,0],[1709300927000,0],[1709300928000,0],[1709300929000,0],[1709300930000,0],[1709300931000,0],[1709300932000,0],[1709300933000,0],[1709300934000,0],[1709300935000,0],[1709300936000,0],[1709300937000,0],[1709300938000,0],[1709300939000,0],[1709300940000,0],[1709300941000,0],[1709300942000,0],[1709300943000,0],[1709300944000,0],[1709300945000,0],[1709300946000,0],[1709300947000,0],[1709300948000,0],[1709300949000,0],[1709300950000,0],[1709300951000,0],[1709300952000,0],[1709300953000,0],[1709300954000,0],[1709300955000,0],[1709300956000,0],[1709300957000,0],[1709300958000,0],[1709300959000,0],[1709300960000,0],[1709300961000,0],[1709300962000,0],[1709300963000,0],[1709300964000,0],[1709300965000,0],[1709300966000,0],[1709300967000,0],[1709300968000,0],[1709300969000,0],[1709300970000,0],[1709300971000,0],[1709300972000,0],[1709300973000,0],[1709300974000,0],[1709300975000,0],[1709300976000,0],[1709300977000,0],[1709300978000,0],[1709300979000,0],[1709300980000,0],[1709300981000,0],[1709300982000,0],[1709300983000,0],[1709300984000,0],[1709300985000,0],[1709300986000,0],[1709300987000,0],[1709300988000,0],[1709300989000,0],[1709300990000,0],[1709300991000,0],[1709300992000,0],[1709300993000,0],[1709300994000,0],[1709300995000,0],[1709300996000,0],[1709300997000,0],[1709300998000,0],[1709300999000,0],[1709301000000,0],[1709301001000,0],[1709301002000,0],[1709301003000,0],[1709301004000,0],[1709301005000,0],[1709301006000,0],[1709301007000,0],[1709301008000,0],[1709301009000,0],[1709301010000,0],[1709301011000,0],[1709301012000,0],[1709301013000,0],[1709301014000,0],[1709301015000,0],[1709301016000,0],[1709301017000,0],[1709301018000,0],[1709301019000,0],[1709301020000,0],[1709301021000,0],[1709301022000,0],[1709301023000,0],[1709301024000,0],[1709301025000,0],[1709301026000,0],[1709301027000,0],[1709301028000,0],[1709301029000,0],[1709301030000,0],[1709301031000,0],[1709301032000,0],[1709301033000,0],[1709301034000,0],[1709301035000,0],[1709301036000,0],[1709301037000,0],[1709301038000,0],[1709301039000,0],[1709301040000,0],[1709301041000,0],[1709301042000,0],[1709301043000,0],[1709301044000,0],[1709301045000,0],[1709301046000,0],[1709301047000,0],[1709301048000,0],[1709301049000,0],[1709301050000,0],[1709301051000,0],[1709301052000,0],[1709301053000,0],[1709301054000,0],[1709301055000,0],[1709301056000,0],[1709301057000,0],[1709301058000,0],[1709301059000,0],[1709301060000,0],[1709301061000,0],[1709301062000,0],[1709301063000,0],[1709301064000,0],[1709301065000,0],[1709301066000,0],[1709301067000,0],[1709301068000,0],[1709301069000,0],[1709301070000,0],[1709301071000,0],[1709301072000,0],[1709301073000,0],[1709301074000,0],[1709301075000,0],[1709301076000,0],[1709301077000,0],[1709301078000,0],[1709301079000,0],[1709301080000,0],[1709301081000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00FF00',
name: 'validação concorrência saldo - 0',
data: [
[1709300835000,0],[1709300836000,0],[1709300837000,1],[1709300838000,0],[1709300839000,0],[1709300840000,0],[1709300841000,0],[1709300842000,0],[1709300843000,0],[1709300844000,0],[1709300845000,0],[1709300846000,0],[1709300847000,0],[1709300848000,0],[1709300849000,0],[1709300850000,0],[1709300851000,0],[1709300852000,0],[1709300853000,0],[1709300854000,0],[1709300855000,0],[1709300856000,0],[1709300857000,0],[1709300858000,0],[1709300859000,0],[1709300860000,0],[1709300861000,0],[1709300862000,0],[1709300863000,0],[1709300864000,0],[1709300865000,0],[1709300866000,0],[1709300867000,0],[1709300868000,0],[1709300869000,0],[1709300870000,0],[1709300871000,0],[1709300872000,0],[1709300873000,0],[1709300874000,0],[1709300875000,0],[1709300876000,0],[1709300877000,0],[1709300878000,0],[1709300879000,0],[1709300880000,0],[1709300881000,0],[1709300882000,0],[1709300883000,0],[1709300884000,0],[1709300885000,0],[1709300886000,0],[1709300887000,0],[1709300888000,0],[1709300889000,0],[1709300890000,0],[1709300891000,0],[1709300892000,0],[1709300893000,0],[1709300894000,0],[1709300895000,0],[1709300896000,0],[1709300897000,0],[1709300898000,0],[1709300899000,0],[1709300900000,0],[1709300901000,0],[1709300902000,0],[1709300903000,0],[1709300904000,0],[1709300905000,0],[1709300906000,0],[1709300907000,0],[1709300908000,0],[1709300909000,0],[1709300910000,0],[1709300911000,0],[1709300912000,0],[1709300913000,0],[1709300914000,0],[1709300915000,0],[1709300916000,0],[1709300917000,0],[1709300918000,0],[1709300919000,0],[1709300920000,0],[1709300921000,0],[1709300922000,0],[1709300923000,0],[1709300924000,0],[1709300925000,0],[1709300926000,0],[1709300927000,0],[1709300928000,0],[1709300929000,0],[1709300930000,0],[1709300931000,0],[1709300932000,0],[1709300933000,0],[1709300934000,0],[1709300935000,0],[1709300936000,0],[1709300937000,0],[1709300938000,0],[1709300939000,0],[1709300940000,0],[1709300941000,0],[1709300942000,0],[1709300943000,0],[1709300944000,0],[1709300945000,0],[1709300946000,0],[1709300947000,0],[1709300948000,0],[1709300949000,0],[1709300950000,0],[1709300951000,0],[1709300952000,0],[1709300953000,0],[1709300954000,0],[1709300955000,0],[1709300956000,0],[1709300957000,0],[1709300958000,0],[1709300959000,0],[1709300960000,0],[1709300961000,0],[1709300962000,0],[1709300963000,0],[1709300964000,0],[1709300965000,0],[1709300966000,0],[1709300967000,0],[1709300968000,0],[1709300969000,0],[1709300970000,0],[1709300971000,0],[1709300972000,0],[1709300973000,0],[1709300974000,0],[1709300975000,0],[1709300976000,0],[1709300977000,0],[1709300978000,0],[1709300979000,0],[1709300980000,0],[1709300981000,0],[1709300982000,0],[1709300983000,0],[1709300984000,0],[1709300985000,0],[1709300986000,0],[1709300987000,0],[1709300988000,0],[1709300989000,0],[1709300990000,0],[1709300991000,0],[1709300992000,0],[1709300993000,0],[1709300994000,0],[1709300995000,0],[1709300996000,0],[1709300997000,0],[1709300998000,0],[1709300999000,0],[1709301000000,0],[1709301001000,0],[1709301002000,0],[1709301003000,0],[1709301004000,0],[1709301005000,0],[1709301006000,0],[1709301007000,0],[1709301008000,0],[1709301009000,0],[1709301010000,0],[1709301011000,0],[1709301012000,0],[1709301013000,0],[1709301014000,0],[1709301015000,0],[1709301016000,0],[1709301017000,0],[1709301018000,0],[1709301019000,0],[1709301020000,0],[1709301021000,0],[1709301022000,0],[1709301023000,0],[1709301024000,0],[1709301025000,0],[1709301026000,0],[1709301027000,0],[1709301028000,0],[1709301029000,0],[1709301030000,0],[1709301031000,0],[1709301032000,0],[1709301033000,0],[1709301034000,0],[1709301035000,0],[1709301036000,0],[1709301037000,0],[1709301038000,0],[1709301039000,0],[1709301040000,0],[1709301041000,0],[1709301042000,0],[1709301043000,0],[1709301044000,0],[1709301045000,0],[1709301046000,0],[1709301047000,0],[1709301048000,0],[1709301049000,0],[1709301050000,0],[1709301051000,0],[1709301052000,0],[1709301053000,0],[1709301054000,0],[1709301055000,0],[1709301056000,0],[1709301057000,0],[1709301058000,0],[1709301059000,0],[1709301060000,0],[1709301061000,0],[1709301062000,0],[1709301063000,0],[1709301064000,0],[1709301065000,0],[1709301066000,0],[1709301067000,0],[1709301068000,0],[1709301069000,0],[1709301070000,0],[1709301071000,0],[1709301072000,0],[1709301073000,0],[1709301074000,0],[1709301075000,0],[1709301076000,0],[1709301077000,0],[1709301078000,0],[1709301079000,0],[1709301080000,0],[1709301081000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#9D00FF',
name: 'validação concorrência transações - c',
data: [
[1709300835000,0],[1709300836000,25],[1709300837000,25],[1709300838000,0],[1709300839000,0],[1709300840000,0],[1709300841000,0],[1709300842000,0],[1709300843000,0],[1709300844000,0],[1709300845000,0],[1709300846000,0],[1709300847000,0],[1709300848000,0],[1709300849000,0],[1709300850000,0],[1709300851000,0],[1709300852000,0],[1709300853000,0],[1709300854000,0],[1709300855000,0],[1709300856000,0],[1709300857000,0],[1709300858000,0],[1709300859000,0],[1709300860000,0],[1709300861000,0],[1709300862000,0],[1709300863000,0],[1709300864000,0],[1709300865000,0],[1709300866000,0],[1709300867000,0],[1709300868000,0],[1709300869000,0],[1709300870000,0],[1709300871000,0],[1709300872000,0],[1709300873000,0],[1709300874000,0],[1709300875000,0],[1709300876000,0],[1709300877000,0],[1709300878000,0],[1709300879000,0],[1709300880000,0],[1709300881000,0],[1709300882000,0],[1709300883000,0],[1709300884000,0],[1709300885000,0],[1709300886000,0],[1709300887000,0],[1709300888000,0],[1709300889000,0],[1709300890000,0],[1709300891000,0],[1709300892000,0],[1709300893000,0],[1709300894000,0],[1709300895000,0],[1709300896000,0],[1709300897000,0],[1709300898000,0],[1709300899000,0],[1709300900000,0],[1709300901000,0],[1709300902000,0],[1709300903000,0],[1709300904000,0],[1709300905000,0],[1709300906000,0],[1709300907000,0],[1709300908000,0],[1709300909000,0],[1709300910000,0],[1709300911000,0],[1709300912000,0],[1709300913000,0],[1709300914000,0],[1709300915000,0],[1709300916000,0],[1709300917000,0],[1709300918000,0],[1709300919000,0],[1709300920000,0],[1709300921000,0],[1709300922000,0],[1709300923000,0],[1709300924000,0],[1709300925000,0],[1709300926000,0],[1709300927000,0],[1709300928000,0],[1709300929000,0],[1709300930000,0],[1709300931000,0],[1709300932000,0],[1709300933000,0],[1709300934000,0],[1709300935000,0],[1709300936000,0],[1709300937000,0],[1709300938000,0],[1709300939000,0],[1709300940000,0],[1709300941000,0],[1709300942000,0],[1709300943000,0],[1709300944000,0],[1709300945000,0],[1709300946000,0],[1709300947000,0],[1709300948000,0],[1709300949000,0],[1709300950000,0],[1709300951000,0],[1709300952000,0],[1709300953000,0],[1709300954000,0],[1709300955000,0],[1709300956000,0],[1709300957000,0],[1709300958000,0],[1709300959000,0],[1709300960000,0],[1709300961000,0],[1709300962000,0],[1709300963000,0],[1709300964000,0],[1709300965000,0],[1709300966000,0],[1709300967000,0],[1709300968000,0],[1709300969000,0],[1709300970000,0],[1709300971000,0],[1709300972000,0],[1709300973000,0],[1709300974000,0],[1709300975000,0],[1709300976000,0],[1709300977000,0],[1709300978000,0],[1709300979000,0],[1709300980000,0],[1709300981000,0],[1709300982000,0],[1709300983000,0],[1709300984000,0],[1709300985000,0],[1709300986000,0],[1709300987000,0],[1709300988000,0],[1709300989000,0],[1709300990000,0],[1709300991000,0],[1709300992000,0],[1709300993000,0],[1709300994000,0],[1709300995000,0],[1709300996000,0],[1709300997000,0],[1709300998000,0],[1709300999000,0],[1709301000000,0],[1709301001000,0],[1709301002000,0],[1709301003000,0],[1709301004000,0],[1709301005000,0],[1709301006000,0],[1709301007000,0],[1709301008000,0],[1709301009000,0],[1709301010000,0],[1709301011000,0],[1709301012000,0],[1709301013000,0],[1709301014000,0],[1709301015000,0],[1709301016000,0],[1709301017000,0],[1709301018000,0],[1709301019000,0],[1709301020000,0],[1709301021000,0],[1709301022000,0],[1709301023000,0],[1709301024000,0],[1709301025000,0],[1709301026000,0],[1709301027000,0],[1709301028000,0],[1709301029000,0],[1709301030000,0],[1709301031000,0],[1709301032000,0],[1709301033000,0],[1709301034000,0],[1709301035000,0],[1709301036000,0],[1709301037000,0],[1709301038000,0],[1709301039000,0],[1709301040000,0],[1709301041000,0],[1709301042000,0],[1709301043000,0],[1709301044000,0],[1709301045000,0],[1709301046000,0],[1709301047000,0],[1709301048000,0],[1709301049000,0],[1709301050000,0],[1709301051000,0],[1709301052000,0],[1709301053000,0],[1709301054000,0],[1709301055000,0],[1709301056000,0],[1709301057000,0],[1709301058000,0],[1709301059000,0],[1709301060000,0],[1709301061000,0],[1709301062000,0],[1709301063000,0],[1709301064000,0],[1709301065000,0],[1709301066000,0],[1709301067000,0],[1709301068000,0],[1709301069000,0],[1709301070000,0],[1709301071000,0],[1709301072000,0],[1709301073000,0],[1709301074000,0],[1709301075000,0],[1709301076000,0],[1709301077000,0],[1709301078000,0],[1709301079000,0],[1709301080000,0],[1709301081000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FF00E1',
name: 'validação concorrência saldo - -25',
data: [
[1709300835000,1],[1709300836000,1],[1709300837000,0],[1709300838000,0],[1709300839000,0],[1709300840000,0],[1709300841000,0],[1709300842000,0],[1709300843000,0],[1709300844000,0],[1709300845000,0],[1709300846000,0],[1709300847000,0],[1709300848000,0],[1709300849000,0],[1709300850000,0],[1709300851000,0],[1709300852000,0],[1709300853000,0],[1709300854000,0],[1709300855000,0],[1709300856000,0],[1709300857000,0],[1709300858000,0],[1709300859000,0],[1709300860000,0],[1709300861000,0],[1709300862000,0],[1709300863000,0],[1709300864000,0],[1709300865000,0],[1709300866000,0],[1709300867000,0],[1709300868000,0],[1709300869000,0],[1709300870000,0],[1709300871000,0],[1709300872000,0],[1709300873000,0],[1709300874000,0],[1709300875000,0],[1709300876000,0],[1709300877000,0],[1709300878000,0],[1709300879000,0],[1709300880000,0],[1709300881000,0],[1709300882000,0],[1709300883000,0],[1709300884000,0],[1709300885000,0],[1709300886000,0],[1709300887000,0],[1709300888000,0],[1709300889000,0],[1709300890000,0],[1709300891000,0],[1709300892000,0],[1709300893000,0],[1709300894000,0],[1709300895000,0],[1709300896000,0],[1709300897000,0],[1709300898000,0],[1709300899000,0],[1709300900000,0],[1709300901000,0],[1709300902000,0],[1709300903000,0],[1709300904000,0],[1709300905000,0],[1709300906000,0],[1709300907000,0],[1709300908000,0],[1709300909000,0],[1709300910000,0],[1709300911000,0],[1709300912000,0],[1709300913000,0],[1709300914000,0],[1709300915000,0],[1709300916000,0],[1709300917000,0],[1709300918000,0],[1709300919000,0],[1709300920000,0],[1709300921000,0],[1709300922000,0],[1709300923000,0],[1709300924000,0],[1709300925000,0],[1709300926000,0],[1709300927000,0],[1709300928000,0],[1709300929000,0],[1709300930000,0],[1709300931000,0],[1709300932000,0],[1709300933000,0],[1709300934000,0],[1709300935000,0],[1709300936000,0],[1709300937000,0],[1709300938000,0],[1709300939000,0],[1709300940000,0],[1709300941000,0],[1709300942000,0],[1709300943000,0],[1709300944000,0],[1709300945000,0],[1709300946000,0],[1709300947000,0],[1709300948000,0],[1709300949000,0],[1709300950000,0],[1709300951000,0],[1709300952000,0],[1709300953000,0],[1709300954000,0],[1709300955000,0],[1709300956000,0],[1709300957000,0],[1709300958000,0],[1709300959000,0],[1709300960000,0],[1709300961000,0],[1709300962000,0],[1709300963000,0],[1709300964000,0],[1709300965000,0],[1709300966000,0],[1709300967000,0],[1709300968000,0],[1709300969000,0],[1709300970000,0],[1709300971000,0],[1709300972000,0],[1709300973000,0],[1709300974000,0],[1709300975000,0],[1709300976000,0],[1709300977000,0],[1709300978000,0],[1709300979000,0],[1709300980000,0],[1709300981000,0],[1709300982000,0],[1709300983000,0],[1709300984000,0],[1709300985000,0],[1709300986000,0],[1709300987000,0],[1709300988000,0],[1709300989000,0],[1709300990000,0],[1709300991000,0],[1709300992000,0],[1709300993000,0],[1709300994000,0],[1709300995000,0],[1709300996000,0],[1709300997000,0],[1709300998000,0],[1709300999000,0],[1709301000000,0],[1709301001000,0],[1709301002000,0],[1709301003000,0],[1709301004000,0],[1709301005000,0],[1709301006000,0],[1709301007000,0],[1709301008000,0],[1709301009000,0],[1709301010000,0],[1709301011000,0],[1709301012000,0],[1709301013000,0],[1709301014000,0],[1709301015000,0],[1709301016000,0],[1709301017000,0],[1709301018000,0],[1709301019000,0],[1709301020000,0],[1709301021000,0],[1709301022000,0],[1709301023000,0],[1709301024000,0],[1709301025000,0],[1709301026000,0],[1709301027000,0],[1709301028000,0],[1709301029000,0],[1709301030000,0],[1709301031000,0],[1709301032000,0],[1709301033000,0],[1709301034000,0],[1709301035000,0],[1709301036000,0],[1709301037000,0],[1709301038000,0],[1709301039000,0],[1709301040000,0],[1709301041000,0],[1709301042000,0],[1709301043000,0],[1709301044000,0],[1709301045000,0],[1709301046000,0],[1709301047000,0],[1709301048000,0],[1709301049000,0],[1709301050000,0],[1709301051000,0],[1709301052000,0],[1709301053000,0],[1709301054000,0],[1709301055000,0],[1709301056000,0],[1709301057000,0],[1709301058000,0],[1709301059000,0],[1709301060000,0],[1709301061000,0],[1709301062000,0],[1709301063000,0],[1709301064000,0],[1709301065000,0],[1709301066000,0],[1709301067000,0],[1709301068000,0],[1709301069000,0],[1709301070000,0],[1709301071000,0],[1709301072000,0],[1709301073000,0],[1709301074000,0],[1709301075000,0],[1709301076000,0],[1709301077000,0],[1709301078000,0],[1709301079000,0],[1709301080000,0],[1709301081000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#AECAEB',
name: 'validação concorrência transações - d',
data: [
[1709300835000,25],[1709300836000,0],[1709300837000,0],[1709300838000,0],[1709300839000,0],[1709300840000,0],[1709300841000,0],[1709300842000,0],[1709300843000,0],[1709300844000,0],[1709300845000,0],[1709300846000,0],[1709300847000,0],[1709300848000,0],[1709300849000,0],[1709300850000,0],[1709300851000,0],[1709300852000,0],[1709300853000,0],[1709300854000,0],[1709300855000,0],[1709300856000,0],[1709300857000,0],[1709300858000,0],[1709300859000,0],[1709300860000,0],[1709300861000,0],[1709300862000,0],[1709300863000,0],[1709300864000,0],[1709300865000,0],[1709300866000,0],[1709300867000,0],[1709300868000,0],[1709300869000,0],[1709300870000,0],[1709300871000,0],[1709300872000,0],[1709300873000,0],[1709300874000,0],[1709300875000,0],[1709300876000,0],[1709300877000,0],[1709300878000,0],[1709300879000,0],[1709300880000,0],[1709300881000,0],[1709300882000,0],[1709300883000,0],[1709300884000,0],[1709300885000,0],[1709300886000,0],[1709300887000,0],[1709300888000,0],[1709300889000,0],[1709300890000,0],[1709300891000,0],[1709300892000,0],[1709300893000,0],[1709300894000,0],[1709300895000,0],[1709300896000,0],[1709300897000,0],[1709300898000,0],[1709300899000,0],[1709300900000,0],[1709300901000,0],[1709300902000,0],[1709300903000,0],[1709300904000,0],[1709300905000,0],[1709300906000,0],[1709300907000,0],[1709300908000,0],[1709300909000,0],[1709300910000,0],[1709300911000,0],[1709300912000,0],[1709300913000,0],[1709300914000,0],[1709300915000,0],[1709300916000,0],[1709300917000,0],[1709300918000,0],[1709300919000,0],[1709300920000,0],[1709300921000,0],[1709300922000,0],[1709300923000,0],[1709300924000,0],[1709300925000,0],[1709300926000,0],[1709300927000,0],[1709300928000,0],[1709300929000,0],[1709300930000,0],[1709300931000,0],[1709300932000,0],[1709300933000,0],[1709300934000,0],[1709300935000,0],[1709300936000,0],[1709300937000,0],[1709300938000,0],[1709300939000,0],[1709300940000,0],[1709300941000,0],[1709300942000,0],[1709300943000,0],[1709300944000,0],[1709300945000,0],[1709300946000,0],[1709300947000,0],[1709300948000,0],[1709300949000,0],[1709300950000,0],[1709300951000,0],[1709300952000,0],[1709300953000,0],[1709300954000,0],[1709300955000,0],[1709300956000,0],[1709300957000,0],[1709300958000,0],[1709300959000,0],[1709300960000,0],[1709300961000,0],[1709300962000,0],[1709300963000,0],[1709300964000,0],[1709300965000,0],[1709300966000,0],[1709300967000,0],[1709300968000,0],[1709300969000,0],[1709300970000,0],[1709300971000,0],[1709300972000,0],[1709300973000,0],[1709300974000,0],[1709300975000,0],[1709300976000,0],[1709300977000,0],[1709300978000,0],[1709300979000,0],[1709300980000,0],[1709300981000,0],[1709300982000,0],[1709300983000,0],[1709300984000,0],[1709300985000,0],[1709300986000,0],[1709300987000,0],[1709300988000,0],[1709300989000,0],[1709300990000,0],[1709300991000,0],[1709300992000,0],[1709300993000,0],[1709300994000,0],[1709300995000,0],[1709300996000,0],[1709300997000,0],[1709300998000,0],[1709300999000,0],[1709301000000,0],[1709301001000,0],[1709301002000,0],[1709301003000,0],[1709301004000,0],[1709301005000,0],[1709301006000,0],[1709301007000,0],[1709301008000,0],[1709301009000,0],[1709301010000,0],[1709301011000,0],[1709301012000,0],[1709301013000,0],[1709301014000,0],[1709301015000,0],[1709301016000,0],[1709301017000,0],[1709301018000,0],[1709301019000,0],[1709301020000,0],[1709301021000,0],[1709301022000,0],[1709301023000,0],[1709301024000,0],[1709301025000,0],[1709301026000,0],[1709301027000,0],[1709301028000,0],[1709301029000,0],[1709301030000,0],[1709301031000,0],[1709301032000,0],[1709301033000,0],[1709301034000,0],[1709301035000,0],[1709301036000,0],[1709301037000,0],[1709301038000,0],[1709301039000,0],[1709301040000,0],[1709301041000,0],[1709301042000,0],[1709301043000,0],[1709301044000,0],[1709301045000,0],[1709301046000,0],[1709301047000,0],[1709301048000,0],[1709301049000,0],[1709301050000,0],[1709301051000,0],[1709301052000,0],[1709301053000,0],[1709301054000,0],[1709301055000,0],[1709301056000,0],[1709301057000,0],[1709301058000,0],[1709301059000,0],[1709301060000,0],[1709301061000,0],[1709301062000,0],[1709301063000,0],[1709301064000,0],[1709301065000,0],[1709301066000,0],[1709301067000,0],[1709301068000,0],[1709301069000,0],[1709301070000,0],[1709301071000,0],[1709301072000,0],[1709301073000,0],[1709301074000,0],[1709301075000,0],[1709301076000,0],[1709301077000,0],[1709301078000,0],[1709301079000,0],[1709301080000,0],[1709301081000,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: ['33', '100', '167', '234', '301', '368', '435', '501', '568', '635', '702', '769', '836', '903', '969', '1036', '1103', '1170', '1237', '1304', '1371', '1437', '1504', '1571', '1638', '1705', '1772', '1839', '1906', '1972', '2039', '2106', '2173', '2240', '2307', '2374', '2440', '2507', '2574', '2641', '2708', '2775', '2842', '2908', '2975', '3042', '3109', '3176', '3243', '3310', '3376', '3443', '3510', '3577', '3644', '3711', '3778', '3844', '3911', '3978', '4045', '4112', '4179', '4246', '4312', '4379', '4446', '4513', '4580', '4647', '4714', '4780', '4847', '4914', '4981', '5048', '5115', '5182', '5249', '5315', '5382', '5449', '5516', '5583', '5650', '5717', '5783', '5850', '5917', '5984', '6051', '6118', '6185', '6251', '6318', '6385', '6452', '6519', '6586', '6653'],
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: [
12.76,2.55,1.91,0.97,1.93,0.98,0.32,0.79,0.3,0.11,0.27,0.14,0.04,0.11,0.07,0.01,0.02,0.01,0.01,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.03,0.02,0.04,0.1,0.06,0.19,0.35,0.14,0.37,0.57,0.21,0.54,0.66,0.22,0.52,0.65,0.17,0.38,0.48,0.11,0.27,0.3,0.11,0.18,0.2,0.06,0.09,0.11,0.03,0.07,0.07,0.02,0.02,0.03,0.01,0.01,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
],
tooltip: { yDecimals: 0, ySuffix: 'ms' }
},
{
type: 'column',
color: '#f15b4f',
name: 'KO',
data: [
67.79,0.18,0.13,0.07,0.12,0.09,0.03,0.03,0.02,0.0,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.01,0.0,0.01,0.01,0.0,0.01,0.04,0.01,0.01,0.02,0.0,0.01,0.01,0.0,0.0,0.02,0.0,0.0,0.01,0.0,0.0,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
],
tooltip: { yDecimals: 0, ySuffix: 'ms' }
}
]
});
responsetimeDistributionChart.setTitle({
text: '<span class="chart_title">Response Time Distribution</span>',
useHTML: true
});
var responsetimepercentilesovertimeokPercentiles = unpack([[1709300835,[27,123,135,223,225,226,228,230,232,233]],[1709300836,[3,3,3,3,3,3,3,3,3,3]],[1709300837,[14,31,134,152,169,233,235,236,237,238]],[1709300838,[3,3,3,3,3,3,3,3,3,3]],[1709300839,[1,2,7,13,15,17,25,44,77,79]],[1709300840,[4,5,6,6,6,6,6,6,6,7]],[1709300841,[3,4,5,10,12,12,12,12,12,13]],[1709300842,[3,5,5,5,5,5,6,6,6,7]],[1709300843,[3,4,5,5,5,5,5,5,5,6]],[1709300844,[3,4,5,5,5,5,5,6,6,7]],[1709300845,[2,4,4,5,5,6,6,6,6,7]],[1709300846,[2,4,4,4,4,5,5,5,5,6]],[1709300847,[2,4,4,4,5,5,5,5,6,6]],[1709300848,[3,4,4,5,5,5,6,6,6,6]],[1709300849,[3,4,4,5,5,6,6,8,9,9]],[1709300850,[3,4,4,5,5,5,5,6,6,6]],[1709300851,[2,4,4,4,4,5,5,6,6,6]],[1709300852,[3,4,4,4,5,5,5,5,6,6]],[1709300853,[2,3,3,4,4,4,5,5,6,6]],[1709300854,[2,4,4,4,5,5,5,6,6,7]],[1709300855,[1,3,4,4,4,4,5,5,27,28]],[1709300856,[2,3,4,4,4,4,5,5,5,5]],[1709300857,[1,3,3,4,4,4,4,4,5,5]],[1709300858,[2,3,3,4,4,4,4,5,5,5]],[1709300859,[1,3,4,4,4,4,4,4,4,5]],[1709300860,[2,3,3,4,4,4,4,5,5,5]],[1709300861,[2,3,4,4,4,4,5,5,6,6]],[1709300862,[1,3,4,4,4,4,4,5,6,7]],[1709300863,[1,3,4,4,4,4,5,5,6,6]],[1709300864,[1,3,4,5,5,5,6,6,6,6]],[1709300865,[1,4,4,4,4,4,5,5,5,5]],[1709300866,[2,4,4,4,4,5,5,6,6,8]],[1709300867,[1,3,4,4,4,5,5,5,6,6]],[1709300868,[1,3,3,4,4,4,4,5,5,6]],[1709300869,[2,3,4,4,4,4,5,5,5,6]],[1709300870,[1,3,4,4,4,4,4,5,6,6]],[1709300871,[1,3,4,4,4,5,5,5,6,6]],[1709300872,[2,4,4,5,5,5,6,6,7,7]],[1709300873,[2,3,4,4,4,5,5,6,6,7]],[1709300874,[2,3,4,5,5,5,6,6,7,7]],[1709300875,[2,4,4,5,5,5,6,6,6,7]],[1709300876,[2,3,4,5,5,5,6,6,6,7]],[1709300877,[2,3,4,4,5,5,5,6,6,6]],[1709300878,[1,3,4,4,4,4,5,5,6,6]],[1709300879,[1,3,4,5,5,6,6,31,76,80]],[1709300880,[2,4,4,5,5,5,6,6,6,7]],[1709300881,[2,3,4,4,4,5,5,5,5,6]],[1709300882,[2,3,4,5,5,5,5,6,7,8]],[1709300883,[2,3,4,5,5,5,5,5,6,6]],[1709300884,[2,4,4,5,5,5,5,6,6,7]],[1709300885,[2,3,4,5,5,5,5,5,6,7]],[1709300886,[2,3,4,5,5,6,6,8,48,59]],[1709300887,[2,3,4,5,5,6,6,6,7,8]],[1709300888,[2,3,4,5,5,5,6,6,7,8]],[1709300889,[2,3,4,5,5,5,5,6,6,8]],[1709300890,[1,3,4,5,5,5,5,6,6,7]],[1709300891,[1,3,4,5,5,5,5,6,6,7]],[1709300892,[2,3,4,5,5,5,5,6,7,7]],[1709300893,[2,3,4,5,5,5,5,5,6,7]],[1709300894,[2,4,4,5,5,5,5,6,7,9]],[1709300895,[2,4,4,5,5,5,6,6,6,7]],[1709300896,[2,3,4,5,5,5,6,6,7,7]],[1709300897,[2,4,5,6,6,6,6,7,7,8]],[1709300898,[2,4,5,6,6,7,7,11,40,46]],[1709300899,[2,4,4,5,6,6,6,7,7,10]],[1709300900,[2,4,4,5,5,6,6,6,8,8]],[1709300901,[2,4,5,5,5,6,6,7,8,9]],[1709300902,[2,4,5,5,5,6,6,6,8,10]],[1709300903,[2,4,4,5,5,5,5,6,6,7]],[1709300904,[2,4,4,5,5,5,6,6,7,7]],[1709300905,[2,4,4,5,5,6,6,6,13,24]],[1709300906,[2,4,5,5,6,6,6,7,8,10]],[1709300907,[2,4,4,5,5,5,6,6,8,9]],[1709300908,[2,4,5,6,6,6,6,7,7,8]],[1709300909,[2,4,5,6,6,6,7,7,8,8]],[1709300910,[2,4,5,6,6,6,7,7,11,15]],[1709300911,[2,4,5,6,6,6,7,7,12,18]],[1709300912,[2,5,7,303,504,695,888,1140,1437,1714]],[1709300913,[7,202,1684,2191,2257,2320,2481,2777,3171,3463]],[1709300914,[3,100,285,2375,2392,2482,2574,2835,2970,2977]],[1709300915,[16,176,439,2482,2574,2670,2701,3422,3664,3675]],[1709300916,[13,188,431,2261,2288,2358,2575,2875,3264,3601]],[1709300917,[7,200,590,2296,2361,2415,2556,2748,2907,2972]],[1709300918,[8,191,545,2365,2389,2466,2493,2557,2758,2781]],[1709300919,[12,215,1693,2388,2476,2575,2674,2722,2862,2866]],[1709300920,[7,198,1787,2353,2376,2452,2551,2598,2843,3067]],[1709300921,[10,191,2182,2477,2502,2570,2582,2692,2778,2868]],[1709300922,[11,296,549,2483,2555,2580,2612,2682,2896,2980]],[1709300923,[6,186,287,2378,2384,2459,2578,2686,2849,3112]],[1709300924,[5,98,208,2478,2546,2580,2592,2795,2876,2900]],[1709300925,[20,201,2277,2578,2639,2671,2676,2750,2982,3006]],[1709300926,[13,113,286,2668,2701,2801,2881,2993,3176,3205]],[1709300927,[77,107,246,2478,2570,2676,2708,2972,3315,3471]],[1709300928,[6,99,199,2472,2479,2585,2654,2894,3020,3053]],[1709300929,[11,200,2277,2543,2580,2673,2691,2858,3323,3959]],[1709300930,[6,185,303,2485,2582,2680,2860,3108,3392,3467]],[1709300931,[6,104,208,2469,2484,2559,2579,2682,2887,2975]],[1709300932,[6,189,1292,2497,2591,2679,2772,2975,3116,3172]],[1709300933,[10,188,347,2371,2474,2489,2583,2715,3266,3466]],[1709300934,[7,196,436,2572,2582,2687,2795,2880,3110,3179]],[1709300935,[11,199,395,2675,2683,2767,2780,2925,2996,3000]],[1709300936,[12,161,302,2604,2695,2769,2862,2876,2961,2964]],[1709300937,[14,187,312,2687,2768,2784,2872,3057,3075,3079]],[1709300938,[32,162,279,2674,2690,2763,2815,2949,3093,3115]],[1709300939,[4,103,302,2770,2863,2884,2898,2981,3152,3370]],[1709300940,[87,281,694,2699,2747,2796,2949,3081,3434,3591]],[1709300941,[10,174,202,2571,2654,2769,2789,2870,3194,3302]],[1709300942,[10,144,286,2603,2687,2777,2866,2896,3042,3261]],[1709300943,[13,128,389,2578,2582,2713,2879,2894,3013,3070]],[1709300944,[18,195,299,2697,2780,2901,3087,3164,3201,3259]],[1709300945,[3,113,250,2752,2784,2952,3079,3181,3226,3275]],[1709300946,[9,147,288,2684,2709,2839,2966,3000,3220,3295]],[1709300947,[12,330,702,2482,2598,2673,2737,2904,3020,3075]],[1709300948,[6,174,299,2506,2678,2767,2807,2986,3150,3392]],[1709300949,[9,188,1342,2786,2888,2979,3053,3086,3235,3380]],[1709300950,[11,186,298,2562,2607,2686,2777,3062,3380,3608]],[1709300951,[11,184,390,2679,2741,2792,2876,2902,3439,3589]],[1709300952,[8,186,304,2792,2838,2906,2983,3290,3852,4066]],[1709300953,[8,134,344,2880,2975,3075,3256,3375,3591,3599]],[1709300954,[12,109,278,2807,2984,3005,3265,3390,3623,3709]],[1709300955,[10,206,395,2683,2792,2885,2982,3001,3429,3489]],[1709300956,[3,197,387,2567,2627,2676,2775,2978,3291,3414]],[1709300957,[12,181,391,2837,2877,2881,2991,3124,3275,3281]],[1709300958,[8,199,379,2685,2792,2898,2983,3105,3220,3278]],[1709300959,[8,191,387,2876,2883,2894,2931,3006,3180,3184]],[1709300960,[93,288,506,2702,2782,2833,2884,2984,3210,3296]],[1709300961,[8,191,373,2700,2838,2881,2984,3007,3934,5774]],[1709300962,[9,186,393,2741,2783,2810,2905,3061,3177,3185]],[1709300963,[6,118,292,2884,2994,3264,3391,3469,3648,3762]],[1709300964,[7,184,391,2722,2793,2885,3071,3187,3393,3473]],[1709300965,[13,103,206,2694,2783,2958,3038,3177,3390,3698]],[1709300966,[6,224,474,2587,2657,2693,2755,2777,2931,3005]],[1709300967,[14,190,498,2936,2979,2993,3070,3185,3325,3473]],[1709300968,[83,187,399,2684,2703,2860,2979,3074,3394,3450]],[1709300969,[5,111,213,2741,2906,2986,3070,3107,3602,3810]],[1709300970,[11,196,393,2688,2764,2822,2905,3188,3736,4106]],[1709300971,[8,113,291,2980,3075,3111,3309,3602,4014,4090]],[1709300972,[85,193,393,2792,2925,2981,3009,3149,3359,3676]],[1709300973,[5,200,384,2876,2964,2990,3075,3188,3582,3582]],[1709300974,[16,195,304,2671,2719,2804,2898,3046,3218,3351]],[1709300975,[10,180,305,2561,2693,2867,2889,2984,3114,3183]],[1709300976,[6,195,413,2737,2780,2798,2897,3351,3482,3483]],[1709300977,[12,174,391,2977,3064,3152,3178,3240,3541,3885]],[1709300978,[11,193,397,3051,3087,3179,3284,3506,3692,3784]],[1709300979,[19,136,285,2884,2987,3100,3187,3296,3414,3476]],[1709300980,[17,108,244,2877,2895,3060,3162,3218,3832,5482]],[1709300981,[12,200,399,2797,2892,2976,3053,3242,3324,3389]],[1709300982,[18,141,387,2937,3014,3154,3178,3190,3335,3466]],[1709300983,[9,193,372,2822,2878,2964,3002,3278,3479,3699]],[1709300984,[26,184,271,2694,2804,2875,3080,3537,4399,5604]],[1709300985,[27,206,2339,2848,2998,3116,3274,3424,3666,3869]],[1709300986,[79,194,380,2806,2883,2989,3167,3650,4154,4705]],[1709300987,[13,287,694,2756,2895,3131,3324,3564,4151,4267]],[1709300988,[9,196,680,2312,2461,2481,2697,2870,2925,2977]],[1709300989,[85,286,892,2673,2693,2771,2871,2901,3035,3087]],[1709300990,[22,485,975,2574,2682,2739,2784,2889,3039,3113]],[1709300991,[7,250,586,2787,2875,2976,3075,3174,3209,3270]],[1709300992,[78,212,492,2770,2783,2906,3073,3287,3383,3412]],[1709300993,[18,200,2604,2991,2998,3074,3188,3287,3510,3570]],[1709300994,[4,193,380,3029,3173,3192,3381,3735,3990,4013]],[1709300995,[17,197,389,2877,3106,3189,3306,3395,4022,4305]],[1709300996,[10,201,339,2657,2683,2693,2789,3000,3219,3360]],[1709300997,[21,263,383,2704,2774,2783,2884,3000,3117,3175]],[1709300998,[96,419,2342,2679,2692,2718,2801,2904,2996,3093]],[1709300999,[96,300,647,2880,2993,3095,3169,3241,3678,3684]],[1709301000,[11,212,586,2792,2885,2988,3083,3375,3622,3693]],[1709301001,[16,186,406,2891,2989,3046,3091,3374,3416,3465]],[1709301002,[13,212,571,2964,2997,3088,3195,3368,3428,3466]],[1709301003,[9,203,502,2895,2970,2991,3040,3116,3361,3365]],[1709301004,[85,204,405,2977,3015,3181,3335,3533,4124,4268]],[1709301005,[22,197,487,2980,3008,3099,3278,3311,3714,3998]],[1709301006,[96,208,510,3004,3136,3185,3362,3524,3708,3791]],[1709301007,[14,201,499,2620,2700,2790,2893,3021,3332,3364]],[1709301008,[102,288,801,2841,2881,2949,3105,3283,3334,3410]],[1709301009,[17,202,2581,3082,3096,3222,3280,3667,3921,3978]],[1709301010,[18,194,382,2888,2939,3087,3378,3498,3824,3883]],[1709301011,[12,207,492,2993,3089,3168,3301,3468,3723,3976]],[1709301012,[16,206,406,2870,2985,3118,3287,3480,3613,3677]],[1709301013,[7,218,399,2895,3121,3285,3387,3641,3843,3971]],[1709301014,[25,224,487,3096,3183,3281,3375,3404,3533,3590]],[1709301015,[10,210,499,3187,3289,3477,3494,3691,3787,3796]],[1709301016,[22,329,492,2989,3101,3169,3190,3301,3424,3461]],[1709301017,[78,204,408,2985,3170,3199,3517,3799,4185,4188]],[1709301018,[13,202,375,3037,3108,3273,3447,3836,3880,3889]],[1709301019,[4,222,403,2792,2881,2992,3095,3241,4097,4578]],[1709301020,[88,205,400,2609,2815,3117,3275,3568,3680,3786]],[1709301021,[111,843,2375,2743,2769,2864,2944,3313,3716,3766]],[1709301022,[4,309,1184,2895,2986,3179,3307,3465,3679,3858]],[1709301023,[83,300,696,2665,2761,2783,2891,2977,3081,3083]],[1709301024,[101,404,798,2974,3064,3182,3194,3300,3807,4189]],[1709301025,[85,210,489,3084,3172,3189,3376,3611,3971,3978]],[1709301026,[7,208,383,2888,2983,3126,3483,3664,3860,3976]],[1709301027,[12,194,391,2788,2915,3176,3382,3477,3924,4174]],[1709301028,[85,352,810,2965,2984,3125,3184,3284,3385,3466]],[1709301029,[88,329,587,2900,3015,3097,3146,3251,3618,3674]],[1709301030,[81,380,609,3001,3104,3183,3286,3405,3646,3700]],[1709301031,[93,293,599,3177,3195,3405,3494,3823,4233,4369]],[1709301032,[25,195,383,3325,3468,3490,3669,3686,3771,3781]],[1709301033,[85,206,473,3198,3290,3477,3571,3681,4160,4297]],[1709301034,[5,292,497,2989,3180,3351,3571,3891,4060,4175]],[1709301035,[17,210,394,3077,3168,3189,3382,3525,4007,4080]],[1709301036,[18,210,477,3272,3372,3480,3684,3989,4111,4195]],[1709301037,[13,206,493,3069,3164,3549,4022,4338,4545,4690]],[1709301038,[99,295,798,2912,2984,3078,3184,3683,4209,4273]],[1709301039,[93,299,601,2789,2870,2880,2968,3093,3470,3561]],[1709301040,[110,502,1283,2985,3018,3093,3197,3348,3540,3572]],[1709301041,[96,423,1976,3183,3204,3273,3390,3598,3742,3799]],[1709301042,[21,282,603,3182,3199,3282,3370,3463,3756,3771]],[1709301043,[24,281,451,3395,3481,3670,3996,4169,4275,4306]],[1709301044,[70,196,404,3376,3476,3556,3700,3982,4259,4571]],[1709301045,[82,197,405,3576,3685,3861,3964,4094,4386,4696]],[1709301046,[86,198,392,3519,3782,3874,3892,4000,4155,4268]],[1709301047,[90,277,493,2739,2981,3109,3580,3739,3878,3881]],[1709301048,[7,196,309,3078,3177,3330,3418,3678,4039,4357]],[1709301049,[20,288,492,3053,3147,3238,3302,3428,3522,3561]],[1709301050,[104,499,820,3303,3400,3516,3655,3889,4035,4170]],[1709301051,[82,290,591,3389,3478,3571,3763,3870,4294,4361]],[1709301052,[90,288,501,3275,3330,3383,3570,3966,4051,4198]],[1709301053,[81,215,402,3083,3153,3268,3435,3819,4407,4608]],[1709301054,[24,288,498,2675,2891,3089,3109,3470,3614,3671]],[1709301055,[96,399,1083,3180,3345,3362,3470,3524,3781,3808]],[1709301056,[118,463,856,2819,2970,2998,3077,3089,3245,3292]],[1709301057,[91,476,804,2993,3014,3142,3192,3293,3597,3613]],[1709301058,[76,309,678,2979,3066,3110,3277,3443,4019,4279]],[1709301059,[100,389,2591,3137,3186,3375,3518,3685,3921,3991]],[1709301060,[15,298,728,3372,3394,3406,3489,3591,3833,3990]],[1709301061,[19,319,686,3159,3234,3385,3563,3683,3920,4054]],[1709301062,[10,387,689,2923,3031,3200,3387,3484,3627,3662]],[1709301063,[99,277,488,3400,3515,3592,3683,3792,4221,4263]],[1709301064,[14,196,388,3479,3515,3807,3880,4179,4237,4296]],[1709301065,[28,396,696,3205,3301,3467,3598,3692,3950,4002]],[1709301066,[12,278,487,3555,3605,3698,3843,3984,5084,6686]],[1709301067,[98,320,568,3384,3404,3480,3627,3688,3731,3802]],[1709301068,[18,188,404,3444,3487,3592,3762,3815,4295,4466]],[1709301069,[20,292,587,3487,3509,3584,3636,3842,4000,4097]],[1709301070,[93,298,510,3594,3804,3872,3937,4078,4384,4594]],[1709301071,[88,295,445,3569,3685,3696,3791,3963,4044,4087]],[1709301072,[93,223,498,3482,3696,3930,4086,4407,4617,4773]],[1709301073,[17,118,330,3407,3579,3607,3745,4048,4507,4877]],[1709301074,[19,281,392,880,3079,3402,3798,4006,5048,5292]],[1709301075,[73,285,497,3126,3201,3291,3399,3681,4587,5274]],[1709301076,[20,386,600,3296,3342,3513,3782,3991,4319,4508]],[1709301077,[13,391,538,3076,3279,3388,3477,3613,3833,3908]],[1709301078,[193,411,789,2586,2597,2687,2779,2986,3180,3281]],[1709301079,[18,417,678,2391,2563,2578,2639,2853,2963,2984]],[1709301080,[102,489,600,1517,1766,1854,1961,2077,2089,2091]],[1709301081,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([[1709300835,[25,25,0]],[1709300836,[1,1,0]],[1709300837,[25,25,0]],[1709300838,[1,1,0]],[1709300839,[71,57,14]],[1709300840,[3,3,0]],[1709300841,[6,6,0]],[1709300842,[9,9,0]],[1709300843,[11,11,0]],[1709300844,[13,13,0]],[1709300845,[18,18,0]],[1709300846,[19,19,0]],[1709300847,[24,24,0]],[1709300848,[26,26,0]],[1709300849,[27,27,0]],[1709300850,[32,32,0]],[1709300851,[34,34,0]],[1709300852,[37,37,0]],[1709300853,[39,39,0]],[1709300854,[43,43,0]],[1709300855,[44,44,0]],[1709300856,[48,48,0]],[1709300857,[50,50,0]],[1709300858,[54,54,0]],[1709300859,[57,57,0]],[1709300860,[60,60,0]],[1709300861,[61,61,0]],[1709300862,[65,65,0]],[1709300863,[67,67,0]],[1709300864,[70,70,0]],[1709300865,[73,73,0]],[1709300866,[77,77,0]],[1709300867,[80,80,0]],[1709300868,[81,81,0]],[1709300869,[84,84,0]],[1709300870,[87,87,0]],[1709300871,[91,91,0]],[1709300872,[92,92,0]],[1709300873,[96,96,0]],[1709300874,[98,98,0]],[1709300875,[101,101,0]],[1709300876,[106,106,0]],[1709300877,[106,106,0]],[1709300878,[110,110,0]],[1709300879,[114,114,0]],[1709300880,[115,115,0]],[1709300881,[118,118,0]],[1709300882,[121,121,0]],[1709300883,[124,124,0]],[1709300884,[126,126,0]],[1709300885,[129,129,0]],[1709300886,[133,133,0]],[1709300887,[134,134,0]],[1709300888,[138,138,0]],[1709300889,[141,141,0]],[1709300890,[143,143,0]],[1709300891,[146,146,0]],[1709300892,[149,149,0]],[1709300893,[152,152,0]],[1709300894,[155,155,0]],[1709300895,[157,157,0]],[1709300896,[160,160,0]],[1709300897,[164,164,0]],[1709300898,[165,165,0]],[1709300899,[170,170,0]],[1709300900,[172,172,0]],[1709300901,[174,174,0]],[1709300902,[176,176,0]],[1709300903,[181,181,0]],[1709300904,[183,183,0]],[1709300905,[185,185,0]],[1709300906,[189,189,0]],[1709300907,[191,191,0]],[1709300908,[194,194,0]],[1709300909,[196,196,0]],[1709300910,[200,200,0]],[1709300911,[202,202,0]],[1709300912,[206,205,1]],[1709300913,[208,121,87]],[1709300914,[211,82,129]],[1709300915,[213,74,139]],[1709300916,[217,80,137]],[1709300917,[220,65,155]],[1709300918,[222,62,160]],[1709300919,[224,79,145]],[1709300920,[228,75,153]],[1709300921,[230,61,169]],[1709300922,[234,82,152]],[1709300923,[235,80,155]],[1709300924,[239,71,168]],[1709300925,[242,78,164]],[1709300926,[244,80,164]],[1709300927,[248,80,168]],[1709300928,[251,75,176]],[1709300929,[252,73,179]],[1709300930,[256,74,182]],[1709300931,[259,81,178]],[1709300932,[262,71,191]],[1709300933,[265,76,189]],[1709300934,[266,72,194]],[1709300935,[270,76,194]],[1709300936,[272,76,196]],[1709300937,[275,81,194]],[1709300938,[279,68,211]],[1709300939,[281,76,205]],[1709300940,[284,73,211]],[1709300941,[286,79,207]],[1709300942,[290,79,211]],[1709300943,[291,78,213]],[1709300944,[296,76,220]],[1709300945,[298,70,228]],[1709300946,[300,71,229]],[1709300947,[304,66,238]],[1709300948,[306,81,225]],[1709300949,[310,74,236]],[1709300950,[313,78,235]],[1709300951,[314,77,237]],[1709300952,[318,73,245]],[1709300953,[320,78,242]],[1709300954,[323,82,241]],[1709300955,[326,60,266]],[1709300956,[330,93,237]],[1709300957,[331,75,256]],[1709300958,[334,67,267]],[1709300959,[338,57,281]],[1709300960,[340,79,261]],[1709300961,[340,78,262]],[1709300962,[340,79,261]],[1709300963,[340,65,275]],[1709300964,[340,80,260]],[1709300965,[340,76,264]],[1709300966,[340,62,278]],[1709300967,[340,75,265]],[1709300968,[340,81,259]],[1709300969,[340,67,273]],[1709300970,[340,72,268]],[1709300971,[340,80,260]],[1709300972,[340,64,276]],[1709300973,[340,83,257]],[1709300974,[340,69,271]],[1709300975,[340,81,259]],[1709300976,[340,63,277]],[1709300977,[340,69,271]],[1709300978,[340,77,263]],[1709300979,[340,66,274]],[1709300980,[340,76,264]],[1709300981,[340,64,276]],[1709300982,[340,75,265]],[1709300983,[340,68,272]],[1709300984,[340,67,273]],[1709300985,[340,70,270]],[1709300986,[340,69,271]],[1709300987,[340,58,282]],[1709300988,[340,71,269]],[1709300989,[340,60,280]],[1709300990,[340,65,275]],[1709300991,[340,72,268]],[1709300992,[340,69,271]],[1709300993,[340,69,271]],[1709300994,[340,68,272]],[1709300995,[340,70,270]],[1709300996,[340,74,266]],[1709300997,[340,64,276]],[1709300998,[340,54,286]],[1709300999,[340,70,270]],[1709301000,[340,73,267]],[1709301001,[340,63,277]],[1709301002,[340,63,277]],[1709301003,[340,75,265]],[1709301004,[340,76,264]],[1709301005,[340,57,283]],[1709301006,[340,73,267]],[1709301007,[340,56,284]],[1709301008,[340,63,277]],[1709301009,[340,71,269]],[1709301010,[340,68,272]],[1709301011,[340,63,277]],[1709301012,[340,66,274]],[1709301013,[340,69,271]],[1709301014,[340,58,282]],[1709301015,[340,61,279]],[1709301016,[340,66,274]],[1709301017,[340,79,261]],[1709301018,[340,63,277]],[1709301019,[340,69,271]],[1709301020,[340,53,287]],[1709301021,[340,55,285]],[1709301022,[340,64,276]],[1709301023,[340,52,288]],[1709301024,[340,62,278]],[1709301025,[340,77,263]],[1709301026,[340,67,273]],[1709301027,[340,62,278]],[1709301028,[340,51,289]],[1709301029,[340,66,274]],[1709301030,[340,57,283]],[1709301031,[340,71,269]],[1709301032,[340,69,271]],[1709301033,[340,68,272]],[1709301034,[340,62,278]],[1709301035,[340,70,270]],[1709301036,[340,71,269]],[1709301037,[340,49,291]],[1709301038,[340,72,268]],[1709301039,[340,51,289]],[1709301040,[340,46,294]],[1709301041,[340,58,282]],[1709301042,[340,72,268]],[1709301043,[340,64,276]],[1709301044,[340,63,277]],[1709301045,[340,63,277]],[1709301046,[340,61,279]],[1709301047,[340,70,270]],[1709301048,[340,71,269]],[1709301049,[340,57,283]],[1709301050,[340,53,287]],[1709301051,[340,72,268]],[1709301052,[340,69,271]],[1709301053,[340,68,272]],[1709301054,[340,61,279]],[1709301055,[340,55,285]],[1709301056,[340,48,292]],[1709301057,[340,65,275]],[1709301058,[340,67,273]],[1709301059,[340,59,281]],[1709301060,[340,52,288]],[1709301061,[340,54,286]],[1709301062,[340,68,272]],[1709301063,[340,65,275]],[1709301064,[340,61,279]],[1709301065,[340,54,286]],[1709301066,[340,65,275]],[1709301067,[340,65,275]],[1709301068,[340,62,278]],[1709301069,[340,47,293]],[1709301070,[340,66,274]],[1709301071,[340,64,276]],[1709301072,[340,58,282]],[1709301073,[340,66,274]],[1709301074,[340,61,279]],[1709301075,[340,59,281]],[1709301076,[340,58,282]],[1709301077,[340,56,284]],[1709301078,[340,50,290]],[1709301079,[340,64,276]],[1709301080,[163,22,141]],[1709301081,[0,0,0]]]);
var requestsChart = new Highcharts.StockChart({
chart: {
renderTo: 'requests',
zoomType: 'x',
marginBottom: 60
},
credits: { enabled: false },
legend: {
enabled: true,
floating: true,
y: -65,
borderWidth: 0,
itemStyle: { fontWeight: "normal" },
symbolRadius: 0
},
title: { text: 'A title to let highcharts reserve the place for the title set later' },
navigator: {
maskInside: false
},
rangeSelector: {
buttonSpacing: 0,
buttonTheme: {