-
Notifications
You must be signed in to change notification settings - Fork 923
/
Copy pathindex.html
1215 lines (1145 loc) · 95.6 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="shortcut icon" type="image/x-icon" href="style/favicon.ico"/>
<link href="style/style.css" rel="stylesheet" type="text/css" />
<link href="style/bootstrap.min.css" rel="stylesheet" type="text/css" />
<script src="js/jquery-3.5.1.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/gatling.js"></script>
<script src="js/menu.js"></script>
<script src="js/ellipsis.js"></script>
<script src="js/all_sessions.js"></script>
<script src="js/stats.js"></script>
<script src="js/highstock.js"></script>
<script src="js/highcharts-more.js"></script>
<script src="js/theme.js"></script>
<script src="js/unpack.js"></script>
<title>Gatling Stats - Global Information</title>
</head>
<body>
<script>
const storedTheme = localStorage.getItem('theme') || (window.matchMedia("(prefers-color-scheme: dark)").matches ? "dark" : "light");
if (storedTheme) document.documentElement.setAttribute('data-theme', storedTheme)
function toggleTheme() {
const currentTheme = document.documentElement.getAttribute("data-theme");
const targetTheme = currentTheme === "light" ? "dark" : "light";
document.documentElement.setAttribute('data-theme', targetTheme)
localStorage.setItem('theme', targetTheme);
};
</script>
<div class="app-container">
<div class="frise"></div>
<div class="head">
<div class="gatling-open-source">
<a class="gatling-logo gatling-logo-light" href="https://gatling.io" target="blank_" title="Gatling Home Page"><img alt="Gatling" src="style/logo-light.svg"/></a>
<a class="gatling-logo gatling-logo-dark" href="https://gatling.io" target="blank_" title="Gatling Home Page"><img alt="Gatling" src="style/logo-dark.svg"/></a>
<a class="gatling-documentation" href="https://gatling.io/docs/" target="_blank">Documentation</a>
</div>
<div class="nav spacer"></div>
<a class="enterprise" href="https://gatling.io/enterprise/next-step/" target="_blank"><strong>Try</strong>
<img class="logo-enterprise-light" alt="Gatling Enterprise" src="style/logo-enterprise-light.svg"/>
<img class="logo-enterprise-dark" alt="Gatling Enterprise" src="style/logo-enterprise-dark.svg"/>
</a>
<button id="theme-toggle" class="theme-toggle" type="button" onclick="toggleTheme()" aria-label="Toggle user interface mode">
<span class="toggle-dark"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-moon"><path d="M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z"></path></svg></span>
<span class="toggle-light"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-sun"><circle cx="12" cy="12" r="5"></circle><line x1="12" y1="1" x2="12" y2="3"></line><line x1="12" y1="21" x2="12" y2="23"></line><line x1="4.22" y1="4.22" x2="5.64" y2="5.64"></line><line x1="18.36" y1="18.36" x2="19.78" y2="19.78"></line><line x1="1" y1="12" x2="3" y2="12"></line><line x1="21" y1="12" x2="23" y2="12"></line><line x1="4.22" y1="19.78" x2="5.64" y2="18.36"></line><line x1="18.36" y1="5.64" x2="19.78" y2="4.22"></line></svg></span>
</button>
</div>
<div class="container details">
<div class="nav">
<ul></ul>
</div>
<div class="cadre">
<div class="content">
<div class="content-header">
<div class="onglet">
RinhaBackendCrebitosSimulation
</div>
<div class="sous-menu" id="sousMenu">
<div class="sous-menu-spacer">
<div class="item ouvert"><a href="index.html">Global</a></div>
<div class="item "><a id="details_link" href="#">Details</a></div>
</div>
</div>
</div>
<div class="content-in">
<div class="container-article">
<div class="article">
<div class="schema-container">
<div id="ranges" class="schema ranges">
</div>
<div class="schema polar">
<div id="container_number_of_requests"></div>
</div>
<div class="simulation-card">
<div class="simulation-version-information">
<span class="simulation-information-title">Gatling Version</span>
<span class="simulation-information-item">
<span class="simulation-information-label">Version: </span>
<span>3.10.3</span>
</span>
<span class="simulation-information-item">
<span class="simulation-information-label">Released: </span>
<span>2023-12-20</span>
</span>
</div>
<div id="simulation-information" class="simulation-version-information">
<span class="simulation-information-title">Run Information</span>
<div class="simulation-information-container">
<span class="simulation-information-item">
<span class="simulation-information-label">Date: </span>
<span>2024-02-25 02:33:45 GMT</span>
</span>
<span class="simulation-information-item">
<span class="simulation-information-label">Duration: </span>
<span>4m 4s </span>
</span>
<span class="simulation-tooltip simulation-information-item description" title="Description" data-content="Rinha de Backend - 2024/Q1: Crébito - udleinati">
<span class="simulation-information-label">Description: </span>
<span>Rinha de Backend - 2024/Q1: Crébito - udleinati</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.u.NoSuchElementException: No attribute named 'limite' is defined<span class="value" style="display:none">0</span></td>
<td class="value error-col-2 total ko">19860</td>
<td class="value error-col-3 total ko">99.644 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">status.find.is(200), but actually found 422<span class="value" style="display:none">1</span></td>
<td class="value error-col-2 total ko">50</td>
<td class="value error-col-3 total ko">0.251 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">status.find.in(200), but actually found 422<span class="value" style="display:none">2</span></td>
<td class="value error-col-2 total ko">15</td>
<td class="value error-col-3 total ko">0.075 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">jmesPath(ultimas_transacoes[0].descricao).find.is(devolve), but actually found nothing<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.025 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">jmesPath(saldo.total).find.is(-25), but actually found 0<span class="value" style="display:none">4</span></td>
<td class="value error-col-2 total ko">1</td>
<td class="value error-col-3 total ko">0.005 %</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: [
[1708828426000,0],[1708828427000,0],[1708828428000,0],[1708828429000,0],[1708828430000,1],[1708828431000,2],[1708828432000,2],[1708828433000,4],[1708828434000,4],[1708828435000,5],[1708828436000,6],[1708828437000,7],[1708828438000,8],[1708828439000,8],[1708828440000,10],[1708828441000,10],[1708828442000,12],[1708828443000,12],[1708828444000,14],[1708828445000,14],[1708828446000,15],[1708828447000,16],[1708828448000,17],[1708828449000,17],[1708828450000,19],[1708828451000,20],[1708828452000,20],[1708828453000,22],[1708828454000,22],[1708828455000,23],[1708828456000,25],[1708828457000,25],[1708828458000,26],[1708828459000,26],[1708828460000,28],[1708828461000,29],[1708828462000,30],[1708828463000,30],[1708828464000,32],[1708828465000,32],[1708828466000,33],[1708828467000,34],[1708828468000,35],[1708828469000,36],[1708828470000,37],[1708828471000,38],[1708828472000,39],[1708828473000,39],[1708828474000,41],[1708828475000,41],[1708828476000,43],[1708828477000,43],[1708828478000,44],[1708828479000,45],[1708828480000,46],[1708828481000,47],[1708828482000,48],[1708828483000,48],[1708828484000,50],[1708828485000,50],[1708828486000,52],[1708828487000,52],[1708828488000,53],[1708828489000,55],[1708828490000,56],[1708828491000,56],[1708828492000,58],[1708828493000,59],[1708828494000,60],[1708828495000,59],[1708828496000,62],[1708828497000,62],[1708828498000,63],[1708828499000,63],[1708828500000,64],[1708828501000,65],[1708828502000,66],[1708828503000,67],[1708828504000,68],[1708828505000,68],[1708828506000,70],[1708828507000,71],[1708828508000,72],[1708828509000,72],[1708828510000,73],[1708828511000,74],[1708828512000,75],[1708828513000,76],[1708828514000,77],[1708828515000,78],[1708828516000,79],[1708828517000,79],[1708828518000,81],[1708828519000,81],[1708828520000,82],[1708828521000,83],[1708828522000,85],[1708828523000,85],[1708828524000,86],[1708828525000,86],[1708828526000,88],[1708828527000,89],[1708828528000,89],[1708828529000,91],[1708828530000,91],[1708828531000,92],[1708828532000,94],[1708828533000,94],[1708828534000,95],[1708828535000,96],[1708828536000,97],[1708828537000,97],[1708828538000,99],[1708828539000,99],[1708828540000,101],[1708828541000,101],[1708828542000,103],[1708828543000,103],[1708828544000,104],[1708828545000,105],[1708828546000,106],[1708828547000,107],[1708828548000,107],[1708828549000,109],[1708828550000,110],[1708828551000,110],[1708828552000,110],[1708828553000,110],[1708828554000,110],[1708828555000,110],[1708828556000,110],[1708828557000,110],[1708828558000,110],[1708828559000,110],[1708828560000,110],[1708828561000,110],[1708828562000,110],[1708828563000,110],[1708828564000,110],[1708828565000,110],[1708828566000,110],[1708828567000,110],[1708828568000,110],[1708828569000,110],[1708828570000,110],[1708828571000,110],[1708828572000,110],[1708828573000,110],[1708828574000,110],[1708828575000,110],[1708828576000,110],[1708828577000,110],[1708828578000,110],[1708828579000,110],[1708828580000,110],[1708828581000,110],[1708828582000,110],[1708828583000,110],[1708828584000,110],[1708828585000,111],[1708828586000,110],[1708828587000,110],[1708828588000,110],[1708828589000,110],[1708828590000,110],[1708828591000,111],[1708828592000,110],[1708828593000,110],[1708828594000,110],[1708828595000,110],[1708828596000,110],[1708828597000,110],[1708828598000,110],[1708828599000,110],[1708828600000,110],[1708828601000,110],[1708828602000,110],[1708828603000,110],[1708828604000,110],[1708828605000,110],[1708828606000,110],[1708828607000,110],[1708828608000,110],[1708828609000,110],[1708828610000,110],[1708828611000,112],[1708828612000,110],[1708828613000,110],[1708828614000,110],[1708828615000,110],[1708828616000,110],[1708828617000,110],[1708828618000,110],[1708828619000,110],[1708828620000,110],[1708828621000,110],[1708828622000,110],[1708828623000,110],[1708828624000,110],[1708828625000,110],[1708828626000,110],[1708828627000,110],[1708828628000,110],[1708828629000,110],[1708828630000,110],[1708828631000,110],[1708828632000,110],[1708828633000,110],[1708828634000,110],[1708828635000,110],[1708828636000,110],[1708828637000,110],[1708828638000,113],[1708828639000,110],[1708828640000,110],[1708828641000,110],[1708828642000,110],[1708828643000,110],[1708828644000,110],[1708828645000,110],[1708828646000,110],[1708828647000,110],[1708828648000,110],[1708828649000,110],[1708828650000,110],[1708828651000,110],[1708828652000,110],[1708828653000,110],[1708828654000,110],[1708828655000,110],[1708828656000,110],[1708828657000,110],[1708828658000,110],[1708828659000,110],[1708828660000,110],[1708828661000,110],[1708828662000,110],[1708828663000,110],[1708828664000,110],[1708828665000,110],[1708828666000,110],[1708828667000,110],[1708828668000,110],[1708828669000,110],[1708828670000,108]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#68b65c',
name: 'débitos',
data: [
[1708828426000,0],[1708828427000,0],[1708828428000,0],[1708828429000,0],[1708828430000,1],[1708828431000,2],[1708828432000,4],[1708828433000,6],[1708828434000,7],[1708828435000,9],[1708828436000,11],[1708828437000,13],[1708828438000,15],[1708828439000,16],[1708828440000,19],[1708828441000,20],[1708828442000,22],[1708828443000,24],[1708828444000,25],[1708828445000,28],[1708828446000,29],[1708828447000,31],[1708828448000,33],[1708828449000,35],[1708828450000,37],[1708828451000,38],[1708828452000,40],[1708828453000,42],[1708828454000,44],[1708828455000,46],[1708828456000,47],[1708828457000,50],[1708828458000,51],[1708828459000,53],[1708828460000,56],[1708828461000,57],[1708828462000,60],[1708828463000,61],[1708828464000,62],[1708828465000,64],[1708828466000,66],[1708828467000,68],[1708828468000,69],[1708828469000,71],[1708828470000,74],[1708828471000,74],[1708828472000,77],[1708828473000,79],[1708828474000,80],[1708828475000,82],[1708828476000,84],[1708828477000,86],[1708828478000,88],[1708828479000,89],[1708828480000,92],[1708828481000,93],[1708828482000,95],[1708828483000,97],[1708828484000,98],[1708828485000,101],[1708828486000,102],[1708828487000,104],[1708828488000,106],[1708828489000,108],[1708828490000,110],[1708828491000,112],[1708828492000,114],[1708828493000,116],[1708828494000,118],[1708828495000,120],[1708828496000,120],[1708828497000,124],[1708828498000,124],[1708828499000,126],[1708828500000,128],[1708828501000,129],[1708828502000,132],[1708828503000,133],[1708828504000,135],[1708828505000,137],[1708828506000,139],[1708828507000,141],[1708828508000,142],[1708828509000,144],[1708828510000,147],[1708828511000,147],[1708828512000,150],[1708828513000,152],[1708828514000,153],[1708828515000,155],[1708828516000,157],[1708828517000,159],[1708828518000,161],[1708828519000,162],[1708828520000,165],[1708828521000,167],[1708828522000,169],[1708828523000,171],[1708828524000,171],[1708828525000,175],[1708828526000,176],[1708828527000,177],[1708828528000,179],[1708828529000,182],[1708828530000,183],[1708828531000,185],[1708828532000,187],[1708828533000,188],[1708828534000,190],[1708828535000,192],[1708828536000,193],[1708828537000,196],[1708828538000,197],[1708828539000,199],[1708828540000,201],[1708828541000,202],[1708828542000,205],[1708828543000,206],[1708828544000,208],[1708828545000,210],[1708828546000,212],[1708828547000,214],[1708828548000,215],[1708828549000,219],[1708828550000,220],[1708828551000,220],[1708828552000,220],[1708828553000,220],[1708828554000,220],[1708828555000,220],[1708828556000,220],[1708828557000,220],[1708828558000,220],[1708828559000,220],[1708828560000,220],[1708828561000,220],[1708828562000,220],[1708828563000,220],[1708828564000,220],[1708828565000,220],[1708828566000,222],[1708828567000,220],[1708828568000,220],[1708828569000,220],[1708828570000,220],[1708828571000,220],[1708828572000,220],[1708828573000,220],[1708828574000,220],[1708828575000,220],[1708828576000,220],[1708828577000,220],[1708828578000,220],[1708828579000,220],[1708828580000,220],[1708828581000,220],[1708828582000,220],[1708828583000,220],[1708828584000,220],[1708828585000,223],[1708828586000,220],[1708828587000,220],[1708828588000,220],[1708828589000,220],[1708828590000,220],[1708828591000,222],[1708828592000,220],[1708828593000,220],[1708828594000,220],[1708828595000,220],[1708828596000,220],[1708828597000,220],[1708828598000,220],[1708828599000,220],[1708828600000,220],[1708828601000,220],[1708828602000,220],[1708828603000,220],[1708828604000,220],[1708828605000,220],[1708828606000,220],[1708828607000,220],[1708828608000,220],[1708828609000,220],[1708828610000,220],[1708828611000,220],[1708828612000,220],[1708828613000,220],[1708828614000,220],[1708828615000,220],[1708828616000,220],[1708828617000,220],[1708828618000,220],[1708828619000,224],[1708828620000,220],[1708828621000,220],[1708828622000,220],[1708828623000,220],[1708828624000,220],[1708828625000,220],[1708828626000,220],[1708828627000,220],[1708828628000,220],[1708828629000,220],[1708828630000,220],[1708828631000,220],[1708828632000,220],[1708828633000,220],[1708828634000,220],[1708828635000,220],[1708828636000,220],[1708828637000,220],[1708828638000,228],[1708828639000,220],[1708828640000,220],[1708828641000,220],[1708828642000,220],[1708828643000,220],[1708828644000,220],[1708828645000,220],[1708828646000,220],[1708828647000,220],[1708828648000,220],[1708828649000,220],[1708828650000,220],[1708828651000,221],[1708828652000,220],[1708828653000,220],[1708828654000,220],[1708828655000,220],[1708828656000,220],[1708828657000,220],[1708828658000,220],[1708828659000,220],[1708828660000,220],[1708828661000,220],[1708828662000,220],[1708828663000,220],[1708828664000,220],[1708828665000,220],[1708828666000,220],[1708828667000,220],[1708828668000,220],[1708828669000,220],[1708828670000,217]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#f15b4f',
name: 'extratos',
data: [
[1708828426000,0],[1708828427000,0],[1708828428000,0],[1708828429000,0],[1708828430000,1],[1708828431000,2],[1708828432000,1],[1708828433000,1],[1708828434000,1],[1708828435000,1],[1708828436000,2],[1708828437000,1],[1708828438000,2],[1708828439000,2],[1708828440000,1],[1708828441000,2],[1708828442000,2],[1708828443000,2],[1708828444000,2],[1708828445000,2],[1708828446000,2],[1708828447000,2],[1708828448000,3],[1708828449000,2],[1708828450000,3],[1708828451000,2],[1708828452000,3],[1708828453000,2],[1708828454000,3],[1708828455000,3],[1708828456000,3],[1708828457000,3],[1708828458000,3],[1708828459000,3],[1708828460000,3],[1708828461000,4],[1708828462000,3],[1708828463000,3],[1708828464000,4],[1708828465000,3],[1708828466000,4],[1708828467000,4],[1708828468000,4],[1708828469000,4],[1708828470000,4],[1708828471000,4],[1708828472000,4],[1708828473000,4],[1708828474000,4],[1708828475000,4],[1708828476000,5],[1708828477000,4],[1708828478000,5],[1708828479000,5],[1708828480000,4],[1708828481000,5],[1708828482000,5],[1708828483000,5],[1708828484000,5],[1708828485000,5],[1708828486000,5],[1708828487000,5],[1708828488000,6],[1708828489000,5],[1708828490000,6],[1708828491000,5],[1708828492000,6],[1708828493000,5],[1708828494000,6],[1708828495000,6],[1708828496000,6],[1708828497000,6],[1708828498000,6],[1708828499000,6],[1708828500000,6],[1708828501000,7],[1708828502000,6],[1708828503000,6],[1708828504000,7],[1708828505000,6],[1708828506000,7],[1708828507000,7],[1708828508000,7],[1708828509000,7],[1708828510000,7],[1708828511000,7],[1708828512000,7],[1708828513000,7],[1708828514000,7],[1708828515000,7],[1708828516000,8],[1708828517000,7],[1708828518000,8],[1708828519000,8],[1708828520000,7],[1708828521000,8],[1708828522000,8],[1708828523000,8],[1708828524000,8],[1708828525000,8],[1708828526000,8],[1708828527000,8],[1708828528000,9],[1708828529000,8],[1708828530000,9],[1708828531000,8],[1708828532000,9],[1708828533000,8],[1708828534000,9],[1708828535000,9],[1708828536000,9],[1708828537000,9],[1708828538000,9],[1708828539000,9],[1708828540000,9],[1708828541000,10],[1708828542000,9],[1708828543000,9],[1708828544000,10],[1708828545000,9],[1708828546000,10],[1708828547000,10],[1708828548000,10],[1708828549000,10],[1708828550000,10],[1708828551000,10],[1708828552000,11],[1708828553000,10],[1708828554000,10],[1708828555000,10],[1708828556000,10],[1708828557000,10],[1708828558000,10],[1708828559000,10],[1708828560000,10],[1708828561000,10],[1708828562000,10],[1708828563000,10],[1708828564000,10],[1708828565000,10],[1708828566000,11],[1708828567000,10],[1708828568000,10],[1708828569000,10],[1708828570000,10],[1708828571000,10],[1708828572000,10],[1708828573000,10],[1708828574000,10],[1708828575000,10],[1708828576000,10],[1708828577000,10],[1708828578000,10],[1708828579000,10],[1708828580000,10],[1708828581000,10],[1708828582000,10],[1708828583000,10],[1708828584000,10],[1708828585000,10],[1708828586000,10],[1708828587000,10],[1708828588000,10],[1708828589000,10],[1708828590000,10],[1708828591000,11],[1708828592000,10],[1708828593000,10],[1708828594000,10],[1708828595000,10],[1708828596000,10],[1708828597000,10],[1708828598000,10],[1708828599000,10],[1708828600000,10],[1708828601000,10],[1708828602000,10],[1708828603000,10],[1708828604000,10],[1708828605000,10],[1708828606000,10],[1708828607000,10],[1708828608000,10],[1708828609000,10],[1708828610000,10],[1708828611000,10],[1708828612000,10],[1708828613000,10],[1708828614000,10],[1708828615000,10],[1708828616000,10],[1708828617000,10],[1708828618000,10],[1708828619000,11],[1708828620000,10],[1708828621000,10],[1708828622000,10],[1708828623000,10],[1708828624000,10],[1708828625000,10],[1708828626000,10],[1708828627000,10],[1708828628000,10],[1708828629000,10],[1708828630000,10],[1708828631000,10],[1708828632000,10],[1708828633000,10],[1708828634000,10],[1708828635000,10],[1708828636000,10],[1708828637000,10],[1708828638000,11],[1708828639000,10],[1708828640000,10],[1708828641000,10],[1708828642000,10],[1708828643000,10],[1708828644000,10],[1708828645000,10],[1708828646000,10],[1708828647000,10],[1708828648000,10],[1708828649000,10],[1708828650000,10],[1708828651000,11],[1708828652000,10],[1708828653000,10],[1708828654000,10],[1708828655000,10],[1708828656000,10],[1708828657000,10],[1708828658000,10],[1708828659000,10],[1708828660000,10],[1708828661000,10],[1708828662000,10],[1708828663000,10],[1708828664000,10],[1708828665000,10],[1708828666000,10],[1708828667000,10],[1708828668000,10],[1708828669000,10],[1708828670000,9]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FFDD00',
name: 'validação HTTP 404',
data: [
[1708828426000,0],[1708828427000,0],[1708828428000,0],[1708828429000,1],[1708828430000,1],[1708828431000,0],[1708828432000,0],[1708828433000,0],[1708828434000,0],[1708828435000,0],[1708828436000,0],[1708828437000,0],[1708828438000,0],[1708828439000,0],[1708828440000,0],[1708828441000,0],[1708828442000,0],[1708828443000,0],[1708828444000,0],[1708828445000,0],[1708828446000,0],[1708828447000,0],[1708828448000,0],[1708828449000,0],[1708828450000,0],[1708828451000,0],[1708828452000,0],[1708828453000,0],[1708828454000,0],[1708828455000,0],[1708828456000,0],[1708828457000,0],[1708828458000,0],[1708828459000,0],[1708828460000,0],[1708828461000,0],[1708828462000,0],[1708828463000,0],[1708828464000,0],[1708828465000,0],[1708828466000,0],[1708828467000,0],[1708828468000,0],[1708828469000,0],[1708828470000,0],[1708828471000,0],[1708828472000,0],[1708828473000,0],[1708828474000,0],[1708828475000,0],[1708828476000,0],[1708828477000,0],[1708828478000,0],[1708828479000,0],[1708828480000,0],[1708828481000,0],[1708828482000,0],[1708828483000,0],[1708828484000,0],[1708828485000,0],[1708828486000,0],[1708828487000,0],[1708828488000,0],[1708828489000,0],[1708828490000,0],[1708828491000,0],[1708828492000,0],[1708828493000,0],[1708828494000,0],[1708828495000,0],[1708828496000,0],[1708828497000,0],[1708828498000,0],[1708828499000,0],[1708828500000,0],[1708828501000,0],[1708828502000,0],[1708828503000,0],[1708828504000,0],[1708828505000,0],[1708828506000,0],[1708828507000,0],[1708828508000,0],[1708828509000,0],[1708828510000,0],[1708828511000,0],[1708828512000,0],[1708828513000,0],[1708828514000,0],[1708828515000,0],[1708828516000,0],[1708828517000,0],[1708828518000,0],[1708828519000,0],[1708828520000,0],[1708828521000,0],[1708828522000,0],[1708828523000,0],[1708828524000,0],[1708828525000,0],[1708828526000,0],[1708828527000,0],[1708828528000,0],[1708828529000,0],[1708828530000,0],[1708828531000,0],[1708828532000,0],[1708828533000,0],[1708828534000,0],[1708828535000,0],[1708828536000,0],[1708828537000,0],[1708828538000,0],[1708828539000,0],[1708828540000,0],[1708828541000,0],[1708828542000,0],[1708828543000,0],[1708828544000,0],[1708828545000,0],[1708828546000,0],[1708828547000,0],[1708828548000,0],[1708828549000,0],[1708828550000,0],[1708828551000,0],[1708828552000,0],[1708828553000,0],[1708828554000,0],[1708828555000,0],[1708828556000,0],[1708828557000,0],[1708828558000,0],[1708828559000,0],[1708828560000,0],[1708828561000,0],[1708828562000,0],[1708828563000,0],[1708828564000,0],[1708828565000,0],[1708828566000,0],[1708828567000,0],[1708828568000,0],[1708828569000,0],[1708828570000,0],[1708828571000,0],[1708828572000,0],[1708828573000,0],[1708828574000,0],[1708828575000,0],[1708828576000,0],[1708828577000,0],[1708828578000,0],[1708828579000,0],[1708828580000,0],[1708828581000,0],[1708828582000,0],[1708828583000,0],[1708828584000,0],[1708828585000,0],[1708828586000,0],[1708828587000,0],[1708828588000,0],[1708828589000,0],[1708828590000,0],[1708828591000,0],[1708828592000,0],[1708828593000,0],[1708828594000,0],[1708828595000,0],[1708828596000,0],[1708828597000,0],[1708828598000,0],[1708828599000,0],[1708828600000,0],[1708828601000,0],[1708828602000,0],[1708828603000,0],[1708828604000,0],[1708828605000,0],[1708828606000,0],[1708828607000,0],[1708828608000,0],[1708828609000,0],[1708828610000,0],[1708828611000,0],[1708828612000,0],[1708828613000,0],[1708828614000,0],[1708828615000,0],[1708828616000,0],[1708828617000,0],[1708828618000,0],[1708828619000,0],[1708828620000,0],[1708828621000,0],[1708828622000,0],[1708828623000,0],[1708828624000,0],[1708828625000,0],[1708828626000,0],[1708828627000,0],[1708828628000,0],[1708828629000,0],[1708828630000,0],[1708828631000,0],[1708828632000,0],[1708828633000,0],[1708828634000,0],[1708828635000,0],[1708828636000,0],[1708828637000,0],[1708828638000,0],[1708828639000,0],[1708828640000,0],[1708828641000,0],[1708828642000,0],[1708828643000,0],[1708828644000,0],[1708828645000,0],[1708828646000,0],[1708828647000,0],[1708828648000,0],[1708828649000,0],[1708828650000,0],[1708828651000,0],[1708828652000,0],[1708828653000,0],[1708828654000,0],[1708828655000,0],[1708828656000,0],[1708828657000,0],[1708828658000,0],[1708828659000,0],[1708828660000,0],[1708828661000,0],[1708828662000,0],[1708828663000,0],[1708828664000,0],[1708828665000,0],[1708828666000,0],[1708828667000,0],[1708828668000,0],[1708828669000,0],[1708828670000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00D5FF',
name: 'validações',
data: [
[1708828426000,0],[1708828427000,0],[1708828428000,0],[1708828429000,5],[1708828430000,5],[1708828431000,0],[1708828432000,0],[1708828433000,0],[1708828434000,0],[1708828435000,0],[1708828436000,0],[1708828437000,0],[1708828438000,0],[1708828439000,0],[1708828440000,0],[1708828441000,0],[1708828442000,0],[1708828443000,0],[1708828444000,0],[1708828445000,0],[1708828446000,0],[1708828447000,0],[1708828448000,0],[1708828449000,0],[1708828450000,0],[1708828451000,0],[1708828452000,0],[1708828453000,0],[1708828454000,0],[1708828455000,0],[1708828456000,0],[1708828457000,0],[1708828458000,0],[1708828459000,0],[1708828460000,0],[1708828461000,0],[1708828462000,0],[1708828463000,0],[1708828464000,0],[1708828465000,0],[1708828466000,0],[1708828467000,0],[1708828468000,0],[1708828469000,0],[1708828470000,0],[1708828471000,0],[1708828472000,0],[1708828473000,0],[1708828474000,0],[1708828475000,0],[1708828476000,0],[1708828477000,0],[1708828478000,0],[1708828479000,0],[1708828480000,0],[1708828481000,0],[1708828482000,0],[1708828483000,0],[1708828484000,0],[1708828485000,0],[1708828486000,0],[1708828487000,0],[1708828488000,0],[1708828489000,0],[1708828490000,0],[1708828491000,0],[1708828492000,0],[1708828493000,0],[1708828494000,0],[1708828495000,0],[1708828496000,0],[1708828497000,0],[1708828498000,0],[1708828499000,0],[1708828500000,0],[1708828501000,0],[1708828502000,0],[1708828503000,0],[1708828504000,0],[1708828505000,0],[1708828506000,0],[1708828507000,0],[1708828508000,0],[1708828509000,0],[1708828510000,0],[1708828511000,0],[1708828512000,0],[1708828513000,0],[1708828514000,0],[1708828515000,0],[1708828516000,0],[1708828517000,0],[1708828518000,0],[1708828519000,0],[1708828520000,0],[1708828521000,0],[1708828522000,0],[1708828523000,0],[1708828524000,0],[1708828525000,0],[1708828526000,0],[1708828527000,0],[1708828528000,0],[1708828529000,0],[1708828530000,0],[1708828531000,0],[1708828532000,0],[1708828533000,0],[1708828534000,0],[1708828535000,0],[1708828536000,0],[1708828537000,0],[1708828538000,0],[1708828539000,0],[1708828540000,0],[1708828541000,0],[1708828542000,0],[1708828543000,0],[1708828544000,0],[1708828545000,0],[1708828546000,0],[1708828547000,0],[1708828548000,0],[1708828549000,0],[1708828550000,0],[1708828551000,0],[1708828552000,0],[1708828553000,0],[1708828554000,0],[1708828555000,0],[1708828556000,0],[1708828557000,0],[1708828558000,0],[1708828559000,0],[1708828560000,0],[1708828561000,0],[1708828562000,0],[1708828563000,0],[1708828564000,0],[1708828565000,0],[1708828566000,0],[1708828567000,0],[1708828568000,0],[1708828569000,0],[1708828570000,0],[1708828571000,0],[1708828572000,0],[1708828573000,0],[1708828574000,0],[1708828575000,0],[1708828576000,0],[1708828577000,0],[1708828578000,0],[1708828579000,0],[1708828580000,0],[1708828581000,0],[1708828582000,0],[1708828583000,0],[1708828584000,0],[1708828585000,0],[1708828586000,0],[1708828587000,0],[1708828588000,0],[1708828589000,0],[1708828590000,0],[1708828591000,0],[1708828592000,0],[1708828593000,0],[1708828594000,0],[1708828595000,0],[1708828596000,0],[1708828597000,0],[1708828598000,0],[1708828599000,0],[1708828600000,0],[1708828601000,0],[1708828602000,0],[1708828603000,0],[1708828604000,0],[1708828605000,0],[1708828606000,0],[1708828607000,0],[1708828608000,0],[1708828609000,0],[1708828610000,0],[1708828611000,0],[1708828612000,0],[1708828613000,0],[1708828614000,0],[1708828615000,0],[1708828616000,0],[1708828617000,0],[1708828618000,0],[1708828619000,0],[1708828620000,0],[1708828621000,0],[1708828622000,0],[1708828623000,0],[1708828624000,0],[1708828625000,0],[1708828626000,0],[1708828627000,0],[1708828628000,0],[1708828629000,0],[1708828630000,0],[1708828631000,0],[1708828632000,0],[1708828633000,0],[1708828634000,0],[1708828635000,0],[1708828636000,0],[1708828637000,0],[1708828638000,0],[1708828639000,0],[1708828640000,0],[1708828641000,0],[1708828642000,0],[1708828643000,0],[1708828644000,0],[1708828645000,0],[1708828646000,0],[1708828647000,0],[1708828648000,0],[1708828649000,0],[1708828650000,0],[1708828651000,0],[1708828652000,0],[1708828653000,0],[1708828654000,0],[1708828655000,0],[1708828656000,0],[1708828657000,0],[1708828658000,0],[1708828659000,0],[1708828660000,0],[1708828661000,0],[1708828662000,0],[1708828663000,0],[1708828664000,0],[1708828665000,0],[1708828666000,0],[1708828667000,0],[1708828668000,0],[1708828669000,0],[1708828670000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00FF00',
name: 'validação concorrência saldo - 0',
data: [
[1708828426000,0],[1708828427000,0],[1708828428000,1],[1708828429000,0],[1708828430000,0],[1708828431000,0],[1708828432000,0],[1708828433000,0],[1708828434000,0],[1708828435000,0],[1708828436000,0],[1708828437000,0],[1708828438000,0],[1708828439000,0],[1708828440000,0],[1708828441000,0],[1708828442000,0],[1708828443000,0],[1708828444000,0],[1708828445000,0],[1708828446000,0],[1708828447000,0],[1708828448000,0],[1708828449000,0],[1708828450000,0],[1708828451000,0],[1708828452000,0],[1708828453000,0],[1708828454000,0],[1708828455000,0],[1708828456000,0],[1708828457000,0],[1708828458000,0],[1708828459000,0],[1708828460000,0],[1708828461000,0],[1708828462000,0],[1708828463000,0],[1708828464000,0],[1708828465000,0],[1708828466000,0],[1708828467000,0],[1708828468000,0],[1708828469000,0],[1708828470000,0],[1708828471000,0],[1708828472000,0],[1708828473000,0],[1708828474000,0],[1708828475000,0],[1708828476000,0],[1708828477000,0],[1708828478000,0],[1708828479000,0],[1708828480000,0],[1708828481000,0],[1708828482000,0],[1708828483000,0],[1708828484000,0],[1708828485000,0],[1708828486000,0],[1708828487000,0],[1708828488000,0],[1708828489000,0],[1708828490000,0],[1708828491000,0],[1708828492000,0],[1708828493000,0],[1708828494000,0],[1708828495000,0],[1708828496000,0],[1708828497000,0],[1708828498000,0],[1708828499000,0],[1708828500000,0],[1708828501000,0],[1708828502000,0],[1708828503000,0],[1708828504000,0],[1708828505000,0],[1708828506000,0],[1708828507000,0],[1708828508000,0],[1708828509000,0],[1708828510000,0],[1708828511000,0],[1708828512000,0],[1708828513000,0],[1708828514000,0],[1708828515000,0],[1708828516000,0],[1708828517000,0],[1708828518000,0],[1708828519000,0],[1708828520000,0],[1708828521000,0],[1708828522000,0],[1708828523000,0],[1708828524000,0],[1708828525000,0],[1708828526000,0],[1708828527000,0],[1708828528000,0],[1708828529000,0],[1708828530000,0],[1708828531000,0],[1708828532000,0],[1708828533000,0],[1708828534000,0],[1708828535000,0],[1708828536000,0],[1708828537000,0],[1708828538000,0],[1708828539000,0],[1708828540000,0],[1708828541000,0],[1708828542000,0],[1708828543000,0],[1708828544000,0],[1708828545000,0],[1708828546000,0],[1708828547000,0],[1708828548000,0],[1708828549000,0],[1708828550000,0],[1708828551000,0],[1708828552000,0],[1708828553000,0],[1708828554000,0],[1708828555000,0],[1708828556000,0],[1708828557000,0],[1708828558000,0],[1708828559000,0],[1708828560000,0],[1708828561000,0],[1708828562000,0],[1708828563000,0],[1708828564000,0],[1708828565000,0],[1708828566000,0],[1708828567000,0],[1708828568000,0],[1708828569000,0],[1708828570000,0],[1708828571000,0],[1708828572000,0],[1708828573000,0],[1708828574000,0],[1708828575000,0],[1708828576000,0],[1708828577000,0],[1708828578000,0],[1708828579000,0],[1708828580000,0],[1708828581000,0],[1708828582000,0],[1708828583000,0],[1708828584000,0],[1708828585000,0],[1708828586000,0],[1708828587000,0],[1708828588000,0],[1708828589000,0],[1708828590000,0],[1708828591000,0],[1708828592000,0],[1708828593000,0],[1708828594000,0],[1708828595000,0],[1708828596000,0],[1708828597000,0],[1708828598000,0],[1708828599000,0],[1708828600000,0],[1708828601000,0],[1708828602000,0],[1708828603000,0],[1708828604000,0],[1708828605000,0],[1708828606000,0],[1708828607000,0],[1708828608000,0],[1708828609000,0],[1708828610000,0],[1708828611000,0],[1708828612000,0],[1708828613000,0],[1708828614000,0],[1708828615000,0],[1708828616000,0],[1708828617000,0],[1708828618000,0],[1708828619000,0],[1708828620000,0],[1708828621000,0],[1708828622000,0],[1708828623000,0],[1708828624000,0],[1708828625000,0],[1708828626000,0],[1708828627000,0],[1708828628000,0],[1708828629000,0],[1708828630000,0],[1708828631000,0],[1708828632000,0],[1708828633000,0],[1708828634000,0],[1708828635000,0],[1708828636000,0],[1708828637000,0],[1708828638000,0],[1708828639000,0],[1708828640000,0],[1708828641000,0],[1708828642000,0],[1708828643000,0],[1708828644000,0],[1708828645000,0],[1708828646000,0],[1708828647000,0],[1708828648000,0],[1708828649000,0],[1708828650000,0],[1708828651000,0],[1708828652000,0],[1708828653000,0],[1708828654000,0],[1708828655000,0],[1708828656000,0],[1708828657000,0],[1708828658000,0],[1708828659000,0],[1708828660000,0],[1708828661000,0],[1708828662000,0],[1708828663000,0],[1708828664000,0],[1708828665000,0],[1708828666000,0],[1708828667000,0],[1708828668000,0],[1708828669000,0],[1708828670000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#9D00FF',
name: 'validação concorrência transações - c',
data: [
[1708828426000,0],[1708828427000,25],[1708828428000,25],[1708828429000,0],[1708828430000,0],[1708828431000,0],[1708828432000,0],[1708828433000,0],[1708828434000,0],[1708828435000,0],[1708828436000,0],[1708828437000,0],[1708828438000,0],[1708828439000,0],[1708828440000,0],[1708828441000,0],[1708828442000,0],[1708828443000,0],[1708828444000,0],[1708828445000,0],[1708828446000,0],[1708828447000,0],[1708828448000,0],[1708828449000,0],[1708828450000,0],[1708828451000,0],[1708828452000,0],[1708828453000,0],[1708828454000,0],[1708828455000,0],[1708828456000,0],[1708828457000,0],[1708828458000,0],[1708828459000,0],[1708828460000,0],[1708828461000,0],[1708828462000,0],[1708828463000,0],[1708828464000,0],[1708828465000,0],[1708828466000,0],[1708828467000,0],[1708828468000,0],[1708828469000,0],[1708828470000,0],[1708828471000,0],[1708828472000,0],[1708828473000,0],[1708828474000,0],[1708828475000,0],[1708828476000,0],[1708828477000,0],[1708828478000,0],[1708828479000,0],[1708828480000,0],[1708828481000,0],[1708828482000,0],[1708828483000,0],[1708828484000,0],[1708828485000,0],[1708828486000,0],[1708828487000,0],[1708828488000,0],[1708828489000,0],[1708828490000,0],[1708828491000,0],[1708828492000,0],[1708828493000,0],[1708828494000,0],[1708828495000,0],[1708828496000,0],[1708828497000,0],[1708828498000,0],[1708828499000,0],[1708828500000,0],[1708828501000,0],[1708828502000,0],[1708828503000,0],[1708828504000,0],[1708828505000,0],[1708828506000,0],[1708828507000,0],[1708828508000,0],[1708828509000,0],[1708828510000,0],[1708828511000,0],[1708828512000,0],[1708828513000,0],[1708828514000,0],[1708828515000,0],[1708828516000,0],[1708828517000,0],[1708828518000,0],[1708828519000,0],[1708828520000,0],[1708828521000,0],[1708828522000,0],[1708828523000,0],[1708828524000,0],[1708828525000,0],[1708828526000,0],[1708828527000,0],[1708828528000,0],[1708828529000,0],[1708828530000,0],[1708828531000,0],[1708828532000,0],[1708828533000,0],[1708828534000,0],[1708828535000,0],[1708828536000,0],[1708828537000,0],[1708828538000,0],[1708828539000,0],[1708828540000,0],[1708828541000,0],[1708828542000,0],[1708828543000,0],[1708828544000,0],[1708828545000,0],[1708828546000,0],[1708828547000,0],[1708828548000,0],[1708828549000,0],[1708828550000,0],[1708828551000,0],[1708828552000,0],[1708828553000,0],[1708828554000,0],[1708828555000,0],[1708828556000,0],[1708828557000,0],[1708828558000,0],[1708828559000,0],[1708828560000,0],[1708828561000,0],[1708828562000,0],[1708828563000,0],[1708828564000,0],[1708828565000,0],[1708828566000,0],[1708828567000,0],[1708828568000,0],[1708828569000,0],[1708828570000,0],[1708828571000,0],[1708828572000,0],[1708828573000,0],[1708828574000,0],[1708828575000,0],[1708828576000,0],[1708828577000,0],[1708828578000,0],[1708828579000,0],[1708828580000,0],[1708828581000,0],[1708828582000,0],[1708828583000,0],[1708828584000,0],[1708828585000,0],[1708828586000,0],[1708828587000,0],[1708828588000,0],[1708828589000,0],[1708828590000,0],[1708828591000,0],[1708828592000,0],[1708828593000,0],[1708828594000,0],[1708828595000,0],[1708828596000,0],[1708828597000,0],[1708828598000,0],[1708828599000,0],[1708828600000,0],[1708828601000,0],[1708828602000,0],[1708828603000,0],[1708828604000,0],[1708828605000,0],[1708828606000,0],[1708828607000,0],[1708828608000,0],[1708828609000,0],[1708828610000,0],[1708828611000,0],[1708828612000,0],[1708828613000,0],[1708828614000,0],[1708828615000,0],[1708828616000,0],[1708828617000,0],[1708828618000,0],[1708828619000,0],[1708828620000,0],[1708828621000,0],[1708828622000,0],[1708828623000,0],[1708828624000,0],[1708828625000,0],[1708828626000,0],[1708828627000,0],[1708828628000,0],[1708828629000,0],[1708828630000,0],[1708828631000,0],[1708828632000,0],[1708828633000,0],[1708828634000,0],[1708828635000,0],[1708828636000,0],[1708828637000,0],[1708828638000,0],[1708828639000,0],[1708828640000,0],[1708828641000,0],[1708828642000,0],[1708828643000,0],[1708828644000,0],[1708828645000,0],[1708828646000,0],[1708828647000,0],[1708828648000,0],[1708828649000,0],[1708828650000,0],[1708828651000,0],[1708828652000,0],[1708828653000,0],[1708828654000,0],[1708828655000,0],[1708828656000,0],[1708828657000,0],[1708828658000,0],[1708828659000,0],[1708828660000,0],[1708828661000,0],[1708828662000,0],[1708828663000,0],[1708828664000,0],[1708828665000,0],[1708828666000,0],[1708828667000,0],[1708828668000,0],[1708828669000,0],[1708828670000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FF00E1',
name: 'validação concorrência saldo - -25',
data: [
[1708828426000,1],[1708828427000,1],[1708828428000,0],[1708828429000,0],[1708828430000,0],[1708828431000,0],[1708828432000,0],[1708828433000,0],[1708828434000,0],[1708828435000,0],[1708828436000,0],[1708828437000,0],[1708828438000,0],[1708828439000,0],[1708828440000,0],[1708828441000,0],[1708828442000,0],[1708828443000,0],[1708828444000,0],[1708828445000,0],[1708828446000,0],[1708828447000,0],[1708828448000,0],[1708828449000,0],[1708828450000,0],[1708828451000,0],[1708828452000,0],[1708828453000,0],[1708828454000,0],[1708828455000,0],[1708828456000,0],[1708828457000,0],[1708828458000,0],[1708828459000,0],[1708828460000,0],[1708828461000,0],[1708828462000,0],[1708828463000,0],[1708828464000,0],[1708828465000,0],[1708828466000,0],[1708828467000,0],[1708828468000,0],[1708828469000,0],[1708828470000,0],[1708828471000,0],[1708828472000,0],[1708828473000,0],[1708828474000,0],[1708828475000,0],[1708828476000,0],[1708828477000,0],[1708828478000,0],[1708828479000,0],[1708828480000,0],[1708828481000,0],[1708828482000,0],[1708828483000,0],[1708828484000,0],[1708828485000,0],[1708828486000,0],[1708828487000,0],[1708828488000,0],[1708828489000,0],[1708828490000,0],[1708828491000,0],[1708828492000,0],[1708828493000,0],[1708828494000,0],[1708828495000,0],[1708828496000,0],[1708828497000,0],[1708828498000,0],[1708828499000,0],[1708828500000,0],[1708828501000,0],[1708828502000,0],[1708828503000,0],[1708828504000,0],[1708828505000,0],[1708828506000,0],[1708828507000,0],[1708828508000,0],[1708828509000,0],[1708828510000,0],[1708828511000,0],[1708828512000,0],[1708828513000,0],[1708828514000,0],[1708828515000,0],[1708828516000,0],[1708828517000,0],[1708828518000,0],[1708828519000,0],[1708828520000,0],[1708828521000,0],[1708828522000,0],[1708828523000,0],[1708828524000,0],[1708828525000,0],[1708828526000,0],[1708828527000,0],[1708828528000,0],[1708828529000,0],[1708828530000,0],[1708828531000,0],[1708828532000,0],[1708828533000,0],[1708828534000,0],[1708828535000,0],[1708828536000,0],[1708828537000,0],[1708828538000,0],[1708828539000,0],[1708828540000,0],[1708828541000,0],[1708828542000,0],[1708828543000,0],[1708828544000,0],[1708828545000,0],[1708828546000,0],[1708828547000,0],[1708828548000,0],[1708828549000,0],[1708828550000,0],[1708828551000,0],[1708828552000,0],[1708828553000,0],[1708828554000,0],[1708828555000,0],[1708828556000,0],[1708828557000,0],[1708828558000,0],[1708828559000,0],[1708828560000,0],[1708828561000,0],[1708828562000,0],[1708828563000,0],[1708828564000,0],[1708828565000,0],[1708828566000,0],[1708828567000,0],[1708828568000,0],[1708828569000,0],[1708828570000,0],[1708828571000,0],[1708828572000,0],[1708828573000,0],[1708828574000,0],[1708828575000,0],[1708828576000,0],[1708828577000,0],[1708828578000,0],[1708828579000,0],[1708828580000,0],[1708828581000,0],[1708828582000,0],[1708828583000,0],[1708828584000,0],[1708828585000,0],[1708828586000,0],[1708828587000,0],[1708828588000,0],[1708828589000,0],[1708828590000,0],[1708828591000,0],[1708828592000,0],[1708828593000,0],[1708828594000,0],[1708828595000,0],[1708828596000,0],[1708828597000,0],[1708828598000,0],[1708828599000,0],[1708828600000,0],[1708828601000,0],[1708828602000,0],[1708828603000,0],[1708828604000,0],[1708828605000,0],[1708828606000,0],[1708828607000,0],[1708828608000,0],[1708828609000,0],[1708828610000,0],[1708828611000,0],[1708828612000,0],[1708828613000,0],[1708828614000,0],[1708828615000,0],[1708828616000,0],[1708828617000,0],[1708828618000,0],[1708828619000,0],[1708828620000,0],[1708828621000,0],[1708828622000,0],[1708828623000,0],[1708828624000,0],[1708828625000,0],[1708828626000,0],[1708828627000,0],[1708828628000,0],[1708828629000,0],[1708828630000,0],[1708828631000,0],[1708828632000,0],[1708828633000,0],[1708828634000,0],[1708828635000,0],[1708828636000,0],[1708828637000,0],[1708828638000,0],[1708828639000,0],[1708828640000,0],[1708828641000,0],[1708828642000,0],[1708828643000,0],[1708828644000,0],[1708828645000,0],[1708828646000,0],[1708828647000,0],[1708828648000,0],[1708828649000,0],[1708828650000,0],[1708828651000,0],[1708828652000,0],[1708828653000,0],[1708828654000,0],[1708828655000,0],[1708828656000,0],[1708828657000,0],[1708828658000,0],[1708828659000,0],[1708828660000,0],[1708828661000,0],[1708828662000,0],[1708828663000,0],[1708828664000,0],[1708828665000,0],[1708828666000,0],[1708828667000,0],[1708828668000,0],[1708828669000,0],[1708828670000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#AECAEB',
name: 'validação concorrência transações - d',
data: [
[1708828426000,25],[1708828427000,0],[1708828428000,0],[1708828429000,0],[1708828430000,0],[1708828431000,0],[1708828432000,0],[1708828433000,0],[1708828434000,0],[1708828435000,0],[1708828436000,0],[1708828437000,0],[1708828438000,0],[1708828439000,0],[1708828440000,0],[1708828441000,0],[1708828442000,0],[1708828443000,0],[1708828444000,0],[1708828445000,0],[1708828446000,0],[1708828447000,0],[1708828448000,0],[1708828449000,0],[1708828450000,0],[1708828451000,0],[1708828452000,0],[1708828453000,0],[1708828454000,0],[1708828455000,0],[1708828456000,0],[1708828457000,0],[1708828458000,0],[1708828459000,0],[1708828460000,0],[1708828461000,0],[1708828462000,0],[1708828463000,0],[1708828464000,0],[1708828465000,0],[1708828466000,0],[1708828467000,0],[1708828468000,0],[1708828469000,0],[1708828470000,0],[1708828471000,0],[1708828472000,0],[1708828473000,0],[1708828474000,0],[1708828475000,0],[1708828476000,0],[1708828477000,0],[1708828478000,0],[1708828479000,0],[1708828480000,0],[1708828481000,0],[1708828482000,0],[1708828483000,0],[1708828484000,0],[1708828485000,0],[1708828486000,0],[1708828487000,0],[1708828488000,0],[1708828489000,0],[1708828490000,0],[1708828491000,0],[1708828492000,0],[1708828493000,0],[1708828494000,0],[1708828495000,0],[1708828496000,0],[1708828497000,0],[1708828498000,0],[1708828499000,0],[1708828500000,0],[1708828501000,0],[1708828502000,0],[1708828503000,0],[1708828504000,0],[1708828505000,0],[1708828506000,0],[1708828507000,0],[1708828508000,0],[1708828509000,0],[1708828510000,0],[1708828511000,0],[1708828512000,0],[1708828513000,0],[1708828514000,0],[1708828515000,0],[1708828516000,0],[1708828517000,0],[1708828518000,0],[1708828519000,0],[1708828520000,0],[1708828521000,0],[1708828522000,0],[1708828523000,0],[1708828524000,0],[1708828525000,0],[1708828526000,0],[1708828527000,0],[1708828528000,0],[1708828529000,0],[1708828530000,0],[1708828531000,0],[1708828532000,0],[1708828533000,0],[1708828534000,0],[1708828535000,0],[1708828536000,0],[1708828537000,0],[1708828538000,0],[1708828539000,0],[1708828540000,0],[1708828541000,0],[1708828542000,0],[1708828543000,0],[1708828544000,0],[1708828545000,0],[1708828546000,0],[1708828547000,0],[1708828548000,0],[1708828549000,0],[1708828550000,0],[1708828551000,0],[1708828552000,0],[1708828553000,0],[1708828554000,0],[1708828555000,0],[1708828556000,0],[1708828557000,0],[1708828558000,0],[1708828559000,0],[1708828560000,0],[1708828561000,0],[1708828562000,0],[1708828563000,0],[1708828564000,0],[1708828565000,0],[1708828566000,0],[1708828567000,0],[1708828568000,0],[1708828569000,0],[1708828570000,0],[1708828571000,0],[1708828572000,0],[1708828573000,0],[1708828574000,0],[1708828575000,0],[1708828576000,0],[1708828577000,0],[1708828578000,0],[1708828579000,0],[1708828580000,0],[1708828581000,0],[1708828582000,0],[1708828583000,0],[1708828584000,0],[1708828585000,0],[1708828586000,0],[1708828587000,0],[1708828588000,0],[1708828589000,0],[1708828590000,0],[1708828591000,0],[1708828592000,0],[1708828593000,0],[1708828594000,0],[1708828595000,0],[1708828596000,0],[1708828597000,0],[1708828598000,0],[1708828599000,0],[1708828600000,0],[1708828601000,0],[1708828602000,0],[1708828603000,0],[1708828604000,0],[1708828605000,0],[1708828606000,0],[1708828607000,0],[1708828608000,0],[1708828609000,0],[1708828610000,0],[1708828611000,0],[1708828612000,0],[1708828613000,0],[1708828614000,0],[1708828615000,0],[1708828616000,0],[1708828617000,0],[1708828618000,0],[1708828619000,0],[1708828620000,0],[1708828621000,0],[1708828622000,0],[1708828623000,0],[1708828624000,0],[1708828625000,0],[1708828626000,0],[1708828627000,0],[1708828628000,0],[1708828629000,0],[1708828630000,0],[1708828631000,0],[1708828632000,0],[1708828633000,0],[1708828634000,0],[1708828635000,0],[1708828636000,0],[1708828637000,0],[1708828638000,0],[1708828639000,0],[1708828640000,0],[1708828641000,0],[1708828642000,0],[1708828643000,0],[1708828644000,0],[1708828645000,0],[1708828646000,0],[1708828647000,0],[1708828648000,0],[1708828649000,0],[1708828650000,0],[1708828651000,0],[1708828652000,0],[1708828653000,0],[1708828654000,0],[1708828655000,0],[1708828656000,0],[1708828657000,0],[1708828658000,0],[1708828659000,0],[1708828660000,0],[1708828661000,0],[1708828662000,0],[1708828663000,0],[1708828664000,0],[1708828665000,0],[1708828666000,0],[1708828667000,0],[1708828668000,0],[1708828669000,0],[1708828670000,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: ['1', '2', '4', '5', '6', '8', '9', '11', '12', '14', '15', '17', '18', '19', '21', '22', '24', '25', '27', '28', '30', '31', '32', '34', '35', '37', '38', '40', '41', '42', '44', '45', '47', '48', '50', '51', '53', '54', '55', '57', '58', '60', '61', '63', '64', '66', '67', '68', '70', '71', '73', '74', '76', '77', '78', '80', '81', '83', '84', '86', '87', '89', '90', '91', '93', '94', '96', '97', '99', '100', '102', '103', '104', '106', '107', '109', '110', '112', '113', '114', '116', '117', '119', '120', '122', '123', '125', '126', '127', '129', '130', '132', '133', '135', '136', '138', '139', '140', '142', '143'],
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: [
37.11,19.98,8.99,0.54,0.25,0.05,0.05,0.01,0.02,0.03,0.01,0.02,0.0,0.01,0.0,0.02,0.01,0.0,0.01,0.0,0.01,0.0,0.01,0.0,0.0,0.01,0.0,0.0,0.0,0.01,0.0,0.01,0.0,0.0,0.02,0.0,0.01,0.0,0.01,0.0,0.01,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.0,0.0,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
],
tooltip: { yDecimals: 0, ySuffix: 'ms' }
},
{
type: 'column',
color: '#f15b4f',
name: 'KO',
data: [
17.65,9.04,5.12,0.12,0.09,0.02,0.01,0.0,0.0,0.01,0.01,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.0,0.01,0.0,0.0,0.01,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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
],
tooltip: { yDecimals: 0, ySuffix: 'ms' }
}
]
});
responsetimeDistributionChart.setTitle({
text: '<span class="chart_title">Response Time Distribution</span>',
useHTML: true
});
var responsetimepercentilesovertimeokPercentiles = unpack([[1708828426,null],[1708828427,null],[1708828428,null],[1708828429,[4,4,4,4,4,4,4,4,4,4]],[1708828430,[0,1,2,14,15,17,24,26,28,29]],[1708828431,[4,4,5,5,5,5,5,5,5,6]],[1708828432,[4,4,4,6,7,7,8,9,9,10]],[1708828433,[3,3,4,4,4,4,5,5,5,6]],[1708828434,[2,3,3,3,3,3,4,5,6,7]],[1708828435,[3,3,3,3,4,6,7,8,9,10]],[1708828436,[2,2,3,3,3,4,4,5,5,6]],[1708828437,[2,2,2,3,3,3,3,4,5,6]],[1708828438,[2,2,2,3,3,3,3,3,5,6]],[1708828439,[2,2,3,3,3,3,4,4,4,5]],[1708828440,[2,2,3,3,3,3,3,3,4,5]],[1708828441,[2,2,3,3,3,3,3,3,3,4]],[1708828442,[2,2,2,3,3,3,3,4,5,6]],[1708828443,[2,2,2,3,3,3,3,4,5,5]],[1708828444,[2,2,2,2,3,3,3,3,4,5]],[1708828445,[2,2,2,3,3,3,3,5,5,5]],[1708828446,[1,2,2,2,2,2,3,3,3,3]],[1708828447,[1,2,2,2,2,2,2,3,3,4]],[1708828448,[1,1,2,2,2,2,3,3,4,5]],[1708828449,[1,1,2,2,2,2,2,3,3,4]],[1708828450,[1,2,2,2,2,2,2,3,3,4]],[1708828451,[1,1,2,2,2,2,2,3,4,5]],[1708828452,[1,1,2,2,2,2,2,3,3,3]],[1708828453,[1,2,2,2,2,2,2,2,4,5]],[1708828454,[1,2,2,2,2,2,2,3,3,3]],[1708828455,[1,2,2,2,2,3,3,3,6,9]],[1708828456,[1,1,2,2,2,2,2,2,2,3]],[1708828457,[1,1,2,2,2,2,3,3,4,5]],[1708828458,[1,1,2,2,2,2,2,3,3,3]],[1708828459,[1,1,2,2,2,2,2,3,4,4]],[1708828460,[1,2,2,2,2,2,2,3,4,6]],[1708828461,[1,1,1,2,2,2,2,3,3,3]],[1708828462,[1,1,2,2,2,2,2,3,3,4]],[1708828463,[1,1,2,2,2,2,2,2,3,3]],[1708828464,[1,1,1,2,2,2,2,2,4,4]],[1708828465,[1,2,2,2,2,2,2,3,4,4]],[1708828466,[1,1,2,2,2,2,2,2,3,4]],[1708828467,[1,2,2,2,2,2,3,3,4,6]],[1708828468,[1,2,2,2,2,2,2,3,3,3]],[1708828469,[1,1,2,2,2,2,2,2,3,4]],[1708828470,[1,1,1,2,2,2,2,2,3,3]],[1708828471,[1,1,2,2,2,2,2,2,3,3]],[1708828472,[1,1,1,2,2,2,2,2,3,3]],[1708828473,[1,1,2,2,2,2,2,2,4,4]],[1708828474,[1,1,2,2,2,2,2,3,4,9]],[1708828475,[1,1,1,1,1,2,2,2,3,3]],[1708828476,[1,1,1,2,2,2,2,2,3,4]],[1708828477,[1,2,2,2,2,2,2,2,3,3]],[1708828478,[1,1,2,2,2,2,2,2,3,3]],[1708828479,[1,1,1,2,2,2,2,2,3,3]],[1708828480,[1,1,1,2,2,2,2,2,5,5]],[1708828481,[1,1,2,2,2,2,2,2,3,5]],[1708828482,[1,1,1,1,1,2,2,2,2,3]],[1708828483,[1,1,1,1,1,1,2,3,25,34]],[1708828484,[1,1,1,1,1,1,2,2,2,3]],[1708828485,[1,1,2,2,2,2,2,2,3,3]],[1708828486,[1,1,1,2,2,2,2,2,4,4]],[1708828487,[1,1,1,1,1,1,2,2,2,3]],[1708828488,[1,1,1,2,2,2,2,2,3,5]],[1708828489,[1,1,1,2,2,2,2,2,2,5]],[1708828490,[1,1,1,1,1,2,2,2,3,4]],[1708828491,[1,1,1,2,2,2,2,2,3,7]],[1708828492,[1,1,1,2,2,2,2,2,3,3]],[1708828493,[1,1,1,1,1,1,2,2,15,22]],[1708828494,[1,1,1,1,2,2,2,2,37,52]],[1708828495,[1,1,1,1,1,2,2,2,3,5]],[1708828496,[1,1,1,1,1,1,2,3,22,47]],[1708828497,[1,1,1,1,1,1,1,2,3,4]],[1708828498,[1,1,1,1,1,1,2,2,4,4]],[1708828499,[1,1,1,2,2,2,2,2,3,3]],[1708828500,[1,1,1,2,2,2,2,2,3,4]],[1708828501,[1,1,1,1,1,1,1,2,3,12]],[1708828502,[1,1,1,2,2,2,2,4,12,13]],[1708828503,[1,2,2,2,2,2,2,4,47,65]],[1708828504,[1,1,1,2,2,2,2,2,2,3]],[1708828505,[1,1,1,1,1,1,1,2,2,3]],[1708828506,[1,1,1,1,1,1,1,2,3,3]],[1708828507,[1,1,1,2,2,2,2,2,3,5]],[1708828508,[0,1,1,2,2,2,2,2,4,5]],[1708828509,[1,1,1,1,1,1,2,2,3,4]],[1708828510,[0,1,1,1,2,2,2,2,3,5]],[1708828511,[0,1,1,1,1,1,1,2,3,4]],[1708828512,[1,1,1,2,2,2,2,2,7,14]],[1708828513,[1,1,1,2,2,2,2,2,2,4]],[1708828514,[1,1,1,1,2,2,2,2,3,3]],[1708828515,[1,1,1,1,1,2,2,2,2,3]],[1708828516,[1,1,1,1,1,2,2,2,3,5]],[1708828517,[1,1,1,1,1,1,1,2,2,3]],[1708828518,[1,1,1,1,1,1,1,2,2,4]],[1708828519,[1,1,1,1,1,1,1,1,2,3]],[1708828520,[1,1,1,1,1,1,1,1,2,4]],[1708828521,[1,1,1,2,2,2,2,2,3,5]],[1708828522,[1,1,1,2,2,2,2,2,2,3]],[1708828523,[1,1,1,1,1,1,1,2,4,10]],[1708828524,[1,1,1,1,1,1,2,2,3,3]],[1708828525,[0,1,1,1,1,1,2,2,3,4]],[1708828526,[1,1,1,1,1,1,1,1,3,3]],[1708828527,[1,1,1,1,1,1,1,2,2,4]],[1708828528,[1,1,1,1,1,1,2,2,4,5]],[1708828529,[1,1,1,2,2,2,2,2,4,9]],[1708828530,[1,1,1,2,2,2,2,2,3,16]],[1708828531,[0,1,1,1,1,1,1,2,3,3]],[1708828532,[0,1,1,1,1,2,2,2,3,3]],[1708828533,[1,1,1,1,1,2,2,2,14,20]],[1708828534,[0,1,1,1,1,1,1,1,2,3]],[1708828535,[1,1,1,1,1,1,1,2,2,3]],[1708828536,[1,1,1,1,1,1,2,2,3,3]],[1708828537,[0,1,1,2,2,2,2,2,3,83]],[1708828538,[1,1,1,1,2,2,2,3,59,79]],[1708828539,[1,1,1,1,1,1,2,2,3,4]],[1708828540,[1,1,1,1,2,2,2,2,3,6]],[1708828541,[0,1,1,1,1,2,2,2,2,5]],[1708828542,[1,1,1,1,1,2,2,3,3,6]],[1708828543,[1,1,2,2,2,2,2,3,4,7]],[1708828544,[1,1,2,2,2,2,2,3,4,4]],[1708828545,[1,1,1,3,3,3,3,4,21,35]],[1708828546,[1,2,2,3,3,3,3,3,4,5]],[1708828547,[1,1,2,2,2,2,3,3,4,6]],[1708828548,[1,2,2,3,3,3,3,6,35,54]],[1708828549,[1,1,1,2,2,2,3,6,72,88]],[1708828550,[1,2,2,3,3,3,3,3,5,7]],[1708828551,[1,1,1,2,2,2,3,3,13,94]],[1708828552,[1,2,2,3,3,3,4,7,58,77]],[1708828553,[1,1,1,2,2,2,2,3,6,7]],[1708828554,[1,2,2,3,3,3,3,4,6,8]],[1708828555,[1,1,1,1,1,2,2,3,43,75]],[1708828556,[1,2,2,3,3,3,3,4,5,6]],[1708828557,[1,1,1,1,2,2,2,2,3,4]],[1708828558,[1,2,3,3,3,3,4,4,9,22]],[1708828559,[0,1,1,2,2,2,2,2,3,4]],[1708828560,[1,2,2,3,3,3,4,5,6,6]],[1708828561,[1,1,1,2,2,2,2,3,3,5]],[1708828562,[1,2,2,3,3,3,3,4,5,7]],[1708828563,[1,1,1,1,1,2,2,3,8,24]],[1708828564,[1,1,2,3,3,3,3,4,6,6]],[1708828565,[1,1,1,2,2,3,3,4,75,95]],[1708828566,[1,1,3,3,3,3,4,4,7,9]],[1708828567,[0,1,1,2,2,2,3,3,3,4]],[1708828568,[1,1,2,2,3,3,3,4,5,8]],[1708828569,[1,1,1,2,2,2,3,3,4,5]],[1708828570,[1,1,2,3,3,3,3,4,5,8]],[1708828571,[1,1,2,2,3,3,3,4,11,31]],[1708828572,[0,1,2,2,2,3,3,4,5,8]],[1708828573,[1,1,1,2,2,2,3,3,3,5]],[1708828574,[1,1,2,3,3,3,3,4,4,5]],[1708828575,[0,1,1,3,3,3,3,3,4,6]],[1708828576,[1,1,1,2,2,3,3,4,5,7]],[1708828577,[1,1,2,3,3,3,3,4,5,7]],[1708828578,[0,1,1,2,2,2,3,3,5,16]],[1708828579,[0,1,2,2,3,3,3,4,55,74]],[1708828580,[1,1,1,2,2,2,3,3,5,8]],[1708828581,[0,2,2,3,3,3,3,4,5,7]],[1708828582,[0,1,1,1,2,2,2,2,3,6]],[1708828583,[1,1,2,3,3,3,3,4,5,5]],[1708828584,[1,1,1,2,2,2,2,3,12,23]],[1708828585,[0,2,2,3,3,3,4,7,55,74]],[1708828586,[0,1,1,2,2,2,2,2,2,4]],[1708828587,[0,1,3,3,3,4,4,29,94,114]],[1708828588,[0,1,1,1,1,1,1,2,3,3]],[1708828589,[1,1,2,3,3,3,3,3,4,7]],[1708828590,[0,1,1,2,2,2,2,2,3,4]],[1708828591,[1,1,2,3,3,3,4,12,83,104]],[1708828592,[1,1,1,2,2,2,2,2,3,3]],[1708828593,[1,1,2,3,3,3,3,5,48,68]],[1708828594,[0,1,1,2,2,2,2,2,3,3]],[1708828595,[0,1,1,2,2,2,2,3,4,11]],[1708828596,[1,1,1,1,1,1,1,2,3,3]],[1708828597,[1,1,1,2,2,2,3,3,5,7]],[1708828598,[1,1,1,2,2,2,2,3,66,77]],[1708828599,[0,1,2,2,3,3,3,3,4,5]],[1708828600,[0,1,1,2,2,2,2,2,3,5]],[1708828601,[1,1,1,2,3,3,4,24,89,104]],[1708828602,[1,1,1,2,2,2,2,2,3,5]],[1708828603,[1,1,1,2,2,2,2,3,4,6]],[1708828604,[0,1,1,1,2,2,2,3,39,58]],[1708828605,[0,1,2,3,3,3,4,4,5,6]],[1708828606,[1,1,1,2,2,2,2,3,4,5]],[1708828607,[1,2,2,3,3,3,4,4,5,6]],[1708828608,[1,1,1,1,1,2,2,2,3,5]],[1708828609,[1,2,3,3,4,4,5,6,38,53]],[1708828610,[1,1,2,2,2,3,3,3,4,5]],[1708828611,[1,2,2,3,3,3,4,5,6,8]],[1708828612,[0,1,2,2,2,2,2,2,3,4]],[1708828613,[1,2,2,3,3,3,4,9,59,85]],[1708828614,[1,1,2,2,2,3,3,3,4,5]],[1708828615,[1,2,3,3,3,3,3,4,5,6]],[1708828616,[1,1,1,3,3,3,3,3,4,5]],[1708828617,[1,1,2,3,3,3,4,6,49,66]],[1708828618,[1,1,2,2,2,3,3,3,4,5]],[1708828619,[1,1,2,2,2,3,3,4,10,10]],[1708828620,[1,1,2,2,2,2,3,3,4,6]],[1708828621,[1,1,2,2,2,2,3,3,4,4]],[1708828622,[1,1,1,2,2,2,2,3,4,4]],[1708828623,[1,1,1,2,3,3,3,4,5,5]],[1708828624,[1,2,2,3,3,3,3,3,5,8]],[1708828625,[1,1,2,2,3,3,4,25,62,82]],[1708828626,[1,1,2,2,3,3,3,4,5,6]],[1708828627,[1,1,1,1,2,2,2,3,3,5]],[1708828628,[1,2,2,3,3,3,3,4,5,5]],[1708828629,[1,1,2,2,2,2,3,3,4,5]],[1708828630,[1,1,2,3,3,3,4,4,5,5]],[1708828631,[1,1,1,2,2,2,2,2,3,6]],[1708828632,[1,1,2,3,3,3,3,3,4,8]],[1708828633,[1,1,1,1,2,2,2,4,74,85]],[1708828634,[0,2,2,3,3,3,4,4,6,6]],[1708828635,[0,1,1,1,1,2,2,2,3,6]],[1708828636,[1,1,2,3,3,3,3,4,8,13]],[1708828637,[1,1,1,1,2,2,2,2,3,5]],[1708828638,[1,1,2,3,3,4,6,42,132,144]],[1708828639,[1,1,1,1,1,1,2,2,3,3]],[1708828640,[1,1,2,3,3,3,3,4,5,6]],[1708828641,[0,1,2,2,2,2,3,10,74,85]],[1708828642,[0,1,2,2,3,3,3,4,5,6]],[1708828643,[1,1,1,1,1,2,2,2,3,7]],[1708828644,[1,1,2,3,3,3,4,4,4,5]],[1708828645,[0,1,1,2,2,2,2,2,2,5]],[1708828646,[0,1,2,2,3,3,3,3,4,5]],[1708828647,[1,1,1,1,1,1,2,2,3,6]],[1708828648,[1,1,2,3,3,3,3,4,4,6]],[1708828649,[0,1,1,1,1,2,2,3,37,50]],[1708828650,[1,1,1,2,3,3,3,3,4,6]],[1708828651,[1,1,1,2,3,3,4,35,70,97]],[1708828652,[0,1,1,2,2,2,3,3,4,4]],[1708828653,[0,1,1,2,2,2,2,3,3,4]],[1708828654,[0,1,1,2,2,2,3,3,5,7]],[1708828655,[0,1,1,2,2,2,3,3,4,4]],[1708828656,[0,1,1,1,1,1,1,2,3,5]],[1708828657,[1,1,1,2,2,2,3,5,62,83]],[1708828658,[1,1,1,1,1,2,3,37,69,76]],[1708828659,[1,1,1,2,2,3,3,3,5,7]],[1708828660,[1,1,1,2,2,2,2,3,3,5]],[1708828661,[1,1,2,2,3,3,3,3,4,6]],[1708828662,[1,1,1,2,2,2,2,2,3,3]],[1708828663,[1,1,1,2,2,3,3,3,5,11]],[1708828664,[0,1,1,1,1,1,2,2,3,4]],[1708828665,[0,1,1,2,2,2,2,3,5,6]],[1708828666,[1,1,1,1,1,2,2,8,51,71]],[1708828667,[1,1,1,2,3,3,3,31,108,127]],[1708828668,[1,1,2,3,3,3,3,4,5,6]],[1708828669,[0,1,2,3,3,3,3,4,5,6]],[1708828670,[0,1,2,3,3,3,3,4,4,6]]]);
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([[1708828426,[25,0,25]],[1708828427,[1,0,1]],[1708828428,[25,0,25]],[1708828429,[1,1,0]],[1708828430,[51,31,20]],[1708828431,[3,2,1]],[1708828432,[6,4,2]],[1708828433,[9,6,3]],[1708828434,[11,7,4]],[1708828435,[13,9,4]],[1708828436,[18,12,6]],[1708828437,[19,13,6]],[1708828438,[24,16,8]],[1708828439,[26,18,8]],[1708828440,[27,18,9]],[1708828441,[32,22,10]],[1708828442,[34,23,11]],[1708828443,[37,25,12]],[1708828444,[39,26,13]],[1708828445,[43,29,14]],[1708828446,[44,30,14]],[1708828447,[48,32,16]],[1708828448,[51,35,16]],[1708828449,[54,37,17]],[1708828450,[56,38,18]],[1708828451,[60,40,20]],[1708828452,[61,41,20]],[1708828453,[65,44,21]],[1708828454,[67,45,22]],[1708828455,[70,48,22]],[1708828456,[74,50,24]],[1708828457,[76,51,25]],[1708828458,[80,54,26]],[1708828459,[81,55,26]],[1708828460,[84,57,27]],[1708828461,[87,59,28]],[1708828462,[91,61,30]],[1708828463,[92,62,30]],[1708828464,[97,66,31]],[1708828465,[98,66,32]],[1708828466,[102,69,33]],[1708828467,[104,71,33]],[1708828468,[107,72,35]],[1708828469,[109,74,35]],[1708828470,[114,77,37]],[1708828471,[115,78,37]],[1708828472,[118,79,39]],[1708828473,[121,82,39]],[1708828474,[124,84,40]],[1708828475,[126,85,41]],[1708828476,[129,87,42]],[1708828477,[133,90,43]],[1708828478,[134,91,43]],[1708828479,[138,93,45]],[1708828480,[141,96,45]],[1708828481,[143,96,47]],[1708828482,[147,100,47]],[1708828483,[149,101,48]],[1708828484,[151,102,49]],[1708828485,[155,105,50]],[1708828486,[157,106,51]],[1708828487,[160,108,52]],[1708828488,[164,111,53]],[1708828489,[165,112,53]],[1708828490,[170,115,55]],[1708828491,[172,116,56]],[1708828492,[174,118,56]],[1708828493,[176,119,57]],[1708828494,[181,122,59]],[1708828495,[183,124,59]],[1708828496,[186,126,60]],[1708828497,[188,127,61]],[1708828498,[192,130,62]],[1708828499,[194,131,63]],[1708828500,[197,133,64]],[1708828501,[198,134,64]],[1708828502,[204,138,66]],[1708828503,[204,138,66]],[1708828504,[208,140,68]],[1708828505,[211,143,68]],[1708828506,[213,144,69]],[1708828507,[217,147,70]],[1708828508,[220,149,71]],[1708828509,[222,150,72]],[1708828510,[224,152,72]],[1708828511,[228,154,74]],[1708828512,[230,156,74]],[1708828513,[234,158,76]],[1708828514,[236,160,76]],[1708828515,[239,161,78]],[1708828516,[242,164,78]],[1708828517,[244,165,79]],[1708828518,[248,168,80]],[1708828519,[250,169,81]],[1708828520,[253,171,82]],[1708828521,[255,173,82]],[1708828522,[259,175,84]],[1708828523,[262,177,85]],[1708828524,[265,179,86]],[1708828525,[266,180,86]],[1708828526,[270,183,87]],[1708828527,[273,184,89]],[1708828528,[275,186,89]],[1708828529,[278,189,89]],[1708828530,[282,190,92]],[1708828531,[283,192,91]],[1708828532,[287,194,93]],[1708828533,[290,196,94]],[1708828534,[292,197,95]],[1708828535,[295,200,95]],[1708828536,[298,201,97]],[1708828537,[301,204,97]],[1708828538,[303,205,98]],[1708828539,[306,207,99]],[1708828540,[309,209,100]],[1708828541,[313,212,101]],[1708828542,[314,212,102]],[1708828543,[318,215,103]],[1708828544,[320,217,103]],[1708828545,[323,218,105]],[1708828546,[326,221,105]],[1708828547,[330,223,107]],[1708828548,[332,225,107]],[1708828549,[334,226,108]],[1708828550,[337,228,109]],[1708828551,[340,230,110]],[1708828552,[340,230,110]],[1708828553,[340,230,110]],[1708828554,[340,230,110]],[1708828555,[340,230,110]],[1708828556,[340,230,110]],[1708828557,[340,230,110]],[1708828558,[340,230,110]],[1708828559,[340,230,110]],[1708828560,[340,230,110]],[1708828561,[340,230,110]],[1708828562,[340,230,110]],[1708828563,[340,230,110]],[1708828564,[340,230,110]],[1708828565,[340,230,110]],[1708828566,[340,230,110]],[1708828567,[340,230,110]],[1708828568,[340,230,110]],[1708828569,[340,230,110]],[1708828570,[340,230,110]],[1708828571,[340,230,110]],[1708828572,[340,230,110]],[1708828573,[340,230,110]],[1708828574,[340,230,110]],[1708828575,[340,230,110]],[1708828576,[340,230,110]],[1708828577,[340,230,110]],[1708828578,[340,230,110]],[1708828579,[340,230,110]],[1708828580,[340,230,110]],[1708828581,[340,230,110]],[1708828582,[340,230,110]],[1708828583,[340,230,110]],[1708828584,[340,230,110]],[1708828585,[340,230,110]],[1708828586,[340,230,110]],[1708828587,[340,230,110]],[1708828588,[340,230,110]],[1708828589,[340,230,110]],[1708828590,[340,230,110]],[1708828591,[340,230,110]],[1708828592,[340,230,110]],[1708828593,[340,230,110]],[1708828594,[340,230,110]],[1708828595,[340,230,110]],[1708828596,[340,230,110]],[1708828597,[340,230,110]],[1708828598,[340,230,110]],[1708828599,[340,230,110]],[1708828600,[340,230,110]],[1708828601,[340,230,110]],[1708828602,[340,230,110]],[1708828603,[340,230,110]],[1708828604,[340,230,110]],[1708828605,[340,230,110]],[1708828606,[340,230,110]],[1708828607,[340,230,110]],[1708828608,[340,230,110]],[1708828609,[340,230,110]],[1708828610,[340,230,110]],[1708828611,[340,230,110]],[1708828612,[340,230,110]],[1708828613,[340,230,110]],[1708828614,[340,230,110]],[1708828615,[340,230,110]],[1708828616,[340,230,110]],[1708828617,[340,230,110]],[1708828618,[340,230,110]],[1708828619,[340,230,110]],[1708828620,[340,230,110]],[1708828621,[340,230,110]],[1708828622,[340,230,110]],[1708828623,[340,230,110]],[1708828624,[340,230,110]],[1708828625,[340,230,110]],[1708828626,[340,230,110]],[1708828627,[340,230,110]],[1708828628,[340,230,110]],[1708828629,[340,230,110]],[1708828630,[340,230,110]],[1708828631,[340,230,110]],[1708828632,[340,230,110]],[1708828633,[340,230,110]],[1708828634,[340,230,110]],[1708828635,[340,230,110]],[1708828636,[340,230,110]],[1708828637,[340,230,110]],[1708828638,[340,230,110]],[1708828639,[340,230,110]],[1708828640,[340,230,110]],[1708828641,[340,230,110]],[1708828642,[340,230,110]],[1708828643,[340,230,110]],[1708828644,[340,230,110]],[1708828645,[340,230,110]],[1708828646,[340,230,110]],[1708828647,[340,230,110]],[1708828648,[340,230,110]],[1708828649,[340,230,110]],[1708828650,[340,230,110]],[1708828651,[340,230,110]],[1708828652,[340,230,110]],[1708828653,[340,230,110]],[1708828654,[340,230,110]],[1708828655,[340,230,110]],[1708828656,[340,230,110]],[1708828657,[340,230,110]],[1708828658,[340,230,110]],[1708828659,[340,230,110]],[1708828660,[340,230,110]],[1708828661,[340,230,110]],[1708828662,[340,230,110]],[1708828663,[340,230,110]],[1708828664,[340,230,110]],[1708828665,[340,230,110]],[1708828666,[340,230,110]],[1708828667,[340,230,110]],[1708828668,[340,230,110]],[1708828669,[340,230,110]],[1708828670,[503,340,163]]]);
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' }
},