-
Notifications
You must be signed in to change notification settings - Fork 923
/
Copy pathindex.html
1230 lines (1160 loc) · 97.1 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="shortcut icon" type="image/x-icon" href="style/favicon.ico"/>
<link href="style/style.css" rel="stylesheet" type="text/css" />
<link href="style/bootstrap.min.css" rel="stylesheet" type="text/css" />
<script src="js/jquery-3.5.1.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/gatling.js"></script>
<script src="js/menu.js"></script>
<script src="js/ellipsis.js"></script>
<script src="js/all_sessions.js"></script>
<script src="js/stats.js"></script>
<script src="js/highstock.js"></script>
<script src="js/highcharts-more.js"></script>
<script src="js/theme.js"></script>
<script src="js/unpack.js"></script>
<title>Gatling Stats - Global Information</title>
</head>
<body>
<script>
const storedTheme = localStorage.getItem('theme') || (window.matchMedia("(prefers-color-scheme: dark)").matches ? "dark" : "light");
if (storedTheme) document.documentElement.setAttribute('data-theme', storedTheme)
function toggleTheme() {
const currentTheme = document.documentElement.getAttribute("data-theme");
const targetTheme = currentTheme === "light" ? "dark" : "light";
document.documentElement.setAttribute('data-theme', targetTheme)
localStorage.setItem('theme', targetTheme);
};
</script>
<div class="app-container">
<div class="frise"></div>
<div class="head">
<div class="gatling-open-source">
<a class="gatling-logo gatling-logo-light" href="https://gatling.io" target="blank_" title="Gatling Home Page"><img alt="Gatling" src="style/logo-light.svg"/></a>
<a class="gatling-logo gatling-logo-dark" href="https://gatling.io" target="blank_" title="Gatling Home Page"><img alt="Gatling" src="style/logo-dark.svg"/></a>
<a class="gatling-documentation" href="https://gatling.io/docs/" target="_blank">Documentation</a>
</div>
<div class="nav spacer"></div>
<a class="enterprise" href="https://gatling.io/enterprise/next-step/" target="_blank"><strong>Try</strong>
<img class="logo-enterprise-light" alt="Gatling Enterprise" src="style/logo-enterprise-light.svg"/>
<img class="logo-enterprise-dark" alt="Gatling Enterprise" src="style/logo-enterprise-dark.svg"/>
</a>
<button id="theme-toggle" class="theme-toggle" type="button" onclick="toggleTheme()" aria-label="Toggle user interface mode">
<span class="toggle-dark"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-moon"><path d="M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z"></path></svg></span>
<span class="toggle-light"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-sun"><circle cx="12" cy="12" r="5"></circle><line x1="12" y1="1" x2="12" y2="3"></line><line x1="12" y1="21" x2="12" y2="23"></line><line x1="4.22" y1="4.22" x2="5.64" y2="5.64"></line><line x1="18.36" y1="18.36" x2="19.78" y2="19.78"></line><line x1="1" y1="12" x2="3" y2="12"></line><line x1="21" y1="12" x2="23" y2="12"></line><line x1="4.22" y1="19.78" x2="5.64" y2="18.36"></line><line x1="18.36" y1="5.64" x2="19.78" y2="4.22"></line></svg></span>
</button>
</div>
<div class="container details">
<div class="nav">
<ul></ul>
</div>
<div class="cadre">
<div class="content">
<div class="content-header">
<div class="onglet">
RinhaBackendCrebitosSimulation
</div>
<div class="sous-menu" id="sousMenu">
<div class="sous-menu-spacer">
<div class="item ouvert"><a href="index.html">Global</a></div>
<div class="item "><a id="details_link" href="#">Details</a></div>
</div>
</div>
</div>
<div class="content-in">
<div class="container-article">
<div class="article">
<div class="schema-container">
<div id="ranges" class="schema ranges">
</div>
<div class="schema polar">
<div id="container_number_of_requests"></div>
</div>
<div class="simulation-card">
<div class="simulation-version-information">
<span class="simulation-information-title">Gatling Version</span>
<span class="simulation-information-item">
<span class="simulation-information-label">Version: </span>
<span>3.10.3</span>
</span>
<span class="simulation-information-item">
<span class="simulation-information-label">Released: </span>
<span>2023-12-20</span>
</span>
</div>
<div id="simulation-information" class="simulation-version-information">
<span class="simulation-information-title">Run Information</span>
<div class="simulation-information-container">
<span class="simulation-information-item">
<span class="simulation-information-label">Date: </span>
<span>2024-03-04 23:10:26 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 - dridev_java">
<span class="simulation-information-label">Description: </span>
<span>Rinha de Backend - 2024/Q1: Crébito - dridev_java</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.n.ConnectException: finishConnect(..) failed: Connection refused<span class="value" style="display:none">0</span></td>
<td class="value error-col-2 total ko">7555</td>
<td class="value error-col-3 total ko">90.904 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">j.i.IOException: Premature close<span class="value" style="display:none">1</span></td>
<td class="value error-col-2 total ko">674</td>
<td class="value error-col-3 total ko">8.11 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">status.find.in(200,422), but actually found 502<span class="value" style="display:none">2</span></td>
<td class="value error-col-2 total ko">40</td>
<td class="value error-col-3 total ko">0.481 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">status.find.in(200), but actually found 502<span class="value" style="display:none">3</span></td>
<td class="value error-col-2 total ko">23</td>
<td class="value error-col-3 total ko">0.277 %</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">7</td>
<td class="value error-col-3 total ko">0.084 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">status.find.in(422,400), but actually found 200<span class="value" style="display:none">5</span></td>
<td class="value error-col-2 total ko">5</td>
<td class="value error-col-3 total ko">0.06 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">status.find.in(422,400), but actually found 502<span class="value" style="display:none">6</span></td>
<td class="value error-col-2 total ko">5</td>
<td class="value error-col-3 total ko">0.06 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">jmesPath(saldo.total).find.is(0), but actually found -3<span class="value" style="display:none">7</span></td>
<td class="value error-col-2 total ko">2</td>
<td class="value error-col-3 total ko">0.024 %</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: 'débitos',
data: [
[1709593827000,0],[1709593828000,0],[1709593829000,0],[1709593830000,0],[1709593831000,0],[1709593832000,1],[1709593833000,2],[1709593834000,4],[1709593835000,6],[1709593836000,7],[1709593837000,9],[1709593838000,11],[1709593839000,13],[1709593840000,15],[1709593841000,16],[1709593842000,19],[1709593843000,20],[1709593844000,22],[1709593845000,24],[1709593846000,25],[1709593847000,28],[1709593848000,29],[1709593849000,31],[1709593850000,33],[1709593851000,35],[1709593852000,37],[1709593853000,38],[1709593854000,40],[1709593855000,42],[1709593856000,44],[1709593857000,46],[1709593858000,47],[1709593859000,50],[1709593860000,51],[1709593861000,54],[1709593862000,55],[1709593863000,56],[1709593864000,59],[1709593865000,60],[1709593866000,62],[1709593867000,64],[1709593868000,67],[1709593869000,68],[1709593870000,70],[1709593871000,72],[1709593872000,75],[1709593873000,75],[1709593874000,77],[1709593875000,79],[1709593876000,80],[1709593877000,88],[1709593878000,84],[1709593879000,86],[1709593880000,88],[1709593881000,89],[1709593882000,92],[1709593883000,93],[1709593884000,95],[1709593885000,97],[1709593886000,98],[1709593887000,101],[1709593888000,102],[1709593889000,104],[1709593890000,106],[1709593891000,108],[1709593892000,110],[1709593893000,111],[1709593894000,113],[1709593895000,115],[1709593896000,117],[1709593897000,119],[1709593898000,120],[1709593899000,138],[1709593900000,124],[1709593901000,126],[1709593902000,128],[1709593903000,129],[1709593904000,132],[1709593905000,134],[1709593906000,136],[1709593907000,137],[1709593908000,140],[1709593909000,142],[1709593910000,157],[1709593911000,144],[1709593912000,148],[1709593913000,148],[1709593914000,151],[1709593915000,152],[1709593916000,153],[1709593917000,155],[1709593918000,157],[1709593919000,159],[1709593920000,161],[1709593921000,174],[1709593922000,165],[1709593923000,166],[1709593924000,168],[1709593925000,170],[1709593926000,171],[1709593927000,174],[1709593928000,175],[1709593929000,177],[1709593930000,179],[1709593931000,181],[1709593932000,194],[1709593933000,184],[1709593934000,186],[1709593935000,188],[1709593936000,190],[1709593937000,192],[1709593938000,217],[1709593939000,196],[1709593940000,197],[1709593941000,199],[1709593942000,202],[1709593943000,208],[1709593944000,205],[1709593945000,207],[1709593946000,209],[1709593947000,211],[1709593948000,213],[1709593949000,273],[1709593950000,220],[1709593951000,218],[1709593952000,220],[1709593953000,221],[1709593954000,220],[1709593955000,250],[1709593956000,220],[1709593957000,221],[1709593958000,220],[1709593959000,220],[1709593960000,242],[1709593961000,274],[1709593962000,220],[1709593963000,221],[1709593964000,220],[1709593965000,221],[1709593966000,292],[1709593967000,236],[1709593968000,220],[1709593969000,221],[1709593970000,221],[1709593971000,220],[1709593972000,279],[1709593973000,233],[1709593974000,220],[1709593975000,220],[1709593976000,221],[1709593977000,249],[1709593978000,249],[1709593979000,220],[1709593980000,299],[1709593981000,265],[1709593982000,221],[1709593983000,293],[1709593984000,242],[1709593985000,220],[1709593986000,221],[1709593987000,220],[1709593988000,221],[1709593989000,252],[1709593990000,221],[1709593991000,220],[1709593992000,221],[1709593993000,220],[1709593994000,251],[1709593995000,274],[1709593996000,220],[1709593997000,221],[1709593998000,220],[1709593999000,220],[1709594000000,277],[1709594001000,220],[1709594002000,221],[1709594003000,220],[1709594004000,221],[1709594005000,221],[1709594006000,268],[1709594007000,234],[1709594008000,221],[1709594009000,220],[1709594010000,221],[1709594011000,277],[1709594012000,260],[1709594013000,224],[1709594014000,222],[1709594015000,223],[1709594016000,221],[1709594017000,290],[1709594018000,282],[1709594019000,245],[1709594020000,221],[1709594021000,221],[1709594022000,237],[1709594023000,278],[1709594024000,262],[1709594025000,224],[1709594026000,220],[1709594027000,221],[1709594028000,285],[1709594029000,291],[1709594030000,249],[1709594031000,229],[1709594032000,220],[1709594033000,221],[1709594034000,288],[1709594035000,249],[1709594036000,222],[1709594037000,221],[1709594038000,220],[1709594039000,265],[1709594040000,376],[1709594041000,506],[1709594042000,498],[1709594043000,481],[1709594044000,497],[1709594045000,586],[1709594046000,591],[1709594047000,583],[1709594048000,572],[1709594049000,527],[1709594050000,550],[1709594051000,220],[1709594052000,220],[1709594053000,220],[1709594054000,220],[1709594055000,220],[1709594056000,220],[1709594057000,220],[1709594058000,220],[1709594059000,221],[1709594060000,220],[1709594061000,220],[1709594062000,222],[1709594063000,220],[1709594064000,220],[1709594065000,220],[1709594066000,220],[1709594067000,220],[1709594068000,220],[1709594069000,220],[1709594070000,220],[1709594071000,220],[1709594072000,216]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#68b65c',
name: 'créditos',
data: [
[1709593827000,0],[1709593828000,0],[1709593829000,0],[1709593830000,0],[1709593831000,0],[1709593832000,1],[1709593833000,2],[1709593834000,2],[1709593835000,4],[1709593836000,4],[1709593837000,5],[1709593838000,6],[1709593839000,7],[1709593840000,8],[1709593841000,8],[1709593842000,10],[1709593843000,10],[1709593844000,12],[1709593845000,12],[1709593846000,14],[1709593847000,14],[1709593848000,16],[1709593849000,16],[1709593850000,17],[1709593851000,17],[1709593852000,19],[1709593853000,20],[1709593854000,20],[1709593855000,22],[1709593856000,22],[1709593857000,23],[1709593858000,25],[1709593859000,25],[1709593860000,26],[1709593861000,27],[1709593862000,28],[1709593863000,29],[1709593864000,30],[1709593865000,30],[1709593866000,32],[1709593867000,32],[1709593868000,33],[1709593869000,34],[1709593870000,35],[1709593871000,36],[1709593872000,37],[1709593873000,38],[1709593874000,39],[1709593875000,39],[1709593876000,41],[1709593877000,44],[1709593878000,43],[1709593879000,43],[1709593880000,44],[1709593881000,45],[1709593882000,46],[1709593883000,47],[1709593884000,48],[1709593885000,48],[1709593886000,50],[1709593887000,50],[1709593888000,52],[1709593889000,52],[1709593890000,53],[1709593891000,54],[1709593892000,56],[1709593893000,55],[1709593894000,57],[1709593895000,58],[1709593896000,59],[1709593897000,59],[1709593898000,61],[1709593899000,67],[1709593900000,63],[1709593901000,63],[1709593902000,64],[1709593903000,65],[1709593904000,67],[1709593905000,68],[1709593906000,68],[1709593907000,68],[1709593908000,71],[1709593909000,71],[1709593910000,81],[1709593911000,72],[1709593912000,73],[1709593913000,75],[1709593914000,75],[1709593915000,76],[1709593916000,77],[1709593917000,78],[1709593918000,79],[1709593919000,79],[1709593920000,81],[1709593921000,88],[1709593922000,82],[1709593923000,83],[1709593924000,85],[1709593925000,85],[1709593926000,86],[1709593927000,86],[1709593928000,88],[1709593929000,89],[1709593930000,89],[1709593931000,91],[1709593932000,98],[1709593933000,92],[1709593934000,94],[1709593935000,94],[1709593936000,95],[1709593937000,96],[1709593938000,108],[1709593939000,97],[1709593940000,99],[1709593941000,99],[1709593942000,101],[1709593943000,104],[1709593944000,103],[1709593945000,103],[1709593946000,104],[1709593947000,105],[1709593948000,106],[1709593949000,138],[1709593950000,108],[1709593951000,109],[1709593952000,110],[1709593953000,110],[1709593954000,110],[1709593955000,125],[1709593956000,110],[1709593957000,110],[1709593958000,110],[1709593959000,110],[1709593960000,123],[1709593961000,134],[1709593962000,110],[1709593963000,110],[1709593964000,110],[1709593965000,110],[1709593966000,145],[1709593967000,115],[1709593968000,110],[1709593969000,110],[1709593970000,110],[1709593971000,110],[1709593972000,139],[1709593973000,117],[1709593974000,110],[1709593975000,110],[1709593976000,110],[1709593977000,125],[1709593978000,120],[1709593979000,110],[1709593980000,152],[1709593981000,132],[1709593982000,110],[1709593983000,145],[1709593984000,120],[1709593985000,110],[1709593986000,110],[1709593987000,110],[1709593988000,110],[1709593989000,128],[1709593990000,110],[1709593991000,110],[1709593992000,110],[1709593993000,110],[1709593994000,124],[1709593995000,135],[1709593996000,110],[1709593997000,110],[1709593998000,110],[1709593999000,110],[1709594000000,139],[1709594001000,110],[1709594002000,110],[1709594003000,110],[1709594004000,110],[1709594005000,110],[1709594006000,133],[1709594007000,116],[1709594008000,110],[1709594009000,110],[1709594010000,110],[1709594011000,138],[1709594012000,128],[1709594013000,111],[1709594014000,110],[1709594015000,110],[1709594016000,110],[1709594017000,144],[1709594018000,138],[1709594019000,125],[1709594020000,110],[1709594021000,110],[1709594022000,119],[1709594023000,136],[1709594024000,129],[1709594025000,113],[1709594026000,110],[1709594027000,110],[1709594028000,143],[1709594029000,144],[1709594030000,124],[1709594031000,113],[1709594032000,110],[1709594033000,110],[1709594034000,144],[1709594035000,123],[1709594036000,110],[1709594037000,110],[1709594038000,110],[1709594039000,131],[1709594040000,191],[1709594041000,249],[1709594042000,249],[1709594043000,226],[1709594044000,225],[1709594045000,272],[1709594046000,272],[1709594047000,279],[1709594048000,281],[1709594049000,263],[1709594050000,268],[1709594051000,110],[1709594052000,110],[1709594053000,110],[1709594054000,110],[1709594055000,110],[1709594056000,110],[1709594057000,110],[1709594058000,110],[1709594059000,110],[1709594060000,110],[1709594061000,110],[1709594062000,111],[1709594063000,110],[1709594064000,110],[1709594065000,110],[1709594066000,110],[1709594067000,110],[1709594068000,110],[1709594069000,111],[1709594070000,110],[1709594071000,110],[1709594072000,108]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#f15b4f',
name: 'extratos',
data: [
[1709593827000,0],[1709593828000,0],[1709593829000,0],[1709593830000,0],[1709593831000,0],[1709593832000,1],[1709593833000,2],[1709593834000,1],[1709593835000,1],[1709593836000,1],[1709593837000,1],[1709593838000,2],[1709593839000,1],[1709593840000,2],[1709593841000,2],[1709593842000,1],[1709593843000,2],[1709593844000,2],[1709593845000,2],[1709593846000,2],[1709593847000,2],[1709593848000,2],[1709593849000,2],[1709593850000,3],[1709593851000,2],[1709593852000,3],[1709593853000,2],[1709593854000,3],[1709593855000,2],[1709593856000,3],[1709593857000,3],[1709593858000,3],[1709593859000,3],[1709593860000,3],[1709593861000,3],[1709593862000,3],[1709593863000,4],[1709593864000,3],[1709593865000,3],[1709593866000,4],[1709593867000,3],[1709593868000,4],[1709593869000,4],[1709593870000,4],[1709593871000,4],[1709593872000,4],[1709593873000,4],[1709593874000,4],[1709593875000,4],[1709593876000,4],[1709593877000,5],[1709593878000,5],[1709593879000,4],[1709593880000,5],[1709593881000,5],[1709593882000,4],[1709593883000,5],[1709593884000,5],[1709593885000,5],[1709593886000,5],[1709593887000,5],[1709593888000,5],[1709593889000,5],[1709593890000,6],[1709593891000,5],[1709593892000,6],[1709593893000,5],[1709593894000,6],[1709593895000,5],[1709593896000,6],[1709593897000,6],[1709593898000,6],[1709593899000,7],[1709593900000,6],[1709593901000,6],[1709593902000,6],[1709593903000,7],[1709593904000,6],[1709593905000,6],[1709593906000,7],[1709593907000,6],[1709593908000,7],[1709593909000,7],[1709593910000,8],[1709593911000,7],[1709593912000,7],[1709593913000,7],[1709593914000,7],[1709593915000,7],[1709593916000,7],[1709593917000,7],[1709593918000,8],[1709593919000,7],[1709593920000,8],[1709593921000,10],[1709593922000,7],[1709593923000,8],[1709593924000,8],[1709593925000,8],[1709593926000,8],[1709593927000,8],[1709593928000,8],[1709593929000,8],[1709593930000,9],[1709593931000,8],[1709593932000,10],[1709593933000,8],[1709593934000,9],[1709593935000,8],[1709593936000,9],[1709593937000,9],[1709593938000,10],[1709593939000,9],[1709593940000,9],[1709593941000,9],[1709593942000,9],[1709593943000,11],[1709593944000,9],[1709593945000,9],[1709593946000,10],[1709593947000,9],[1709593948000,10],[1709593949000,14],[1709593950000,10],[1709593951000,10],[1709593952000,10],[1709593953000,10],[1709593954000,10],[1709593955000,12],[1709593956000,10],[1709593957000,10],[1709593958000,10],[1709593959000,10],[1709593960000,12],[1709593961000,12],[1709593962000,10],[1709593963000,10],[1709593964000,10],[1709593965000,10],[1709593966000,14],[1709593967000,10],[1709593968000,10],[1709593969000,10],[1709593970000,10],[1709593971000,10],[1709593972000,13],[1709593973000,11],[1709593974000,10],[1709593975000,10],[1709593976000,10],[1709593977000,12],[1709593978000,12],[1709593979000,10],[1709593980000,13],[1709593981000,11],[1709593982000,10],[1709593983000,13],[1709593984000,12],[1709593985000,10],[1709593986000,10],[1709593987000,10],[1709593988000,10],[1709593989000,12],[1709593990000,10],[1709593991000,10],[1709593992000,10],[1709593993000,10],[1709593994000,12],[1709593995000,12],[1709593996000,10],[1709593997000,10],[1709593998000,10],[1709593999000,10],[1709594000000,13],[1709594001000,10],[1709594002000,10],[1709594003000,10],[1709594004000,10],[1709594005000,11],[1709594006000,12],[1709594007000,11],[1709594008000,10],[1709594009000,10],[1709594010000,10],[1709594011000,13],[1709594012000,12],[1709594013000,10],[1709594014000,10],[1709594015000,11],[1709594016000,10],[1709594017000,14],[1709594018000,12],[1709594019000,12],[1709594020000,10],[1709594021000,10],[1709594022000,11],[1709594023000,13],[1709594024000,13],[1709594025000,11],[1709594026000,10],[1709594027000,10],[1709594028000,14],[1709594029000,12],[1709594030000,12],[1709594031000,11],[1709594032000,10],[1709594033000,10],[1709594034000,13],[1709594035000,12],[1709594036000,11],[1709594037000,10],[1709594038000,10],[1709594039000,13],[1709594040000,17],[1709594041000,18],[1709594042000,17],[1709594043000,17],[1709594044000,16],[1709594045000,20],[1709594046000,19],[1709594047000,17],[1709594048000,16],[1709594049000,16],[1709594050000,16],[1709594051000,10],[1709594052000,10],[1709594053000,10],[1709594054000,10],[1709594055000,10],[1709594056000,10],[1709594057000,10],[1709594058000,10],[1709594059000,10],[1709594060000,10],[1709594061000,10],[1709594062000,10],[1709594063000,10],[1709594064000,10],[1709594065000,10],[1709594066000,10],[1709594067000,10],[1709594068000,10],[1709594069000,10],[1709594070000,10],[1709594071000,10],[1709594072000,9]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FFDD00',
name: 'validações',
data: [
[1709593827000,0],[1709593828000,0],[1709593829000,0],[1709593830000,0],[1709593831000,5],[1709593832000,5],[1709593833000,0],[1709593834000,0],[1709593835000,0],[1709593836000,0],[1709593837000,0],[1709593838000,0],[1709593839000,0],[1709593840000,0],[1709593841000,0],[1709593842000,0],[1709593843000,0],[1709593844000,0],[1709593845000,0],[1709593846000,0],[1709593847000,0],[1709593848000,0],[1709593849000,0],[1709593850000,0],[1709593851000,0],[1709593852000,0],[1709593853000,0],[1709593854000,0],[1709593855000,0],[1709593856000,0],[1709593857000,0],[1709593858000,0],[1709593859000,0],[1709593860000,0],[1709593861000,0],[1709593862000,0],[1709593863000,0],[1709593864000,0],[1709593865000,0],[1709593866000,0],[1709593867000,0],[1709593868000,0],[1709593869000,0],[1709593870000,0],[1709593871000,0],[1709593872000,0],[1709593873000,0],[1709593874000,0],[1709593875000,0],[1709593876000,0],[1709593877000,0],[1709593878000,0],[1709593879000,0],[1709593880000,0],[1709593881000,0],[1709593882000,0],[1709593883000,0],[1709593884000,0],[1709593885000,0],[1709593886000,0],[1709593887000,0],[1709593888000,0],[1709593889000,0],[1709593890000,0],[1709593891000,0],[1709593892000,0],[1709593893000,0],[1709593894000,0],[1709593895000,0],[1709593896000,0],[1709593897000,0],[1709593898000,0],[1709593899000,0],[1709593900000,0],[1709593901000,0],[1709593902000,0],[1709593903000,0],[1709593904000,0],[1709593905000,0],[1709593906000,0],[1709593907000,0],[1709593908000,0],[1709593909000,0],[1709593910000,0],[1709593911000,0],[1709593912000,0],[1709593913000,0],[1709593914000,0],[1709593915000,0],[1709593916000,0],[1709593917000,0],[1709593918000,0],[1709593919000,0],[1709593920000,0],[1709593921000,0],[1709593922000,0],[1709593923000,0],[1709593924000,0],[1709593925000,0],[1709593926000,0],[1709593927000,0],[1709593928000,0],[1709593929000,0],[1709593930000,0],[1709593931000,0],[1709593932000,0],[1709593933000,0],[1709593934000,0],[1709593935000,0],[1709593936000,0],[1709593937000,0],[1709593938000,0],[1709593939000,0],[1709593940000,0],[1709593941000,0],[1709593942000,0],[1709593943000,0],[1709593944000,0],[1709593945000,0],[1709593946000,0],[1709593947000,0],[1709593948000,0],[1709593949000,0],[1709593950000,0],[1709593951000,0],[1709593952000,0],[1709593953000,0],[1709593954000,0],[1709593955000,0],[1709593956000,0],[1709593957000,0],[1709593958000,0],[1709593959000,0],[1709593960000,0],[1709593961000,0],[1709593962000,0],[1709593963000,0],[1709593964000,0],[1709593965000,0],[1709593966000,0],[1709593967000,0],[1709593968000,0],[1709593969000,0],[1709593970000,0],[1709593971000,0],[1709593972000,0],[1709593973000,0],[1709593974000,0],[1709593975000,0],[1709593976000,0],[1709593977000,0],[1709593978000,0],[1709593979000,0],[1709593980000,0],[1709593981000,0],[1709593982000,0],[1709593983000,0],[1709593984000,0],[1709593985000,0],[1709593986000,0],[1709593987000,0],[1709593988000,0],[1709593989000,0],[1709593990000,0],[1709593991000,0],[1709593992000,0],[1709593993000,0],[1709593994000,0],[1709593995000,0],[1709593996000,0],[1709593997000,0],[1709593998000,0],[1709593999000,0],[1709594000000,0],[1709594001000,0],[1709594002000,0],[1709594003000,0],[1709594004000,0],[1709594005000,0],[1709594006000,0],[1709594007000,0],[1709594008000,0],[1709594009000,0],[1709594010000,0],[1709594011000,0],[1709594012000,0],[1709594013000,0],[1709594014000,0],[1709594015000,0],[1709594016000,0],[1709594017000,0],[1709594018000,0],[1709594019000,0],[1709594020000,0],[1709594021000,0],[1709594022000,0],[1709594023000,0],[1709594024000,0],[1709594025000,0],[1709594026000,0],[1709594027000,0],[1709594028000,0],[1709594029000,0],[1709594030000,0],[1709594031000,0],[1709594032000,0],[1709594033000,0],[1709594034000,0],[1709594035000,0],[1709594036000,0],[1709594037000,0],[1709594038000,0],[1709594039000,0],[1709594040000,0],[1709594041000,0],[1709594042000,0],[1709594043000,0],[1709594044000,0],[1709594045000,0],[1709594046000,0],[1709594047000,0],[1709594048000,0],[1709594049000,0],[1709594050000,0],[1709594051000,0],[1709594052000,0],[1709594053000,0],[1709594054000,0],[1709594055000,0],[1709594056000,0],[1709594057000,0],[1709594058000,0],[1709594059000,0],[1709594060000,0],[1709594061000,0],[1709594062000,0],[1709594063000,0],[1709594064000,0],[1709594065000,0],[1709594066000,0],[1709594067000,0],[1709594068000,0],[1709594069000,0],[1709594070000,0],[1709594071000,0],[1709594072000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00D5FF',
name: 'validação HTTP 404',
data: [
[1709593827000,0],[1709593828000,0],[1709593829000,0],[1709593830000,0],[1709593831000,1],[1709593832000,0],[1709593833000,0],[1709593834000,0],[1709593835000,0],[1709593836000,0],[1709593837000,0],[1709593838000,0],[1709593839000,0],[1709593840000,0],[1709593841000,0],[1709593842000,0],[1709593843000,0],[1709593844000,0],[1709593845000,0],[1709593846000,0],[1709593847000,0],[1709593848000,0],[1709593849000,0],[1709593850000,0],[1709593851000,0],[1709593852000,0],[1709593853000,0],[1709593854000,0],[1709593855000,0],[1709593856000,0],[1709593857000,0],[1709593858000,0],[1709593859000,0],[1709593860000,0],[1709593861000,0],[1709593862000,0],[1709593863000,0],[1709593864000,0],[1709593865000,0],[1709593866000,0],[1709593867000,0],[1709593868000,0],[1709593869000,0],[1709593870000,0],[1709593871000,0],[1709593872000,0],[1709593873000,0],[1709593874000,0],[1709593875000,0],[1709593876000,0],[1709593877000,0],[1709593878000,0],[1709593879000,0],[1709593880000,0],[1709593881000,0],[1709593882000,0],[1709593883000,0],[1709593884000,0],[1709593885000,0],[1709593886000,0],[1709593887000,0],[1709593888000,0],[1709593889000,0],[1709593890000,0],[1709593891000,0],[1709593892000,0],[1709593893000,0],[1709593894000,0],[1709593895000,0],[1709593896000,0],[1709593897000,0],[1709593898000,0],[1709593899000,0],[1709593900000,0],[1709593901000,0],[1709593902000,0],[1709593903000,0],[1709593904000,0],[1709593905000,0],[1709593906000,0],[1709593907000,0],[1709593908000,0],[1709593909000,0],[1709593910000,0],[1709593911000,0],[1709593912000,0],[1709593913000,0],[1709593914000,0],[1709593915000,0],[1709593916000,0],[1709593917000,0],[1709593918000,0],[1709593919000,0],[1709593920000,0],[1709593921000,0],[1709593922000,0],[1709593923000,0],[1709593924000,0],[1709593925000,0],[1709593926000,0],[1709593927000,0],[1709593928000,0],[1709593929000,0],[1709593930000,0],[1709593931000,0],[1709593932000,0],[1709593933000,0],[1709593934000,0],[1709593935000,0],[1709593936000,0],[1709593937000,0],[1709593938000,0],[1709593939000,0],[1709593940000,0],[1709593941000,0],[1709593942000,0],[1709593943000,0],[1709593944000,0],[1709593945000,0],[1709593946000,0],[1709593947000,0],[1709593948000,0],[1709593949000,0],[1709593950000,0],[1709593951000,0],[1709593952000,0],[1709593953000,0],[1709593954000,0],[1709593955000,0],[1709593956000,0],[1709593957000,0],[1709593958000,0],[1709593959000,0],[1709593960000,0],[1709593961000,0],[1709593962000,0],[1709593963000,0],[1709593964000,0],[1709593965000,0],[1709593966000,0],[1709593967000,0],[1709593968000,0],[1709593969000,0],[1709593970000,0],[1709593971000,0],[1709593972000,0],[1709593973000,0],[1709593974000,0],[1709593975000,0],[1709593976000,0],[1709593977000,0],[1709593978000,0],[1709593979000,0],[1709593980000,0],[1709593981000,0],[1709593982000,0],[1709593983000,0],[1709593984000,0],[1709593985000,0],[1709593986000,0],[1709593987000,0],[1709593988000,0],[1709593989000,0],[1709593990000,0],[1709593991000,0],[1709593992000,0],[1709593993000,0],[1709593994000,0],[1709593995000,0],[1709593996000,0],[1709593997000,0],[1709593998000,0],[1709593999000,0],[1709594000000,0],[1709594001000,0],[1709594002000,0],[1709594003000,0],[1709594004000,0],[1709594005000,0],[1709594006000,0],[1709594007000,0],[1709594008000,0],[1709594009000,0],[1709594010000,0],[1709594011000,0],[1709594012000,0],[1709594013000,0],[1709594014000,0],[1709594015000,0],[1709594016000,0],[1709594017000,0],[1709594018000,0],[1709594019000,0],[1709594020000,0],[1709594021000,0],[1709594022000,0],[1709594023000,0],[1709594024000,0],[1709594025000,0],[1709594026000,0],[1709594027000,0],[1709594028000,0],[1709594029000,0],[1709594030000,0],[1709594031000,0],[1709594032000,0],[1709594033000,0],[1709594034000,0],[1709594035000,0],[1709594036000,0],[1709594037000,0],[1709594038000,0],[1709594039000,0],[1709594040000,0],[1709594041000,0],[1709594042000,0],[1709594043000,0],[1709594044000,0],[1709594045000,0],[1709594046000,0],[1709594047000,0],[1709594048000,0],[1709594049000,0],[1709594050000,0],[1709594051000,0],[1709594052000,0],[1709594053000,0],[1709594054000,0],[1709594055000,0],[1709594056000,0],[1709594057000,0],[1709594058000,0],[1709594059000,0],[1709594060000,0],[1709594061000,0],[1709594062000,0],[1709594063000,0],[1709594064000,0],[1709594065000,0],[1709594066000,0],[1709594067000,0],[1709594068000,0],[1709594069000,0],[1709594070000,0],[1709594071000,0],[1709594072000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00FF00',
name: 'validação concorrência saldo - 0',
data: [
[1709593827000,0],[1709593828000,0],[1709593829000,0],[1709593830000,1],[1709593831000,0],[1709593832000,0],[1709593833000,0],[1709593834000,0],[1709593835000,0],[1709593836000,0],[1709593837000,0],[1709593838000,0],[1709593839000,0],[1709593840000,0],[1709593841000,0],[1709593842000,0],[1709593843000,0],[1709593844000,0],[1709593845000,0],[1709593846000,0],[1709593847000,0],[1709593848000,0],[1709593849000,0],[1709593850000,0],[1709593851000,0],[1709593852000,0],[1709593853000,0],[1709593854000,0],[1709593855000,0],[1709593856000,0],[1709593857000,0],[1709593858000,0],[1709593859000,0],[1709593860000,0],[1709593861000,0],[1709593862000,0],[1709593863000,0],[1709593864000,0],[1709593865000,0],[1709593866000,0],[1709593867000,0],[1709593868000,0],[1709593869000,0],[1709593870000,0],[1709593871000,0],[1709593872000,0],[1709593873000,0],[1709593874000,0],[1709593875000,0],[1709593876000,0],[1709593877000,0],[1709593878000,0],[1709593879000,0],[1709593880000,0],[1709593881000,0],[1709593882000,0],[1709593883000,0],[1709593884000,0],[1709593885000,0],[1709593886000,0],[1709593887000,0],[1709593888000,0],[1709593889000,0],[1709593890000,0],[1709593891000,0],[1709593892000,0],[1709593893000,0],[1709593894000,0],[1709593895000,0],[1709593896000,0],[1709593897000,0],[1709593898000,0],[1709593899000,0],[1709593900000,0],[1709593901000,0],[1709593902000,0],[1709593903000,0],[1709593904000,0],[1709593905000,0],[1709593906000,0],[1709593907000,0],[1709593908000,0],[1709593909000,0],[1709593910000,0],[1709593911000,0],[1709593912000,0],[1709593913000,0],[1709593914000,0],[1709593915000,0],[1709593916000,0],[1709593917000,0],[1709593918000,0],[1709593919000,0],[1709593920000,0],[1709593921000,0],[1709593922000,0],[1709593923000,0],[1709593924000,0],[1709593925000,0],[1709593926000,0],[1709593927000,0],[1709593928000,0],[1709593929000,0],[1709593930000,0],[1709593931000,0],[1709593932000,0],[1709593933000,0],[1709593934000,0],[1709593935000,0],[1709593936000,0],[1709593937000,0],[1709593938000,0],[1709593939000,0],[1709593940000,0],[1709593941000,0],[1709593942000,0],[1709593943000,0],[1709593944000,0],[1709593945000,0],[1709593946000,0],[1709593947000,0],[1709593948000,0],[1709593949000,0],[1709593950000,0],[1709593951000,0],[1709593952000,0],[1709593953000,0],[1709593954000,0],[1709593955000,0],[1709593956000,0],[1709593957000,0],[1709593958000,0],[1709593959000,0],[1709593960000,0],[1709593961000,0],[1709593962000,0],[1709593963000,0],[1709593964000,0],[1709593965000,0],[1709593966000,0],[1709593967000,0],[1709593968000,0],[1709593969000,0],[1709593970000,0],[1709593971000,0],[1709593972000,0],[1709593973000,0],[1709593974000,0],[1709593975000,0],[1709593976000,0],[1709593977000,0],[1709593978000,0],[1709593979000,0],[1709593980000,0],[1709593981000,0],[1709593982000,0],[1709593983000,0],[1709593984000,0],[1709593985000,0],[1709593986000,0],[1709593987000,0],[1709593988000,0],[1709593989000,0],[1709593990000,0],[1709593991000,0],[1709593992000,0],[1709593993000,0],[1709593994000,0],[1709593995000,0],[1709593996000,0],[1709593997000,0],[1709593998000,0],[1709593999000,0],[1709594000000,0],[1709594001000,0],[1709594002000,0],[1709594003000,0],[1709594004000,0],[1709594005000,0],[1709594006000,0],[1709594007000,0],[1709594008000,0],[1709594009000,0],[1709594010000,0],[1709594011000,0],[1709594012000,0],[1709594013000,0],[1709594014000,0],[1709594015000,0],[1709594016000,0],[1709594017000,0],[1709594018000,0],[1709594019000,0],[1709594020000,0],[1709594021000,0],[1709594022000,0],[1709594023000,0],[1709594024000,0],[1709594025000,0],[1709594026000,0],[1709594027000,0],[1709594028000,0],[1709594029000,0],[1709594030000,0],[1709594031000,0],[1709594032000,0],[1709594033000,0],[1709594034000,0],[1709594035000,0],[1709594036000,0],[1709594037000,0],[1709594038000,0],[1709594039000,0],[1709594040000,0],[1709594041000,0],[1709594042000,0],[1709594043000,0],[1709594044000,0],[1709594045000,0],[1709594046000,0],[1709594047000,0],[1709594048000,0],[1709594049000,0],[1709594050000,0],[1709594051000,0],[1709594052000,0],[1709594053000,0],[1709594054000,0],[1709594055000,0],[1709594056000,0],[1709594057000,0],[1709594058000,0],[1709594059000,0],[1709594060000,0],[1709594061000,0],[1709594062000,0],[1709594063000,0],[1709594064000,0],[1709594065000,0],[1709594066000,0],[1709594067000,0],[1709594068000,0],[1709594069000,0],[1709594070000,0],[1709594071000,0],[1709594072000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#9D00FF',
name: 'validação concorrência transações - c',
data: [
[1709593827000,0],[1709593828000,0],[1709593829000,20],[1709593830000,24],[1709593831000,0],[1709593832000,0],[1709593833000,0],[1709593834000,0],[1709593835000,0],[1709593836000,0],[1709593837000,0],[1709593838000,0],[1709593839000,0],[1709593840000,0],[1709593841000,0],[1709593842000,0],[1709593843000,0],[1709593844000,0],[1709593845000,0],[1709593846000,0],[1709593847000,0],[1709593848000,0],[1709593849000,0],[1709593850000,0],[1709593851000,0],[1709593852000,0],[1709593853000,0],[1709593854000,0],[1709593855000,0],[1709593856000,0],[1709593857000,0],[1709593858000,0],[1709593859000,0],[1709593860000,0],[1709593861000,0],[1709593862000,0],[1709593863000,0],[1709593864000,0],[1709593865000,0],[1709593866000,0],[1709593867000,0],[1709593868000,0],[1709593869000,0],[1709593870000,0],[1709593871000,0],[1709593872000,0],[1709593873000,0],[1709593874000,0],[1709593875000,0],[1709593876000,0],[1709593877000,0],[1709593878000,0],[1709593879000,0],[1709593880000,0],[1709593881000,0],[1709593882000,0],[1709593883000,0],[1709593884000,0],[1709593885000,0],[1709593886000,0],[1709593887000,0],[1709593888000,0],[1709593889000,0],[1709593890000,0],[1709593891000,0],[1709593892000,0],[1709593893000,0],[1709593894000,0],[1709593895000,0],[1709593896000,0],[1709593897000,0],[1709593898000,0],[1709593899000,0],[1709593900000,0],[1709593901000,0],[1709593902000,0],[1709593903000,0],[1709593904000,0],[1709593905000,0],[1709593906000,0],[1709593907000,0],[1709593908000,0],[1709593909000,0],[1709593910000,0],[1709593911000,0],[1709593912000,0],[1709593913000,0],[1709593914000,0],[1709593915000,0],[1709593916000,0],[1709593917000,0],[1709593918000,0],[1709593919000,0],[1709593920000,0],[1709593921000,0],[1709593922000,0],[1709593923000,0],[1709593924000,0],[1709593925000,0],[1709593926000,0],[1709593927000,0],[1709593928000,0],[1709593929000,0],[1709593930000,0],[1709593931000,0],[1709593932000,0],[1709593933000,0],[1709593934000,0],[1709593935000,0],[1709593936000,0],[1709593937000,0],[1709593938000,0],[1709593939000,0],[1709593940000,0],[1709593941000,0],[1709593942000,0],[1709593943000,0],[1709593944000,0],[1709593945000,0],[1709593946000,0],[1709593947000,0],[1709593948000,0],[1709593949000,0],[1709593950000,0],[1709593951000,0],[1709593952000,0],[1709593953000,0],[1709593954000,0],[1709593955000,0],[1709593956000,0],[1709593957000,0],[1709593958000,0],[1709593959000,0],[1709593960000,0],[1709593961000,0],[1709593962000,0],[1709593963000,0],[1709593964000,0],[1709593965000,0],[1709593966000,0],[1709593967000,0],[1709593968000,0],[1709593969000,0],[1709593970000,0],[1709593971000,0],[1709593972000,0],[1709593973000,0],[1709593974000,0],[1709593975000,0],[1709593976000,0],[1709593977000,0],[1709593978000,0],[1709593979000,0],[1709593980000,0],[1709593981000,0],[1709593982000,0],[1709593983000,0],[1709593984000,0],[1709593985000,0],[1709593986000,0],[1709593987000,0],[1709593988000,0],[1709593989000,0],[1709593990000,0],[1709593991000,0],[1709593992000,0],[1709593993000,0],[1709593994000,0],[1709593995000,0],[1709593996000,0],[1709593997000,0],[1709593998000,0],[1709593999000,0],[1709594000000,0],[1709594001000,0],[1709594002000,0],[1709594003000,0],[1709594004000,0],[1709594005000,0],[1709594006000,0],[1709594007000,0],[1709594008000,0],[1709594009000,0],[1709594010000,0],[1709594011000,0],[1709594012000,0],[1709594013000,0],[1709594014000,0],[1709594015000,0],[1709594016000,0],[1709594017000,0],[1709594018000,0],[1709594019000,0],[1709594020000,0],[1709594021000,0],[1709594022000,0],[1709594023000,0],[1709594024000,0],[1709594025000,0],[1709594026000,0],[1709594027000,0],[1709594028000,0],[1709594029000,0],[1709594030000,0],[1709594031000,0],[1709594032000,0],[1709594033000,0],[1709594034000,0],[1709594035000,0],[1709594036000,0],[1709594037000,0],[1709594038000,0],[1709594039000,0],[1709594040000,0],[1709594041000,0],[1709594042000,0],[1709594043000,0],[1709594044000,0],[1709594045000,0],[1709594046000,0],[1709594047000,0],[1709594048000,0],[1709594049000,0],[1709594050000,0],[1709594051000,0],[1709594052000,0],[1709594053000,0],[1709594054000,0],[1709594055000,0],[1709594056000,0],[1709594057000,0],[1709594058000,0],[1709594059000,0],[1709594060000,0],[1709594061000,0],[1709594062000,0],[1709594063000,0],[1709594064000,0],[1709594065000,0],[1709594066000,0],[1709594067000,0],[1709594068000,0],[1709594069000,0],[1709594070000,0],[1709594071000,0],[1709594072000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FF00E1',
name: 'validação concorrência saldo - -25',
data: [
[1709593827000,0],[1709593828000,1],[1709593829000,1],[1709593830000,0],[1709593831000,0],[1709593832000,0],[1709593833000,0],[1709593834000,0],[1709593835000,0],[1709593836000,0],[1709593837000,0],[1709593838000,0],[1709593839000,0],[1709593840000,0],[1709593841000,0],[1709593842000,0],[1709593843000,0],[1709593844000,0],[1709593845000,0],[1709593846000,0],[1709593847000,0],[1709593848000,0],[1709593849000,0],[1709593850000,0],[1709593851000,0],[1709593852000,0],[1709593853000,0],[1709593854000,0],[1709593855000,0],[1709593856000,0],[1709593857000,0],[1709593858000,0],[1709593859000,0],[1709593860000,0],[1709593861000,0],[1709593862000,0],[1709593863000,0],[1709593864000,0],[1709593865000,0],[1709593866000,0],[1709593867000,0],[1709593868000,0],[1709593869000,0],[1709593870000,0],[1709593871000,0],[1709593872000,0],[1709593873000,0],[1709593874000,0],[1709593875000,0],[1709593876000,0],[1709593877000,0],[1709593878000,0],[1709593879000,0],[1709593880000,0],[1709593881000,0],[1709593882000,0],[1709593883000,0],[1709593884000,0],[1709593885000,0],[1709593886000,0],[1709593887000,0],[1709593888000,0],[1709593889000,0],[1709593890000,0],[1709593891000,0],[1709593892000,0],[1709593893000,0],[1709593894000,0],[1709593895000,0],[1709593896000,0],[1709593897000,0],[1709593898000,0],[1709593899000,0],[1709593900000,0],[1709593901000,0],[1709593902000,0],[1709593903000,0],[1709593904000,0],[1709593905000,0],[1709593906000,0],[1709593907000,0],[1709593908000,0],[1709593909000,0],[1709593910000,0],[1709593911000,0],[1709593912000,0],[1709593913000,0],[1709593914000,0],[1709593915000,0],[1709593916000,0],[1709593917000,0],[1709593918000,0],[1709593919000,0],[1709593920000,0],[1709593921000,0],[1709593922000,0],[1709593923000,0],[1709593924000,0],[1709593925000,0],[1709593926000,0],[1709593927000,0],[1709593928000,0],[1709593929000,0],[1709593930000,0],[1709593931000,0],[1709593932000,0],[1709593933000,0],[1709593934000,0],[1709593935000,0],[1709593936000,0],[1709593937000,0],[1709593938000,0],[1709593939000,0],[1709593940000,0],[1709593941000,0],[1709593942000,0],[1709593943000,0],[1709593944000,0],[1709593945000,0],[1709593946000,0],[1709593947000,0],[1709593948000,0],[1709593949000,0],[1709593950000,0],[1709593951000,0],[1709593952000,0],[1709593953000,0],[1709593954000,0],[1709593955000,0],[1709593956000,0],[1709593957000,0],[1709593958000,0],[1709593959000,0],[1709593960000,0],[1709593961000,0],[1709593962000,0],[1709593963000,0],[1709593964000,0],[1709593965000,0],[1709593966000,0],[1709593967000,0],[1709593968000,0],[1709593969000,0],[1709593970000,0],[1709593971000,0],[1709593972000,0],[1709593973000,0],[1709593974000,0],[1709593975000,0],[1709593976000,0],[1709593977000,0],[1709593978000,0],[1709593979000,0],[1709593980000,0],[1709593981000,0],[1709593982000,0],[1709593983000,0],[1709593984000,0],[1709593985000,0],[1709593986000,0],[1709593987000,0],[1709593988000,0],[1709593989000,0],[1709593990000,0],[1709593991000,0],[1709593992000,0],[1709593993000,0],[1709593994000,0],[1709593995000,0],[1709593996000,0],[1709593997000,0],[1709593998000,0],[1709593999000,0],[1709594000000,0],[1709594001000,0],[1709594002000,0],[1709594003000,0],[1709594004000,0],[1709594005000,0],[1709594006000,0],[1709594007000,0],[1709594008000,0],[1709594009000,0],[1709594010000,0],[1709594011000,0],[1709594012000,0],[1709594013000,0],[1709594014000,0],[1709594015000,0],[1709594016000,0],[1709594017000,0],[1709594018000,0],[1709594019000,0],[1709594020000,0],[1709594021000,0],[1709594022000,0],[1709594023000,0],[1709594024000,0],[1709594025000,0],[1709594026000,0],[1709594027000,0],[1709594028000,0],[1709594029000,0],[1709594030000,0],[1709594031000,0],[1709594032000,0],[1709594033000,0],[1709594034000,0],[1709594035000,0],[1709594036000,0],[1709594037000,0],[1709594038000,0],[1709594039000,0],[1709594040000,0],[1709594041000,0],[1709594042000,0],[1709594043000,0],[1709594044000,0],[1709594045000,0],[1709594046000,0],[1709594047000,0],[1709594048000,0],[1709594049000,0],[1709594050000,0],[1709594051000,0],[1709594052000,0],[1709594053000,0],[1709594054000,0],[1709594055000,0],[1709594056000,0],[1709594057000,0],[1709594058000,0],[1709594059000,0],[1709594060000,0],[1709594061000,0],[1709594062000,0],[1709594063000,0],[1709594064000,0],[1709594065000,0],[1709594066000,0],[1709594067000,0],[1709594068000,0],[1709594069000,0],[1709594070000,0],[1709594071000,0],[1709594072000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#AECAEB',
name: 'validação concorrência transações - d',
data: [
[1709593827000,25],[1709593828000,12],[1709593829000,0],[1709593830000,0],[1709593831000,0],[1709593832000,0],[1709593833000,0],[1709593834000,0],[1709593835000,0],[1709593836000,0],[1709593837000,0],[1709593838000,0],[1709593839000,0],[1709593840000,0],[1709593841000,0],[1709593842000,0],[1709593843000,0],[1709593844000,0],[1709593845000,0],[1709593846000,0],[1709593847000,0],[1709593848000,0],[1709593849000,0],[1709593850000,0],[1709593851000,0],[1709593852000,0],[1709593853000,0],[1709593854000,0],[1709593855000,0],[1709593856000,0],[1709593857000,0],[1709593858000,0],[1709593859000,0],[1709593860000,0],[1709593861000,0],[1709593862000,0],[1709593863000,0],[1709593864000,0],[1709593865000,0],[1709593866000,0],[1709593867000,0],[1709593868000,0],[1709593869000,0],[1709593870000,0],[1709593871000,0],[1709593872000,0],[1709593873000,0],[1709593874000,0],[1709593875000,0],[1709593876000,0],[1709593877000,0],[1709593878000,0],[1709593879000,0],[1709593880000,0],[1709593881000,0],[1709593882000,0],[1709593883000,0],[1709593884000,0],[1709593885000,0],[1709593886000,0],[1709593887000,0],[1709593888000,0],[1709593889000,0],[1709593890000,0],[1709593891000,0],[1709593892000,0],[1709593893000,0],[1709593894000,0],[1709593895000,0],[1709593896000,0],[1709593897000,0],[1709593898000,0],[1709593899000,0],[1709593900000,0],[1709593901000,0],[1709593902000,0],[1709593903000,0],[1709593904000,0],[1709593905000,0],[1709593906000,0],[1709593907000,0],[1709593908000,0],[1709593909000,0],[1709593910000,0],[1709593911000,0],[1709593912000,0],[1709593913000,0],[1709593914000,0],[1709593915000,0],[1709593916000,0],[1709593917000,0],[1709593918000,0],[1709593919000,0],[1709593920000,0],[1709593921000,0],[1709593922000,0],[1709593923000,0],[1709593924000,0],[1709593925000,0],[1709593926000,0],[1709593927000,0],[1709593928000,0],[1709593929000,0],[1709593930000,0],[1709593931000,0],[1709593932000,0],[1709593933000,0],[1709593934000,0],[1709593935000,0],[1709593936000,0],[1709593937000,0],[1709593938000,0],[1709593939000,0],[1709593940000,0],[1709593941000,0],[1709593942000,0],[1709593943000,0],[1709593944000,0],[1709593945000,0],[1709593946000,0],[1709593947000,0],[1709593948000,0],[1709593949000,0],[1709593950000,0],[1709593951000,0],[1709593952000,0],[1709593953000,0],[1709593954000,0],[1709593955000,0],[1709593956000,0],[1709593957000,0],[1709593958000,0],[1709593959000,0],[1709593960000,0],[1709593961000,0],[1709593962000,0],[1709593963000,0],[1709593964000,0],[1709593965000,0],[1709593966000,0],[1709593967000,0],[1709593968000,0],[1709593969000,0],[1709593970000,0],[1709593971000,0],[1709593972000,0],[1709593973000,0],[1709593974000,0],[1709593975000,0],[1709593976000,0],[1709593977000,0],[1709593978000,0],[1709593979000,0],[1709593980000,0],[1709593981000,0],[1709593982000,0],[1709593983000,0],[1709593984000,0],[1709593985000,0],[1709593986000,0],[1709593987000,0],[1709593988000,0],[1709593989000,0],[1709593990000,0],[1709593991000,0],[1709593992000,0],[1709593993000,0],[1709593994000,0],[1709593995000,0],[1709593996000,0],[1709593997000,0],[1709593998000,0],[1709593999000,0],[1709594000000,0],[1709594001000,0],[1709594002000,0],[1709594003000,0],[1709594004000,0],[1709594005000,0],[1709594006000,0],[1709594007000,0],[1709594008000,0],[1709594009000,0],[1709594010000,0],[1709594011000,0],[1709594012000,0],[1709594013000,0],[1709594014000,0],[1709594015000,0],[1709594016000,0],[1709594017000,0],[1709594018000,0],[1709594019000,0],[1709594020000,0],[1709594021000,0],[1709594022000,0],[1709594023000,0],[1709594024000,0],[1709594025000,0],[1709594026000,0],[1709594027000,0],[1709594028000,0],[1709594029000,0],[1709594030000,0],[1709594031000,0],[1709594032000,0],[1709594033000,0],[1709594034000,0],[1709594035000,0],[1709594036000,0],[1709594037000,0],[1709594038000,0],[1709594039000,0],[1709594040000,0],[1709594041000,0],[1709594042000,0],[1709594043000,0],[1709594044000,0],[1709594045000,0],[1709594046000,0],[1709594047000,0],[1709594048000,0],[1709594049000,0],[1709594050000,0],[1709594051000,0],[1709594052000,0],[1709594053000,0],[1709594054000,0],[1709594055000,0],[1709594056000,0],[1709594057000,0],[1709594058000,0],[1709594059000,0],[1709594060000,0],[1709594061000,0],[1709594062000,0],[1709594063000,0],[1709594064000,0],[1709594065000,0],[1709594066000,0],[1709594067000,0],[1709594068000,0],[1709594069000,0],[1709594070000,0],[1709594071000,0],[1709594072000,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: ['58', '173', '288', '403', '518', '633', '748', '863', '978', '1093', '1208', '1324', '1439', '1554', '1669', '1784', '1899', '2014', '2129', '2244', '2359', '2474', '2590', '2705', '2820', '2935', '3050', '3165', '3280', '3395', '3510', '3625', '3740', '3856', '3971', '4086', '4201', '4316', '4431', '4546', '4661', '4776', '4891', '5006', '5122', '5237', '5352', '5467', '5582', '5697', '5812', '5927', '6042', '6157', '6272', '6387', '6503', '6618', '6733', '6848', '6963', '7078', '7193', '7308', '7423', '7538', '7653', '7769', '7884', '7999', '8114', '8229', '8344', '8459', '8574', '8689', '8804', '8919', '9035', '9150', '9265', '9380', '9495', '9610', '9725', '9840', '9955', '10070', '10185', '10301', '10416', '10531', '10646', '10761', '10876', '10991', '11106', '11221', '11336', '11451'],
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: [
66.38,9.36,5.86,1.49,0.28,0.28,0.06,0.05,0.16,0.43,0.59,0.38,0.18,0.06,0.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.06,0.32,0.14,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.01,0.05,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
],
tooltip: { yDecimals: 0, ySuffix: 'ms' }
},
{
type: 'column',
color: '#f15b4f',
name: 'KO',
data: [
12.49,0.06,0.06,0.06,0.06,0.06,0.05,0.01,0.03,0.03,0.03,0.01,0.02,0.0,0.01,0.0,0.0,0.01,0.0,0.01,0.0,0.0,0.0,0.01,0.0,0.01,0.0,0.0,0.0,0.0,0.01,0.01,0.01,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.0,0.01,0.0,0.0,0.01,0.0,0.0,0.01,0.01,0.02,0.0,0.0,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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([[1709593827,[68,101,156,1475,1476,1497,1532,1559,1568,1570]],[1709593828,null],[1709593829,[20,20,20,20,20,20,20,20,20,20]],[1709593830,[12,30,40,69,71,77,82,83,86,87]],[1709593831,null],[1709593832,[2,10,20,39,52,69,78,81,85,90]],[1709593833,[10,10,10,10,10,10,10,10,10,10]],[1709593834,[4,5,6,7,7,7,7,7,7,8]],[1709593835,[5,5,5,5,5,5,5,5,5,6]],[1709593836,[4,4,5,5,5,6,7,7,7,8]],[1709593837,null],[1709593838,[4,4,5,5,5,5,6,7,7,8]],[1709593839,[4,5,5,5,5,5,5,5,5,5]],[1709593840,[3,4,4,5,5,6,7,8,8,9]],[1709593841,[4,4,4,5,5,5,5,6,7,8]],[1709593842,[3,3,4,4,5,5,6,6,6,6]],[1709593843,[3,4,4,5,5,5,6,7,9,9]],[1709593844,[3,3,4,4,5,6,6,7,7,8]],[1709593845,[3,4,4,6,7,21,37,55,69,72]],[1709593846,[2,3,4,4,4,4,5,5,6,7]],[1709593847,[2,3,3,4,4,4,5,5,7,8]],[1709593848,[2,3,3,3,4,4,4,4,7,8]],[1709593849,[2,3,3,3,4,4,4,4,5,6]],[1709593850,[2,3,3,12,25,43,53,73,89,92]],[1709593851,[2,2,3,3,3,3,3,4,4,5]],[1709593852,[2,2,3,3,3,3,3,4,4,5]],[1709593853,[1,2,3,3,3,3,4,4,4,4]],[1709593854,[1,2,2,3,3,3,3,4,4,4]],[1709593855,[1,2,3,3,3,3,4,22,81,82]],[1709593856,[2,2,2,3,3,3,4,28,68,84]],[1709593857,[1,2,3,3,3,4,4,4,14,37]],[1709593858,[1,2,2,3,3,3,3,4,19,29]],[1709593859,[1,2,2,2,3,3,3,3,7,19]],[1709593860,[1,2,2,2,2,2,3,3,3,3]],[1709593861,[1,2,2,15,20,37,46,58,81,89]],[1709593862,[1,2,2,2,2,2,3,3,4,4]],[1709593863,[1,2,2,2,2,2,3,3,3,3]],[1709593864,[1,1,2,2,2,2,2,3,3,3]],[1709593865,[1,1,2,2,2,2,2,3,3,4]],[1709593866,[1,1,2,3,6,23,30,51,74,87]],[1709593867,[1,2,2,3,3,3,3,3,6,15]],[1709593868,[1,2,2,2,2,3,3,3,3,4]],[1709593869,[1,2,2,2,2,3,3,3,3,4]],[1709593870,[0,1,2,2,2,2,2,3,3,5]],[1709593871,[1,1,2,2,2,2,2,3,74,88]],[1709593872,[1,1,2,4,11,33,49,66,87,91]],[1709593873,[1,1,2,2,2,2,2,2,4,8]],[1709593874,[1,1,2,2,2,2,2,2,3,3]],[1709593875,[1,1,2,2,2,2,2,2,3,3]],[1709593876,[0,1,2,2,2,2,2,2,3,5]],[1709593877,[1,2,2,38,57,70,85,106,129,135]],[1709593878,[1,2,2,2,2,2,2,2,3,5]],[1709593879,[1,1,2,2,2,2,2,3,4,7]],[1709593880,[1,2,2,2,2,2,2,3,3,5]],[1709593881,[0,1,1,2,2,2,2,2,3,3]],[1709593882,[1,1,2,45,64,85,105,136,166,178]],[1709593883,[1,1,2,2,2,2,5,28,66,71]],[1709593884,[1,1,2,2,2,2,2,2,12,29]],[1709593885,[1,1,2,2,2,2,2,3,29,38]],[1709593886,[1,1,2,2,2,2,2,2,2,2]],[1709593887,[1,1,2,2,2,2,2,2,2,3]],[1709593888,[0,1,2,24,39,47,62,80,86,88]],[1709593889,[0,1,1,1,1,2,2,2,2,2]],[1709593890,[0,1,1,2,2,2,2,2,4,9]],[1709593891,[1,1,2,2,2,2,2,2,4,4]],[1709593892,[0,1,2,2,2,2,2,2,4,5]],[1709593893,[0,1,1,27,43,55,73,89,128,144]],[1709593894,[0,1,1,2,2,2,10,41,66,78]],[1709593895,[1,1,1,1,1,2,2,2,3,3]],[1709593896,[1,1,1,2,2,2,2,3,26,44]],[1709593897,[1,1,1,2,2,2,2,2,19,25]],[1709593898,[0,1,1,2,2,2,2,5,23,37]],[1709593899,[0,1,35,105,123,139,160,185,221,230]],[1709593900,[1,1,1,1,1,2,2,2,3,3]],[1709593901,[1,1,1,2,2,2,2,2,3,4]],[1709593902,[0,1,1,1,2,2,2,2,3,3]],[1709593903,[0,1,1,1,1,2,2,2,2,3]],[1709593904,[0,1,1,24,38,58,93,128,178,181]],[1709593905,[0,1,1,14,42,63,85,124,160,167]],[1709593906,[0,1,1,1,1,1,2,2,2,23]],[1709593907,[1,1,1,1,1,1,2,2,3,3]],[1709593908,[0,1,1,1,2,2,2,2,2,3]],[1709593909,[0,1,1,1,1,1,2,2,2,3]],[1709593910,[0,1,3,74,88,103,122,137,165,181]],[1709593911,[0,1,1,1,1,2,2,2,2,4]],[1709593912,[0,1,1,2,2,2,2,2,2,3]],[1709593913,[0,1,1,1,1,1,2,2,2,3]],[1709593914,[0,1,1,2,2,2,2,2,2,3]],[1709593915,[0,1,2,30,41,53,67,78,97,104]],[1709593916,[0,1,1,2,8,21,40,59,103,115]],[1709593917,[1,1,1,1,1,1,2,2,3,3]],[1709593918,[0,1,1,1,1,2,2,2,3,6]],[1709593919,[0,1,1,2,3,9,27,54,90,96]],[1709593920,[0,1,1,1,1,1,2,2,3,4]],[1709593921,[1,2,60,136,154,173,196,224,256,273]],[1709593922,[0,1,1,1,2,2,2,2,16,37]],[1709593923,[0,1,1,2,2,2,2,2,3,6]],[1709593924,[0,1,1,2,2,2,2,3,8,22]],[1709593925,[0,1,1,1,1,2,2,3,19,33]],[1709593926,[0,1,1,16,48,92,129,173,197,206]],[1709593927,[1,1,4,121,143,163,182,206,241,260]],[1709593928,[1,1,1,2,2,2,2,2,9,28]],[1709593929,[0,1,1,1,2,2,2,4,34,44]],[1709593930,[0,1,1,1,1,1,2,2,3,6]],[1709593931,[1,1,1,1,1,2,2,2,3,3]],[1709593932,[1,2,83,158,172,192,212,230,273,294]],[1709593933,[0,1,1,2,2,2,9,30,57,70]],[1709593934,[1,1,1,1,2,2,2,2,3,4]],[1709593935,[1,1,1,1,2,2,2,2,22,41]],[1709593936,[1,1,1,2,2,2,2,2,3,6]],[1709593937,[1,1,1,2,2,19,53,100,175,190]],[1709593938,[0,1,82,172,182,195,210,225,242,248]],[1709593939,[0,1,1,1,1,1,1,2,4,5]],[1709593940,[1,1,1,1,1,2,2,2,3,4]],[1709593941,[0,1,1,1,1,2,2,2,3,4]],[1709593942,[0,1,1,1,1,1,1,2,3,3]],[1709593943,[0,1,81,170,183,198,216,249,282,297]],[1709593944,[1,1,1,3,14,33,55,78,148,167]],[1709593945,[0,1,2,2,3,3,3,3,4,5]],[1709593946,[0,1,1,2,3,3,3,4,5,6]],[1709593947,[1,2,3,3,3,3,3,4,5,6]],[1709593948,[0,1,1,2,3,3,8,54,97,108]],[1709593949,[3,149,205,266,281,292,315,348,1018,1029]],[1709593950,[0,1,1,3,4,14,29,47,70,80]],[1709593951,[1,2,2,3,3,3,3,3,5,5]],[1709593952,[1,1,1,2,2,2,2,3,4,5]],[1709593953,[1,2,2,3,3,3,3,4,5,6]],[1709593954,[0,1,1,130,157,184,250,289,329,345]],[1709593955,[2,41,111,171,184,201,235,271,1017,1034]],[1709593956,[1,1,1,2,2,2,3,3,4,5]],[1709593957,[0,2,2,3,3,2,3,4,6,7]],[1709593958,[1,1,1,1,2,2,3,3,5,6]],[1709593959,[1,2,2,3,3,3,3,5,6,7]],[1709593960,[0,27,197,292,307,326,345,1013,1035,1045]],[1709593961,[1,5,82,135,145,158,170,184,199,209]],[1709593962,[0,1,1,2,2,2,2,3,5,6]],[1709593963,[1,1,2,2,2,3,3,4,5,6]],[1709593964,[0,1,1,2,2,2,2,3,4,5]],[1709593965,[0,1,2,3,3,5,8,57,108,120]],[1709593966,[59,168,218,307,323,347,375,1040,1068,1112]],[1709593967,[0,2,25,66,74,85,105,128,161,179]],[1709593968,[0,1,1,2,2,2,2,3,5,8]],[1709593969,[0,1,1,2,2,2,2,4,5,5]],[1709593970,[0,1,1,2,2,2,2,3,5,6]],[1709593971,[0,1,2,202,258,295,321,348,382,390]],[1709593972,[0,133,210,293,336,356,405,1040,1120,1134]],[1709593973,[0,3,27,58,65,73,81,89,112,119]],[1709593974,[0,1,2,3,3,3,3,4,6,7]],[1709593975,[0,1,1,2,2,2,3,4,5,6]],[1709593976,[1,1,2,3,3,3,4,4,6,7]],[1709593977,[1,17,202,287,298,314,338,1016,1049,1059]],[1709593978,[0,22,78,145,158,177,203,232,265,280]],[1709593979,[0,1,1,13,86,120,153,204,334,380]],[1709593980,[96,196,302,420,449,1056,1116,1129,1150,1163]],[1709593981,[0,67,103,133,141,149,158,168,180,183]],[1709593982,[1,2,3,6,14,33,73,114,181,189]],[1709593983,[81,158,221,315,338,357,382,1106,1143,1158]],[1709593984,[1,43,83,118,126,134,146,158,177,198]],[1709593985,[0,1,1,2,2,2,3,15,44,57]],[1709593986,[0,1,2,2,2,2,3,3,6,6]],[1709593987,[0,1,1,1,1,1,2,2,4,7]],[1709593988,[1,1,3,99,172,247,277,296,318,330]],[1709593989,[0,88,138,196,233,260,284,326,1019,1030]],[1709593990,[0,1,2,3,4,8,22,38,61,74]],[1709593991,[0,1,1,1,2,2,2,3,5,6]],[1709593992,[1,1,2,3,3,3,4,4,7,12]],[1709593993,[1,1,1,2,2,2,2,3,5,6]],[1709593994,[1,14,265,333,349,367,391,1122,1141,1145]],[1709593995,[0,102,140,197,211,225,243,262,277,283]],[1709593996,[0,1,3,31,43,53,69,86,148,167]],[1709593997,[0,1,1,2,2,2,2,3,4,5]],[1709593998,[0,1,1,2,2,2,3,4,5,7]],[1709593999,[0,1,1,2,3,10,65,161,233,380]],[1709594000,[19,162,218,268,280,310,337,367,1059,1079]],[1709594001,[0,1,1,37,47,58,71,88,142,163]],[1709594002,[0,1,1,1,1,2,2,4,5,7]],[1709594003,[1,1,1,2,2,2,3,3,5,7]],[1709594004,[0,1,1,1,1,2,2,3,7,17]],[1709594005,[0,1,26,255,284,320,353,382,1181,1222]],[1709594006,[61,126,160,197,211,226,249,273,1239,1265]],[1709594007,[1,8,47,84,100,123,178,221,1012,1036]],[1709594008,[1,2,3,2,3,3,4,5,7,9]],[1709594009,[0,1,1,3,3,3,4,5,9,17]],[1709594010,[0,2,2,3,3,2,4,4,7,8]],[1709594011,[2,183,278,321,334,352,371,1049,1216,3024]],[1709594012,[2,63,126,196,205,221,243,261,1021,1036]],[1709594013,[1,1,2,4,5,14,30,47,62,79]],[1709594014,[1,1,2,3,3,3,4,4,8,8]],[1709594015,[0,2,3,4,5,8,24,45,86,98]],[1709594016,[1,1,2,182,244,283,324,416,475,484]],[1709594017,[155,216,253,292,400,467,1183,1232,1322,1540]],[1709594018,[10,141,180,236,254,277,320,1102,1143,1157]],[1709594019,[1,79,117,156,163,172,180,197,223,234]],[1709594020,[1,2,3,29,37,46,60,75,102,117]],[1709594021,[1,1,2,3,3,3,3,4,7,9]],[1709594022,[1,2,195,293,301,314,332,371,1266,3032]],[1709594023,[101,178,211,253,263,272,281,316,1242,1314]],[1709594024,[2,100,159,211,224,234,251,266,287,1108]],[1709594025,[0,8,40,71,79,86,95,110,145,163]],[1709594026,[0,1,1,2,2,3,3,5,7,10]],[1709594027,[1,2,3,3,3,3,4,9,78,89]],[1709594028,[56,248,303,370,382,400,1121,1214,3027,3050]],[1709594029,[103,174,200,237,244,253,262,276,1130,1219]],[1709594030,[17,124,155,186,192,202,219,245,265,281]],[1709594031,[1,29,61,90,101,113,129,147,165,175]],[1709594032,[0,1,2,14,23,31,43,56,69,75]],[1709594033,[1,3,3,159,228,301,339,365,398,416]],[1709594034,[92,197,243,288,305,330,359,1159,1226,1336]],[1709594035,[2,91,141,189,198,214,231,253,271,1021]],[1709594036,[1,2,24,54,60,69,79,104,144,163]],[1709594037,[1,1,2,3,3,3,4,4,8,9]],[1709594038,[0,1,1,1,1,1,2,2,6,6]],[1709594039,[0,136,404,646,676,1603,3244,3348,7792,7955]],[1709594040,[486,780,1279,3271,3328,3358,5113,7572,7965,8261]],[1709594041,[176,269,440,1410,3253,3422,7239,7374,7490,7776]],[1709594042,[148,257,349,1246,1323,1423,3332,3633,7535,7567]],[1709594043,[111,212,280,1318,1418,2165,3235,3325,7416,7525]],[1709594044,[189,297,504,1334,1709,3242,3306,3424,3710,4182]],[1709594045,[173,385,1139,1320,1390,2677,3241,3328,3392,4771]],[1709594046,[98,203,287,1314,1408,3213,3245,3321,3432,4453]],[1709594047,[100,254,359,1206,1224,1308,1362,1980,3551,3738]],[1709594048,[114,190,248,356,1224,1260,1290,1323,1437,1628]],[1709594049,[156,239,275,342,362,380,465,1418,1714,1831]],[1709594050,[204,371,473,501,523,536,563,588,668,671]],[1709594051,null],[1709594052,null],[1709594053,null],[1709594054,null],[1709594055,null],[1709594056,null],[1709594057,null],[1709594058,null],[1709594059,null],[1709594060,null],[1709594061,null],[1709594062,null],[1709594063,null],[1709594064,null],[1709594065,null],[1709594066,null],[1709594067,null],[1709594068,null],[1709594069,null],[1709594070,null],[1709594071,null],[1709594072,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([[1709593827,[25,25,0]],[1709593828,[0,0,0]],[1709593829,[1,1,0]],[1709593830,[25,25,0]],[1709593831,[1,0,1]],[1709593832,[71,60,11]],[1709593833,[3,3,0]],[1709593834,[6,3,3]],[1709593835,[9,4,5]],[1709593836,[11,10,1]],[1709593837,[13,0,13]],[1709593838,[18,16,2]],[1709593839,[19,5,14]],[1709593840,[24,11,13]],[1709593841,[26,16,10]],[1709593842,[27,18,9]],[1709593843,[32,32,0]],[1709593844,[34,34,0]],[1709593845,[37,37,0]],[1709593846,[39,39,0]],[1709593847,[43,43,0]],[1709593848,[44,44,0]],[1709593849,[48,48,0]],[1709593850,[50,50,0]],[1709593851,[54,54,0]],[1709593852,[56,56,0]],[1709593853,[61,61,0]],[1709593854,[61,61,0]],[1709593855,[65,65,0]],[1709593856,[67,67,0]],[1709593857,[70,70,0]],[1709593858,[74,74,0]],[1709593859,[76,76,0]],[1709593860,[80,80,0]],[1709593861,[81,81,0]],[1709593862,[84,84,0]],[1709593863,[87,87,0]],[1709593864,[91,91,0]],[1709593865,[92,92,0]],[1709593866,[96,96,0]],[1709593867,[98,98,0]],[1709593868,[101,101,0]],[1709593869,[105,105,0]],[1709593870,[107,107,0]],[1709593871,[110,110,0]],[1709593872,[113,113,0]],[1709593873,[116,116,0]],[1709593874,[118,118,0]],[1709593875,[121,121,0]],[1709593876,[124,124,0]],[1709593877,[126,126,0]],[1709593878,[129,129,0]],[1709593879,[133,133,0]],[1709593880,[134,134,0]],[1709593881,[138,138,0]],[1709593882,[141,141,0]],[1709593883,[143,143,0]],[1709593884,[146,146,0]],[1709593885,[149,149,0]],[1709593886,[152,152,0]],[1709593887,[154,154,0]],[1709593888,[158,158,0]],[1709593889,[160,160,0]],[1709593890,[164,164,0]],[1709593891,[165,165,0]],[1709593892,[170,170,0]],[1709593893,[171,171,0]],[1709593894,[175,175,0]],[1709593895,[176,176,0]],[1709593896,[181,181,0]],[1709593897,[183,183,0]],[1709593898,[185,185,0]],[1709593899,[189,189,0]],[1709593900,[191,191,0]],[1709593901,[194,194,0]],[1709593902,[196,196,0]],[1709593903,[200,200,0]],[1709593904,[202,202,0]],[1709593905,[206,206,0]],[1709593906,[207,207,0]],[1709593907,[211,211,0]],[1709593908,[213,213,0]],[1709593909,[217,217,0]],[1709593910,[220,220,0]],[1709593911,[223,223,0]],[1709593912,[224,224,0]],[1709593913,[227,227,0]],[1709593914,[231,231,0]],[1709593915,[234,234,0]],[1709593916,[235,235,0]],[1709593917,[239,239,0]],[1709593918,[242,242,0]],[1709593919,[244,244,0]],[1709593920,[248,248,0]],[1709593921,[251,251,0]],[1709593922,[252,252,0]],[1709593923,[256,256,0]],[1709593924,[259,259,0]],[1709593925,[262,262,0]],[1709593926,[264,264,0]],[1709593927,[267,267,0]],[1709593928,[269,269,0]],[1709593929,[272,272,0]],[1709593930,[276,276,0]],[1709593931,[279,279,0]],[1709593932,[281,281,0]],[1709593933,[284,284,0]],[1709593934,[286,286,0]],[1709593935,[290,290,0]],[1709593936,[291,291,0]],[1709593937,[296,296,0]],[1709593938,[297,297,0]],[1709593939,[301,301,0]],[1709593940,[304,304,0]],[1709593941,[306,306,0]],[1709593942,[309,309,0]],[1709593943,[312,312,0]],[1709593944,[315,315,0]],[1709593945,[317,317,0]],[1709593946,[321,321,0]],[1709593947,[322,322,0]],[1709593948,[327,327,0]],[1709593949,[329,329,0]],[1709593950,[332,332,0]],[1709593951,[335,335,0]],[1709593952,[338,338,0]],[1709593953,[339,339,0]],[1709593954,[341,341,0]],[1709593955,[340,340,0]],[1709593956,[340,340,0]],[1709593957,[340,340,0]],[1709593958,[340,340,0]],[1709593959,[340,340,0]],[1709593960,[339,339,0]],[1709593961,[340,340,0]],[1709593962,[341,341,0]],[1709593963,[339,339,0]],[1709593964,[341,341,0]],[1709593965,[340,340,0]],[1709593966,[339,339,0]],[1709593967,[340,340,0]],[1709593968,[341,341,0]],[1709593969,[339,339,0]],[1709593970,[340,340,0]],[1709593971,[341,341,0]],[1709593972,[339,339,0]],[1709593973,[341,341,0]],[1709593974,[340,340,0]],[1709593975,[340,340,0]],[1709593976,[340,340,0]],[1709593977,[340,340,0]],[1709593978,[340,340,0]],[1709593979,[340,340,0]],[1709593980,[339,339,0]],[1709593981,[341,341,0]],[1709593982,[340,340,0]],[1709593983,[340,340,0]],[1709593984,[340,340,0]],[1709593985,[339,339,0]],[1709593986,[340,340,0]],[1709593987,[341,341,0]],[1709593988,[340,340,0]],[1709593989,[339,339,0]],[1709593990,[341,341,0]],[1709593991,[340,340,0]],[1709593992,[340,340,0]],[1709593993,[340,340,0]],[1709593994,[340,340,0]],[1709593995,[339,339,0]],[1709593996,[341,341,0]],[1709593997,[339,339,0]],[1709593998,[340,340,0]],[1709593999,[341,341,0]],[1709594000,[340,340,0]],[1709594001,[339,339,0]],[1709594002,[341,341,0]],[1709594003,[340,340,0]],[1709594004,[339,339,0]],[1709594005,[341,341,0]],[1709594006,[340,340,0]],[1709594007,[340,340,0]],[1709594008,[340,340,0]],[1709594009,[340,340,0]],[1709594010,[340,340,0]],[1709594011,[340,340,0]],[1709594012,[340,340,0]],[1709594013,[340,340,0]],[1709594014,[340,340,0]],[1709594015,[340,340,0]],[1709594016,[339,339,0]],[1709594017,[341,341,0]],[1709594018,[339,339,0]],[1709594019,[341,341,0]],[1709594020,[340,340,0]],[1709594021,[340,340,0]],[1709594022,[340,340,0]],[1709594023,[339,339,0]],[1709594024,[341,341,0]],[1709594025,[340,340,0]],[1709594026,[340,340,0]],[1709594027,[340,340,0]],[1709594028,[340,340,0]],[1709594029,[340,340,0]],[1709594030,[340,340,0]],[1709594031,[340,340,0]],[1709594032,[340,340,0]],[1709594033,[340,340,0]],[1709594034,[340,340,0]],[1709594035,[340,340,0]],[1709594036,[340,340,0]],[1709594037,[340,340,0]],[1709594038,[339,339,0]],[1709594039,[341,338,3]],[1709594040,[339,328,11]],[1709594041,[340,337,3]],[1709594042,[340,332,8]],[1709594043,[340,323,17]],[1709594044,[341,297,44]],[1709594045,[340,293,47]],[1709594046,[340,320,20]],[1709594047,[340,287,53]],[1709594048,[340,294,46]],[1709594049,[340,276,64]],[1709594050,[340,70,270]],[1709594051,[340,0,340]],[1709594052,[340,0,340]],[1709594053,[340,0,340]],[1709594054,[340,0,340]],[1709594055,[340,0,340]],[1709594056,[339,0,339]],[1709594057,[341,0,341]],[1709594058,[340,0,340]],[1709594059,[340,0,340]],[1709594060,[339,0,339]],[1709594061,[341,0,341]],[1709594062,[339,0,339]],[1709594063,[341,0,341]],[1709594064,[340,0,340]],[1709594065,[340,0,340]],[1709594066,[340,0,340]],[1709594067,[340,0,340]],[1709594068,[339,0,339]],[1709594069,[341,0,341]],[1709594070,[340,0,340]],[1709594071,[339,0,339]],[1709594072,[504,0,504]]]);
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: {