-
Notifications
You must be signed in to change notification settings - Fork 923
/
Copy pathindex.html
1215 lines (1145 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-11 01:03:32 GMT</span>
</span>
<span class="simulation-information-item">
<span class="simulation-information-label">Duration: </span>
<span>4m 14s </span>
</span>
<span class="simulation-tooltip simulation-information-item description" title="Description" data-content="Rinha de Backend - 2024/Q1: Crébito - gabriel-accetta">
<span class="simulation-information-label">Description: </span>
<span>Rinha de Backend - 2024/Q1: Crébito - gabriel-accetta</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">9393</td>
<td class="value error-col-3 total ko">94.052 %</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">396</td>
<td class="value error-col-3 total ko">3.965 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">j.u.NoSuchElementException: No attribute named 'limite' is defined<span class="value" style="display:none">2</span></td>
<td class="value error-col-2 total ko">192</td>
<td class="value error-col-3 total ko">1.922 %</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">5</td>
<td class="value error-col-3 total ko">0.05 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">jmesPath(saldo.total).find.is(-25), but actually found -4<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.01 %</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: [
[1710119013000,0],[1710119014000,0],[1710119015000,0],[1710119016000,0],[1710119017000,1],[1710119018000,2],[1710119019000,2],[1710119020000,4],[1710119021000,4],[1710119022000,5],[1710119023000,6],[1710119024000,7],[1710119025000,8],[1710119026000,8],[1710119027000,11],[1710119028000,10],[1710119029000,12],[1710119030000,12],[1710119031000,14],[1710119032000,14],[1710119033000,15],[1710119034000,16],[1710119035000,17],[1710119036000,17],[1710119037000,19],[1710119038000,20],[1710119039000,20],[1710119040000,22],[1710119041000,22],[1710119042000,23],[1710119043000,25],[1710119044000,25],[1710119045000,26],[1710119046000,26],[1710119047000,28],[1710119048000,29],[1710119049000,30],[1710119050000,30],[1710119051000,32],[1710119052000,32],[1710119053000,33],[1710119054000,34],[1710119055000,35],[1710119056000,36],[1710119057000,37],[1710119058000,38],[1710119059000,39],[1710119060000,39],[1710119061000,41],[1710119062000,41],[1710119063000,43],[1710119064000,43],[1710119065000,44],[1710119066000,45],[1710119067000,46],[1710119068000,47],[1710119069000,48],[1710119070000,50],[1710119071000,50],[1710119072000,50],[1710119073000,52],[1710119074000,52],[1710119075000,53],[1710119076000,54],[1710119077000,56],[1710119078000,55],[1710119079000,57],[1710119080000,58],[1710119081000,59],[1710119082000,59],[1710119083000,61],[1710119084000,61],[1710119085000,63],[1710119086000,63],[1710119087000,64],[1710119088000,65],[1710119089000,66],[1710119090000,67],[1710119091000,69],[1710119092000,69],[1710119093000,71],[1710119094000,71],[1710119095000,73],[1710119096000,73],[1710119097000,74],[1710119098000,75],[1710119099000,76],[1710119100000,77],[1710119101000,78],[1710119102000,79],[1710119103000,80],[1710119104000,80],[1710119105000,82],[1710119106000,82],[1710119107000,83],[1710119108000,84],[1710119109000,86],[1710119110000,86],[1710119111000,87],[1710119112000,87],[1710119113000,89],[1710119114000,90],[1710119115000,90],[1710119116000,92],[1710119117000,92],[1710119118000,93],[1710119119000,94],[1710119120000,94],[1710119121000,95],[1710119122000,97],[1710119123000,97],[1710119124000,98],[1710119125000,100],[1710119126000,100],[1710119127000,101],[1710119128000,101],[1710119129000,103],[1710119130000,104],[1710119131000,105],[1710119132000,106],[1710119133000,106],[1710119134000,108],[1710119135000,107],[1710119136000,110],[1710119137000,110],[1710119138000,112],[1710119139000,111],[1710119140000,111],[1710119141000,110],[1710119142000,111],[1710119143000,110],[1710119144000,111],[1710119145000,110],[1710119146000,112],[1710119147000,110],[1710119148000,111],[1710119149000,110],[1710119150000,111],[1710119151000,110],[1710119152000,111],[1710119153000,111],[1710119154000,112],[1710119155000,110],[1710119156000,110],[1710119157000,110],[1710119158000,110],[1710119159000,111],[1710119160000,110],[1710119161000,111],[1710119162000,110],[1710119163000,111],[1710119164000,121],[1710119165000,132],[1710119166000,137],[1710119167000,160],[1710119168000,195],[1710119169000,221],[1710119170000,262],[1710119171000,305],[1710119172000,345],[1710119173000,393],[1710119174000,435],[1710119175000,475],[1710119176000,511],[1710119177000,550],[1710119178000,591],[1710119179000,635],[1710119180000,669],[1710119181000,701],[1710119182000,740],[1710119183000,775],[1710119184000,790],[1710119185000,801],[1710119186000,795],[1710119187000,798],[1710119188000,796],[1710119189000,798],[1710119190000,788],[1710119191000,773],[1710119192000,770],[1710119193000,767],[1710119194000,764],[1710119195000,769],[1710119196000,777],[1710119197000,771],[1710119198000,766],[1710119199000,767],[1710119200000,766],[1710119201000,773],[1710119202000,776],[1710119203000,781],[1710119204000,783],[1710119205000,787],[1710119206000,781],[1710119207000,779],[1710119208000,781],[1710119209000,773],[1710119210000,768],[1710119211000,769],[1710119212000,764],[1710119213000,756],[1710119214000,736],[1710119215000,734],[1710119216000,740],[1710119217000,743],[1710119218000,749],[1710119219000,754],[1710119220000,760],[1710119221000,757],[1710119222000,761],[1710119223000,765],[1710119224000,787],[1710119225000,790],[1710119226000,795],[1710119227000,802],[1710119228000,800],[1710119229000,794],[1710119230000,797],[1710119231000,790],[1710119232000,782],[1710119233000,775],[1710119234000,767],[1710119235000,761],[1710119236000,752],[1710119237000,749],[1710119238000,735],[1710119239000,734],[1710119240000,726],[1710119241000,728],[1710119242000,725],[1710119243000,721],[1710119244000,746],[1710119245000,752],[1710119246000,763],[1710119247000,768],[1710119248000,778],[1710119249000,775],[1710119250000,779],[1710119251000,791],[1710119252000,793],[1710119253000,806],[1710119254000,809],[1710119255000,802],[1710119256000,792],[1710119257000,790],[1710119258000,681],[1710119259000,610],[1710119260000,546],[1710119261000,488],[1710119262000,425],[1710119263000,344],[1710119264000,255],[1710119265000,183],[1710119266000,113],[1710119267000,35]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#68b65c',
name: 'débitos',
data: [
[1710119013000,0],[1710119014000,0],[1710119015000,0],[1710119016000,0],[1710119017000,1],[1710119018000,2],[1710119019000,4],[1710119020000,6],[1710119021000,7],[1710119022000,9],[1710119023000,11],[1710119024000,13],[1710119025000,15],[1710119026000,16],[1710119027000,19],[1710119028000,20],[1710119029000,22],[1710119030000,24],[1710119031000,25],[1710119032000,28],[1710119033000,29],[1710119034000,31],[1710119035000,33],[1710119036000,35],[1710119037000,37],[1710119038000,38],[1710119039000,40],[1710119040000,42],[1710119041000,44],[1710119042000,46],[1710119043000,47],[1710119044000,50],[1710119045000,51],[1710119046000,53],[1710119047000,55],[1710119048000,56],[1710119049000,59],[1710119050000,60],[1710119051000,62],[1710119052000,64],[1710119053000,67],[1710119054000,69],[1710119055000,69],[1710119056000,72],[1710119057000,75],[1710119058000,75],[1710119059000,78],[1710119060000,79],[1710119061000,81],[1710119062000,83],[1710119063000,84],[1710119064000,86],[1710119065000,89],[1710119066000,90],[1710119067000,93],[1710119068000,94],[1710119069000,96],[1710119070000,101],[1710119071000,98],[1710119072000,101],[1710119073000,102],[1710119074000,104],[1710119075000,106],[1710119076000,108],[1710119077000,110],[1710119078000,111],[1710119079000,113],[1710119080000,116],[1710119081000,117],[1710119082000,119],[1710119083000,120],[1710119084000,123],[1710119085000,124],[1710119086000,126],[1710119087000,128],[1710119088000,129],[1710119089000,132],[1710119090000,134],[1710119091000,136],[1710119092000,137],[1710119093000,140],[1710119094000,142],[1710119095000,143],[1710119096000,144],[1710119097000,148],[1710119098000,148],[1710119099000,151],[1710119100000,153],[1710119101000,153],[1710119102000,156],[1710119103000,159],[1710119104000,161],[1710119105000,162],[1710119106000,163],[1710119107000,166],[1710119108000,167],[1710119109000,168],[1710119110000,171],[1710119111000,172],[1710119112000,175],[1710119113000,175],[1710119114000,178],[1710119115000,180],[1710119116000,182],[1710119117000,183],[1710119118000,185],[1710119119000,186],[1710119120000,188],[1710119121000,191],[1710119122000,193],[1710119123000,194],[1710119124000,197],[1710119125000,198],[1710119126000,201],[1710119127000,202],[1710119128000,203],[1710119129000,206],[1710119130000,208],[1710119131000,210],[1710119132000,213],[1710119133000,212],[1710119134000,216],[1710119135000,216],[1710119136000,219],[1710119137000,221],[1710119138000,222],[1710119139000,222],[1710119140000,222],[1710119141000,221],[1710119142000,222],[1710119143000,221],[1710119144000,222],[1710119145000,221],[1710119146000,223],[1710119147000,221],[1710119148000,221],[1710119149000,221],[1710119150000,222],[1710119151000,221],[1710119152000,220],[1710119153000,221],[1710119154000,222],[1710119155000,221],[1710119156000,220],[1710119157000,221],[1710119158000,221],[1710119159000,221],[1710119160000,221],[1710119161000,221],[1710119162000,221],[1710119163000,221],[1710119164000,241],[1710119165000,260],[1710119166000,276],[1710119167000,321],[1710119168000,384],[1710119169000,440],[1710119170000,513],[1710119171000,605],[1710119172000,672],[1710119173000,753],[1710119174000,838],[1710119175000,913],[1710119176000,981],[1710119177000,1054],[1710119178000,1114],[1710119179000,1196],[1710119180000,1273],[1710119181000,1330],[1710119182000,1393],[1710119183000,1454],[1710119184000,1500],[1710119185000,1529],[1710119186000,1556],[1710119187000,1559],[1710119188000,1566],[1710119189000,1566],[1710119190000,1574],[1710119191000,1593],[1710119192000,1586],[1710119193000,1594],[1710119194000,1603],[1710119195000,1591],[1710119196000,1589],[1710119197000,1592],[1710119198000,1606],[1710119199000,1599],[1710119200000,1602],[1710119201000,1590],[1710119202000,1595],[1710119203000,1587],[1710119204000,1590],[1710119205000,1581],[1710119206000,1590],[1710119207000,1591],[1710119208000,1588],[1710119209000,1594],[1710119210000,1601],[1710119211000,1600],[1710119212000,1603],[1710119213000,1616],[1710119214000,1628],[1710119215000,1635],[1710119216000,1624],[1710119217000,1633],[1710119218000,1618],[1710119219000,1608],[1710119220000,1608],[1710119221000,1612],[1710119222000,1605],[1710119223000,1603],[1710119224000,1583],[1710119225000,1584],[1710119226000,1578],[1710119227000,1570],[1710119228000,1566],[1710119229000,1570],[1710119230000,1566],[1710119231000,1571],[1710119232000,1578],[1710119233000,1590],[1710119234000,1593],[1710119235000,1600],[1710119236000,1610],[1710119237000,1615],[1710119238000,1627],[1710119239000,1634],[1710119240000,1639],[1710119241000,1636],[1710119242000,1640],[1710119243000,1638],[1710119244000,1626],[1710119245000,1618],[1710119246000,1607],[1710119247000,1606],[1710119248000,1590],[1710119249000,1595],[1710119250000,1585],[1710119251000,1577],[1710119252000,1576],[1710119253000,1563],[1710119254000,1563],[1710119255000,1573],[1710119256000,1578],[1710119257000,1577],[1710119258000,1355],[1710119259000,1207],[1710119260000,1049],[1710119261000,927],[1710119262000,792],[1710119263000,640],[1710119264000,490],[1710119265000,353],[1710119266000,215],[1710119267000,69]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#f15b4f',
name: 'extratos',
data: [
[1710119013000,0],[1710119014000,0],[1710119015000,0],[1710119016000,0],[1710119017000,1],[1710119018000,2],[1710119019000,1],[1710119020000,1],[1710119021000,1],[1710119022000,1],[1710119023000,2],[1710119024000,1],[1710119025000,2],[1710119026000,2],[1710119027000,1],[1710119028000,2],[1710119029000,2],[1710119030000,2],[1710119031000,2],[1710119032000,2],[1710119033000,2],[1710119034000,2],[1710119035000,3],[1710119036000,2],[1710119037000,3],[1710119038000,2],[1710119039000,3],[1710119040000,2],[1710119041000,3],[1710119042000,3],[1710119043000,3],[1710119044000,3],[1710119045000,3],[1710119046000,3],[1710119047000,3],[1710119048000,4],[1710119049000,3],[1710119050000,3],[1710119051000,4],[1710119052000,3],[1710119053000,4],[1710119054000,4],[1710119055000,4],[1710119056000,4],[1710119057000,4],[1710119058000,4],[1710119059000,4],[1710119060000,4],[1710119061000,4],[1710119062000,4],[1710119063000,5],[1710119064000,4],[1710119065000,5],[1710119066000,5],[1710119067000,4],[1710119068000,5],[1710119069000,5],[1710119070000,5],[1710119071000,5],[1710119072000,5],[1710119073000,5],[1710119074000,5],[1710119075000,6],[1710119076000,5],[1710119077000,6],[1710119078000,5],[1710119079000,6],[1710119080000,5],[1710119081000,6],[1710119082000,6],[1710119083000,6],[1710119084000,6],[1710119085000,6],[1710119086000,6],[1710119087000,6],[1710119088000,7],[1710119089000,6],[1710119090000,6],[1710119091000,7],[1710119092000,6],[1710119093000,7],[1710119094000,7],[1710119095000,7],[1710119096000,7],[1710119097000,7],[1710119098000,7],[1710119099000,7],[1710119100000,7],[1710119101000,7],[1710119102000,7],[1710119103000,8],[1710119104000,7],[1710119105000,8],[1710119106000,8],[1710119107000,7],[1710119108000,8],[1710119109000,8],[1710119110000,8],[1710119111000,8],[1710119112000,8],[1710119113000,8],[1710119114000,8],[1710119115000,9],[1710119116000,8],[1710119117000,9],[1710119118000,8],[1710119119000,9],[1710119120000,8],[1710119121000,9],[1710119122000,9],[1710119123000,9],[1710119124000,9],[1710119125000,9],[1710119126000,9],[1710119127000,9],[1710119128000,10],[1710119129000,9],[1710119130000,9],[1710119131000,10],[1710119132000,9],[1710119133000,10],[1710119134000,10],[1710119135000,10],[1710119136000,10],[1710119137000,10],[1710119138000,10],[1710119139000,10],[1710119140000,10],[1710119141000,10],[1710119142000,10],[1710119143000,10],[1710119144000,10],[1710119145000,10],[1710119146000,10],[1710119147000,10],[1710119148000,10],[1710119149000,10],[1710119150000,10],[1710119151000,10],[1710119152000,10],[1710119153000,10],[1710119154000,10],[1710119155000,10],[1710119156000,10],[1710119157000,10],[1710119158000,10],[1710119159000,10],[1710119160000,10],[1710119161000,10],[1710119162000,10],[1710119163000,10],[1710119164000,11],[1710119165000,11],[1710119166000,11],[1710119167000,13],[1710119168000,14],[1710119169000,15],[1710119170000,18],[1710119171000,20],[1710119172000,23],[1710119173000,25],[1710119174000,26],[1710119175000,28],[1710119176000,30],[1710119177000,36],[1710119178000,32],[1710119179000,35],[1710119180000,38],[1710119181000,41],[1710119182000,42],[1710119183000,44],[1710119184000,37],[1710119185000,33],[1710119186000,25],[1710119187000,22],[1710119188000,20],[1710119189000,19],[1710119190000,19],[1710119191000,18],[1710119192000,19],[1710119193000,18],[1710119194000,15],[1710119195000,15],[1710119196000,14],[1710119197000,14],[1710119198000,13],[1710119199000,13],[1710119200000,12],[1710119201000,15],[1710119202000,13],[1710119203000,13],[1710119204000,13],[1710119205000,12],[1710119206000,10],[1710119207000,10],[1710119208000,10],[1710119209000,10],[1710119210000,11],[1710119211000,11],[1710119212000,11],[1710119213000,11],[1710119214000,12],[1710119215000,12],[1710119216000,12],[1710119217000,12],[1710119218000,12],[1710119219000,14],[1710119220000,12],[1710119221000,13],[1710119222000,13],[1710119223000,13],[1710119224000,11],[1710119225000,11],[1710119226000,11],[1710119227000,11],[1710119228000,11],[1710119229000,16],[1710119230000,16],[1710119231000,16],[1710119232000,17],[1710119233000,17],[1710119234000,17],[1710119235000,15],[1710119236000,16],[1710119237000,15],[1710119238000,15],[1710119239000,14],[1710119240000,15],[1710119241000,14],[1710119242000,13],[1710119243000,13],[1710119244000,11],[1710119245000,10],[1710119246000,10],[1710119247000,10],[1710119248000,10],[1710119249000,11],[1710119250000,11],[1710119251000,11],[1710119252000,11],[1710119253000,11],[1710119254000,10],[1710119255000,10],[1710119256000,10],[1710119257000,9],[1710119258000,0],[1710119259000,0],[1710119260000,0],[1710119261000,0],[1710119262000,0],[1710119263000,0],[1710119264000,0],[1710119265000,0],[1710119266000,0],[1710119267000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FFDD00',
name: 'validações',
data: [
[1710119013000,0],[1710119014000,0],[1710119015000,0],[1710119016000,5],[1710119017000,5],[1710119018000,0],[1710119019000,0],[1710119020000,0],[1710119021000,0],[1710119022000,0],[1710119023000,0],[1710119024000,0],[1710119025000,0],[1710119026000,0],[1710119027000,0],[1710119028000,0],[1710119029000,0],[1710119030000,0],[1710119031000,0],[1710119032000,0],[1710119033000,0],[1710119034000,0],[1710119035000,0],[1710119036000,0],[1710119037000,0],[1710119038000,0],[1710119039000,0],[1710119040000,0],[1710119041000,0],[1710119042000,0],[1710119043000,0],[1710119044000,0],[1710119045000,0],[1710119046000,0],[1710119047000,0],[1710119048000,0],[1710119049000,0],[1710119050000,0],[1710119051000,0],[1710119052000,0],[1710119053000,0],[1710119054000,0],[1710119055000,0],[1710119056000,0],[1710119057000,0],[1710119058000,0],[1710119059000,0],[1710119060000,0],[1710119061000,0],[1710119062000,0],[1710119063000,0],[1710119064000,0],[1710119065000,0],[1710119066000,0],[1710119067000,0],[1710119068000,0],[1710119069000,0],[1710119070000,0],[1710119071000,0],[1710119072000,0],[1710119073000,0],[1710119074000,0],[1710119075000,0],[1710119076000,0],[1710119077000,0],[1710119078000,0],[1710119079000,0],[1710119080000,0],[1710119081000,0],[1710119082000,0],[1710119083000,0],[1710119084000,0],[1710119085000,0],[1710119086000,0],[1710119087000,0],[1710119088000,0],[1710119089000,0],[1710119090000,0],[1710119091000,0],[1710119092000,0],[1710119093000,0],[1710119094000,0],[1710119095000,0],[1710119096000,0],[1710119097000,0],[1710119098000,0],[1710119099000,0],[1710119100000,0],[1710119101000,0],[1710119102000,0],[1710119103000,0],[1710119104000,0],[1710119105000,0],[1710119106000,0],[1710119107000,0],[1710119108000,0],[1710119109000,0],[1710119110000,0],[1710119111000,0],[1710119112000,0],[1710119113000,0],[1710119114000,0],[1710119115000,0],[1710119116000,0],[1710119117000,0],[1710119118000,0],[1710119119000,0],[1710119120000,0],[1710119121000,0],[1710119122000,0],[1710119123000,0],[1710119124000,0],[1710119125000,0],[1710119126000,0],[1710119127000,0],[1710119128000,0],[1710119129000,0],[1710119130000,0],[1710119131000,0],[1710119132000,0],[1710119133000,0],[1710119134000,0],[1710119135000,0],[1710119136000,0],[1710119137000,0],[1710119138000,0],[1710119139000,0],[1710119140000,0],[1710119141000,0],[1710119142000,0],[1710119143000,0],[1710119144000,0],[1710119145000,0],[1710119146000,0],[1710119147000,0],[1710119148000,0],[1710119149000,0],[1710119150000,0],[1710119151000,0],[1710119152000,0],[1710119153000,0],[1710119154000,0],[1710119155000,0],[1710119156000,0],[1710119157000,0],[1710119158000,0],[1710119159000,0],[1710119160000,0],[1710119161000,0],[1710119162000,0],[1710119163000,0],[1710119164000,0],[1710119165000,0],[1710119166000,0],[1710119167000,0],[1710119168000,0],[1710119169000,0],[1710119170000,0],[1710119171000,0],[1710119172000,0],[1710119173000,0],[1710119174000,0],[1710119175000,0],[1710119176000,0],[1710119177000,0],[1710119178000,0],[1710119179000,0],[1710119180000,0],[1710119181000,0],[1710119182000,0],[1710119183000,0],[1710119184000,0],[1710119185000,0],[1710119186000,0],[1710119187000,0],[1710119188000,0],[1710119189000,0],[1710119190000,0],[1710119191000,0],[1710119192000,0],[1710119193000,0],[1710119194000,0],[1710119195000,0],[1710119196000,0],[1710119197000,0],[1710119198000,0],[1710119199000,0],[1710119200000,0],[1710119201000,0],[1710119202000,0],[1710119203000,0],[1710119204000,0],[1710119205000,0],[1710119206000,0],[1710119207000,0],[1710119208000,0],[1710119209000,0],[1710119210000,0],[1710119211000,0],[1710119212000,0],[1710119213000,0],[1710119214000,0],[1710119215000,0],[1710119216000,0],[1710119217000,0],[1710119218000,0],[1710119219000,0],[1710119220000,0],[1710119221000,0],[1710119222000,0],[1710119223000,0],[1710119224000,0],[1710119225000,0],[1710119226000,0],[1710119227000,0],[1710119228000,0],[1710119229000,0],[1710119230000,0],[1710119231000,0],[1710119232000,0],[1710119233000,0],[1710119234000,0],[1710119235000,0],[1710119236000,0],[1710119237000,0],[1710119238000,0],[1710119239000,0],[1710119240000,0],[1710119241000,0],[1710119242000,0],[1710119243000,0],[1710119244000,0],[1710119245000,0],[1710119246000,0],[1710119247000,0],[1710119248000,0],[1710119249000,0],[1710119250000,0],[1710119251000,0],[1710119252000,0],[1710119253000,0],[1710119254000,0],[1710119255000,0],[1710119256000,0],[1710119257000,0],[1710119258000,0],[1710119259000,0],[1710119260000,0],[1710119261000,0],[1710119262000,0],[1710119263000,0],[1710119264000,0],[1710119265000,0],[1710119266000,0],[1710119267000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00D5FF',
name: 'validação HTTP 404',
data: [
[1710119013000,0],[1710119014000,0],[1710119015000,0],[1710119016000,1],[1710119017000,0],[1710119018000,0],[1710119019000,0],[1710119020000,0],[1710119021000,0],[1710119022000,0],[1710119023000,0],[1710119024000,0],[1710119025000,0],[1710119026000,0],[1710119027000,0],[1710119028000,0],[1710119029000,0],[1710119030000,0],[1710119031000,0],[1710119032000,0],[1710119033000,0],[1710119034000,0],[1710119035000,0],[1710119036000,0],[1710119037000,0],[1710119038000,0],[1710119039000,0],[1710119040000,0],[1710119041000,0],[1710119042000,0],[1710119043000,0],[1710119044000,0],[1710119045000,0],[1710119046000,0],[1710119047000,0],[1710119048000,0],[1710119049000,0],[1710119050000,0],[1710119051000,0],[1710119052000,0],[1710119053000,0],[1710119054000,0],[1710119055000,0],[1710119056000,0],[1710119057000,0],[1710119058000,0],[1710119059000,0],[1710119060000,0],[1710119061000,0],[1710119062000,0],[1710119063000,0],[1710119064000,0],[1710119065000,0],[1710119066000,0],[1710119067000,0],[1710119068000,0],[1710119069000,0],[1710119070000,0],[1710119071000,0],[1710119072000,0],[1710119073000,0],[1710119074000,0],[1710119075000,0],[1710119076000,0],[1710119077000,0],[1710119078000,0],[1710119079000,0],[1710119080000,0],[1710119081000,0],[1710119082000,0],[1710119083000,0],[1710119084000,0],[1710119085000,0],[1710119086000,0],[1710119087000,0],[1710119088000,0],[1710119089000,0],[1710119090000,0],[1710119091000,0],[1710119092000,0],[1710119093000,0],[1710119094000,0],[1710119095000,0],[1710119096000,0],[1710119097000,0],[1710119098000,0],[1710119099000,0],[1710119100000,0],[1710119101000,0],[1710119102000,0],[1710119103000,0],[1710119104000,0],[1710119105000,0],[1710119106000,0],[1710119107000,0],[1710119108000,0],[1710119109000,0],[1710119110000,0],[1710119111000,0],[1710119112000,0],[1710119113000,0],[1710119114000,0],[1710119115000,0],[1710119116000,0],[1710119117000,0],[1710119118000,0],[1710119119000,0],[1710119120000,0],[1710119121000,0],[1710119122000,0],[1710119123000,0],[1710119124000,0],[1710119125000,0],[1710119126000,0],[1710119127000,0],[1710119128000,0],[1710119129000,0],[1710119130000,0],[1710119131000,0],[1710119132000,0],[1710119133000,0],[1710119134000,0],[1710119135000,0],[1710119136000,0],[1710119137000,0],[1710119138000,0],[1710119139000,0],[1710119140000,0],[1710119141000,0],[1710119142000,0],[1710119143000,0],[1710119144000,0],[1710119145000,0],[1710119146000,0],[1710119147000,0],[1710119148000,0],[1710119149000,0],[1710119150000,0],[1710119151000,0],[1710119152000,0],[1710119153000,0],[1710119154000,0],[1710119155000,0],[1710119156000,0],[1710119157000,0],[1710119158000,0],[1710119159000,0],[1710119160000,0],[1710119161000,0],[1710119162000,0],[1710119163000,0],[1710119164000,0],[1710119165000,0],[1710119166000,0],[1710119167000,0],[1710119168000,0],[1710119169000,0],[1710119170000,0],[1710119171000,0],[1710119172000,0],[1710119173000,0],[1710119174000,0],[1710119175000,0],[1710119176000,0],[1710119177000,0],[1710119178000,0],[1710119179000,0],[1710119180000,0],[1710119181000,0],[1710119182000,0],[1710119183000,0],[1710119184000,0],[1710119185000,0],[1710119186000,0],[1710119187000,0],[1710119188000,0],[1710119189000,0],[1710119190000,0],[1710119191000,0],[1710119192000,0],[1710119193000,0],[1710119194000,0],[1710119195000,0],[1710119196000,0],[1710119197000,0],[1710119198000,0],[1710119199000,0],[1710119200000,0],[1710119201000,0],[1710119202000,0],[1710119203000,0],[1710119204000,0],[1710119205000,0],[1710119206000,0],[1710119207000,0],[1710119208000,0],[1710119209000,0],[1710119210000,0],[1710119211000,0],[1710119212000,0],[1710119213000,0],[1710119214000,0],[1710119215000,0],[1710119216000,0],[1710119217000,0],[1710119218000,0],[1710119219000,0],[1710119220000,0],[1710119221000,0],[1710119222000,0],[1710119223000,0],[1710119224000,0],[1710119225000,0],[1710119226000,0],[1710119227000,0],[1710119228000,0],[1710119229000,0],[1710119230000,0],[1710119231000,0],[1710119232000,0],[1710119233000,0],[1710119234000,0],[1710119235000,0],[1710119236000,0],[1710119237000,0],[1710119238000,0],[1710119239000,0],[1710119240000,0],[1710119241000,0],[1710119242000,0],[1710119243000,0],[1710119244000,0],[1710119245000,0],[1710119246000,0],[1710119247000,0],[1710119248000,0],[1710119249000,0],[1710119250000,0],[1710119251000,0],[1710119252000,0],[1710119253000,0],[1710119254000,0],[1710119255000,0],[1710119256000,0],[1710119257000,0],[1710119258000,0],[1710119259000,0],[1710119260000,0],[1710119261000,0],[1710119262000,0],[1710119263000,0],[1710119264000,0],[1710119265000,0],[1710119266000,0],[1710119267000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00FF00',
name: 'validação concorrência saldo - 0',
data: [
[1710119013000,0],[1710119014000,0],[1710119015000,1],[1710119016000,0],[1710119017000,0],[1710119018000,0],[1710119019000,0],[1710119020000,0],[1710119021000,0],[1710119022000,0],[1710119023000,0],[1710119024000,0],[1710119025000,0],[1710119026000,0],[1710119027000,0],[1710119028000,0],[1710119029000,0],[1710119030000,0],[1710119031000,0],[1710119032000,0],[1710119033000,0],[1710119034000,0],[1710119035000,0],[1710119036000,0],[1710119037000,0],[1710119038000,0],[1710119039000,0],[1710119040000,0],[1710119041000,0],[1710119042000,0],[1710119043000,0],[1710119044000,0],[1710119045000,0],[1710119046000,0],[1710119047000,0],[1710119048000,0],[1710119049000,0],[1710119050000,0],[1710119051000,0],[1710119052000,0],[1710119053000,0],[1710119054000,0],[1710119055000,0],[1710119056000,0],[1710119057000,0],[1710119058000,0],[1710119059000,0],[1710119060000,0],[1710119061000,0],[1710119062000,0],[1710119063000,0],[1710119064000,0],[1710119065000,0],[1710119066000,0],[1710119067000,0],[1710119068000,0],[1710119069000,0],[1710119070000,0],[1710119071000,0],[1710119072000,0],[1710119073000,0],[1710119074000,0],[1710119075000,0],[1710119076000,0],[1710119077000,0],[1710119078000,0],[1710119079000,0],[1710119080000,0],[1710119081000,0],[1710119082000,0],[1710119083000,0],[1710119084000,0],[1710119085000,0],[1710119086000,0],[1710119087000,0],[1710119088000,0],[1710119089000,0],[1710119090000,0],[1710119091000,0],[1710119092000,0],[1710119093000,0],[1710119094000,0],[1710119095000,0],[1710119096000,0],[1710119097000,0],[1710119098000,0],[1710119099000,0],[1710119100000,0],[1710119101000,0],[1710119102000,0],[1710119103000,0],[1710119104000,0],[1710119105000,0],[1710119106000,0],[1710119107000,0],[1710119108000,0],[1710119109000,0],[1710119110000,0],[1710119111000,0],[1710119112000,0],[1710119113000,0],[1710119114000,0],[1710119115000,0],[1710119116000,0],[1710119117000,0],[1710119118000,0],[1710119119000,0],[1710119120000,0],[1710119121000,0],[1710119122000,0],[1710119123000,0],[1710119124000,0],[1710119125000,0],[1710119126000,0],[1710119127000,0],[1710119128000,0],[1710119129000,0],[1710119130000,0],[1710119131000,0],[1710119132000,0],[1710119133000,0],[1710119134000,0],[1710119135000,0],[1710119136000,0],[1710119137000,0],[1710119138000,0],[1710119139000,0],[1710119140000,0],[1710119141000,0],[1710119142000,0],[1710119143000,0],[1710119144000,0],[1710119145000,0],[1710119146000,0],[1710119147000,0],[1710119148000,0],[1710119149000,0],[1710119150000,0],[1710119151000,0],[1710119152000,0],[1710119153000,0],[1710119154000,0],[1710119155000,0],[1710119156000,0],[1710119157000,0],[1710119158000,0],[1710119159000,0],[1710119160000,0],[1710119161000,0],[1710119162000,0],[1710119163000,0],[1710119164000,0],[1710119165000,0],[1710119166000,0],[1710119167000,0],[1710119168000,0],[1710119169000,0],[1710119170000,0],[1710119171000,0],[1710119172000,0],[1710119173000,0],[1710119174000,0],[1710119175000,0],[1710119176000,0],[1710119177000,0],[1710119178000,0],[1710119179000,0],[1710119180000,0],[1710119181000,0],[1710119182000,0],[1710119183000,0],[1710119184000,0],[1710119185000,0],[1710119186000,0],[1710119187000,0],[1710119188000,0],[1710119189000,0],[1710119190000,0],[1710119191000,0],[1710119192000,0],[1710119193000,0],[1710119194000,0],[1710119195000,0],[1710119196000,0],[1710119197000,0],[1710119198000,0],[1710119199000,0],[1710119200000,0],[1710119201000,0],[1710119202000,0],[1710119203000,0],[1710119204000,0],[1710119205000,0],[1710119206000,0],[1710119207000,0],[1710119208000,0],[1710119209000,0],[1710119210000,0],[1710119211000,0],[1710119212000,0],[1710119213000,0],[1710119214000,0],[1710119215000,0],[1710119216000,0],[1710119217000,0],[1710119218000,0],[1710119219000,0],[1710119220000,0],[1710119221000,0],[1710119222000,0],[1710119223000,0],[1710119224000,0],[1710119225000,0],[1710119226000,0],[1710119227000,0],[1710119228000,0],[1710119229000,0],[1710119230000,0],[1710119231000,0],[1710119232000,0],[1710119233000,0],[1710119234000,0],[1710119235000,0],[1710119236000,0],[1710119237000,0],[1710119238000,0],[1710119239000,0],[1710119240000,0],[1710119241000,0],[1710119242000,0],[1710119243000,0],[1710119244000,0],[1710119245000,0],[1710119246000,0],[1710119247000,0],[1710119248000,0],[1710119249000,0],[1710119250000,0],[1710119251000,0],[1710119252000,0],[1710119253000,0],[1710119254000,0],[1710119255000,0],[1710119256000,0],[1710119257000,0],[1710119258000,0],[1710119259000,0],[1710119260000,0],[1710119261000,0],[1710119262000,0],[1710119263000,0],[1710119264000,0],[1710119265000,0],[1710119266000,0],[1710119267000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#9D00FF',
name: 'validação concorrência transações - c',
data: [
[1710119013000,0],[1710119014000,23],[1710119015000,25],[1710119016000,0],[1710119017000,0],[1710119018000,0],[1710119019000,0],[1710119020000,0],[1710119021000,0],[1710119022000,0],[1710119023000,0],[1710119024000,0],[1710119025000,0],[1710119026000,0],[1710119027000,0],[1710119028000,0],[1710119029000,0],[1710119030000,0],[1710119031000,0],[1710119032000,0],[1710119033000,0],[1710119034000,0],[1710119035000,0],[1710119036000,0],[1710119037000,0],[1710119038000,0],[1710119039000,0],[1710119040000,0],[1710119041000,0],[1710119042000,0],[1710119043000,0],[1710119044000,0],[1710119045000,0],[1710119046000,0],[1710119047000,0],[1710119048000,0],[1710119049000,0],[1710119050000,0],[1710119051000,0],[1710119052000,0],[1710119053000,0],[1710119054000,0],[1710119055000,0],[1710119056000,0],[1710119057000,0],[1710119058000,0],[1710119059000,0],[1710119060000,0],[1710119061000,0],[1710119062000,0],[1710119063000,0],[1710119064000,0],[1710119065000,0],[1710119066000,0],[1710119067000,0],[1710119068000,0],[1710119069000,0],[1710119070000,0],[1710119071000,0],[1710119072000,0],[1710119073000,0],[1710119074000,0],[1710119075000,0],[1710119076000,0],[1710119077000,0],[1710119078000,0],[1710119079000,0],[1710119080000,0],[1710119081000,0],[1710119082000,0],[1710119083000,0],[1710119084000,0],[1710119085000,0],[1710119086000,0],[1710119087000,0],[1710119088000,0],[1710119089000,0],[1710119090000,0],[1710119091000,0],[1710119092000,0],[1710119093000,0],[1710119094000,0],[1710119095000,0],[1710119096000,0],[1710119097000,0],[1710119098000,0],[1710119099000,0],[1710119100000,0],[1710119101000,0],[1710119102000,0],[1710119103000,0],[1710119104000,0],[1710119105000,0],[1710119106000,0],[1710119107000,0],[1710119108000,0],[1710119109000,0],[1710119110000,0],[1710119111000,0],[1710119112000,0],[1710119113000,0],[1710119114000,0],[1710119115000,0],[1710119116000,0],[1710119117000,0],[1710119118000,0],[1710119119000,0],[1710119120000,0],[1710119121000,0],[1710119122000,0],[1710119123000,0],[1710119124000,0],[1710119125000,0],[1710119126000,0],[1710119127000,0],[1710119128000,0],[1710119129000,0],[1710119130000,0],[1710119131000,0],[1710119132000,0],[1710119133000,0],[1710119134000,0],[1710119135000,0],[1710119136000,0],[1710119137000,0],[1710119138000,0],[1710119139000,0],[1710119140000,0],[1710119141000,0],[1710119142000,0],[1710119143000,0],[1710119144000,0],[1710119145000,0],[1710119146000,0],[1710119147000,0],[1710119148000,0],[1710119149000,0],[1710119150000,0],[1710119151000,0],[1710119152000,0],[1710119153000,0],[1710119154000,0],[1710119155000,0],[1710119156000,0],[1710119157000,0],[1710119158000,0],[1710119159000,0],[1710119160000,0],[1710119161000,0],[1710119162000,0],[1710119163000,0],[1710119164000,0],[1710119165000,0],[1710119166000,0],[1710119167000,0],[1710119168000,0],[1710119169000,0],[1710119170000,0],[1710119171000,0],[1710119172000,0],[1710119173000,0],[1710119174000,0],[1710119175000,0],[1710119176000,0],[1710119177000,0],[1710119178000,0],[1710119179000,0],[1710119180000,0],[1710119181000,0],[1710119182000,0],[1710119183000,0],[1710119184000,0],[1710119185000,0],[1710119186000,0],[1710119187000,0],[1710119188000,0],[1710119189000,0],[1710119190000,0],[1710119191000,0],[1710119192000,0],[1710119193000,0],[1710119194000,0],[1710119195000,0],[1710119196000,0],[1710119197000,0],[1710119198000,0],[1710119199000,0],[1710119200000,0],[1710119201000,0],[1710119202000,0],[1710119203000,0],[1710119204000,0],[1710119205000,0],[1710119206000,0],[1710119207000,0],[1710119208000,0],[1710119209000,0],[1710119210000,0],[1710119211000,0],[1710119212000,0],[1710119213000,0],[1710119214000,0],[1710119215000,0],[1710119216000,0],[1710119217000,0],[1710119218000,0],[1710119219000,0],[1710119220000,0],[1710119221000,0],[1710119222000,0],[1710119223000,0],[1710119224000,0],[1710119225000,0],[1710119226000,0],[1710119227000,0],[1710119228000,0],[1710119229000,0],[1710119230000,0],[1710119231000,0],[1710119232000,0],[1710119233000,0],[1710119234000,0],[1710119235000,0],[1710119236000,0],[1710119237000,0],[1710119238000,0],[1710119239000,0],[1710119240000,0],[1710119241000,0],[1710119242000,0],[1710119243000,0],[1710119244000,0],[1710119245000,0],[1710119246000,0],[1710119247000,0],[1710119248000,0],[1710119249000,0],[1710119250000,0],[1710119251000,0],[1710119252000,0],[1710119253000,0],[1710119254000,0],[1710119255000,0],[1710119256000,0],[1710119257000,0],[1710119258000,0],[1710119259000,0],[1710119260000,0],[1710119261000,0],[1710119262000,0],[1710119263000,0],[1710119264000,0],[1710119265000,0],[1710119266000,0],[1710119267000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FF00E1',
name: 'validação concorrência saldo - -25',
data: [
[1710119013000,1],[1710119014000,1],[1710119015000,0],[1710119016000,0],[1710119017000,0],[1710119018000,0],[1710119019000,0],[1710119020000,0],[1710119021000,0],[1710119022000,0],[1710119023000,0],[1710119024000,0],[1710119025000,0],[1710119026000,0],[1710119027000,0],[1710119028000,0],[1710119029000,0],[1710119030000,0],[1710119031000,0],[1710119032000,0],[1710119033000,0],[1710119034000,0],[1710119035000,0],[1710119036000,0],[1710119037000,0],[1710119038000,0],[1710119039000,0],[1710119040000,0],[1710119041000,0],[1710119042000,0],[1710119043000,0],[1710119044000,0],[1710119045000,0],[1710119046000,0],[1710119047000,0],[1710119048000,0],[1710119049000,0],[1710119050000,0],[1710119051000,0],[1710119052000,0],[1710119053000,0],[1710119054000,0],[1710119055000,0],[1710119056000,0],[1710119057000,0],[1710119058000,0],[1710119059000,0],[1710119060000,0],[1710119061000,0],[1710119062000,0],[1710119063000,0],[1710119064000,0],[1710119065000,0],[1710119066000,0],[1710119067000,0],[1710119068000,0],[1710119069000,0],[1710119070000,0],[1710119071000,0],[1710119072000,0],[1710119073000,0],[1710119074000,0],[1710119075000,0],[1710119076000,0],[1710119077000,0],[1710119078000,0],[1710119079000,0],[1710119080000,0],[1710119081000,0],[1710119082000,0],[1710119083000,0],[1710119084000,0],[1710119085000,0],[1710119086000,0],[1710119087000,0],[1710119088000,0],[1710119089000,0],[1710119090000,0],[1710119091000,0],[1710119092000,0],[1710119093000,0],[1710119094000,0],[1710119095000,0],[1710119096000,0],[1710119097000,0],[1710119098000,0],[1710119099000,0],[1710119100000,0],[1710119101000,0],[1710119102000,0],[1710119103000,0],[1710119104000,0],[1710119105000,0],[1710119106000,0],[1710119107000,0],[1710119108000,0],[1710119109000,0],[1710119110000,0],[1710119111000,0],[1710119112000,0],[1710119113000,0],[1710119114000,0],[1710119115000,0],[1710119116000,0],[1710119117000,0],[1710119118000,0],[1710119119000,0],[1710119120000,0],[1710119121000,0],[1710119122000,0],[1710119123000,0],[1710119124000,0],[1710119125000,0],[1710119126000,0],[1710119127000,0],[1710119128000,0],[1710119129000,0],[1710119130000,0],[1710119131000,0],[1710119132000,0],[1710119133000,0],[1710119134000,0],[1710119135000,0],[1710119136000,0],[1710119137000,0],[1710119138000,0],[1710119139000,0],[1710119140000,0],[1710119141000,0],[1710119142000,0],[1710119143000,0],[1710119144000,0],[1710119145000,0],[1710119146000,0],[1710119147000,0],[1710119148000,0],[1710119149000,0],[1710119150000,0],[1710119151000,0],[1710119152000,0],[1710119153000,0],[1710119154000,0],[1710119155000,0],[1710119156000,0],[1710119157000,0],[1710119158000,0],[1710119159000,0],[1710119160000,0],[1710119161000,0],[1710119162000,0],[1710119163000,0],[1710119164000,0],[1710119165000,0],[1710119166000,0],[1710119167000,0],[1710119168000,0],[1710119169000,0],[1710119170000,0],[1710119171000,0],[1710119172000,0],[1710119173000,0],[1710119174000,0],[1710119175000,0],[1710119176000,0],[1710119177000,0],[1710119178000,0],[1710119179000,0],[1710119180000,0],[1710119181000,0],[1710119182000,0],[1710119183000,0],[1710119184000,0],[1710119185000,0],[1710119186000,0],[1710119187000,0],[1710119188000,0],[1710119189000,0],[1710119190000,0],[1710119191000,0],[1710119192000,0],[1710119193000,0],[1710119194000,0],[1710119195000,0],[1710119196000,0],[1710119197000,0],[1710119198000,0],[1710119199000,0],[1710119200000,0],[1710119201000,0],[1710119202000,0],[1710119203000,0],[1710119204000,0],[1710119205000,0],[1710119206000,0],[1710119207000,0],[1710119208000,0],[1710119209000,0],[1710119210000,0],[1710119211000,0],[1710119212000,0],[1710119213000,0],[1710119214000,0],[1710119215000,0],[1710119216000,0],[1710119217000,0],[1710119218000,0],[1710119219000,0],[1710119220000,0],[1710119221000,0],[1710119222000,0],[1710119223000,0],[1710119224000,0],[1710119225000,0],[1710119226000,0],[1710119227000,0],[1710119228000,0],[1710119229000,0],[1710119230000,0],[1710119231000,0],[1710119232000,0],[1710119233000,0],[1710119234000,0],[1710119235000,0],[1710119236000,0],[1710119237000,0],[1710119238000,0],[1710119239000,0],[1710119240000,0],[1710119241000,0],[1710119242000,0],[1710119243000,0],[1710119244000,0],[1710119245000,0],[1710119246000,0],[1710119247000,0],[1710119248000,0],[1710119249000,0],[1710119250000,0],[1710119251000,0],[1710119252000,0],[1710119253000,0],[1710119254000,0],[1710119255000,0],[1710119256000,0],[1710119257000,0],[1710119258000,0],[1710119259000,0],[1710119260000,0],[1710119261000,0],[1710119262000,0],[1710119263000,0],[1710119264000,0],[1710119265000,0],[1710119266000,0],[1710119267000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#AECAEB',
name: 'validação concorrência transações - d',
data: [
[1710119013000,25],[1710119014000,0],[1710119015000,0],[1710119016000,0],[1710119017000,0],[1710119018000,0],[1710119019000,0],[1710119020000,0],[1710119021000,0],[1710119022000,0],[1710119023000,0],[1710119024000,0],[1710119025000,0],[1710119026000,0],[1710119027000,0],[1710119028000,0],[1710119029000,0],[1710119030000,0],[1710119031000,0],[1710119032000,0],[1710119033000,0],[1710119034000,0],[1710119035000,0],[1710119036000,0],[1710119037000,0],[1710119038000,0],[1710119039000,0],[1710119040000,0],[1710119041000,0],[1710119042000,0],[1710119043000,0],[1710119044000,0],[1710119045000,0],[1710119046000,0],[1710119047000,0],[1710119048000,0],[1710119049000,0],[1710119050000,0],[1710119051000,0],[1710119052000,0],[1710119053000,0],[1710119054000,0],[1710119055000,0],[1710119056000,0],[1710119057000,0],[1710119058000,0],[1710119059000,0],[1710119060000,0],[1710119061000,0],[1710119062000,0],[1710119063000,0],[1710119064000,0],[1710119065000,0],[1710119066000,0],[1710119067000,0],[1710119068000,0],[1710119069000,0],[1710119070000,0],[1710119071000,0],[1710119072000,0],[1710119073000,0],[1710119074000,0],[1710119075000,0],[1710119076000,0],[1710119077000,0],[1710119078000,0],[1710119079000,0],[1710119080000,0],[1710119081000,0],[1710119082000,0],[1710119083000,0],[1710119084000,0],[1710119085000,0],[1710119086000,0],[1710119087000,0],[1710119088000,0],[1710119089000,0],[1710119090000,0],[1710119091000,0],[1710119092000,0],[1710119093000,0],[1710119094000,0],[1710119095000,0],[1710119096000,0],[1710119097000,0],[1710119098000,0],[1710119099000,0],[1710119100000,0],[1710119101000,0],[1710119102000,0],[1710119103000,0],[1710119104000,0],[1710119105000,0],[1710119106000,0],[1710119107000,0],[1710119108000,0],[1710119109000,0],[1710119110000,0],[1710119111000,0],[1710119112000,0],[1710119113000,0],[1710119114000,0],[1710119115000,0],[1710119116000,0],[1710119117000,0],[1710119118000,0],[1710119119000,0],[1710119120000,0],[1710119121000,0],[1710119122000,0],[1710119123000,0],[1710119124000,0],[1710119125000,0],[1710119126000,0],[1710119127000,0],[1710119128000,0],[1710119129000,0],[1710119130000,0],[1710119131000,0],[1710119132000,0],[1710119133000,0],[1710119134000,0],[1710119135000,0],[1710119136000,0],[1710119137000,0],[1710119138000,0],[1710119139000,0],[1710119140000,0],[1710119141000,0],[1710119142000,0],[1710119143000,0],[1710119144000,0],[1710119145000,0],[1710119146000,0],[1710119147000,0],[1710119148000,0],[1710119149000,0],[1710119150000,0],[1710119151000,0],[1710119152000,0],[1710119153000,0],[1710119154000,0],[1710119155000,0],[1710119156000,0],[1710119157000,0],[1710119158000,0],[1710119159000,0],[1710119160000,0],[1710119161000,0],[1710119162000,0],[1710119163000,0],[1710119164000,0],[1710119165000,0],[1710119166000,0],[1710119167000,0],[1710119168000,0],[1710119169000,0],[1710119170000,0],[1710119171000,0],[1710119172000,0],[1710119173000,0],[1710119174000,0],[1710119175000,0],[1710119176000,0],[1710119177000,0],[1710119178000,0],[1710119179000,0],[1710119180000,0],[1710119181000,0],[1710119182000,0],[1710119183000,0],[1710119184000,0],[1710119185000,0],[1710119186000,0],[1710119187000,0],[1710119188000,0],[1710119189000,0],[1710119190000,0],[1710119191000,0],[1710119192000,0],[1710119193000,0],[1710119194000,0],[1710119195000,0],[1710119196000,0],[1710119197000,0],[1710119198000,0],[1710119199000,0],[1710119200000,0],[1710119201000,0],[1710119202000,0],[1710119203000,0],[1710119204000,0],[1710119205000,0],[1710119206000,0],[1710119207000,0],[1710119208000,0],[1710119209000,0],[1710119210000,0],[1710119211000,0],[1710119212000,0],[1710119213000,0],[1710119214000,0],[1710119215000,0],[1710119216000,0],[1710119217000,0],[1710119218000,0],[1710119219000,0],[1710119220000,0],[1710119221000,0],[1710119222000,0],[1710119223000,0],[1710119224000,0],[1710119225000,0],[1710119226000,0],[1710119227000,0],[1710119228000,0],[1710119229000,0],[1710119230000,0],[1710119231000,0],[1710119232000,0],[1710119233000,0],[1710119234000,0],[1710119235000,0],[1710119236000,0],[1710119237000,0],[1710119238000,0],[1710119239000,0],[1710119240000,0],[1710119241000,0],[1710119242000,0],[1710119243000,0],[1710119244000,0],[1710119245000,0],[1710119246000,0],[1710119247000,0],[1710119248000,0],[1710119249000,0],[1710119250000,0],[1710119251000,0],[1710119252000,0],[1710119253000,0],[1710119254000,0],[1710119255000,0],[1710119256000,0],[1710119257000,0],[1710119258000,0],[1710119259000,0],[1710119260000,0],[1710119261000,0],[1710119262000,0],[1710119263000,0],[1710119264000,0],[1710119265000,0],[1710119266000,0],[1710119267000,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: ['55', '165', '275', '385', '495', '605', '715', '825', '935', '1045', '1155', '1265', '1375', '1485', '1595', '1705', '1815', '1926', '2036', '2146', '2256', '2366', '2476', '2586', '2696', '2806', '2916', '3026', '3136', '3246', '3356', '3466', '3576', '3686', '3796', '3906', '4016', '4126', '4236', '4346', '4456', '4566', '4676', '4786', '4896', '5006', '5116', '5226', '5336', '5446', '5557', '5667', '5777', '5887', '5997', '6107', '6217', '6327', '6437', '6547', '6657', '6767', '6877', '6987', '7097', '7207', '7317', '7427', '7537', '7647', '7757', '7867', '7977', '8087', '8197', '8307', '8417', '8527', '8637', '8747', '8857', '8967', '9077', '9188', '9298', '9408', '9518', '9628', '9738', '9848', '9958', '10068', '10178', '10288', '10398', '10508', '10618', '10728', '10838', '10948'],
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: [
48.12,0.65,0.42,0.26,0.11,0.1,0.22,0.17,0.22,0.11,0.09,0.14,0.1,0.13,0.07,0.13,0.13,0.12,0.12,0.1,0.06,0.14,0.14,0.13,0.06,0.07,0.12,0.14,0.09,0.09,0.19,0.18,0.22,0.15,0.09,0.12,0.16,0.1,0.09,0.08,0.11,0.13,0.13,0.25,0.35,0.52,0.77,0.79,0.5,0.19,0.17,0.14,0.09,0.06,0.1,0.15,0.05,0.09,0.07,0.18,0.17,0.07,0.15,0.16,0.12,0.09,0.14,0.25,0.17,0.11,0.08,0.17,0.1,0.15,0.06,0.13,0.26,0.06,0.1,0.07,0.03,0.04,0.14,0.26,0.26,0.25,0.35,0.33,0.25,0.46,0.75,1.71,3.74,3.63,3.66,3.56,1.81,0.61,0.05,0.0
],
tooltip: { yDecimals: 0, ySuffix: 'ms' }
},
{
type: 'column',
color: '#f15b4f',
name: 'KO',
data: [
15.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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.0,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.0,0.01,0.0,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.0,0.0,0.0,0.0,0.05,0.0,0.0,0.0,0.0,0.0,0.02,0.04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.0,0.0,0.01,0.02,0.04,0.04,0.04,0.11,0.19,0.08,0.08,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([[1710119013,[39,101,186,196,202,205,209,214,218,220]],[1710119014,null],[1710119015,[19,45,56,110,113,115,116,122,124,124]],[1710119016,[3,3,3,3,3,3,3,3,3,3]],[1710119017,[2,5,8,13,15,16,20,23,25,26]],[1710119018,[5,7,9,9,9,9,9,9,9,10]],[1710119019,[5,7,7,8,9,9,9,9,9,9]],[1710119020,[5,7,8,8,8,8,8,8,8,9]],[1710119021,[5,7,7,8,9,9,9,9,9,9]],[1710119022,[4,7,7,7,7,8,11,12,12,13]],[1710119023,[3,6,7,7,7,8,8,9,12,13]],[1710119024,[4,6,7,8,8,8,9,9,9,9]],[1710119025,[3,6,7,7,7,8,8,8,9,10]],[1710119026,[4,6,7,8,9,9,12,19,22,22]],[1710119027,[4,7,8,8,9,9,9,10,14,16]],[1710119028,[4,7,7,9,9,9,9,11,19,23]],[1710119029,[3,6,6,7,7,8,8,8,8,9]],[1710119030,[3,6,7,7,7,8,8,9,9,10]],[1710119031,[2,6,6,7,8,8,9,10,14,16]],[1710119032,[2,5,6,7,7,7,8,9,11,11]],[1710119033,[2,5,6,7,8,8,9,10,10,11]],[1710119034,[2,5,6,6,6,7,7,7,9,10]],[1710119035,[3,5,6,7,7,8,8,8,12,14]],[1710119036,[2,5,6,7,7,8,12,40,87,93]],[1710119037,[1,5,6,7,7,7,13,38,54,65]],[1710119038,[2,5,5,6,6,6,7,7,8,8]],[1710119039,[1,5,6,6,7,7,7,8,9,9]],[1710119040,[1,4,5,7,7,7,8,9,13,14]],[1710119041,[1,5,6,7,7,8,8,10,11,11]],[1710119042,[2,5,6,7,7,8,8,9,10,11]],[1710119043,[1,5,6,6,6,7,7,8,9,10]],[1710119044,[2,5,6,6,7,7,7,8,10,10]],[1710119045,[1,5,5,6,6,8,8,24,40,43]],[1710119046,[1,5,5,6,6,6,7,8,9,13]],[1710119047,[1,4,5,6,6,6,6,7,14,16]],[1710119048,[2,5,5,6,6,6,6,7,8,11]],[1710119049,[1,4,5,6,6,6,7,8,10,10]],[1710119050,[1,4,5,6,6,6,6,7,8,15]],[1710119051,[2,5,5,6,6,7,7,9,10,10]],[1710119052,[1,5,5,6,6,7,7,8,10,11]],[1710119053,[1,2,5,6,7,7,7,8,10,11]],[1710119054,[1,5,5,6,6,6,7,7,7,8]],[1710119055,[1,5,5,6,6,6,7,8,9,11]],[1710119056,[1,2,5,5,5,6,6,7,8,11]],[1710119057,[1,4,5,6,6,6,6,7,8,9]],[1710119058,[1,4,5,6,6,6,7,8,9,9]],[1710119059,[1,4,5,5,5,5,6,6,7,7]],[1710119060,[1,4,5,6,6,6,6,7,8,14]],[1710119061,[1,4,5,5,6,6,6,7,8,10]],[1710119062,[1,4,5,6,6,6,7,7,9,11]],[1710119063,[1,2,5,5,5,6,6,7,8,9]],[1710119064,[1,4,5,5,6,7,8,10,11,17]],[1710119065,[1,4,5,5,6,6,6,7,10,11]],[1710119066,[1,2,5,5,5,6,8,10,16,19]],[1710119067,[1,4,5,6,6,6,6,8,9,15]],[1710119068,[1,4,5,6,6,6,7,8,9,11]],[1710119069,[1,4,5,5,6,6,6,7,8,10]],[1710119070,[1,4,5,6,7,9,40,89,125,133]],[1710119071,[1,3,5,6,6,6,7,8,12,15]],[1710119072,[1,3,5,6,6,6,6,8,9,11]],[1710119073,[1,3,5,5,6,6,7,7,8,11]],[1710119074,[1,4,5,6,6,7,8,9,11,17]],[1710119075,[1,4,5,5,6,6,7,8,10,14]],[1710119076,[1,4,5,6,6,6,7,8,11,13]],[1710119077,[1,4,5,5,5,6,6,7,12,13]],[1710119078,[1,4,5,5,5,6,6,7,10,12]],[1710119079,[1,4,5,6,6,6,7,8,12,16]],[1710119080,[1,4,5,5,6,6,6,7,9,13]],[1710119081,[1,4,4,5,5,5,6,6,7,12]],[1710119082,[1,4,5,5,6,6,7,10,17,23]],[1710119083,[1,4,5,5,5,5,6,6,11,18]],[1710119084,[1,4,5,5,6,6,6,7,11,14]],[1710119085,[1,2,4,5,5,6,7,9,14,16]],[1710119086,[1,4,5,5,6,6,6,8,9,10]],[1710119087,[1,4,5,6,6,7,7,8,11,12]],[1710119088,[1,2,5,5,5,6,6,8,9,10]],[1710119089,[1,2,4,5,5,5,6,6,10,18]],[1710119090,[1,4,5,5,6,6,7,9,16,22]],[1710119091,[1,4,5,5,5,5,6,7,8,15]],[1710119092,[1,3,4,5,5,6,6,6,8,10]],[1710119093,[1,2,4,5,5,5,6,6,12,15]],[1710119094,[1,3,4,5,5,6,7,8,13,16]],[1710119095,[1,2,5,5,5,6,6,7,10,13]],[1710119096,[1,4,5,5,6,6,6,7,8,12]],[1710119097,[1,4,5,6,6,6,7,9,13,17]],[1710119098,[1,4,5,6,6,7,8,9,12,17]],[1710119099,[1,4,5,6,6,6,7,8,10,12]],[1710119100,[1,4,5,6,6,7,7,9,15,18]],[1710119101,[1,2,5,6,6,6,7,8,11,14]],[1710119102,[1,4,5,6,7,7,8,9,13,19]],[1710119103,[1,4,5,6,6,7,7,9,14,16]],[1710119104,[1,4,5,6,6,7,7,9,13,16]],[1710119105,[1,5,14,117,123,134,144,160,175,177]],[1710119106,[1,5,5,9,10,15,38,62,90,98]],[1710119107,[1,4,5,6,7,7,8,11,19,40]],[1710119108,[1,3,5,6,6,6,7,9,13,20]],[1710119109,[1,4,5,6,6,6,7,9,16,25]],[1710119110,[1,4,5,6,7,24,47,83,110,115]],[1710119111,[1,4,4,5,6,6,7,8,12,14]],[1710119112,[1,3,4,5,5,6,7,11,49,58]],[1710119113,[1,2,4,5,5,5,6,7,9,18]],[1710119114,[1,4,5,5,5,6,7,9,13,15]],[1710119115,[1,4,4,5,5,6,6,8,11,13]],[1710119116,[1,3,4,5,5,6,6,7,9,12]],[1710119117,[1,2,4,5,5,6,6,8,10,18]],[1710119118,[1,4,4,5,5,6,6,8,14,20]],[1710119119,[1,2,4,6,6,7,9,12,18,38]],[1710119120,[1,4,4,5,5,5,6,7,8,10]],[1710119121,[1,4,5,5,6,7,8,13,27,33]],[1710119122,[1,4,4,5,6,7,7,9,13,22]],[1710119123,[1,4,4,5,6,6,7,12,19,23]],[1710119124,[1,4,5,7,8,9,20,59,89,94]],[1710119125,[1,2,5,5,5,6,6,7,12,13]],[1710119126,[1,4,5,5,6,6,7,9,12,21]],[1710119127,[1,2,4,5,6,6,7,8,16,18]],[1710119128,[1,4,5,5,6,6,7,8,11,22]],[1710119129,[1,4,5,5,6,6,6,8,13,20]],[1710119130,[1,4,6,7,7,8,8,11,17,22]],[1710119131,[1,4,5,16,27,41,56,78,98,110]],[1710119132,[1,6,9,25,30,36,43,55,69,82]],[1710119133,[1,3,5,5,6,6,7,8,11,13]],[1710119134,[1,4,6,6,6,7,7,8,13,16]],[1710119135,[1,4,4,5,6,6,7,9,14,17]],[1710119136,[2,5,6,7,7,8,8,11,16,26]],[1710119137,[1,2,5,5,6,6,7,9,17,34]],[1710119138,[2,5,6,7,8,8,9,13,19,24]],[1710119139,[1,4,5,5,6,6,6,8,9,15]],[1710119140,[1,5,7,8,8,9,10,12,17,32]],[1710119141,[1,3,5,6,6,7,7,9,15,20]],[1710119142,[1,4,6,7,8,9,10,11,16,21]],[1710119143,[1,3,4,5,6,6,7,8,13,15]],[1710119144,[1,4,6,7,7,8,9,11,17,21]],[1710119145,[1,4,5,6,6,7,7,8,10,16]],[1710119146,[1,5,6,7,8,8,10,13,24,27]],[1710119147,[1,5,6,10,13,19,25,33,41,47]],[1710119148,[1,4,6,7,8,8,10,14,27,33]],[1710119149,[1,4,5,6,7,7,8,9,16,20]],[1710119150,[1,4,5,7,7,8,9,12,18,22]],[1710119151,[1,4,5,7,7,8,9,12,28,34]],[1710119152,[1,3,5,7,7,8,9,12,16,20]],[1710119153,[1,4,5,7,7,7,8,8,10,11]],[1710119154,[1,4,5,7,8,9,11,16,27,38]],[1710119155,[1,4,5,7,7,8,9,10,14,20]],[1710119156,[1,4,5,6,7,7,7,9,13,25]],[1710119157,[1,4,5,7,7,7,8,9,11,17]],[1710119158,[1,4,5,6,6,7,8,11,15,16]],[1710119159,[1,4,6,7,7,7,8,9,13,20]],[1710119160,[1,4,5,6,7,7,8,10,15,24]],[1710119161,[1,4,6,8,8,9,11,17,26,36]],[1710119162,[1,4,5,8,9,12,14,21,29,35]],[1710119163,[1,4,6,8,9,12,15,21,32,35]],[1710119164,[2,7,55,120,134,153,175,206,230,245]],[1710119165,[16,126,176,242,251,266,282,295,322,347]],[1710119166,[29,241,306,366,379,399,424,456,502,620]],[1710119167,[178,568,685,753,774,810,845,887,925,943]],[1710119168,[308,914,995,1148,1194,1225,1255,1282,1315,1331]],[1710119169,[511,1411,1614,1771,1794,1836,1912,1955,2013,2033]],[1710119170,[808,2001,2203,2403,2447,2511,2544,2577,2626,2636]],[1710119171,[1026,2629,2866,3053,3075,3131,3230,3297,3350,3397]],[1710119172,[1346,3321,3434,3591,3622,3645,3669,3712,3780,3900]],[1710119173,[1400,3821,3980,4131,4162,4222,4261,4306,4364,4413]],[1710119174,[1819,4385,4562,4752,4775,4795,4834,4889,4926,4940]],[1710119175,[2051,4883,5076,5209,5231,5287,5331,5357,5404,5518]],[1710119176,[2110,5386,5579,5700,5730,5772,5804,5834,5915,5943]],[1710119177,[2229,6027,6091,6266,6295,6340,6385,6441,6478,6577]],[1710119178,[2825,6429,6562,6630,6643,6658,6681,6764,6826,6991]],[1710119179,[2892,6763,6902,7026,7089,7157,7243,7278,7342,7375]],[1710119180,[3210,7054,7227,7376,7394,7422,7447,7466,7490,7539]],[1710119181,[3413,7445,7525,7621,7652,7688,7821,7886,7989,8028]],[1710119182,[3308,7820,7954,8071,8092,8130,8184,8264,8306,8332]],[1710119183,[3311,8238,8373,8424,8445,8464,8553,8619,8650,8669]],[1710119184,[3702,8428,8662,8817,8918,9001,9078,9169,9235,9302]],[1710119185,[3925,9106,9182,9285,9307,9338,9362,9388,9479,9540]],[1710119186,[4331,9156,9362,9579,9623,9649,9670,9691,9724,9898]],[1710119187,[4539,9447,9579,9873,9880,9894,9983,10059,10093,10139]],[1710119188,[4422,9684,9890,10261,10280,10296,10332,10387,10447,10502]],[1710119189,[4664,9946,10060,10394,10402,10411,10437,10449,10479,10491]],[1710119190,[4623,10057,10155,10441,10447,10456,10469,10487,10526,10534]],[1710119191,[4525,9864,9979,10430,10449,10455,10469,10490,10541,10547]],[1710119192,[4856,10161,10322,10685,10691,10700,10704,10739,10759,10768]],[1710119193,[5071,10142,10275,10580,10590,10611,10668,10683,10693,10701]],[1710119194,[4802,9979,10051,10440,10456,10466,10481,10504,10552,10654]],[1710119195,[5207,10046,10096,10483,10491,10498,10509,10556,10589,10746]],[1710119196,[5153,10130,10227,10533,10555,10576,10656,10675,10729,10737]],[1710119197,[5246,10197,10267,10536,10560,10566,10575,10585,10697,10769]],[1710119198,[4890,10093,10180,10381,10402,10451,10474,10488,10553,10564]],[1710119199,[4841,10141,10204,10396,10411,10437,10476,10510,10563,10569]],[1710119200,[4416,9989,10155,10576,10586,10602,10638,10678,10722,10738]],[1710119201,[4812,10145,10182,10745,10754,10762,10772,10782,10790,10846]],[1710119202,[4701,10172,10199,10573,10584,10595,10646,10685,10730,10758]],[1710119203,[5071,10171,10235,10553,10561,10567,10576,10587,10619,10644]],[1710119204,[4977,10053,10152,10482,10490,10497,10511,10542,10569,10577]],[1710119205,[5018,10250,10401,10580,10596,10639,10668,10693,10763,10791]],[1710119206,[5151,10212,10281,10760,10765,10769,10775,10786,10799,11003]],[1710119207,[5165,10232,10323,10703,10741,10755,10770,10784,10795,10797]],[1710119208,[5116,10212,10277,10487,10497,10523,10556,10580,10598,10610]],[1710119209,[4912,10168,10233,10495,10504,10519,10535,10551,10584,10622]],[1710119210,[4794,10105,10201,10502,10520,10533,10553,10569,10596,10602]],[1710119211,[4744,10164,10241,10491,10511,10529,10555,10565,10584,10588]],[1710119212,[4770,10206,10290,10497,10511,10544,10557,10565,10583,10659]],[1710119213,[4700,10186,10259,10466,10470,10478,10486,10497,10539,10554]],[1710119214,[5058,10271,10352,10387,10398,10422,10444,10472,10495,10545]],[1710119215,[4999,10400,10469,10497,10502,10521,10546,10560,10570,10584]],[1710119216,[4999,10415,10469,10492,10495,10500,10505,10516,10570,10578]],[1710119217,[5190,10476,10540,10585,10593,10603,10611,10649,10682,10685]],[1710119218,[4999,10357,10392,10446,10458,10472,10483,10512,10577,10592]],[1710119219,[4978,10298,10382,10496,10507,10548,10568,10603,10661,10666]],[1710119220,[5155,10582,10607,10657,10661,10668,10677,10689,10720,10743]],[1710119221,[5103,10503,10567,10588,10593,10597,10615,10660,10672,10684]],[1710119222,[4911,10439,10558,10585,10591,10596,10599,10662,10693,10755]],[1710119223,[4979,10307,10376,10410,10439,10450,10457,10470,10496,10521]],[1710119224,[5011,10186,10288,10510,10547,10562,10578,10596,10644,10651]],[1710119225,[5266,10263,10346,10564,10568,10575,10583,10593,10611,10659]],[1710119226,[5106,10302,10378,10445,10455,10467,10494,10561,10594,10608]],[1710119227,[5138,10407,10545,10606,10629,10655,10665,10672,10689,10777]],[1710119228,[4983,10167,10272,10398,10413,10445,10472,10570,10589,10593]],[1710119229,[4933,10184,10253,10401,10423,10434,10442,10458,10480,10488]],[1710119230,[4901,10092,10190,10367,10382,10389,10400,10452,10487,10491]],[1710119231,[4822,10078,10196,10378,10387,10399,10420,10445,10462,10468]],[1710119232,[4976,10060,10104,10171,10180,10185,10198,10268,10298,10341]],[1710119233,[4918,10078,10144,10189,10198,10211,10221,10239,10254,10266]],[1710119234,[4920,10147,10192,10262,10279,10331,10362,10390,10434,10441]],[1710119235,[4875,10163,10287,10436,10451,10458,10470,10480,10492,10497]],[1710119236,[5006,10206,10269,10345,10360,10367,10371,10387,10416,10439]],[1710119237,[4787,10359,10392,10476,10491,10503,10536,10558,10573,10584]],[1710119238,[4846,10095,10246,10294,10306,10320,10344,10365,10389,10395]],[1710119239,[4874,10107,10166,10354,10368,10373,10389,10418,10440,10452]],[1710119240,[4980,10197,10285,10498,10509,10531,10545,10558,10583,10590]],[1710119241,[4917,10241,10300,10555,10586,10604,10626,10651,10680,10790]],[1710119242,[5029,10256,10287,10391,10411,10450,10469,10478,10493,10523]],[1710119243,[5027,10085,10157,10197,10206,10232,10251,10265,10277,10287]],[1710119244,[4963,10253,10286,10422,10450,10460,10470,10484,10493,10524]],[1710119245,[4691,10165,10266,10391,10400,10409,10452,10470,10483,10489]],[1710119246,[5150,10277,10375,10503,10552,10571,10609,10640,10670,10682]],[1710119247,[4773,10195,10354,10469,10478,10485,10508,10561,10580,10593]],[1710119248,[4621,10034,10134,10273,10281,10295,10325,10353,10377,10388]],[1710119249,[4964,10193,10259,10294,10303,10334,10347,10358,10373,10387]],[1710119250,[5043,10240,10276,10329,10344,10353,10364,10377,10396,10480]],[1710119251,[4903,10297,10390,10451,10457,10468,10477,10488,10504,10535]],[1710119252,[4992,10157,10229,10280,10293,10304,10340,10361,10391,10421]],[1710119253,[5019,10164,10229,10272,10276,10287,10292,10329,10369,10377]],[1710119254,[4965,9867,9994,10102,10141,10156,10170,10189,10223,10230]],[1710119255,[4990,9780,9841,9976,9985,9993,10003,10043,10060,10076]],[1710119256,[5009,9569,9684,9766,9779,9800,9845,9867,9889,9899]],[1710119257,[4803,9312,9440,9535,9551,9572,9588,9618,9677,9688]],[1710119258,[4702,9370,9469,9577,9583,9596,9608,9638,9658,9672]],[1710119259,null],[1710119260,null],[1710119261,null],[1710119262,null],[1710119263,null],[1710119264,null],[1710119265,null],[1710119266,null],[1710119267,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([[1710119013,[25,25,0]],[1710119014,[1,0,1]],[1710119015,[25,25,0]],[1710119016,[1,1,0]],[1710119017,[71,66,5]],[1710119018,[3,3,0]],[1710119019,[6,6,0]],[1710119020,[9,9,0]],[1710119021,[11,11,0]],[1710119022,[13,13,0]],[1710119023,[18,18,0]],[1710119024,[19,19,0]],[1710119025,[24,24,0]],[1710119026,[26,26,0]],[1710119027,[27,27,0]],[1710119028,[32,32,0]],[1710119029,[34,34,0]],[1710119030,[37,37,0]],[1710119031,[39,39,0]],[1710119032,[43,43,0]],[1710119033,[44,44,0]],[1710119034,[48,48,0]],[1710119035,[50,50,0]],[1710119036,[54,54,0]],[1710119037,[56,56,0]],[1710119038,[61,61,0]],[1710119039,[61,61,0]],[1710119040,[65,65,0]],[1710119041,[67,67,0]],[1710119042,[70,70,0]],[1710119043,[74,74,0]],[1710119044,[76,76,0]],[1710119045,[80,80,0]],[1710119046,[81,81,0]],[1710119047,[84,84,0]],[1710119048,[87,87,0]],[1710119049,[91,91,0]],[1710119050,[92,92,0]],[1710119051,[96,96,0]],[1710119052,[98,98,0]],[1710119053,[101,101,0]],[1710119054,[105,105,0]],[1710119055,[107,107,0]],[1710119056,[110,110,0]],[1710119057,[114,114,0]],[1710119058,[115,115,0]],[1710119059,[118,118,0]],[1710119060,[121,121,0]],[1710119061,[124,124,0]],[1710119062,[126,126,0]],[1710119063,[129,129,0]],[1710119064,[133,133,0]],[1710119065,[134,134,0]],[1710119066,[138,138,0]],[1710119067,[141,141,0]],[1710119068,[143,143,0]],[1710119069,[146,146,0]],[1710119070,[149,149,0]],[1710119071,[152,152,0]],[1710119072,[154,154,0]],[1710119073,[158,158,0]],[1710119074,[160,160,0]],[1710119075,[164,164,0]],[1710119076,[165,165,0]],[1710119077,[170,170,0]],[1710119078,[171,171,0]],[1710119079,[175,175,0]],[1710119080,[175,175,0]],[1710119081,[182,182,0]],[1710119082,[183,183,0]],[1710119083,[185,185,0]],[1710119084,[189,189,0]],[1710119085,[191,191,0]],[1710119086,[194,194,0]],[1710119087,[196,196,0]],[1710119088,[200,200,0]],[1710119089,[202,202,0]],[1710119090,[206,206,0]],[1710119091,[207,207,0]],[1710119092,[211,211,0]],[1710119093,[213,213,0]],[1710119094,[217,217,0]],[1710119095,[220,220,0]],[1710119096,[223,223,0]],[1710119097,[224,224,0]],[1710119098,[228,228,0]],[1710119099,[230,230,0]],[1710119100,[234,234,0]],[1710119101,[235,235,0]],[1710119102,[239,239,0]],[1710119103,[242,242,0]],[1710119104,[244,244,0]],[1710119105,[248,248,0]],[1710119106,[251,251,0]],[1710119107,[252,252,0]],[1710119108,[256,256,0]],[1710119109,[259,259,0]],[1710119110,[262,262,0]],[1710119111,[264,264,0]],[1710119112,[267,267,0]],[1710119113,[269,269,0]],[1710119114,[272,272,0]],[1710119115,[276,276,0]],[1710119116,[279,279,0]],[1710119117,[280,280,0]],[1710119118,[285,285,0]],[1710119119,[286,286,0]],[1710119120,[290,290,0]],[1710119121,[291,291,0]],[1710119122,[296,296,0]],[1710119123,[298,298,0]],[1710119124,[300,300,0]],[1710119125,[304,304,0]],[1710119126,[306,306,0]],[1710119127,[309,309,0]],[1710119128,[312,312,0]],[1710119129,[315,315,0]],[1710119130,[317,317,0]],[1710119131,[321,321,0]],[1710119132,[322,322,0]],[1710119133,[327,327,0]],[1710119134,[329,329,0]],[1710119135,[332,332,0]],[1710119136,[335,335,0]],[1710119137,[338,338,0]],[1710119138,[339,339,0]],[1710119139,[341,341,0]],[1710119140,[340,340,0]],[1710119141,[339,339,0]],[1710119142,[341,341,0]],[1710119143,[339,339,0]],[1710119144,[341,341,0]],[1710119145,[340,340,0]],[1710119146,[339,339,0]],[1710119147,[341,341,0]],[1710119148,[340,340,0]],[1710119149,[339,339,0]],[1710119150,[341,341,0]],[1710119151,[339,339,0]],[1710119152,[341,341,0]],[1710119153,[339,339,0]],[1710119154,[341,341,0]],[1710119155,[340,340,0]],[1710119156,[340,340,0]],[1710119157,[340,340,0]],[1710119158,[340,340,0]],[1710119159,[340,340,0]],[1710119160,[340,340,0]],[1710119161,[340,340,0]],[1710119162,[340,340,0]],[1710119163,[340,340,0]],[1710119164,[340,340,0]],[1710119165,[339,339,0]],[1710119166,[341,341,0]],[1710119167,[340,338,2]],[1710119168,[340,340,0]],[1710119169,[339,339,0]],[1710119170,[341,329,12]],[1710119171,[339,339,0]],[1710119172,[341,335,6]],[1710119173,[340,324,16]],[1710119174,[339,335,4]],[1710119175,[341,319,22]],[1710119176,[340,339,1]],[1710119177,[340,317,23]],[1710119178,[340,307,33]],[1710119179,[339,339,0]],[1710119180,[341,299,42]],[1710119181,[340,340,0]],[1710119182,[340,339,1]],[1710119183,[340,301,39]],[1710119184,[340,291,49]],[1710119185,[340,274,66]],[1710119186,[340,243,97]],[1710119187,[340,233,107]],[1710119188,[340,248,92]],[1710119189,[340,205,135]],[1710119190,[340,260,80]],[1710119191,[340,176,164]],[1710119192,[339,233,106]],[1710119193,[341,159,182]],[1710119194,[339,243,96]],[1710119195,[341,186,155]],[1710119196,[339,188,151]],[1710119197,[341,191,150]],[1710119198,[339,195,144]],[1710119199,[341,224,117]],[1710119200,[340,219,121]],[1710119201,[340,174,166]],[1710119202,[340,148,192]],[1710119203,[340,226,114]],[1710119204,[340,204,136]],[1710119205,[340,209,131]],[1710119206,[340,186,154]],[1710119207,[340,183,157]],[1710119208,[340,196,144]],[1710119209,[340,227,113]],[1710119210,[340,206,134]],[1710119211,[339,202,137]],[1710119212,[341,184,157]],[1710119213,[340,217,123]],[1710119214,[340,233,107]],[1710119215,[339,200,139]],[1710119216,[341,198,143]],[1710119217,[339,180,159]],[1710119218,[341,197,144]],[1710119219,[340,232,108]],[1710119220,[340,213,127]],[1710119221,[340,186,154]],[1710119222,[340,190,150]],[1710119223,[339,197,142]],[1710119224,[341,184,157]],[1710119225,[339,196,143]],[1710119226,[340,211,129]],[1710119227,[340,190,150]],[1710119228,[340,218,122]],[1710119229,[341,238,103]],[1710119230,[340,169,171]],[1710119231,[340,213,127]],[1710119232,[340,160,180]],[1710119233,[340,253,87]],[1710119234,[340,234,106]],[1710119235,[340,203,137]],[1710119236,[340,202,138]],[1710119237,[340,197,143]],[1710119238,[340,240,100]],[1710119239,[340,225,115]],[1710119240,[340,196,144]],[1710119241,[340,199,141]],[1710119242,[340,193,147]],[1710119243,[339,225,114]],[1710119244,[340,235,105]],[1710119245,[340,187,153]],[1710119246,[341,215,126]],[1710119247,[340,162,178]],[1710119248,[340,260,80]],[1710119249,[340,220,120]],[1710119250,[339,189,150]],[1710119251,[341,202,139]],[1710119252,[339,212,127]],[1710119253,[341,221,120]],[1710119254,[340,220,120]],[1710119255,[340,173,167]],[1710119256,[340,196,144]],[1710119257,[340,217,123]],[1710119258,[163,132,31]],[1710119259,[0,0,0]],[1710119260,[0,0,0]],[1710119261,[0,0,0]],[1710119262,[0,0,0]],[1710119263,[0,0,0]],[1710119264,[0,0,0]],[1710119265,[0,0,0]],[1710119266,[0,0,0]],[1710119267,[0,0,0]]]);
var requestsChart = new Highcharts.StockChart({
chart: {
renderTo: 'requests',
zoomType: 'x',
marginBottom: 60
},
credits: { enabled: false },
legend: {
enabled: true,
floating: true,
y: -65,
borderWidth: 0,
itemStyle: { fontWeight: "normal" },
symbolRadius: 0
},
title: { text: 'A title to let highcharts reserve the place for the title set later' },
navigator: {
maskInside: false
},
rangeSelector: {
buttonSpacing: 0,
buttonTheme: {
fill: '#CFC9C6',
padding: 1,
stroke: '#000000',
'stroke-width': 0.25,
style: {
color: '#000000',
fontWeight: 'bold',
},
states: {
stroke: '#000000',
'stroke-width': 0.25,
hover: {
fill: '#92918C',
style: { color: 'black' }
},