-
Notifications
You must be signed in to change notification settings - Fork 923
/
Copy pathindex.html
1225 lines (1155 loc) · 103 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="shortcut icon" type="image/x-icon" href="style/favicon.ico"/>
<link href="style/style.css" rel="stylesheet" type="text/css" />
<link href="style/bootstrap.min.css" rel="stylesheet" type="text/css" />
<script src="js/jquery-3.5.1.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/gatling.js"></script>
<script src="js/menu.js"></script>
<script src="js/ellipsis.js"></script>
<script src="js/all_sessions.js"></script>
<script src="js/stats.js"></script>
<script src="js/highstock.js"></script>
<script src="js/highcharts-more.js"></script>
<script src="js/theme.js"></script>
<script src="js/unpack.js"></script>
<title>Gatling Stats - Global Information</title>
</head>
<body>
<script>
const storedTheme = localStorage.getItem('theme') || (window.matchMedia("(prefers-color-scheme: dark)").matches ? "dark" : "light");
if (storedTheme) document.documentElement.setAttribute('data-theme', storedTheme)
function toggleTheme() {
const currentTheme = document.documentElement.getAttribute("data-theme");
const targetTheme = currentTheme === "light" ? "dark" : "light";
document.documentElement.setAttribute('data-theme', targetTheme)
localStorage.setItem('theme', targetTheme);
};
</script>
<div class="app-container">
<div class="frise"></div>
<div class="head">
<div class="gatling-open-source">
<a class="gatling-logo gatling-logo-light" href="https://gatling.io" target="blank_" title="Gatling Home Page"><img alt="Gatling" src="style/logo-light.svg"/></a>
<a class="gatling-logo gatling-logo-dark" href="https://gatling.io" target="blank_" title="Gatling Home Page"><img alt="Gatling" src="style/logo-dark.svg"/></a>
<a class="gatling-documentation" href="https://gatling.io/docs/" target="_blank">Documentation</a>
</div>
<div class="nav spacer"></div>
<a class="enterprise" href="https://gatling.io/enterprise/next-step/" target="_blank"><strong>Try</strong>
<img class="logo-enterprise-light" alt="Gatling Enterprise" src="style/logo-enterprise-light.svg"/>
<img class="logo-enterprise-dark" alt="Gatling Enterprise" src="style/logo-enterprise-dark.svg"/>
</a>
<button id="theme-toggle" class="theme-toggle" type="button" onclick="toggleTheme()" aria-label="Toggle user interface mode">
<span class="toggle-dark"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-moon"><path d="M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z"></path></svg></span>
<span class="toggle-light"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-sun"><circle cx="12" cy="12" r="5"></circle><line x1="12" y1="1" x2="12" y2="3"></line><line x1="12" y1="21" x2="12" y2="23"></line><line x1="4.22" y1="4.22" x2="5.64" y2="5.64"></line><line x1="18.36" y1="18.36" x2="19.78" y2="19.78"></line><line x1="1" y1="12" x2="3" y2="12"></line><line x1="21" y1="12" x2="23" y2="12"></line><line x1="4.22" y1="19.78" x2="5.64" y2="18.36"></line><line x1="18.36" y1="5.64" x2="19.78" y2="4.22"></line></svg></span>
</button>
</div>
<div class="container details">
<div class="nav">
<ul></ul>
</div>
<div class="cadre">
<div class="content">
<div class="content-header">
<div class="onglet">
RinhaBackendCrebitosSimulation
</div>
<div class="sous-menu" id="sousMenu">
<div class="sous-menu-spacer">
<div class="item ouvert"><a href="index.html">Global</a></div>
<div class="item "><a id="details_link" href="#">Details</a></div>
</div>
</div>
</div>
<div class="content-in">
<div class="container-article">
<div class="article">
<div class="schema-container">
<div id="ranges" class="schema ranges">
</div>
<div class="schema polar">
<div id="container_number_of_requests"></div>
</div>
<div class="simulation-card">
<div class="simulation-version-information">
<span class="simulation-information-title">Gatling Version</span>
<span class="simulation-information-item">
<span class="simulation-information-label">Version: </span>
<span>3.10.3</span>
</span>
<span class="simulation-information-item">
<span class="simulation-information-label">Released: </span>
<span>2023-12-20</span>
</span>
</div>
<div id="simulation-information" class="simulation-version-information">
<span class="simulation-information-title">Run Information</span>
<div class="simulation-information-container">
<span class="simulation-information-item">
<span class="simulation-information-label">Date: </span>
<span>2024-02-26 19:57:21 GMT</span>
</span>
<span class="simulation-information-item">
<span class="simulation-information-label">Duration: </span>
<span>4m 10s </span>
</span>
<span class="simulation-tooltip simulation-information-item description" title="Description" data-content="Rinha de Backend - 2024/Q1: Crébito - lucasew-go-tigerbeetle">
<span class="simulation-information-label">Description: </span>
<span>Rinha de Backend - 2024/Q1: Crébito - lucasew-go-tigerbeetle</span>
</span>
</div>
</div>
</div>
</div>
<div id="statistics_table_container">
<div id="stats" class="statistics extensible-geant collapsed">
<div class="title">
<div id="statistics_title" class="title_base"><span class="title_base_stats">Stats</span><span class="expand-table">Fixed height</span><span id="toggle-stats" class="toggle-table"></span><span class="collapse-table">Full size</span></div>
<div class="right">
<button class="statistics-button expand-all-button">Expand all groups</button>
<button class="statistics-button collapse-all-button">Collapse all groups</button>
<button id="statistics_full_screen" class="statistics-button" onclick="openStatisticsTableModal()"><img alt="Fullscreen" src="style/fullscreen.svg"></button>
</div>
</div>
<div class="scrollable">
<table id="container_statistics_head" class="statistics-in extensible-geant">
<thead>
<tr>
<th rowspan="2" id="col-1" class="header sortable sorted-up"><span>Requests</span></th>
<th colspan="5" class="header"><span class="executions">Executions</span></th>
<th colspan="8" class="header"><span class="response-time">Response Time (ms)</span></th>
</tr>
<tr>
<th id="col-2" class="header sortable"><span>Total</span></th>
<th id="col-3" class="header sortable"><span>OK</span></th>
<th id="col-4" class="header sortable"><span>KO</span></th>
<th id="col-5" class="header sortable"><span>% KO</span></th>
<th id="col-6" class="header sortable"><span><abbr title="Count of events per second">Cnt/s</abbr></span></th>
<th id="col-7" class="header sortable"><span>Min</span></th>
<th id="col-8" class="header sortable"><span>50th pct</span></th>
<th id="col-9" class="header sortable"><span>75th pct</span></th>
<th id="col-10" class="header sortable"><span>95th pct</span></th>
<th id="col-11" class="header sortable"><span>99th pct</span></th>
<th id="col-12" class="header sortable"><span>Max</span></th>
<th id="col-13" class="header sortable"><span>Mean</span></th>
<th id="col-14" class="header sortable"><span><abbr title="Standard Deviation">Std Dev</abbr></span></th>
</tr>
</thead>
<tbody></tbody>
</table>
<table id="container_statistics_body" class="statistics-in extensible-geant">
<tbody></tbody>
</table>
</div>
</div>
</div>
<dialog id="statistics_table_modal" class="statistics-table-modal">
<div class="statistics-table-modal-header"><button class="button-modal" onclick="closeStatisticsTableModal()"><img alt="Close" src="style/close.svg"></button></div>
<div class="statistics-table-modal-container">
<div id="statistics_table_modal_content" class="statistics-table-modal-content"></div>
</div>
</dialog>
<script>
function openStatisticsTableModal () {
const statsTable = document.getElementById("stats");
const statsTableModal = document.getElementById("statistics_table_modal");
const fullScreenButton = document.getElementById("statistics_full_screen");
fullScreenButton.disabled = true;
if (typeof statsTableModal.showModal === "function") {
const statsTableModalContent = document.getElementById("statistics_table_modal_content");
statsTableModalContent.innerHTML = "";
statsTableModalContent.appendChild(statsTable);
statsTableModal.showModal();
statsTableModal.addEventListener("close", function () {
const container = document.getElementById("statistics_table_container");
container.appendChild(statsTable);
fullScreenButton.disabled = false;
});
} else {
const incompatibleBrowserVersionMessage = document.createElement("div");
incompatibleBrowserVersionMessage.innerText = "Sorry, the <dialog> API is not supported by this browser.";
statsTable.insertBefore(incompatibleBrowserVersionMessage, statsTable.children[0]);
}
}
function closeStatisticsTableModal () {
const statsTableModal = document.getElementById("statistics_table_modal");
statsTableModal.close();
}
</script>
<div class="statistics extensible-geant collapsed">
<div class="title">
Errors
</div>
<table id="container_errors" class="statistics-in extensible-geant">
<thead>
<tr>
<th id="error-col-1" class="header sortable"><span>Error</span></th>
<th id="error-col-2" class="header sortable"><span>Count</span></th>
<th id="error-col-3" class="header sortable"><span>Percentage</span></th>
</tr>
</thead>
<tbody>
<tr>
<td class="error-col-1 total ko">status.find.in(200,422), but actually found 502<span class="value" style="display:none">0</span></td>
<td class="value error-col-2 total ko">22717</td>
<td class="value error-col-3 total ko">66.842 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">status.find.in(200), but actually found 502<span class="value" style="display:none">1</span></td>
<td class="value error-col-2 total ko">10193</td>
<td class="value error-col-3 total ko">29.992 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">status.find.in([200, 209], 304), found 502<span class="value" style="display:none">2</span></td>
<td class="value error-col-2 total ko">1014</td>
<td class="value error-col-3 total ko">2.984 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">status.find.in(200), but actually found 422<span class="value" style="display:none">3</span></td>
<td class="value error-col-2 total ko">49</td>
<td class="value error-col-3 total ko">0.144 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">status.find.in(422), but actually found 200<span class="value" style="display:none">4</span></td>
<td class="value error-col-2 total ko">10</td>
<td class="value error-col-3 total ko">0.029 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">jmesPath(saldo.total).find.is(0), but actually found 50<span class="value" style="display:none">5</span></td>
<td class="value error-col-2 total ko">2</td>
<td class="value error-col-3 total ko">0.006 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">jmesPath(saldo.total).find.is(-25), but actually found 25<span class="value" style="display:none">6</span></td>
<td class="value error-col-2 total ko">1</td>
<td class="value error-col-3 total ko">0.003 %</td>
</tr>
</tbody>
</table>
</div>
<div class="schema geant">
<div id="active_users" class="geant"></div>
</div>
<div class="schema geant">
<div id="responsetimeDistributionContainer" class="geant"></div>
</div>
<div class="schema geant">
<div id="responsetimepercentilesovertimeokPercentilesContainer" class="geant"></div>
</div>
<div class="schema geant">
<div id="requests" class="geant"></div>
</div>
<div class="schema geant">
<div id="responses" class="geant"></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<script>
var pageStats = stats.stats;
$(document).ready(function() {
$('.simulation-tooltip').popover({trigger:'hover', placement:'left'});
setDetailsLinkUrl();
setGlobalMenu();
setActiveMenu();
fillStats(pageStats);
Highcharts.setOptions({
global: { useUTC: false }
});
var rangesChart = new Highcharts.Chart({
chart: {
renderTo: 'ranges',
marginRight: 100
},
credits: { enabled: false },
legend: { enabled: false },
title: { text: 'A title to let highcharts reserve the place for the title set later' },
xAxis: {
categories: [
pageStats.group1.htmlName,
pageStats.group2.htmlName,
pageStats.group3.htmlName,
pageStats.group4.htmlName
]
},
yAxis: {
title: { text: 'Number of Requests' },
reversedStacks: false
},
tooltip: {
formatter: function() {
var s;
if (this.point.name) { // the pie chart
s = ''+ this.point.name +': '+ this.y +'% requests';
} else {
s = ''+ this.y + ' requests';
}
return s;
}
},
plotOptions: {
series: {
stacking: 'normal',
shadow: true
}
},
series: [
{
type: 'column',
data: [{
color: '#68b65c',
y: pageStats.group1.count
},
{
color: '#FFDD00',
y: pageStats.group2.count
},
{
color: '#FFA900',
y: pageStats.group3.count
},
{
color: '#f15b4f',
y: pageStats.group4.count
}]
},
{
type: 'pie',
name: 'Percentages',
data: [
{
name: pageStats.group1.name,
y: pageStats.group1.percentage,
color: '#68b65c'
},
{
name: pageStats.group2.name,
y: pageStats.group2.percentage,
color: '#FFDD00'
},
{
name: pageStats.group3.name,
y: pageStats.group3.percentage,
color: '#FFA900'
},
{
name: pageStats.group4.name,
y: pageStats.group4.percentage,
color: '#f15b4f'
}
],
center: [345, 0],
size: 90,
showInLegend: false,
dataLabels: { enabled: false }
}
]
});
rangesChart.setTitle({
text: '<span class="chart_title">Response Time Ranges</span>',
useHTML: true
});
function numberOfRequestsDataForGroup(group) {
var data = {names: [], oks: [], kos: []};
$.each(group.contents, function(contentName, content) {
if (content.type == 'GROUP') {
var result = numberOfRequestsDataForGroup(content);
data.names = data.names.concat(result.names);
data.oks = data.oks.concat(result.oks);
data.kos = data.kos.concat(result.kos);
}
else if (content.type == 'REQUEST') {
data.names.push(content.path);
data.oks.push(parseInt(content.stats.numberOfRequests.ok));
data.kos.push(parseInt(content.stats.numberOfRequests.ko));
}
});
return data;
}
var numberOfRequestsData = numberOfRequestsDataForGroup(stats);
var tickInterval = Math.ceil(numberOfRequestsData.names.length / 1000);
new Highcharts.Chart({
chart: {
renderTo:'container_number_of_requests',
polar:true,
type:'column',
height:330
},
credits:{
enabled:false
},
title:{
text:'<span class="chart_title">Number of requests</span>',
useHTML: true,
widthAdjust:-20
},
xAxis:{
tickmarkPlacement:'on',
tickInterval: tickInterval,
categories:numberOfRequestsData.names,
labels:{ enabled:false }
},
yAxis:{
min:0,
reversedStacks: false
},
plotOptions:{
series:{
stacking:'normal',
groupPadding:0,
pointPlacement:'on',
shadow: true
}
},
legend: {
borderWidth: 0,
itemStyle: { fontWeight: "normal" },
symbolRadius: 0
},
series:[
{
name:'OK',
data:numberOfRequestsData.oks,
color:"#68b65c"
},
{
name:'KO',
data:numberOfRequestsData.kos,
color:"#f15b4f"
}
]
});
$('#container_exceptions').sortable('#container_exceptions');
function generateHtmlRow(request, level, index, parent, group) {
if (request.name == 'All Requests')
var url = 'index.html';
else
var url = request.pathFormatted + '.html';
if (group)
var expandButtonStyle = '';
else
var expandButtonStyle = ' hidden';
if (request.stats.numberOfRequests.total != 0)
var koPercent = (request.stats.numberOfRequests.ko * 100 / request.stats.numberOfRequests.total).toFixed(0) + '%';
else
var koPercent = '-'
return '<tr id="' + request.pathFormatted + '" data-parent=' + parent + '> \
<td class="total col-1"> \
<div class="expandable-container"> \
<span id="' + request.pathFormatted + '" style="margin-left: ' + (level * 10) + 'px;" class="expand-button' + expandButtonStyle + '"> </span> \
<a href="' + url +'" class="withTooltip">' + ellipsedLabel({ name: request.name, parentClass: "table-cell-tooltip" }) + '</a><span class="value" style="display:none;">' + index + '</span> \
</div> \
</td> \
<td class="value total col-2">' + request.stats.numberOfRequests.total + '</td> \
<td class="value ok col-3">' + request.stats.numberOfRequests.ok + '</td> \
<td class="value ko col-4">' + request.stats.numberOfRequests.ko + '</td> \
<td class="value ko col-5">' + koPercent + '</td> \
<td class="value total col-6">' + request.stats.meanNumberOfRequestsPerSecond.total + '</td> \
<td class="value total col-7">' + request.stats.minResponseTime.total + '</td> \
<td class="value total col-8">' + request.stats.percentiles1.total + '</td> \
<td class="value total col-9">' + request.stats.percentiles2.total + '</td> \
<td class="value total col-10">' + request.stats.percentiles3.total + '</td> \
<td class="value total col-11">' + request.stats.percentiles4.total + '</td> \
<td class="value total col-12">' + request.stats.maxResponseTime.total + '</td> \
<td class="value total col-13">' + request.stats.meanResponseTime.total + '</td> \
<td class="value total col-14">' + request.stats.standardDeviation.total + '</td> \
</tr>';
}
function generateHtmlRowsForGroup(group, level, index, parent) {
var buffer = '';
if (!parent)
parent = 'ROOT';
else {
buffer += generateHtmlRow(group, level - 1, index, parent, true);
index++;
parent = group.pathFormatted;
}
$.each(group.contents, function(contentName, content) {
if (content.type == 'GROUP') {
var result = generateHtmlRowsForGroup(content, level + 1, index, parent);
buffer += result.html;
index = result.index;
}
else if (content.type == 'REQUEST') {
buffer += generateHtmlRow(content, level, index, parent);
index++;
}
});
return { html: buffer, index: index };
}
$('#container_statistics_head tbody').append(generateHtmlRow(stats, 0, 0));
var lines = generateHtmlRowsForGroup(stats, 0, 0);
$('#container_statistics_body tbody').append(lines.html);
$('#container_statistics_head').sortable('#container_statistics_body');
$('.statistics').expandable();
if (lines.index < 30) {
$('#statistics_title span').attr('style', 'display: none;');
} else {
$('#statistics_title').addClass('title_collapsed');
$('#statistics_title').click(function() {
$('#toggle-stats').toggleClass("off");
$(this).toggleClass('title_collapsed').toggleClass('title_expanded');
$('#container_statistics_body').parent().toggleClass('scrollable').toggleClass('');
});
}
$('.table-cell-tooltip').popover({trigger:'hover'});
$('#container_errors').sortable('#container_errors');
allUsersData.yAxis = 0;
var allUsersChart = new Highcharts.StockChart({
chart: {
renderTo: 'active_users',
zoomType: 'x'
},
credits: { enabled: false },
legend: {
enabled: true,
floating: true,
align: 'right',
verticalAlign: 'top',
layout: 'vertical',
borderWidth: 0,
itemStyle: { fontWeight: "normal" },
symbolRadius: 0
},
title: { text: 'A title to let highcharts reserve the place for the title set later' },
navigator: {
maskInside: false
},
rangeSelector: {
buttonSpacing: 0,
buttonTheme: {
fill: '#CFC9C6',
padding: 1,
stroke: '#000000',
'stroke-width': 0.25,
style: {
color: '#000000',
fontWeight: 'bold',
},
states: {
stroke: '#000000',
'stroke-width': 0.25,
hover: {
fill: '#92918C',
style: { color: 'black' }
},
select: {
fill: '#FFA900',
style: { color: 'white' }
}
}
},
buttons : [
{
type : 'minute',
count : 1,
text : '1m'
}, {
type : 'minute',
count : 10,
text : '10m'
}, {
type : 'hour',
count : 1,
text : '1h'
}, {
type : 'all',
count : 1,
text : 'All'
}
],
selected : 3,
inputEnabled : false
},
xAxis: {
type: 'datetime',
ordinal: false,
maxZoom: 10000 // three days
},
yAxis: {
title: { text: 'Number of Active Users' },
opposite: false,
min: 0
},
series: [
{
color: '#5E7BE2',
name: 'créditos',
data: [
[1708977442000,0],[1708977443000,0],[1708977444000,0],[1708977445000,0],[1708977446000,0],[1708977447000,2],[1708977448000,3],[1708977449000,5],[1708977450000,5],[1708977451000,6],[1708977452000,7],[1708977453000,8],[1708977454000,9],[1708977455000,9],[1708977456000,11],[1708977457000,11],[1708977458000,13],[1708977459000,14],[1708977460000,16],[1708977461000,15],[1708977462000,17],[1708977463000,17],[1708977464000,19],[1708977465000,19],[1708977466000,21],[1708977467000,23],[1708977468000,22],[1708977469000,25],[1708977470000,25],[1708977471000,28],[1708977472000,27],[1708977473000,31],[1708977474000,30],[1708977475000,35],[1708977476000,32],[1708977477000,32],[1708977478000,34],[1708977479000,38],[1708977480000,40],[1708977481000,38],[1708977482000,39],[1708977483000,45],[1708977484000,47],[1708977485000,45],[1708977486000,45],[1708977487000,46],[1708977488000,52],[1708977489000,53],[1708977490000,53],[1708977491000,58],[1708977492000,58],[1708977493000,61],[1708977494000,59],[1708977495000,59],[1708977496000,59],[1708977497000,61],[1708977498000,68],[1708977499000,70],[1708977500000,76],[1708977501000,80],[1708977502000,77],[1708977503000,85],[1708977504000,87],[1708977505000,91],[1708977506000,96],[1708977507000,102],[1708977508000,108],[1708977509000,112],[1708977510000,111],[1708977511000,122],[1708977512000,137],[1708977513000,146],[1708977514000,155],[1708977515000,161],[1708977516000,173],[1708977517000,185],[1708977518000,201],[1708977519000,213],[1708977520000,226],[1708977521000,239],[1708977522000,251],[1708977523000,273],[1708977524000,287],[1708977525000,304],[1708977526000,322],[1708977527000,86],[1708977528000,75],[1708977529000,76],[1708977530000,77],[1708977531000,78],[1708977532000,79],[1708977533000,79],[1708977534000,81],[1708977535000,81],[1708977536000,82],[1708977537000,83],[1708977538000,113],[1708977539000,152],[1708977540000,189],[1708977541000,221],[1708977542000,257],[1708977543000,300],[1708977544000,332],[1708977545000,372],[1708977546000,417],[1708977547000,415],[1708977548000,416],[1708977549000,422],[1708977550000,424],[1708977551000,428],[1708977552000,429],[1708977553000,423],[1708977554000,425],[1708977555000,433],[1708977556000,443],[1708977557000,448],[1708977558000,485],[1708977559000,480],[1708977560000,486],[1708977561000,482],[1708977562000,483],[1708977563000,479],[1708977564000,476],[1708977565000,467],[1708977566000,471],[1708977567000,478],[1708977568000,468],[1708977569000,465],[1708977570000,463],[1708977571000,460],[1708977572000,469],[1708977573000,461],[1708977574000,475],[1708977575000,478],[1708977576000,498],[1708977577000,496],[1708977578000,507],[1708977579000,512],[1708977580000,508],[1708977581000,509],[1708977582000,505],[1708977583000,503],[1708977584000,507],[1708977585000,490],[1708977586000,495],[1708977587000,486],[1708977588000,493],[1708977589000,512],[1708977590000,508],[1708977591000,514],[1708977592000,512],[1708977593000,519],[1708977594000,528],[1708977595000,547],[1708977596000,110],[1708977597000,110],[1708977598000,110],[1708977599000,110],[1708977600000,110],[1708977601000,111],[1708977602000,110],[1708977603000,111],[1708977604000,110],[1708977605000,111],[1708977606000,143],[1708977607000,208],[1708977608000,284],[1708977609000,357],[1708977610000,422],[1708977611000,441],[1708977612000,462],[1708977613000,476],[1708977614000,488],[1708977615000,487],[1708977616000,505],[1708977617000,505],[1708977618000,485],[1708977619000,489],[1708977620000,496],[1708977621000,493],[1708977622000,500],[1708977623000,511],[1708977624000,530],[1708977625000,521],[1708977626000,504],[1708977627000,491],[1708977628000,486],[1708977629000,485],[1708977630000,496],[1708977631000,481],[1708977632000,488],[1708977633000,484],[1708977634000,482],[1708977635000,495],[1708977636000,505],[1708977637000,511],[1708977638000,513],[1708977639000,502],[1708977640000,497],[1708977641000,492],[1708977642000,475],[1708977643000,468],[1708977644000,478],[1708977645000,476],[1708977646000,474],[1708977647000,472],[1708977648000,486],[1708977649000,490],[1708977650000,506],[1708977651000,506],[1708977652000,509],[1708977653000,503],[1708977654000,504],[1708977655000,509],[1708977656000,508],[1708977657000,495],[1708977658000,504],[1708977659000,527],[1708977660000,515],[1708977661000,531],[1708977662000,532],[1708977663000,539],[1708977664000,329],[1708977665000,333],[1708977666000,110],[1708977667000,111],[1708977668000,111],[1708977669000,111],[1708977670000,111],[1708977671000,111],[1708977672000,110],[1708977673000,111],[1708977674000,94],[1708977675000,128],[1708977676000,146],[1708977677000,203],[1708977678000,268],[1708977679000,288],[1708977680000,290],[1708977681000,312],[1708977682000,314],[1708977683000,306],[1708977684000,294],[1708977685000,332],[1708977686000,387],[1708977687000,342],[1708977688000,287],[1708977689000,224],[1708977690000,160],[1708977691000,90],[1708977692000,31]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#68b65c',
name: 'débitos',
data: [
[1708977442000,0],[1708977443000,0],[1708977444000,0],[1708977445000,0],[1708977446000,0],[1708977447000,2],[1708977448000,5],[1708977449000,7],[1708977450000,8],[1708977451000,10],[1708977452000,12],[1708977453000,14],[1708977454000,16],[1708977455000,17],[1708977456000,20],[1708977457000,21],[1708977458000,23],[1708977459000,26],[1708977460000,28],[1708977461000,31],[1708977462000,34],[1708977463000,34],[1708977464000,38],[1708977465000,38],[1708977466000,42],[1708977467000,42],[1708977468000,43],[1708977469000,46],[1708977470000,53],[1708977471000,55],[1708977472000,51],[1708977473000,63],[1708977474000,59],[1708977475000,70],[1708977476000,63],[1708977477000,65],[1708977478000,67],[1708977479000,74],[1708977480000,71],[1708977481000,79],[1708977482000,81],[1708977483000,88],[1708977484000,92],[1708977485000,86],[1708977486000,89],[1708977487000,91],[1708977488000,99],[1708977489000,104],[1708977490000,106],[1708977491000,109],[1708977492000,114],[1708977493000,122],[1708977494000,118],[1708977495000,117],[1708977496000,117],[1708977497000,127],[1708977498000,135],[1708977499000,143],[1708977500000,153],[1708977501000,163],[1708977502000,161],[1708977503000,171],[1708977504000,172],[1708977505000,181],[1708977506000,196],[1708977507000,204],[1708977508000,210],[1708977509000,210],[1708977510000,229],[1708977511000,245],[1708977512000,259],[1708977513000,274],[1708977514000,293],[1708977515000,323],[1708977516000,341],[1708977517000,372],[1708977518000,398],[1708977519000,423],[1708977520000,454],[1708977521000,476],[1708977522000,518],[1708977523000,553],[1708977524000,587],[1708977525000,632],[1708977526000,674],[1708977527000,170],[1708977528000,150],[1708977529000,152],[1708977530000,153],[1708977531000,155],[1708977532000,157],[1708977533000,159],[1708977534000,161],[1708977535000,162],[1708977536000,165],[1708977537000,166],[1708977538000,223],[1708977539000,298],[1708977540000,374],[1708977541000,440],[1708977542000,510],[1708977543000,571],[1708977544000,649],[1708977545000,721],[1708977546000,816],[1708977547000,829],[1708977548000,830],[1708977549000,827],[1708977550000,832],[1708977551000,843],[1708977552000,835],[1708977553000,842],[1708977554000,846],[1708977555000,840],[1708977556000,830],[1708977557000,829],[1708977558000,801],[1708977559000,804],[1708977560000,806],[1708977561000,805],[1708977562000,811],[1708977563000,822],[1708977564000,826],[1708977565000,832],[1708977566000,832],[1708977567000,828],[1708977568000,835],[1708977569000,839],[1708977570000,837],[1708977571000,841],[1708977572000,827],[1708977573000,832],[1708977574000,825],[1708977575000,823],[1708977576000,801],[1708977577000,805],[1708977578000,796],[1708977579000,795],[1708977580000,796],[1708977581000,799],[1708977582000,794],[1708977583000,795],[1708977584000,795],[1708977585000,808],[1708977586000,808],[1708977587000,813],[1708977588000,813],[1708977589000,788],[1708977590000,791],[1708977591000,784],[1708977592000,781],[1708977593000,774],[1708977594000,766],[1708977595000,752],[1708977596000,220],[1708977597000,220],[1708977598000,220],[1708977599000,220],[1708977600000,220],[1708977601000,221],[1708977602000,220],[1708977603000,221],[1708977604000,220],[1708977605000,221],[1708977606000,285],[1708977607000,429],[1708977608000,580],[1708977609000,708],[1708977610000,851],[1708977611000,860],[1708977612000,843],[1708977613000,830],[1708977614000,812],[1708977615000,809],[1708977616000,795],[1708977617000,805],[1708977618000,813],[1708977619000,812],[1708977620000,810],[1708977621000,814],[1708977622000,805],[1708977623000,787],[1708977624000,777],[1708977625000,781],[1708977626000,800],[1708977627000,803],[1708977628000,805],[1708977629000,811],[1708977630000,806],[1708977631000,807],[1708977632000,810],[1708977633000,817],[1708977634000,818],[1708977635000,801],[1708977636000,800],[1708977637000,800],[1708977638000,794],[1708977639000,794],[1708977640000,807],[1708977641000,812],[1708977642000,829],[1708977643000,827],[1708977644000,824],[1708977645000,822],[1708977646000,831],[1708977647000,823],[1708977648000,818],[1708977649000,814],[1708977650000,801],[1708977651000,803],[1708977652000,804],[1708977653000,804],[1708977654000,801],[1708977655000,788],[1708977656000,784],[1708977657000,801],[1708977658000,789],[1708977659000,765],[1708977660000,772],[1708977661000,766],[1708977662000,763],[1708977663000,751],[1708977664000,480],[1708977665000,485],[1708977666000,220],[1708977667000,221],[1708977668000,220],[1708977669000,221],[1708977670000,221],[1708977671000,221],[1708977672000,220],[1708977673000,220],[1708977674000,223],[1708977675000,220],[1708977676000,291],[1708977677000,416],[1708977678000,531],[1708977679000,530],[1708977680000,528],[1708977681000,507],[1708977682000,507],[1708977683000,511],[1708977684000,522],[1708977685000,574],[1708977686000,691],[1708977687000,588],[1708977688000,495],[1708977689000,395],[1708977690000,287],[1708977691000,164],[1708977692000,38]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#f15b4f',
name: 'extratos',
data: [
[1708977442000,0],[1708977443000,0],[1708977444000,0],[1708977445000,0],[1708977446000,1],[1708977447000,2],[1708977448000,2],[1708977449000,2],[1708977450000,2],[1708977451000,2],[1708977452000,3],[1708977453000,2],[1708977454000,3],[1708977455000,3],[1708977456000,2],[1708977457000,3],[1708977458000,3],[1708977459000,3],[1708977460000,3],[1708977461000,3],[1708977462000,3],[1708977463000,3],[1708977464000,4],[1708977465000,3],[1708977466000,4],[1708977467000,3],[1708977468000,4],[1708977469000,3],[1708977470000,4],[1708977471000,4],[1708977472000,4],[1708977473000,4],[1708977474000,4],[1708977475000,4],[1708977476000,4],[1708977477000,5],[1708977478000,4],[1708977479000,5],[1708977480000,5],[1708977481000,5],[1708977482000,5],[1708977483000,6],[1708977484000,6],[1708977485000,6],[1708977486000,5],[1708977487000,5],[1708977488000,6],[1708977489000,7],[1708977490000,6],[1708977491000,6],[1708977492000,7],[1708977493000,7],[1708977494000,8],[1708977495000,8],[1708977496000,6],[1708977497000,7],[1708977498000,9],[1708977499000,9],[1708977500000,9],[1708977501000,9],[1708977502000,9],[1708977503000,9],[1708977504000,10],[1708977505000,11],[1708977506000,12],[1708977507000,11],[1708977508000,13],[1708977509000,11],[1708977510000,13],[1708977511000,14],[1708977512000,14],[1708977513000,18],[1708977514000,21],[1708977515000,20],[1708977516000,22],[1708977517000,23],[1708977518000,26],[1708977519000,30],[1708977520000,29],[1708977521000,30],[1708977522000,34],[1708977523000,33],[1708977524000,35],[1708977525000,39],[1708977526000,41],[1708977527000,12],[1708977528000,7],[1708977529000,7],[1708977530000,7],[1708977531000,7],[1708977532000,8],[1708977533000,7],[1708977534000,8],[1708977535000,8],[1708977536000,7],[1708977537000,8],[1708977538000,12],[1708977539000,15],[1708977540000,19],[1708977541000,24],[1708977542000,32],[1708977543000,32],[1708977544000,40],[1708977545000,46],[1708977546000,52],[1708977547000,54],[1708977548000,57],[1708977549000,54],[1708977550000,53],[1708977551000,49],[1708977552000,51],[1708977553000,54],[1708977554000,55],[1708977555000,55],[1708977556000,56],[1708977557000,53],[1708977558000,50],[1708977559000,50],[1708977560000,51],[1708977561000,54],[1708977562000,51],[1708977563000,51],[1708977564000,50],[1708977565000,52],[1708977566000,53],[1708977567000,54],[1708977568000,57],[1708977569000,55],[1708977570000,58],[1708977571000,59],[1708977572000,62],[1708977573000,63],[1708977574000,61],[1708977575000,60],[1708977576000,58],[1708977577000,59],[1708977578000,55],[1708977579000,53],[1708977580000,55],[1708977581000,54],[1708977582000,56],[1708977583000,56],[1708977584000,60],[1708977585000,59],[1708977586000,53],[1708977587000,55],[1708977588000,54],[1708977589000,57],[1708977590000,59],[1708977591000,63],[1708977592000,61],[1708977593000,63],[1708977594000,64],[1708977595000,62],[1708977596000,10],[1708977597000,10],[1708977598000,10],[1708977599000,10],[1708977600000,10],[1708977601000,10],[1708977602000,10],[1708977603000,10],[1708977604000,10],[1708977605000,10],[1708977606000,14],[1708977607000,21],[1708977608000,25],[1708977609000,31],[1708977610000,39],[1708977611000,46],[1708977612000,49],[1708977613000,51],[1708977614000,58],[1708977615000,54],[1708977616000,55],[1708977617000,52],[1708977618000,54],[1708977619000,50],[1708977620000,51],[1708977621000,53],[1708977622000,56],[1708977623000,57],[1708977624000,54],[1708977625000,57],[1708977626000,58],[1708977627000,58],[1708977628000,60],[1708977629000,60],[1708977630000,61],[1708977631000,63],[1708977632000,62],[1708977633000,63],[1708977634000,58],[1708977635000,58],[1708977636000,55],[1708977637000,53],[1708977638000,56],[1708977639000,55],[1708977640000,55],[1708977641000,55],[1708977642000,53],[1708977643000,58],[1708977644000,57],[1708977645000,56],[1708977646000,58],[1708977647000,58],[1708977648000,59],[1708977649000,54],[1708977650000,54],[1708977651000,48],[1708977652000,49],[1708977653000,54],[1708977654000,58],[1708977655000,61],[1708977656000,62],[1708977657000,65],[1708977658000,68],[1708977659000,66],[1708977660000,68],[1708977661000,64],[1708977662000,63],[1708977663000,62],[1708977664000,38],[1708977665000,39],[1708977666000,10],[1708977667000,10],[1708977668000,10],[1708977669000,10],[1708977670000,10],[1708977671000,10],[1708977672000,10],[1708977673000,9],[1708977674000,11],[1708977675000,10],[1708977676000,14],[1708977677000,22],[1708977678000,29],[1708977679000,27],[1708977680000,30],[1708977681000,30],[1708977682000,27],[1708977683000,30],[1708977684000,31],[1708977685000,37],[1708977686000,43],[1708977687000,39],[1708977688000,37],[1708977689000,32],[1708977690000,28],[1708977691000,20],[1708977692000,5]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FFDD00',
name: 'validações',
data: [
[1708977442000,0],[1708977443000,0],[1708977444000,0],[1708977445000,5],[1708977446000,5],[1708977447000,0],[1708977448000,0],[1708977449000,0],[1708977450000,0],[1708977451000,0],[1708977452000,0],[1708977453000,0],[1708977454000,0],[1708977455000,0],[1708977456000,0],[1708977457000,0],[1708977458000,0],[1708977459000,0],[1708977460000,0],[1708977461000,0],[1708977462000,0],[1708977463000,0],[1708977464000,0],[1708977465000,0],[1708977466000,0],[1708977467000,0],[1708977468000,0],[1708977469000,0],[1708977470000,0],[1708977471000,0],[1708977472000,0],[1708977473000,0],[1708977474000,0],[1708977475000,0],[1708977476000,0],[1708977477000,0],[1708977478000,0],[1708977479000,0],[1708977480000,0],[1708977481000,0],[1708977482000,0],[1708977483000,0],[1708977484000,0],[1708977485000,0],[1708977486000,0],[1708977487000,0],[1708977488000,0],[1708977489000,0],[1708977490000,0],[1708977491000,0],[1708977492000,0],[1708977493000,0],[1708977494000,0],[1708977495000,0],[1708977496000,0],[1708977497000,0],[1708977498000,0],[1708977499000,0],[1708977500000,0],[1708977501000,0],[1708977502000,0],[1708977503000,0],[1708977504000,0],[1708977505000,0],[1708977506000,0],[1708977507000,0],[1708977508000,0],[1708977509000,0],[1708977510000,0],[1708977511000,0],[1708977512000,0],[1708977513000,0],[1708977514000,0],[1708977515000,0],[1708977516000,0],[1708977517000,0],[1708977518000,0],[1708977519000,0],[1708977520000,0],[1708977521000,0],[1708977522000,0],[1708977523000,0],[1708977524000,0],[1708977525000,0],[1708977526000,0],[1708977527000,0],[1708977528000,0],[1708977529000,0],[1708977530000,0],[1708977531000,0],[1708977532000,0],[1708977533000,0],[1708977534000,0],[1708977535000,0],[1708977536000,0],[1708977537000,0],[1708977538000,0],[1708977539000,0],[1708977540000,0],[1708977541000,0],[1708977542000,0],[1708977543000,0],[1708977544000,0],[1708977545000,0],[1708977546000,0],[1708977547000,0],[1708977548000,0],[1708977549000,0],[1708977550000,0],[1708977551000,0],[1708977552000,0],[1708977553000,0],[1708977554000,0],[1708977555000,0],[1708977556000,0],[1708977557000,0],[1708977558000,0],[1708977559000,0],[1708977560000,0],[1708977561000,0],[1708977562000,0],[1708977563000,0],[1708977564000,0],[1708977565000,0],[1708977566000,0],[1708977567000,0],[1708977568000,0],[1708977569000,0],[1708977570000,0],[1708977571000,0],[1708977572000,0],[1708977573000,0],[1708977574000,0],[1708977575000,0],[1708977576000,0],[1708977577000,0],[1708977578000,0],[1708977579000,0],[1708977580000,0],[1708977581000,0],[1708977582000,0],[1708977583000,0],[1708977584000,0],[1708977585000,0],[1708977586000,0],[1708977587000,0],[1708977588000,0],[1708977589000,0],[1708977590000,0],[1708977591000,0],[1708977592000,0],[1708977593000,0],[1708977594000,0],[1708977595000,0],[1708977596000,0],[1708977597000,0],[1708977598000,0],[1708977599000,0],[1708977600000,0],[1708977601000,0],[1708977602000,0],[1708977603000,0],[1708977604000,0],[1708977605000,0],[1708977606000,0],[1708977607000,0],[1708977608000,0],[1708977609000,0],[1708977610000,0],[1708977611000,0],[1708977612000,0],[1708977613000,0],[1708977614000,0],[1708977615000,0],[1708977616000,0],[1708977617000,0],[1708977618000,0],[1708977619000,0],[1708977620000,0],[1708977621000,0],[1708977622000,0],[1708977623000,0],[1708977624000,0],[1708977625000,0],[1708977626000,0],[1708977627000,0],[1708977628000,0],[1708977629000,0],[1708977630000,0],[1708977631000,0],[1708977632000,0],[1708977633000,0],[1708977634000,0],[1708977635000,0],[1708977636000,0],[1708977637000,0],[1708977638000,0],[1708977639000,0],[1708977640000,0],[1708977641000,0],[1708977642000,0],[1708977643000,0],[1708977644000,0],[1708977645000,0],[1708977646000,0],[1708977647000,0],[1708977648000,0],[1708977649000,0],[1708977650000,0],[1708977651000,0],[1708977652000,0],[1708977653000,0],[1708977654000,0],[1708977655000,0],[1708977656000,0],[1708977657000,0],[1708977658000,0],[1708977659000,0],[1708977660000,0],[1708977661000,0],[1708977662000,0],[1708977663000,0],[1708977664000,0],[1708977665000,0],[1708977666000,0],[1708977667000,0],[1708977668000,0],[1708977669000,0],[1708977670000,0],[1708977671000,0],[1708977672000,0],[1708977673000,0],[1708977674000,0],[1708977675000,0],[1708977676000,0],[1708977677000,0],[1708977678000,0],[1708977679000,0],[1708977680000,0],[1708977681000,0],[1708977682000,0],[1708977683000,0],[1708977684000,0],[1708977685000,0],[1708977686000,0],[1708977687000,0],[1708977688000,0],[1708977689000,0],[1708977690000,0],[1708977691000,0],[1708977692000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00D5FF',
name: 'validação HTTP 404',
data: [
[1708977442000,0],[1708977443000,0],[1708977444000,0],[1708977445000,1],[1708977446000,0],[1708977447000,0],[1708977448000,0],[1708977449000,0],[1708977450000,0],[1708977451000,0],[1708977452000,0],[1708977453000,0],[1708977454000,0],[1708977455000,0],[1708977456000,0],[1708977457000,0],[1708977458000,0],[1708977459000,0],[1708977460000,0],[1708977461000,0],[1708977462000,0],[1708977463000,0],[1708977464000,0],[1708977465000,0],[1708977466000,0],[1708977467000,0],[1708977468000,0],[1708977469000,0],[1708977470000,0],[1708977471000,0],[1708977472000,0],[1708977473000,0],[1708977474000,0],[1708977475000,0],[1708977476000,0],[1708977477000,0],[1708977478000,0],[1708977479000,0],[1708977480000,0],[1708977481000,0],[1708977482000,0],[1708977483000,0],[1708977484000,0],[1708977485000,0],[1708977486000,0],[1708977487000,0],[1708977488000,0],[1708977489000,0],[1708977490000,0],[1708977491000,0],[1708977492000,0],[1708977493000,0],[1708977494000,0],[1708977495000,0],[1708977496000,0],[1708977497000,0],[1708977498000,0],[1708977499000,0],[1708977500000,0],[1708977501000,0],[1708977502000,0],[1708977503000,0],[1708977504000,0],[1708977505000,0],[1708977506000,0],[1708977507000,0],[1708977508000,0],[1708977509000,0],[1708977510000,0],[1708977511000,0],[1708977512000,0],[1708977513000,0],[1708977514000,0],[1708977515000,0],[1708977516000,0],[1708977517000,0],[1708977518000,0],[1708977519000,0],[1708977520000,0],[1708977521000,0],[1708977522000,0],[1708977523000,0],[1708977524000,0],[1708977525000,0],[1708977526000,0],[1708977527000,0],[1708977528000,0],[1708977529000,0],[1708977530000,0],[1708977531000,0],[1708977532000,0],[1708977533000,0],[1708977534000,0],[1708977535000,0],[1708977536000,0],[1708977537000,0],[1708977538000,0],[1708977539000,0],[1708977540000,0],[1708977541000,0],[1708977542000,0],[1708977543000,0],[1708977544000,0],[1708977545000,0],[1708977546000,0],[1708977547000,0],[1708977548000,0],[1708977549000,0],[1708977550000,0],[1708977551000,0],[1708977552000,0],[1708977553000,0],[1708977554000,0],[1708977555000,0],[1708977556000,0],[1708977557000,0],[1708977558000,0],[1708977559000,0],[1708977560000,0],[1708977561000,0],[1708977562000,0],[1708977563000,0],[1708977564000,0],[1708977565000,0],[1708977566000,0],[1708977567000,0],[1708977568000,0],[1708977569000,0],[1708977570000,0],[1708977571000,0],[1708977572000,0],[1708977573000,0],[1708977574000,0],[1708977575000,0],[1708977576000,0],[1708977577000,0],[1708977578000,0],[1708977579000,0],[1708977580000,0],[1708977581000,0],[1708977582000,0],[1708977583000,0],[1708977584000,0],[1708977585000,0],[1708977586000,0],[1708977587000,0],[1708977588000,0],[1708977589000,0],[1708977590000,0],[1708977591000,0],[1708977592000,0],[1708977593000,0],[1708977594000,0],[1708977595000,0],[1708977596000,0],[1708977597000,0],[1708977598000,0],[1708977599000,0],[1708977600000,0],[1708977601000,0],[1708977602000,0],[1708977603000,0],[1708977604000,0],[1708977605000,0],[1708977606000,0],[1708977607000,0],[1708977608000,0],[1708977609000,0],[1708977610000,0],[1708977611000,0],[1708977612000,0],[1708977613000,0],[1708977614000,0],[1708977615000,0],[1708977616000,0],[1708977617000,0],[1708977618000,0],[1708977619000,0],[1708977620000,0],[1708977621000,0],[1708977622000,0],[1708977623000,0],[1708977624000,0],[1708977625000,0],[1708977626000,0],[1708977627000,0],[1708977628000,0],[1708977629000,0],[1708977630000,0],[1708977631000,0],[1708977632000,0],[1708977633000,0],[1708977634000,0],[1708977635000,0],[1708977636000,0],[1708977637000,0],[1708977638000,0],[1708977639000,0],[1708977640000,0],[1708977641000,0],[1708977642000,0],[1708977643000,0],[1708977644000,0],[1708977645000,0],[1708977646000,0],[1708977647000,0],[1708977648000,0],[1708977649000,0],[1708977650000,0],[1708977651000,0],[1708977652000,0],[1708977653000,0],[1708977654000,0],[1708977655000,0],[1708977656000,0],[1708977657000,0],[1708977658000,0],[1708977659000,0],[1708977660000,0],[1708977661000,0],[1708977662000,0],[1708977663000,0],[1708977664000,0],[1708977665000,0],[1708977666000,0],[1708977667000,0],[1708977668000,0],[1708977669000,0],[1708977670000,0],[1708977671000,0],[1708977672000,0],[1708977673000,0],[1708977674000,0],[1708977675000,0],[1708977676000,0],[1708977677000,0],[1708977678000,0],[1708977679000,0],[1708977680000,0],[1708977681000,0],[1708977682000,0],[1708977683000,0],[1708977684000,0],[1708977685000,0],[1708977686000,0],[1708977687000,0],[1708977688000,0],[1708977689000,0],[1708977690000,0],[1708977691000,0],[1708977692000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00FF00',
name: 'validação concorrência saldo - 0',
data: [
[1708977442000,0],[1708977443000,0],[1708977444000,1],[1708977445000,0],[1708977446000,0],[1708977447000,0],[1708977448000,0],[1708977449000,0],[1708977450000,0],[1708977451000,0],[1708977452000,0],[1708977453000,0],[1708977454000,0],[1708977455000,0],[1708977456000,0],[1708977457000,0],[1708977458000,0],[1708977459000,0],[1708977460000,0],[1708977461000,0],[1708977462000,0],[1708977463000,0],[1708977464000,0],[1708977465000,0],[1708977466000,0],[1708977467000,0],[1708977468000,0],[1708977469000,0],[1708977470000,0],[1708977471000,0],[1708977472000,0],[1708977473000,0],[1708977474000,0],[1708977475000,0],[1708977476000,0],[1708977477000,0],[1708977478000,0],[1708977479000,0],[1708977480000,0],[1708977481000,0],[1708977482000,0],[1708977483000,0],[1708977484000,0],[1708977485000,0],[1708977486000,0],[1708977487000,0],[1708977488000,0],[1708977489000,0],[1708977490000,0],[1708977491000,0],[1708977492000,0],[1708977493000,0],[1708977494000,0],[1708977495000,0],[1708977496000,0],[1708977497000,0],[1708977498000,0],[1708977499000,0],[1708977500000,0],[1708977501000,0],[1708977502000,0],[1708977503000,0],[1708977504000,0],[1708977505000,0],[1708977506000,0],[1708977507000,0],[1708977508000,0],[1708977509000,0],[1708977510000,0],[1708977511000,0],[1708977512000,0],[1708977513000,0],[1708977514000,0],[1708977515000,0],[1708977516000,0],[1708977517000,0],[1708977518000,0],[1708977519000,0],[1708977520000,0],[1708977521000,0],[1708977522000,0],[1708977523000,0],[1708977524000,0],[1708977525000,0],[1708977526000,0],[1708977527000,0],[1708977528000,0],[1708977529000,0],[1708977530000,0],[1708977531000,0],[1708977532000,0],[1708977533000,0],[1708977534000,0],[1708977535000,0],[1708977536000,0],[1708977537000,0],[1708977538000,0],[1708977539000,0],[1708977540000,0],[1708977541000,0],[1708977542000,0],[1708977543000,0],[1708977544000,0],[1708977545000,0],[1708977546000,0],[1708977547000,0],[1708977548000,0],[1708977549000,0],[1708977550000,0],[1708977551000,0],[1708977552000,0],[1708977553000,0],[1708977554000,0],[1708977555000,0],[1708977556000,0],[1708977557000,0],[1708977558000,0],[1708977559000,0],[1708977560000,0],[1708977561000,0],[1708977562000,0],[1708977563000,0],[1708977564000,0],[1708977565000,0],[1708977566000,0],[1708977567000,0],[1708977568000,0],[1708977569000,0],[1708977570000,0],[1708977571000,0],[1708977572000,0],[1708977573000,0],[1708977574000,0],[1708977575000,0],[1708977576000,0],[1708977577000,0],[1708977578000,0],[1708977579000,0],[1708977580000,0],[1708977581000,0],[1708977582000,0],[1708977583000,0],[1708977584000,0],[1708977585000,0],[1708977586000,0],[1708977587000,0],[1708977588000,0],[1708977589000,0],[1708977590000,0],[1708977591000,0],[1708977592000,0],[1708977593000,0],[1708977594000,0],[1708977595000,0],[1708977596000,0],[1708977597000,0],[1708977598000,0],[1708977599000,0],[1708977600000,0],[1708977601000,0],[1708977602000,0],[1708977603000,0],[1708977604000,0],[1708977605000,0],[1708977606000,0],[1708977607000,0],[1708977608000,0],[1708977609000,0],[1708977610000,0],[1708977611000,0],[1708977612000,0],[1708977613000,0],[1708977614000,0],[1708977615000,0],[1708977616000,0],[1708977617000,0],[1708977618000,0],[1708977619000,0],[1708977620000,0],[1708977621000,0],[1708977622000,0],[1708977623000,0],[1708977624000,0],[1708977625000,0],[1708977626000,0],[1708977627000,0],[1708977628000,0],[1708977629000,0],[1708977630000,0],[1708977631000,0],[1708977632000,0],[1708977633000,0],[1708977634000,0],[1708977635000,0],[1708977636000,0],[1708977637000,0],[1708977638000,0],[1708977639000,0],[1708977640000,0],[1708977641000,0],[1708977642000,0],[1708977643000,0],[1708977644000,0],[1708977645000,0],[1708977646000,0],[1708977647000,0],[1708977648000,0],[1708977649000,0],[1708977650000,0],[1708977651000,0],[1708977652000,0],[1708977653000,0],[1708977654000,0],[1708977655000,0],[1708977656000,0],[1708977657000,0],[1708977658000,0],[1708977659000,0],[1708977660000,0],[1708977661000,0],[1708977662000,0],[1708977663000,0],[1708977664000,0],[1708977665000,0],[1708977666000,0],[1708977667000,0],[1708977668000,0],[1708977669000,0],[1708977670000,0],[1708977671000,0],[1708977672000,0],[1708977673000,0],[1708977674000,0],[1708977675000,0],[1708977676000,0],[1708977677000,0],[1708977678000,0],[1708977679000,0],[1708977680000,0],[1708977681000,0],[1708977682000,0],[1708977683000,0],[1708977684000,0],[1708977685000,0],[1708977686000,0],[1708977687000,0],[1708977688000,0],[1708977689000,0],[1708977690000,0],[1708977691000,0],[1708977692000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#9D00FF',
name: 'validação concorrência transações - c',
data: [
[1708977442000,0],[1708977443000,25],[1708977444000,25],[1708977445000,0],[1708977446000,0],[1708977447000,0],[1708977448000,0],[1708977449000,0],[1708977450000,0],[1708977451000,0],[1708977452000,0],[1708977453000,0],[1708977454000,0],[1708977455000,0],[1708977456000,0],[1708977457000,0],[1708977458000,0],[1708977459000,0],[1708977460000,0],[1708977461000,0],[1708977462000,0],[1708977463000,0],[1708977464000,0],[1708977465000,0],[1708977466000,0],[1708977467000,0],[1708977468000,0],[1708977469000,0],[1708977470000,0],[1708977471000,0],[1708977472000,0],[1708977473000,0],[1708977474000,0],[1708977475000,0],[1708977476000,0],[1708977477000,0],[1708977478000,0],[1708977479000,0],[1708977480000,0],[1708977481000,0],[1708977482000,0],[1708977483000,0],[1708977484000,0],[1708977485000,0],[1708977486000,0],[1708977487000,0],[1708977488000,0],[1708977489000,0],[1708977490000,0],[1708977491000,0],[1708977492000,0],[1708977493000,0],[1708977494000,0],[1708977495000,0],[1708977496000,0],[1708977497000,0],[1708977498000,0],[1708977499000,0],[1708977500000,0],[1708977501000,0],[1708977502000,0],[1708977503000,0],[1708977504000,0],[1708977505000,0],[1708977506000,0],[1708977507000,0],[1708977508000,0],[1708977509000,0],[1708977510000,0],[1708977511000,0],[1708977512000,0],[1708977513000,0],[1708977514000,0],[1708977515000,0],[1708977516000,0],[1708977517000,0],[1708977518000,0],[1708977519000,0],[1708977520000,0],[1708977521000,0],[1708977522000,0],[1708977523000,0],[1708977524000,0],[1708977525000,0],[1708977526000,0],[1708977527000,0],[1708977528000,0],[1708977529000,0],[1708977530000,0],[1708977531000,0],[1708977532000,0],[1708977533000,0],[1708977534000,0],[1708977535000,0],[1708977536000,0],[1708977537000,0],[1708977538000,0],[1708977539000,0],[1708977540000,0],[1708977541000,0],[1708977542000,0],[1708977543000,0],[1708977544000,0],[1708977545000,0],[1708977546000,0],[1708977547000,0],[1708977548000,0],[1708977549000,0],[1708977550000,0],[1708977551000,0],[1708977552000,0],[1708977553000,0],[1708977554000,0],[1708977555000,0],[1708977556000,0],[1708977557000,0],[1708977558000,0],[1708977559000,0],[1708977560000,0],[1708977561000,0],[1708977562000,0],[1708977563000,0],[1708977564000,0],[1708977565000,0],[1708977566000,0],[1708977567000,0],[1708977568000,0],[1708977569000,0],[1708977570000,0],[1708977571000,0],[1708977572000,0],[1708977573000,0],[1708977574000,0],[1708977575000,0],[1708977576000,0],[1708977577000,0],[1708977578000,0],[1708977579000,0],[1708977580000,0],[1708977581000,0],[1708977582000,0],[1708977583000,0],[1708977584000,0],[1708977585000,0],[1708977586000,0],[1708977587000,0],[1708977588000,0],[1708977589000,0],[1708977590000,0],[1708977591000,0],[1708977592000,0],[1708977593000,0],[1708977594000,0],[1708977595000,0],[1708977596000,0],[1708977597000,0],[1708977598000,0],[1708977599000,0],[1708977600000,0],[1708977601000,0],[1708977602000,0],[1708977603000,0],[1708977604000,0],[1708977605000,0],[1708977606000,0],[1708977607000,0],[1708977608000,0],[1708977609000,0],[1708977610000,0],[1708977611000,0],[1708977612000,0],[1708977613000,0],[1708977614000,0],[1708977615000,0],[1708977616000,0],[1708977617000,0],[1708977618000,0],[1708977619000,0],[1708977620000,0],[1708977621000,0],[1708977622000,0],[1708977623000,0],[1708977624000,0],[1708977625000,0],[1708977626000,0],[1708977627000,0],[1708977628000,0],[1708977629000,0],[1708977630000,0],[1708977631000,0],[1708977632000,0],[1708977633000,0],[1708977634000,0],[1708977635000,0],[1708977636000,0],[1708977637000,0],[1708977638000,0],[1708977639000,0],[1708977640000,0],[1708977641000,0],[1708977642000,0],[1708977643000,0],[1708977644000,0],[1708977645000,0],[1708977646000,0],[1708977647000,0],[1708977648000,0],[1708977649000,0],[1708977650000,0],[1708977651000,0],[1708977652000,0],[1708977653000,0],[1708977654000,0],[1708977655000,0],[1708977656000,0],[1708977657000,0],[1708977658000,0],[1708977659000,0],[1708977660000,0],[1708977661000,0],[1708977662000,0],[1708977663000,0],[1708977664000,0],[1708977665000,0],[1708977666000,0],[1708977667000,0],[1708977668000,0],[1708977669000,0],[1708977670000,0],[1708977671000,0],[1708977672000,0],[1708977673000,0],[1708977674000,0],[1708977675000,0],[1708977676000,0],[1708977677000,0],[1708977678000,0],[1708977679000,0],[1708977680000,0],[1708977681000,0],[1708977682000,0],[1708977683000,0],[1708977684000,0],[1708977685000,0],[1708977686000,0],[1708977687000,0],[1708977688000,0],[1708977689000,0],[1708977690000,0],[1708977691000,0],[1708977692000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FF00E1',
name: 'validação concorrência saldo - -25',
data: [
[1708977442000,1],[1708977443000,1],[1708977444000,0],[1708977445000,0],[1708977446000,0],[1708977447000,0],[1708977448000,0],[1708977449000,0],[1708977450000,0],[1708977451000,0],[1708977452000,0],[1708977453000,0],[1708977454000,0],[1708977455000,0],[1708977456000,0],[1708977457000,0],[1708977458000,0],[1708977459000,0],[1708977460000,0],[1708977461000,0],[1708977462000,0],[1708977463000,0],[1708977464000,0],[1708977465000,0],[1708977466000,0],[1708977467000,0],[1708977468000,0],[1708977469000,0],[1708977470000,0],[1708977471000,0],[1708977472000,0],[1708977473000,0],[1708977474000,0],[1708977475000,0],[1708977476000,0],[1708977477000,0],[1708977478000,0],[1708977479000,0],[1708977480000,0],[1708977481000,0],[1708977482000,0],[1708977483000,0],[1708977484000,0],[1708977485000,0],[1708977486000,0],[1708977487000,0],[1708977488000,0],[1708977489000,0],[1708977490000,0],[1708977491000,0],[1708977492000,0],[1708977493000,0],[1708977494000,0],[1708977495000,0],[1708977496000,0],[1708977497000,0],[1708977498000,0],[1708977499000,0],[1708977500000,0],[1708977501000,0],[1708977502000,0],[1708977503000,0],[1708977504000,0],[1708977505000,0],[1708977506000,0],[1708977507000,0],[1708977508000,0],[1708977509000,0],[1708977510000,0],[1708977511000,0],[1708977512000,0],[1708977513000,0],[1708977514000,0],[1708977515000,0],[1708977516000,0],[1708977517000,0],[1708977518000,0],[1708977519000,0],[1708977520000,0],[1708977521000,0],[1708977522000,0],[1708977523000,0],[1708977524000,0],[1708977525000,0],[1708977526000,0],[1708977527000,0],[1708977528000,0],[1708977529000,0],[1708977530000,0],[1708977531000,0],[1708977532000,0],[1708977533000,0],[1708977534000,0],[1708977535000,0],[1708977536000,0],[1708977537000,0],[1708977538000,0],[1708977539000,0],[1708977540000,0],[1708977541000,0],[1708977542000,0],[1708977543000,0],[1708977544000,0],[1708977545000,0],[1708977546000,0],[1708977547000,0],[1708977548000,0],[1708977549000,0],[1708977550000,0],[1708977551000,0],[1708977552000,0],[1708977553000,0],[1708977554000,0],[1708977555000,0],[1708977556000,0],[1708977557000,0],[1708977558000,0],[1708977559000,0],[1708977560000,0],[1708977561000,0],[1708977562000,0],[1708977563000,0],[1708977564000,0],[1708977565000,0],[1708977566000,0],[1708977567000,0],[1708977568000,0],[1708977569000,0],[1708977570000,0],[1708977571000,0],[1708977572000,0],[1708977573000,0],[1708977574000,0],[1708977575000,0],[1708977576000,0],[1708977577000,0],[1708977578000,0],[1708977579000,0],[1708977580000,0],[1708977581000,0],[1708977582000,0],[1708977583000,0],[1708977584000,0],[1708977585000,0],[1708977586000,0],[1708977587000,0],[1708977588000,0],[1708977589000,0],[1708977590000,0],[1708977591000,0],[1708977592000,0],[1708977593000,0],[1708977594000,0],[1708977595000,0],[1708977596000,0],[1708977597000,0],[1708977598000,0],[1708977599000,0],[1708977600000,0],[1708977601000,0],[1708977602000,0],[1708977603000,0],[1708977604000,0],[1708977605000,0],[1708977606000,0],[1708977607000,0],[1708977608000,0],[1708977609000,0],[1708977610000,0],[1708977611000,0],[1708977612000,0],[1708977613000,0],[1708977614000,0],[1708977615000,0],[1708977616000,0],[1708977617000,0],[1708977618000,0],[1708977619000,0],[1708977620000,0],[1708977621000,0],[1708977622000,0],[1708977623000,0],[1708977624000,0],[1708977625000,0],[1708977626000,0],[1708977627000,0],[1708977628000,0],[1708977629000,0],[1708977630000,0],[1708977631000,0],[1708977632000,0],[1708977633000,0],[1708977634000,0],[1708977635000,0],[1708977636000,0],[1708977637000,0],[1708977638000,0],[1708977639000,0],[1708977640000,0],[1708977641000,0],[1708977642000,0],[1708977643000,0],[1708977644000,0],[1708977645000,0],[1708977646000,0],[1708977647000,0],[1708977648000,0],[1708977649000,0],[1708977650000,0],[1708977651000,0],[1708977652000,0],[1708977653000,0],[1708977654000,0],[1708977655000,0],[1708977656000,0],[1708977657000,0],[1708977658000,0],[1708977659000,0],[1708977660000,0],[1708977661000,0],[1708977662000,0],[1708977663000,0],[1708977664000,0],[1708977665000,0],[1708977666000,0],[1708977667000,0],[1708977668000,0],[1708977669000,0],[1708977670000,0],[1708977671000,0],[1708977672000,0],[1708977673000,0],[1708977674000,0],[1708977675000,0],[1708977676000,0],[1708977677000,0],[1708977678000,0],[1708977679000,0],[1708977680000,0],[1708977681000,0],[1708977682000,0],[1708977683000,0],[1708977684000,0],[1708977685000,0],[1708977686000,0],[1708977687000,0],[1708977688000,0],[1708977689000,0],[1708977690000,0],[1708977691000,0],[1708977692000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#AECAEB',
name: 'validação concorrência transações - d',
data: [
[1708977442000,25],[1708977443000,0],[1708977444000,0],[1708977445000,0],[1708977446000,0],[1708977447000,0],[1708977448000,0],[1708977449000,0],[1708977450000,0],[1708977451000,0],[1708977452000,0],[1708977453000,0],[1708977454000,0],[1708977455000,0],[1708977456000,0],[1708977457000,0],[1708977458000,0],[1708977459000,0],[1708977460000,0],[1708977461000,0],[1708977462000,0],[1708977463000,0],[1708977464000,0],[1708977465000,0],[1708977466000,0],[1708977467000,0],[1708977468000,0],[1708977469000,0],[1708977470000,0],[1708977471000,0],[1708977472000,0],[1708977473000,0],[1708977474000,0],[1708977475000,0],[1708977476000,0],[1708977477000,0],[1708977478000,0],[1708977479000,0],[1708977480000,0],[1708977481000,0],[1708977482000,0],[1708977483000,0],[1708977484000,0],[1708977485000,0],[1708977486000,0],[1708977487000,0],[1708977488000,0],[1708977489000,0],[1708977490000,0],[1708977491000,0],[1708977492000,0],[1708977493000,0],[1708977494000,0],[1708977495000,0],[1708977496000,0],[1708977497000,0],[1708977498000,0],[1708977499000,0],[1708977500000,0],[1708977501000,0],[1708977502000,0],[1708977503000,0],[1708977504000,0],[1708977505000,0],[1708977506000,0],[1708977507000,0],[1708977508000,0],[1708977509000,0],[1708977510000,0],[1708977511000,0],[1708977512000,0],[1708977513000,0],[1708977514000,0],[1708977515000,0],[1708977516000,0],[1708977517000,0],[1708977518000,0],[1708977519000,0],[1708977520000,0],[1708977521000,0],[1708977522000,0],[1708977523000,0],[1708977524000,0],[1708977525000,0],[1708977526000,0],[1708977527000,0],[1708977528000,0],[1708977529000,0],[1708977530000,0],[1708977531000,0],[1708977532000,0],[1708977533000,0],[1708977534000,0],[1708977535000,0],[1708977536000,0],[1708977537000,0],[1708977538000,0],[1708977539000,0],[1708977540000,0],[1708977541000,0],[1708977542000,0],[1708977543000,0],[1708977544000,0],[1708977545000,0],[1708977546000,0],[1708977547000,0],[1708977548000,0],[1708977549000,0],[1708977550000,0],[1708977551000,0],[1708977552000,0],[1708977553000,0],[1708977554000,0],[1708977555000,0],[1708977556000,0],[1708977557000,0],[1708977558000,0],[1708977559000,0],[1708977560000,0],[1708977561000,0],[1708977562000,0],[1708977563000,0],[1708977564000,0],[1708977565000,0],[1708977566000,0],[1708977567000,0],[1708977568000,0],[1708977569000,0],[1708977570000,0],[1708977571000,0],[1708977572000,0],[1708977573000,0],[1708977574000,0],[1708977575000,0],[1708977576000,0],[1708977577000,0],[1708977578000,0],[1708977579000,0],[1708977580000,0],[1708977581000,0],[1708977582000,0],[1708977583000,0],[1708977584000,0],[1708977585000,0],[1708977586000,0],[1708977587000,0],[1708977588000,0],[1708977589000,0],[1708977590000,0],[1708977591000,0],[1708977592000,0],[1708977593000,0],[1708977594000,0],[1708977595000,0],[1708977596000,0],[1708977597000,0],[1708977598000,0],[1708977599000,0],[1708977600000,0],[1708977601000,0],[1708977602000,0],[1708977603000,0],[1708977604000,0],[1708977605000,0],[1708977606000,0],[1708977607000,0],[1708977608000,0],[1708977609000,0],[1708977610000,0],[1708977611000,0],[1708977612000,0],[1708977613000,0],[1708977614000,0],[1708977615000,0],[1708977616000,0],[1708977617000,0],[1708977618000,0],[1708977619000,0],[1708977620000,0],[1708977621000,0],[1708977622000,0],[1708977623000,0],[1708977624000,0],[1708977625000,0],[1708977626000,0],[1708977627000,0],[1708977628000,0],[1708977629000,0],[1708977630000,0],[1708977631000,0],[1708977632000,0],[1708977633000,0],[1708977634000,0],[1708977635000,0],[1708977636000,0],[1708977637000,0],[1708977638000,0],[1708977639000,0],[1708977640000,0],[1708977641000,0],[1708977642000,0],[1708977643000,0],[1708977644000,0],[1708977645000,0],[1708977646000,0],[1708977647000,0],[1708977648000,0],[1708977649000,0],[1708977650000,0],[1708977651000,0],[1708977652000,0],[1708977653000,0],[1708977654000,0],[1708977655000,0],[1708977656000,0],[1708977657000,0],[1708977658000,0],[1708977659000,0],[1708977660000,0],[1708977661000,0],[1708977662000,0],[1708977663000,0],[1708977664000,0],[1708977665000,0],[1708977666000,0],[1708977667000,0],[1708977668000,0],[1708977669000,0],[1708977670000,0],[1708977671000,0],[1708977672000,0],[1708977673000,0],[1708977674000,0],[1708977675000,0],[1708977676000,0],[1708977677000,0],[1708977678000,0],[1708977679000,0],[1708977680000,0],[1708977681000,0],[1708977682000,0],[1708977683000,0],[1708977684000,0],[1708977685000,0],[1708977686000,0],[1708977687000,0],[1708977688000,0],[1708977689000,0],[1708977690000,0],[1708977691000,0],[1708977692000,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: ['224', '672', '1120', '1568', '2016', '2464', '2912', '3360', '3808', '4256', '4705', '5153', '5601', '6049', '6497', '6945', '7393', '7841', '8289', '8737', '9185', '9633', '10081', '10529', '10977', '11425', '11873', '12321', '12769', '13217', '13666', '14114', '14562', '15010', '15458', '15906', '16354', '16802', '17250', '17698', '18146', '18594', '19042', '19490', '19938', '20386', '20834', '21282', '21730', '22178', '22627', '23075', '23523', '23971', '24419', '24867', '25315', '25763', '26211', '26659', '27107', '27555', '28003', '28451', '28899', '29347', '29795', '30243', '30691', '31139', '31588', '32036', '32484', '32932', '33380', '33828', '34276', '34724', '35172', '35620', '36068', '36516', '36964', '37412', '37860', '38308', '38756', '39204', '39652', '40100', '40549', '40997', '41445', '41893', '42341', '42789', '43237', '43685', '44133', '44581'],
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: [
6.89,3.5,2.51,2.03,1.44,1.24,1.89,4.91,1.94,1.33,1.2,1.17,1.03,1.38,3.0,1.5,0.75,0.48,0.42,0.4,0.53,1.11,0.66,0.38,0.23,0.17,0.19,0.19,0.39,0.33,0.17,0.11,0.06,0.07,0.07,0.15,0.15,0.05,0.06,0.02,0.01,0.03,0.06,0.06,0.03,0.03,0.01,0.0,0.01,0.01,0.01,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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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: [
50.91,0.39,0.33,0.38,0.35,0.29,0.31,0.27,0.22,0.18,0.17,0.13,0.18,0.12,0.13,0.07,0.07,0.06,0.06,0.05,0.04,0.06,0.03,0.02,0.02,0.02,0.03,0.01,0.02,0.01,0.01,0.01,0.01,0.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
],
tooltip: { yDecimals: 0, ySuffix: 'ms' }
}
]
});
responsetimeDistributionChart.setTitle({
text: '<span class="chart_title">Response Time Distribution</span>',
useHTML: true
});
var responsetimepercentilesovertimeokPercentiles = unpack([[1708977442,[93,217,251,269,296,297,302,309,316,318]],[1708977443,null],[1708977444,[14,124,133,170,172,175,177,179,204,212]],[1708977445,null],[1708977446,[5,59,105,219,238,241,244,254,276,278]],[1708977447,[0,1,1,133,136,138,142,175,188,189]],[1708977448,[6,19,27,37,38,45,53,60,66,68]],[1708977449,[6,19,21,27,28,29,30,30,30,31]],[1708977450,[6,6,7,21,23,23,23,53,77,84]],[1708977451,[5,6,19,20,20,21,23,40,60,66]],[1708977452,[5,6,19,24,27,29,31,34,39,41]],[1708977453,[5,6,20,25,26,29,35,42,66,73]],[1708977454,[5,7,19,23,24,27,29,31,41,44]],[1708977455,[6,17,23,27,28,44,47,49,75,84]],[1708977456,[5,6,19,25,28,31,37,42,69,79]],[1708977457,[5,7,20,26,27,30,32,50,73,75]],[1708977458,[5,13,24,30,39,41,43,48,73,83]],[1708977459,[17,47,62,90,104,113,132,136,144,146]],[1708977460,[60,99,126,159,160,179,187,217,230,234]],[1708977461,[57,106,135,173,178,180,188,213,229,235]],[1708977462,[33,105,144,173,178,183,189,225,249,253]],[1708977463,[26,84,122,161,170,180,186,206,238,251]],[1708977464,[52,115,171,336,399,432,457,506,544,550]],[1708977465,[13,78,115,147,160,171,215,253,283,296]],[1708977466,[15,72,95,130,136,138,150,153,167,182]],[1708977467,[31,70,98,132,141,146,172,180,202,232]],[1708977468,[17,76,113,139,148,172,175,178,214,230]],[1708977469,[11,75,130,171,179,183,192,213,255,278]],[1708977470,[8,80,121,165,179,185,202,232,264,282]],[1708977471,[25,136,194,241,247,251,266,287,308,308]],[1708977472,[12,97,149,188,198,204,212,227,274,288]],[1708977473,[23,131,183,241,245,256,268,294,320,346]],[1708977474,[12,101,157,201,204,220,236,267,346,446]],[1708977475,[31,205,270,327,351,361,375,381,438,481]],[1708977476,[9,116,159,195,201,216,230,244,255,276]],[1708977477,[13,102,144,191,197,216,219,230,256,275]],[1708977478,[30,107,155,207,217,236,256,289,338,357]],[1708977479,[61,190,249,294,302,311,330,351,413,423]],[1708977480,[11,128,209,245,263,266,277,305,395,397]],[1708977481,[16,131,195,248,258,287,303,323,345,346]],[1708977482,[24,165,252,315,322,345,367,399,413,419]],[1708977483,[13,249,327,405,415,425,441,503,523,527]],[1708977484,[32,255,317,376,387,400,417,468,510,526]],[1708977485,[19,176,224,281,298,305,329,356,429,434]],[1708977486,[11,166,213,288,299,316,335,383,429,443]],[1708977487,[24,202,249,300,327,343,378,413,489,527]],[1708977488,[57,275,332,424,447,475,530,576,601,602]],[1708977489,[30,264,326,417,440,471,494,520,554,567]],[1708977490,[42,224,337,407,423,443,485,537,584,597]],[1708977491,[54,258,353,425,443,470,499,561,597,648]],[1708977492,[146,317,401,521,537,559,601,673,748,775]],[1708977493,[51,340,396,477,489,505,546,607,709,727]],[1708977494,[68,260,342,415,443,473,490,509,543,561]],[1708977495,[29,237,296,350,373,401,425,443,483,491]],[1708977496,[11,257,306,374,391,407,441,491,519,526]],[1708977497,[48,255,329,441,472,495,521,572,626,640]],[1708977498,[113,368,446,569,588,613,641,693,756,784]],[1708977499,[83,398,478,606,678,709,771,813,863,913]],[1708977500,[100,469,604,779,835,889,935,1011,1106,1161]],[1708977501,[200,471,565,667,688,701,736,784,866,914]],[1708977502,[218,511,597,723,733,797,829,925,1006,1186]],[1708977503,[179,464,614,734,761,788,833,918,1019,1190]],[1708977504,[289,514,668,837,862,906,987,1091,1216,1247]],[1708977505,[266,567,747,949,1011,1046,1090,1205,1238,1262]],[1708977506,[336,680,828,1024,1053,1120,1168,1287,1408,1558]],[1708977507,[408,750,862,1008,1048,1105,1172,1311,1607,1781]],[1708977508,[362,721,857,1024,1049,1105,1174,1263,1406,1720]],[1708977509,[458,812,914,1127,1181,1276,1464,1681,2026,2477]],[1708977510,[458,811,995,1313,1373,1472,1619,1994,2927,3467]],[1708977511,[497,957,1158,1452,1525,1623,1896,2222,3558,3798]],[1708977512,[514,975,1249,1681,1822,1997,2176,2599,4483,5772]],[1708977513,[627,1087,1392,1894,1975,2218,2782,3257,4384,6909]],[1708977514,[649,1207,1576,2073,2231,2514,2731,3752,5207,6944]],[1708977515,[761,1352,1648,2393,2872,3102,3454,4339,5391,6268]],[1708977516,[769,1485,1894,2626,3010,3288,4065,5002,6842,8809]],[1708977517,[913,1642,1910,2958,3334,3518,4387,5303,7632,8904]],[1708977518,[855,1734,2283,3147,3414,4006,4749,5919,7860,8861]],[1708977519,[991,1847,2266,3259,3641,4344,4819,5850,7133,7590]],[1708977520,[1017,1746,2561,3601,3869,4045,4281,5343,6582,6781]],[1708977521,[1237,2031,2743,3634,4111,4232,4418,4974,5855,5931]],[1708977522,[1305,1921,2966,3462,3623,4281,4506,4654,4934,5003]],[1708977523,[1452,1677,2455,3183,3249,3329,3374,3651,3998,4144]],[1708977524,[1588,1787,1871,2566,2892,3106,3186,3214,3258,3265]],[1708977525,[1764,1797,1884,1978,1994,2003,2006,2010,2014,2015]],[1708977526,null],[1708977527,null],[1708977528,null],[1708977529,null],[1708977530,null],[1708977531,null],[1708977532,null],[1708977533,null],[1708977534,null],[1708977535,null],[1708977536,null],[1708977537,[6,7,41,51,52,53,66,80,92,95]],[1708977538,[74,389,635,942,990,1093,1222,1603,2465,4925]],[1708977539,[399,933,1275,1746,2005,2327,2893,3598,9304,10197]],[1708977540,[688,1212,1795,2987,3317,3677,4906,6986,13814,18848]],[1708977541,[857,1707,2185,3544,4296,5493,7080,10466,18863,29377]],[1708977542,[1062,2172,2983,5271,6203,7269,9399,11571,16799,28456]],[1708977543,[1366,2085,3392,5947,6425,8146,9760,12515,16665,32965]],[1708977544,[1665,2777,4317,7290,7832,8693,10793,13115,18451,35147]],[1708977545,[1796,3151,5258,8068,8420,9403,11619,14603,19714,38846]],[1708977546,[2453,3020,5881,9015,9667,11348,13428,18135,32765,44805]],[1708977547,[2855,3281,5418,7427,9581,10401,13522,14576,24664,35590]],[1708977548,[2995,3743,6249,9876,10206,10558,13718,17028,20022,23633]],[1708977549,[3113,3515,6664,10485,10734,11102,13307,16444,18931,20037]],[1708977550,[3023,4116,6983,10647,10984,12915,14075,17386,26170,29871]],[1708977551,[3057,4584,7119,10585,10816,12270,13825,14220,17760,23616]],[1708977552,[3363,3755,7211,8950,10349,10814,13051,14250,17330,25750]],[1708977553,[3552,4040,7457,10665,10878,11510,13567,15285,22004,25716]],[1708977554,[3845,4465,7521,10743,11218,13831,14295,17265,21514,25709]],[1708977555,[3921,4266,7283,10764,10945,13001,14256,17155,22717,31785]],[1708977556,[3731,4449,7103,10135,10487,10788,12866,14066,24389,26440]],[1708977557,[3687,3994,7014,10332,10634,10709,12359,13908,19719,20555]],[1708977558,[3432,3860,6855,10177,10500,12387,13390,16311,16557,20828]],[1708977559,[3309,3643,6561,8872,9552,9954,10957,13370,15809,16497]],[1708977560,[3260,3609,6763,9593,9781,9978,13068,15928,19826,30077]],[1708977561,[3338,4164,6763,9275,9775,9945,11908,13354,19693,21523]],[1708977562,[3266,4206,6578,9061,9728,10212,12806,14201,19202,19598]],[1708977563,[3375,3774,6498,9295,9938,10083,10886,14535,24699,31315]],[1708977564,[3333,3665,6326,9258,9928,10259,12753,13374,16362,19335]],[1708977565,[3247,4604,6587,9655,9891,10419,12810,14708,16429,17601]],[1708977566,[3102,4013,6492,9517,9740,11559,12867,14640,19524,27873]],[1708977567,[2934,3286,6353,8778,9375,9683,11433,12789,20776,23621]],[1708977568,[2935,3403,6371,9007,9438,9614,11872,15782,18969,19159]],[1708977569,[3098,3586,6352,9518,9837,11678,13436,15765,21171,25332]],[1708977570,[3325,3651,6506,9783,10081,11231,12783,16450,21481,24552]],[1708977571,[3321,4679,6507,9825,9986,10268,12688,15931,19310,23581]],[1708977572,[3034,3505,6347,9398,9555,9738,12150,12813,16111,18506]],[1708977573,[2991,3286,6167,8263,9404,9578,12069,12792,18201,21317]],[1708977574,[3028,3329,6461,7873,9402,9520,10716,13449,17983,19127]],[1708977575,[3163,3638,6490,9411,9537,10241,12406,15135,18465,19971]],[1708977576,[3248,3599,6386,8177,9441,9651,12755,15641,19111,19183]],[1708977577,[3313,3915,6375,8569,9716,9855,10516,12925,15997,16578]],[1708977578,[3295,4042,6290,9225,9613,9903,11206,12849,16025,16222]],[1708977579,[3020,4636,6381,8956,9528,9906,11916,12696,14945,15845]],[1708977580,[2837,3268,5898,7696,8858,9469,9589,12480,13509,15124]],[1708977581,[2949,4713,6447,9140,9548,9808,10665,12674,13412,14239]],[1708977582,[2954,3491,6279,8119,9300,9543,9962,11834,12766,13208]],[1708977583,[3106,3606,6394,7021,8129,9298,9616,9794,11294,12358]],[1708977584,[3311,3536,5449,6630,7018,8075,9457,9686,10730,11146]],[1708977585,[3239,3550,5139,6708,6988,7231,8361,9565,9769,10383]],[1708977586,[3203,3420,4518,6412,6495,6541,6836,8808,9609,9636]],[1708977587,[3143,3331,5170,6436,6534,6784,6967,7778,8117,8166]],[1708977588,[3041,3292,4789,6265,6279,6391,6509,6932,7752,7807]],[1708977589,[3066,3240,4405,6097,6242,6301,6316,6390,6529,6631]],[1708977590,[3005,3229,3381,3777,4470,4604,4801,5046,5209,5238]],[1708977591,[3183,3299,3387,3902,3969,4538,4660,4689,4844,4862]],[1708977592,[3044,3145,3197,3372,3416,3425,3437,3447,3472,3480]],[1708977593,null],[1708977594,null],[1708977595,null],[1708977596,null],[1708977597,null],[1708977598,null],[1708977599,null],[1708977600,null],[1708977601,null],[1708977602,null],[1708977603,null],[1708977604,null],[1708977605,[7,30,93,133,151,171,173,174,175,176]],[1708977606,[10,394,1107,2764,3735,4883,5723,7780,13428,20204]],[1708977607,[73,1058,2383,4423,5526,6252,7301,10128,17090,26921]],[1708977608,[727,1944,4074,6094,7256,8419,10622,12248,20751,26760]],[1708977609,[1008,3406,5181,7608,8843,9908,11504,13567,18620,24273]],[1708977610,[1685,2992,5163,8074,8504,9317,11200,13435,18923,36129]],[1708977611,[2782,3159,5961,7858,8867,10775,12070,14738,17576,22032]],[1708977612,[2892,3943,6133,9000,9260,9597,12253,15960,19431,21858]],[1708977613,[3059,3428,6047,7673,8949,9314,12459,13819,19951,28947]],[1708977614,[3120,4046,6167,9306,9506,9852,12532,15234,20600,22350]],[1708977615,[3079,4793,6302,9522,9708,9926,12917,16166,22817,26439]],[1708977616,[2866,3164,5604,8144,9141,9479,11022,12933,20069,28929]],[1708977617,[2851,3100,6052,8812,9486,9709,12732,14290,23209,28709]],[1708977618,[2958,3896,6468,9818,10164,12935,13592,16296,19877,23056]],[1708977619,[3027,3604,6443,8476,9654,10146,11966,15508,20504,21481]],[1708977620,[3302,4715,6476,9609,10016,10438,13129,15688,19443,19675]],[1708977621,[3402,3809,6770,9561,10103,10637,13402,16123,21029,32658]],[1708977622,[3332,3569,6393,8997,10111,10305,13259,17413,22579,25963]],[1708977623,[3010,4904,6771,9944,10080,12914,13453,16502,20155,23215]],[1708977624,[2884,3596,6646,8157,9763,10021,11557,14672,20127,32636]],[1708977625,[3211,4152,6749,9513,9783,10395,13069,13572,21722,34794]],[1708977626,[3453,4463,6831,9803,9978,10667,13340,16353,20061,20668]],[1708977627,[3632,3993,6709,10005,10255,10907,13342,14278,19367,32948]],[1708977628,[3387,3673,6537,9940,10189,10297,12447,15122,25397,29264]],[1708977629,[3297,3770,6517,8023,9882,10432,13099,14654,16458,19038]],[1708977630,[3060,4084,6552,9853,10251,11995,12913,16362,22665,24637]],[1708977631,[3030,3367,6759,9723,9931,11134,13146,16058,29210,29487]],[1708977632,[3028,3375,6623,9713,10194,12390,13967,16224,20909,26021]],[1708977633,[3115,3586,6550,9142,9619,10189,12739,14207,19410,28679]],[1708977634,[3400,3800,6674,9834,10008,10597,13152,16139,20208,25975]],[1708977635,[3462,3687,6152,9925,10112,11183,13044,15212,20625,30146]],[1708977636,[3280,3652,6468,9660,9836,9981,12651,13782,16315,22632]],[1708977637,[3225,3545,5585,7207,8477,9676,10453,12871,13385,14409]],[1708977638,[3018,4679,6581,9586,9687,9984,12588,13663,18520,18952]],[1708977639,[3077,3926,6460,9714,10165,12687,13030,15741,22245,22890]],[1708977640,[3074,3366,6335,8208,9638,9815,11615,12997,17998,23513]],[1708977641,[3191,5017,6589,9707,9782,10054,12279,12980,18074,19341]],[1708977642,[3337,4044,6624,8469,9757,10012,11419,15534,17983,19885]],[1708977643,[3231,3531,6365,9181,9796,9989,12035,12958,17039,19330]],[1708977644,[3100,3483,6536,8784,9602,9787,10183,12701,15903,16470]],[1708977645,[3086,3492,6447,9252,9522,9932,12088,13016,16040,16489]],[1708977646,[3189,3575,6489,9204,9563,9755,12154,13094,18626,18893]],[1708977647,[3169,4507,6513,9469,9697,10136,11874,13047,16297,16891]],[1708977648,[3194,3559,5703,8139,9687,9892,11995,13011,15306,16271]],[1708977649,[3167,3577,6248,9109,9549,9721,10014,12491,13603,15065]],[1708977650,[3035,3476,6192,7047,7933,9609,10148,12547,12923,13443]],[1708977651,[3042,3330,6238,8051,8806,9536,9842,12019,13077,13900]],[1708977652,[3027,3850,6590,8221,9088,9467,9759,10260,12743,12822]],[1708977653,[3115,3342,4969,6706,6842,7070,8872,9569,10203,12459]],[1708977654,[3212,3557,5581,6636,7183,8018,9093,9616,10593,10998]],[1708977655,[3479,3736,6412,6758,6993,7930,9320,9585,9921,9973]],[1708977656,[3301,3582,4869,6452,6558,6725,6943,7035,8247,9337]],[1708977657,[3116,3364,3971,5801,6058,6178,6289,6443,6510,6520]],[1708977658,[2941,3269,3907,6019,6327,6359,6426,6574,7380,7455]],[1708977659,[3055,3213,3305,4703,4838,5639,5987,6275,6423,6459]],[1708977660,[3045,3187,3287,3349,3353,3356,3510,4757,4814,4830]],[1708977661,[3049,3514,3789,4126,4214,4308,4352,4591,4675,4689]],[1708977662,[2998,3091,3150,3227,3272,3284,3286,3292,3308,3312]],[1708977663,null],[1708977664,null],[1708977665,null],[1708977666,null],[1708977667,null],[1708977668,null],[1708977669,null],[1708977670,null],[1708977671,null],[1708977672,null],[1708977673,null],[1708977674,null],[1708977675,[7,33,42,63,79,91,91,92,93,94]],[1708977676,[52,385,671,1231,1402,1790,2443,3631,6930,8961]],[1708977677,[452,1135,1899,3356,3717,4209,4821,6548,11188,14120]],[1708977678,[1135,1854,2862,4314,4468,4649,5476,6074,10222,13900]],[1708977679,[1548,1731,2893,3939,4511,4735,5502,6928,11567,12632]],[1708977680,[1599,2025,3066,3745,4454,4700,6443,7563,11603,12442]],[1708977681,[1465,1805,2932,5212,5863,7757,8742,9148,11345,11589]],[1708977682,[1363,1813,3651,6742,7183,7448,9003,9261,10413,10765]],[1708977683,[1373,2052,4080,5591,6657,7521,7842,8505,9338,9351]],[1708977684,[8,3031,5151,6469,6586,7082,7798,8106,8499,8596]],[1708977685,[53,815,1983,3646,4681,5172,6008,6376,7202,7747]],[1708977686,[780,2608,3726,5149,5347,5647,5810,6048,6497,6739]],[1708977687,[1980,3402,4324,4598,4796,5026,5176,5319,5557,5801]],[1708977688,null],[1708977689,null],[1708977690,null],[1708977691,null],[1708977692,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([[1708977442,[25,25,0]],[1708977443,[1,0,1]],[1708977444,[25,25,0]],[1708977445,[1,0,1]],[1708977446,[38,37,1]],[1708977447,[36,26,10]],[1708977448,[6,6,0]],[1708977449,[9,9,0]],[1708977450,[11,11,0]],[1708977451,[13,13,0]],[1708977452,[18,18,0]],[1708977453,[19,19,0]],[1708977454,[24,24,0]],[1708977455,[26,26,0]],[1708977456,[27,27,0]],[1708977457,[32,32,0]],[1708977458,[34,34,0]],[1708977459,[37,35,2]],[1708977460,[39,39,0]],[1708977461,[43,43,0]],[1708977462,[44,44,0]],[1708977463,[48,48,0]],[1708977464,[50,50,0]],[1708977465,[54,54,0]],[1708977466,[56,56,0]],[1708977467,[61,61,0]],[1708977468,[61,61,0]],[1708977469,[65,65,0]],[1708977470,[67,67,0]],[1708977471,[70,69,1]],[1708977472,[73,73,0]],[1708977473,[77,77,0]],[1708977474,[79,79,0]],[1708977475,[81,81,0]],[1708977476,[85,85,0]],[1708977477,[87,87,0]],[1708977478,[91,91,0]],[1708977479,[92,92,0]],[1708977480,[96,96,0]],[1708977481,[98,98,0]],[1708977482,[101,101,0]],[1708977483,[105,105,0]],[1708977484,[107,107,0]],[1708977485,[110,110,0]],[1708977486,[112,112,0]],[1708977487,[116,116,0]],[1708977488,[118,118,0]],[1708977489,[121,121,0]],[1708977490,[123,123,0]],[1708977491,[126,126,0]],[1708977492,[129,129,0]],[1708977493,[133,133,0]],[1708977494,[135,134,1]],[1708977495,[138,138,0]],[1708977496,[141,141,0]],[1708977497,[143,143,0]],[1708977498,[147,147,0]],[1708977499,[149,149,0]],[1708977500,[151,151,0]],[1708977501,[155,155,0]],[1708977502,[157,157,0]],[1708977503,[161,161,0]],[1708977504,[164,164,0]],[1708977505,[165,165,0]],[1708977506,[170,169,1]],[1708977507,[170,170,0]],[1708977508,[175,175,0]],[1708977509,[176,176,0]],[1708977510,[181,181,0]],[1708977511,[183,183,0]],[1708977512,[186,186,0]],[1708977513,[188,188,0]],[1708977514,[192,192,0]],[1708977515,[194,194,0]],[1708977516,[196,196,0]],[1708977517,[199,197,2]],[1708977518,[203,201,2]],[1708977519,[205,198,7]],[1708977520,[207,193,14]],[1708977521,[211,176,35]],[1708977522,[213,159,54]],[1708977523,[217,134,83]],[1708977524,[220,74,146]],[1708977525,[222,14,208]],[1708977526,[225,0,225]],[1708977527,[227,0,227]],[1708977528,[231,0,231]],[1708977529,[233,0,233]],[1708977530,[237,0,237]],[1708977531,[238,0,238]],[1708977532,[243,0,243]],[1708977533,[243,0,243]],[1708977534,[249,0,249]],[1708977535,[250,0,250]],[1708977536,[252,0,252]],[1708977537,[256,8,248]],[1708977538,[259,239,20]],[1708977539,[262,262,0]],[1708977540,[264,264,0]],[1708977541,[266,266,0]],[1708977542,[270,270,0]],[1708977543,[273,273,0]],[1708977544,[275,275,0]],[1708977545,[279,279,0]],[1708977546,[281,232,49]],[1708977547,[283,150,133]],[1708977548,[286,159,127]],[1708977549,[290,146,144]],[1708977550,[292,144,148]],[1708977551,[295,135,160]],[1708977552,[299,146,153]],[1708977553,[300,154,146]],[1708977554,[304,128,176]],[1708977555,[306,97,209]],[1708977556,[309,136,173]],[1708977557,[313,120,193]],[1708977558,[314,121,193]],[1708977559,[317,114,203]],[1708977560,[322,136,186]],[1708977561,[322,138,184]],[1708977562,[326,142,184]],[1708977563,[330,131,199]],[1708977564,[331,135,196]],[1708977565,[334,127,207]],[1708977566,[339,137,202]],[1708977567,[340,146,194]],[1708977568,[340,146,194]],[1708977569,[339,145,194]],[1708977570,[341,153,188]],[1708977571,[340,130,210]],[1708977572,[340,143,197]],[1708977573,[340,121,219]],[1708977574,[340,151,189]],[1708977575,[340,146,194]],[1708977576,[340,149,191]],[1708977577,[340,146,194]],[1708977578,[340,136,204]],[1708977579,[340,124,216]],[1708977580,[339,124,215]],[1708977581,[341,139,202]],[1708977582,[339,136,203]],[1708977583,[341,134,207]],[1708977584,[338,128,210]],[1708977585,[341,111,230]],[1708977586,[341,100,241]],[1708977587,[340,104,236]],[1708977588,[340,102,238]],[1708977589,[340,80,260]],[1708977590,[340,54,286]],[1708977591,[339,51,288]],[1708977592,[340,25,315]],[1708977593,[341,0,341]],[1708977594,[340,0,340]],[1708977595,[338,0,338]],[1708977596,[341,0,341]],[1708977597,[341,0,341]],[1708977598,[340,0,340]],[1708977599,[340,0,340]],[1708977600,[338,0,338]],[1708977601,[340,0,340]],[1708977602,[341,0,341]],[1708977603,[340,0,340]],[1708977604,[341,0,341]],[1708977605,[340,24,316]],[1708977606,[340,311,29]],[1708977607,[340,339,1]],[1708977608,[340,339,1]],[1708977609,[340,340,0]],[1708977610,[340,270,70]],[1708977611,[340,153,187]],[1708977612,[340,158,182]],[1708977613,[340,158,182]],[1708977614,[339,149,190]],[1708977615,[341,142,199]],[1708977616,[340,140,200]],[1708977617,[339,132,207]],[1708977618,[339,159,180]],[1708977619,[342,169,173]],[1708977620,[340,148,192]],[1708977621,[340,146,194]],[1708977622,[340,135,205]],[1708977623,[339,111,228]],[1708977624,[340,144,196]],[1708977625,[340,147,193]],[1708977626,[340,153,187]],[1708977627,[340,117,223]],[1708977628,[341,137,204]],[1708977629,[340,127,213]],[1708977630,[339,121,218]],[1708977631,[341,148,193]],[1708977632,[340,139,201]],[1708977633,[340,150,190]],[1708977634,[340,144,196]],[1708977635,[338,138,200]],[1708977636,[342,124,218]],[1708977637,[340,122,218]],[1708977638,[340,137,203]],[1708977639,[339,150,189]],[1708977640,[341,143,198]],[1708977641,[340,134,206]],[1708977642,[340,147,193]],[1708977643,[340,136,204]],[1708977644,[339,106,233]],[1708977645,[340,152,188]],[1708977646,[341,140,201]],[1708977647,[340,151,189]],[1708977648,[340,121,219]],[1708977649,[340,142,198]],[1708977650,[340,123,217]],[1708977651,[339,117,222]],[1708977652,[341,128,213]],[1708977653,[340,144,196]],[1708977654,[340,116,224]],[1708977655,[339,118,221]],[1708977656,[340,91,249]],[1708977657,[341,65,276]],[1708977658,[340,86,254]],[1708977659,[340,65,275]],[1708977660,[340,30,310]],[1708977661,[339,24,315]],[1708977662,[340,17,323]],[1708977663,[340,0,340]],[1708977664,[328,0,328]],[1708977665,[353,0,353]],[1708977666,[339,0,339]],[1708977667,[341,0,341]],[1708977668,[340,0,340]],[1708977669,[340,0,340]],[1708977670,[340,0,340]],[1708977671,[340,0,340]],[1708977672,[340,0,340]],[1708977673,[340,0,340]],[1708977674,[339,0,339]],[1708977675,[341,13,328]],[1708977676,[340,322,18]],[1708977677,[340,340,0]],[1708977678,[340,259,81]],[1708977679,[340,143,197]],[1708977680,[340,141,199]],[1708977681,[339,140,199]],[1708977682,[341,157,184]],[1708977683,[340,166,174]],[1708977684,[338,159,179]],[1708977685,[341,322,19]],[1708977686,[340,340,0]],[1708977687,[165,165,0]],[1708977688,[0,0,0]],[1708977689,[0,0,0]],[1708977690,[0,0,0]],[1708977691,[0,0,0]],[1708977692,[0,0,0]]]);
var requestsChart = new Highcharts.StockChart({
chart: {
renderTo: 'requests',
zoomType: 'x',
marginBottom: 60
},
credits: { enabled: false },
legend: {
enabled: true,
floating: true,
y: -65,
borderWidth: 0,
itemStyle: { fontWeight: "normal" },
symbolRadius: 0
},
title: { text: 'A title to let highcharts reserve the place for the title set later' },
navigator: {
maskInside: false
},
rangeSelector: {
buttonSpacing: 0,
buttonTheme: {
fill: '#CFC9C6',
padding: 1,
stroke: '#000000',
'stroke-width': 0.25,
style: {