-
Notifications
You must be signed in to change notification settings - Fork 923
/
Copy pathindex.html
1215 lines (1145 loc) · 100 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-26 22:27:09 GMT</span>
</span>
<span class="simulation-information-item">
<span class="simulation-information-label">Duration: </span>
<span>4m 9s </span>
</span>
<span class="simulation-tooltip simulation-information-item description" title="Description" data-content="Rinha de Backend - 2024/Q1: Crébito - guihbc">
<span class="simulation-information-label">Description: </span>
<span>Rinha de Backend - 2024/Q1: Crébito - guihbc</span>
</span>
</div>
</div>
</div>
</div>
<div id="statistics_table_container">
<div id="stats" class="statistics extensible-geant collapsed">
<div class="title">
<div id="statistics_title" class="title_base"><span class="title_base_stats">Stats</span><span class="expand-table">Fixed height</span><span id="toggle-stats" class="toggle-table"></span><span class="collapse-table">Full size</span></div>
<div class="right">
<button class="statistics-button expand-all-button">Expand all groups</button>
<button class="statistics-button collapse-all-button">Collapse all groups</button>
<button id="statistics_full_screen" class="statistics-button" onclick="openStatisticsTableModal()"><img alt="Fullscreen" src="style/fullscreen.svg"></button>
</div>
</div>
<div class="scrollable">
<table id="container_statistics_head" class="statistics-in extensible-geant">
<thead>
<tr>
<th rowspan="2" id="col-1" class="header sortable sorted-up"><span>Requests</span></th>
<th colspan="5" class="header"><span class="executions">Executions</span></th>
<th colspan="8" class="header"><span class="response-time">Response Time (ms)</span></th>
</tr>
<tr>
<th id="col-2" class="header sortable"><span>Total</span></th>
<th id="col-3" class="header sortable"><span>OK</span></th>
<th id="col-4" class="header sortable"><span>KO</span></th>
<th id="col-5" class="header sortable"><span>% KO</span></th>
<th id="col-6" class="header sortable"><span><abbr title="Count of events per second">Cnt/s</abbr></span></th>
<th id="col-7" class="header sortable"><span>Min</span></th>
<th id="col-8" class="header sortable"><span>50th pct</span></th>
<th id="col-9" class="header sortable"><span>75th pct</span></th>
<th id="col-10" class="header sortable"><span>95th pct</span></th>
<th id="col-11" class="header sortable"><span>99th pct</span></th>
<th id="col-12" class="header sortable"><span>Max</span></th>
<th id="col-13" class="header sortable"><span>Mean</span></th>
<th id="col-14" class="header sortable"><span><abbr title="Standard Deviation">Std Dev</abbr></span></th>
</tr>
</thead>
<tbody></tbody>
</table>
<table id="container_statistics_body" class="statistics-in extensible-geant">
<tbody></tbody>
</table>
</div>
</div>
</div>
<dialog id="statistics_table_modal" class="statistics-table-modal">
<div class="statistics-table-modal-header"><button class="button-modal" onclick="closeStatisticsTableModal()"><img alt="Close" src="style/close.svg"></button></div>
<div class="statistics-table-modal-container">
<div id="statistics_table_modal_content" class="statistics-table-modal-content"></div>
</div>
</dialog>
<script>
function openStatisticsTableModal () {
const statsTable = document.getElementById("stats");
const statsTableModal = document.getElementById("statistics_table_modal");
const fullScreenButton = document.getElementById("statistics_full_screen");
fullScreenButton.disabled = true;
if (typeof statsTableModal.showModal === "function") {
const statsTableModalContent = document.getElementById("statistics_table_modal_content");
statsTableModalContent.innerHTML = "";
statsTableModalContent.appendChild(statsTable);
statsTableModal.showModal();
statsTableModal.addEventListener("close", function () {
const container = document.getElementById("statistics_table_container");
container.appendChild(statsTable);
fullScreenButton.disabled = false;
});
} else {
const incompatibleBrowserVersionMessage = document.createElement("div");
incompatibleBrowserVersionMessage.innerText = "Sorry, the <dialog> API is not supported by this browser.";
statsTable.insertBefore(incompatibleBrowserVersionMessage, statsTable.children[0]);
}
}
function closeStatisticsTableModal () {
const statsTableModal = document.getElementById("statistics_table_modal");
statsTableModal.close();
}
</script>
<div class="statistics extensible-geant collapsed">
<div class="title">
Errors
</div>
<table id="container_errors" class="statistics-in extensible-geant">
<thead>
<tr>
<th id="error-col-1" class="header sortable"><span>Error</span></th>
<th id="error-col-2" class="header sortable"><span>Count</span></th>
<th id="error-col-3" class="header sortable"><span>Percentage</span></th>
</tr>
</thead>
<tbody>
<tr>
<td class="error-col-1 total ko">j.i.IOException: Premature close<span class="value" style="display:none">0</span></td>
<td class="value error-col-2 total ko">21271</td>
<td class="value error-col-3 total ko">71.069 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">status.find.in(200,422), but actually found 500<span class="value" style="display:none">1</span></td>
<td class="value error-col-2 total ko">5722</td>
<td class="value error-col-3 total ko">19.118 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">j.u.NoSuchElementException: No attribute named 'limite' is defined<span class="value" style="display:none">2</span></td>
<td class="value error-col-2 total ko">2916</td>
<td class="value error-col-3 total ko">9.743 %</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">20</td>
<td class="value error-col-3 total ko">0.067 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">status.find.is(404), but actually found 200<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.003 %</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: [
[1708986430000,0],[1708986431000,0],[1708986432000,0],[1708986433000,0],[1708986434000,0],[1708986435000,2],[1708986436000,2],[1708986437000,4],[1708986438000,4],[1708986439000,5],[1708986440000,6],[1708986441000,7],[1708986442000,8],[1708986443000,9],[1708986444000,10],[1708986445000,10],[1708986446000,12],[1708986447000,13],[1708986448000,14],[1708986449000,15],[1708986450000,15],[1708986451000,16],[1708986452000,17],[1708986453000,17],[1708986454000,19],[1708986455000,20],[1708986456000,20],[1708986457000,22],[1708986458000,22],[1708986459000,23],[1708986460000,25],[1708986461000,25],[1708986462000,26],[1708986463000,26],[1708986464000,28],[1708986465000,29],[1708986466000,30],[1708986467000,30],[1708986468000,32],[1708986469000,32],[1708986470000,33],[1708986471000,36],[1708986472000,38],[1708986473000,36],[1708986474000,41],[1708986475000,53],[1708986476000,53],[1708986477000,53],[1708986478000,53],[1708986479000,59],[1708986480000,56],[1708986481000,58],[1708986482000,53],[1708986483000,51],[1708986484000,56],[1708986485000,55],[1708986486000,52],[1708986487000,48],[1708986488000,50],[1708986489000,50],[1708986490000,52],[1708986491000,52],[1708986492000,53],[1708986493000,54],[1708986494000,56],[1708986495000,55],[1708986496000,57],[1708986497000,58],[1708986498000,59],[1708986499000,59],[1708986500000,61],[1708986501000,64],[1708986502000,84],[1708986503000,100],[1708986504000,112],[1708986505000,131],[1708986506000,137],[1708986507000,139],[1708986508000,142],[1708986509000,139],[1708986510000,141],[1708986511000,142],[1708986512000,149],[1708986513000,138],[1708986514000,146],[1708986515000,141],[1708986516000,149],[1708986517000,148],[1708986518000,150],[1708986519000,153],[1708986520000,158],[1708986521000,153],[1708986522000,159],[1708986523000,157],[1708986524000,154],[1708986525000,165],[1708986526000,173],[1708986527000,167],[1708986528000,164],[1708986529000,163],[1708986530000,164],[1708986531000,171],[1708986532000,173],[1708986533000,169],[1708986534000,187],[1708986535000,176],[1708986536000,166],[1708986537000,167],[1708986538000,172],[1708986539000,176],[1708986540000,179],[1708986541000,182],[1708986542000,179],[1708986543000,185],[1708986544000,182],[1708986545000,179],[1708986546000,177],[1708986547000,176],[1708986548000,181],[1708986549000,186],[1708986550000,178],[1708986551000,188],[1708986552000,177],[1708986553000,186],[1708986554000,187],[1708986555000,183],[1708986556000,184],[1708986557000,192],[1708986558000,185],[1708986559000,182],[1708986560000,187],[1708986561000,178],[1708986562000,177],[1708986563000,178],[1708986564000,181],[1708986565000,196],[1708986566000,199],[1708986567000,201],[1708986568000,198],[1708986569000,205],[1708986570000,193],[1708986571000,185],[1708986572000,189],[1708986573000,183],[1708986574000,184],[1708986575000,191],[1708986576000,186],[1708986577000,192],[1708986578000,198],[1708986579000,190],[1708986580000,193],[1708986581000,196],[1708986582000,193],[1708986583000,192],[1708986584000,197],[1708986585000,189],[1708986586000,173],[1708986587000,181],[1708986588000,185],[1708986589000,181],[1708986590000,182],[1708986591000,185],[1708986592000,191],[1708986593000,185],[1708986594000,188],[1708986595000,188],[1708986596000,182],[1708986597000,181],[1708986598000,180],[1708986599000,174],[1708986600000,175],[1708986601000,182],[1708986602000,167],[1708986603000,178],[1708986604000,177],[1708986605000,184],[1708986606000,177],[1708986607000,186],[1708986608000,181],[1708986609000,189],[1708986610000,187],[1708986611000,196],[1708986612000,188],[1708986613000,195],[1708986614000,185],[1708986615000,182],[1708986616000,184],[1708986617000,186],[1708986618000,179],[1708986619000,182],[1708986620000,236],[1708986621000,224],[1708986622000,235],[1708986623000,229],[1708986624000,235],[1708986625000,187],[1708986626000,194],[1708986627000,182],[1708986628000,169],[1708986629000,176],[1708986630000,173],[1708986631000,167],[1708986632000,167],[1708986633000,174],[1708986634000,174],[1708986635000,181],[1708986636000,185],[1708986637000,185],[1708986638000,179],[1708986639000,176],[1708986640000,184],[1708986641000,177],[1708986642000,261],[1708986643000,256],[1708986644000,259],[1708986645000,262],[1708986646000,258],[1708986647000,217],[1708986648000,204],[1708986649000,206],[1708986650000,210],[1708986651000,201],[1708986652000,206],[1708986653000,192],[1708986654000,192],[1708986655000,201],[1708986656000,198],[1708986657000,193],[1708986658000,199],[1708986659000,195],[1708986660000,196],[1708986661000,197],[1708986662000,192],[1708986663000,197],[1708986664000,194],[1708986665000,212],[1708986666000,204],[1708986667000,197],[1708986668000,207],[1708986669000,207],[1708986670000,206],[1708986671000,200],[1708986672000,190],[1708986673000,191],[1708986674000,179],[1708986675000,72],[1708986676000,60],[1708986677000,47],[1708986678000,29],[1708986679000,18]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#68b65c',
name: 'débitos',
data: [
[1708986430000,0],[1708986431000,0],[1708986432000,0],[1708986433000,0],[1708986434000,0],[1708986435000,2],[1708986436000,4],[1708986437000,6],[1708986438000,7],[1708986439000,9],[1708986440000,11],[1708986441000,15],[1708986442000,16],[1708986443000,17],[1708986444000,20],[1708986445000,20],[1708986446000,22],[1708986447000,25],[1708986448000,25],[1708986449000,30],[1708986450000,29],[1708986451000,31],[1708986452000,33],[1708986453000,35],[1708986454000,37],[1708986455000,38],[1708986456000,40],[1708986457000,42],[1708986458000,44],[1708986459000,46],[1708986460000,47],[1708986461000,50],[1708986462000,51],[1708986463000,53],[1708986464000,55],[1708986465000,56],[1708986466000,59],[1708986467000,60],[1708986468000,62],[1708986469000,64],[1708986470000,66],[1708986471000,70],[1708986472000,72],[1708986473000,72],[1708986474000,78],[1708986475000,98],[1708986476000,110],[1708986477000,112],[1708986478000,109],[1708986479000,124],[1708986480000,110],[1708986481000,116],[1708986482000,113],[1708986483000,108],[1708986484000,119],[1708986485000,116],[1708986486000,105],[1708986487000,97],[1708986488000,98],[1708986489000,101],[1708986490000,102],[1708986491000,104],[1708986492000,106],[1708986493000,108],[1708986494000,110],[1708986495000,111],[1708986496000,113],[1708986497000,115],[1708986498000,117],[1708986499000,119],[1708986500000,120],[1708986501000,128],[1708986502000,161],[1708986503000,190],[1708986504000,222],[1708986505000,241],[1708986506000,258],[1708986507000,261],[1708986508000,288],[1708986509000,290],[1708986510000,295],[1708986511000,304],[1708986512000,314],[1708986513000,286],[1708986514000,300],[1708986515000,293],[1708986516000,307],[1708986517000,319],[1708986518000,315],[1708986519000,319],[1708986520000,315],[1708986521000,315],[1708986522000,314],[1708986523000,310],[1708986524000,303],[1708986525000,322],[1708986526000,326],[1708986527000,318],[1708986528000,333],[1708986529000,332],[1708986530000,334],[1708986531000,339],[1708986532000,341],[1708986533000,330],[1708986534000,375],[1708986535000,343],[1708986536000,352],[1708986537000,348],[1708986538000,365],[1708986539000,355],[1708986540000,363],[1708986541000,356],[1708986542000,360],[1708986543000,364],[1708986544000,365],[1708986545000,355],[1708986546000,363],[1708986547000,366],[1708986548000,361],[1708986549000,373],[1708986550000,370],[1708986551000,378],[1708986552000,367],[1708986553000,380],[1708986554000,385],[1708986555000,383],[1708986556000,376],[1708986557000,378],[1708986558000,377],[1708986559000,373],[1708986560000,380],[1708986561000,384],[1708986562000,382],[1708986563000,383],[1708986564000,382],[1708986565000,375],[1708986566000,404],[1708986567000,405],[1708986568000,398],[1708986569000,404],[1708986570000,387],[1708986571000,374],[1708986572000,388],[1708986573000,377],[1708986574000,387],[1708986575000,392],[1708986576000,388],[1708986577000,386],[1708986578000,388],[1708986579000,382],[1708986580000,380],[1708986581000,377],[1708986582000,372],[1708986583000,379],[1708986584000,391],[1708986585000,396],[1708986586000,391],[1708986587000,404],[1708986588000,402],[1708986589000,393],[1708986590000,395],[1708986591000,394],[1708986592000,388],[1708986593000,380],[1708986594000,380],[1708986595000,388],[1708986596000,378],[1708986597000,393],[1708986598000,392],[1708986599000,398],[1708986600000,400],[1708986601000,404],[1708986602000,401],[1708986603000,411],[1708986604000,409],[1708986605000,411],[1708986606000,402],[1708986607000,389],[1708986608000,398],[1708986609000,394],[1708986610000,393],[1708986611000,394],[1708986612000,383],[1708986613000,389],[1708986614000,392],[1708986615000,386],[1708986616000,394],[1708986617000,400],[1708986618000,390],[1708986619000,389],[1708986620000,498],[1708986621000,470],[1708986622000,481],[1708986623000,472],[1708986624000,467],[1708986625000,378],[1708986626000,386],[1708986627000,378],[1708986628000,376],[1708986629000,399],[1708986630000,403],[1708986631000,392],[1708986632000,398],[1708986633000,383],[1708986634000,389],[1708986635000,379],[1708986636000,375],[1708986637000,379],[1708986638000,382],[1708986639000,395],[1708986640000,404],[1708986641000,397],[1708986642000,561],[1708986643000,526],[1708986644000,511],[1708986645000,526],[1708986646000,517],[1708986647000,437],[1708986648000,398],[1708986649000,397],[1708986650000,396],[1708986651000,398],[1708986652000,390],[1708986653000,392],[1708986654000,388],[1708986655000,402],[1708986656000,397],[1708986657000,398],[1708986658000,398],[1708986659000,395],[1708986660000,388],[1708986661000,392],[1708986662000,378],[1708986663000,397],[1708986664000,399],[1708986665000,399],[1708986666000,399],[1708986667000,405],[1708986668000,411],[1708986669000,416],[1708986670000,421],[1708986671000,416],[1708986672000,408],[1708986673000,404],[1708986674000,401],[1708986675000,179],[1708986676000,147],[1708986677000,109],[1708986678000,74],[1708986679000,42]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#f15b4f',
name: 'extratos',
data: [
[1708986430000,0],[1708986431000,0],[1708986432000,0],[1708986433000,0],[1708986434000,0],[1708986435000,2],[1708986436000,1],[1708986437000,1],[1708986438000,1],[1708986439000,1],[1708986440000,2],[1708986441000,1],[1708986442000,3],[1708986443000,2],[1708986444000,1],[1708986445000,2],[1708986446000,2],[1708986447000,2],[1708986448000,2],[1708986449000,2],[1708986450000,3],[1708986451000,2],[1708986452000,3],[1708986453000,2],[1708986454000,3],[1708986455000,2],[1708986456000,3],[1708986457000,2],[1708986458000,3],[1708986459000,3],[1708986460000,3],[1708986461000,3],[1708986462000,3],[1708986463000,3],[1708986464000,3],[1708986465000,4],[1708986466000,3],[1708986467000,3],[1708986468000,4],[1708986469000,3],[1708986470000,4],[1708986471000,4],[1708986472000,4],[1708986473000,4],[1708986474000,4],[1708986475000,5],[1708986476000,6],[1708986477000,5],[1708986478000,5],[1708986479000,5],[1708986480000,6],[1708986481000,8],[1708986482000,9],[1708986483000,10],[1708986484000,10],[1708986485000,10],[1708986486000,7],[1708986487000,5],[1708986488000,5],[1708986489000,5],[1708986490000,5],[1708986491000,5],[1708986492000,6],[1708986493000,5],[1708986494000,6],[1708986495000,5],[1708986496000,6],[1708986497000,5],[1708986498000,6],[1708986499000,6],[1708986500000,6],[1708986501000,6],[1708986502000,8],[1708986503000,10],[1708986504000,12],[1708986505000,16],[1708986506000,17],[1708986507000,17],[1708986508000,15],[1708986509000,14],[1708986510000,11],[1708986511000,10],[1708986512000,12],[1708986513000,13],[1708986514000,12],[1708986515000,13],[1708986516000,14],[1708986517000,14],[1708986518000,14],[1708986519000,12],[1708986520000,13],[1708986521000,12],[1708986522000,12],[1708986523000,14],[1708986524000,15],[1708986525000,17],[1708986526000,16],[1708986527000,17],[1708986528000,15],[1708986529000,14],[1708986530000,12],[1708986531000,13],[1708986532000,15],[1708986533000,15],[1708986534000,19],[1708986535000,18],[1708986536000,18],[1708986537000,17],[1708986538000,17],[1708986539000,16],[1708986540000,16],[1708986541000,15],[1708986542000,16],[1708986543000,15],[1708986544000,15],[1708986545000,16],[1708986546000,16],[1708986547000,17],[1708986548000,17],[1708986549000,16],[1708986550000,18],[1708986551000,18],[1708986552000,18],[1708986553000,17],[1708986554000,17],[1708986555000,15],[1708986556000,14],[1708986557000,16],[1708986558000,16],[1708986559000,14],[1708986560000,14],[1708986561000,14],[1708986562000,15],[1708986563000,16],[1708986564000,18],[1708986565000,18],[1708986566000,19],[1708986567000,18],[1708986568000,19],[1708986569000,17],[1708986570000,19],[1708986571000,21],[1708986572000,23],[1708986573000,25],[1708986574000,26],[1708986575000,24],[1708986576000,22],[1708986577000,23],[1708986578000,24],[1708986579000,23],[1708986580000,24],[1708986581000,25],[1708986582000,24],[1708986583000,22],[1708986584000,24],[1708986585000,26],[1708986586000,27],[1708986587000,24],[1708986588000,26],[1708986589000,26],[1708986590000,26],[1708986591000,26],[1708986592000,29],[1708986593000,28],[1708986594000,23],[1708986595000,20],[1708986596000,17],[1708986597000,14],[1708986598000,16],[1708986599000,18],[1708986600000,18],[1708986601000,23],[1708986602000,24],[1708986603000,22],[1708986604000,24],[1708986605000,24],[1708986606000,21],[1708986607000,19],[1708986608000,20],[1708986609000,17],[1708986610000,19],[1708986611000,17],[1708986612000,19],[1708986613000,20],[1708986614000,20],[1708986615000,18],[1708986616000,21],[1708986617000,20],[1708986618000,20],[1708986619000,21],[1708986620000,26],[1708986621000,25],[1708986622000,27],[1708986623000,24],[1708986624000,21],[1708986625000,17],[1708986626000,18],[1708986627000,19],[1708986628000,19],[1708986629000,23],[1708986630000,24],[1708986631000,22],[1708986632000,24],[1708986633000,29],[1708986634000,26],[1708986635000,25],[1708986636000,26],[1708986637000,22],[1708986638000,17],[1708986639000,17],[1708986640000,21],[1708986641000,19],[1708986642000,23],[1708986643000,23],[1708986644000,23],[1708986645000,17],[1708986646000,19],[1708986647000,16],[1708986648000,20],[1708986649000,25],[1708986650000,27],[1708986651000,27],[1708986652000,29],[1708986653000,27],[1708986654000,28],[1708986655000,30],[1708986656000,32],[1708986657000,28],[1708986658000,28],[1708986659000,22],[1708986660000,21],[1708986661000,17],[1708986662000,21],[1708986663000,21],[1708986664000,22],[1708986665000,21],[1708986666000,24],[1708986667000,22],[1708986668000,23],[1708986669000,20],[1708986670000,22],[1708986671000,20],[1708986672000,20],[1708986673000,18],[1708986674000,21],[1708986675000,11],[1708986676000,10],[1708986677000,8],[1708986678000,8],[1708986679000,3]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FFDD00',
name: 'validação HTTP 404',
data: [
[1708986430000,0],[1708986431000,0],[1708986432000,0],[1708986433000,1],[1708986434000,0],[1708986435000,0],[1708986436000,0],[1708986437000,0],[1708986438000,0],[1708986439000,0],[1708986440000,0],[1708986441000,0],[1708986442000,0],[1708986443000,0],[1708986444000,0],[1708986445000,0],[1708986446000,0],[1708986447000,0],[1708986448000,0],[1708986449000,0],[1708986450000,0],[1708986451000,0],[1708986452000,0],[1708986453000,0],[1708986454000,0],[1708986455000,0],[1708986456000,0],[1708986457000,0],[1708986458000,0],[1708986459000,0],[1708986460000,0],[1708986461000,0],[1708986462000,0],[1708986463000,0],[1708986464000,0],[1708986465000,0],[1708986466000,0],[1708986467000,0],[1708986468000,0],[1708986469000,0],[1708986470000,0],[1708986471000,0],[1708986472000,0],[1708986473000,0],[1708986474000,0],[1708986475000,0],[1708986476000,0],[1708986477000,0],[1708986478000,0],[1708986479000,0],[1708986480000,0],[1708986481000,0],[1708986482000,0],[1708986483000,0],[1708986484000,0],[1708986485000,0],[1708986486000,0],[1708986487000,0],[1708986488000,0],[1708986489000,0],[1708986490000,0],[1708986491000,0],[1708986492000,0],[1708986493000,0],[1708986494000,0],[1708986495000,0],[1708986496000,0],[1708986497000,0],[1708986498000,0],[1708986499000,0],[1708986500000,0],[1708986501000,0],[1708986502000,0],[1708986503000,0],[1708986504000,0],[1708986505000,0],[1708986506000,0],[1708986507000,0],[1708986508000,0],[1708986509000,0],[1708986510000,0],[1708986511000,0],[1708986512000,0],[1708986513000,0],[1708986514000,0],[1708986515000,0],[1708986516000,0],[1708986517000,0],[1708986518000,0],[1708986519000,0],[1708986520000,0],[1708986521000,0],[1708986522000,0],[1708986523000,0],[1708986524000,0],[1708986525000,0],[1708986526000,0],[1708986527000,0],[1708986528000,0],[1708986529000,0],[1708986530000,0],[1708986531000,0],[1708986532000,0],[1708986533000,0],[1708986534000,0],[1708986535000,0],[1708986536000,0],[1708986537000,0],[1708986538000,0],[1708986539000,0],[1708986540000,0],[1708986541000,0],[1708986542000,0],[1708986543000,0],[1708986544000,0],[1708986545000,0],[1708986546000,0],[1708986547000,0],[1708986548000,0],[1708986549000,0],[1708986550000,0],[1708986551000,0],[1708986552000,0],[1708986553000,0],[1708986554000,0],[1708986555000,0],[1708986556000,0],[1708986557000,0],[1708986558000,0],[1708986559000,0],[1708986560000,0],[1708986561000,0],[1708986562000,0],[1708986563000,0],[1708986564000,0],[1708986565000,0],[1708986566000,0],[1708986567000,0],[1708986568000,0],[1708986569000,0],[1708986570000,0],[1708986571000,0],[1708986572000,0],[1708986573000,0],[1708986574000,0],[1708986575000,0],[1708986576000,0],[1708986577000,0],[1708986578000,0],[1708986579000,0],[1708986580000,0],[1708986581000,0],[1708986582000,0],[1708986583000,0],[1708986584000,0],[1708986585000,0],[1708986586000,0],[1708986587000,0],[1708986588000,0],[1708986589000,0],[1708986590000,0],[1708986591000,0],[1708986592000,0],[1708986593000,0],[1708986594000,0],[1708986595000,0],[1708986596000,0],[1708986597000,0],[1708986598000,0],[1708986599000,0],[1708986600000,0],[1708986601000,0],[1708986602000,0],[1708986603000,0],[1708986604000,0],[1708986605000,0],[1708986606000,0],[1708986607000,0],[1708986608000,0],[1708986609000,0],[1708986610000,0],[1708986611000,0],[1708986612000,0],[1708986613000,0],[1708986614000,0],[1708986615000,0],[1708986616000,0],[1708986617000,0],[1708986618000,0],[1708986619000,0],[1708986620000,0],[1708986621000,0],[1708986622000,0],[1708986623000,0],[1708986624000,0],[1708986625000,0],[1708986626000,0],[1708986627000,0],[1708986628000,0],[1708986629000,0],[1708986630000,0],[1708986631000,0],[1708986632000,0],[1708986633000,0],[1708986634000,0],[1708986635000,0],[1708986636000,0],[1708986637000,0],[1708986638000,0],[1708986639000,0],[1708986640000,0],[1708986641000,0],[1708986642000,0],[1708986643000,0],[1708986644000,0],[1708986645000,0],[1708986646000,0],[1708986647000,0],[1708986648000,0],[1708986649000,0],[1708986650000,0],[1708986651000,0],[1708986652000,0],[1708986653000,0],[1708986654000,0],[1708986655000,0],[1708986656000,0],[1708986657000,0],[1708986658000,0],[1708986659000,0],[1708986660000,0],[1708986661000,0],[1708986662000,0],[1708986663000,0],[1708986664000,0],[1708986665000,0],[1708986666000,0],[1708986667000,0],[1708986668000,0],[1708986669000,0],[1708986670000,0],[1708986671000,0],[1708986672000,0],[1708986673000,0],[1708986674000,0],[1708986675000,0],[1708986676000,0],[1708986677000,0],[1708986678000,0],[1708986679000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00D5FF',
name: 'validações',
data: [
[1708986430000,0],[1708986431000,0],[1708986432000,0],[1708986433000,5],[1708986434000,5],[1708986435000,0],[1708986436000,0],[1708986437000,0],[1708986438000,0],[1708986439000,0],[1708986440000,0],[1708986441000,0],[1708986442000,0],[1708986443000,0],[1708986444000,0],[1708986445000,0],[1708986446000,0],[1708986447000,0],[1708986448000,0],[1708986449000,0],[1708986450000,0],[1708986451000,0],[1708986452000,0],[1708986453000,0],[1708986454000,0],[1708986455000,0],[1708986456000,0],[1708986457000,0],[1708986458000,0],[1708986459000,0],[1708986460000,0],[1708986461000,0],[1708986462000,0],[1708986463000,0],[1708986464000,0],[1708986465000,0],[1708986466000,0],[1708986467000,0],[1708986468000,0],[1708986469000,0],[1708986470000,0],[1708986471000,0],[1708986472000,0],[1708986473000,0],[1708986474000,0],[1708986475000,0],[1708986476000,0],[1708986477000,0],[1708986478000,0],[1708986479000,0],[1708986480000,0],[1708986481000,0],[1708986482000,0],[1708986483000,0],[1708986484000,0],[1708986485000,0],[1708986486000,0],[1708986487000,0],[1708986488000,0],[1708986489000,0],[1708986490000,0],[1708986491000,0],[1708986492000,0],[1708986493000,0],[1708986494000,0],[1708986495000,0],[1708986496000,0],[1708986497000,0],[1708986498000,0],[1708986499000,0],[1708986500000,0],[1708986501000,0],[1708986502000,0],[1708986503000,0],[1708986504000,0],[1708986505000,0],[1708986506000,0],[1708986507000,0],[1708986508000,0],[1708986509000,0],[1708986510000,0],[1708986511000,0],[1708986512000,0],[1708986513000,0],[1708986514000,0],[1708986515000,0],[1708986516000,0],[1708986517000,0],[1708986518000,0],[1708986519000,0],[1708986520000,0],[1708986521000,0],[1708986522000,0],[1708986523000,0],[1708986524000,0],[1708986525000,0],[1708986526000,0],[1708986527000,0],[1708986528000,0],[1708986529000,0],[1708986530000,0],[1708986531000,0],[1708986532000,0],[1708986533000,0],[1708986534000,0],[1708986535000,0],[1708986536000,0],[1708986537000,0],[1708986538000,0],[1708986539000,0],[1708986540000,0],[1708986541000,0],[1708986542000,0],[1708986543000,0],[1708986544000,0],[1708986545000,0],[1708986546000,0],[1708986547000,0],[1708986548000,0],[1708986549000,0],[1708986550000,0],[1708986551000,0],[1708986552000,0],[1708986553000,0],[1708986554000,0],[1708986555000,0],[1708986556000,0],[1708986557000,0],[1708986558000,0],[1708986559000,0],[1708986560000,0],[1708986561000,0],[1708986562000,0],[1708986563000,0],[1708986564000,0],[1708986565000,0],[1708986566000,0],[1708986567000,0],[1708986568000,0],[1708986569000,0],[1708986570000,0],[1708986571000,0],[1708986572000,0],[1708986573000,0],[1708986574000,0],[1708986575000,0],[1708986576000,0],[1708986577000,0],[1708986578000,0],[1708986579000,0],[1708986580000,0],[1708986581000,0],[1708986582000,0],[1708986583000,0],[1708986584000,0],[1708986585000,0],[1708986586000,0],[1708986587000,0],[1708986588000,0],[1708986589000,0],[1708986590000,0],[1708986591000,0],[1708986592000,0],[1708986593000,0],[1708986594000,0],[1708986595000,0],[1708986596000,0],[1708986597000,0],[1708986598000,0],[1708986599000,0],[1708986600000,0],[1708986601000,0],[1708986602000,0],[1708986603000,0],[1708986604000,0],[1708986605000,0],[1708986606000,0],[1708986607000,0],[1708986608000,0],[1708986609000,0],[1708986610000,0],[1708986611000,0],[1708986612000,0],[1708986613000,0],[1708986614000,0],[1708986615000,0],[1708986616000,0],[1708986617000,0],[1708986618000,0],[1708986619000,0],[1708986620000,0],[1708986621000,0],[1708986622000,0],[1708986623000,0],[1708986624000,0],[1708986625000,0],[1708986626000,0],[1708986627000,0],[1708986628000,0],[1708986629000,0],[1708986630000,0],[1708986631000,0],[1708986632000,0],[1708986633000,0],[1708986634000,0],[1708986635000,0],[1708986636000,0],[1708986637000,0],[1708986638000,0],[1708986639000,0],[1708986640000,0],[1708986641000,0],[1708986642000,0],[1708986643000,0],[1708986644000,0],[1708986645000,0],[1708986646000,0],[1708986647000,0],[1708986648000,0],[1708986649000,0],[1708986650000,0],[1708986651000,0],[1708986652000,0],[1708986653000,0],[1708986654000,0],[1708986655000,0],[1708986656000,0],[1708986657000,0],[1708986658000,0],[1708986659000,0],[1708986660000,0],[1708986661000,0],[1708986662000,0],[1708986663000,0],[1708986664000,0],[1708986665000,0],[1708986666000,0],[1708986667000,0],[1708986668000,0],[1708986669000,0],[1708986670000,0],[1708986671000,0],[1708986672000,0],[1708986673000,0],[1708986674000,0],[1708986675000,0],[1708986676000,0],[1708986677000,0],[1708986678000,0],[1708986679000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00FF00',
name: 'validação concorrência saldo - 0',
data: [
[1708986430000,0],[1708986431000,0],[1708986432000,1],[1708986433000,0],[1708986434000,0],[1708986435000,0],[1708986436000,0],[1708986437000,0],[1708986438000,0],[1708986439000,0],[1708986440000,0],[1708986441000,0],[1708986442000,0],[1708986443000,0],[1708986444000,0],[1708986445000,0],[1708986446000,0],[1708986447000,0],[1708986448000,0],[1708986449000,0],[1708986450000,0],[1708986451000,0],[1708986452000,0],[1708986453000,0],[1708986454000,0],[1708986455000,0],[1708986456000,0],[1708986457000,0],[1708986458000,0],[1708986459000,0],[1708986460000,0],[1708986461000,0],[1708986462000,0],[1708986463000,0],[1708986464000,0],[1708986465000,0],[1708986466000,0],[1708986467000,0],[1708986468000,0],[1708986469000,0],[1708986470000,0],[1708986471000,0],[1708986472000,0],[1708986473000,0],[1708986474000,0],[1708986475000,0],[1708986476000,0],[1708986477000,0],[1708986478000,0],[1708986479000,0],[1708986480000,0],[1708986481000,0],[1708986482000,0],[1708986483000,0],[1708986484000,0],[1708986485000,0],[1708986486000,0],[1708986487000,0],[1708986488000,0],[1708986489000,0],[1708986490000,0],[1708986491000,0],[1708986492000,0],[1708986493000,0],[1708986494000,0],[1708986495000,0],[1708986496000,0],[1708986497000,0],[1708986498000,0],[1708986499000,0],[1708986500000,0],[1708986501000,0],[1708986502000,0],[1708986503000,0],[1708986504000,0],[1708986505000,0],[1708986506000,0],[1708986507000,0],[1708986508000,0],[1708986509000,0],[1708986510000,0],[1708986511000,0],[1708986512000,0],[1708986513000,0],[1708986514000,0],[1708986515000,0],[1708986516000,0],[1708986517000,0],[1708986518000,0],[1708986519000,0],[1708986520000,0],[1708986521000,0],[1708986522000,0],[1708986523000,0],[1708986524000,0],[1708986525000,0],[1708986526000,0],[1708986527000,0],[1708986528000,0],[1708986529000,0],[1708986530000,0],[1708986531000,0],[1708986532000,0],[1708986533000,0],[1708986534000,0],[1708986535000,0],[1708986536000,0],[1708986537000,0],[1708986538000,0],[1708986539000,0],[1708986540000,0],[1708986541000,0],[1708986542000,0],[1708986543000,0],[1708986544000,0],[1708986545000,0],[1708986546000,0],[1708986547000,0],[1708986548000,0],[1708986549000,0],[1708986550000,0],[1708986551000,0],[1708986552000,0],[1708986553000,0],[1708986554000,0],[1708986555000,0],[1708986556000,0],[1708986557000,0],[1708986558000,0],[1708986559000,0],[1708986560000,0],[1708986561000,0],[1708986562000,0],[1708986563000,0],[1708986564000,0],[1708986565000,0],[1708986566000,0],[1708986567000,0],[1708986568000,0],[1708986569000,0],[1708986570000,0],[1708986571000,0],[1708986572000,0],[1708986573000,0],[1708986574000,0],[1708986575000,0],[1708986576000,0],[1708986577000,0],[1708986578000,0],[1708986579000,0],[1708986580000,0],[1708986581000,0],[1708986582000,0],[1708986583000,0],[1708986584000,0],[1708986585000,0],[1708986586000,0],[1708986587000,0],[1708986588000,0],[1708986589000,0],[1708986590000,0],[1708986591000,0],[1708986592000,0],[1708986593000,0],[1708986594000,0],[1708986595000,0],[1708986596000,0],[1708986597000,0],[1708986598000,0],[1708986599000,0],[1708986600000,0],[1708986601000,0],[1708986602000,0],[1708986603000,0],[1708986604000,0],[1708986605000,0],[1708986606000,0],[1708986607000,0],[1708986608000,0],[1708986609000,0],[1708986610000,0],[1708986611000,0],[1708986612000,0],[1708986613000,0],[1708986614000,0],[1708986615000,0],[1708986616000,0],[1708986617000,0],[1708986618000,0],[1708986619000,0],[1708986620000,0],[1708986621000,0],[1708986622000,0],[1708986623000,0],[1708986624000,0],[1708986625000,0],[1708986626000,0],[1708986627000,0],[1708986628000,0],[1708986629000,0],[1708986630000,0],[1708986631000,0],[1708986632000,0],[1708986633000,0],[1708986634000,0],[1708986635000,0],[1708986636000,0],[1708986637000,0],[1708986638000,0],[1708986639000,0],[1708986640000,0],[1708986641000,0],[1708986642000,0],[1708986643000,0],[1708986644000,0],[1708986645000,0],[1708986646000,0],[1708986647000,0],[1708986648000,0],[1708986649000,0],[1708986650000,0],[1708986651000,0],[1708986652000,0],[1708986653000,0],[1708986654000,0],[1708986655000,0],[1708986656000,0],[1708986657000,0],[1708986658000,0],[1708986659000,0],[1708986660000,0],[1708986661000,0],[1708986662000,0],[1708986663000,0],[1708986664000,0],[1708986665000,0],[1708986666000,0],[1708986667000,0],[1708986668000,0],[1708986669000,0],[1708986670000,0],[1708986671000,0],[1708986672000,0],[1708986673000,0],[1708986674000,0],[1708986675000,0],[1708986676000,0],[1708986677000,0],[1708986678000,0],[1708986679000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#9D00FF',
name: 'validação concorrência transações - c',
data: [
[1708986430000,0],[1708986431000,23],[1708986432000,25],[1708986433000,0],[1708986434000,0],[1708986435000,0],[1708986436000,0],[1708986437000,0],[1708986438000,0],[1708986439000,0],[1708986440000,0],[1708986441000,0],[1708986442000,0],[1708986443000,0],[1708986444000,0],[1708986445000,0],[1708986446000,0],[1708986447000,0],[1708986448000,0],[1708986449000,0],[1708986450000,0],[1708986451000,0],[1708986452000,0],[1708986453000,0],[1708986454000,0],[1708986455000,0],[1708986456000,0],[1708986457000,0],[1708986458000,0],[1708986459000,0],[1708986460000,0],[1708986461000,0],[1708986462000,0],[1708986463000,0],[1708986464000,0],[1708986465000,0],[1708986466000,0],[1708986467000,0],[1708986468000,0],[1708986469000,0],[1708986470000,0],[1708986471000,0],[1708986472000,0],[1708986473000,0],[1708986474000,0],[1708986475000,0],[1708986476000,0],[1708986477000,0],[1708986478000,0],[1708986479000,0],[1708986480000,0],[1708986481000,0],[1708986482000,0],[1708986483000,0],[1708986484000,0],[1708986485000,0],[1708986486000,0],[1708986487000,0],[1708986488000,0],[1708986489000,0],[1708986490000,0],[1708986491000,0],[1708986492000,0],[1708986493000,0],[1708986494000,0],[1708986495000,0],[1708986496000,0],[1708986497000,0],[1708986498000,0],[1708986499000,0],[1708986500000,0],[1708986501000,0],[1708986502000,0],[1708986503000,0],[1708986504000,0],[1708986505000,0],[1708986506000,0],[1708986507000,0],[1708986508000,0],[1708986509000,0],[1708986510000,0],[1708986511000,0],[1708986512000,0],[1708986513000,0],[1708986514000,0],[1708986515000,0],[1708986516000,0],[1708986517000,0],[1708986518000,0],[1708986519000,0],[1708986520000,0],[1708986521000,0],[1708986522000,0],[1708986523000,0],[1708986524000,0],[1708986525000,0],[1708986526000,0],[1708986527000,0],[1708986528000,0],[1708986529000,0],[1708986530000,0],[1708986531000,0],[1708986532000,0],[1708986533000,0],[1708986534000,0],[1708986535000,0],[1708986536000,0],[1708986537000,0],[1708986538000,0],[1708986539000,0],[1708986540000,0],[1708986541000,0],[1708986542000,0],[1708986543000,0],[1708986544000,0],[1708986545000,0],[1708986546000,0],[1708986547000,0],[1708986548000,0],[1708986549000,0],[1708986550000,0],[1708986551000,0],[1708986552000,0],[1708986553000,0],[1708986554000,0],[1708986555000,0],[1708986556000,0],[1708986557000,0],[1708986558000,0],[1708986559000,0],[1708986560000,0],[1708986561000,0],[1708986562000,0],[1708986563000,0],[1708986564000,0],[1708986565000,0],[1708986566000,0],[1708986567000,0],[1708986568000,0],[1708986569000,0],[1708986570000,0],[1708986571000,0],[1708986572000,0],[1708986573000,0],[1708986574000,0],[1708986575000,0],[1708986576000,0],[1708986577000,0],[1708986578000,0],[1708986579000,0],[1708986580000,0],[1708986581000,0],[1708986582000,0],[1708986583000,0],[1708986584000,0],[1708986585000,0],[1708986586000,0],[1708986587000,0],[1708986588000,0],[1708986589000,0],[1708986590000,0],[1708986591000,0],[1708986592000,0],[1708986593000,0],[1708986594000,0],[1708986595000,0],[1708986596000,0],[1708986597000,0],[1708986598000,0],[1708986599000,0],[1708986600000,0],[1708986601000,0],[1708986602000,0],[1708986603000,0],[1708986604000,0],[1708986605000,0],[1708986606000,0],[1708986607000,0],[1708986608000,0],[1708986609000,0],[1708986610000,0],[1708986611000,0],[1708986612000,0],[1708986613000,0],[1708986614000,0],[1708986615000,0],[1708986616000,0],[1708986617000,0],[1708986618000,0],[1708986619000,0],[1708986620000,0],[1708986621000,0],[1708986622000,0],[1708986623000,0],[1708986624000,0],[1708986625000,0],[1708986626000,0],[1708986627000,0],[1708986628000,0],[1708986629000,0],[1708986630000,0],[1708986631000,0],[1708986632000,0],[1708986633000,0],[1708986634000,0],[1708986635000,0],[1708986636000,0],[1708986637000,0],[1708986638000,0],[1708986639000,0],[1708986640000,0],[1708986641000,0],[1708986642000,0],[1708986643000,0],[1708986644000,0],[1708986645000,0],[1708986646000,0],[1708986647000,0],[1708986648000,0],[1708986649000,0],[1708986650000,0],[1708986651000,0],[1708986652000,0],[1708986653000,0],[1708986654000,0],[1708986655000,0],[1708986656000,0],[1708986657000,0],[1708986658000,0],[1708986659000,0],[1708986660000,0],[1708986661000,0],[1708986662000,0],[1708986663000,0],[1708986664000,0],[1708986665000,0],[1708986666000,0],[1708986667000,0],[1708986668000,0],[1708986669000,0],[1708986670000,0],[1708986671000,0],[1708986672000,0],[1708986673000,0],[1708986674000,0],[1708986675000,0],[1708986676000,0],[1708986677000,0],[1708986678000,0],[1708986679000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FF00E1',
name: 'validação concorrência saldo - -25',
data: [
[1708986430000,1],[1708986431000,1],[1708986432000,0],[1708986433000,0],[1708986434000,0],[1708986435000,0],[1708986436000,0],[1708986437000,0],[1708986438000,0],[1708986439000,0],[1708986440000,0],[1708986441000,0],[1708986442000,0],[1708986443000,0],[1708986444000,0],[1708986445000,0],[1708986446000,0],[1708986447000,0],[1708986448000,0],[1708986449000,0],[1708986450000,0],[1708986451000,0],[1708986452000,0],[1708986453000,0],[1708986454000,0],[1708986455000,0],[1708986456000,0],[1708986457000,0],[1708986458000,0],[1708986459000,0],[1708986460000,0],[1708986461000,0],[1708986462000,0],[1708986463000,0],[1708986464000,0],[1708986465000,0],[1708986466000,0],[1708986467000,0],[1708986468000,0],[1708986469000,0],[1708986470000,0],[1708986471000,0],[1708986472000,0],[1708986473000,0],[1708986474000,0],[1708986475000,0],[1708986476000,0],[1708986477000,0],[1708986478000,0],[1708986479000,0],[1708986480000,0],[1708986481000,0],[1708986482000,0],[1708986483000,0],[1708986484000,0],[1708986485000,0],[1708986486000,0],[1708986487000,0],[1708986488000,0],[1708986489000,0],[1708986490000,0],[1708986491000,0],[1708986492000,0],[1708986493000,0],[1708986494000,0],[1708986495000,0],[1708986496000,0],[1708986497000,0],[1708986498000,0],[1708986499000,0],[1708986500000,0],[1708986501000,0],[1708986502000,0],[1708986503000,0],[1708986504000,0],[1708986505000,0],[1708986506000,0],[1708986507000,0],[1708986508000,0],[1708986509000,0],[1708986510000,0],[1708986511000,0],[1708986512000,0],[1708986513000,0],[1708986514000,0],[1708986515000,0],[1708986516000,0],[1708986517000,0],[1708986518000,0],[1708986519000,0],[1708986520000,0],[1708986521000,0],[1708986522000,0],[1708986523000,0],[1708986524000,0],[1708986525000,0],[1708986526000,0],[1708986527000,0],[1708986528000,0],[1708986529000,0],[1708986530000,0],[1708986531000,0],[1708986532000,0],[1708986533000,0],[1708986534000,0],[1708986535000,0],[1708986536000,0],[1708986537000,0],[1708986538000,0],[1708986539000,0],[1708986540000,0],[1708986541000,0],[1708986542000,0],[1708986543000,0],[1708986544000,0],[1708986545000,0],[1708986546000,0],[1708986547000,0],[1708986548000,0],[1708986549000,0],[1708986550000,0],[1708986551000,0],[1708986552000,0],[1708986553000,0],[1708986554000,0],[1708986555000,0],[1708986556000,0],[1708986557000,0],[1708986558000,0],[1708986559000,0],[1708986560000,0],[1708986561000,0],[1708986562000,0],[1708986563000,0],[1708986564000,0],[1708986565000,0],[1708986566000,0],[1708986567000,0],[1708986568000,0],[1708986569000,0],[1708986570000,0],[1708986571000,0],[1708986572000,0],[1708986573000,0],[1708986574000,0],[1708986575000,0],[1708986576000,0],[1708986577000,0],[1708986578000,0],[1708986579000,0],[1708986580000,0],[1708986581000,0],[1708986582000,0],[1708986583000,0],[1708986584000,0],[1708986585000,0],[1708986586000,0],[1708986587000,0],[1708986588000,0],[1708986589000,0],[1708986590000,0],[1708986591000,0],[1708986592000,0],[1708986593000,0],[1708986594000,0],[1708986595000,0],[1708986596000,0],[1708986597000,0],[1708986598000,0],[1708986599000,0],[1708986600000,0],[1708986601000,0],[1708986602000,0],[1708986603000,0],[1708986604000,0],[1708986605000,0],[1708986606000,0],[1708986607000,0],[1708986608000,0],[1708986609000,0],[1708986610000,0],[1708986611000,0],[1708986612000,0],[1708986613000,0],[1708986614000,0],[1708986615000,0],[1708986616000,0],[1708986617000,0],[1708986618000,0],[1708986619000,0],[1708986620000,0],[1708986621000,0],[1708986622000,0],[1708986623000,0],[1708986624000,0],[1708986625000,0],[1708986626000,0],[1708986627000,0],[1708986628000,0],[1708986629000,0],[1708986630000,0],[1708986631000,0],[1708986632000,0],[1708986633000,0],[1708986634000,0],[1708986635000,0],[1708986636000,0],[1708986637000,0],[1708986638000,0],[1708986639000,0],[1708986640000,0],[1708986641000,0],[1708986642000,0],[1708986643000,0],[1708986644000,0],[1708986645000,0],[1708986646000,0],[1708986647000,0],[1708986648000,0],[1708986649000,0],[1708986650000,0],[1708986651000,0],[1708986652000,0],[1708986653000,0],[1708986654000,0],[1708986655000,0],[1708986656000,0],[1708986657000,0],[1708986658000,0],[1708986659000,0],[1708986660000,0],[1708986661000,0],[1708986662000,0],[1708986663000,0],[1708986664000,0],[1708986665000,0],[1708986666000,0],[1708986667000,0],[1708986668000,0],[1708986669000,0],[1708986670000,0],[1708986671000,0],[1708986672000,0],[1708986673000,0],[1708986674000,0],[1708986675000,0],[1708986676000,0],[1708986677000,0],[1708986678000,0],[1708986679000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#AECAEB',
name: 'validação concorrência transações - d',
data: [
[1708986430000,25],[1708986431000,0],[1708986432000,0],[1708986433000,0],[1708986434000,0],[1708986435000,0],[1708986436000,0],[1708986437000,0],[1708986438000,0],[1708986439000,0],[1708986440000,0],[1708986441000,0],[1708986442000,0],[1708986443000,0],[1708986444000,0],[1708986445000,0],[1708986446000,0],[1708986447000,0],[1708986448000,0],[1708986449000,0],[1708986450000,0],[1708986451000,0],[1708986452000,0],[1708986453000,0],[1708986454000,0],[1708986455000,0],[1708986456000,0],[1708986457000,0],[1708986458000,0],[1708986459000,0],[1708986460000,0],[1708986461000,0],[1708986462000,0],[1708986463000,0],[1708986464000,0],[1708986465000,0],[1708986466000,0],[1708986467000,0],[1708986468000,0],[1708986469000,0],[1708986470000,0],[1708986471000,0],[1708986472000,0],[1708986473000,0],[1708986474000,0],[1708986475000,0],[1708986476000,0],[1708986477000,0],[1708986478000,0],[1708986479000,0],[1708986480000,0],[1708986481000,0],[1708986482000,0],[1708986483000,0],[1708986484000,0],[1708986485000,0],[1708986486000,0],[1708986487000,0],[1708986488000,0],[1708986489000,0],[1708986490000,0],[1708986491000,0],[1708986492000,0],[1708986493000,0],[1708986494000,0],[1708986495000,0],[1708986496000,0],[1708986497000,0],[1708986498000,0],[1708986499000,0],[1708986500000,0],[1708986501000,0],[1708986502000,0],[1708986503000,0],[1708986504000,0],[1708986505000,0],[1708986506000,0],[1708986507000,0],[1708986508000,0],[1708986509000,0],[1708986510000,0],[1708986511000,0],[1708986512000,0],[1708986513000,0],[1708986514000,0],[1708986515000,0],[1708986516000,0],[1708986517000,0],[1708986518000,0],[1708986519000,0],[1708986520000,0],[1708986521000,0],[1708986522000,0],[1708986523000,0],[1708986524000,0],[1708986525000,0],[1708986526000,0],[1708986527000,0],[1708986528000,0],[1708986529000,0],[1708986530000,0],[1708986531000,0],[1708986532000,0],[1708986533000,0],[1708986534000,0],[1708986535000,0],[1708986536000,0],[1708986537000,0],[1708986538000,0],[1708986539000,0],[1708986540000,0],[1708986541000,0],[1708986542000,0],[1708986543000,0],[1708986544000,0],[1708986545000,0],[1708986546000,0],[1708986547000,0],[1708986548000,0],[1708986549000,0],[1708986550000,0],[1708986551000,0],[1708986552000,0],[1708986553000,0],[1708986554000,0],[1708986555000,0],[1708986556000,0],[1708986557000,0],[1708986558000,0],[1708986559000,0],[1708986560000,0],[1708986561000,0],[1708986562000,0],[1708986563000,0],[1708986564000,0],[1708986565000,0],[1708986566000,0],[1708986567000,0],[1708986568000,0],[1708986569000,0],[1708986570000,0],[1708986571000,0],[1708986572000,0],[1708986573000,0],[1708986574000,0],[1708986575000,0],[1708986576000,0],[1708986577000,0],[1708986578000,0],[1708986579000,0],[1708986580000,0],[1708986581000,0],[1708986582000,0],[1708986583000,0],[1708986584000,0],[1708986585000,0],[1708986586000,0],[1708986587000,0],[1708986588000,0],[1708986589000,0],[1708986590000,0],[1708986591000,0],[1708986592000,0],[1708986593000,0],[1708986594000,0],[1708986595000,0],[1708986596000,0],[1708986597000,0],[1708986598000,0],[1708986599000,0],[1708986600000,0],[1708986601000,0],[1708986602000,0],[1708986603000,0],[1708986604000,0],[1708986605000,0],[1708986606000,0],[1708986607000,0],[1708986608000,0],[1708986609000,0],[1708986610000,0],[1708986611000,0],[1708986612000,0],[1708986613000,0],[1708986614000,0],[1708986615000,0],[1708986616000,0],[1708986617000,0],[1708986618000,0],[1708986619000,0],[1708986620000,0],[1708986621000,0],[1708986622000,0],[1708986623000,0],[1708986624000,0],[1708986625000,0],[1708986626000,0],[1708986627000,0],[1708986628000,0],[1708986629000,0],[1708986630000,0],[1708986631000,0],[1708986632000,0],[1708986633000,0],[1708986634000,0],[1708986635000,0],[1708986636000,0],[1708986637000,0],[1708986638000,0],[1708986639000,0],[1708986640000,0],[1708986641000,0],[1708986642000,0],[1708986643000,0],[1708986644000,0],[1708986645000,0],[1708986646000,0],[1708986647000,0],[1708986648000,0],[1708986649000,0],[1708986650000,0],[1708986651000,0],[1708986652000,0],[1708986653000,0],[1708986654000,0],[1708986655000,0],[1708986656000,0],[1708986657000,0],[1708986658000,0],[1708986659000,0],[1708986660000,0],[1708986661000,0],[1708986662000,0],[1708986663000,0],[1708986664000,0],[1708986665000,0],[1708986666000,0],[1708986667000,0],[1708986668000,0],[1708986669000,0],[1708986670000,0],[1708986671000,0],[1708986672000,0],[1708986673000,0],[1708986674000,0],[1708986675000,0],[1708986676000,0],[1708986677000,0],[1708986678000,0],[1708986679000,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: ['32', '96', '160', '224', '288', '352', '416', '480', '544', '608', '672', '736', '800', '864', '928', '992', '1056', '1120', '1184', '1248', '1312', '1376', '1440', '1504', '1568', '1633', '1697', '1761', '1825', '1889', '1953', '2017', '2081', '2145', '2209', '2273', '2337', '2401', '2465', '2529', '2593', '2657', '2721', '2785', '2849', '2913', '2977', '3041', '3105', '3169', '3233', '3297', '3361', '3425', '3489', '3553', '3617', '3681', '3745', '3809', '3873', '3937', '4001', '4065', '4129', '4193', '4257', '4321', '4385', '4449', '4513', '4577', '4641', '4705', '4769', '4834', '4898', '4962', '5026', '5090', '5154', '5218', '5282', '5346', '5410', '5474', '5538', '5602', '5666', '5730', '5794', '5858', '5922', '5986', '6050', '6114', '6178', '6242', '6306', '6370'],
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: [
18.13,11.09,6.74,3.0,4.1,2.04,1.54,1.62,0.63,0.69,0.66,0.2,0.27,0.2,0.07,0.07,0.05,0.01,0.03,0.02,0.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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: [
34.51,0.03,0.02,0.02,0.04,0.02,0.02,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,12.82,0.2,0.17,0.13,0.1,0.09,0.05,0.05,0.04,0.03,0.03,0.02,0.01,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([[1708986430,[96,186,483,693,783,787,842,882,892,896]],[1708986431,[2,2,2,2,2,2,2,2,2,2]],[1708986432,[4,10,15,103,103,105,107,108,108,108]],[1708986433,[2,2,2,2,2,2,2,2,2,2]],[1708986434,[0,1,2,3,5,8,10,14,17,17]],[1708986435,[2,2,2,3,3,3,3,3,3,4]],[1708986436,[2,2,2,2,2,2,2,2,2,3]],[1708986437,[2,2,2,3,3,3,3,3,3,4]],[1708986438,[2,2,2,2,3,3,3,3,3,3]],[1708986439,[1,2,2,2,2,14,50,79,100,106]],[1708986440,[1,5,25,46,50,80,125,148,168,174]],[1708986441,[1,7,64,127,155,163,173,183,231,243]],[1708986442,[1,4,35,113,137,145,155,164,235,256]],[1708986443,[5,39,77,106,157,170,176,199,223,230]],[1708986444,[1,5,32,76,90,101,145,188,270,293]],[1708986445,[1,5,6,60,72,105,106,121,165,182]],[1708986446,[1,5,29,91,105,126,155,160,176,180]],[1708986447,[1,15,47,87,90,98,105,192,285,330]],[1708986448,[1,14,66,143,153,190,217,249,264,271]],[1708986449,[1,6,50,135,168,182,251,290,359,387]],[1708986450,[1,1,2,39,54,67,81,112,138,152]],[1708986451,[1,1,1,1,1,2,2,2,2,2]],[1708986452,[1,1,1,1,2,2,2,2,2,2]],[1708986453,[1,1,1,1,1,1,1,2,2,2]],[1708986454,[0,1,1,1,1,1,2,2,2,2]],[1708986455,[0,1,1,1,1,1,1,1,2,2]],[1708986456,[0,1,1,1,1,1,1,2,2,2]],[1708986457,[0,1,1,1,1,1,1,1,1,2]],[1708986458,[1,1,1,2,2,2,2,2,2,2]],[1708986459,[0,1,1,1,1,1,2,2,2,2]],[1708986460,[0,1,1,1,1,1,2,2,2,2]],[1708986461,[0,1,1,1,1,1,1,1,2,2]],[1708986462,[0,1,1,1,1,1,1,1,2,2]],[1708986463,[0,1,1,1,1,1,1,1,7,8]],[1708986464,[0,1,1,1,1,1,1,1,2,2]],[1708986465,[0,1,1,1,1,1,1,1,2,2]],[1708986466,[0,1,1,1,1,1,1,1,1,2]],[1708986467,[0,0,1,1,1,1,1,1,2,2]],[1708986468,[0,0,1,1,1,1,1,1,1,2]],[1708986469,[0,1,1,1,1,1,1,1,1,2]],[1708986470,[0,1,1,1,1,1,1,1,1,2]],[1708986471,[0,1,8,83,108,155,179,211,260,296]],[1708986472,[0,19,57,92,126,158,188,217,237,249]],[1708986473,[0,13,62,96,114,137,151,171,250,278]],[1708986474,[0,19,83,193,237,332,408,581,700,951]],[1708986475,[1,62,139,238,286,328,368,406,512,538]],[1708986476,[1,54,119,222,273,370,421,478,577,586]],[1708986477,[0,51,99,195,228,264,309,362,481,491]],[1708986478,[0,25,70,145,182,212,239,262,452,769]],[1708986479,[2,58,107,226,269,309,377,458,541,663]],[1708986480,[1,27,76,158,173,193,232,286,407,566]],[1708986481,[1,54,109,194,234,265,301,366,451,841]],[1708986482,[2,52,90,161,170,203,226,284,424,449]],[1708986483,[0,8,57,171,184,205,236,264,294,387]],[1708986484,[0,30,74,147,162,183,207,273,329,386]],[1708986485,[0,38,74,154,173,186,215,319,370,423]],[1708986486,[0,26,60,95,106,136,166,190,240,250]],[1708986487,[0,0,1,1,1,1,1,1,10,68]],[1708986488,[0,0,1,1,1,1,1,1,1,2]],[1708986489,[0,0,0,1,1,1,1,1,1,2]],[1708986490,[0,1,1,1,1,1,1,1,2,2]],[1708986491,[0,1,1,1,1,1,1,1,2,2]],[1708986492,[0,0,0,1,1,1,1,1,2,2]],[1708986493,[0,0,0,1,1,1,1,1,2,2]],[1708986494,[0,0,1,1,1,1,1,2,2,2]],[1708986495,[0,0,1,1,1,1,1,1,2,2]],[1708986496,[0,0,0,1,1,1,1,1,1,2]],[1708986497,[0,0,1,1,1,1,1,1,3,3]],[1708986498,[0,1,1,1,1,1,1,1,2,2]],[1708986499,[0,0,1,1,1,1,1,1,2,2]],[1708986500,[0,0,0,1,1,1,1,1,2,5]],[1708986501,[0,0,23,127,167,193,256,478,901,1030]],[1708986502,[0,47,98,249,296,350,388,550,661,771]],[1708986503,[1,55,99,251,287,362,388,470,733,1095]],[1708986504,[0,46,111,226,265,292,336,368,421,459]],[1708986505,[0,29,78,181,196,227,283,365,448,471]],[1708986506,[0,1,63,155,178,216,248,299,385,390]],[1708986507,[0,12,75,255,365,450,532,668,832,853]],[1708986508,[1,90,235,394,453,495,537,660,784,926]],[1708986509,[0,62,161,288,323,383,458,520,664,1161]],[1708986510,[1,65,116,249,283,305,351,467,570,594]],[1708986511,[0,37,80,169,187,202,264,331,470,493]],[1708986512,[1,68,137,244,314,398,458,575,694,741]],[1708986513,[1,38,74,146,177,207,304,391,524,799]],[1708986514,[0,50,98,249,267,281,294,386,489,524]],[1708986515,[0,41,81,182,206,253,281,376,572,648]],[1708986516,[1,76,182,486,575,660,760,816,1037,1100]],[1708986517,[0,99,200,394,434,465,519,583,746,886]],[1708986518,[0,82,177,316,380,482,676,1050,1563,1686]],[1708986519,[0,67,102,236,290,365,497,721,971,1093]],[1708986520,[1,65,106,271,289,373,467,549,687,1189]],[1708986521,[0,72,142,270,284,383,501,574,773,1071]],[1708986522,[0,30,77,171,187,234,290,400,507,796]],[1708986523,[0,62,94,226,277,358,443,549,587,770]],[1708986524,[0,46,85,169,179,192,261,355,483,764]],[1708986525,[1,50,98,295,369,393,495,557,738,802]],[1708986526,[1,79,183,290,363,404,489,531,661,682]],[1708986527,[1,60,162,339,376,384,414,468,527,583]],[1708986528,[0,54,102,192,281,311,421,490,672,699]],[1708986529,[0,43,103,243,264,286,343,392,498,611]],[1708986530,[2,77,160,270,288,331,383,479,675,719]],[1708986531,[1,141,261,464,491,520,576,707,1279,1479]],[1708986532,[0,46,92,242,274,307,387,495,665,769]],[1708986533,[0,1,50,140,165,189,234,352,975,1091]],[1708986534,[0,87,270,682,689,765,812,879,942,1056]],[1708986535,[1,83,199,388,473,494,579,605,757,1069]],[1708986536,[1,87,207,384,450,481,494,589,779,800]],[1708986537,[0,67,138,270,289,362,391,654,689,780]],[1708986538,[1,85,190,364,388,444,484,539,702,779]],[1708986539,[0,2,69,157,250,279,330,396,651,690]],[1708986540,[0,63,171,261,285,338,389,501,594,600]],[1708986541,[1,77,155,251,282,293,359,394,699,764]],[1708986542,[0,54,92,248,269,283,380,479,766,1187]],[1708986543,[0,60,98,355,380,402,481,592,683,692]],[1708986544,[0,84,107,362,461,482,530,905,1123,1175]],[1708986545,[1,64,98,290,363,395,465,503,679,697]],[1708986546,[1,84,170,274,296,347,372,395,475,556]],[1708986547,[0,82,164,295,359,389,450,578,853,891]],[1708986548,[0,77,174,274,288,297,374,485,732,782]],[1708986549,[1,74,188,291,299,379,443,514,685,695]],[1708986550,[1,68,98,225,251,279,327,417,487,559]],[1708986551,[0,74,160,257,289,300,355,478,604,683]],[1708986552,[1,73,95,188,210,279,318,389,579,680]],[1708986553,[0,67,102,197,242,259,281,397,483,495]],[1708986554,[1,71,97,276,288,364,379,406,678,949]],[1708986555,[1,87,186,278,286,323,400,485,649,791]],[1708986556,[1,68,91,194,271,307,369,472,615,745]],[1708986557,[1,81,167,272,283,296,435,598,868,990]],[1708986558,[0,70,172,296,373,477,492,585,735,884]],[1708986559,[0,75,98,197,266,294,365,487,578,863]],[1708986560,[0,81,189,297,366,379,389,570,694,755]],[1708986561,[0,73,152,248,273,291,344,452,536,758]],[1708986562,[0,52,126,286,307,354,407,503,608,692]],[1708986563,[0,70,109,192,265,280,296,431,589,778]],[1708986564,[0,70,96,271,279,345,384,480,663,691]],[1708986565,[0,41,98,280,298,357,435,526,702,763]],[1708986566,[0,69,148,282,292,357,380,443,663,698]],[1708986567,[0,69,103,340,369,389,446,488,815,870]],[1708986568,[0,73,98,297,361,390,459,589,712,861]],[1708986569,[0,80,144,280,365,380,440,537,740,1054]],[1708986570,[1,78,165,236,276,284,297,415,663,786]],[1708986571,[1,78,188,367,395,586,829,1198,1290,1306]],[1708986572,[0,88,165,291,315,397,487,581,686,692]],[1708986573,[0,85,175,261,277,293,353,459,491,589]],[1708986574,[1,59,97,192,227,269,288,395,571,762]],[1708986575,[1,53,98,458,496,562,610,1127,1399,1543]],[1708986576,[1,80,172,318,382,396,496,894,1163,1396]],[1708986577,[0,26,166,281,295,382,547,760,1165,1188]],[1708986578,[0,166,285,495,578,608,673,760,910,993]],[1708986579,[1,82,181,280,303,372,393,472,722,794]],[1708986580,[0,71,168,270,279,288,362,457,742,787]],[1708986581,[0,35,92,198,272,326,391,524,592,779]],[1708986582,[1,87,289,384,452,493,589,687,904,1164]],[1708986583,[0,78,157,266,295,414,550,657,947,980]],[1708986584,[0,79,229,577,670,728,798,936,1022,1056]],[1708986585,[0,49,92,253,280,292,366,415,556,961]],[1708986586,[1,75,112,287,297,361,475,576,695,760]],[1708986587,[1,79,164,236,267,288,358,470,788,898]],[1708986588,[1,76,191,391,420,469,488,498,853,963]],[1708986589,[0,63,98,242,272,301,432,581,702,790]],[1708986590,[0,44,143,279,297,358,396,537,843,1088]],[1708986591,[0,98,197,361,380,396,474,507,687,796]],[1708986592,[0,85,198,365,389,398,474,591,737,887]],[1708986593,[0,44,90,182,229,276,293,371,481,597]],[1708986594,[0,47,96,263,276,292,369,428,637,696]],[1708986595,[0,35,117,289,326,368,396,483,670,757]],[1708986596,[0,84,191,376,412,485,621,778,856,943]],[1708986597,[0,53,93,184,200,270,297,515,910,1080]],[1708986598,[0,88,180,284,354,397,562,651,853,981]],[1708986599,[0,56,89,183,194,243,276,291,381,484]],[1708986600,[0,63,99,229,285,368,425,572,726,875]],[1708986601,[0,91,279,496,581,675,703,805,1135,1385]],[1708986602,[0,58,153,331,382,399,490,673,815,857]],[1708986603,[0,85,180,371,389,523,581,606,776,1152]],[1708986604,[1,80,156,293,346,388,466,488,585,670]],[1708986605,[9,89,240,433,477,494,604,695,888,1088]],[1708986606,[0,47,86,194,251,282,311,395,625,677]],[1708986607,[0,36,114,239,260,274,340,381,568,587]],[1708986608,[0,61,93,171,180,188,195,246,325,352]],[1708986609,[0,62,137,254,282,297,374,458,483,1080]],[1708986610,[1,79,160,268,290,363,543,673,726,751]],[1708986611,[1,79,149,381,397,448,483,558,696,752]],[1708986612,[1,71,127,198,270,284,326,445,922,1088]],[1708986613,[1,64,95,343,388,480,551,654,944,1029]],[1708986614,[0,79,139,283,299,389,453,499,760,833]],[1708986615,[0,56,94,266,289,333,388,466,705,1167]],[1708986616,[1,67,98,292,377,410,490,609,740,781]],[1708986617,[0,71,156,234,268,284,353,533,683,865]],[1708986618,[0,67,95,191,242,355,464,488,584,590]],[1708986619,[0,80,198,660,689,741,796,884,944,995]],[1708986620,[1,199,472,644,685,722,777,884,1049,1299]],[1708986621,[1,70,158,290,327,356,440,590,934,1007]],[1708986622,[1,62,179,398,460,527,596,655,820,879]],[1708986623,[1,44,130,217,269,296,350,449,566,579]],[1708986624,[1,53,89,163,179,224,279,294,436,481]],[1708986625,[1,60,88,180,194,236,261,280,386,471]],[1708986626,[1,45,88,167,184,275,365,459,632,769]],[1708986627,[1,84,200,365,388,436,477,540,627,666]],[1708986628,[0,62,93,184,193,245,269,309,467,488]],[1708986629,[1,79,182,363,390,464,562,632,786,888]],[1708986630,[1,76,169,287,299,373,395,458,587,589]],[1708986631,[0,54,105,195,242,291,327,392,489,491]],[1708986632,[0,69,101,195,253,272,288,374,479,498]],[1708986633,[1,68,94,183,198,260,282,311,520,656]],[1708986634,[0,78,95,254,288,388,501,682,972,1167]],[1708986635,[0,70,93,190,256,283,374,497,725,864]],[1708986636,[0,70,98,194,254,297,371,445,508,876]],[1708986637,[0,75,115,361,398,430,478,543,845,1176]],[1708986638,[0,74,161,299,364,394,488,594,773,887]],[1708986639,[0,71,170,280,335,370,398,486,782,797]],[1708986640,[0,95,353,554,570,587,650,707,896,897]],[1708986641,[1,81,334,575,717,865,951,1272,1291,1392]],[1708986642,[1,313,471,636,668,722,775,866,1027,1290]],[1708986643,[0,81,192,589,646,671,757,1029,1773,2171]],[1708986644,[1,70,161,614,748,897,985,1037,1197,1488]],[1708986645,[0,78,264,594,686,721,798,877,939,996]],[1708986646,[0,97,272,478,500,552,592,680,869,1036]],[1708986647,[0,48,125,255,288,346,369,393,517,789]],[1708986648,[0,64,112,302,346,387,437,511,654,678]],[1708986649,[0,71,165,289,366,397,498,597,684,689]],[1708986650,[1,84,159,290,339,379,417,618,836,895]],[1708986651,[0,84,185,373,468,569,587,681,792,797]],[1708986652,[0,18,79,265,294,351,418,523,646,796]],[1708986653,[1,82,170,272,286,293,359,388,465,480]],[1708986654,[1,88,203,375,380,395,488,608,735,774]],[1708986655,[1,80,158,278,325,393,471,537,660,687]],[1708986656,[1,71,153,290,341,381,393,484,597,663]],[1708986657,[0,60,99,288,372,459,572,659,782,797]],[1708986658,[0,82,179,383,479,587,660,785,984,1053]],[1708986659,[0,66,93,208,277,348,481,581,658,994]],[1708986660,[0,76,135,202,286,319,459,495,808,896]],[1708986661,[1,81,186,339,391,472,569,740,1034,1067]],[1708986662,[0,60,143,277,292,352,410,487,727,810]],[1708986663,[0,66,149,280,305,373,407,571,740,1296]],[1708986664,[1,80,195,366,400,556,674,836,1044,1070]],[1708986665,[1,97,190,483,557,700,745,803,1178,1184]],[1708986666,[0,67,131,232,285,349,397,455,540,575]],[1708986667,[0,72,143,194,254,279,330,399,490,581]],[1708986668,[1,66,107,264,303,380,478,561,756,862]],[1708986669,[1,79,186,291,317,369,384,440,564,1040]],[1708986670,[1,62,152,270,293,368,437,571,728,889]],[1708986671,[1,35,84,184,197,270,291,387,572,594]],[1708986672,[0,43,99,195,260,284,306,448,552,585]],[1708986673,[0,81,159,370,394,450,492,587,883,1061]],[1708986674,[1,89,187,295,368,382,394,476,671,689]],[1708986675,[1,75,161,239,286,297,379,390,586,651]],[1708986676,null],[1708986677,null],[1708986678,null],[1708986679,null]]);
var responsetimepercentilesovertimeokPercentilesChart = new Highcharts.StockChart({
chart: {
renderTo: 'responsetimepercentilesovertimeokPercentilesContainer',
zoomType: 'x',
marginBottom: 60
},
colors: ['#c4fd90', '#7ff77f', '#6ff2ad', '#61ede6', '#58c7e0', '#4ea1d4', '#487ad9', '#3f52cc', '#7335dc', '#c73905', '#FFA900'],
credits: { enabled: false },
legend: {
enabled: true,
floating: true,
y: -65,
borderWidth: 0,
itemStyle: { fontWeight: "normal" },
symbolRadius: 0
},
title: { text: 'A title to let highcharts reserve the place for the title set later' },
navigator: {
maskInside: false,
baseSeries: 9
},
rangeSelector: {
rangeSelector: { align: "left" },
buttonSpacing: 0,
buttonTheme: {
fill: '#CFC9C6',
padding: 1,
stroke: '#000000',
'stroke-width': 0.25,
style: {
color: '#000000',
fontWeight: 'bold',
},
states: {
stroke: '#92918C',
'stroke-width': 0.25,
hover: {
fill: '#92918C',
style: { color: 'black' }
},
select: {
fill: '#FFA900',
style: { color: 'white' }
}
}
},
buttons : [
{
type : 'minute',
count : 1,
text : '1m'
}, {
type : 'minute',
count : 10,
text : '10m'
}, {
type : 'hour',
count : 1,
text : '1h'
}, {
type : 'all',
count : 1,
text : 'All'
}
],
selected : 3,
inputEnabled : false
},
xAxis: {
type: 'datetime',
ordinal: false,
maxZoom: 10000 // three days
},
yAxis:[
{
min: 0,
title: { text: 'Response Time (ms)' },
opposite: false
}, {
min: 0,
title: {
text: 'Active Users',
style: { color: '#FFA900' }
},
opposite: true
}
],
plotOptions: {
arearange: { lineWidth: 1 },
series: {
dataGrouping: { enabled: false }
}
},
series: [
{
pointInterval: 1000,
name: 'min',
data: responsetimepercentilesovertimeokPercentiles[0],
tooltip: { yDecimals: 0, ySuffix: 'ms' },
type : 'area',
yAxis: 0,
zIndex: 10
},
{
pointInterval: 1000,
name: '25%',
data: responsetimepercentilesovertimeokPercentiles[1],
tooltip: { yDecimals: 0, ySuffix: 'ms' },
type : 'area',
yAxis: 0,
zIndex: 9
},
{
pointInterval: 1000,
name: '50%',
data: responsetimepercentilesovertimeokPercentiles[2],
tooltip: { yDecimals: 0, ySuffix: 'ms' },
type : 'area',
yAxis: 0,
zIndex: 8
},
{
pointInterval: 1000,
name: '75%',
data: responsetimepercentilesovertimeokPercentiles[3],
tooltip: { yDecimals: 0, ySuffix: 'ms' },
type : 'area',
yAxis: 0,
zIndex: 7
},
{
pointInterval: 1000,
name: '80%',
data: responsetimepercentilesovertimeokPercentiles[4],
tooltip: { yDecimals: 0, ySuffix: 'ms' },
type : 'area',
yAxis: 0,
zIndex: 6
},
{
pointInterval: 1000,
name: '85%',
data: responsetimepercentilesovertimeokPercentiles[5],
tooltip: { yDecimals: 0, ySuffix: 'ms' },
type : 'area',
yAxis: 0,
zIndex: 5
},
{
pointInterval: 1000,
name: '90%',
data: responsetimepercentilesovertimeokPercentiles[6],
tooltip: { yDecimals: 0, ySuffix: 'ms' },
type : 'area',
yAxis: 0,
zIndex: 4
},
{
pointInterval: 1000,
name: '95%',
data: responsetimepercentilesovertimeokPercentiles[7],
tooltip: { yDecimals: 0, ySuffix: 'ms' },
type : 'area',
yAxis: 0,
zIndex: 3
},
{
pointInterval: 1000,
name: '99%',
data: responsetimepercentilesovertimeokPercentiles[8],
tooltip: { yDecimals: 0, ySuffix: 'ms' },
type : 'area',
yAxis: 0,
zIndex: 2
},
{
pointInterval: 1000,
name: 'max',
data: responsetimepercentilesovertimeokPercentiles[9],
tooltip: { yDecimals: 0, ySuffix: 'ms' },
type : 'area',
yAxis: 0,
zIndex: 1
},
allUsersData
]
});
responsetimepercentilesovertimeokPercentilesChart.setTitle({
text: '<span class="chart_title chart_title_">Response Time Percentiles over Time (OK)</span>',
useHTML: true
});
var requests = unpack([[1708986430,[25,25,0]],[1708986431,[1,1,0]],[1708986432,[25,25,0]],[1708986433,[1,1,0]],[1708986434,[71,70,1]],[1708986435,[3,3,0]],[1708986436,[6,6,0]],[1708986437,[9,9,0]],[1708986438,[11,11,0]],[1708986439,[13,13,0]],[1708986440,[18,18,0]],[1708986441,[19,19,0]],[1708986442,[24,24,0]],[1708986443,[26,26,0]],[1708986444,[27,27,0]],[1708986445,[32,32,0]],[1708986446,[34,34,0]],[1708986447,[37,37,0]],[1708986448,[39,39,0]],[1708986449,[43,43,0]],[1708986450,[44,44,0]],[1708986451,[48,48,0]],[1708986452,[50,50,0]],[1708986453,[54,54,0]],[1708986454,[56,56,0]],[1708986455,[61,61,0]],[1708986456,[61,61,0]],[1708986457,[65,65,0]],[1708986458,[67,67,0]],[1708986459,[70,70,0]],[1708986460,[73,73,0]],[1708986461,[77,77,0]],[1708986462,[80,80,0]],[1708986463,[81,81,0]],[1708986464,[84,84,0]],[1708986465,[87,87,0]],[1708986466,[91,91,0]],[1708986467,[92,92,0]],[1708986468,[96,96,0]],[1708986469,[98,98,0]],[1708986470,[101,101,0]],[1708986471,[105,105,0]],[1708986472,[107,107,0]],[1708986473,[110,110,0]],[1708986474,[112,108,4]],[1708986475,[116,100,16]],[1708986476,[118,101,17]],[1708986477,[121,117,4]],[1708986478,[123,121,2]],[1708986479,[126,119,7]],[1708986480,[129,126,3]],[1708986481,[133,123,10]],[1708986482,[135,127,8]],[1708986483,[138,133,5]],[1708986484,[141,139,2]],[1708986485,[144,137,7]],[1708986486,[146,141,5]],[1708986487,[149,149,0]],[1708986488,[151,151,0]],[1708986489,[155,155,0]],[1708986490,[158,158,0]],[1708986491,[160,160,0]],[1708986492,[164,164,0]],[1708986493,[165,165,0]],[1708986494,[170,170,0]],[1708986495,[171,171,0]],[1708986496,[174,174,0]],[1708986497,[176,176,0]],[1708986498,[181,181,0]],[1708986499,[183,183,0]],[1708986500,[186,186,0]],[1708986501,[188,168,20]],[1708986502,[192,141,51]],[1708986503,[194,139,55]],[1708986504,[196,153,43]],[1708986505,[199,163,36]],[1708986506,[203,174,29]],[1708986507,[205,160,45]],[1708986508,[207,109,98]],[1708986509,[211,115,96]],[1708986510,[214,146,68]],[1708986511,[217,167,50]],[1708986512,[219,125,94]],[1708986513,[222,186,36]],[1708986514,[225,164,61]],[1708986515,[228,186,42]],[1708986516,[230,115,115]],[1708986517,[233,97,136]],[1708986518,[237,116,121]],[1708986519,[238,114,124]],[1708986520,[243,165,78]],[1708986521,[244,108,136]],[1708986522,[248,194,54]],[1708986523,[250,144,106]],[1708986524,[252,203,49]],[1708986525,[256,139,117]],[1708986526,[259,113,146]],[1708986527,[262,138,124]],[1708986528,[264,143,121]],[1708986529,[266,185,81]],[1708986530,[270,137,133]],[1708986531,[273,108,165]],[1708986532,[275,158,117]],[1708986533,[279,225,54]],[1708986534,[280,76,204]],[1708986535,[285,118,167]],[1708986536,[287,124,163]],[1708986537,[290,141,149]],[1708986538,[291,112,179]],[1708986539,[296,170,126]],[1708986540,[297,153,144]],[1708986541,[301,154,147]],[1708986542,[303,158,145]],[1708986543,[306,131,175]],[1708986544,[309,102,207]],[1708986545,[313,147,166]],[1708986546,[314,151,163]],[1708986547,[318,129,189]],[1708986548,[321,131,190]],[1708986549,[322,130,192]],[1708986550,[327,163,164]],[1708986551,[329,154,175]],[1708986552,[331,162,169]],[1708986553,[334,149,185]],[1708986554,[339,142,197]],[1708986555,[340,136,204]],[1708986556,[340,173,167]],[1708986557,[340,116,224]],[1708986558,[340,130,210]],[1708986559,[340,148,192]],[1708986560,[340,121,219]],[1708986561,[340,159,181]],[1708986562,[340,159,181]],[1708986563,[340,153,187]],[1708986564,[340,152,188]],[1708986565,[340,161,179]],[1708986566,[340,159,181]],[1708986567,[340,148,192]],[1708986568,[340,117,223]],[1708986569,[340,153,187]],[1708986570,[340,162,178]],[1708986571,[340,137,203]],[1708986572,[340,90,250]],[1708986573,[340,144,196]],[1708986574,[340,155,185]],[1708986575,[340,127,213]],[1708986576,[340,114,226]],[1708986577,[340,124,216]],[1708986578,[340,86,254]],[1708986579,[340,150,190]],[1708986580,[340,149,191]],[1708986581,[339,181,158]],[1708986582,[341,106,235]],[1708986583,[340,132,208]],[1708986584,[340,104,236]],[1708986585,[340,145,195]],[1708986586,[340,147,193]],[1708986587,[340,146,194]],[1708986588,[340,118,222]],[1708986589,[340,166,174]],[1708986590,[340,157,183]],[1708986591,[340,116,224]],[1708986592,[340,121,219]],[1708986593,[340,163,177]],[1708986594,[340,173,167]],[1708986595,[340,138,202]],[1708986596,[340,132,208]],[1708986597,[340,179,161]],[1708986598,[340,123,217]],[1708986599,[340,165,175]],[1708986600,[340,171,169]],[1708986601,[340,118,222]],[1708986602,[340,107,233]],[1708986603,[340,113,227]],[1708986604,[340,135,205]],[1708986605,[340,103,237]],[1708986606,[340,164,176]],[1708986607,[340,167,173]],[1708986608,[340,191,149]],[1708986609,[340,188,152]],[1708986610,[340,134,206]],[1708986611,[340,107,233]],[1708986612,[340,174,166]],[1708986613,[340,135,205]],[1708986614,[340,141,199]],[1708986615,[340,165,175]],[1708986616,[340,135,205]],[1708986617,[340,148,192]],[1708986618,[340,163,177]],[1708986619,[340,151,189]],[1708986620,[340,135,205]],[1708986621,[340,216,124]],[1708986622,[340,117,223]],[1708986623,[340,167,173]],[1708986624,[340,189,151]],[1708986625,[340,175,165]],[1708986626,[340,157,183]],[1708986627,[340,134,206]],[1708986628,[340,171,169]],[1708986629,[340,130,210]],[1708986630,[340,126,214]],[1708986631,[340,164,176]],[1708986632,[340,186,154]],[1708986633,[340,176,164]],[1708986634,[340,140,200]],[1708986635,[340,139,201]],[1708986636,[340,168,172]],[1708986637,[340,134,206]],[1708986638,[340,129,211]],[1708986639,[340,160,180]],[1708986640,[340,78,262]],[1708986641,[340,150,190]],[1708986642,[340,178,162]],[1708986643,[340,202,138]],[1708986644,[340,144,196]],[1708986645,[340,188,152]],[1708986646,[340,202,138]],[1708986647,[340,146,194]],[1708986648,[340,155,185]],[1708986649,[340,118,222]],[1708986650,[340,145,195]],[1708986651,[340,108,232]],[1708986652,[340,178,162]],[1708986653,[340,143,197]],[1708986654,[340,132,208]],[1708986655,[340,137,203]],[1708986656,[340,141,199]],[1708986657,[340,145,195]],[1708986658,[340,115,225]],[1708986659,[340,147,193]],[1708986660,[340,132,208]],[1708986661,[340,123,217]],[1708986662,[340,164,176]],[1708986663,[340,152,188]],[1708986664,[340,109,231]],[1708986665,[340,100,240]],[1708986666,[340,136,204]],[1708986667,[340,165,175]],[1708986668,[340,171,169]],[1708986669,[340,129,211]],[1708986670,[340,153,187]],[1708986671,[340,181,159]],[1708986672,[340,172,168]],[1708986673,[340,137,203]],[1708986674,[340,108,232]],[1708986675,[164,80,84]],[1708986676,[0,0,0]],[1708986677,[0,0,0]],[1708986678,[0,0,0]],[1708986679,[0,0,0]]]);
var requestsChart = new Highcharts.StockChart({
chart: {
renderTo: 'requests',
zoomType: 'x',
marginBottom: 60
},
credits: { enabled: false },
legend: {
enabled: true,
floating: true,
y: -65,
borderWidth: 0,
itemStyle: { fontWeight: "normal" },
symbolRadius: 0
},
title: { text: 'A title to let highcharts reserve the place for the title set later' },
navigator: {
maskInside: false
},
rangeSelector: {
buttonSpacing: 0,
buttonTheme: {
fill: '#CFC9C6',
padding: 1,
stroke: '#000000',
'stroke-width': 0.25,
style: {
color: '#000000',
fontWeight: 'bold',
},
states: {
stroke: '#000000',
'stroke-width': 0.25,
hover: {
fill: '#92918C',
style: { color: 'black' }
},