-
Notifications
You must be signed in to change notification settings - Fork 923
/
Copy pathindex.html
1225 lines (1155 loc) · 97.8 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 18:29:37 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 - acdesouza">
<span class="simulation-information-label">Description: </span>
<span>Rinha de Backend - 2024/Q1: Crébito - acdesouza</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">770</td>
<td class="value error-col-3 total ko">92.883 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">status.find.is(200), but actually found 502<span class="value" style="display:none">1</span></td>
<td class="value error-col-2 total ko">32</td>
<td class="value error-col-3 total ko">3.86 %</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">2</span></td>
<td class="value error-col-2 total ko">10</td>
<td class="value error-col-3 total ko">1.206 %</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">8</td>
<td class="value error-col-3 total ko">0.965 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">status.find.in([200, 209], 304), found 502<span class="value" style="display:none">4</span></td>
<td class="value error-col-2 total ko">6</td>
<td class="value error-col-3 total ko">0.724 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">jmesPath(saldo.total).find.is(0), but actually found 18<span class="value" style="display:none">5</span></td>
<td class="value error-col-2 total ko">2</td>
<td class="value error-col-3 total ko">0.241 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">status.find.in([200, 209], 304), found 500<span class="value" style="display:none">6</span></td>
<td class="value error-col-2 total ko">1</td>
<td class="value error-col-3 total ko">0.121 %</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: [
[1708367378000,0],[1708367379000,0],[1708367380000,0],[1708367381000,0],[1708367382000,1],[1708367383000,2],[1708367384000,2],[1708367385000,4],[1708367386000,4],[1708367387000,6],[1708367388000,6],[1708367389000,7],[1708367390000,8],[1708367391000,8],[1708367392000,10],[1708367393000,10],[1708367394000,12],[1708367395000,12],[1708367396000,14],[1708367397000,14],[1708367398000,15],[1708367399000,16],[1708367400000,17],[1708367401000,17],[1708367402000,19],[1708367403000,20],[1708367404000,20],[1708367405000,22],[1708367406000,22],[1708367407000,23],[1708367408000,25],[1708367409000,25],[1708367410000,26],[1708367411000,26],[1708367412000,28],[1708367413000,29],[1708367414000,30],[1708367415000,30],[1708367416000,32],[1708367417000,33],[1708367418000,33],[1708367419000,34],[1708367420000,35],[1708367421000,36],[1708367422000,37],[1708367423000,38],[1708367424000,39],[1708367425000,39],[1708367426000,41],[1708367427000,41],[1708367428000,43],[1708367429000,43],[1708367430000,44],[1708367431000,45],[1708367432000,46],[1708367433000,47],[1708367434000,48],[1708367435000,48],[1708367436000,50],[1708367437000,50],[1708367438000,52],[1708367439000,52],[1708367440000,53],[1708367441000,55],[1708367442000,56],[1708367443000,55],[1708367444000,57],[1708367445000,59],[1708367446000,60],[1708367447000,60],[1708367448000,62],[1708367449000,62],[1708367450000,64],[1708367451000,64],[1708367452000,65],[1708367453000,66],[1708367454000,67],[1708367455000,68],[1708367456000,69],[1708367457000,69],[1708367458000,71],[1708367459000,71],[1708367460000,73],[1708367461000,73],[1708367462000,74],[1708367463000,75],[1708367464000,76],[1708367465000,77],[1708367466000,78],[1708367467000,78],[1708367468000,80],[1708367469000,80],[1708367470000,82],[1708367471000,82],[1708367472000,83],[1708367473000,84],[1708367474000,85],[1708367475000,86],[1708367476000,87],[1708367477000,87],[1708367478000,89],[1708367479000,89],[1708367480000,90],[1708367481000,91],[1708367482000,91],[1708367483000,92],[1708367484000,94],[1708367485000,94],[1708367486000,95],[1708367487000,96],[1708367488000,97],[1708367489000,112],[1708367490000,104],[1708367491000,99],[1708367492000,101],[1708367493000,101],[1708367494000,104],[1708367495000,103],[1708367496000,105],[1708367497000,105],[1708367498000,111],[1708367499000,130],[1708367500000,135],[1708367501000,154],[1708367502000,147],[1708367503000,141],[1708367504000,151],[1708367505000,149],[1708367506000,140],[1708367507000,141],[1708367508000,139],[1708367509000,142],[1708367510000,147],[1708367511000,155],[1708367512000,156],[1708367513000,146],[1708367514000,146],[1708367515000,171],[1708367516000,173],[1708367517000,175],[1708367518000,181],[1708367519000,174],[1708367520000,165],[1708367521000,155],[1708367522000,148],[1708367523000,156],[1708367524000,138],[1708367525000,137],[1708367526000,130],[1708367527000,120],[1708367528000,123],[1708367529000,120],[1708367530000,128],[1708367531000,127],[1708367532000,126],[1708367533000,125],[1708367534000,140],[1708367535000,142],[1708367536000,142],[1708367537000,154],[1708367538000,153],[1708367539000,131],[1708367540000,120],[1708367541000,118],[1708367542000,114],[1708367543000,110],[1708367544000,115],[1708367545000,110],[1708367546000,110],[1708367547000,112],[1708367548000,110],[1708367549000,110],[1708367550000,110],[1708367551000,131],[1708367552000,128],[1708367553000,112],[1708367554000,127],[1708367555000,120],[1708367556000,116],[1708367557000,119],[1708367558000,117],[1708367559000,112],[1708367560000,111],[1708367561000,125],[1708367562000,119],[1708367563000,115],[1708367564000,124],[1708367565000,117],[1708367566000,124],[1708367567000,132],[1708367568000,128],[1708367569000,121],[1708367570000,128],[1708367571000,139],[1708367572000,139],[1708367573000,138],[1708367574000,154],[1708367575000,144],[1708367576000,146],[1708367577000,155],[1708367578000,150],[1708367579000,148],[1708367580000,151],[1708367581000,124],[1708367582000,135],[1708367583000,150],[1708367584000,137],[1708367585000,133],[1708367586000,135],[1708367587000,139],[1708367588000,133],[1708367589000,129],[1708367590000,122],[1708367591000,127],[1708367592000,131],[1708367593000,125],[1708367594000,129],[1708367595000,123],[1708367596000,124],[1708367597000,122],[1708367598000,129],[1708367599000,121],[1708367600000,111],[1708367601000,119],[1708367602000,116],[1708367603000,111],[1708367604000,117],[1708367605000,111],[1708367606000,110],[1708367607000,111],[1708367608000,118],[1708367609000,113],[1708367610000,110],[1708367611000,111],[1708367612000,110],[1708367613000,110],[1708367614000,110],[1708367615000,110],[1708367616000,113],[1708367617000,110],[1708367618000,112],[1708367619000,111],[1708367620000,123],[1708367621000,111],[1708367622000,108],[1708367623000,4]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#68b65c',
name: 'débitos',
data: [
[1708367378000,0],[1708367379000,0],[1708367380000,0],[1708367381000,0],[1708367382000,1],[1708367383000,2],[1708367384000,5],[1708367385000,6],[1708367386000,7],[1708367387000,10],[1708367388000,11],[1708367389000,13],[1708367390000,15],[1708367391000,16],[1708367392000,19],[1708367393000,20],[1708367394000,22],[1708367395000,24],[1708367396000,25],[1708367397000,28],[1708367398000,29],[1708367399000,31],[1708367400000,33],[1708367401000,35],[1708367402000,37],[1708367403000,38],[1708367404000,40],[1708367405000,42],[1708367406000,44],[1708367407000,46],[1708367408000,47],[1708367409000,50],[1708367410000,51],[1708367411000,53],[1708367412000,56],[1708367413000,57],[1708367414000,60],[1708367415000,61],[1708367416000,63],[1708367417000,66],[1708367418000,67],[1708367419000,69],[1708367420000,70],[1708367421000,72],[1708367422000,75],[1708367423000,75],[1708367424000,78],[1708367425000,80],[1708367426000,80],[1708367427000,82],[1708367428000,84],[1708367429000,86],[1708367430000,88],[1708367431000,89],[1708367432000,92],[1708367433000,93],[1708367434000,95],[1708367435000,97],[1708367436000,98],[1708367437000,101],[1708367438000,102],[1708367439000,104],[1708367440000,106],[1708367441000,109],[1708367442000,110],[1708367443000,112],[1708367444000,114],[1708367445000,116],[1708367446000,118],[1708367447000,120],[1708367448000,121],[1708367449000,124],[1708367450000,125],[1708367451000,127],[1708367452000,129],[1708367453000,130],[1708367454000,133],[1708367455000,134],[1708367456000,136],[1708367457000,138],[1708367458000,140],[1708367459000,142],[1708367460000,143],[1708367461000,144],[1708367462000,148],[1708367463000,148],[1708367464000,150],[1708367465000,152],[1708367466000,154],[1708367467000,158],[1708367468000,158],[1708367469000,160],[1708367470000,162],[1708367471000,162],[1708367472000,165],[1708367473000,168],[1708367474000,169],[1708367475000,173],[1708367476000,172],[1708367477000,175],[1708367478000,176],[1708367479000,178],[1708367480000,180],[1708367481000,182],[1708367482000,184],[1708367483000,185],[1708367484000,188],[1708367485000,189],[1708367486000,191],[1708367487000,193],[1708367488000,195],[1708367489000,225],[1708367490000,205],[1708367491000,200],[1708367492000,202],[1708367493000,204],[1708367494000,212],[1708367495000,208],[1708367496000,210],[1708367497000,212],[1708367498000,222],[1708367499000,272],[1708367500000,268],[1708367501000,293],[1708367502000,286],[1708367503000,289],[1708367504000,306],[1708367505000,307],[1708367506000,282],[1708367507000,283],[1708367508000,297],[1708367509000,303],[1708367510000,312],[1708367511000,330],[1708367512000,327],[1708367513000,311],[1708367514000,315],[1708367515000,343],[1708367516000,349],[1708367517000,353],[1708367518000,357],[1708367519000,347],[1708367520000,309],[1708367521000,293],[1708367522000,293],[1708367523000,292],[1708367524000,260],[1708367525000,276],[1708367526000,269],[1708367527000,235],[1708367528000,245],[1708367529000,241],[1708367530000,247],[1708367531000,255],[1708367532000,261],[1708367533000,261],[1708367534000,281],[1708367535000,287],[1708367536000,293],[1708367537000,318],[1708367538000,312],[1708367539000,263],[1708367540000,242],[1708367541000,248],[1708367542000,231],[1708367543000,221],[1708367544000,237],[1708367545000,221],[1708367546000,220],[1708367547000,228],[1708367548000,220],[1708367549000,221],[1708367550000,221],[1708367551000,256],[1708367552000,245],[1708367553000,227],[1708367554000,250],[1708367555000,235],[1708367556000,237],[1708367557000,246],[1708367558000,235],[1708367559000,223],[1708367560000,222],[1708367561000,245],[1708367562000,245],[1708367563000,232],[1708367564000,263],[1708367565000,237],[1708367566000,247],[1708367567000,265],[1708367568000,267],[1708367569000,246],[1708367570000,255],[1708367571000,276],[1708367572000,272],[1708367573000,276],[1708367574000,307],[1708367575000,296],[1708367576000,285],[1708367577000,305],[1708367578000,293],[1708367579000,312],[1708367580000,312],[1708367581000,268],[1708367582000,273],[1708367583000,299],[1708367584000,255],[1708367585000,257],[1708367586000,258],[1708367587000,273],[1708367588000,262],[1708367589000,265],[1708367590000,251],[1708367591000,249],[1708367592000,256],[1708367593000,258],[1708367594000,254],[1708367595000,249],[1708367596000,251],[1708367597000,242],[1708367598000,253],[1708367599000,251],[1708367600000,222],[1708367601000,237],[1708367602000,226],[1708367603000,221],[1708367604000,239],[1708367605000,222],[1708367606000,220],[1708367607000,221],[1708367608000,232],[1708367609000,231],[1708367610000,221],[1708367611000,222],[1708367612000,220],[1708367613000,222],[1708367614000,220],[1708367615000,220],[1708367616000,224],[1708367617000,221],[1708367618000,225],[1708367619000,222],[1708367620000,247],[1708367621000,222],[1708367622000,217],[1708367623000,5]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#f15b4f',
name: 'extratos',
data: [
[1708367378000,0],[1708367379000,0],[1708367380000,0],[1708367381000,0],[1708367382000,1],[1708367383000,2],[1708367384000,1],[1708367385000,1],[1708367386000,1],[1708367387000,1],[1708367388000,2],[1708367389000,1],[1708367390000,2],[1708367391000,2],[1708367392000,1],[1708367393000,2],[1708367394000,2],[1708367395000,2],[1708367396000,2],[1708367397000,2],[1708367398000,2],[1708367399000,2],[1708367400000,3],[1708367401000,2],[1708367402000,3],[1708367403000,2],[1708367404000,3],[1708367405000,2],[1708367406000,3],[1708367407000,3],[1708367408000,3],[1708367409000,3],[1708367410000,3],[1708367411000,3],[1708367412000,3],[1708367413000,4],[1708367414000,3],[1708367415000,3],[1708367416000,4],[1708367417000,4],[1708367418000,4],[1708367419000,4],[1708367420000,4],[1708367421000,4],[1708367422000,4],[1708367423000,4],[1708367424000,4],[1708367425000,4],[1708367426000,4],[1708367427000,4],[1708367428000,5],[1708367429000,4],[1708367430000,5],[1708367431000,5],[1708367432000,4],[1708367433000,5],[1708367434000,5],[1708367435000,5],[1708367436000,5],[1708367437000,5],[1708367438000,5],[1708367439000,5],[1708367440000,6],[1708367441000,5],[1708367442000,6],[1708367443000,5],[1708367444000,6],[1708367445000,5],[1708367446000,6],[1708367447000,6],[1708367448000,6],[1708367449000,6],[1708367450000,6],[1708367451000,6],[1708367452000,6],[1708367453000,7],[1708367454000,6],[1708367455000,6],[1708367456000,7],[1708367457000,6],[1708367458000,7],[1708367459000,7],[1708367460000,7],[1708367461000,7],[1708367462000,7],[1708367463000,7],[1708367464000,7],[1708367465000,7],[1708367466000,7],[1708367467000,7],[1708367468000,8],[1708367469000,7],[1708367470000,8],[1708367471000,8],[1708367472000,7],[1708367473000,8],[1708367474000,8],[1708367475000,8],[1708367476000,8],[1708367477000,8],[1708367478000,8],[1708367479000,8],[1708367480000,9],[1708367481000,8],[1708367482000,9],[1708367483000,8],[1708367484000,9],[1708367485000,8],[1708367486000,9],[1708367487000,9],[1708367488000,9],[1708367489000,10],[1708367490000,9],[1708367491000,9],[1708367492000,9],[1708367493000,10],[1708367494000,9],[1708367495000,9],[1708367496000,10],[1708367497000,9],[1708367498000,11],[1708367499000,13],[1708367500000,11],[1708367501000,12],[1708367502000,11],[1708367503000,11],[1708367504000,13],[1708367505000,14],[1708367506000,14],[1708367507000,13],[1708367508000,14],[1708367509000,15],[1708367510000,17],[1708367511000,17],[1708367512000,17],[1708367513000,16],[1708367514000,16],[1708367515000,18],[1708367516000,16],[1708367517000,17],[1708367518000,17],[1708367519000,15],[1708367520000,14],[1708367521000,14],[1708367522000,15],[1708367523000,13],[1708367524000,12],[1708367525000,13],[1708367526000,13],[1708367527000,14],[1708367528000,12],[1708367529000,12],[1708367530000,12],[1708367531000,11],[1708367532000,11],[1708367533000,11],[1708367534000,11],[1708367535000,13],[1708367536000,11],[1708367537000,12],[1708367538000,13],[1708367539000,12],[1708367540000,13],[1708367541000,13],[1708367542000,10],[1708367543000,10],[1708367544000,12],[1708367545000,10],[1708367546000,10],[1708367547000,11],[1708367548000,10],[1708367549000,10],[1708367550000,10],[1708367551000,10],[1708367552000,10],[1708367553000,11],[1708367554000,11],[1708367555000,10],[1708367556000,11],[1708367557000,11],[1708367558000,10],[1708367559000,10],[1708367560000,10],[1708367561000,10],[1708367562000,11],[1708367563000,10],[1708367564000,12],[1708367565000,12],[1708367566000,12],[1708367567000,12],[1708367568000,13],[1708367569000,11],[1708367570000,11],[1708367571000,11],[1708367572000,12],[1708367573000,11],[1708367574000,14],[1708367575000,15],[1708367576000,13],[1708367577000,14],[1708367578000,14],[1708367579000,13],[1708367580000,14],[1708367581000,12],[1708367582000,14],[1708367583000,16],[1708367584000,15],[1708367585000,12],[1708367586000,12],[1708367587000,12],[1708367588000,11],[1708367589000,11],[1708367590000,11],[1708367591000,11],[1708367592000,10],[1708367593000,11],[1708367594000,10],[1708367595000,10],[1708367596000,12],[1708367597000,12],[1708367598000,12],[1708367599000,11],[1708367600000,10],[1708367601000,10],[1708367602000,11],[1708367603000,10],[1708367604000,10],[1708367605000,10],[1708367606000,10],[1708367607000,10],[1708367608000,11],[1708367609000,11],[1708367610000,10],[1708367611000,10],[1708367612000,10],[1708367613000,10],[1708367614000,10],[1708367615000,10],[1708367616000,10],[1708367617000,10],[1708367618000,10],[1708367619000,10],[1708367620000,11],[1708367621000,10],[1708367622000,9],[1708367623000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FFDD00',
name: 'validação HTTP 404',
data: [
[1708367378000,0],[1708367379000,0],[1708367380000,0],[1708367381000,1],[1708367382000,1],[1708367383000,0],[1708367384000,0],[1708367385000,0],[1708367386000,0],[1708367387000,0],[1708367388000,0],[1708367389000,0],[1708367390000,0],[1708367391000,0],[1708367392000,0],[1708367393000,0],[1708367394000,0],[1708367395000,0],[1708367396000,0],[1708367397000,0],[1708367398000,0],[1708367399000,0],[1708367400000,0],[1708367401000,0],[1708367402000,0],[1708367403000,0],[1708367404000,0],[1708367405000,0],[1708367406000,0],[1708367407000,0],[1708367408000,0],[1708367409000,0],[1708367410000,0],[1708367411000,0],[1708367412000,0],[1708367413000,0],[1708367414000,0],[1708367415000,0],[1708367416000,0],[1708367417000,0],[1708367418000,0],[1708367419000,0],[1708367420000,0],[1708367421000,0],[1708367422000,0],[1708367423000,0],[1708367424000,0],[1708367425000,0],[1708367426000,0],[1708367427000,0],[1708367428000,0],[1708367429000,0],[1708367430000,0],[1708367431000,0],[1708367432000,0],[1708367433000,0],[1708367434000,0],[1708367435000,0],[1708367436000,0],[1708367437000,0],[1708367438000,0],[1708367439000,0],[1708367440000,0],[1708367441000,0],[1708367442000,0],[1708367443000,0],[1708367444000,0],[1708367445000,0],[1708367446000,0],[1708367447000,0],[1708367448000,0],[1708367449000,0],[1708367450000,0],[1708367451000,0],[1708367452000,0],[1708367453000,0],[1708367454000,0],[1708367455000,0],[1708367456000,0],[1708367457000,0],[1708367458000,0],[1708367459000,0],[1708367460000,0],[1708367461000,0],[1708367462000,0],[1708367463000,0],[1708367464000,0],[1708367465000,0],[1708367466000,0],[1708367467000,0],[1708367468000,0],[1708367469000,0],[1708367470000,0],[1708367471000,0],[1708367472000,0],[1708367473000,0],[1708367474000,0],[1708367475000,0],[1708367476000,0],[1708367477000,0],[1708367478000,0],[1708367479000,0],[1708367480000,0],[1708367481000,0],[1708367482000,0],[1708367483000,0],[1708367484000,0],[1708367485000,0],[1708367486000,0],[1708367487000,0],[1708367488000,0],[1708367489000,0],[1708367490000,0],[1708367491000,0],[1708367492000,0],[1708367493000,0],[1708367494000,0],[1708367495000,0],[1708367496000,0],[1708367497000,0],[1708367498000,0],[1708367499000,0],[1708367500000,0],[1708367501000,0],[1708367502000,0],[1708367503000,0],[1708367504000,0],[1708367505000,0],[1708367506000,0],[1708367507000,0],[1708367508000,0],[1708367509000,0],[1708367510000,0],[1708367511000,0],[1708367512000,0],[1708367513000,0],[1708367514000,0],[1708367515000,0],[1708367516000,0],[1708367517000,0],[1708367518000,0],[1708367519000,0],[1708367520000,0],[1708367521000,0],[1708367522000,0],[1708367523000,0],[1708367524000,0],[1708367525000,0],[1708367526000,0],[1708367527000,0],[1708367528000,0],[1708367529000,0],[1708367530000,0],[1708367531000,0],[1708367532000,0],[1708367533000,0],[1708367534000,0],[1708367535000,0],[1708367536000,0],[1708367537000,0],[1708367538000,0],[1708367539000,0],[1708367540000,0],[1708367541000,0],[1708367542000,0],[1708367543000,0],[1708367544000,0],[1708367545000,0],[1708367546000,0],[1708367547000,0],[1708367548000,0],[1708367549000,0],[1708367550000,0],[1708367551000,0],[1708367552000,0],[1708367553000,0],[1708367554000,0],[1708367555000,0],[1708367556000,0],[1708367557000,0],[1708367558000,0],[1708367559000,0],[1708367560000,0],[1708367561000,0],[1708367562000,0],[1708367563000,0],[1708367564000,0],[1708367565000,0],[1708367566000,0],[1708367567000,0],[1708367568000,0],[1708367569000,0],[1708367570000,0],[1708367571000,0],[1708367572000,0],[1708367573000,0],[1708367574000,0],[1708367575000,0],[1708367576000,0],[1708367577000,0],[1708367578000,0],[1708367579000,0],[1708367580000,0],[1708367581000,0],[1708367582000,0],[1708367583000,0],[1708367584000,0],[1708367585000,0],[1708367586000,0],[1708367587000,0],[1708367588000,0],[1708367589000,0],[1708367590000,0],[1708367591000,0],[1708367592000,0],[1708367593000,0],[1708367594000,0],[1708367595000,0],[1708367596000,0],[1708367597000,0],[1708367598000,0],[1708367599000,0],[1708367600000,0],[1708367601000,0],[1708367602000,0],[1708367603000,0],[1708367604000,0],[1708367605000,0],[1708367606000,0],[1708367607000,0],[1708367608000,0],[1708367609000,0],[1708367610000,0],[1708367611000,0],[1708367612000,0],[1708367613000,0],[1708367614000,0],[1708367615000,0],[1708367616000,0],[1708367617000,0],[1708367618000,0],[1708367619000,0],[1708367620000,0],[1708367621000,0],[1708367622000,0],[1708367623000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00D5FF',
name: 'validações',
data: [
[1708367378000,0],[1708367379000,0],[1708367380000,0],[1708367381000,5],[1708367382000,5],[1708367383000,0],[1708367384000,0],[1708367385000,0],[1708367386000,0],[1708367387000,0],[1708367388000,0],[1708367389000,0],[1708367390000,0],[1708367391000,0],[1708367392000,0],[1708367393000,0],[1708367394000,0],[1708367395000,0],[1708367396000,0],[1708367397000,0],[1708367398000,0],[1708367399000,0],[1708367400000,0],[1708367401000,0],[1708367402000,0],[1708367403000,0],[1708367404000,0],[1708367405000,0],[1708367406000,0],[1708367407000,0],[1708367408000,0],[1708367409000,0],[1708367410000,0],[1708367411000,0],[1708367412000,0],[1708367413000,0],[1708367414000,0],[1708367415000,0],[1708367416000,0],[1708367417000,0],[1708367418000,0],[1708367419000,0],[1708367420000,0],[1708367421000,0],[1708367422000,0],[1708367423000,0],[1708367424000,0],[1708367425000,0],[1708367426000,0],[1708367427000,0],[1708367428000,0],[1708367429000,0],[1708367430000,0],[1708367431000,0],[1708367432000,0],[1708367433000,0],[1708367434000,0],[1708367435000,0],[1708367436000,0],[1708367437000,0],[1708367438000,0],[1708367439000,0],[1708367440000,0],[1708367441000,0],[1708367442000,0],[1708367443000,0],[1708367444000,0],[1708367445000,0],[1708367446000,0],[1708367447000,0],[1708367448000,0],[1708367449000,0],[1708367450000,0],[1708367451000,0],[1708367452000,0],[1708367453000,0],[1708367454000,0],[1708367455000,0],[1708367456000,0],[1708367457000,0],[1708367458000,0],[1708367459000,0],[1708367460000,0],[1708367461000,0],[1708367462000,0],[1708367463000,0],[1708367464000,0],[1708367465000,0],[1708367466000,0],[1708367467000,0],[1708367468000,0],[1708367469000,0],[1708367470000,0],[1708367471000,0],[1708367472000,0],[1708367473000,0],[1708367474000,0],[1708367475000,0],[1708367476000,0],[1708367477000,0],[1708367478000,0],[1708367479000,0],[1708367480000,0],[1708367481000,0],[1708367482000,0],[1708367483000,0],[1708367484000,0],[1708367485000,0],[1708367486000,0],[1708367487000,0],[1708367488000,0],[1708367489000,0],[1708367490000,0],[1708367491000,0],[1708367492000,0],[1708367493000,0],[1708367494000,0],[1708367495000,0],[1708367496000,0],[1708367497000,0],[1708367498000,0],[1708367499000,0],[1708367500000,0],[1708367501000,0],[1708367502000,0],[1708367503000,0],[1708367504000,0],[1708367505000,0],[1708367506000,0],[1708367507000,0],[1708367508000,0],[1708367509000,0],[1708367510000,0],[1708367511000,0],[1708367512000,0],[1708367513000,0],[1708367514000,0],[1708367515000,0],[1708367516000,0],[1708367517000,0],[1708367518000,0],[1708367519000,0],[1708367520000,0],[1708367521000,0],[1708367522000,0],[1708367523000,0],[1708367524000,0],[1708367525000,0],[1708367526000,0],[1708367527000,0],[1708367528000,0],[1708367529000,0],[1708367530000,0],[1708367531000,0],[1708367532000,0],[1708367533000,0],[1708367534000,0],[1708367535000,0],[1708367536000,0],[1708367537000,0],[1708367538000,0],[1708367539000,0],[1708367540000,0],[1708367541000,0],[1708367542000,0],[1708367543000,0],[1708367544000,0],[1708367545000,0],[1708367546000,0],[1708367547000,0],[1708367548000,0],[1708367549000,0],[1708367550000,0],[1708367551000,0],[1708367552000,0],[1708367553000,0],[1708367554000,0],[1708367555000,0],[1708367556000,0],[1708367557000,0],[1708367558000,0],[1708367559000,0],[1708367560000,0],[1708367561000,0],[1708367562000,0],[1708367563000,0],[1708367564000,0],[1708367565000,0],[1708367566000,0],[1708367567000,0],[1708367568000,0],[1708367569000,0],[1708367570000,0],[1708367571000,0],[1708367572000,0],[1708367573000,0],[1708367574000,0],[1708367575000,0],[1708367576000,0],[1708367577000,0],[1708367578000,0],[1708367579000,0],[1708367580000,0],[1708367581000,0],[1708367582000,0],[1708367583000,0],[1708367584000,0],[1708367585000,0],[1708367586000,0],[1708367587000,0],[1708367588000,0],[1708367589000,0],[1708367590000,0],[1708367591000,0],[1708367592000,0],[1708367593000,0],[1708367594000,0],[1708367595000,0],[1708367596000,0],[1708367597000,0],[1708367598000,0],[1708367599000,0],[1708367600000,0],[1708367601000,0],[1708367602000,0],[1708367603000,0],[1708367604000,0],[1708367605000,0],[1708367606000,0],[1708367607000,0],[1708367608000,0],[1708367609000,0],[1708367610000,0],[1708367611000,0],[1708367612000,0],[1708367613000,0],[1708367614000,0],[1708367615000,0],[1708367616000,0],[1708367617000,0],[1708367618000,0],[1708367619000,0],[1708367620000,0],[1708367621000,0],[1708367622000,0],[1708367623000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00FF00',
name: 'validação concorrência saldo - 0',
data: [
[1708367378000,0],[1708367379000,0],[1708367380000,1],[1708367381000,1],[1708367382000,0],[1708367383000,0],[1708367384000,0],[1708367385000,0],[1708367386000,0],[1708367387000,0],[1708367388000,0],[1708367389000,0],[1708367390000,0],[1708367391000,0],[1708367392000,0],[1708367393000,0],[1708367394000,0],[1708367395000,0],[1708367396000,0],[1708367397000,0],[1708367398000,0],[1708367399000,0],[1708367400000,0],[1708367401000,0],[1708367402000,0],[1708367403000,0],[1708367404000,0],[1708367405000,0],[1708367406000,0],[1708367407000,0],[1708367408000,0],[1708367409000,0],[1708367410000,0],[1708367411000,0],[1708367412000,0],[1708367413000,0],[1708367414000,0],[1708367415000,0],[1708367416000,0],[1708367417000,0],[1708367418000,0],[1708367419000,0],[1708367420000,0],[1708367421000,0],[1708367422000,0],[1708367423000,0],[1708367424000,0],[1708367425000,0],[1708367426000,0],[1708367427000,0],[1708367428000,0],[1708367429000,0],[1708367430000,0],[1708367431000,0],[1708367432000,0],[1708367433000,0],[1708367434000,0],[1708367435000,0],[1708367436000,0],[1708367437000,0],[1708367438000,0],[1708367439000,0],[1708367440000,0],[1708367441000,0],[1708367442000,0],[1708367443000,0],[1708367444000,0],[1708367445000,0],[1708367446000,0],[1708367447000,0],[1708367448000,0],[1708367449000,0],[1708367450000,0],[1708367451000,0],[1708367452000,0],[1708367453000,0],[1708367454000,0],[1708367455000,0],[1708367456000,0],[1708367457000,0],[1708367458000,0],[1708367459000,0],[1708367460000,0],[1708367461000,0],[1708367462000,0],[1708367463000,0],[1708367464000,0],[1708367465000,0],[1708367466000,0],[1708367467000,0],[1708367468000,0],[1708367469000,0],[1708367470000,0],[1708367471000,0],[1708367472000,0],[1708367473000,0],[1708367474000,0],[1708367475000,0],[1708367476000,0],[1708367477000,0],[1708367478000,0],[1708367479000,0],[1708367480000,0],[1708367481000,0],[1708367482000,0],[1708367483000,0],[1708367484000,0],[1708367485000,0],[1708367486000,0],[1708367487000,0],[1708367488000,0],[1708367489000,0],[1708367490000,0],[1708367491000,0],[1708367492000,0],[1708367493000,0],[1708367494000,0],[1708367495000,0],[1708367496000,0],[1708367497000,0],[1708367498000,0],[1708367499000,0],[1708367500000,0],[1708367501000,0],[1708367502000,0],[1708367503000,0],[1708367504000,0],[1708367505000,0],[1708367506000,0],[1708367507000,0],[1708367508000,0],[1708367509000,0],[1708367510000,0],[1708367511000,0],[1708367512000,0],[1708367513000,0],[1708367514000,0],[1708367515000,0],[1708367516000,0],[1708367517000,0],[1708367518000,0],[1708367519000,0],[1708367520000,0],[1708367521000,0],[1708367522000,0],[1708367523000,0],[1708367524000,0],[1708367525000,0],[1708367526000,0],[1708367527000,0],[1708367528000,0],[1708367529000,0],[1708367530000,0],[1708367531000,0],[1708367532000,0],[1708367533000,0],[1708367534000,0],[1708367535000,0],[1708367536000,0],[1708367537000,0],[1708367538000,0],[1708367539000,0],[1708367540000,0],[1708367541000,0],[1708367542000,0],[1708367543000,0],[1708367544000,0],[1708367545000,0],[1708367546000,0],[1708367547000,0],[1708367548000,0],[1708367549000,0],[1708367550000,0],[1708367551000,0],[1708367552000,0],[1708367553000,0],[1708367554000,0],[1708367555000,0],[1708367556000,0],[1708367557000,0],[1708367558000,0],[1708367559000,0],[1708367560000,0],[1708367561000,0],[1708367562000,0],[1708367563000,0],[1708367564000,0],[1708367565000,0],[1708367566000,0],[1708367567000,0],[1708367568000,0],[1708367569000,0],[1708367570000,0],[1708367571000,0],[1708367572000,0],[1708367573000,0],[1708367574000,0],[1708367575000,0],[1708367576000,0],[1708367577000,0],[1708367578000,0],[1708367579000,0],[1708367580000,0],[1708367581000,0],[1708367582000,0],[1708367583000,0],[1708367584000,0],[1708367585000,0],[1708367586000,0],[1708367587000,0],[1708367588000,0],[1708367589000,0],[1708367590000,0],[1708367591000,0],[1708367592000,0],[1708367593000,0],[1708367594000,0],[1708367595000,0],[1708367596000,0],[1708367597000,0],[1708367598000,0],[1708367599000,0],[1708367600000,0],[1708367601000,0],[1708367602000,0],[1708367603000,0],[1708367604000,0],[1708367605000,0],[1708367606000,0],[1708367607000,0],[1708367608000,0],[1708367609000,0],[1708367610000,0],[1708367611000,0],[1708367612000,0],[1708367613000,0],[1708367614000,0],[1708367615000,0],[1708367616000,0],[1708367617000,0],[1708367618000,0],[1708367619000,0],[1708367620000,0],[1708367621000,0],[1708367622000,0],[1708367623000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#9D00FF',
name: 'validação concorrência transações - c',
data: [
[1708367378000,0],[1708367379000,25],[1708367380000,24],[1708367381000,0],[1708367382000,0],[1708367383000,0],[1708367384000,0],[1708367385000,0],[1708367386000,0],[1708367387000,0],[1708367388000,0],[1708367389000,0],[1708367390000,0],[1708367391000,0],[1708367392000,0],[1708367393000,0],[1708367394000,0],[1708367395000,0],[1708367396000,0],[1708367397000,0],[1708367398000,0],[1708367399000,0],[1708367400000,0],[1708367401000,0],[1708367402000,0],[1708367403000,0],[1708367404000,0],[1708367405000,0],[1708367406000,0],[1708367407000,0],[1708367408000,0],[1708367409000,0],[1708367410000,0],[1708367411000,0],[1708367412000,0],[1708367413000,0],[1708367414000,0],[1708367415000,0],[1708367416000,0],[1708367417000,0],[1708367418000,0],[1708367419000,0],[1708367420000,0],[1708367421000,0],[1708367422000,0],[1708367423000,0],[1708367424000,0],[1708367425000,0],[1708367426000,0],[1708367427000,0],[1708367428000,0],[1708367429000,0],[1708367430000,0],[1708367431000,0],[1708367432000,0],[1708367433000,0],[1708367434000,0],[1708367435000,0],[1708367436000,0],[1708367437000,0],[1708367438000,0],[1708367439000,0],[1708367440000,0],[1708367441000,0],[1708367442000,0],[1708367443000,0],[1708367444000,0],[1708367445000,0],[1708367446000,0],[1708367447000,0],[1708367448000,0],[1708367449000,0],[1708367450000,0],[1708367451000,0],[1708367452000,0],[1708367453000,0],[1708367454000,0],[1708367455000,0],[1708367456000,0],[1708367457000,0],[1708367458000,0],[1708367459000,0],[1708367460000,0],[1708367461000,0],[1708367462000,0],[1708367463000,0],[1708367464000,0],[1708367465000,0],[1708367466000,0],[1708367467000,0],[1708367468000,0],[1708367469000,0],[1708367470000,0],[1708367471000,0],[1708367472000,0],[1708367473000,0],[1708367474000,0],[1708367475000,0],[1708367476000,0],[1708367477000,0],[1708367478000,0],[1708367479000,0],[1708367480000,0],[1708367481000,0],[1708367482000,0],[1708367483000,0],[1708367484000,0],[1708367485000,0],[1708367486000,0],[1708367487000,0],[1708367488000,0],[1708367489000,0],[1708367490000,0],[1708367491000,0],[1708367492000,0],[1708367493000,0],[1708367494000,0],[1708367495000,0],[1708367496000,0],[1708367497000,0],[1708367498000,0],[1708367499000,0],[1708367500000,0],[1708367501000,0],[1708367502000,0],[1708367503000,0],[1708367504000,0],[1708367505000,0],[1708367506000,0],[1708367507000,0],[1708367508000,0],[1708367509000,0],[1708367510000,0],[1708367511000,0],[1708367512000,0],[1708367513000,0],[1708367514000,0],[1708367515000,0],[1708367516000,0],[1708367517000,0],[1708367518000,0],[1708367519000,0],[1708367520000,0],[1708367521000,0],[1708367522000,0],[1708367523000,0],[1708367524000,0],[1708367525000,0],[1708367526000,0],[1708367527000,0],[1708367528000,0],[1708367529000,0],[1708367530000,0],[1708367531000,0],[1708367532000,0],[1708367533000,0],[1708367534000,0],[1708367535000,0],[1708367536000,0],[1708367537000,0],[1708367538000,0],[1708367539000,0],[1708367540000,0],[1708367541000,0],[1708367542000,0],[1708367543000,0],[1708367544000,0],[1708367545000,0],[1708367546000,0],[1708367547000,0],[1708367548000,0],[1708367549000,0],[1708367550000,0],[1708367551000,0],[1708367552000,0],[1708367553000,0],[1708367554000,0],[1708367555000,0],[1708367556000,0],[1708367557000,0],[1708367558000,0],[1708367559000,0],[1708367560000,0],[1708367561000,0],[1708367562000,0],[1708367563000,0],[1708367564000,0],[1708367565000,0],[1708367566000,0],[1708367567000,0],[1708367568000,0],[1708367569000,0],[1708367570000,0],[1708367571000,0],[1708367572000,0],[1708367573000,0],[1708367574000,0],[1708367575000,0],[1708367576000,0],[1708367577000,0],[1708367578000,0],[1708367579000,0],[1708367580000,0],[1708367581000,0],[1708367582000,0],[1708367583000,0],[1708367584000,0],[1708367585000,0],[1708367586000,0],[1708367587000,0],[1708367588000,0],[1708367589000,0],[1708367590000,0],[1708367591000,0],[1708367592000,0],[1708367593000,0],[1708367594000,0],[1708367595000,0],[1708367596000,0],[1708367597000,0],[1708367598000,0],[1708367599000,0],[1708367600000,0],[1708367601000,0],[1708367602000,0],[1708367603000,0],[1708367604000,0],[1708367605000,0],[1708367606000,0],[1708367607000,0],[1708367608000,0],[1708367609000,0],[1708367610000,0],[1708367611000,0],[1708367612000,0],[1708367613000,0],[1708367614000,0],[1708367615000,0],[1708367616000,0],[1708367617000,0],[1708367618000,0],[1708367619000,0],[1708367620000,0],[1708367621000,0],[1708367622000,0],[1708367623000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FF00E1',
name: 'validação concorrência saldo - -25',
data: [
[1708367378000,1],[1708367379000,1],[1708367380000,0],[1708367381000,0],[1708367382000,0],[1708367383000,0],[1708367384000,0],[1708367385000,0],[1708367386000,0],[1708367387000,0],[1708367388000,0],[1708367389000,0],[1708367390000,0],[1708367391000,0],[1708367392000,0],[1708367393000,0],[1708367394000,0],[1708367395000,0],[1708367396000,0],[1708367397000,0],[1708367398000,0],[1708367399000,0],[1708367400000,0],[1708367401000,0],[1708367402000,0],[1708367403000,0],[1708367404000,0],[1708367405000,0],[1708367406000,0],[1708367407000,0],[1708367408000,0],[1708367409000,0],[1708367410000,0],[1708367411000,0],[1708367412000,0],[1708367413000,0],[1708367414000,0],[1708367415000,0],[1708367416000,0],[1708367417000,0],[1708367418000,0],[1708367419000,0],[1708367420000,0],[1708367421000,0],[1708367422000,0],[1708367423000,0],[1708367424000,0],[1708367425000,0],[1708367426000,0],[1708367427000,0],[1708367428000,0],[1708367429000,0],[1708367430000,0],[1708367431000,0],[1708367432000,0],[1708367433000,0],[1708367434000,0],[1708367435000,0],[1708367436000,0],[1708367437000,0],[1708367438000,0],[1708367439000,0],[1708367440000,0],[1708367441000,0],[1708367442000,0],[1708367443000,0],[1708367444000,0],[1708367445000,0],[1708367446000,0],[1708367447000,0],[1708367448000,0],[1708367449000,0],[1708367450000,0],[1708367451000,0],[1708367452000,0],[1708367453000,0],[1708367454000,0],[1708367455000,0],[1708367456000,0],[1708367457000,0],[1708367458000,0],[1708367459000,0],[1708367460000,0],[1708367461000,0],[1708367462000,0],[1708367463000,0],[1708367464000,0],[1708367465000,0],[1708367466000,0],[1708367467000,0],[1708367468000,0],[1708367469000,0],[1708367470000,0],[1708367471000,0],[1708367472000,0],[1708367473000,0],[1708367474000,0],[1708367475000,0],[1708367476000,0],[1708367477000,0],[1708367478000,0],[1708367479000,0],[1708367480000,0],[1708367481000,0],[1708367482000,0],[1708367483000,0],[1708367484000,0],[1708367485000,0],[1708367486000,0],[1708367487000,0],[1708367488000,0],[1708367489000,0],[1708367490000,0],[1708367491000,0],[1708367492000,0],[1708367493000,0],[1708367494000,0],[1708367495000,0],[1708367496000,0],[1708367497000,0],[1708367498000,0],[1708367499000,0],[1708367500000,0],[1708367501000,0],[1708367502000,0],[1708367503000,0],[1708367504000,0],[1708367505000,0],[1708367506000,0],[1708367507000,0],[1708367508000,0],[1708367509000,0],[1708367510000,0],[1708367511000,0],[1708367512000,0],[1708367513000,0],[1708367514000,0],[1708367515000,0],[1708367516000,0],[1708367517000,0],[1708367518000,0],[1708367519000,0],[1708367520000,0],[1708367521000,0],[1708367522000,0],[1708367523000,0],[1708367524000,0],[1708367525000,0],[1708367526000,0],[1708367527000,0],[1708367528000,0],[1708367529000,0],[1708367530000,0],[1708367531000,0],[1708367532000,0],[1708367533000,0],[1708367534000,0],[1708367535000,0],[1708367536000,0],[1708367537000,0],[1708367538000,0],[1708367539000,0],[1708367540000,0],[1708367541000,0],[1708367542000,0],[1708367543000,0],[1708367544000,0],[1708367545000,0],[1708367546000,0],[1708367547000,0],[1708367548000,0],[1708367549000,0],[1708367550000,0],[1708367551000,0],[1708367552000,0],[1708367553000,0],[1708367554000,0],[1708367555000,0],[1708367556000,0],[1708367557000,0],[1708367558000,0],[1708367559000,0],[1708367560000,0],[1708367561000,0],[1708367562000,0],[1708367563000,0],[1708367564000,0],[1708367565000,0],[1708367566000,0],[1708367567000,0],[1708367568000,0],[1708367569000,0],[1708367570000,0],[1708367571000,0],[1708367572000,0],[1708367573000,0],[1708367574000,0],[1708367575000,0],[1708367576000,0],[1708367577000,0],[1708367578000,0],[1708367579000,0],[1708367580000,0],[1708367581000,0],[1708367582000,0],[1708367583000,0],[1708367584000,0],[1708367585000,0],[1708367586000,0],[1708367587000,0],[1708367588000,0],[1708367589000,0],[1708367590000,0],[1708367591000,0],[1708367592000,0],[1708367593000,0],[1708367594000,0],[1708367595000,0],[1708367596000,0],[1708367597000,0],[1708367598000,0],[1708367599000,0],[1708367600000,0],[1708367601000,0],[1708367602000,0],[1708367603000,0],[1708367604000,0],[1708367605000,0],[1708367606000,0],[1708367607000,0],[1708367608000,0],[1708367609000,0],[1708367610000,0],[1708367611000,0],[1708367612000,0],[1708367613000,0],[1708367614000,0],[1708367615000,0],[1708367616000,0],[1708367617000,0],[1708367618000,0],[1708367619000,0],[1708367620000,0],[1708367621000,0],[1708367622000,0],[1708367623000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#AECAEB',
name: 'validação concorrência transações - d',
data: [
[1708367378000,25],[1708367379000,0],[1708367380000,0],[1708367381000,0],[1708367382000,0],[1708367383000,0],[1708367384000,0],[1708367385000,0],[1708367386000,0],[1708367387000,0],[1708367388000,0],[1708367389000,0],[1708367390000,0],[1708367391000,0],[1708367392000,0],[1708367393000,0],[1708367394000,0],[1708367395000,0],[1708367396000,0],[1708367397000,0],[1708367398000,0],[1708367399000,0],[1708367400000,0],[1708367401000,0],[1708367402000,0],[1708367403000,0],[1708367404000,0],[1708367405000,0],[1708367406000,0],[1708367407000,0],[1708367408000,0],[1708367409000,0],[1708367410000,0],[1708367411000,0],[1708367412000,0],[1708367413000,0],[1708367414000,0],[1708367415000,0],[1708367416000,0],[1708367417000,0],[1708367418000,0],[1708367419000,0],[1708367420000,0],[1708367421000,0],[1708367422000,0],[1708367423000,0],[1708367424000,0],[1708367425000,0],[1708367426000,0],[1708367427000,0],[1708367428000,0],[1708367429000,0],[1708367430000,0],[1708367431000,0],[1708367432000,0],[1708367433000,0],[1708367434000,0],[1708367435000,0],[1708367436000,0],[1708367437000,0],[1708367438000,0],[1708367439000,0],[1708367440000,0],[1708367441000,0],[1708367442000,0],[1708367443000,0],[1708367444000,0],[1708367445000,0],[1708367446000,0],[1708367447000,0],[1708367448000,0],[1708367449000,0],[1708367450000,0],[1708367451000,0],[1708367452000,0],[1708367453000,0],[1708367454000,0],[1708367455000,0],[1708367456000,0],[1708367457000,0],[1708367458000,0],[1708367459000,0],[1708367460000,0],[1708367461000,0],[1708367462000,0],[1708367463000,0],[1708367464000,0],[1708367465000,0],[1708367466000,0],[1708367467000,0],[1708367468000,0],[1708367469000,0],[1708367470000,0],[1708367471000,0],[1708367472000,0],[1708367473000,0],[1708367474000,0],[1708367475000,0],[1708367476000,0],[1708367477000,0],[1708367478000,0],[1708367479000,0],[1708367480000,0],[1708367481000,0],[1708367482000,0],[1708367483000,0],[1708367484000,0],[1708367485000,0],[1708367486000,0],[1708367487000,0],[1708367488000,0],[1708367489000,0],[1708367490000,0],[1708367491000,0],[1708367492000,0],[1708367493000,0],[1708367494000,0],[1708367495000,0],[1708367496000,0],[1708367497000,0],[1708367498000,0],[1708367499000,0],[1708367500000,0],[1708367501000,0],[1708367502000,0],[1708367503000,0],[1708367504000,0],[1708367505000,0],[1708367506000,0],[1708367507000,0],[1708367508000,0],[1708367509000,0],[1708367510000,0],[1708367511000,0],[1708367512000,0],[1708367513000,0],[1708367514000,0],[1708367515000,0],[1708367516000,0],[1708367517000,0],[1708367518000,0],[1708367519000,0],[1708367520000,0],[1708367521000,0],[1708367522000,0],[1708367523000,0],[1708367524000,0],[1708367525000,0],[1708367526000,0],[1708367527000,0],[1708367528000,0],[1708367529000,0],[1708367530000,0],[1708367531000,0],[1708367532000,0],[1708367533000,0],[1708367534000,0],[1708367535000,0],[1708367536000,0],[1708367537000,0],[1708367538000,0],[1708367539000,0],[1708367540000,0],[1708367541000,0],[1708367542000,0],[1708367543000,0],[1708367544000,0],[1708367545000,0],[1708367546000,0],[1708367547000,0],[1708367548000,0],[1708367549000,0],[1708367550000,0],[1708367551000,0],[1708367552000,0],[1708367553000,0],[1708367554000,0],[1708367555000,0],[1708367556000,0],[1708367557000,0],[1708367558000,0],[1708367559000,0],[1708367560000,0],[1708367561000,0],[1708367562000,0],[1708367563000,0],[1708367564000,0],[1708367565000,0],[1708367566000,0],[1708367567000,0],[1708367568000,0],[1708367569000,0],[1708367570000,0],[1708367571000,0],[1708367572000,0],[1708367573000,0],[1708367574000,0],[1708367575000,0],[1708367576000,0],[1708367577000,0],[1708367578000,0],[1708367579000,0],[1708367580000,0],[1708367581000,0],[1708367582000,0],[1708367583000,0],[1708367584000,0],[1708367585000,0],[1708367586000,0],[1708367587000,0],[1708367588000,0],[1708367589000,0],[1708367590000,0],[1708367591000,0],[1708367592000,0],[1708367593000,0],[1708367594000,0],[1708367595000,0],[1708367596000,0],[1708367597000,0],[1708367598000,0],[1708367599000,0],[1708367600000,0],[1708367601000,0],[1708367602000,0],[1708367603000,0],[1708367604000,0],[1708367605000,0],[1708367606000,0],[1708367607000,0],[1708367608000,0],[1708367609000,0],[1708367610000,0],[1708367611000,0],[1708367612000,0],[1708367613000,0],[1708367614000,0],[1708367615000,0],[1708367616000,0],[1708367617000,0],[1708367618000,0],[1708367619000,0],[1708367620000,0],[1708367621000,0],[1708367622000,0],[1708367623000,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: ['38', '113', '189', '264', '340', '415', '490', '566', '641', '717', '792', '868', '943', '1019', '1094', '1170', '1245', '1321', '1396', '1471', '1547', '1622', '1698', '1773', '1849', '1924', '2000', '2075', '2151', '2226', '2302', '2377', '2452', '2528', '2603', '2679', '2754', '2830', '2905', '2981', '3056', '3132', '3207', '3283', '3358', '3433', '3509', '3584', '3660', '3735', '3811', '3886', '3962', '4037', '4113', '4188', '4263', '4339', '4414', '4490', '4565', '4641', '4716', '4792', '4867', '4943', '5018', '5094', '5169', '5244', '5320', '5395', '5471', '5546', '5622', '5697', '5773', '5848', '5924', '5999', '6075', '6150', '6225', '6301', '6376', '6452', '6527', '6603', '6678', '6754', '6829', '6905', '6980', '7056', '7131', '7206', '7282', '7357', '7433', '7508', '7584'],
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: [
86.93,4.08,1.49,0.76,0.61,0.4,0.25,0.19,0.16,0.19,0.11,0.09,0.11,0.07,0.1,0.1,0.05,0.06,0.03,0.03,0.08,0.05,0.05,0.04,0.06,0.06,0.04,0.05,0.12,0.1,0.1,0.06,0.07,0.1,0.08,0.08,0.07,0.07,0.02,0.03,0.05,0.04,0.06,0.03,0.05,0.04,0.02,0.02,0.01,0.01,0.02,0.04,0.04,0.06,0.04,0.05,0.04,0.03,0.01,0.01,0.01,0.0,0.0,0.01,0.03,0.01,0.01,0.02,0.01,0.01,0.01,0.01,0.03,0.02,0.02,0.0,0.01,0.0,0.01,0.03,0.02,0.0,0.01,0.0,0.0,0.0,0.01,0.0,0.0,0.0,0.0,0.01,0.0,0.0,0.0,0.0,0.01,0.01,0.0,0.0,0.0
],
tooltip: { yDecimals: 0, ySuffix: 'ms' }
},
{
type: 'column',
color: '#f15b4f',
name: 'KO',
data: [
1.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
],
tooltip: { yDecimals: 0, ySuffix: 'ms' }
}
]
});
responsetimeDistributionChart.setTitle({
text: '<span class="chart_title">Response Time Distribution</span>',
useHTML: true
});
var responsetimepercentilesovertimeokPercentiles = unpack([[1708367378,null],[1708367379,null],[1708367380,[146,563,652,692,700,707,715,730,736,738]],[1708367381,null],[1708367382,[6,17,47,90,94,109,139,167,210,235]],[1708367383,[6,6,8,11,11,32,59,61,61,62]],[1708367384,[7,9,11,13,14,18,23,27,31,32]],[1708367385,[4,7,8,11,11,11,12,13,13,14]],[1708367386,[5,6,8,10,11,12,14,15,15,16]],[1708367387,[6,6,7,8,11,14,18,19,19,20]],[1708367388,[4,6,7,7,7,8,8,10,11,12]],[1708367389,[5,6,7,7,7,7,8,9,10,11]],[1708367390,[4,6,6,7,7,7,8,8,8,9]],[1708367391,[4,6,7,8,8,8,10,23,28,29]],[1708367392,[5,6,7,7,7,7,7,9,12,14]],[1708367393,[4,6,7,8,9,9,9,11,14,16]],[1708367394,[4,6,7,7,7,8,9,9,10,11]],[1708367395,[4,6,6,8,8,9,9,9,9,10]],[1708367396,[5,6,6,7,7,7,8,9,9,10]],[1708367397,[4,6,7,7,8,8,8,10,20,28]],[1708367398,[3,6,6,7,7,7,8,8,10,11]],[1708367399,[3,6,6,6,6,7,7,7,12,13]],[1708367400,[4,6,6,7,7,7,7,8,23,37]],[1708367401,[3,6,6,7,8,8,9,10,13,16]],[1708367402,[2,6,6,7,7,7,8,9,19,23]],[1708367403,[3,6,6,7,7,7,9,10,13,14]],[1708367404,[3,6,6,7,7,8,8,9,10,10]],[1708367405,[3,6,6,7,8,8,8,9,11,15]],[1708367406,[2,6,6,7,7,8,8,10,13,15]],[1708367407,[2,6,6,7,8,8,8,9,10,13]],[1708367408,[3,5,6,7,7,8,8,10,10,13]],[1708367409,[3,5,6,7,8,8,9,10,12,13]],[1708367410,[3,5,6,6,7,7,8,9,10,11]],[1708367411,[3,5,6,7,7,7,8,10,14,16]],[1708367412,[3,5,5,6,7,7,7,8,9,10]],[1708367413,[3,5,6,6,7,7,8,9,11,11]],[1708367414,[3,5,6,6,7,7,8,8,16,16]],[1708367415,[3,6,6,7,7,7,8,8,9,14]],[1708367416,[4,6,6,7,7,7,8,9,10,11]],[1708367417,[2,6,6,7,7,8,8,10,29,29]],[1708367418,[3,6,6,7,7,8,8,9,9,10]],[1708367419,[3,5,6,7,7,8,8,9,16,18]],[1708367420,[2,5,6,7,7,8,8,9,10,13]],[1708367421,[3,5,6,7,8,8,9,10,12,13]],[1708367422,[3,5,6,7,7,8,8,9,11,19]],[1708367423,[2,5,6,7,8,8,9,10,12,14]],[1708367424,[3,5,5,6,6,6,7,8,10,10]],[1708367425,[3,5,6,6,7,8,9,12,34,45]],[1708367426,[3,5,6,7,7,7,7,8,9,11]],[1708367427,[2,5,6,7,8,9,11,18,32,36]],[1708367428,[2,5,6,6,7,7,8,9,10,13]],[1708367429,[2,5,5,7,7,7,8,8,10,11]],[1708367430,[3,5,6,8,8,9,11,43,84,93]],[1708367431,[3,5,6,7,7,8,8,9,11,12]],[1708367432,[3,5,6,7,7,8,9,11,23,31]],[1708367433,[3,5,5,7,7,7,8,8,10,13]],[1708367434,[3,5,5,6,7,7,8,10,14,16]],[1708367435,[3,5,6,6,6,6,7,8,10,11]],[1708367436,[3,5,5,6,6,7,7,8,10,12]],[1708367437,[3,5,5,6,7,7,8,12,20,27]],[1708367438,[3,5,5,6,6,7,8,9,15,18]],[1708367439,[3,5,5,7,7,7,8,8,10,11]],[1708367440,[3,5,6,7,7,8,8,10,13,17]],[1708367441,[3,5,6,7,7,8,9,12,19,27]],[1708367442,[3,5,6,7,8,8,9,12,26,31]],[1708367443,[3,5,6,6,7,7,8,9,13,20]],[1708367444,[2,5,6,6,7,7,7,8,9,11]],[1708367445,[3,5,6,6,6,7,7,8,13,15]],[1708367446,[2,5,5,6,7,7,8,9,11,12]],[1708367447,[2,5,5,6,6,6,6,8,12,15]],[1708367448,[2,5,5,6,6,7,7,8,12,19]],[1708367449,[3,5,5,6,6,6,7,7,9,13]],[1708367450,[3,5,5,6,6,7,7,8,13,14]],[1708367451,[3,5,5,6,7,7,8,10,14,17]],[1708367452,[2,5,5,7,7,7,8,9,13,20]],[1708367453,[3,4,5,6,6,7,7,9,31,37]],[1708367454,[3,4,5,6,6,6,7,8,12,14]],[1708367455,[2,4,5,6,6,6,7,10,16,18]],[1708367456,[3,4,5,6,6,7,7,9,15,35]],[1708367457,[3,4,5,5,6,6,6,7,9,11]],[1708367458,[3,5,5,6,6,6,7,8,11,12]],[1708367459,[3,5,5,6,6,6,7,8,10,13]],[1708367460,[3,4,5,6,6,7,8,9,21,26]],[1708367461,[3,5,5,7,7,7,8,9,13,20]],[1708367462,[3,4,5,6,6,7,7,8,9,12]],[1708367463,[3,4,5,6,6,6,7,10,31,37]],[1708367464,[3,5,5,6,6,7,8,10,14,16]],[1708367465,[3,4,5,6,7,7,8,9,14,17]],[1708367466,[3,4,5,6,6,6,7,8,12,34]],[1708367467,[2,4,5,5,6,6,7,9,15,35]],[1708367468,[2,4,5,5,6,6,6,8,12,18]],[1708367469,[2,5,5,6,6,6,7,7,9,13]],[1708367470,[2,4,5,6,6,6,7,8,11,15]],[1708367471,[2,5,5,6,7,7,7,9,11,14]],[1708367472,[2,5,5,6,6,7,7,8,11,16]],[1708367473,[2,5,5,7,8,9,13,20,38,45]],[1708367474,[2,5,5,7,7,8,8,10,16,37]],[1708367475,[2,5,5,6,6,7,8,13,24,32]],[1708367476,[2,5,5,6,6,7,7,8,11,15]],[1708367477,[2,5,5,6,6,7,7,9,15,19]],[1708367478,[2,4,5,6,7,8,9,15,34,39]],[1708367479,[3,5,5,6,6,6,7,9,13,21]],[1708367480,[3,5,5,6,7,7,9,11,19,22]],[1708367481,[3,4,5,6,6,7,7,9,15,17]],[1708367482,[3,5,5,6,7,9,12,17,47,58]],[1708367483,[3,4,5,7,7,8,10,14,34,40]],[1708367484,[3,4,5,6,6,7,7,8,12,14]],[1708367485,[3,4,5,6,6,6,7,8,10,13]],[1708367486,[2,4,5,6,6,7,7,8,11,16]],[1708367487,[2,4,5,6,7,7,8,10,17,20]],[1708367488,[2,5,5,7,8,9,15,61,149,344]],[1708367489,[4,7,28,149,231,481,702,779,856,875]],[1708367490,[4,6,7,15,18,27,43,57,76,592]],[1708367491,[3,5,6,7,7,8,10,12,15,19]],[1708367492,[3,5,6,7,7,7,8,9,11,16]],[1708367493,[2,5,7,10,12,18,31,56,133,186]],[1708367494,[3,6,8,19,30,47,79,151,220,237]],[1708367495,[2,4,5,6,6,7,7,9,10,17]],[1708367496,[5,6,7,8,9,9,10,11,13,17]],[1708367497,[3,5,5,7,7,8,9,12,15,19]],[1708367498,[3,9,32,133,186,543,773,1611,3084,3206]],[1708367499,[3,8,20,94,139,253,702,2647,3211,3415]],[1708367500,[4,10,22,81,136,250,350,2285,2789,2934]],[1708367501,[4,8,29,93,138,1925,2284,2448,2632,2782]],[1708367502,[4,11,20,45,52,61,84,3221,3414,3493]],[1708367503,[3,7,16,49,64,89,3366,3977,4125,4230]],[1708367504,[4,17,39,120,163,237,3817,3940,4053,4115]],[1708367505,[4,8,17,43,52,63,241,409,3418,3490]],[1708367506,[3,10,20,54,67,85,135,251,1823,2131]],[1708367507,[4,10,21,45,58,67,94,2753,4105,4151]],[1708367508,[4,11,29,83,177,4068,4166,4226,4352,4514]],[1708367509,[4,11,29,63,91,166,265,358,3384,3666]],[1708367510,[4,18,44,92,121,257,479,2742,3183,3368]],[1708367511,[5,23,51,96,140,276,4852,5254,5538,5607]],[1708367512,[4,12,32,146,1405,6825,6947,7288,7473,7546]],[1708367513,[4,15,59,199,339,423,598,742,6533,7211]],[1708367514,[4,22,52,91,118,169,337,727,5637,6083]],[1708367515,[5,40,76,190,368,600,5109,5612,6035,6132]],[1708367516,[3,11,34,64,82,161,5827,6012,6599,6733]],[1708367517,[4,29,58,105,142,194,348,5633,6274,6525]],[1708367518,[4,23,50,96,128,157,191,5163,5889,6043]],[1708367519,[7,20,42,72,82,100,148,255,4280,4571]],[1708367520,[3,7,12,32,42,51,62,75,158,3553]],[1708367521,[4,8,14,37,43,48,55,85,2774,2831]],[1708367522,[3,7,17,65,95,230,2135,2477,3662,3907]],[1708367523,[3,10,24,62,87,170,294,3089,3584,3653]],[1708367524,[3,6,8,25,30,38,47,57,3046,3213]],[1708367525,[4,10,25,76,150,313,443,654,3209,3487]],[1708367526,[3,6,14,41,51,69,105,224,2326,2723]],[1708367527,[3,9,16,46,60,77,134,276,728,1622]],[1708367528,[3,7,19,46,58,79,158,611,878,953]],[1708367529,[4,11,22,46,55,71,120,1013,2121,2229]],[1708367530,[3,8,27,104,144,219,272,1151,1786,1950]],[1708367531,[4,9,27,149,221,296,1466,1918,2245,2952]],[1708367532,[3,7,13,44,52,62,87,218,3035,3150]],[1708367533,[5,11,24,51,60,67,83,2645,2976,3121]],[1708367534,[3,10,34,119,189,325,2173,2296,2424,2466]],[1708367535,[4,17,43,84,105,190,1878,2629,2798,3057]],[1708367536,[4,7,15,53,66,2485,2561,2762,2967,3020]],[1708367537,[4,16,43,154,209,341,694,2185,2368,2406]],[1708367538,[4,8,25,55,64,90,2127,3158,3322,3333]],[1708367539,[4,6,8,25,29,37,43,56,104,127]],[1708367540,[4,7,18,62,119,210,361,440,1084,1213]],[1708367541,[3,6,11,28,34,39,47,135,1176,1474]],[1708367542,[3,5,7,18,21,27,34,40,113,648]],[1708367543,[3,5,9,53,84,114,208,389,528,677]],[1708367544,[3,6,9,29,35,45,59,226,331,334]],[1708367545,[3,4,6,11,17,30,64,101,194,207]],[1708367546,[3,5,8,17,25,35,64,116,159,208]],[1708367547,[3,5,7,21,34,55,102,216,319,358]],[1708367548,[3,5,6,8,9,9,10,14,20,28]],[1708367549,[4,5,6,7,7,8,9,12,21,31]],[1708367550,[3,5,6,9,10,17,53,143,219,464]],[1708367551,[3,9,32,116,332,589,697,853,1491,1638]],[1708367552,[3,7,14,37,42,53,80,510,1069,1158]],[1708367553,[3,6,8,18,22,27,36,47,62,318]],[1708367554,[4,7,18,76,112,144,352,745,1192,1428]],[1708367555,[4,7,16,46,54,59,95,171,567,1032]],[1708367556,[4,9,23,62,111,168,228,362,815,1498]],[1708367557,[4,8,20,56,64,93,299,704,1203,1367]],[1708367558,[3,7,13,32,38,44,51,70,370,608]],[1708367559,[3,6,8,10,10,11,12,14,19,25]],[1708367560,[3,6,8,9,10,12,17,57,82,661]],[1708367561,[3,10,25,65,97,156,368,1039,1135,1242]],[1708367562,[3,8,14,40,46,56,160,713,936,1029]],[1708367563,[4,9,16,39,44,59,99,259,590,852]],[1708367564,[4,10,32,99,194,364,832,1002,1123,1139]],[1708367565,[3,9,15,36,43,53,62,108,839,2037]],[1708367566,[4,13,44,132,186,359,527,1126,1573,1719]],[1708367567,[4,11,31,71,103,331,1560,1724,1844,1911]],[1708367568,[4,9,19,38,46,56,73,235,1091,1429]],[1708367569,[3,6,11,35,42,60,485,2278,2815,2850]],[1708367570,[4,12,38,119,183,448,543,609,1970,2134]],[1708367571,[3,9,25,73,106,262,1929,3056,3162,3232]],[1708367572,[3,11,23,43,50,62,73,2175,2531,2611]],[1708367573,[4,20,85,542,2159,2391,2668,4123,4828,5446]],[1708367574,[4,11,24,62,68,84,235,4849,5755,5974]],[1708367575,[3,7,17,40,48,56,83,4956,5542,5547]],[1708367576,[4,21,49,154,247,405,4255,4374,4571,4757]],[1708367577,[4,7,21,48,54,64,88,152,3498,4111]],[1708367578,[5,15,31,57,62,73,95,228,3719,3816]],[1708367579,[4,10,38,100,149,227,2210,3907,4329,4499]],[1708367580,[5,11,25,48,54,61,73,112,3774,3864]],[1708367581,[4,8,23,62,85,121,282,426,2611,2750]],[1708367582,[4,11,35,108,182,382,2536,3253,4000,4068]],[1708367583,[4,8,37,80,109,194,442,669,3465,3616]],[1708367584,[4,7,15,39,46,54,59,117,163,2739]],[1708367585,[3,10,31,109,140,213,304,1830,2224,2237]],[1708367586,[4,10,21,55,67,84,248,1367,2591,2697]],[1708367587,[3,7,10,39,52,73,158,2640,2849,3014]],[1708367588,[4,9,21,64,90,147,259,431,1511,2066]],[1708367589,[3,7,13,38,44,59,115,1384,1916,1964]],[1708367590,[4,10,21,57,71,115,729,914,1252,1715]],[1708367591,[3,8,15,36,45,62,124,1650,1875,2114]],[1708367592,[4,9,25,53,74,111,262,2141,2327,2336]],[1708367593,[4,9,21,47,52,60,89,153,2130,2141]],[1708367594,[4,8,19,48,63,110,213,772,1203,1226]],[1708367595,[3,8,17,60,95,210,1009,1176,1231,1285]],[1708367596,[3,6,11,28,36,46,61,805,2049,2167]],[1708367597,[3,8,23,81,118,186,237,299,1376,1518]],[1708367598,[3,7,16,59,114,167,1024,1223,1396,1415]],[1708367599,[3,7,11,33,37,46,57,125,821,986]],[1708367600,[3,5,7,16,22,29,37,46,72,107]],[1708367601,[3,8,17,50,75,118,151,270,596,927]],[1708367602,[3,7,18,57,82,98,137,225,534,1072]],[1708367603,[3,6,10,28,35,44,60,81,151,252]],[1708367604,[4,7,15,42,54,80,134,189,375,564]],[1708367605,[3,5,7,9,10,11,12,19,34,114]],[1708367606,[3,4,5,6,6,7,8,11,15,20]],[1708367607,[3,6,8,30,46,64,102,167,435,508]],[1708367608,[4,8,18,52,63,95,197,452,830,1035]],[1708367609,[4,7,11,29,33,37,45,58,427,442]],[1708367610,[3,5,6,12,14,18,29,42,91,114]],[1708367611,[4,6,8,11,11,13,17,26,55,70]],[1708367612,[3,5,6,7,9,10,16,32,58,68]],[1708367613,[3,5,7,9,10,11,12,14,21,26]],[1708367614,[3,4,5,6,7,7,8,9,16,17]],[1708367615,[3,5,6,9,10,12,22,45,87,155]],[1708367616,[3,5,6,14,17,25,34,54,76,111]],[1708367617,[3,5,6,9,10,12,16,63,86,97]],[1708367618,[4,5,7,15,21,29,42,66,238,335]],[1708367619,[3,6,8,14,19,40,62,108,182,776]],[1708367620,[4,7,17,61,74,134,257,349,504,520]],[1708367621,[4,7,8,11,12,15,21,34,71,156]],[1708367622,[3,5,5,7,8,9,10,11,13,16]],[1708367623,[6,10,17,55,77,93,126,208,305,359]]]);
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([[1708367378,[25,0,25]],[1708367379,[1,0,1]],[1708367380,[25,18,7]],[1708367381,[1,0,1]],[1708367382,[56,50,6]],[1708367383,[18,18,0]],[1708367384,[6,6,0]],[1708367385,[9,9,0]],[1708367386,[11,11,0]],[1708367387,[13,13,0]],[1708367388,[18,18,0]],[1708367389,[19,19,0]],[1708367390,[24,24,0]],[1708367391,[26,26,0]],[1708367392,[27,27,0]],[1708367393,[32,32,0]],[1708367394,[34,34,0]],[1708367395,[37,37,0]],[1708367396,[39,39,0]],[1708367397,[43,43,0]],[1708367398,[44,44,0]],[1708367399,[48,48,0]],[1708367400,[51,51,0]],[1708367401,[54,54,0]],[1708367402,[56,56,0]],[1708367403,[60,60,0]],[1708367404,[61,61,0]],[1708367405,[65,65,0]],[1708367406,[67,67,0]],[1708367407,[70,70,0]],[1708367408,[74,74,0]],[1708367409,[76,76,0]],[1708367410,[80,80,0]],[1708367411,[81,81,0]],[1708367412,[84,84,0]],[1708367413,[87,87,0]],[1708367414,[91,91,0]],[1708367415,[93,93,0]],[1708367416,[96,96,0]],[1708367417,[98,98,0]],[1708367418,[102,102,0]],[1708367419,[104,104,0]],[1708367420,[107,107,0]],[1708367421,[109,109,0]],[1708367422,[114,114,0]],[1708367423,[115,115,0]],[1708367424,[118,118,0]],[1708367425,[121,121,0]],[1708367426,[124,124,0]],[1708367427,[126,126,0]],[1708367428,[129,129,0]],[1708367429,[133,133,0]],[1708367430,[134,134,0]],[1708367431,[139,139,0]],[1708367432,[140,140,0]],[1708367433,[144,144,0]],[1708367434,[146,146,0]],[1708367435,[149,149,0]],[1708367436,[151,151,0]],[1708367437,[155,155,0]],[1708367438,[157,157,0]],[1708367439,[160,160,0]],[1708367440,[164,164,0]],[1708367441,[165,165,0]],[1708367442,[170,170,0]],[1708367443,[172,172,0]],[1708367444,[174,174,0]],[1708367445,[176,176,0]],[1708367446,[181,181,0]],[1708367447,[183,183,0]],[1708367448,[186,186,0]],[1708367449,[188,188,0]],[1708367450,[192,192,0]],[1708367451,[194,194,0]],[1708367452,[197,197,0]],[1708367453,[198,198,0]],[1708367454,[204,204,0]],[1708367455,[204,204,0]],[1708367456,[208,208,0]],[1708367457,[211,211,0]],[1708367458,[213,213,0]],[1708367459,[217,217,0]],[1708367460,[220,220,0]],[1708367461,[222,222,0]],[1708367462,[224,224,0]],[1708367463,[228,228,0]],[1708367464,[230,230,0]],[1708367465,[234,234,0]],[1708367466,[235,235,0]],[1708367467,[240,240,0]],[1708367468,[242,242,0]],[1708367469,[244,244,0]],[1708367470,[248,248,0]],[1708367471,[250,250,0]],[1708367472,[253,253,0]],[1708367473,[255,255,0]],[1708367474,[259,259,0]],[1708367475,[262,262,0]],[1708367476,[265,265,0]],[1708367477,[266,266,0]],[1708367478,[270,270,0]],[1708367479,[273,273,0]],[1708367480,[275,275,0]],[1708367481,[279,279,0]],[1708367482,[281,281,0]],[1708367483,[284,284,0]],[1708367484,[286,286,0]],[1708367485,[290,290,0]],[1708367486,[292,292,0]],[1708367487,[295,295,0]],[1708367488,[298,298,0]],[1708367489,[301,301,0]],[1708367490,[303,303,0]],[1708367491,[306,306,0]],[1708367492,[309,309,0]],[1708367493,[313,313,0]],[1708367494,[314,314,0]],[1708367495,[318,318,0]],[1708367496,[320,320,0]],[1708367497,[323,323,0]],[1708367498,[326,326,0]],[1708367499,[330,330,0]],[1708367500,[332,332,0]],[1708367501,[334,334,0]],[1708367502,[337,337,0]],[1708367503,[340,340,0]],[1708367504,[340,339,1]],[1708367505,[340,338,2]],[1708367506,[340,340,0]],[1708367507,[340,340,0]],[1708367508,[340,340,0]],[1708367509,[340,340,0]],[1708367510,[340,340,0]],[1708367511,[340,340,0]],[1708367512,[340,340,0]],[1708367513,[340,240,100]],[1708367514,[340,287,53]],[1708367515,[340,337,3]],[1708367516,[340,324,16]],[1708367517,[340,340,0]],[1708367518,[340,311,29]],[1708367519,[340,276,64]],[1708367520,[340,289,51]],[1708367521,[340,340,0]],[1708367522,[340,340,0]],[1708367523,[340,301,39]],[1708367524,[340,340,0]],[1708367525,[340,340,0]],[1708367526,[340,340,0]],[1708367527,[340,340,0]],[1708367528,[340,340,0]],[1708367529,[340,340,0]],[1708367530,[340,340,0]],[1708367531,[340,340,0]],[1708367532,[340,340,0]],[1708367533,[340,340,0]],[1708367534,[340,340,0]],[1708367535,[340,340,0]],[1708367536,[340,340,0]],[1708367537,[340,340,0]],[1708367538,[340,339,1]],[1708367539,[340,216,124]],[1708367540,[340,340,0]],[1708367541,[340,340,0]],[1708367542,[340,340,0]],[1708367543,[340,340,0]],[1708367544,[340,340,0]],[1708367545,[340,340,0]],[1708367546,[340,340,0]],[1708367547,[340,340,0]],[1708367548,[340,340,0]],[1708367549,[340,340,0]],[1708367550,[340,340,0]],[1708367551,[340,340,0]],[1708367552,[340,340,0]],[1708367553,[340,340,0]],[1708367554,[340,340,0]],[1708367555,[340,340,0]],[1708367556,[340,340,0]],[1708367557,[340,340,0]],[1708367558,[340,340,0]],[1708367559,[340,340,0]],[1708367560,[340,340,0]],[1708367561,[340,340,0]],[1708367562,[340,340,0]],[1708367563,[340,340,0]],[1708367564,[340,340,0]],[1708367565,[340,340,0]],[1708367566,[340,340,0]],[1708367567,[340,340,0]],[1708367568,[340,340,0]],[1708367569,[340,340,0]],[1708367570,[340,340,0]],[1708367571,[340,340,0]],[1708367572,[340,340,0]],[1708367573,[340,340,0]],[1708367574,[340,265,75]],[1708367575,[340,340,0]],[1708367576,[340,340,0]],[1708367577,[340,340,0]],[1708367578,[340,340,0]],[1708367579,[340,340,0]],[1708367580,[340,208,132]],[1708367581,[340,333,7]],[1708367582,[340,340,0]],[1708367583,[340,248,92]],[1708367584,[340,340,0]],[1708367585,[340,340,0]],[1708367586,[340,340,0]],[1708367587,[340,340,0]],[1708367588,[340,340,0]],[1708367589,[340,340,0]],[1708367590,[340,340,0]],[1708367591,[340,340,0]],[1708367592,[340,340,0]],[1708367593,[340,340,0]],[1708367594,[340,340,0]],[1708367595,[340,340,0]],[1708367596,[340,340,0]],[1708367597,[340,340,0]],[1708367598,[340,340,0]],[1708367599,[340,340,0]],[1708367600,[340,340,0]],[1708367601,[340,340,0]],[1708367602,[340,340,0]],[1708367603,[340,340,0]],[1708367604,[340,340,0]],[1708367605,[340,340,0]],[1708367606,[340,340,0]],[1708367607,[340,340,0]],[1708367608,[340,340,0]],[1708367609,[340,340,0]],[1708367610,[340,340,0]],[1708367611,[340,340,0]],[1708367612,[340,340,0]],[1708367613,[340,340,0]],[1708367614,[340,340,0]],[1708367615,[340,340,0]],[1708367616,[340,340,0]],[1708367617,[340,340,0]],[1708367618,[340,340,0]],[1708367619,[340,340,0]],[1708367620,[340,340,0]],[1708367621,[340,340,0]],[1708367622,[340,340,0]],[1708367623,[163,163,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: {