-
Notifications
You must be signed in to change notification settings - Fork 923
/
Copy pathindex.html
1220 lines (1150 loc) · 96.3 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="shortcut icon" type="image/x-icon" href="style/favicon.ico"/>
<link href="style/style.css" rel="stylesheet" type="text/css" />
<link href="style/bootstrap.min.css" rel="stylesheet" type="text/css" />
<script src="js/jquery-3.5.1.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/gatling.js"></script>
<script src="js/menu.js"></script>
<script src="js/ellipsis.js"></script>
<script src="js/all_sessions.js"></script>
<script src="js/stats.js"></script>
<script src="js/highstock.js"></script>
<script src="js/highcharts-more.js"></script>
<script src="js/theme.js"></script>
<script src="js/unpack.js"></script>
<title>Gatling Stats - Global Information</title>
</head>
<body>
<script>
const storedTheme = localStorage.getItem('theme') || (window.matchMedia("(prefers-color-scheme: dark)").matches ? "dark" : "light");
if (storedTheme) document.documentElement.setAttribute('data-theme', storedTheme)
function toggleTheme() {
const currentTheme = document.documentElement.getAttribute("data-theme");
const targetTheme = currentTheme === "light" ? "dark" : "light";
document.documentElement.setAttribute('data-theme', targetTheme)
localStorage.setItem('theme', targetTheme);
};
</script>
<div class="app-container">
<div class="frise"></div>
<div class="head">
<div class="gatling-open-source">
<a class="gatling-logo gatling-logo-light" href="https://gatling.io" target="blank_" title="Gatling Home Page"><img alt="Gatling" src="style/logo-light.svg"/></a>
<a class="gatling-logo gatling-logo-dark" href="https://gatling.io" target="blank_" title="Gatling Home Page"><img alt="Gatling" src="style/logo-dark.svg"/></a>
<a class="gatling-documentation" href="https://gatling.io/docs/" target="_blank">Documentation</a>
</div>
<div class="nav spacer"></div>
<a class="enterprise" href="https://gatling.io/enterprise/next-step/" target="_blank"><strong>Try</strong>
<img class="logo-enterprise-light" alt="Gatling Enterprise" src="style/logo-enterprise-light.svg"/>
<img class="logo-enterprise-dark" alt="Gatling Enterprise" src="style/logo-enterprise-dark.svg"/>
</a>
<button id="theme-toggle" class="theme-toggle" type="button" onclick="toggleTheme()" aria-label="Toggle user interface mode">
<span class="toggle-dark"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-moon"><path d="M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z"></path></svg></span>
<span class="toggle-light"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-sun"><circle cx="12" cy="12" r="5"></circle><line x1="12" y1="1" x2="12" y2="3"></line><line x1="12" y1="21" x2="12" y2="23"></line><line x1="4.22" y1="4.22" x2="5.64" y2="5.64"></line><line x1="18.36" y1="18.36" x2="19.78" y2="19.78"></line><line x1="1" y1="12" x2="3" y2="12"></line><line x1="21" y1="12" x2="23" y2="12"></line><line x1="4.22" y1="19.78" x2="5.64" y2="18.36"></line><line x1="18.36" y1="5.64" x2="19.78" y2="4.22"></line></svg></span>
</button>
</div>
<div class="container details">
<div class="nav">
<ul></ul>
</div>
<div class="cadre">
<div class="content">
<div class="content-header">
<div class="onglet">
RinhaBackendCrebitosSimulation
</div>
<div class="sous-menu" id="sousMenu">
<div class="sous-menu-spacer">
<div class="item ouvert"><a href="index.html">Global</a></div>
<div class="item "><a id="details_link" href="#">Details</a></div>
</div>
</div>
</div>
<div class="content-in">
<div class="container-article">
<div class="article">
<div class="schema-container">
<div id="ranges" class="schema ranges">
</div>
<div class="schema polar">
<div id="container_number_of_requests"></div>
</div>
<div class="simulation-card">
<div class="simulation-version-information">
<span class="simulation-information-title">Gatling Version</span>
<span class="simulation-information-item">
<span class="simulation-information-label">Version: </span>
<span>3.10.3</span>
</span>
<span class="simulation-information-item">
<span class="simulation-information-label">Released: </span>
<span>2023-12-20</span>
</span>
</div>
<div id="simulation-information" class="simulation-version-information">
<span class="simulation-information-title">Run Information</span>
<div class="simulation-information-container">
<span class="simulation-information-item">
<span class="simulation-information-label">Date: </span>
<span>2024-02-19 09:41:21 GMT</span>
</span>
<span class="simulation-information-item">
<span class="simulation-information-label">Duration: </span>
<span>4m 5s </span>
</span>
<span class="simulation-tooltip simulation-information-item description" title="Description" data-content="Rinha de Backend - 2024/Q1: Crébito - klimber">
<span class="simulation-information-label">Description: </span>
<span>Rinha de Backend - 2024/Q1: Crébito - klimber</span>
</span>
</div>
</div>
</div>
</div>
<div id="statistics_table_container">
<div id="stats" class="statistics extensible-geant collapsed">
<div class="title">
<div id="statistics_title" class="title_base"><span class="title_base_stats">Stats</span><span class="expand-table">Fixed height</span><span id="toggle-stats" class="toggle-table"></span><span class="collapse-table">Full size</span></div>
<div class="right">
<button class="statistics-button expand-all-button">Expand all groups</button>
<button class="statistics-button collapse-all-button">Collapse all groups</button>
<button id="statistics_full_screen" class="statistics-button" onclick="openStatisticsTableModal()"><img alt="Fullscreen" src="style/fullscreen.svg"></button>
</div>
</div>
<div class="scrollable">
<table id="container_statistics_head" class="statistics-in extensible-geant">
<thead>
<tr>
<th rowspan="2" id="col-1" class="header sortable sorted-up"><span>Requests</span></th>
<th colspan="5" class="header"><span class="executions">Executions</span></th>
<th colspan="8" class="header"><span class="response-time">Response Time (ms)</span></th>
</tr>
<tr>
<th id="col-2" class="header sortable"><span>Total</span></th>
<th id="col-3" class="header sortable"><span>OK</span></th>
<th id="col-4" class="header sortable"><span>KO</span></th>
<th id="col-5" class="header sortable"><span>% KO</span></th>
<th id="col-6" class="header sortable"><span><abbr title="Count of events per second">Cnt/s</abbr></span></th>
<th id="col-7" class="header sortable"><span>Min</span></th>
<th id="col-8" class="header sortable"><span>50th pct</span></th>
<th id="col-9" class="header sortable"><span>75th pct</span></th>
<th id="col-10" class="header sortable"><span>95th pct</span></th>
<th id="col-11" class="header sortable"><span>99th pct</span></th>
<th id="col-12" class="header sortable"><span>Max</span></th>
<th id="col-13" class="header sortable"><span>Mean</span></th>
<th id="col-14" class="header sortable"><span><abbr title="Standard Deviation">Std Dev</abbr></span></th>
</tr>
</thead>
<tbody></tbody>
</table>
<table id="container_statistics_body" class="statistics-in extensible-geant">
<tbody></tbody>
</table>
</div>
</div>
</div>
<dialog id="statistics_table_modal" class="statistics-table-modal">
<div class="statistics-table-modal-header"><button class="button-modal" onclick="closeStatisticsTableModal()"><img alt="Close" src="style/close.svg"></button></div>
<div class="statistics-table-modal-container">
<div id="statistics_table_modal_content" class="statistics-table-modal-content"></div>
</div>
</dialog>
<script>
function openStatisticsTableModal () {
const statsTable = document.getElementById("stats");
const statsTableModal = document.getElementById("statistics_table_modal");
const fullScreenButton = document.getElementById("statistics_full_screen");
fullScreenButton.disabled = true;
if (typeof statsTableModal.showModal === "function") {
const statsTableModalContent = document.getElementById("statistics_table_modal_content");
statsTableModalContent.innerHTML = "";
statsTableModalContent.appendChild(statsTable);
statsTableModal.showModal();
statsTableModal.addEventListener("close", function () {
const container = document.getElementById("statistics_table_container");
container.appendChild(statsTable);
fullScreenButton.disabled = false;
});
} else {
const incompatibleBrowserVersionMessage = document.createElement("div");
incompatibleBrowserVersionMessage.innerText = "Sorry, the <dialog> API is not supported by this browser.";
statsTable.insertBefore(incompatibleBrowserVersionMessage, statsTable.children[0]);
}
}
function closeStatisticsTableModal () {
const statsTableModal = document.getElementById("statistics_table_modal");
statsTableModal.close();
}
</script>
<div class="statistics extensible-geant collapsed">
<div class="title">
Errors
</div>
<table id="container_errors" class="statistics-in extensible-geant">
<thead>
<tr>
<th id="error-col-1" class="header sortable"><span>Error</span></th>
<th id="error-col-2" class="header sortable"><span>Count</span></th>
<th id="error-col-3" class="header sortable"><span>Percentage</span></th>
</tr>
</thead>
<tbody>
<tr>
<td class="error-col-1 total ko">status.find.in(200,422), but actually found 500<span class="value" style="display:none">0</span></td>
<td class="value error-col-2 total ko">39660</td>
<td class="value error-col-3 total ko">66.554 %</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">1</span></td>
<td class="value error-col-2 total ko">19860</td>
<td class="value error-col-3 total ko">33.327 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">status.find.is(200), but actually found 500<span class="value" style="display:none">2</span></td>
<td class="value error-col-2 total ko">50</td>
<td class="value error-col-3 total ko">0.084 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">status.find.in(200), but actually found 500<span class="value" style="display:none">3</span></td>
<td class="value error-col-2 total ko">15</td>
<td class="value error-col-3 total ko">0.025 %</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">4</span></td>
<td class="value error-col-2 total ko">5</td>
<td class="value error-col-3 total ko">0.008 %</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">5</span></td>
<td class="value error-col-2 total ko">1</td>
<td class="value error-col-3 total ko">0.002 %</td>
</tr>
</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: [
[1708335681000,0],[1708335682000,0],[1708335683000,0],[1708335684000,0],[1708335685000,0],[1708335686000,0],[1708335687000,2],[1708335688000,3],[1708335689000,5],[1708335690000,5],[1708335691000,6],[1708335692000,7],[1708335693000,8],[1708335694000,9],[1708335695000,9],[1708335696000,11],[1708335697000,11],[1708335698000,12],[1708335699000,13],[1708335700000,15],[1708335701000,14],[1708335702000,15],[1708335703000,17],[1708335704000,18],[1708335705000,17],[1708335706000,19],[1708335707000,20],[1708335708000,20],[1708335709000,22],[1708335710000,22],[1708335711000,23],[1708335712000,25],[1708335713000,25],[1708335714000,26],[1708335715000,26],[1708335716000,28],[1708335717000,29],[1708335718000,31],[1708335719000,30],[1708335720000,32],[1708335721000,33],[1708335722000,33],[1708335723000,35],[1708335724000,35],[1708335725000,36],[1708335726000,37],[1708335727000,38],[1708335728000,39],[1708335729000,39],[1708335730000,41],[1708335731000,41],[1708335732000,43],[1708335733000,43],[1708335734000,44],[1708335735000,45],[1708335736000,46],[1708335737000,48],[1708335738000,48],[1708335739000,48],[1708335740000,50],[1708335741000,50],[1708335742000,52],[1708335743000,52],[1708335744000,54],[1708335745000,54],[1708335746000,58],[1708335747000,57],[1708335748000,57],[1708335749000,59],[1708335750000,61],[1708335751000,59],[1708335752000,61],[1708335753000,64],[1708335754000,66],[1708335755000,65],[1708335756000,64],[1708335757000,65],[1708335758000,66],[1708335759000,68],[1708335760000,72],[1708335761000,68],[1708335762000,70],[1708335763000,70],[1708335764000,74],[1708335765000,73],[1708335766000,73],[1708335767000,74],[1708335768000,75],[1708335769000,76],[1708335770000,82],[1708335771000,78],[1708335772000,79],[1708335773000,83],[1708335774000,81],[1708335775000,81],[1708335776000,85],[1708335777000,86],[1708335778000,91],[1708335779000,88],[1708335780000,87],[1708335781000,86],[1708335782000,88],[1708335783000,93],[1708335784000,94],[1708335785000,94],[1708335786000,95],[1708335787000,92],[1708335788000,94],[1708335789000,95],[1708335790000,96],[1708335791000,98],[1708335792000,100],[1708335793000,99],[1708335794000,100],[1708335795000,100],[1708335796000,102],[1708335797000,106],[1708335798000,104],[1708335799000,106],[1708335800000,105],[1708335801000,106],[1708335802000,107],[1708335803000,110],[1708335804000,110],[1708335805000,112],[1708335806000,113],[1708335807000,111],[1708335808000,111],[1708335809000,111],[1708335810000,117],[1708335811000,111],[1708335812000,116],[1708335813000,112],[1708335814000,111],[1708335815000,111],[1708335816000,111],[1708335817000,111],[1708335818000,111],[1708335819000,111],[1708335820000,111],[1708335821000,111],[1708335822000,111],[1708335823000,111],[1708335824000,111],[1708335825000,111],[1708335826000,111],[1708335827000,111],[1708335828000,111],[1708335829000,111],[1708335830000,111],[1708335831000,111],[1708335832000,111],[1708335833000,111],[1708335834000,111],[1708335835000,111],[1708335836000,111],[1708335837000,111],[1708335838000,111],[1708335839000,111],[1708335840000,111],[1708335841000,111],[1708335842000,111],[1708335843000,111],[1708335844000,111],[1708335845000,111],[1708335846000,111],[1708335847000,111],[1708335848000,111],[1708335849000,111],[1708335850000,111],[1708335851000,111],[1708335852000,111],[1708335853000,111],[1708335854000,111],[1708335855000,111],[1708335856000,111],[1708335857000,111],[1708335858000,111],[1708335859000,111],[1708335860000,111],[1708335861000,111],[1708335862000,111],[1708335863000,111],[1708335864000,111],[1708335865000,111],[1708335866000,111],[1708335867000,111],[1708335868000,111],[1708335869000,111],[1708335870000,111],[1708335871000,111],[1708335872000,111],[1708335873000,111],[1708335874000,111],[1708335875000,111],[1708335876000,111],[1708335877000,111],[1708335878000,111],[1708335879000,111],[1708335880000,111],[1708335881000,111],[1708335882000,111],[1708335883000,111],[1708335884000,111],[1708335885000,111],[1708335886000,111],[1708335887000,111],[1708335888000,111],[1708335889000,111],[1708335890000,111],[1708335891000,111],[1708335892000,111],[1708335893000,111],[1708335894000,111],[1708335895000,111],[1708335896000,111],[1708335897000,111],[1708335898000,111],[1708335899000,111],[1708335900000,111],[1708335901000,111],[1708335902000,111],[1708335903000,111],[1708335904000,111],[1708335905000,111],[1708335906000,111],[1708335907000,111],[1708335908000,111],[1708335909000,111],[1708335910000,111],[1708335911000,111],[1708335912000,111],[1708335913000,111],[1708335914000,111],[1708335915000,111],[1708335916000,111],[1708335917000,111],[1708335918000,111],[1708335919000,111],[1708335920000,111],[1708335921000,111],[1708335922000,111],[1708335923000,111],[1708335924000,111],[1708335925000,111],[1708335926000,109]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#68b65c',
name: 'débitos',
data: [
[1708335681000,0],[1708335682000,0],[1708335683000,0],[1708335684000,0],[1708335685000,0],[1708335686000,0],[1708335687000,2],[1708335688000,5],[1708335689000,7],[1708335690000,8],[1708335691000,10],[1708335692000,12],[1708335693000,14],[1708335694000,16],[1708335695000,17],[1708335696000,20],[1708335697000,20],[1708335698000,23],[1708335699000,25],[1708335700000,25],[1708335701000,28],[1708335702000,29],[1708335703000,31],[1708335704000,33],[1708335705000,35],[1708335706000,37],[1708335707000,38],[1708335708000,40],[1708335709000,42],[1708335710000,44],[1708335711000,46],[1708335712000,47],[1708335713000,50],[1708335714000,51],[1708335715000,53],[1708335716000,55],[1708335717000,56],[1708335718000,59],[1708335719000,60],[1708335720000,62],[1708335721000,64],[1708335722000,66],[1708335723000,69],[1708335724000,69],[1708335725000,72],[1708335726000,74],[1708335727000,74],[1708335728000,77],[1708335729000,79],[1708335730000,80],[1708335731000,82],[1708335732000,84],[1708335733000,86],[1708335734000,88],[1708335735000,91],[1708335736000,93],[1708335737000,96],[1708335738000,96],[1708335739000,98],[1708335740000,99],[1708335741000,102],[1708335742000,103],[1708335743000,106],[1708335744000,110],[1708335745000,109],[1708335746000,114],[1708335747000,114],[1708335748000,114],[1708335749000,118],[1708335750000,121],[1708335751000,120],[1708335752000,121],[1708335753000,129],[1708335754000,129],[1708335755000,129],[1708335756000,129],[1708335757000,130],[1708335758000,132],[1708335759000,136],[1708335760000,142],[1708335761000,137],[1708335762000,139],[1708335763000,141],[1708335764000,149],[1708335765000,146],[1708335766000,147],[1708335767000,147],[1708335768000,150],[1708335769000,153],[1708335770000,160],[1708335771000,155],[1708335772000,157],[1708335773000,165],[1708335774000,163],[1708335775000,162],[1708335776000,171],[1708335777000,171],[1708335778000,175],[1708335779000,176],[1708335780000,174],[1708335781000,174],[1708335782000,175],[1708335783000,181],[1708335784000,185],[1708335785000,186],[1708335786000,191],[1708335787000,185],[1708335788000,186],[1708335789000,189],[1708335790000,193],[1708335791000,197],[1708335792000,199],[1708335793000,196],[1708335794000,198],[1708335795000,200],[1708335796000,202],[1708335797000,213],[1708335798000,206],[1708335799000,212],[1708335800000,209],[1708335801000,211],[1708335802000,213],[1708335803000,221],[1708335804000,216],[1708335805000,223],[1708335806000,228],[1708335807000,221],[1708335808000,221],[1708335809000,221],[1708335810000,233],[1708335811000,221],[1708335812000,236],[1708335813000,225],[1708335814000,221],[1708335815000,221],[1708335816000,221],[1708335817000,221],[1708335818000,221],[1708335819000,221],[1708335820000,221],[1708335821000,221],[1708335822000,221],[1708335823000,221],[1708335824000,221],[1708335825000,221],[1708335826000,221],[1708335827000,221],[1708335828000,221],[1708335829000,221],[1708335830000,221],[1708335831000,221],[1708335832000,221],[1708335833000,221],[1708335834000,221],[1708335835000,221],[1708335836000,221],[1708335837000,221],[1708335838000,221],[1708335839000,221],[1708335840000,221],[1708335841000,221],[1708335842000,221],[1708335843000,221],[1708335844000,221],[1708335845000,221],[1708335846000,221],[1708335847000,221],[1708335848000,221],[1708335849000,221],[1708335850000,221],[1708335851000,221],[1708335852000,221],[1708335853000,221],[1708335854000,221],[1708335855000,221],[1708335856000,221],[1708335857000,221],[1708335858000,221],[1708335859000,221],[1708335860000,221],[1708335861000,221],[1708335862000,221],[1708335863000,221],[1708335864000,221],[1708335865000,221],[1708335866000,221],[1708335867000,221],[1708335868000,221],[1708335869000,221],[1708335870000,221],[1708335871000,221],[1708335872000,221],[1708335873000,221],[1708335874000,221],[1708335875000,221],[1708335876000,221],[1708335877000,221],[1708335878000,221],[1708335879000,221],[1708335880000,221],[1708335881000,222],[1708335882000,221],[1708335883000,221],[1708335884000,221],[1708335885000,221],[1708335886000,221],[1708335887000,222],[1708335888000,221],[1708335889000,221],[1708335890000,221],[1708335891000,221],[1708335892000,221],[1708335893000,221],[1708335894000,221],[1708335895000,222],[1708335896000,221],[1708335897000,222],[1708335898000,221],[1708335899000,221],[1708335900000,221],[1708335901000,221],[1708335902000,221],[1708335903000,221],[1708335904000,221],[1708335905000,221],[1708335906000,221],[1708335907000,221],[1708335908000,221],[1708335909000,221],[1708335910000,221],[1708335911000,221],[1708335912000,221],[1708335913000,221],[1708335914000,221],[1708335915000,221],[1708335916000,221],[1708335917000,221],[1708335918000,221],[1708335919000,221],[1708335920000,221],[1708335921000,221],[1708335922000,221],[1708335923000,221],[1708335924000,221],[1708335925000,221],[1708335926000,218]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#f15b4f',
name: 'extratos',
data: [
[1708335681000,0],[1708335682000,0],[1708335683000,0],[1708335684000,0],[1708335685000,0],[1708335686000,0],[1708335687000,2],[1708335688000,2],[1708335689000,2],[1708335690000,1],[1708335691000,2],[1708335692000,3],[1708335693000,1],[1708335694000,3],[1708335695000,2],[1708335696000,1],[1708335697000,3],[1708335698000,2],[1708335699000,2],[1708335700000,2],[1708335701000,2],[1708335702000,2],[1708335703000,2],[1708335704000,3],[1708335705000,2],[1708335706000,3],[1708335707000,2],[1708335708000,3],[1708335709000,2],[1708335710000,3],[1708335711000,3],[1708335712000,3],[1708335713000,3],[1708335714000,3],[1708335715000,3],[1708335716000,3],[1708335717000,4],[1708335718000,3],[1708335719000,3],[1708335720000,4],[1708335721000,3],[1708335722000,4],[1708335723000,4],[1708335724000,4],[1708335725000,4],[1708335726000,4],[1708335727000,4],[1708335728000,4],[1708335729000,4],[1708335730000,4],[1708335731000,4],[1708335732000,5],[1708335733000,4],[1708335734000,5],[1708335735000,5],[1708335736000,4],[1708335737000,5],[1708335738000,5],[1708335739000,5],[1708335740000,5],[1708335741000,5],[1708335742000,5],[1708335743000,5],[1708335744000,7],[1708335745000,5],[1708335746000,6],[1708335747000,5],[1708335748000,6],[1708335749000,6],[1708335750000,7],[1708335751000,6],[1708335752000,6],[1708335753000,6],[1708335754000,6],[1708335755000,7],[1708335756000,6],[1708335757000,7],[1708335758000,6],[1708335759000,6],[1708335760000,8],[1708335761000,6],[1708335762000,7],[1708335763000,7],[1708335764000,8],[1708335765000,7],[1708335766000,7],[1708335767000,7],[1708335768000,7],[1708335769000,7],[1708335770000,8],[1708335771000,7],[1708335772000,8],[1708335773000,7],[1708335774000,8],[1708335775000,8],[1708335776000,7],[1708335777000,9],[1708335778000,9],[1708335779000,9],[1708335780000,8],[1708335781000,8],[1708335782000,8],[1708335783000,8],[1708335784000,9],[1708335785000,8],[1708335786000,10],[1708335787000,8],[1708335788000,9],[1708335789000,8],[1708335790000,10],[1708335791000,9],[1708335792000,10],[1708335793000,9],[1708335794000,9],[1708335795000,9],[1708335796000,9],[1708335797000,10],[1708335798000,9],[1708335799000,9],[1708335800000,10],[1708335801000,9],[1708335802000,10],[1708335803000,11],[1708335804000,10],[1708335805000,11],[1708335806000,10],[1708335807000,10],[1708335808000,10],[1708335809000,10],[1708335810000,10],[1708335811000,10],[1708335812000,11],[1708335813000,11],[1708335814000,10],[1708335815000,10],[1708335816000,10],[1708335817000,10],[1708335818000,10],[1708335819000,10],[1708335820000,10],[1708335821000,10],[1708335822000,10],[1708335823000,10],[1708335824000,10],[1708335825000,10],[1708335826000,10],[1708335827000,10],[1708335828000,10],[1708335829000,10],[1708335830000,10],[1708335831000,10],[1708335832000,10],[1708335833000,10],[1708335834000,10],[1708335835000,10],[1708335836000,10],[1708335837000,10],[1708335838000,10],[1708335839000,10],[1708335840000,10],[1708335841000,10],[1708335842000,10],[1708335843000,10],[1708335844000,10],[1708335845000,10],[1708335846000,10],[1708335847000,10],[1708335848000,10],[1708335849000,10],[1708335850000,10],[1708335851000,10],[1708335852000,10],[1708335853000,10],[1708335854000,10],[1708335855000,10],[1708335856000,10],[1708335857000,10],[1708335858000,10],[1708335859000,10],[1708335860000,10],[1708335861000,10],[1708335862000,10],[1708335863000,10],[1708335864000,10],[1708335865000,10],[1708335866000,10],[1708335867000,10],[1708335868000,10],[1708335869000,10],[1708335870000,10],[1708335871000,10],[1708335872000,10],[1708335873000,10],[1708335874000,10],[1708335875000,10],[1708335876000,10],[1708335877000,10],[1708335878000,10],[1708335879000,10],[1708335880000,10],[1708335881000,10],[1708335882000,10],[1708335883000,10],[1708335884000,10],[1708335885000,10],[1708335886000,10],[1708335887000,10],[1708335888000,10],[1708335889000,10],[1708335890000,10],[1708335891000,10],[1708335892000,10],[1708335893000,10],[1708335894000,10],[1708335895000,10],[1708335896000,10],[1708335897000,10],[1708335898000,10],[1708335899000,10],[1708335900000,10],[1708335901000,10],[1708335902000,10],[1708335903000,10],[1708335904000,10],[1708335905000,10],[1708335906000,10],[1708335907000,10],[1708335908000,10],[1708335909000,10],[1708335910000,10],[1708335911000,10],[1708335912000,10],[1708335913000,10],[1708335914000,10],[1708335915000,10],[1708335916000,10],[1708335917000,10],[1708335918000,10],[1708335919000,10],[1708335920000,10],[1708335921000,10],[1708335922000,10],[1708335923000,10],[1708335924000,10],[1708335925000,10],[1708335926000,9]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FFDD00',
name: 'validações',
data: [
[1708335681000,0],[1708335682000,0],[1708335683000,0],[1708335684000,0],[1708335685000,5],[1708335686000,5],[1708335687000,0],[1708335688000,0],[1708335689000,0],[1708335690000,0],[1708335691000,0],[1708335692000,0],[1708335693000,0],[1708335694000,0],[1708335695000,0],[1708335696000,0],[1708335697000,0],[1708335698000,0],[1708335699000,0],[1708335700000,0],[1708335701000,0],[1708335702000,0],[1708335703000,0],[1708335704000,0],[1708335705000,0],[1708335706000,0],[1708335707000,0],[1708335708000,0],[1708335709000,0],[1708335710000,0],[1708335711000,0],[1708335712000,0],[1708335713000,0],[1708335714000,0],[1708335715000,0],[1708335716000,0],[1708335717000,0],[1708335718000,0],[1708335719000,0],[1708335720000,0],[1708335721000,0],[1708335722000,0],[1708335723000,0],[1708335724000,0],[1708335725000,0],[1708335726000,0],[1708335727000,0],[1708335728000,0],[1708335729000,0],[1708335730000,0],[1708335731000,0],[1708335732000,0],[1708335733000,0],[1708335734000,0],[1708335735000,0],[1708335736000,0],[1708335737000,0],[1708335738000,0],[1708335739000,0],[1708335740000,0],[1708335741000,0],[1708335742000,0],[1708335743000,0],[1708335744000,0],[1708335745000,0],[1708335746000,0],[1708335747000,0],[1708335748000,0],[1708335749000,0],[1708335750000,0],[1708335751000,0],[1708335752000,0],[1708335753000,0],[1708335754000,0],[1708335755000,0],[1708335756000,0],[1708335757000,0],[1708335758000,0],[1708335759000,0],[1708335760000,0],[1708335761000,0],[1708335762000,0],[1708335763000,0],[1708335764000,0],[1708335765000,0],[1708335766000,0],[1708335767000,0],[1708335768000,0],[1708335769000,0],[1708335770000,0],[1708335771000,0],[1708335772000,0],[1708335773000,0],[1708335774000,0],[1708335775000,0],[1708335776000,0],[1708335777000,0],[1708335778000,0],[1708335779000,0],[1708335780000,0],[1708335781000,0],[1708335782000,0],[1708335783000,0],[1708335784000,0],[1708335785000,0],[1708335786000,0],[1708335787000,0],[1708335788000,0],[1708335789000,0],[1708335790000,0],[1708335791000,0],[1708335792000,0],[1708335793000,0],[1708335794000,0],[1708335795000,0],[1708335796000,0],[1708335797000,0],[1708335798000,0],[1708335799000,0],[1708335800000,0],[1708335801000,0],[1708335802000,0],[1708335803000,0],[1708335804000,0],[1708335805000,0],[1708335806000,0],[1708335807000,0],[1708335808000,0],[1708335809000,0],[1708335810000,0],[1708335811000,0],[1708335812000,0],[1708335813000,0],[1708335814000,0],[1708335815000,0],[1708335816000,0],[1708335817000,0],[1708335818000,0],[1708335819000,0],[1708335820000,0],[1708335821000,0],[1708335822000,0],[1708335823000,0],[1708335824000,0],[1708335825000,0],[1708335826000,0],[1708335827000,0],[1708335828000,0],[1708335829000,0],[1708335830000,0],[1708335831000,0],[1708335832000,0],[1708335833000,0],[1708335834000,0],[1708335835000,0],[1708335836000,0],[1708335837000,0],[1708335838000,0],[1708335839000,0],[1708335840000,0],[1708335841000,0],[1708335842000,0],[1708335843000,0],[1708335844000,0],[1708335845000,0],[1708335846000,0],[1708335847000,0],[1708335848000,0],[1708335849000,0],[1708335850000,0],[1708335851000,0],[1708335852000,0],[1708335853000,0],[1708335854000,0],[1708335855000,0],[1708335856000,0],[1708335857000,0],[1708335858000,0],[1708335859000,0],[1708335860000,0],[1708335861000,0],[1708335862000,0],[1708335863000,0],[1708335864000,0],[1708335865000,0],[1708335866000,0],[1708335867000,0],[1708335868000,0],[1708335869000,0],[1708335870000,0],[1708335871000,0],[1708335872000,0],[1708335873000,0],[1708335874000,0],[1708335875000,0],[1708335876000,0],[1708335877000,0],[1708335878000,0],[1708335879000,0],[1708335880000,0],[1708335881000,0],[1708335882000,0],[1708335883000,0],[1708335884000,0],[1708335885000,0],[1708335886000,0],[1708335887000,0],[1708335888000,0],[1708335889000,0],[1708335890000,0],[1708335891000,0],[1708335892000,0],[1708335893000,0],[1708335894000,0],[1708335895000,0],[1708335896000,0],[1708335897000,0],[1708335898000,0],[1708335899000,0],[1708335900000,0],[1708335901000,0],[1708335902000,0],[1708335903000,0],[1708335904000,0],[1708335905000,0],[1708335906000,0],[1708335907000,0],[1708335908000,0],[1708335909000,0],[1708335910000,0],[1708335911000,0],[1708335912000,0],[1708335913000,0],[1708335914000,0],[1708335915000,0],[1708335916000,0],[1708335917000,0],[1708335918000,0],[1708335919000,0],[1708335920000,0],[1708335921000,0],[1708335922000,0],[1708335923000,0],[1708335924000,0],[1708335925000,0],[1708335926000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00D5FF',
name: 'validação HTTP 404',
data: [
[1708335681000,0],[1708335682000,0],[1708335683000,0],[1708335684000,0],[1708335685000,1],[1708335686000,1],[1708335687000,0],[1708335688000,0],[1708335689000,0],[1708335690000,0],[1708335691000,0],[1708335692000,0],[1708335693000,0],[1708335694000,0],[1708335695000,0],[1708335696000,0],[1708335697000,0],[1708335698000,0],[1708335699000,0],[1708335700000,0],[1708335701000,0],[1708335702000,0],[1708335703000,0],[1708335704000,0],[1708335705000,0],[1708335706000,0],[1708335707000,0],[1708335708000,0],[1708335709000,0],[1708335710000,0],[1708335711000,0],[1708335712000,0],[1708335713000,0],[1708335714000,0],[1708335715000,0],[1708335716000,0],[1708335717000,0],[1708335718000,0],[1708335719000,0],[1708335720000,0],[1708335721000,0],[1708335722000,0],[1708335723000,0],[1708335724000,0],[1708335725000,0],[1708335726000,0],[1708335727000,0],[1708335728000,0],[1708335729000,0],[1708335730000,0],[1708335731000,0],[1708335732000,0],[1708335733000,0],[1708335734000,0],[1708335735000,0],[1708335736000,0],[1708335737000,0],[1708335738000,0],[1708335739000,0],[1708335740000,0],[1708335741000,0],[1708335742000,0],[1708335743000,0],[1708335744000,0],[1708335745000,0],[1708335746000,0],[1708335747000,0],[1708335748000,0],[1708335749000,0],[1708335750000,0],[1708335751000,0],[1708335752000,0],[1708335753000,0],[1708335754000,0],[1708335755000,0],[1708335756000,0],[1708335757000,0],[1708335758000,0],[1708335759000,0],[1708335760000,0],[1708335761000,0],[1708335762000,0],[1708335763000,0],[1708335764000,0],[1708335765000,0],[1708335766000,0],[1708335767000,0],[1708335768000,0],[1708335769000,0],[1708335770000,0],[1708335771000,0],[1708335772000,0],[1708335773000,0],[1708335774000,0],[1708335775000,0],[1708335776000,0],[1708335777000,0],[1708335778000,0],[1708335779000,0],[1708335780000,0],[1708335781000,0],[1708335782000,0],[1708335783000,0],[1708335784000,0],[1708335785000,0],[1708335786000,0],[1708335787000,0],[1708335788000,0],[1708335789000,0],[1708335790000,0],[1708335791000,0],[1708335792000,0],[1708335793000,0],[1708335794000,0],[1708335795000,0],[1708335796000,0],[1708335797000,0],[1708335798000,0],[1708335799000,0],[1708335800000,0],[1708335801000,0],[1708335802000,0],[1708335803000,0],[1708335804000,0],[1708335805000,0],[1708335806000,0],[1708335807000,0],[1708335808000,0],[1708335809000,0],[1708335810000,0],[1708335811000,0],[1708335812000,0],[1708335813000,0],[1708335814000,0],[1708335815000,0],[1708335816000,0],[1708335817000,0],[1708335818000,0],[1708335819000,0],[1708335820000,0],[1708335821000,0],[1708335822000,0],[1708335823000,0],[1708335824000,0],[1708335825000,0],[1708335826000,0],[1708335827000,0],[1708335828000,0],[1708335829000,0],[1708335830000,0],[1708335831000,0],[1708335832000,0],[1708335833000,0],[1708335834000,0],[1708335835000,0],[1708335836000,0],[1708335837000,0],[1708335838000,0],[1708335839000,0],[1708335840000,0],[1708335841000,0],[1708335842000,0],[1708335843000,0],[1708335844000,0],[1708335845000,0],[1708335846000,0],[1708335847000,0],[1708335848000,0],[1708335849000,0],[1708335850000,0],[1708335851000,0],[1708335852000,0],[1708335853000,0],[1708335854000,0],[1708335855000,0],[1708335856000,0],[1708335857000,0],[1708335858000,0],[1708335859000,0],[1708335860000,0],[1708335861000,0],[1708335862000,0],[1708335863000,0],[1708335864000,0],[1708335865000,0],[1708335866000,0],[1708335867000,0],[1708335868000,0],[1708335869000,0],[1708335870000,0],[1708335871000,0],[1708335872000,0],[1708335873000,0],[1708335874000,0],[1708335875000,0],[1708335876000,0],[1708335877000,0],[1708335878000,0],[1708335879000,0],[1708335880000,0],[1708335881000,0],[1708335882000,0],[1708335883000,0],[1708335884000,0],[1708335885000,0],[1708335886000,0],[1708335887000,0],[1708335888000,0],[1708335889000,0],[1708335890000,0],[1708335891000,0],[1708335892000,0],[1708335893000,0],[1708335894000,0],[1708335895000,0],[1708335896000,0],[1708335897000,0],[1708335898000,0],[1708335899000,0],[1708335900000,0],[1708335901000,0],[1708335902000,0],[1708335903000,0],[1708335904000,0],[1708335905000,0],[1708335906000,0],[1708335907000,0],[1708335908000,0],[1708335909000,0],[1708335910000,0],[1708335911000,0],[1708335912000,0],[1708335913000,0],[1708335914000,0],[1708335915000,0],[1708335916000,0],[1708335917000,0],[1708335918000,0],[1708335919000,0],[1708335920000,0],[1708335921000,0],[1708335922000,0],[1708335923000,0],[1708335924000,0],[1708335925000,0],[1708335926000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00FF00',
name: 'validação concorrência saldo - 0',
data: [
[1708335681000,0],[1708335682000,0],[1708335683000,0],[1708335684000,1],[1708335685000,0],[1708335686000,0],[1708335687000,0],[1708335688000,0],[1708335689000,0],[1708335690000,0],[1708335691000,0],[1708335692000,0],[1708335693000,0],[1708335694000,0],[1708335695000,0],[1708335696000,0],[1708335697000,0],[1708335698000,0],[1708335699000,0],[1708335700000,0],[1708335701000,0],[1708335702000,0],[1708335703000,0],[1708335704000,0],[1708335705000,0],[1708335706000,0],[1708335707000,0],[1708335708000,0],[1708335709000,0],[1708335710000,0],[1708335711000,0],[1708335712000,0],[1708335713000,0],[1708335714000,0],[1708335715000,0],[1708335716000,0],[1708335717000,0],[1708335718000,0],[1708335719000,0],[1708335720000,0],[1708335721000,0],[1708335722000,0],[1708335723000,0],[1708335724000,0],[1708335725000,0],[1708335726000,0],[1708335727000,0],[1708335728000,0],[1708335729000,0],[1708335730000,0],[1708335731000,0],[1708335732000,0],[1708335733000,0],[1708335734000,0],[1708335735000,0],[1708335736000,0],[1708335737000,0],[1708335738000,0],[1708335739000,0],[1708335740000,0],[1708335741000,0],[1708335742000,0],[1708335743000,0],[1708335744000,0],[1708335745000,0],[1708335746000,0],[1708335747000,0],[1708335748000,0],[1708335749000,0],[1708335750000,0],[1708335751000,0],[1708335752000,0],[1708335753000,0],[1708335754000,0],[1708335755000,0],[1708335756000,0],[1708335757000,0],[1708335758000,0],[1708335759000,0],[1708335760000,0],[1708335761000,0],[1708335762000,0],[1708335763000,0],[1708335764000,0],[1708335765000,0],[1708335766000,0],[1708335767000,0],[1708335768000,0],[1708335769000,0],[1708335770000,0],[1708335771000,0],[1708335772000,0],[1708335773000,0],[1708335774000,0],[1708335775000,0],[1708335776000,0],[1708335777000,0],[1708335778000,0],[1708335779000,0],[1708335780000,0],[1708335781000,0],[1708335782000,0],[1708335783000,0],[1708335784000,0],[1708335785000,0],[1708335786000,0],[1708335787000,0],[1708335788000,0],[1708335789000,0],[1708335790000,0],[1708335791000,0],[1708335792000,0],[1708335793000,0],[1708335794000,0],[1708335795000,0],[1708335796000,0],[1708335797000,0],[1708335798000,0],[1708335799000,0],[1708335800000,0],[1708335801000,0],[1708335802000,0],[1708335803000,0],[1708335804000,0],[1708335805000,0],[1708335806000,0],[1708335807000,0],[1708335808000,0],[1708335809000,0],[1708335810000,0],[1708335811000,0],[1708335812000,0],[1708335813000,0],[1708335814000,0],[1708335815000,0],[1708335816000,0],[1708335817000,0],[1708335818000,0],[1708335819000,0],[1708335820000,0],[1708335821000,0],[1708335822000,0],[1708335823000,0],[1708335824000,0],[1708335825000,0],[1708335826000,0],[1708335827000,0],[1708335828000,0],[1708335829000,0],[1708335830000,0],[1708335831000,0],[1708335832000,0],[1708335833000,0],[1708335834000,0],[1708335835000,0],[1708335836000,0],[1708335837000,0],[1708335838000,0],[1708335839000,0],[1708335840000,0],[1708335841000,0],[1708335842000,0],[1708335843000,0],[1708335844000,0],[1708335845000,0],[1708335846000,0],[1708335847000,0],[1708335848000,0],[1708335849000,0],[1708335850000,0],[1708335851000,0],[1708335852000,0],[1708335853000,0],[1708335854000,0],[1708335855000,0],[1708335856000,0],[1708335857000,0],[1708335858000,0],[1708335859000,0],[1708335860000,0],[1708335861000,0],[1708335862000,0],[1708335863000,0],[1708335864000,0],[1708335865000,0],[1708335866000,0],[1708335867000,0],[1708335868000,0],[1708335869000,0],[1708335870000,0],[1708335871000,0],[1708335872000,0],[1708335873000,0],[1708335874000,0],[1708335875000,0],[1708335876000,0],[1708335877000,0],[1708335878000,0],[1708335879000,0],[1708335880000,0],[1708335881000,0],[1708335882000,0],[1708335883000,0],[1708335884000,0],[1708335885000,0],[1708335886000,0],[1708335887000,0],[1708335888000,0],[1708335889000,0],[1708335890000,0],[1708335891000,0],[1708335892000,0],[1708335893000,0],[1708335894000,0],[1708335895000,0],[1708335896000,0],[1708335897000,0],[1708335898000,0],[1708335899000,0],[1708335900000,0],[1708335901000,0],[1708335902000,0],[1708335903000,0],[1708335904000,0],[1708335905000,0],[1708335906000,0],[1708335907000,0],[1708335908000,0],[1708335909000,0],[1708335910000,0],[1708335911000,0],[1708335912000,0],[1708335913000,0],[1708335914000,0],[1708335915000,0],[1708335916000,0],[1708335917000,0],[1708335918000,0],[1708335919000,0],[1708335920000,0],[1708335921000,0],[1708335922000,0],[1708335923000,0],[1708335924000,0],[1708335925000,0],[1708335926000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#9D00FF',
name: 'validação concorrência transações - c',
data: [
[1708335681000,0],[1708335682000,0],[1708335683000,23],[1708335684000,25],[1708335685000,0],[1708335686000,0],[1708335687000,0],[1708335688000,0],[1708335689000,0],[1708335690000,0],[1708335691000,0],[1708335692000,0],[1708335693000,0],[1708335694000,0],[1708335695000,0],[1708335696000,0],[1708335697000,0],[1708335698000,0],[1708335699000,0],[1708335700000,0],[1708335701000,0],[1708335702000,0],[1708335703000,0],[1708335704000,0],[1708335705000,0],[1708335706000,0],[1708335707000,0],[1708335708000,0],[1708335709000,0],[1708335710000,0],[1708335711000,0],[1708335712000,0],[1708335713000,0],[1708335714000,0],[1708335715000,0],[1708335716000,0],[1708335717000,0],[1708335718000,0],[1708335719000,0],[1708335720000,0],[1708335721000,0],[1708335722000,0],[1708335723000,0],[1708335724000,0],[1708335725000,0],[1708335726000,0],[1708335727000,0],[1708335728000,0],[1708335729000,0],[1708335730000,0],[1708335731000,0],[1708335732000,0],[1708335733000,0],[1708335734000,0],[1708335735000,0],[1708335736000,0],[1708335737000,0],[1708335738000,0],[1708335739000,0],[1708335740000,0],[1708335741000,0],[1708335742000,0],[1708335743000,0],[1708335744000,0],[1708335745000,0],[1708335746000,0],[1708335747000,0],[1708335748000,0],[1708335749000,0],[1708335750000,0],[1708335751000,0],[1708335752000,0],[1708335753000,0],[1708335754000,0],[1708335755000,0],[1708335756000,0],[1708335757000,0],[1708335758000,0],[1708335759000,0],[1708335760000,0],[1708335761000,0],[1708335762000,0],[1708335763000,0],[1708335764000,0],[1708335765000,0],[1708335766000,0],[1708335767000,0],[1708335768000,0],[1708335769000,0],[1708335770000,0],[1708335771000,0],[1708335772000,0],[1708335773000,0],[1708335774000,0],[1708335775000,0],[1708335776000,0],[1708335777000,0],[1708335778000,0],[1708335779000,0],[1708335780000,0],[1708335781000,0],[1708335782000,0],[1708335783000,0],[1708335784000,0],[1708335785000,0],[1708335786000,0],[1708335787000,0],[1708335788000,0],[1708335789000,0],[1708335790000,0],[1708335791000,0],[1708335792000,0],[1708335793000,0],[1708335794000,0],[1708335795000,0],[1708335796000,0],[1708335797000,0],[1708335798000,0],[1708335799000,0],[1708335800000,0],[1708335801000,0],[1708335802000,0],[1708335803000,0],[1708335804000,0],[1708335805000,0],[1708335806000,0],[1708335807000,0],[1708335808000,0],[1708335809000,0],[1708335810000,0],[1708335811000,0],[1708335812000,0],[1708335813000,0],[1708335814000,0],[1708335815000,0],[1708335816000,0],[1708335817000,0],[1708335818000,0],[1708335819000,0],[1708335820000,0],[1708335821000,0],[1708335822000,0],[1708335823000,0],[1708335824000,0],[1708335825000,0],[1708335826000,0],[1708335827000,0],[1708335828000,0],[1708335829000,0],[1708335830000,0],[1708335831000,0],[1708335832000,0],[1708335833000,0],[1708335834000,0],[1708335835000,0],[1708335836000,0],[1708335837000,0],[1708335838000,0],[1708335839000,0],[1708335840000,0],[1708335841000,0],[1708335842000,0],[1708335843000,0],[1708335844000,0],[1708335845000,0],[1708335846000,0],[1708335847000,0],[1708335848000,0],[1708335849000,0],[1708335850000,0],[1708335851000,0],[1708335852000,0],[1708335853000,0],[1708335854000,0],[1708335855000,0],[1708335856000,0],[1708335857000,0],[1708335858000,0],[1708335859000,0],[1708335860000,0],[1708335861000,0],[1708335862000,0],[1708335863000,0],[1708335864000,0],[1708335865000,0],[1708335866000,0],[1708335867000,0],[1708335868000,0],[1708335869000,0],[1708335870000,0],[1708335871000,0],[1708335872000,0],[1708335873000,0],[1708335874000,0],[1708335875000,0],[1708335876000,0],[1708335877000,0],[1708335878000,0],[1708335879000,0],[1708335880000,0],[1708335881000,0],[1708335882000,0],[1708335883000,0],[1708335884000,0],[1708335885000,0],[1708335886000,0],[1708335887000,0],[1708335888000,0],[1708335889000,0],[1708335890000,0],[1708335891000,0],[1708335892000,0],[1708335893000,0],[1708335894000,0],[1708335895000,0],[1708335896000,0],[1708335897000,0],[1708335898000,0],[1708335899000,0],[1708335900000,0],[1708335901000,0],[1708335902000,0],[1708335903000,0],[1708335904000,0],[1708335905000,0],[1708335906000,0],[1708335907000,0],[1708335908000,0],[1708335909000,0],[1708335910000,0],[1708335911000,0],[1708335912000,0],[1708335913000,0],[1708335914000,0],[1708335915000,0],[1708335916000,0],[1708335917000,0],[1708335918000,0],[1708335919000,0],[1708335920000,0],[1708335921000,0],[1708335922000,0],[1708335923000,0],[1708335924000,0],[1708335925000,0],[1708335926000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FF00E1',
name: 'validação concorrência saldo - -25',
data: [
[1708335681000,0],[1708335682000,1],[1708335683000,1],[1708335684000,0],[1708335685000,0],[1708335686000,0],[1708335687000,0],[1708335688000,0],[1708335689000,0],[1708335690000,0],[1708335691000,0],[1708335692000,0],[1708335693000,0],[1708335694000,0],[1708335695000,0],[1708335696000,0],[1708335697000,0],[1708335698000,0],[1708335699000,0],[1708335700000,0],[1708335701000,0],[1708335702000,0],[1708335703000,0],[1708335704000,0],[1708335705000,0],[1708335706000,0],[1708335707000,0],[1708335708000,0],[1708335709000,0],[1708335710000,0],[1708335711000,0],[1708335712000,0],[1708335713000,0],[1708335714000,0],[1708335715000,0],[1708335716000,0],[1708335717000,0],[1708335718000,0],[1708335719000,0],[1708335720000,0],[1708335721000,0],[1708335722000,0],[1708335723000,0],[1708335724000,0],[1708335725000,0],[1708335726000,0],[1708335727000,0],[1708335728000,0],[1708335729000,0],[1708335730000,0],[1708335731000,0],[1708335732000,0],[1708335733000,0],[1708335734000,0],[1708335735000,0],[1708335736000,0],[1708335737000,0],[1708335738000,0],[1708335739000,0],[1708335740000,0],[1708335741000,0],[1708335742000,0],[1708335743000,0],[1708335744000,0],[1708335745000,0],[1708335746000,0],[1708335747000,0],[1708335748000,0],[1708335749000,0],[1708335750000,0],[1708335751000,0],[1708335752000,0],[1708335753000,0],[1708335754000,0],[1708335755000,0],[1708335756000,0],[1708335757000,0],[1708335758000,0],[1708335759000,0],[1708335760000,0],[1708335761000,0],[1708335762000,0],[1708335763000,0],[1708335764000,0],[1708335765000,0],[1708335766000,0],[1708335767000,0],[1708335768000,0],[1708335769000,0],[1708335770000,0],[1708335771000,0],[1708335772000,0],[1708335773000,0],[1708335774000,0],[1708335775000,0],[1708335776000,0],[1708335777000,0],[1708335778000,0],[1708335779000,0],[1708335780000,0],[1708335781000,0],[1708335782000,0],[1708335783000,0],[1708335784000,0],[1708335785000,0],[1708335786000,0],[1708335787000,0],[1708335788000,0],[1708335789000,0],[1708335790000,0],[1708335791000,0],[1708335792000,0],[1708335793000,0],[1708335794000,0],[1708335795000,0],[1708335796000,0],[1708335797000,0],[1708335798000,0],[1708335799000,0],[1708335800000,0],[1708335801000,0],[1708335802000,0],[1708335803000,0],[1708335804000,0],[1708335805000,0],[1708335806000,0],[1708335807000,0],[1708335808000,0],[1708335809000,0],[1708335810000,0],[1708335811000,0],[1708335812000,0],[1708335813000,0],[1708335814000,0],[1708335815000,0],[1708335816000,0],[1708335817000,0],[1708335818000,0],[1708335819000,0],[1708335820000,0],[1708335821000,0],[1708335822000,0],[1708335823000,0],[1708335824000,0],[1708335825000,0],[1708335826000,0],[1708335827000,0],[1708335828000,0],[1708335829000,0],[1708335830000,0],[1708335831000,0],[1708335832000,0],[1708335833000,0],[1708335834000,0],[1708335835000,0],[1708335836000,0],[1708335837000,0],[1708335838000,0],[1708335839000,0],[1708335840000,0],[1708335841000,0],[1708335842000,0],[1708335843000,0],[1708335844000,0],[1708335845000,0],[1708335846000,0],[1708335847000,0],[1708335848000,0],[1708335849000,0],[1708335850000,0],[1708335851000,0],[1708335852000,0],[1708335853000,0],[1708335854000,0],[1708335855000,0],[1708335856000,0],[1708335857000,0],[1708335858000,0],[1708335859000,0],[1708335860000,0],[1708335861000,0],[1708335862000,0],[1708335863000,0],[1708335864000,0],[1708335865000,0],[1708335866000,0],[1708335867000,0],[1708335868000,0],[1708335869000,0],[1708335870000,0],[1708335871000,0],[1708335872000,0],[1708335873000,0],[1708335874000,0],[1708335875000,0],[1708335876000,0],[1708335877000,0],[1708335878000,0],[1708335879000,0],[1708335880000,0],[1708335881000,0],[1708335882000,0],[1708335883000,0],[1708335884000,0],[1708335885000,0],[1708335886000,0],[1708335887000,0],[1708335888000,0],[1708335889000,0],[1708335890000,0],[1708335891000,0],[1708335892000,0],[1708335893000,0],[1708335894000,0],[1708335895000,0],[1708335896000,0],[1708335897000,0],[1708335898000,0],[1708335899000,0],[1708335900000,0],[1708335901000,0],[1708335902000,0],[1708335903000,0],[1708335904000,0],[1708335905000,0],[1708335906000,0],[1708335907000,0],[1708335908000,0],[1708335909000,0],[1708335910000,0],[1708335911000,0],[1708335912000,0],[1708335913000,0],[1708335914000,0],[1708335915000,0],[1708335916000,0],[1708335917000,0],[1708335918000,0],[1708335919000,0],[1708335920000,0],[1708335921000,0],[1708335922000,0],[1708335923000,0],[1708335924000,0],[1708335925000,0],[1708335926000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#AECAEB',
name: 'validação concorrência transações - d',
data: [
[1708335681000,25],[1708335682000,25],[1708335683000,0],[1708335684000,0],[1708335685000,0],[1708335686000,0],[1708335687000,0],[1708335688000,0],[1708335689000,0],[1708335690000,0],[1708335691000,0],[1708335692000,0],[1708335693000,0],[1708335694000,0],[1708335695000,0],[1708335696000,0],[1708335697000,0],[1708335698000,0],[1708335699000,0],[1708335700000,0],[1708335701000,0],[1708335702000,0],[1708335703000,0],[1708335704000,0],[1708335705000,0],[1708335706000,0],[1708335707000,0],[1708335708000,0],[1708335709000,0],[1708335710000,0],[1708335711000,0],[1708335712000,0],[1708335713000,0],[1708335714000,0],[1708335715000,0],[1708335716000,0],[1708335717000,0],[1708335718000,0],[1708335719000,0],[1708335720000,0],[1708335721000,0],[1708335722000,0],[1708335723000,0],[1708335724000,0],[1708335725000,0],[1708335726000,0],[1708335727000,0],[1708335728000,0],[1708335729000,0],[1708335730000,0],[1708335731000,0],[1708335732000,0],[1708335733000,0],[1708335734000,0],[1708335735000,0],[1708335736000,0],[1708335737000,0],[1708335738000,0],[1708335739000,0],[1708335740000,0],[1708335741000,0],[1708335742000,0],[1708335743000,0],[1708335744000,0],[1708335745000,0],[1708335746000,0],[1708335747000,0],[1708335748000,0],[1708335749000,0],[1708335750000,0],[1708335751000,0],[1708335752000,0],[1708335753000,0],[1708335754000,0],[1708335755000,0],[1708335756000,0],[1708335757000,0],[1708335758000,0],[1708335759000,0],[1708335760000,0],[1708335761000,0],[1708335762000,0],[1708335763000,0],[1708335764000,0],[1708335765000,0],[1708335766000,0],[1708335767000,0],[1708335768000,0],[1708335769000,0],[1708335770000,0],[1708335771000,0],[1708335772000,0],[1708335773000,0],[1708335774000,0],[1708335775000,0],[1708335776000,0],[1708335777000,0],[1708335778000,0],[1708335779000,0],[1708335780000,0],[1708335781000,0],[1708335782000,0],[1708335783000,0],[1708335784000,0],[1708335785000,0],[1708335786000,0],[1708335787000,0],[1708335788000,0],[1708335789000,0],[1708335790000,0],[1708335791000,0],[1708335792000,0],[1708335793000,0],[1708335794000,0],[1708335795000,0],[1708335796000,0],[1708335797000,0],[1708335798000,0],[1708335799000,0],[1708335800000,0],[1708335801000,0],[1708335802000,0],[1708335803000,0],[1708335804000,0],[1708335805000,0],[1708335806000,0],[1708335807000,0],[1708335808000,0],[1708335809000,0],[1708335810000,0],[1708335811000,0],[1708335812000,0],[1708335813000,0],[1708335814000,0],[1708335815000,0],[1708335816000,0],[1708335817000,0],[1708335818000,0],[1708335819000,0],[1708335820000,0],[1708335821000,0],[1708335822000,0],[1708335823000,0],[1708335824000,0],[1708335825000,0],[1708335826000,0],[1708335827000,0],[1708335828000,0],[1708335829000,0],[1708335830000,0],[1708335831000,0],[1708335832000,0],[1708335833000,0],[1708335834000,0],[1708335835000,0],[1708335836000,0],[1708335837000,0],[1708335838000,0],[1708335839000,0],[1708335840000,0],[1708335841000,0],[1708335842000,0],[1708335843000,0],[1708335844000,0],[1708335845000,0],[1708335846000,0],[1708335847000,0],[1708335848000,0],[1708335849000,0],[1708335850000,0],[1708335851000,0],[1708335852000,0],[1708335853000,0],[1708335854000,0],[1708335855000,0],[1708335856000,0],[1708335857000,0],[1708335858000,0],[1708335859000,0],[1708335860000,0],[1708335861000,0],[1708335862000,0],[1708335863000,0],[1708335864000,0],[1708335865000,0],[1708335866000,0],[1708335867000,0],[1708335868000,0],[1708335869000,0],[1708335870000,0],[1708335871000,0],[1708335872000,0],[1708335873000,0],[1708335874000,0],[1708335875000,0],[1708335876000,0],[1708335877000,0],[1708335878000,0],[1708335879000,0],[1708335880000,0],[1708335881000,0],[1708335882000,0],[1708335883000,0],[1708335884000,0],[1708335885000,0],[1708335886000,0],[1708335887000,0],[1708335888000,0],[1708335889000,0],[1708335890000,0],[1708335891000,0],[1708335892000,0],[1708335893000,0],[1708335894000,0],[1708335895000,0],[1708335896000,0],[1708335897000,0],[1708335898000,0],[1708335899000,0],[1708335900000,0],[1708335901000,0],[1708335902000,0],[1708335903000,0],[1708335904000,0],[1708335905000,0],[1708335906000,0],[1708335907000,0],[1708335908000,0],[1708335909000,0],[1708335910000,0],[1708335911000,0],[1708335912000,0],[1708335913000,0],[1708335914000,0],[1708335915000,0],[1708335916000,0],[1708335917000,0],[1708335918000,0],[1708335919000,0],[1708335920000,0],[1708335921000,0],[1708335922000,0],[1708335923000,0],[1708335924000,0],[1708335925000,0],[1708335926000,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: ['10', '29', '48', '67', '86', '105', '124', '143', '162', '180', '199', '218', '237', '256', '275', '294', '313', '332', '350', '369', '388', '407', '426', '445', '464', '483', '502', '520', '539', '558', '577', '596', '615', '634', '653', '672', '690', '709', '728', '747', '766', '785', '804', '823', '842', '860', '879', '898', '917', '936', '955', '974', '993', '1012', '1031', '1049', '1068', '1087', '1106', '1125', '1144', '1163', '1182', '1201', '1219', '1238', '1257', '1276', '1295', '1314', '1333', '1352', '1371', '1389', '1408', '1427', '1446', '1465', '1484', '1503', '1522', '1541', '1559', '1578', '1597', '1616', '1635', '1654', '1673', '1692', '1711', '1729', '1748', '1767', '1786', '1805', '1824', '1843', '1862', '1881'],
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: [
2.74,0.13,0.07,0.07,0.02,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
],
tooltip: { yDecimals: 0, ySuffix: 'ms' }
},
{
type: 'column',
color: '#f15b4f',
name: 'KO',
data: [
82.67,4.23,3.92,3.58,1.61,0.34,0.17,0.1,0.09,0.05,0.03,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,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([[1708335681,null],[1708335682,null],[1708335683,null],[1708335684,null],[1708335685,[6,6,6,6,6,6,6,6,6,6]],[1708335686,[4,12,15,93,96,103,179,188,195,197]],[1708335687,[5,7,11,15,15,45,75,76,76,77]],[1708335688,[12,12,12,12,12,12,12,12,12,12]],[1708335689,[10,10,10,10,10,10,10,10,10,10]],[1708335690,[6,6,6,6,6,6,6,6,6,6]],[1708335691,[7,7,7,7,7,7,7,7,7,7]],[1708335692,[6,6,7,8,8,8,8,8,8,9]],[1708335693,[7,7,7,7,7,7,7,7,7,7]],[1708335694,[6,7,8,9,10,10,10,10,10,11]],[1708335695,[6,7,8,9,10,10,10,10,10,11]],[1708335696,[6,6,6,6,6,6,6,6,6,6]],[1708335697,[6,7,8,9,9,9,9,9,9,10]],[1708335698,[5,5,5,5,5,5,5,5,5,5]],[1708335699,[6,6,6,6,6,6,6,6,6,6]],[1708335700,[4,4,5,5,5,5,5,5,5,6]],[1708335701,[5,5,5,5,5,5,5,5,5,5]],[1708335702,[4,4,4,4,4,4,4,4,4,5]],[1708335703,[4,4,4,4,4,4,4,4,4,5]],[1708335704,[4,4,4,4,4,4,4,4,4,5]],[1708335705,[3,3,4,4,4,4,4,4,4,5]],[1708335706,[4,4,4,4,4,4,4,4,4,4]],[1708335707,[4,4,5,5,5,5,5,5,5,5]],[1708335708,[3,3,4,4,4,4,4,4,4,5]],[1708335709,[3,3,4,4,4,4,4,4,4,5]],[1708335710,[2,2,2,2,2,2,2,2,2,3]],[1708335711,[2,2,3,3,3,3,3,3,3,4]],[1708335712,[2,2,3,3,3,3,3,3,3,4]],[1708335713,[3,3,3,14,16,18,20,22,24,25]],[1708335714,[2,2,3,3,3,3,3,3,3,4]],[1708335715,[2,2,2,2,2,2,2,2,2,3]],[1708335716,[2,2,3,3,3,3,3,3,3,3]],[1708335717,[2,2,3,12,16,21,26,31,35,36]],[1708335718,[3,23,43,54,56,58,60,62,64,65]],[1708335719,[6,16,27,40,43,45,48,51,53,54]],[1708335720,[2,2,2,3,3,4,4,4,4,5]],[1708335721,[3,4,5,21,24,28,31,34,37,38]],[1708335722,[2,2,3,9,12,16,19,22,25,26]],[1708335723,[2,2,3,12,18,23,28,33,37,39]],[1708335724,[2,2,2,3,3,3,3,3,3,4]],[1708335725,[2,2,6,16,20,23,27,31,34,35]],[1708335726,[2,2,2,11,15,20,25,30,34,35]],[1708335727,[2,2,2,2,2,2,2,2,2,3]],[1708335728,[1,1,2,3,4,4,5,5,5,6]],[1708335729,[2,2,2,3,3,4,4,4,4,5]],[1708335730,[2,2,2,11,15,20,25,30,34,35]],[1708335731,[2,2,2,2,2,2,2,2,2,3]],[1708335732,[1,1,1,2,2,2,2,2,2,3]],[1708335733,[1,2,3,7,14,21,28,34,40,42]],[1708335734,[2,2,4,13,17,21,26,30,34,35]],[1708335735,[3,3,3,3,3,3,4,4,4,5]],[1708335736,[2,2,3,5,12,18,26,32,38,40]],[1708335737,[3,3,5,14,18,22,27,31,35,36]],[1708335738,[2,3,3,4,4,4,4,4,4,5]],[1708335739,[2,2,2,2,2,2,2,2,2,2]],[1708335740,[1,3,6,6,6,7,7,8,8,9]],[1708335741,[2,2,2,2,2,2,3,3,3,4]],[1708335742,[3,5,7,12,28,45,62,79,92,96]],[1708335743,[2,3,4,5,7,9,11,13,15,16]],[1708335744,[2,3,8,18,21,32,43,54,63,66]],[1708335745,[2,2,2,2,6,9,14,17,21,22]],[1708335746,[1,2,4,8,9,21,34,46,56,59]],[1708335747,[5,9,10,32,42,52,62,72,80,83]],[1708335748,[2,3,6,10,12,22,33,43,51,54]],[1708335749,[1,4,16,23,29,35,41,46,51,53]],[1708335750,[1,2,4,10,11,21,32,42,50,53]],[1708335751,[1,1,2,22,29,34,40,46,50,52]],[1708335752,[1,2,4,18,22,24,26,28,30,31]],[1708335753,[4,8,26,52,59,61,63,65,66,67]],[1708335754,[1,5,15,25,26,33,41,49,55,57]],[1708335755,[2,17,28,51,58,58,59,59,59,60]],[1708335756,[2,5,15,23,24,34,44,54,62,64]],[1708335757,[5,23,34,55,58,59,60,61,61,62]],[1708335758,[2,2,15,20,20,24,35,46,54,57]],[1708335759,[1,2,4,27,35,44,53,62,69,71]],[1708335760,[2,9,48,97,109,119,129,139,147,150]],[1708335761,[1,1,2,11,17,22,29,34,39,41]],[1708335762,[1,1,1,2,2,4,7,9,11,12]],[1708335763,[1,2,2,18,27,42,70,98,120,126]],[1708335764,[1,8,20,40,42,45,52,57,62,64]],[1708335765,[2,7,35,45,48,52,62,70,78,80]],[1708335766,[1,1,1,19,29,40,50,60,68,70]],[1708335767,[1,1,2,2,2,7,23,39,52,56]],[1708335768,[1,2,2,2,2,2,2,2,2,2]],[1708335769,[1,2,2,5,7,12,22,32,40,42]],[1708335770,[1,1,9,17,21,25,30,35,39,41]],[1708335771,[1,2,2,2,2,8,24,40,52,56]],[1708335772,[1,1,2,9,19,29,32,34,36,37]],[1708335773,[2,4,17,45,50,54,56,58,60,61]],[1708335774,[3,9,24,37,37,37,48,61,72,75]],[1708335775,[4,29,49,64,64,64,70,78,85,87]],[1708335776,[4,13,37,57,60,64,70,76,81,83]],[1708335777,[1,4,17,31,35,39,48,59,67,70]],[1708335778,[9,12,34,46,55,63,65,66,66,67]],[1708335779,[1,12,26,37,38,38,46,55,62,64]],[1708335780,[1,1,16,42,50,58,60,60,60,61]],[1708335781,[1,1,11,51,58,65,71,77,82,84]],[1708335782,[4,10,26,60,60,60,61,62,62,63]],[1708335783,[8,16,36,58,59,60,61,61,61,61]],[1708335784,[1,1,2,35,39,44,48,51,54,55]],[1708335785,[1,14,29,36,38,41,49,60,70,73]],[1708335786,[2,8,26,50,57,64,65,65,65,66]],[1708335787,[1,1,2,8,9,10,12,16,19,20]],[1708335788,[1,2,2,2,2,2,2,2,2,2]],[1708335789,[1,2,3,22,30,38,46,54,60,62]],[1708335790,[3,13,45,54,56,58,62,67,71,72]],[1708335791,[1,6,21,46,48,50,77,127,167,178]],[1708335792,[5,15,23,52,54,57,60,62,64,65]],[1708335793,[1,8,25,55,56,57,61,67,72,74]],[1708335794,[1,1,3,17,21,26,29,29,29,30]],[1708335795,[1,2,2,2,2,2,2,2,2,2]],[1708335796,[1,1,2,2,2,2,16,46,70,76]],[1708335797,[1,3,10,16,19,23,28,41,51,54]],[1708335798,[1,2,4,10,29,48,59,62,65,66]],[1708335799,[1,9,33,41,46,51,62,79,93,97]],[1708335800,[1,2,3,4,4,4,7,24,37,41]],[1708335801,[1,1,3,3,3,3,4,4,4,5]],[1708335802,[1,1,1,3,3,3,3,4,4,5]],[1708335803,[4,6,14,77,96,100,104,105,106,107]],[1708335804,[2,5,7,20,36,62,85,90,94,95]],[1708335805,[1,3,8,12,13,13,13,15,17,18]],[1708335806,[3,3,5,6,7,8,10,10,10,11]],[1708335807,[1,2,3,3,4,4,4,4,4,5]],[1708335808,[1,1,2,2,2,3,4,4,4,4]],[1708335809,[1,3,4,4,5,5,5,5,5,6]],[1708335810,[1,2,4,15,16,16,17,19,20,21]],[1708335811,[2,3,3,4,4,4,4,4,4,4]],[1708335812,[2,2,5,10,12,14,25,63,94,102]],[1708335813,[4,6,11,14,14,14,21,54,80,87]],[1708335814,[1,2,2,2,3,3,4,4,4,5]],[1708335815,[3,3,3,4,4,4,4,4,4,4]],[1708335816,[1,1,3,5,6,6,13,49,77,85]],[1708335817,[1,2,2,3,3,3,3,3,3,4]],[1708335818,[1,1,1,2,2,2,2,2,2,3]],[1708335819,[2,3,3,8,10,11,19,51,76,83]],[1708335820,[1,1,1,1,1,1,1,1,1,2]],[1708335821,[1,2,4,4,4,4,4,4,4,4]],[1708335822,[1,1,1,1,2,2,2,3,3,4]],[1708335823,[1,1,4,4,4,4,4,4,4,5]],[1708335824,[1,1,1,2,2,3,4,4,4,4]],[1708335825,[1,1,2,4,4,4,5,5,5,5]],[1708335826,[1,1,1,2,2,3,4,4,4,4]],[1708335827,[1,1,2,3,3,3,3,3,3,4]],[1708335828,[1,1,2,2,3,3,3,4,4,5]],[1708335829,[1,1,1,2,3,3,4,4,4,4]],[1708335830,[1,2,2,2,3,3,3,3,3,4]],[1708335831,[1,2,2,3,4,4,4,4,4,4]],[1708335832,[1,1,1,3,3,3,4,4,4,4]],[1708335833,[1,1,1,1,2,3,4,4,4,4]],[1708335834,[1,1,1,4,4,4,4,4,4,4]],[1708335835,[1,1,1,1,1,2,3,4,4,5]],[1708335836,[1,1,2,3,3,3,3,4,4,5]],[1708335837,[1,1,1,2,2,2,2,3,3,4]],[1708335838,[1,1,2,3,4,4,4,4,4,4]],[1708335839,[1,1,1,1,1,1,1,1,1,1]],[1708335840,[1,1,2,3,3,3,3,3,3,4]],[1708335841,[1,1,1,2,2,2,2,2,2,2]],[1708335842,[2,2,2,4,4,4,4,4,4,5]],[1708335843,[1,1,1,1,2,2,2,2,2,2]],[1708335844,[1,1,2,4,4,4,4,4,4,4]],[1708335845,[1,1,1,1,2,2,2,2,2,3]],[1708335846,[1,2,2,3,4,4,5,5,5,6]],[1708335847,[1,1,1,1,1,1,2,2,2,2]],[1708335848,[1,1,1,1,2,2,2,3,3,4]],[1708335849,[1,1,1,1,1,1,1,1,1,1]],[1708335850,[1,1,1,4,4,4,5,5,5,6]],[1708335851,[1,1,1,2,2,2,2,2,2,2]],[1708335852,[1,1,2,2,2,2,3,3,3,4]],[1708335853,[1,1,1,1,2,2,2,2,2,2]],[1708335854,[1,1,1,2,3,3,3,3,3,4]],[1708335855,[1,1,1,2,2,2,2,2,2,2]],[1708335856,[1,2,2,2,2,2,3,4,4,5]],[1708335857,[1,1,2,2,2,2,2,2,2,2]],[1708335858,[1,1,2,2,3,3,4,4,4,5]],[1708335859,[1,1,1,1,1,1,1,1,1,2]],[1708335860,[1,1,2,2,2,2,2,2,2,3]],[1708335861,[1,1,1,2,2,2,2,2,2,2]],[1708335862,[2,3,3,4,4,4,4,4,4,4]],[1708335863,[1,1,1,1,2,2,2,3,3,4]],[1708335864,[2,2,3,3,3,3,4,4,4,4]],[1708335865,[1,1,2,2,2,2,2,2,2,3]],[1708335866,[2,3,4,4,4,4,4,4,4,5]],[1708335867,[1,1,1,1,2,2,3,3,3,4]],[1708335868,[1,3,3,3,4,4,4,5,5,6]],[1708335869,[1,1,2,2,2,2,3,3,3,3]],[1708335870,[2,3,4,4,5,5,5,5,5,6]],[1708335871,[1,1,1,3,4,4,4,4,4,4]],[1708335872,[1,1,3,4,4,4,4,4,4,4]],[1708335873,[1,1,1,3,4,4,4,4,4,5]],[1708335874,[1,2,3,4,4,4,4,5,5,6]],[1708335875,[1,2,2,4,4,4,4,4,4,4]],[1708335876,[2,2,3,3,4,4,5,6,6,7]],[1708335877,[1,2,2,3,3,3,3,3,3,4]],[1708335878,[1,1,1,3,4,4,4,5,5,6]],[1708335879,[1,1,3,3,4,4,4,4,4,5]],[1708335880,[1,1,2,3,4,4,4,5,5,6]],[1708335881,[2,2,4,4,4,4,5,5,5,5]],[1708335882,[1,2,2,2,2,3,4,4,4,5]],[1708335883,[1,2,4,4,4,4,4,4,4,5]],[1708335884,[1,2,2,2,2,3,5,5,5,6]],[1708335885,[1,1,3,4,5,6,7,7,7,7]],[1708335886,[1,1,1,2,2,2,3,6,9,10]],[1708335887,[2,2,4,5,5,5,5,6,6,7]],[1708335888,[2,2,2,2,2,2,2,2,2,3]],[1708335889,[1,2,4,4,4,4,4,4,4,5]],[1708335890,[1,1,1,1,1,1,2,2,2,2]],[1708335891,[1,1,3,4,4,4,4,5,5,6]],[1708335892,[1,1,1,1,1,1,1,1,1,1]],[1708335893,[1,1,3,4,4,4,4,4,4,5]],[1708335894,[1,1,1,1,1,1,1,1,1,2]],[1708335895,[1,2,3,3,4,4,4,4,4,5]],[1708335896,[1,1,1,1,2,2,2,2,2,2]],[1708335897,[1,2,2,3,4,4,4,4,4,5]],[1708335898,[1,1,1,1,1,1,1,1,1,1]],[1708335899,[1,1,2,3,3,3,4,4,4,4]],[1708335900,[1,1,1,1,1,1,1,1,1,2]],[1708335901,[1,1,2,4,4,4,4,4,4,4]],[1708335902,[1,1,2,2,2,2,2,2,2,2]],[1708335903,[1,2,3,4,4,4,4,4,4,4]],[1708335904,[1,1,1,1,1,1,1,1,1,1]],[1708335905,[1,1,1,2,3,3,4,4,4,4]],[1708335906,[1,1,1,1,1,1,2,3,3,4]],[1708335907,[1,1,2,4,4,4,4,4,4,5]],[1708335908,[1,1,2,2,2,2,2,3,3,4]],[1708335909,[1,1,1,1,2,2,3,3,3,4]],[1708335910,[1,1,2,2,2,2,3,3,3,4]],[1708335911,[2,2,2,2,2,2,2,3,3,4]],[1708335912,[1,1,1,2,2,3,4,4,4,4]],[1708335913,[1,1,1,1,2,2,2,2,2,2]],[1708335914,[1,2,2,3,4,4,4,4,4,4]],[1708335915,[1,1,1,2,2,2,2,2,2,2]],[1708335916,[1,1,2,2,3,3,3,3,3,3]],[1708335917,[1,1,1,1,2,2,2,3,3,4]],[1708335918,[2,2,2,2,3,3,3,3,3,3]],[1708335919,[1,1,1,2,2,2,2,2,2,2]],[1708335920,[1,1,2,2,2,2,3,3,3,3]],[1708335921,[1,1,1,1,2,2,2,2,2,2]],[1708335922,[1,1,1,3,4,4,4,4,4,4]],[1708335923,[1,1,1,2,3,3,4,4,4,4]],[1708335924,[1,2,3,4,4,4,4,4,4,4]],[1708335925,[2,2,3,4,4,4,4,4,4,4]],[1708335926,[1,1,1,3,3,3,3,3,3,4]]]);
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([[1708335681,[25,0,25]],[1708335682,[0,0,0]],[1708335683,[1,0,1]],[1708335684,[25,0,25]],[1708335685,[1,1,0]],[1708335686,[41,21,20]],[1708335687,[13,11,2]],[1708335688,[6,1,5]],[1708335689,[9,1,8]],[1708335690,[11,1,10]],[1708335691,[13,1,12]],[1708335692,[18,2,16]],[1708335693,[19,1,18]],[1708335694,[24,2,22]],[1708335695,[26,2,24]],[1708335696,[27,1,26]],[1708335697,[32,2,30]],[1708335698,[34,2,32]],[1708335699,[37,2,35]],[1708335700,[39,2,37]],[1708335701,[43,2,41]],[1708335702,[44,2,42]],[1708335703,[48,2,46]],[1708335704,[50,2,48]],[1708335705,[54,3,51]],[1708335706,[56,2,54]],[1708335707,[61,3,58]],[1708335708,[61,2,59]],[1708335709,[65,3,62]],[1708335710,[67,2,65]],[1708335711,[70,3,67]],[1708335712,[73,3,70]],[1708335713,[77,3,74]],[1708335714,[80,3,77]],[1708335715,[80,3,77]],[1708335716,[85,3,82]],[1708335717,[87,4,83]],[1708335718,[91,3,88]],[1708335719,[92,3,89]],[1708335720,[96,4,92]],[1708335721,[98,3,95]],[1708335722,[101,4,97]],[1708335723,[105,4,101]],[1708335724,[107,4,103]],[1708335725,[110,4,106]],[1708335726,[112,4,108]],[1708335727,[116,4,112]],[1708335728,[118,4,114]],[1708335729,[121,4,117]],[1708335730,[123,4,119]],[1708335731,[126,4,122]],[1708335732,[129,4,125]],[1708335733,[133,5,128]],[1708335734,[135,4,131]],[1708335735,[138,5,133]],[1708335736,[141,5,136]],[1708335737,[143,4,139]],[1708335738,[147,5,142]],[1708335739,[149,5,144]],[1708335740,[151,5,146]],[1708335741,[155,5,150]],[1708335742,[158,5,153]],[1708335743,[160,5,155]],[1708335744,[162,6,156]],[1708335745,[167,5,162]],[1708335746,[170,6,164]],[1708335747,[171,5,166]],[1708335748,[174,6,168]],[1708335749,[176,5,171]],[1708335750,[181,6,175]],[1708335751,[183,6,177]],[1708335752,[186,6,180]],[1708335753,[188,6,182]],[1708335754,[192,6,186]],[1708335755,[194,6,188]],[1708335756,[196,6,190]],[1708335757,[199,6,193]],[1708335758,[203,7,196]],[1708335759,[205,6,199]],[1708335760,[207,6,201]],[1708335761,[211,7,204]],[1708335762,[213,6,207]],[1708335763,[217,7,210]],[1708335764,[220,7,213]],[1708335765,[222,7,215]],[1708335766,[225,7,218]],[1708335767,[227,7,220]],[1708335768,[231,7,224]],[1708335769,[233,7,226]],[1708335770,[237,7,230]],[1708335771,[238,7,231]],[1708335772,[242,8,234]],[1708335773,[245,7,238]],[1708335774,[248,8,240]],[1708335775,[250,8,242]],[1708335776,[252,7,245]],[1708335777,[256,8,248]],[1708335778,[259,8,251]],[1708335779,[262,8,254]],[1708335780,[264,8,256]],[1708335781,[266,8,258]],[1708335782,[270,8,262]],[1708335783,[273,8,265]],[1708335784,[275,8,267]],[1708335785,[279,9,270]],[1708335786,[281,8,273]],[1708335787,[283,9,274]],[1708335788,[286,8,278]],[1708335789,[290,9,281]],[1708335790,[292,8,284]],[1708335791,[295,9,286]],[1708335792,[299,9,290]],[1708335793,[300,9,291]],[1708335794,[304,9,295]],[1708335795,[306,9,297]],[1708335796,[309,9,300]],[1708335797,[313,10,303]],[1708335798,[314,9,305]],[1708335799,[318,9,309]],[1708335800,[321,10,311]],[1708335801,[322,9,313]],[1708335802,[326,10,316]],[1708335803,[330,10,320]],[1708335804,[331,10,321]],[1708335805,[334,10,324]],[1708335806,[338,10,328]],[1708335807,[341,10,331]],[1708335808,[339,10,329]],[1708335809,[341,10,331]],[1708335810,[340,10,330]],[1708335811,[340,10,330]],[1708335812,[340,10,330]],[1708335813,[339,10,329]],[1708335814,[341,10,331]],[1708335815,[339,10,329]],[1708335816,[341,10,331]],[1708335817,[339,10,329]],[1708335818,[341,10,331]],[1708335819,[339,10,329]],[1708335820,[341,10,331]],[1708335821,[340,10,330]],[1708335822,[339,10,329]],[1708335823,[341,10,331]],[1708335824,[339,10,329]],[1708335825,[341,10,331]],[1708335826,[340,10,330]],[1708335827,[339,10,329]],[1708335828,[341,10,331]],[1708335829,[338,10,328]],[1708335830,[342,10,332]],[1708335831,[340,10,330]],[1708335832,[338,10,328]],[1708335833,[342,10,332]],[1708335834,[340,10,330]],[1708335835,[339,10,329]],[1708335836,[341,10,331]],[1708335837,[339,10,329]],[1708335838,[341,10,331]],[1708335839,[338,10,328]],[1708335840,[342,10,332]],[1708335841,[340,10,330]],[1708335842,[340,10,330]],[1708335843,[340,10,330]],[1708335844,[340,10,330]],[1708335845,[340,10,330]],[1708335846,[340,10,330]],[1708335847,[340,10,330]],[1708335848,[339,10,329]],[1708335849,[341,10,331]],[1708335850,[339,10,329]],[1708335851,[341,10,331]],[1708335852,[340,10,330]],[1708335853,[340,10,330]],[1708335854,[340,10,330]],[1708335855,[340,10,330]],[1708335856,[340,10,330]],[1708335857,[340,10,330]],[1708335858,[340,10,330]],[1708335859,[340,10,330]],[1708335860,[340,10,330]],[1708335861,[339,10,329]],[1708335862,[341,10,331]],[1708335863,[339,10,329]],[1708335864,[341,10,331]],[1708335865,[340,10,330]],[1708335866,[340,10,330]],[1708335867,[340,10,330]],[1708335868,[339,10,329]],[1708335869,[341,10,331]],[1708335870,[340,10,330]],[1708335871,[338,10,328]],[1708335872,[342,10,332]],[1708335873,[340,10,330]],[1708335874,[340,10,330]],[1708335875,[340,10,330]],[1708335876,[339,10,329]],[1708335877,[341,10,331]],[1708335878,[339,10,329]],[1708335879,[341,10,331]],[1708335880,[340,10,330]],[1708335881,[340,10,330]],[1708335882,[340,10,330]],[1708335883,[340,10,330]],[1708335884,[340,10,330]],[1708335885,[340,10,330]],[1708335886,[340,10,330]],[1708335887,[340,10,330]],[1708335888,[340,10,330]],[1708335889,[340,10,330]],[1708335890,[340,10,330]],[1708335891,[339,10,329]],[1708335892,[340,10,330]],[1708335893,[341,10,331]],[1708335894,[338,10,328]],[1708335895,[342,10,332]],[1708335896,[340,10,330]],[1708335897,[338,10,328]],[1708335898,[341,10,331]],[1708335899,[339,10,329]],[1708335900,[342,10,332]],[1708335901,[340,10,330]],[1708335902,[340,10,330]],[1708335903,[340,10,330]],[1708335904,[339,10,329]],[1708335905,[341,10,331]],[1708335906,[339,10,329]],[1708335907,[341,10,331]],[1708335908,[340,10,330]],[1708335909,[339,10,329]],[1708335910,[341,10,331]],[1708335911,[340,10,330]],[1708335912,[339,10,329]],[1708335913,[341,10,331]],[1708335914,[340,10,330]],[1708335915,[340,10,330]],[1708335916,[340,10,330]],[1708335917,[340,10,330]],[1708335918,[340,10,330]],[1708335919,[339,10,329]],[1708335920,[341,10,331]],[1708335921,[340,10,330]],[1708335922,[340,10,330]],[1708335923,[340,10,330]],[1708335924,[340,10,330]],[1708335925,[340,10,330]],[1708335926,[504,14,490]]]);
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',