-
Notifications
You must be signed in to change notification settings - Fork 928
/
index.html
1235 lines (1165 loc) · 97.3 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="shortcut icon" type="image/x-icon" href="style/favicon.ico"/>
<link href="style/style.css" rel="stylesheet" type="text/css" />
<link href="style/bootstrap.min.css" rel="stylesheet" type="text/css" />
<script src="js/jquery-3.5.1.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/gatling.js"></script>
<script src="js/menu.js"></script>
<script src="js/ellipsis.js"></script>
<script src="js/all_sessions.js"></script>
<script src="js/stats.js"></script>
<script src="js/highstock.js"></script>
<script src="js/highcharts-more.js"></script>
<script src="js/theme.js"></script>
<script src="js/unpack.js"></script>
<title>Gatling Stats - Global Information</title>
</head>
<body>
<script>
const storedTheme = localStorage.getItem('theme') || (window.matchMedia("(prefers-color-scheme: dark)").matches ? "dark" : "light");
if (storedTheme) document.documentElement.setAttribute('data-theme', storedTheme)
function toggleTheme() {
const currentTheme = document.documentElement.getAttribute("data-theme");
const targetTheme = currentTheme === "light" ? "dark" : "light";
document.documentElement.setAttribute('data-theme', targetTheme)
localStorage.setItem('theme', targetTheme);
};
</script>
<div class="app-container">
<div class="frise"></div>
<div class="head">
<div class="gatling-open-source">
<a class="gatling-logo gatling-logo-light" href="https://gatling.io" target="blank_" title="Gatling Home Page"><img alt="Gatling" src="style/logo-light.svg"/></a>
<a class="gatling-logo gatling-logo-dark" href="https://gatling.io" target="blank_" title="Gatling Home Page"><img alt="Gatling" src="style/logo-dark.svg"/></a>
<a class="gatling-documentation" href="https://gatling.io/docs/" target="_blank">Documentation</a>
</div>
<div class="nav spacer"></div>
<a class="enterprise" href="https://gatling.io/enterprise/next-step/" target="_blank"><strong>Try</strong>
<img class="logo-enterprise-light" alt="Gatling Enterprise" src="style/logo-enterprise-light.svg"/>
<img class="logo-enterprise-dark" alt="Gatling Enterprise" src="style/logo-enterprise-dark.svg"/>
</a>
<button id="theme-toggle" class="theme-toggle" type="button" onclick="toggleTheme()" aria-label="Toggle user interface mode">
<span class="toggle-dark"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-moon"><path d="M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z"></path></svg></span>
<span class="toggle-light"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-sun"><circle cx="12" cy="12" r="5"></circle><line x1="12" y1="1" x2="12" y2="3"></line><line x1="12" y1="21" x2="12" y2="23"></line><line x1="4.22" y1="4.22" x2="5.64" y2="5.64"></line><line x1="18.36" y1="18.36" x2="19.78" y2="19.78"></line><line x1="1" y1="12" x2="3" y2="12"></line><line x1="21" y1="12" x2="23" y2="12"></line><line x1="4.22" y1="19.78" x2="5.64" y2="18.36"></line><line x1="18.36" y1="5.64" x2="19.78" y2="4.22"></line></svg></span>
</button>
</div>
<div class="container details">
<div class="nav">
<ul></ul>
</div>
<div class="cadre">
<div class="content">
<div class="content-header">
<div class="onglet">
RinhaBackendCrebitosSimulation
</div>
<div class="sous-menu" id="sousMenu">
<div class="sous-menu-spacer">
<div class="item ouvert"><a href="index.html">Global</a></div>
<div class="item "><a id="details_link" href="#">Details</a></div>
</div>
</div>
</div>
<div class="content-in">
<div class="container-article">
<div class="article">
<div class="schema-container">
<div id="ranges" class="schema ranges">
</div>
<div class="schema polar">
<div id="container_number_of_requests"></div>
</div>
<div class="simulation-card">
<div class="simulation-version-information">
<span class="simulation-information-title">Gatling Version</span>
<span class="simulation-information-item">
<span class="simulation-information-label">Version: </span>
<span>3.10.3</span>
</span>
<span class="simulation-information-item">
<span class="simulation-information-label">Released: </span>
<span>2023-12-20</span>
</span>
</div>
<div id="simulation-information" class="simulation-version-information">
<span class="simulation-information-title">Run Information</span>
<div class="simulation-information-container">
<span class="simulation-information-item">
<span class="simulation-information-label">Date: </span>
<span>2024-02-19 17:24:23 GMT</span>
</span>
<span class="simulation-information-item">
<span class="simulation-information-label">Duration: </span>
<span>4m 4s </span>
</span>
<span class="simulation-tooltip simulation-information-item description" title="Description" data-content="Rinha de Backend - 2024/Q1: Crébito - victor99z">
<span class="simulation-information-label">Description: </span>
<span>Rinha de Backend - 2024/Q1: Crébito - victor99z</span>
</span>
</div>
</div>
</div>
</div>
<div id="statistics_table_container">
<div id="stats" class="statistics extensible-geant collapsed">
<div class="title">
<div id="statistics_title" class="title_base"><span class="title_base_stats">Stats</span><span class="expand-table">Fixed height</span><span id="toggle-stats" class="toggle-table"></span><span class="collapse-table">Full size</span></div>
<div class="right">
<button class="statistics-button expand-all-button">Expand all groups</button>
<button class="statistics-button collapse-all-button">Collapse all groups</button>
<button id="statistics_full_screen" class="statistics-button" onclick="openStatisticsTableModal()"><img alt="Fullscreen" src="style/fullscreen.svg"></button>
</div>
</div>
<div class="scrollable">
<table id="container_statistics_head" class="statistics-in extensible-geant">
<thead>
<tr>
<th rowspan="2" id="col-1" class="header sortable sorted-up"><span>Requests</span></th>
<th colspan="5" class="header"><span class="executions">Executions</span></th>
<th colspan="8" class="header"><span class="response-time">Response Time (ms)</span></th>
</tr>
<tr>
<th id="col-2" class="header sortable"><span>Total</span></th>
<th id="col-3" class="header sortable"><span>OK</span></th>
<th id="col-4" class="header sortable"><span>KO</span></th>
<th id="col-5" class="header sortable"><span>% KO</span></th>
<th id="col-6" class="header sortable"><span><abbr title="Count of events per second">Cnt/s</abbr></span></th>
<th id="col-7" class="header sortable"><span>Min</span></th>
<th id="col-8" class="header sortable"><span>50th pct</span></th>
<th id="col-9" class="header sortable"><span>75th pct</span></th>
<th id="col-10" class="header sortable"><span>95th pct</span></th>
<th id="col-11" class="header sortable"><span>99th pct</span></th>
<th id="col-12" class="header sortable"><span>Max</span></th>
<th id="col-13" class="header sortable"><span>Mean</span></th>
<th id="col-14" class="header sortable"><span><abbr title="Standard Deviation">Std Dev</abbr></span></th>
</tr>
</thead>
<tbody></tbody>
</table>
<table id="container_statistics_body" class="statistics-in extensible-geant">
<tbody></tbody>
</table>
</div>
</div>
</div>
<dialog id="statistics_table_modal" class="statistics-table-modal">
<div class="statistics-table-modal-header"><button class="button-modal" onclick="closeStatisticsTableModal()"><img alt="Close" src="style/close.svg"></button></div>
<div class="statistics-table-modal-container">
<div id="statistics_table_modal_content" class="statistics-table-modal-content"></div>
</div>
</dialog>
<script>
function openStatisticsTableModal () {
const statsTable = document.getElementById("stats");
const statsTableModal = document.getElementById("statistics_table_modal");
const fullScreenButton = document.getElementById("statistics_full_screen");
fullScreenButton.disabled = true;
if (typeof statsTableModal.showModal === "function") {
const statsTableModalContent = document.getElementById("statistics_table_modal_content");
statsTableModalContent.innerHTML = "";
statsTableModalContent.appendChild(statsTable);
statsTableModal.showModal();
statsTableModal.addEventListener("close", function () {
const container = document.getElementById("statistics_table_container");
container.appendChild(statsTable);
fullScreenButton.disabled = false;
});
} else {
const incompatibleBrowserVersionMessage = document.createElement("div");
incompatibleBrowserVersionMessage.innerText = "Sorry, the <dialog> API is not supported by this browser.";
statsTable.insertBefore(incompatibleBrowserVersionMessage, statsTable.children[0]);
}
}
function closeStatisticsTableModal () {
const statsTableModal = document.getElementById("statistics_table_modal");
statsTableModal.close();
}
</script>
<div class="statistics extensible-geant collapsed">
<div class="title">
Errors
</div>
<table id="container_errors" class="statistics-in extensible-geant">
<thead>
<tr>
<th id="error-col-1" class="header sortable"><span>Error</span></th>
<th id="error-col-2" class="header sortable"><span>Count</span></th>
<th id="error-col-3" class="header sortable"><span>Percentage</span></th>
</tr>
</thead>
<tbody>
<tr>
<td class="error-col-1 total ko">status.find.in([200, 209], 304), found 404<span class="value" style="display:none">0</span></td>
<td class="value error-col-2 total ko">1415</td>
<td class="value error-col-3 total ko">60.367 %</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">1</span></td>
<td class="value error-col-2 total ko">559</td>
<td class="value error-col-3 total ko">23.848 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">status.find.in(200), but actually found 502<span class="value" style="display:none">2</span></td>
<td class="value error-col-2 total ko">282</td>
<td class="value error-col-3 total ko">12.031 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">status.find.in([200, 209], 304), found 502<span class="value" style="display:none">3</span></td>
<td class="value error-col-2 total ko">35</td>
<td class="value error-col-3 total ko">1.493 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">jmesPath(saldo.total).find.is(0), but actually found 1<span class="value" style="display:none">4</span></td>
<td class="value error-col-2 total ko">20</td>
<td class="value error-col-3 total ko">0.853 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">Request timeout to localhost/127.0.0.1:9999 after 60000 ms<span class="value" style="display:none">5</span></td>
<td class="value error-col-2 total ko">19</td>
<td class="value error-col-3 total ko">0.811 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">status.find.in(200,422), but actually found 404<span class="value" style="display:none">6</span></td>
<td class="value error-col-2 total ko">9</td>
<td class="value error-col-3 total ko">0.384 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">status.find.in(200), but actually found 404<span class="value" style="display:none">7</span></td>
<td class="value error-col-2 total ko">4</td>
<td class="value error-col-3 total ko">0.171 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">status.find.in([200, 209], 304), found 500<span class="value" style="display:none">8</span></td>
<td class="value error-col-2 total ko">1</td>
<td class="value error-col-3 total ko">0.043 %</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: [
[1708363463000,0],[1708363464000,0],[1708363465000,0],[1708363466000,0],[1708363467000,1],[1708363468000,1],[1708363469000,2],[1708363470000,4],[1708363471000,4],[1708363472000,5],[1708363473000,6],[1708363474000,7],[1708363475000,8],[1708363476000,8],[1708363477000,10],[1708363478000,10],[1708363479000,12],[1708363480000,12],[1708363481000,14],[1708363482000,14],[1708363483000,15],[1708363484000,16],[1708363485000,17],[1708363486000,17],[1708363487000,19],[1708363488000,20],[1708363489000,20],[1708363490000,22],[1708363491000,22],[1708363492000,23],[1708363493000,25],[1708363494000,25],[1708363495000,26],[1708363496000,26],[1708363497000,28],[1708363498000,29],[1708363499000,30],[1708363500000,30],[1708363501000,32],[1708363502000,32],[1708363503000,33],[1708363504000,34],[1708363505000,35],[1708363506000,36],[1708363507000,37],[1708363508000,38],[1708363509000,39],[1708363510000,39],[1708363511000,41],[1708363512000,41],[1708363513000,43],[1708363514000,43],[1708363515000,44],[1708363516000,45],[1708363517000,46],[1708363518000,47],[1708363519000,48],[1708363520000,48],[1708363521000,50],[1708363522000,50],[1708363523000,52],[1708363524000,53],[1708363525000,54],[1708363526000,55],[1708363527000,57],[1708363528000,58],[1708363529000,58],[1708363530000,59],[1708363531000,60],[1708363532000,60],[1708363533000,62],[1708363534000,62],[1708363535000,64],[1708363536000,64],[1708363537000,65],[1708363538000,66],[1708363539000,67],[1708363540000,68],[1708363541000,68],[1708363542000,68],[1708363543000,70],[1708363544000,70],[1708363545000,73],[1708363546000,72],[1708363547000,73],[1708363548000,74],[1708363549000,75],[1708363550000,76],[1708363551000,77],[1708363552000,78],[1708363553000,79],[1708363554000,79],[1708363555000,81],[1708363556000,81],[1708363557000,82],[1708363558000,83],[1708363559000,89],[1708363560000,131],[1708363561000,212],[1708363562000,120],[1708363563000,88],[1708363564000,96],[1708363565000,95],[1708363566000,97],[1708363567000,97],[1708363568000,98],[1708363569000,100],[1708363570000,100],[1708363571000,101],[1708363572000,103],[1708363573000,103],[1708363574000,103],[1708363575000,105],[1708363576000,106],[1708363577000,107],[1708363578000,107],[1708363579000,110],[1708363580000,109],[1708363581000,110],[1708363582000,111],[1708363583000,113],[1708363584000,114],[1708363585000,115],[1708363586000,115],[1708363587000,117],[1708363588000,118],[1708363589000,118],[1708363590000,117],[1708363591000,117],[1708363592000,117],[1708363593000,117],[1708363594000,117],[1708363595000,117],[1708363596000,117],[1708363597000,116],[1708363598000,117],[1708363599000,117],[1708363600000,116],[1708363601000,117],[1708363602000,117],[1708363603000,117],[1708363604000,119],[1708363605000,117],[1708363606000,119],[1708363607000,117],[1708363608000,117],[1708363609000,117],[1708363610000,118],[1708363611000,117],[1708363612000,117],[1708363613000,117],[1708363614000,116],[1708363615000,117],[1708363616000,117],[1708363617000,117],[1708363618000,118],[1708363619000,117],[1708363620000,117],[1708363621000,117],[1708363622000,117],[1708363623000,117],[1708363624000,112],[1708363625000,114],[1708363626000,111],[1708363627000,111],[1708363628000,110],[1708363629000,111],[1708363630000,111],[1708363631000,112],[1708363632000,111],[1708363633000,112],[1708363634000,111],[1708363635000,110],[1708363636000,111],[1708363637000,111],[1708363638000,111],[1708363639000,111],[1708363640000,110],[1708363641000,111],[1708363642000,112],[1708363643000,112],[1708363644000,111],[1708363645000,111],[1708363646000,111],[1708363647000,113],[1708363648000,111],[1708363649000,111],[1708363650000,111],[1708363651000,112],[1708363652000,111],[1708363653000,110],[1708363654000,111],[1708363655000,111],[1708363656000,111],[1708363657000,112],[1708363658000,112],[1708363659000,111],[1708363660000,111],[1708363661000,111],[1708363662000,112],[1708363663000,111],[1708363664000,111],[1708363665000,111],[1708363666000,111],[1708363667000,110],[1708363668000,111],[1708363669000,111],[1708363670000,111],[1708363671000,111],[1708363672000,111],[1708363673000,111],[1708363674000,111],[1708363675000,111],[1708363676000,112],[1708363677000,111],[1708363678000,112],[1708363679000,111],[1708363680000,111],[1708363681000,112],[1708363682000,112],[1708363683000,111],[1708363684000,110],[1708363685000,111],[1708363686000,111],[1708363687000,110],[1708363688000,111],[1708363689000,111],[1708363690000,111],[1708363691000,111],[1708363692000,111],[1708363693000,111],[1708363694000,111],[1708363695000,111],[1708363696000,111],[1708363697000,111],[1708363698000,112],[1708363699000,111],[1708363700000,111],[1708363701000,110],[1708363702000,113],[1708363703000,111],[1708363704000,112],[1708363705000,111],[1708363706000,112],[1708363707000,108]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#68b65c',
name: 'débitos',
data: [
[1708363463000,0],[1708363464000,0],[1708363465000,0],[1708363466000,0],[1708363467000,1],[1708363468000,2],[1708363469000,4],[1708363470000,6],[1708363471000,7],[1708363472000,9],[1708363473000,11],[1708363474000,13],[1708363475000,15],[1708363476000,16],[1708363477000,19],[1708363478000,20],[1708363479000,22],[1708363480000,24],[1708363481000,25],[1708363482000,28],[1708363483000,29],[1708363484000,31],[1708363485000,33],[1708363486000,35],[1708363487000,37],[1708363488000,38],[1708363489000,40],[1708363490000,42],[1708363491000,44],[1708363492000,46],[1708363493000,47],[1708363494000,50],[1708363495000,52],[1708363496000,53],[1708363497000,56],[1708363498000,57],[1708363499000,60],[1708363500000,61],[1708363501000,62],[1708363502000,65],[1708363503000,67],[1708363504000,69],[1708363505000,69],[1708363506000,72],[1708363507000,74],[1708363508000,74],[1708363509000,77],[1708363510000,79],[1708363511000,80],[1708363512000,82],[1708363513000,84],[1708363514000,86],[1708363515000,88],[1708363516000,89],[1708363517000,92],[1708363518000,93],[1708363519000,95],[1708363520000,97],[1708363521000,98],[1708363522000,101],[1708363523000,102],[1708363524000,104],[1708363525000,107],[1708363526000,109],[1708363527000,111],[1708363528000,115],[1708363529000,114],[1708363530000,116],[1708363531000,118],[1708363532000,120],[1708363533000,121],[1708363534000,123],[1708363535000,125],[1708363536000,127],[1708363537000,128],[1708363538000,130],[1708363539000,132],[1708363540000,134],[1708363541000,135],[1708363542000,138],[1708363543000,139],[1708363544000,142],[1708363545000,143],[1708363546000,145],[1708363547000,147],[1708363548000,147],[1708363549000,150],[1708363550000,152],[1708363551000,153],[1708363552000,155],[1708363553000,158],[1708363554000,160],[1708363555000,162],[1708363556000,163],[1708363557000,165],[1708363558000,167],[1708363559000,178],[1708363560000,254],[1708363561000,409],[1708363562000,221],[1708363563000,175],[1708363564000,191],[1708363565000,192],[1708363566000,194],[1708363567000,196],[1708363568000,197],[1708363569000,199],[1708363570000,201],[1708363571000,203],[1708363572000,205],[1708363573000,206],[1708363574000,209],[1708363575000,210],[1708363576000,213],[1708363577000,214],[1708363578000,214],[1708363579000,219],[1708363580000,219],[1708363581000,221],[1708363582000,223],[1708363583000,225],[1708363584000,228],[1708363585000,230],[1708363586000,230],[1708363587000,233],[1708363588000,234],[1708363589000,235],[1708363590000,232],[1708363591000,233],[1708363592000,233],[1708363593000,233],[1708363594000,235],[1708363595000,232],[1708363596000,233],[1708363597000,233],[1708363598000,233],[1708363599000,233],[1708363600000,233],[1708363601000,233],[1708363602000,233],[1708363603000,233],[1708363604000,237],[1708363605000,232],[1708363606000,235],[1708363607000,233],[1708363608000,235],[1708363609000,233],[1708363610000,235],[1708363611000,233],[1708363612000,234],[1708363613000,233],[1708363614000,232],[1708363615000,234],[1708363616000,233],[1708363617000,233],[1708363618000,235],[1708363619000,232],[1708363620000,233],[1708363621000,235],[1708363622000,233],[1708363623000,233],[1708363624000,224],[1708363625000,228],[1708363626000,221],[1708363627000,221],[1708363628000,220],[1708363629000,222],[1708363630000,222],[1708363631000,222],[1708363632000,221],[1708363633000,223],[1708363634000,221],[1708363635000,222],[1708363636000,222],[1708363637000,221],[1708363638000,221],[1708363639000,221],[1708363640000,220],[1708363641000,221],[1708363642000,223],[1708363643000,223],[1708363644000,221],[1708363645000,223],[1708363646000,221],[1708363647000,225],[1708363648000,220],[1708363649000,222],[1708363650000,221],[1708363651000,222],[1708363652000,221],[1708363653000,221],[1708363654000,222],[1708363655000,222],[1708363656000,221],[1708363657000,223],[1708363658000,223],[1708363659000,222],[1708363660000,220],[1708363661000,222],[1708363662000,222],[1708363663000,222],[1708363664000,221],[1708363665000,221],[1708363666000,222],[1708363667000,222],[1708363668000,222],[1708363669000,221],[1708363670000,222],[1708363671000,221],[1708363672000,221],[1708363673000,221],[1708363674000,222],[1708363675000,221],[1708363676000,222],[1708363677000,221],[1708363678000,223],[1708363679000,221],[1708363680000,222],[1708363681000,223],[1708363682000,223],[1708363683000,223],[1708363684000,221],[1708363685000,221],[1708363686000,222],[1708363687000,221],[1708363688000,221],[1708363689000,222],[1708363690000,221],[1708363691000,221],[1708363692000,221],[1708363693000,221],[1708363694000,221],[1708363695000,220],[1708363696000,221],[1708363697000,221],[1708363698000,223],[1708363699000,222],[1708363700000,222],[1708363701000,220],[1708363702000,223],[1708363703000,220],[1708363704000,223],[1708363705000,221],[1708363706000,223],[1708363707000,216]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#f15b4f',
name: 'extratos',
data: [
[1708363463000,0],[1708363464000,0],[1708363465000,0],[1708363466000,0],[1708363467000,1],[1708363468000,1],[1708363469000,1],[1708363470000,1],[1708363471000,1],[1708363472000,1],[1708363473000,2],[1708363474000,1],[1708363475000,2],[1708363476000,2],[1708363477000,1],[1708363478000,2],[1708363479000,2],[1708363480000,2],[1708363481000,2],[1708363482000,2],[1708363483000,2],[1708363484000,2],[1708363485000,3],[1708363486000,2],[1708363487000,3],[1708363488000,2],[1708363489000,3],[1708363490000,2],[1708363491000,3],[1708363492000,3],[1708363493000,3],[1708363494000,3],[1708363495000,3],[1708363496000,3],[1708363497000,3],[1708363498000,4],[1708363499000,3],[1708363500000,3],[1708363501000,4],[1708363502000,3],[1708363503000,4],[1708363504000,4],[1708363505000,4],[1708363506000,4],[1708363507000,4],[1708363508000,4],[1708363509000,4],[1708363510000,4],[1708363511000,4],[1708363512000,4],[1708363513000,5],[1708363514000,4],[1708363515000,5],[1708363516000,5],[1708363517000,4],[1708363518000,5],[1708363519000,5],[1708363520000,5],[1708363521000,5],[1708363522000,5],[1708363523000,5],[1708363524000,5],[1708363525000,6],[1708363526000,5],[1708363527000,6],[1708363528000,5],[1708363529000,6],[1708363530000,5],[1708363531000,6],[1708363532000,6],[1708363533000,6],[1708363534000,6],[1708363535000,6],[1708363536000,6],[1708363537000,6],[1708363538000,7],[1708363539000,6],[1708363540000,6],[1708363541000,7],[1708363542000,6],[1708363543000,7],[1708363544000,7],[1708363545000,7],[1708363546000,7],[1708363547000,7],[1708363548000,7],[1708363549000,7],[1708363550000,7],[1708363551000,7],[1708363552000,7],[1708363553000,8],[1708363554000,7],[1708363555000,8],[1708363556000,8],[1708363557000,7],[1708363558000,8],[1708363559000,8],[1708363560000,11],[1708363561000,19],[1708363562000,10],[1708363563000,8],[1708363564000,9],[1708363565000,10],[1708363566000,9],[1708363567000,10],[1708363568000,9],[1708363569000,10],[1708363570000,9],[1708363571000,10],[1708363572000,10],[1708363573000,10],[1708363574000,10],[1708363575000,10],[1708363576000,10],[1708363577000,10],[1708363578000,11],[1708363579000,10],[1708363580000,10],[1708363581000,11],[1708363582000,10],[1708363583000,11],[1708363584000,11],[1708363585000,11],[1708363586000,11],[1708363587000,11],[1708363588000,11],[1708363589000,11],[1708363590000,11],[1708363591000,11],[1708363592000,11],[1708363593000,11],[1708363594000,11],[1708363595000,11],[1708363596000,11],[1708363597000,11],[1708363598000,11],[1708363599000,11],[1708363600000,11],[1708363601000,11],[1708363602000,11],[1708363603000,11],[1708363604000,12],[1708363605000,11],[1708363606000,12],[1708363607000,11],[1708363608000,11],[1708363609000,11],[1708363610000,11],[1708363611000,11],[1708363612000,11],[1708363613000,11],[1708363614000,11],[1708363615000,11],[1708363616000,11],[1708363617000,11],[1708363618000,11],[1708363619000,11],[1708363620000,11],[1708363621000,11],[1708363622000,11],[1708363623000,11],[1708363624000,10],[1708363625000,10],[1708363626000,10],[1708363627000,10],[1708363628000,10],[1708363629000,10],[1708363630000,10],[1708363631000,10],[1708363632000,10],[1708363633000,10],[1708363634000,10],[1708363635000,10],[1708363636000,10],[1708363637000,10],[1708363638000,10],[1708363639000,10],[1708363640000,10],[1708363641000,10],[1708363642000,10],[1708363643000,10],[1708363644000,10],[1708363645000,10],[1708363646000,10],[1708363647000,11],[1708363648000,10],[1708363649000,10],[1708363650000,10],[1708363651000,10],[1708363652000,10],[1708363653000,10],[1708363654000,10],[1708363655000,10],[1708363656000,10],[1708363657000,10],[1708363658000,10],[1708363659000,10],[1708363660000,10],[1708363661000,10],[1708363662000,10],[1708363663000,10],[1708363664000,10],[1708363665000,10],[1708363666000,10],[1708363667000,10],[1708363668000,10],[1708363669000,10],[1708363670000,10],[1708363671000,10],[1708363672000,10],[1708363673000,10],[1708363674000,10],[1708363675000,10],[1708363676000,10],[1708363677000,10],[1708363678000,10],[1708363679000,10],[1708363680000,10],[1708363681000,10],[1708363682000,10],[1708363683000,10],[1708363684000,10],[1708363685000,10],[1708363686000,10],[1708363687000,10],[1708363688000,10],[1708363689000,10],[1708363690000,10],[1708363691000,10],[1708363692000,10],[1708363693000,10],[1708363694000,10],[1708363695000,10],[1708363696000,10],[1708363697000,10],[1708363698000,10],[1708363699000,10],[1708363700000,10],[1708363701000,10],[1708363702000,11],[1708363703000,10],[1708363704000,10],[1708363705000,10],[1708363706000,10],[1708363707000,9]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FFDD00',
name: 'validações',
data: [
[1708363463000,0],[1708363464000,0],[1708363465000,0],[1708363466000,5],[1708363467000,5],[1708363468000,0],[1708363469000,0],[1708363470000,0],[1708363471000,0],[1708363472000,0],[1708363473000,0],[1708363474000,0],[1708363475000,0],[1708363476000,0],[1708363477000,0],[1708363478000,0],[1708363479000,0],[1708363480000,0],[1708363481000,0],[1708363482000,0],[1708363483000,0],[1708363484000,0],[1708363485000,0],[1708363486000,0],[1708363487000,0],[1708363488000,0],[1708363489000,0],[1708363490000,0],[1708363491000,0],[1708363492000,0],[1708363493000,0],[1708363494000,0],[1708363495000,0],[1708363496000,0],[1708363497000,0],[1708363498000,0],[1708363499000,0],[1708363500000,0],[1708363501000,0],[1708363502000,0],[1708363503000,0],[1708363504000,0],[1708363505000,0],[1708363506000,0],[1708363507000,0],[1708363508000,0],[1708363509000,0],[1708363510000,0],[1708363511000,0],[1708363512000,0],[1708363513000,0],[1708363514000,0],[1708363515000,0],[1708363516000,0],[1708363517000,0],[1708363518000,0],[1708363519000,0],[1708363520000,0],[1708363521000,0],[1708363522000,0],[1708363523000,0],[1708363524000,0],[1708363525000,0],[1708363526000,0],[1708363527000,0],[1708363528000,0],[1708363529000,0],[1708363530000,0],[1708363531000,0],[1708363532000,0],[1708363533000,0],[1708363534000,0],[1708363535000,0],[1708363536000,0],[1708363537000,0],[1708363538000,0],[1708363539000,0],[1708363540000,0],[1708363541000,0],[1708363542000,0],[1708363543000,0],[1708363544000,0],[1708363545000,0],[1708363546000,0],[1708363547000,0],[1708363548000,0],[1708363549000,0],[1708363550000,0],[1708363551000,0],[1708363552000,0],[1708363553000,0],[1708363554000,0],[1708363555000,0],[1708363556000,0],[1708363557000,0],[1708363558000,0],[1708363559000,0],[1708363560000,0],[1708363561000,0],[1708363562000,0],[1708363563000,0],[1708363564000,0],[1708363565000,0],[1708363566000,0],[1708363567000,0],[1708363568000,0],[1708363569000,0],[1708363570000,0],[1708363571000,0],[1708363572000,0],[1708363573000,0],[1708363574000,0],[1708363575000,0],[1708363576000,0],[1708363577000,0],[1708363578000,0],[1708363579000,0],[1708363580000,0],[1708363581000,0],[1708363582000,0],[1708363583000,0],[1708363584000,0],[1708363585000,0],[1708363586000,0],[1708363587000,0],[1708363588000,0],[1708363589000,0],[1708363590000,0],[1708363591000,0],[1708363592000,0],[1708363593000,0],[1708363594000,0],[1708363595000,0],[1708363596000,0],[1708363597000,0],[1708363598000,0],[1708363599000,0],[1708363600000,0],[1708363601000,0],[1708363602000,0],[1708363603000,0],[1708363604000,0],[1708363605000,0],[1708363606000,0],[1708363607000,0],[1708363608000,0],[1708363609000,0],[1708363610000,0],[1708363611000,0],[1708363612000,0],[1708363613000,0],[1708363614000,0],[1708363615000,0],[1708363616000,0],[1708363617000,0],[1708363618000,0],[1708363619000,0],[1708363620000,0],[1708363621000,0],[1708363622000,0],[1708363623000,0],[1708363624000,0],[1708363625000,0],[1708363626000,0],[1708363627000,0],[1708363628000,0],[1708363629000,0],[1708363630000,0],[1708363631000,0],[1708363632000,0],[1708363633000,0],[1708363634000,0],[1708363635000,0],[1708363636000,0],[1708363637000,0],[1708363638000,0],[1708363639000,0],[1708363640000,0],[1708363641000,0],[1708363642000,0],[1708363643000,0],[1708363644000,0],[1708363645000,0],[1708363646000,0],[1708363647000,0],[1708363648000,0],[1708363649000,0],[1708363650000,0],[1708363651000,0],[1708363652000,0],[1708363653000,0],[1708363654000,0],[1708363655000,0],[1708363656000,0],[1708363657000,0],[1708363658000,0],[1708363659000,0],[1708363660000,0],[1708363661000,0],[1708363662000,0],[1708363663000,0],[1708363664000,0],[1708363665000,0],[1708363666000,0],[1708363667000,0],[1708363668000,0],[1708363669000,0],[1708363670000,0],[1708363671000,0],[1708363672000,0],[1708363673000,0],[1708363674000,0],[1708363675000,0],[1708363676000,0],[1708363677000,0],[1708363678000,0],[1708363679000,0],[1708363680000,0],[1708363681000,0],[1708363682000,0],[1708363683000,0],[1708363684000,0],[1708363685000,0],[1708363686000,0],[1708363687000,0],[1708363688000,0],[1708363689000,0],[1708363690000,0],[1708363691000,0],[1708363692000,0],[1708363693000,0],[1708363694000,0],[1708363695000,0],[1708363696000,0],[1708363697000,0],[1708363698000,0],[1708363699000,0],[1708363700000,0],[1708363701000,0],[1708363702000,0],[1708363703000,0],[1708363704000,0],[1708363705000,0],[1708363706000,0],[1708363707000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00D5FF',
name: 'validação HTTP 404',
data: [
[1708363463000,0],[1708363464000,0],[1708363465000,0],[1708363466000,1],[1708363467000,0],[1708363468000,0],[1708363469000,0],[1708363470000,0],[1708363471000,0],[1708363472000,0],[1708363473000,0],[1708363474000,0],[1708363475000,0],[1708363476000,0],[1708363477000,0],[1708363478000,0],[1708363479000,0],[1708363480000,0],[1708363481000,0],[1708363482000,0],[1708363483000,0],[1708363484000,0],[1708363485000,0],[1708363486000,0],[1708363487000,0],[1708363488000,0],[1708363489000,0],[1708363490000,0],[1708363491000,0],[1708363492000,0],[1708363493000,0],[1708363494000,0],[1708363495000,0],[1708363496000,0],[1708363497000,0],[1708363498000,0],[1708363499000,0],[1708363500000,0],[1708363501000,0],[1708363502000,0],[1708363503000,0],[1708363504000,0],[1708363505000,0],[1708363506000,0],[1708363507000,0],[1708363508000,0],[1708363509000,0],[1708363510000,0],[1708363511000,0],[1708363512000,0],[1708363513000,0],[1708363514000,0],[1708363515000,0],[1708363516000,0],[1708363517000,0],[1708363518000,0],[1708363519000,0],[1708363520000,0],[1708363521000,0],[1708363522000,0],[1708363523000,0],[1708363524000,0],[1708363525000,0],[1708363526000,0],[1708363527000,0],[1708363528000,0],[1708363529000,0],[1708363530000,0],[1708363531000,0],[1708363532000,0],[1708363533000,0],[1708363534000,0],[1708363535000,0],[1708363536000,0],[1708363537000,0],[1708363538000,0],[1708363539000,0],[1708363540000,0],[1708363541000,0],[1708363542000,0],[1708363543000,0],[1708363544000,0],[1708363545000,0],[1708363546000,0],[1708363547000,0],[1708363548000,0],[1708363549000,0],[1708363550000,0],[1708363551000,0],[1708363552000,0],[1708363553000,0],[1708363554000,0],[1708363555000,0],[1708363556000,0],[1708363557000,0],[1708363558000,0],[1708363559000,0],[1708363560000,0],[1708363561000,0],[1708363562000,0],[1708363563000,0],[1708363564000,0],[1708363565000,0],[1708363566000,0],[1708363567000,0],[1708363568000,0],[1708363569000,0],[1708363570000,0],[1708363571000,0],[1708363572000,0],[1708363573000,0],[1708363574000,0],[1708363575000,0],[1708363576000,0],[1708363577000,0],[1708363578000,0],[1708363579000,0],[1708363580000,0],[1708363581000,0],[1708363582000,0],[1708363583000,0],[1708363584000,0],[1708363585000,0],[1708363586000,0],[1708363587000,0],[1708363588000,0],[1708363589000,0],[1708363590000,0],[1708363591000,0],[1708363592000,0],[1708363593000,0],[1708363594000,0],[1708363595000,0],[1708363596000,0],[1708363597000,0],[1708363598000,0],[1708363599000,0],[1708363600000,0],[1708363601000,0],[1708363602000,0],[1708363603000,0],[1708363604000,0],[1708363605000,0],[1708363606000,0],[1708363607000,0],[1708363608000,0],[1708363609000,0],[1708363610000,0],[1708363611000,0],[1708363612000,0],[1708363613000,0],[1708363614000,0],[1708363615000,0],[1708363616000,0],[1708363617000,0],[1708363618000,0],[1708363619000,0],[1708363620000,0],[1708363621000,0],[1708363622000,0],[1708363623000,0],[1708363624000,0],[1708363625000,0],[1708363626000,0],[1708363627000,0],[1708363628000,0],[1708363629000,0],[1708363630000,0],[1708363631000,0],[1708363632000,0],[1708363633000,0],[1708363634000,0],[1708363635000,0],[1708363636000,0],[1708363637000,0],[1708363638000,0],[1708363639000,0],[1708363640000,0],[1708363641000,0],[1708363642000,0],[1708363643000,0],[1708363644000,0],[1708363645000,0],[1708363646000,0],[1708363647000,0],[1708363648000,0],[1708363649000,0],[1708363650000,0],[1708363651000,0],[1708363652000,0],[1708363653000,0],[1708363654000,0],[1708363655000,0],[1708363656000,0],[1708363657000,0],[1708363658000,0],[1708363659000,0],[1708363660000,0],[1708363661000,0],[1708363662000,0],[1708363663000,0],[1708363664000,0],[1708363665000,0],[1708363666000,0],[1708363667000,0],[1708363668000,0],[1708363669000,0],[1708363670000,0],[1708363671000,0],[1708363672000,0],[1708363673000,0],[1708363674000,0],[1708363675000,0],[1708363676000,0],[1708363677000,0],[1708363678000,0],[1708363679000,0],[1708363680000,0],[1708363681000,0],[1708363682000,0],[1708363683000,0],[1708363684000,0],[1708363685000,0],[1708363686000,0],[1708363687000,0],[1708363688000,0],[1708363689000,0],[1708363690000,0],[1708363691000,0],[1708363692000,0],[1708363693000,0],[1708363694000,0],[1708363695000,0],[1708363696000,0],[1708363697000,0],[1708363698000,0],[1708363699000,0],[1708363700000,0],[1708363701000,0],[1708363702000,0],[1708363703000,0],[1708363704000,0],[1708363705000,0],[1708363706000,0],[1708363707000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00FF00',
name: 'validação concorrência saldo - 0',
data: [
[1708363463000,0],[1708363464000,0],[1708363465000,1],[1708363466000,0],[1708363467000,0],[1708363468000,0],[1708363469000,0],[1708363470000,0],[1708363471000,0],[1708363472000,0],[1708363473000,0],[1708363474000,0],[1708363475000,0],[1708363476000,0],[1708363477000,0],[1708363478000,0],[1708363479000,0],[1708363480000,0],[1708363481000,0],[1708363482000,0],[1708363483000,0],[1708363484000,0],[1708363485000,0],[1708363486000,0],[1708363487000,0],[1708363488000,0],[1708363489000,0],[1708363490000,0],[1708363491000,0],[1708363492000,0],[1708363493000,0],[1708363494000,0],[1708363495000,0],[1708363496000,0],[1708363497000,0],[1708363498000,0],[1708363499000,0],[1708363500000,0],[1708363501000,0],[1708363502000,0],[1708363503000,0],[1708363504000,0],[1708363505000,0],[1708363506000,0],[1708363507000,0],[1708363508000,0],[1708363509000,0],[1708363510000,0],[1708363511000,0],[1708363512000,0],[1708363513000,0],[1708363514000,0],[1708363515000,0],[1708363516000,0],[1708363517000,0],[1708363518000,0],[1708363519000,0],[1708363520000,0],[1708363521000,0],[1708363522000,0],[1708363523000,0],[1708363524000,0],[1708363525000,0],[1708363526000,0],[1708363527000,0],[1708363528000,0],[1708363529000,0],[1708363530000,0],[1708363531000,0],[1708363532000,0],[1708363533000,0],[1708363534000,0],[1708363535000,0],[1708363536000,0],[1708363537000,0],[1708363538000,0],[1708363539000,0],[1708363540000,0],[1708363541000,0],[1708363542000,0],[1708363543000,0],[1708363544000,0],[1708363545000,0],[1708363546000,0],[1708363547000,0],[1708363548000,0],[1708363549000,0],[1708363550000,0],[1708363551000,0],[1708363552000,0],[1708363553000,0],[1708363554000,0],[1708363555000,0],[1708363556000,0],[1708363557000,0],[1708363558000,0],[1708363559000,0],[1708363560000,0],[1708363561000,0],[1708363562000,0],[1708363563000,0],[1708363564000,0],[1708363565000,0],[1708363566000,0],[1708363567000,0],[1708363568000,0],[1708363569000,0],[1708363570000,0],[1708363571000,0],[1708363572000,0],[1708363573000,0],[1708363574000,0],[1708363575000,0],[1708363576000,0],[1708363577000,0],[1708363578000,0],[1708363579000,0],[1708363580000,0],[1708363581000,0],[1708363582000,0],[1708363583000,0],[1708363584000,0],[1708363585000,0],[1708363586000,0],[1708363587000,0],[1708363588000,0],[1708363589000,0],[1708363590000,0],[1708363591000,0],[1708363592000,0],[1708363593000,0],[1708363594000,0],[1708363595000,0],[1708363596000,0],[1708363597000,0],[1708363598000,0],[1708363599000,0],[1708363600000,0],[1708363601000,0],[1708363602000,0],[1708363603000,0],[1708363604000,0],[1708363605000,0],[1708363606000,0],[1708363607000,0],[1708363608000,0],[1708363609000,0],[1708363610000,0],[1708363611000,0],[1708363612000,0],[1708363613000,0],[1708363614000,0],[1708363615000,0],[1708363616000,0],[1708363617000,0],[1708363618000,0],[1708363619000,0],[1708363620000,0],[1708363621000,0],[1708363622000,0],[1708363623000,0],[1708363624000,0],[1708363625000,0],[1708363626000,0],[1708363627000,0],[1708363628000,0],[1708363629000,0],[1708363630000,0],[1708363631000,0],[1708363632000,0],[1708363633000,0],[1708363634000,0],[1708363635000,0],[1708363636000,0],[1708363637000,0],[1708363638000,0],[1708363639000,0],[1708363640000,0],[1708363641000,0],[1708363642000,0],[1708363643000,0],[1708363644000,0],[1708363645000,0],[1708363646000,0],[1708363647000,0],[1708363648000,0],[1708363649000,0],[1708363650000,0],[1708363651000,0],[1708363652000,0],[1708363653000,0],[1708363654000,0],[1708363655000,0],[1708363656000,0],[1708363657000,0],[1708363658000,0],[1708363659000,0],[1708363660000,0],[1708363661000,0],[1708363662000,0],[1708363663000,0],[1708363664000,0],[1708363665000,0],[1708363666000,0],[1708363667000,0],[1708363668000,0],[1708363669000,0],[1708363670000,0],[1708363671000,0],[1708363672000,0],[1708363673000,0],[1708363674000,0],[1708363675000,0],[1708363676000,0],[1708363677000,0],[1708363678000,0],[1708363679000,0],[1708363680000,0],[1708363681000,0],[1708363682000,0],[1708363683000,0],[1708363684000,0],[1708363685000,0],[1708363686000,0],[1708363687000,0],[1708363688000,0],[1708363689000,0],[1708363690000,0],[1708363691000,0],[1708363692000,0],[1708363693000,0],[1708363694000,0],[1708363695000,0],[1708363696000,0],[1708363697000,0],[1708363698000,0],[1708363699000,0],[1708363700000,0],[1708363701000,0],[1708363702000,0],[1708363703000,0],[1708363704000,0],[1708363705000,0],[1708363706000,0],[1708363707000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#9D00FF',
name: 'validação concorrência transações - c',
data: [
[1708363463000,0],[1708363464000,25],[1708363465000,25],[1708363466000,0],[1708363467000,0],[1708363468000,0],[1708363469000,0],[1708363470000,0],[1708363471000,0],[1708363472000,0],[1708363473000,0],[1708363474000,0],[1708363475000,0],[1708363476000,0],[1708363477000,0],[1708363478000,0],[1708363479000,0],[1708363480000,0],[1708363481000,0],[1708363482000,0],[1708363483000,0],[1708363484000,0],[1708363485000,0],[1708363486000,0],[1708363487000,0],[1708363488000,0],[1708363489000,0],[1708363490000,0],[1708363491000,0],[1708363492000,0],[1708363493000,0],[1708363494000,0],[1708363495000,0],[1708363496000,0],[1708363497000,0],[1708363498000,0],[1708363499000,0],[1708363500000,0],[1708363501000,0],[1708363502000,0],[1708363503000,0],[1708363504000,0],[1708363505000,0],[1708363506000,0],[1708363507000,0],[1708363508000,0],[1708363509000,0],[1708363510000,0],[1708363511000,0],[1708363512000,0],[1708363513000,0],[1708363514000,0],[1708363515000,0],[1708363516000,0],[1708363517000,0],[1708363518000,0],[1708363519000,0],[1708363520000,0],[1708363521000,0],[1708363522000,0],[1708363523000,0],[1708363524000,0],[1708363525000,0],[1708363526000,0],[1708363527000,0],[1708363528000,0],[1708363529000,0],[1708363530000,0],[1708363531000,0],[1708363532000,0],[1708363533000,0],[1708363534000,0],[1708363535000,0],[1708363536000,0],[1708363537000,0],[1708363538000,0],[1708363539000,0],[1708363540000,0],[1708363541000,0],[1708363542000,0],[1708363543000,0],[1708363544000,0],[1708363545000,0],[1708363546000,0],[1708363547000,0],[1708363548000,0],[1708363549000,0],[1708363550000,0],[1708363551000,0],[1708363552000,0],[1708363553000,0],[1708363554000,0],[1708363555000,0],[1708363556000,0],[1708363557000,0],[1708363558000,0],[1708363559000,0],[1708363560000,0],[1708363561000,0],[1708363562000,0],[1708363563000,0],[1708363564000,0],[1708363565000,0],[1708363566000,0],[1708363567000,0],[1708363568000,0],[1708363569000,0],[1708363570000,0],[1708363571000,0],[1708363572000,0],[1708363573000,0],[1708363574000,0],[1708363575000,0],[1708363576000,0],[1708363577000,0],[1708363578000,0],[1708363579000,0],[1708363580000,0],[1708363581000,0],[1708363582000,0],[1708363583000,0],[1708363584000,0],[1708363585000,0],[1708363586000,0],[1708363587000,0],[1708363588000,0],[1708363589000,0],[1708363590000,0],[1708363591000,0],[1708363592000,0],[1708363593000,0],[1708363594000,0],[1708363595000,0],[1708363596000,0],[1708363597000,0],[1708363598000,0],[1708363599000,0],[1708363600000,0],[1708363601000,0],[1708363602000,0],[1708363603000,0],[1708363604000,0],[1708363605000,0],[1708363606000,0],[1708363607000,0],[1708363608000,0],[1708363609000,0],[1708363610000,0],[1708363611000,0],[1708363612000,0],[1708363613000,0],[1708363614000,0],[1708363615000,0],[1708363616000,0],[1708363617000,0],[1708363618000,0],[1708363619000,0],[1708363620000,0],[1708363621000,0],[1708363622000,0],[1708363623000,0],[1708363624000,0],[1708363625000,0],[1708363626000,0],[1708363627000,0],[1708363628000,0],[1708363629000,0],[1708363630000,0],[1708363631000,0],[1708363632000,0],[1708363633000,0],[1708363634000,0],[1708363635000,0],[1708363636000,0],[1708363637000,0],[1708363638000,0],[1708363639000,0],[1708363640000,0],[1708363641000,0],[1708363642000,0],[1708363643000,0],[1708363644000,0],[1708363645000,0],[1708363646000,0],[1708363647000,0],[1708363648000,0],[1708363649000,0],[1708363650000,0],[1708363651000,0],[1708363652000,0],[1708363653000,0],[1708363654000,0],[1708363655000,0],[1708363656000,0],[1708363657000,0],[1708363658000,0],[1708363659000,0],[1708363660000,0],[1708363661000,0],[1708363662000,0],[1708363663000,0],[1708363664000,0],[1708363665000,0],[1708363666000,0],[1708363667000,0],[1708363668000,0],[1708363669000,0],[1708363670000,0],[1708363671000,0],[1708363672000,0],[1708363673000,0],[1708363674000,0],[1708363675000,0],[1708363676000,0],[1708363677000,0],[1708363678000,0],[1708363679000,0],[1708363680000,0],[1708363681000,0],[1708363682000,0],[1708363683000,0],[1708363684000,0],[1708363685000,0],[1708363686000,0],[1708363687000,0],[1708363688000,0],[1708363689000,0],[1708363690000,0],[1708363691000,0],[1708363692000,0],[1708363693000,0],[1708363694000,0],[1708363695000,0],[1708363696000,0],[1708363697000,0],[1708363698000,0],[1708363699000,0],[1708363700000,0],[1708363701000,0],[1708363702000,0],[1708363703000,0],[1708363704000,0],[1708363705000,0],[1708363706000,0],[1708363707000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FF00E1',
name: 'validação concorrência saldo - -25',
data: [
[1708363463000,1],[1708363464000,1],[1708363465000,0],[1708363466000,0],[1708363467000,0],[1708363468000,0],[1708363469000,0],[1708363470000,0],[1708363471000,0],[1708363472000,0],[1708363473000,0],[1708363474000,0],[1708363475000,0],[1708363476000,0],[1708363477000,0],[1708363478000,0],[1708363479000,0],[1708363480000,0],[1708363481000,0],[1708363482000,0],[1708363483000,0],[1708363484000,0],[1708363485000,0],[1708363486000,0],[1708363487000,0],[1708363488000,0],[1708363489000,0],[1708363490000,0],[1708363491000,0],[1708363492000,0],[1708363493000,0],[1708363494000,0],[1708363495000,0],[1708363496000,0],[1708363497000,0],[1708363498000,0],[1708363499000,0],[1708363500000,0],[1708363501000,0],[1708363502000,0],[1708363503000,0],[1708363504000,0],[1708363505000,0],[1708363506000,0],[1708363507000,0],[1708363508000,0],[1708363509000,0],[1708363510000,0],[1708363511000,0],[1708363512000,0],[1708363513000,0],[1708363514000,0],[1708363515000,0],[1708363516000,0],[1708363517000,0],[1708363518000,0],[1708363519000,0],[1708363520000,0],[1708363521000,0],[1708363522000,0],[1708363523000,0],[1708363524000,0],[1708363525000,0],[1708363526000,0],[1708363527000,0],[1708363528000,0],[1708363529000,0],[1708363530000,0],[1708363531000,0],[1708363532000,0],[1708363533000,0],[1708363534000,0],[1708363535000,0],[1708363536000,0],[1708363537000,0],[1708363538000,0],[1708363539000,0],[1708363540000,0],[1708363541000,0],[1708363542000,0],[1708363543000,0],[1708363544000,0],[1708363545000,0],[1708363546000,0],[1708363547000,0],[1708363548000,0],[1708363549000,0],[1708363550000,0],[1708363551000,0],[1708363552000,0],[1708363553000,0],[1708363554000,0],[1708363555000,0],[1708363556000,0],[1708363557000,0],[1708363558000,0],[1708363559000,0],[1708363560000,0],[1708363561000,0],[1708363562000,0],[1708363563000,0],[1708363564000,0],[1708363565000,0],[1708363566000,0],[1708363567000,0],[1708363568000,0],[1708363569000,0],[1708363570000,0],[1708363571000,0],[1708363572000,0],[1708363573000,0],[1708363574000,0],[1708363575000,0],[1708363576000,0],[1708363577000,0],[1708363578000,0],[1708363579000,0],[1708363580000,0],[1708363581000,0],[1708363582000,0],[1708363583000,0],[1708363584000,0],[1708363585000,0],[1708363586000,0],[1708363587000,0],[1708363588000,0],[1708363589000,0],[1708363590000,0],[1708363591000,0],[1708363592000,0],[1708363593000,0],[1708363594000,0],[1708363595000,0],[1708363596000,0],[1708363597000,0],[1708363598000,0],[1708363599000,0],[1708363600000,0],[1708363601000,0],[1708363602000,0],[1708363603000,0],[1708363604000,0],[1708363605000,0],[1708363606000,0],[1708363607000,0],[1708363608000,0],[1708363609000,0],[1708363610000,0],[1708363611000,0],[1708363612000,0],[1708363613000,0],[1708363614000,0],[1708363615000,0],[1708363616000,0],[1708363617000,0],[1708363618000,0],[1708363619000,0],[1708363620000,0],[1708363621000,0],[1708363622000,0],[1708363623000,0],[1708363624000,0],[1708363625000,0],[1708363626000,0],[1708363627000,0],[1708363628000,0],[1708363629000,0],[1708363630000,0],[1708363631000,0],[1708363632000,0],[1708363633000,0],[1708363634000,0],[1708363635000,0],[1708363636000,0],[1708363637000,0],[1708363638000,0],[1708363639000,0],[1708363640000,0],[1708363641000,0],[1708363642000,0],[1708363643000,0],[1708363644000,0],[1708363645000,0],[1708363646000,0],[1708363647000,0],[1708363648000,0],[1708363649000,0],[1708363650000,0],[1708363651000,0],[1708363652000,0],[1708363653000,0],[1708363654000,0],[1708363655000,0],[1708363656000,0],[1708363657000,0],[1708363658000,0],[1708363659000,0],[1708363660000,0],[1708363661000,0],[1708363662000,0],[1708363663000,0],[1708363664000,0],[1708363665000,0],[1708363666000,0],[1708363667000,0],[1708363668000,0],[1708363669000,0],[1708363670000,0],[1708363671000,0],[1708363672000,0],[1708363673000,0],[1708363674000,0],[1708363675000,0],[1708363676000,0],[1708363677000,0],[1708363678000,0],[1708363679000,0],[1708363680000,0],[1708363681000,0],[1708363682000,0],[1708363683000,0],[1708363684000,0],[1708363685000,0],[1708363686000,0],[1708363687000,0],[1708363688000,0],[1708363689000,0],[1708363690000,0],[1708363691000,0],[1708363692000,0],[1708363693000,0],[1708363694000,0],[1708363695000,0],[1708363696000,0],[1708363697000,0],[1708363698000,0],[1708363699000,0],[1708363700000,0],[1708363701000,0],[1708363702000,0],[1708363703000,0],[1708363704000,0],[1708363705000,0],[1708363706000,0],[1708363707000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#AECAEB',
name: 'validação concorrência transações - d',
data: [
[1708363463000,25],[1708363464000,0],[1708363465000,0],[1708363466000,0],[1708363467000,0],[1708363468000,0],[1708363469000,0],[1708363470000,0],[1708363471000,0],[1708363472000,0],[1708363473000,0],[1708363474000,0],[1708363475000,0],[1708363476000,0],[1708363477000,0],[1708363478000,0],[1708363479000,0],[1708363480000,0],[1708363481000,0],[1708363482000,0],[1708363483000,0],[1708363484000,0],[1708363485000,0],[1708363486000,0],[1708363487000,0],[1708363488000,0],[1708363489000,0],[1708363490000,0],[1708363491000,0],[1708363492000,0],[1708363493000,0],[1708363494000,0],[1708363495000,0],[1708363496000,0],[1708363497000,0],[1708363498000,0],[1708363499000,0],[1708363500000,0],[1708363501000,0],[1708363502000,0],[1708363503000,0],[1708363504000,0],[1708363505000,0],[1708363506000,0],[1708363507000,0],[1708363508000,0],[1708363509000,0],[1708363510000,0],[1708363511000,0],[1708363512000,0],[1708363513000,0],[1708363514000,0],[1708363515000,0],[1708363516000,0],[1708363517000,0],[1708363518000,0],[1708363519000,0],[1708363520000,0],[1708363521000,0],[1708363522000,0],[1708363523000,0],[1708363524000,0],[1708363525000,0],[1708363526000,0],[1708363527000,0],[1708363528000,0],[1708363529000,0],[1708363530000,0],[1708363531000,0],[1708363532000,0],[1708363533000,0],[1708363534000,0],[1708363535000,0],[1708363536000,0],[1708363537000,0],[1708363538000,0],[1708363539000,0],[1708363540000,0],[1708363541000,0],[1708363542000,0],[1708363543000,0],[1708363544000,0],[1708363545000,0],[1708363546000,0],[1708363547000,0],[1708363548000,0],[1708363549000,0],[1708363550000,0],[1708363551000,0],[1708363552000,0],[1708363553000,0],[1708363554000,0],[1708363555000,0],[1708363556000,0],[1708363557000,0],[1708363558000,0],[1708363559000,0],[1708363560000,0],[1708363561000,0],[1708363562000,0],[1708363563000,0],[1708363564000,0],[1708363565000,0],[1708363566000,0],[1708363567000,0],[1708363568000,0],[1708363569000,0],[1708363570000,0],[1708363571000,0],[1708363572000,0],[1708363573000,0],[1708363574000,0],[1708363575000,0],[1708363576000,0],[1708363577000,0],[1708363578000,0],[1708363579000,0],[1708363580000,0],[1708363581000,0],[1708363582000,0],[1708363583000,0],[1708363584000,0],[1708363585000,0],[1708363586000,0],[1708363587000,0],[1708363588000,0],[1708363589000,0],[1708363590000,0],[1708363591000,0],[1708363592000,0],[1708363593000,0],[1708363594000,0],[1708363595000,0],[1708363596000,0],[1708363597000,0],[1708363598000,0],[1708363599000,0],[1708363600000,0],[1708363601000,0],[1708363602000,0],[1708363603000,0],[1708363604000,0],[1708363605000,0],[1708363606000,0],[1708363607000,0],[1708363608000,0],[1708363609000,0],[1708363610000,0],[1708363611000,0],[1708363612000,0],[1708363613000,0],[1708363614000,0],[1708363615000,0],[1708363616000,0],[1708363617000,0],[1708363618000,0],[1708363619000,0],[1708363620000,0],[1708363621000,0],[1708363622000,0],[1708363623000,0],[1708363624000,0],[1708363625000,0],[1708363626000,0],[1708363627000,0],[1708363628000,0],[1708363629000,0],[1708363630000,0],[1708363631000,0],[1708363632000,0],[1708363633000,0],[1708363634000,0],[1708363635000,0],[1708363636000,0],[1708363637000,0],[1708363638000,0],[1708363639000,0],[1708363640000,0],[1708363641000,0],[1708363642000,0],[1708363643000,0],[1708363644000,0],[1708363645000,0],[1708363646000,0],[1708363647000,0],[1708363648000,0],[1708363649000,0],[1708363650000,0],[1708363651000,0],[1708363652000,0],[1708363653000,0],[1708363654000,0],[1708363655000,0],[1708363656000,0],[1708363657000,0],[1708363658000,0],[1708363659000,0],[1708363660000,0],[1708363661000,0],[1708363662000,0],[1708363663000,0],[1708363664000,0],[1708363665000,0],[1708363666000,0],[1708363667000,0],[1708363668000,0],[1708363669000,0],[1708363670000,0],[1708363671000,0],[1708363672000,0],[1708363673000,0],[1708363674000,0],[1708363675000,0],[1708363676000,0],[1708363677000,0],[1708363678000,0],[1708363679000,0],[1708363680000,0],[1708363681000,0],[1708363682000,0],[1708363683000,0],[1708363684000,0],[1708363685000,0],[1708363686000,0],[1708363687000,0],[1708363688000,0],[1708363689000,0],[1708363690000,0],[1708363691000,0],[1708363692000,0],[1708363693000,0],[1708363694000,0],[1708363695000,0],[1708363696000,0],[1708363697000,0],[1708363698000,0],[1708363699000,0],[1708363700000,0],[1708363701000,0],[1708363702000,0],[1708363703000,0],[1708363704000,0],[1708363705000,0],[1708363706000,0],[1708363707000,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: ['300', '900', '1500', '2100', '2700', '3300', '3900', '4500', '5100', '5700', '6300', '6900', '7500', '8100', '8700', '9300', '9900', '10500', '11100', '11700', '12300', '12900', '13500', '14100', '14700', '15300', '15900', '16500', '17100', '17700', '18300', '18900', '19500', '20100', '20700', '21300', '21900', '22500', '23100', '23700', '24300', '24900', '25500', '26100', '26700', '27300', '27900', '28500', '29100', '29700', '30300', '30900', '31500', '32100', '32700', '33300', '33900', '34500', '35100', '35700', '36300', '36900', '37500', '38100', '38700', '39300', '39900', '40500', '41100', '41700', '42300', '42900', '43500', '44100', '44700', '45300', '45900', '46500', '47100', '47700', '48300', '48900', '49500', '50100', '50700', '51300', '51900', '52500', '53100', '53700', '54300', '54900', '55500', '56100', '56700', '57300', '57900', '58500', '59100', '59700'],
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: [
95.61,0.32,0.05,0.15,0.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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: [
3.74,0.0,0.0,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03
],
tooltip: { yDecimals: 0, ySuffix: 'ms' }
}
]
});
responsetimeDistributionChart.setTitle({
text: '<span class="chart_title">Response Time Distribution</span>',
useHTML: true
});
var responsetimepercentilesovertimeokPercentiles = unpack([[1708363463,[33,70,162,173,174,175,177,177,184,187]],[1708363464,[3,3,3,3,3,3,3,3,3,3]],[1708363465,[177,275,287,309,309,313,315,316,318,319]],[1708363466,[4,4,4,4,4,4,4,4,4,4]],[1708363467,[1,2,4,7,9,10,11,60,64,65]],[1708363468,[5,5,5,5,5,5,5,5,5,6]],[1708363469,[4,5,5,5,5,5,5,5,5,6]],[1708363470,[4,4,5,5,5,5,5,5,5,5]],[1708363471,[4,4,5,5,6,6,6,6,6,6]],[1708363472,[4,4,5,5,5,5,5,6,7,8]],[1708363473,[2,4,4,5,5,5,5,5,5,6]],[1708363474,[2,4,4,5,5,5,5,6,8,9]],[1708363475,[2,4,4,5,5,5,5,6,11,13]],[1708363476,[2,4,4,6,6,7,18,29,76,92]],[1708363477,[3,4,4,5,5,5,6,6,8,10]],[1708363478,[2,3,4,5,5,5,5,6,6,7]],[1708363479,[2,4,4,5,5,5,5,6,8,9]],[1708363480,[1,4,4,5,5,5,5,6,6,6]],[1708363481,[1,4,4,5,5,5,5,6,6,7]],[1708363482,[2,4,5,5,5,5,6,7,8,9]],[1708363483,[2,4,4,5,5,5,5,5,7,9]],[1708363484,[2,4,4,4,4,5,5,5,5,5]],[1708363485,[1,4,4,4,4,4,5,5,11,12]],[1708363486,[1,3,4,4,4,5,5,5,7,9]],[1708363487,[2,3,4,4,5,5,5,6,6,6]],[1708363488,[1,3,4,4,4,4,5,5,5,7]],[1708363489,[1,3,4,4,4,4,4,4,8,12]],[1708363490,[1,4,4,4,4,5,5,5,6,10]],[1708363491,[2,4,4,4,4,4,4,5,5,6]],[1708363492,[1,4,4,5,5,5,6,7,11,13]],[1708363493,[1,3,4,4,5,5,5,6,6,7]],[1708363494,[1,2,4,4,4,5,5,6,7,9]],[1708363495,[1,3,4,4,4,5,5,6,8,8]],[1708363496,[1,3,4,4,4,4,5,5,6,7]],[1708363497,[1,3,4,4,4,4,5,5,5,6]],[1708363498,[1,3,3,4,4,4,5,6,9,12]],[1708363499,[1,3,4,4,4,4,4,5,5,5]],[1708363500,[1,3,4,5,5,6,6,7,9,13]],[1708363501,[1,3,4,4,5,5,6,7,16,16]],[1708363502,[1,3,4,5,5,6,7,10,14,15]],[1708363503,[1,3,4,4,5,5,5,6,6,7]],[1708363504,[1,3,4,4,4,5,5,6,7,10]],[1708363505,[1,3,4,4,4,4,5,5,6,8]],[1708363506,[1,3,3,4,4,4,4,5,5,8]],[1708363507,[1,3,4,4,4,4,4,5,7,8]],[1708363508,[1,3,4,4,4,4,5,6,7,8]],[1708363509,[1,3,3,4,4,4,5,6,12,14]],[1708363510,[1,3,3,4,4,4,4,5,7,8]],[1708363511,[1,3,3,4,4,4,4,5,6,8]],[1708363512,[1,3,4,4,4,4,4,4,5,7]],[1708363513,[1,3,4,4,4,4,4,4,5,5]],[1708363514,[1,2,4,4,4,4,4,5,5,5]],[1708363515,[1,3,4,4,4,5,5,6,8,9]],[1708363516,[1,3,3,4,4,5,5,6,6,8]],[1708363517,[1,2,3,4,4,5,5,6,8,14]],[1708363518,[1,3,4,4,4,5,5,6,10,12]],[1708363519,[1,3,3,4,4,4,4,4,9,12]],[1708363520,[1,2,3,4,4,4,4,5,6,7]],[1708363521,[1,3,3,4,4,4,4,4,6,7]],[1708363522,[1,3,3,4,4,4,4,5,8,8]],[1708363523,[1,3,4,4,4,4,5,7,12,13]],[1708363524,[1,2,4,4,5,5,6,9,23,34]],[1708363525,[1,2,4,4,4,4,5,6,8,8]],[1708363526,[1,2,3,4,4,4,4,5,6,10]],[1708363527,[1,3,3,4,4,4,5,5,8,12]],[1708363528,[1,3,4,4,4,5,8,38,73,82]],[1708363529,[1,2,3,4,4,4,5,5,6,9]],[1708363530,[1,3,3,3,4,4,4,5,7,11]],[1708363531,[1,2,3,4,4,4,4,5,7,9]],[1708363532,[1,2,3,4,4,4,4,5,8,11]],[1708363533,[1,2,3,3,3,4,4,4,6,7]],[1708363534,[1,2,3,3,4,4,4,5,10,18]],[1708363535,[1,3,3,4,4,4,4,5,8,8]],[1708363536,[1,3,4,4,4,5,5,6,9,14]],[1708363537,[1,3,3,4,4,5,5,6,8,11]],[1708363538,[1,2,3,4,4,4,5,6,14,15]],[1708363539,[1,2,3,4,4,4,5,5,11,19]],[1708363540,[1,3,3,4,4,4,5,6,8,14]],[1708363541,[0,2,3,3,4,4,4,5,7,8]],[1708363542,[0,3,3,3,3,4,4,5,7,10]],[1708363543,[1,3,3,3,4,4,4,5,9,12]],[1708363544,[1,3,3,4,4,4,4,5,6,8]],[1708363545,[1,2,3,4,4,4,4,5,7,13]],[1708363546,[1,3,3,4,4,4,4,5,6,8]],[1708363547,[1,2,3,3,3,4,4,5,6,7]],[1708363548,[1,3,3,3,3,3,4,5,7,10]],[1708363549,[1,2,3,4,4,4,5,5,6,7]],[1708363550,[1,2,3,4,4,5,5,5,6,7]],[1708363551,[1,2,3,4,4,4,4,5,8,10]],[1708363552,[0,2,3,4,4,4,5,7,11,17]],[1708363553,[0,2,3,3,3,4,4,5,6,8]],[1708363554,[1,2,3,3,3,4,4,4,5,9]],[1708363555,[1,2,3,3,3,3,4,4,6,10]],[1708363556,[1,3,3,4,4,5,5,6,10,11]],[1708363557,[1,3,3,4,4,5,5,6,9,11]],[1708363558,[0,2,3,3,4,4,4,5,10,13]],[1708363559,[0,3,10,184,319,466,757,2491,2714,2882]],[1708363560,[3,1035,1276,2072,2137,2192,2267,2350,2476,2562]],[1708363561,[1,5,580,769,823,864,895,943,984,997]],[1708363562,[1,1,1,2,2,4,8,20,60,501]],[1708363563,[1,1,1,2,4,5,5,6,14,56]],[1708363564,[1,4,5,6,6,7,8,8,16,17]],[1708363565,[1,4,5,6,7,8,8,13,30,50]],[1708363566,[1,4,5,6,7,8,9,12,21,31]],[1708363567,[0,4,5,6,6,7,9,13,30,45]],[1708363568,[1,4,4,5,6,7,7,10,12,18]],[1708363569,[1,4,5,5,6,7,8,10,13,15]],[1708363570,[1,4,5,7,7,8,10,14,21,31]],[1708363571,[1,5,5,7,8,8,9,10,17,22]],[1708363572,[0,4,5,6,7,8,9,11,13,17]],[1708363573,[0,4,5,6,7,7,8,10,15,26]],[1708363574,[1,4,5,6,6,7,8,9,11,15]],[1708363575,[1,4,5,6,8,9,10,12,17,22]],[1708363576,[1,4,5,7,8,9,11,15,31,36]],[1708363577,[0,4,5,6,7,8,10,14,19,26]],[1708363578,[1,4,5,6,6,7,9,13,16,18]],[1708363579,[1,4,5,8,8,9,11,13,17,19]],[1708363580,[1,5,6,8,9,10,11,13,17,19]],[1708363581,[1,6,9,11,12,14,15,18,21,26]],[1708363582,[1,5,6,10,10,11,12,15,17,20]],[1708363583,[1,5,8,10,10,12,14,17,19,24]],[1708363584,[0,4,6,9,9,10,12,16,20,21]],[1708363585,[0,4,7,10,11,12,14,17,22,32]],[1708363586,[0,4,6,8,9,9,12,14,18,21]],[1708363587,[0,5,7,9,10,10,12,15,19,22]],[1708363588,[1,5,7,9,9,11,12,14,20,25]],[1708363589,[1,5,6,8,9,10,12,15,19,20]],[1708363590,[1,4,6,8,9,11,12,14,19,23]],[1708363591,[1,4,5,8,8,9,11,15,20,24]],[1708363592,[1,5,7,8,9,11,13,16,22,30]],[1708363593,[1,5,6,9,9,10,11,15,19,21]],[1708363594,[1,5,8,10,10,11,13,15,19,20]],[1708363595,[1,5,5,9,10,11,12,14,18,26]],[1708363596,[0,5,8,10,11,12,15,17,25,38]],[1708363597,[1,4,5,7,8,9,11,13,18,20]],[1708363598,[1,6,8,10,11,12,14,17,24,26]],[1708363599,[0,4,5,7,8,9,10,14,23,32]],[1708363600,[1,6,9,10,11,13,15,19,25,28]],[1708363601,[1,4,5,6,7,8,10,13,18,22]],[1708363602,[1,7,9,10,11,12,15,18,26,36]],[1708363603,[0,4,5,6,7,8,10,13,17,22]],[1708363604,[0,6,8,10,11,12,14,17,24,40]],[1708363605,[1,4,5,7,8,9,11,13,17,21]],[1708363606,[1,6,8,9,10,11,12,15,20,23]],[1708363607,[0,4,5,6,6,7,9,11,18,23]],[1708363608,[1,6,8,9,10,11,13,15,19,21]],[1708363609,[0,4,5,6,8,9,11,14,31,40]],[1708363610,[1,5,8,9,10,11,12,15,21,31]],[1708363611,[0,4,5,7,8,9,9,11,14,15]],[1708363612,[1,5,8,10,10,11,13,16,23,31]],[1708363613,[1,5,5,8,9,10,11,13,17,20]],[1708363614,[1,5,7,10,10,11,13,15,20,24]],[1708363615,[0,4,5,8,9,10,12,15,21,26]],[1708363616,[1,4,5,9,9,10,13,17,25,41]],[1708363617,[1,5,5,9,9,10,12,14,18,22]],[1708363618,[0,5,6,9,10,11,12,15,17,19]],[1708363619,[1,5,5,9,9,11,12,14,20,23]],[1708363620,[0,4,5,8,9,11,13,16,25,34]],[1708363621,[0,4,5,8,9,10,11,12,15,17]],[1708363622,[4,9,10,11,12,14,16,19,25,30]],[1708363623,[0,4,6,9,10,10,13,16,22,27]],[1708363624,[1,4,5,6,7,9,10,13,18,19]],[1708363625,[0,4,5,8,10,12,13,20,47,61]],[1708363626,[1,4,5,7,8,9,11,13,17,19]],[1708363627,[0,4,5,7,9,11,12,14,16,28]],[1708363628,[1,4,5,7,8,11,12,15,25,33]],[1708363629,[1,5,6,9,10,11,13,15,20,23]],[1708363630,[0,4,5,7,7,10,12,14,20,23]],[1708363631,[1,5,6,9,11,12,12,15,18,21]],[1708363632,[0,4,5,7,8,10,12,15,18,24]],[1708363633,[0,4,5,8,9,10,11,13,17,20]],[1708363634,[1,4,5,7,8,10,11,14,20,28]],[1708363635,[1,5,6,9,10,11,12,16,18,21]],[1708363636,[1,4,5,7,9,11,13,16,32,52]],[1708363637,[1,5,6,10,10,11,13,17,20,22]],[1708363638,[0,4,5,7,8,10,12,16,29,50]],[1708363639,[0,4,5,9,10,10,11,15,25,38]],[1708363640,[1,5,5,6,7,8,10,12,20,24]],[1708363641,[0,4,5,9,11,13,16,25,50,74]],[1708363642,[0,4,5,9,9,10,11,14,18,19]],[1708363643,[2,7,9,10,11,13,15,17,25,29]],[1708363644,[1,5,6,9,10,10,12,14,20,29]],[1708363645,[1,8,9,10,12,13,16,18,24,31]],[1708363646,[1,5,5,9,10,10,12,14,17,23]],[1708363647,[1,8,9,11,12,15,16,20,24,30]],[1708363648,[1,5,5,8,8,9,11,13,16,17]],[1708363649,[2,7,9,10,11,13,16,20,24,26]],[1708363650,[0,4,5,7,8,10,11,18,29,34]],[1708363651,[5,8,9,11,12,14,16,19,24,32]],[1708363652,[0,4,5,6,8,10,11,16,23,29]],[1708363653,[2,7,8,10,11,12,15,16,20,23]],[1708363654,[0,4,5,8,8,9,11,12,16,17]],[1708363655,[1,7,9,10,11,12,15,16,19,21]],[1708363656,[1,4,5,8,9,10,11,13,17,22]],[1708363657,[1,6,9,11,11,13,15,16,24,33]],[1708363658,[1,4,5,10,11,13,16,26,34,43]],[1708363659,[1,5,8,10,10,11,15,19,27,32]],[1708363660,[1,5,5,9,9,10,13,16,22,32]],[1708363661,[1,5,7,9,10,10,12,14,18,22]],[1708363662,[0,4,5,8,9,10,12,14,17,19]],[1708363663,[1,5,7,9,9,11,12,15,19,24]],[1708363664,[0,4,5,8,8,10,11,13,16,20]],[1708363665,[1,5,7,10,11,12,14,17,25,40]],[1708363666,[1,5,6,9,10,11,13,15,18,20]],[1708363667,[1,5,6,9,10,11,13,16,24,29]],[1708363668,[0,5,7,10,11,12,14,16,20,23]],[1708363669,[0,4,5,9,9,10,12,15,18,23]],[1708363670,[1,5,7,9,10,11,14,15,20,24]],[1708363671,[0,4,5,8,9,9,10,14,17,21]],[1708363672,[1,5,8,9,10,11,13,16,21,24]],[1708363673,[1,4,5,8,9,10,11,14,16,22]],[1708363674,[1,5,8,10,11,12,13,16,23,27]],[1708363675,[1,4,5,6,8,9,11,14,19,22]],[1708363676,[1,5,8,9,10,11,13,16,20,23]],[1708363677,[0,4,5,6,7,8,10,13,17,18]],[1708363678,[1,5,8,11,13,15,18,23,32,47]],[1708363679,[1,4,5,6,7,10,11,14,17,20]],[1708363680,[1,5,8,10,11,12,14,18,21,26]],[1708363681,[1,5,5,8,10,12,14,17,23,26]],[1708363682,[1,5,8,10,11,12,14,16,23,33]],[1708363683,[1,5,7,10,10,11,13,16,21,25]],[1708363684,[1,6,9,11,13,14,16,20,40,49]],[1708363685,[1,4,5,7,8,10,12,15,20,30]],[1708363686,[0,5,8,9,10,12,14,18,23,26]],[1708363687,[1,4,5,6,8,8,10,13,17,21]],[1708363688,[0,4,5,6,7,9,11,12,15,17]],[1708363689,[0,4,5,6,7,8,10,11,16,18]],[1708363690,[1,4,5,7,8,9,10,13,19,23]],[1708363691,[1,4,5,7,8,9,11,13,22,31]],[1708363692,[1,5,7,9,9,10,12,13,19,22]],[1708363693,[1,5,5,7,9,10,13,16,19,24]],[1708363694,[1,5,6,9,10,10,12,14,18,29]],[1708363695,[1,4,5,7,7,9,10,12,18,20]],[1708363696,[1,4,5,8,9,10,12,16,20,24]],[1708363697,[1,4,5,7,8,8,12,15,23,32]],[1708363698,[1,5,5,9,9,10,11,13,18,28]],[1708363699,[1,5,5,8,9,10,12,15,24,34]],[1708363700,[1,5,5,7,8,9,11,13,17,21]],[1708363701,[1,5,5,8,9,10,12,14,17,17]],[1708363702,[0,4,5,7,7,9,11,13,16,20]],[1708363703,[0,4,4,8,8,10,11,15,27,31]],[1708363704,[0,4,5,8,8,10,11,13,17,22]],[1708363705,[0,4,5,7,8,9,10,12,17,18]],[1708363706,[1,7,9,11,12,14,16,19,33,44]],[1708363707,[1,5,6,9,10,11,13,14,17,23]]]);
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([[1708363463,[25,25,0]],[1708363464,[1,1,0]],[1708363465,[25,25,0]],[1708363466,[1,1,0]],[1708363467,[71,51,20]],[1708363468,[3,3,0]],[1708363469,[6,6,0]],[1708363470,[9,9,0]],[1708363471,[11,11,0]],[1708363472,[13,13,0]],[1708363473,[18,18,0]],[1708363474,[19,19,0]],[1708363475,[24,24,0]],[1708363476,[26,26,0]],[1708363477,[27,27,0]],[1708363478,[32,32,0]],[1708363479,[34,34,0]],[1708363480,[37,37,0]],[1708363481,[39,39,0]],[1708363482,[43,43,0]],[1708363483,[44,44,0]],[1708363484,[49,49,0]],[1708363485,[50,50,0]],[1708363486,[54,54,0]],[1708363487,[56,56,0]],[1708363488,[60,60,0]],[1708363489,[61,61,0]],[1708363490,[65,65,0]],[1708363491,[67,67,0]],[1708363492,[70,70,0]],[1708363493,[74,74,0]],[1708363494,[76,76,0]],[1708363495,[80,80,0]],[1708363496,[81,81,0]],[1708363497,[84,84,0]],[1708363498,[89,89,0]],[1708363499,[89,89,0]],[1708363500,[93,93,0]],[1708363501,[96,96,0]],[1708363502,[98,98,0]],[1708363503,[102,102,0]],[1708363504,[104,104,0]],[1708363505,[107,107,0]],[1708363506,[109,109,0]],[1708363507,[114,114,0]],[1708363508,[115,115,0]],[1708363509,[118,118,0]],[1708363510,[121,121,0]],[1708363511,[124,124,0]],[1708363512,[126,126,0]],[1708363513,[129,129,0]],[1708363514,[133,133,0]],[1708363515,[134,134,0]],[1708363516,[139,139,0]],[1708363517,[140,140,0]],[1708363518,[144,144,0]],[1708363519,[146,146,0]],[1708363520,[149,149,0]],[1708363521,[151,151,0]],[1708363522,[155,155,0]],[1708363523,[157,157,0]],[1708363524,[160,160,0]],[1708363525,[164,164,0]],[1708363526,[165,165,0]],[1708363527,[171,171,0]],[1708363528,[171,171,0]],[1708363529,[174,174,0]],[1708363530,[177,177,0]],[1708363531,[180,180,0]],[1708363532,[183,183,0]],[1708363533,[186,186,0]],[1708363534,[188,188,0]],[1708363535,[192,192,0]],[1708363536,[194,194,0]],[1708363537,[197,197,0]],[1708363538,[198,198,0]],[1708363539,[204,204,0]],[1708363540,[204,204,0]],[1708363541,[208,208,0]],[1708363542,[211,211,0]],[1708363543,[214,214,0]],[1708363544,[217,217,0]],[1708363545,[219,219,0]],[1708363546,[222,222,0]],[1708363547,[225,225,0]],[1708363548,[228,228,0]],[1708363549,[229,229,0]],[1708363550,[234,234,0]],[1708363551,[236,236,0]],[1708363552,[239,239,0]],[1708363553,[242,242,0]],[1708363554,[244,244,0]],[1708363555,[248,248,0]],[1708363556,[250,250,0]],[1708363557,[253,253,0]],[1708363558,[255,255,0]],[1708363559,[261,259,2]],[1708363560,[262,246,16]],[1708363561,[262,254,8]],[1708363562,[268,259,9]],[1708363563,[264,239,25]],[1708363564,[278,269,9]],[1708363565,[275,267,8]],[1708363566,[279,270,9]],[1708363567,[281,273,8]],[1708363568,[284,275,9]],[1708363569,[286,278,8]],[1708363570,[290,281,9]],[1708363571,[292,284,8]],[1708363572,[295,286,9]],[1708363573,[298,289,9]],[1708363574,[301,292,9]],[1708363575,[304,295,9]],[1708363576,[306,297,9]],[1708363577,[308,299,9]],[1708363578,[313,303,10]],[1708363579,[315,306,9]],[1708363580,[317,308,9]],[1708363581,[320,310,10]],[1708363582,[323,314,9]],[1708363583,[326,316,10]],[1708363584,[330,320,10]],[1708363585,[332,322,10]],[1708363586,[334,324,10]],[1708363587,[337,327,10]],[1708363588,[340,330,10]],[1708363589,[340,330,10]],[1708363590,[340,330,10]],[1708363591,[340,330,10]],[1708363592,[340,330,10]],[1708363593,[340,330,10]],[1708363594,[340,330,10]],[1708363595,[340,330,10]],[1708363596,[340,330,10]],[1708363597,[340,330,10]],[1708363598,[340,330,10]],[1708363599,[340,330,10]],[1708363600,[340,330,10]],[1708363601,[340,330,10]],[1708363602,[340,330,10]],[1708363603,[340,330,10]],[1708363604,[340,330,10]],[1708363605,[340,330,10]],[1708363606,[340,330,10]],[1708363607,[340,330,10]],[1708363608,[340,330,10]],[1708363609,[340,330,10]],[1708363610,[340,330,10]],[1708363611,[340,330,10]],[1708363612,[340,330,10]],[1708363613,[340,330,10]],[1708363614,[340,330,10]],[1708363615,[340,330,10]],[1708363616,[340,330,10]],[1708363617,[340,330,10]],[1708363618,[340,330,10]],[1708363619,[340,330,10]],[1708363620,[340,330,10]],[1708363621,[340,330,10]],[1708363622,[340,330,10]],[1708363623,[340,313,27]],[1708363624,[340,243,97]],[1708363625,[340,247,93]],[1708363626,[340,252,88]],[1708363627,[340,250,90]],[1708363628,[340,244,96]],[1708363629,[340,252,88]],[1708363630,[340,251,89]],[1708363631,[340,242,98]],[1708363632,[340,253,87]],[1708363633,[340,250,90]],[1708363634,[340,322,18]],[1708363635,[340,330,10]],[1708363636,[340,330,10]],[1708363637,[340,330,10]],[1708363638,[340,330,10]],[1708363639,[340,330,10]],[1708363640,[340,330,10]],[1708363641,[340,330,10]],[1708363642,[340,330,10]],[1708363643,[340,330,10]],[1708363644,[340,330,10]],[1708363645,[340,330,10]],[1708363646,[340,330,10]],[1708363647,[340,330,10]],[1708363648,[340,330,10]],[1708363649,[340,330,10]],[1708363650,[340,330,10]],[1708363651,[340,330,10]],[1708363652,[340,330,10]],[1708363653,[340,330,10]],[1708363654,[340,330,10]],[1708363655,[340,330,10]],[1708363656,[340,330,10]],[1708363657,[340,330,10]],[1708363658,[340,330,10]],[1708363659,[340,330,10]],[1708363660,[340,330,10]],[1708363661,[340,330,10]],[1708363662,[340,330,10]],[1708363663,[340,330,10]],[1708363664,[340,330,10]],[1708363665,[340,330,10]],[1708363666,[340,330,10]],[1708363667,[340,330,10]],[1708363668,[340,330,10]],[1708363669,[340,330,10]],[1708363670,[340,330,10]],[1708363671,[340,330,10]],[1708363672,[340,330,10]],[1708363673,[340,330,10]],[1708363674,[340,330,10]],[1708363675,[340,330,10]],[1708363676,[340,330,10]],[1708363677,[340,330,10]],[1708363678,[340,330,10]],[1708363679,[340,330,10]],[1708363680,[340,330,10]],[1708363681,[340,330,10]],[1708363682,[340,330,10]],[1708363683,[340,330,10]],[1708363684,[340,330,10]],[1708363685,[340,330,10]],[1708363686,[340,330,10]],[1708363687,[340,330,10]],[1708363688,[340,330,10]],[1708363689,[340,330,10]],[1708363690,[340,330,10]],[1708363691,[340,330,10]],[1708363692,[340,330,10]],[1708363693,[340,330,10]],[1708363694,[340,330,10]],[1708363695,[340,330,10]],[1708363696,[340,330,10]],[1708363697,[340,330,10]],[1708363698,[340,330,10]],[1708363699,[340,330,10]],[1708363700,[340,330,10]],[1708363701,[340,330,10]],[1708363702,[340,330,10]],[1708363703,[340,330,10]],[1708363704,[340,330,10]],[1708363705,[340,330,10]],[1708363706,[340,330,10]],[1708363707,[503,489,14]]]);
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: {