-
Notifications
You must be signed in to change notification settings - Fork 923
/
Copy pathindex.html
1195 lines (1125 loc) · 97.4 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-21 00:22:51 GMT</span>
</span>
<span class="simulation-information-item">
<span class="simulation-information-label">Duration: </span>
<span>4m 7s </span>
</span>
<span class="simulation-tooltip simulation-information-item description" title="Description" data-content="Rinha de Backend - 2024/Q1: Crébito - my_way">
<span class="simulation-information-label">Description: </span>
<span>Rinha de Backend - 2024/Q1: Crébito - my_way</span>
</span>
</div>
</div>
</div>
</div>
<div id="statistics_table_container">
<div id="stats" class="statistics extensible-geant collapsed">
<div class="title">
<div id="statistics_title" class="title_base"><span class="title_base_stats">Stats</span><span class="expand-table">Fixed height</span><span id="toggle-stats" class="toggle-table"></span><span class="collapse-table">Full size</span></div>
<div class="right">
<button class="statistics-button expand-all-button">Expand all groups</button>
<button class="statistics-button collapse-all-button">Collapse all groups</button>
<button id="statistics_full_screen" class="statistics-button" onclick="openStatisticsTableModal()"><img alt="Fullscreen" src="style/fullscreen.svg"></button>
</div>
</div>
<div class="scrollable">
<table id="container_statistics_head" class="statistics-in extensible-geant">
<thead>
<tr>
<th rowspan="2" id="col-1" class="header sortable sorted-up"><span>Requests</span></th>
<th colspan="5" class="header"><span class="executions">Executions</span></th>
<th colspan="8" class="header"><span class="response-time">Response Time (ms)</span></th>
</tr>
<tr>
<th id="col-2" class="header sortable"><span>Total</span></th>
<th id="col-3" class="header sortable"><span>OK</span></th>
<th id="col-4" class="header sortable"><span>KO</span></th>
<th id="col-5" class="header sortable"><span>% KO</span></th>
<th id="col-6" class="header sortable"><span><abbr title="Count of events per second">Cnt/s</abbr></span></th>
<th id="col-7" class="header sortable"><span>Min</span></th>
<th id="col-8" class="header sortable"><span>50th pct</span></th>
<th id="col-9" class="header sortable"><span>75th pct</span></th>
<th id="col-10" class="header sortable"><span>95th pct</span></th>
<th id="col-11" class="header sortable"><span>99th pct</span></th>
<th id="col-12" class="header sortable"><span>Max</span></th>
<th id="col-13" class="header sortable"><span>Mean</span></th>
<th id="col-14" class="header sortable"><span><abbr title="Standard Deviation">Std Dev</abbr></span></th>
</tr>
</thead>
<tbody></tbody>
</table>
<table id="container_statistics_body" class="statistics-in extensible-geant">
<tbody></tbody>
</table>
</div>
</div>
</div>
<dialog id="statistics_table_modal" class="statistics-table-modal">
<div class="statistics-table-modal-header"><button class="button-modal" onclick="closeStatisticsTableModal()"><img alt="Close" src="style/close.svg"></button></div>
<div class="statistics-table-modal-container">
<div id="statistics_table_modal_content" class="statistics-table-modal-content"></div>
</div>
</dialog>
<script>
function openStatisticsTableModal () {
const statsTable = document.getElementById("stats");
const statsTableModal = document.getElementById("statistics_table_modal");
const fullScreenButton = document.getElementById("statistics_full_screen");
fullScreenButton.disabled = true;
if (typeof statsTableModal.showModal === "function") {
const statsTableModalContent = document.getElementById("statistics_table_modal_content");
statsTableModalContent.innerHTML = "";
statsTableModalContent.appendChild(statsTable);
statsTableModal.showModal();
statsTableModal.addEventListener("close", function () {
const container = document.getElementById("statistics_table_container");
container.appendChild(statsTable);
fullScreenButton.disabled = false;
});
} else {
const incompatibleBrowserVersionMessage = document.createElement("div");
incompatibleBrowserVersionMessage.innerText = "Sorry, the <dialog> API is not supported by this browser.";
statsTable.insertBefore(incompatibleBrowserVersionMessage, statsTable.children[0]);
}
}
function closeStatisticsTableModal () {
const statsTableModal = document.getElementById("statistics_table_modal");
statsTableModal.close();
}
</script>
<div class="statistics extensible-geant collapsed">
<div class="title">
Errors
</div>
<table id="container_errors" class="statistics-in extensible-geant">
<thead>
<tr>
<th id="error-col-1" class="header sortable"><span>Error</span></th>
<th id="error-col-2" class="header sortable"><span>Count</span></th>
<th id="error-col-3" class="header sortable"><span>Percentage</span></th>
</tr>
</thead>
<tbody>
<tr>
<td class="error-col-1 total ko">j.i.IOException: Premature close<span class="value" style="display:none">0</span></td>
<td class="value error-col-2 total ko">11708</td>
<td class="value error-col-3 total ko">100 %</td>
</tr>
</tbody>
</table>
</div>
<div class="schema geant">
<div id="active_users" class="geant"></div>
</div>
<div class="schema geant">
<div id="responsetimeDistributionContainer" class="geant"></div>
</div>
<div class="schema geant">
<div id="responsetimepercentilesovertimeokPercentilesContainer" class="geant"></div>
</div>
<div class="schema geant">
<div id="requests" class="geant"></div>
</div>
<div class="schema geant">
<div id="responses" class="geant"></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<script>
var pageStats = stats.stats;
$(document).ready(function() {
$('.simulation-tooltip').popover({trigger:'hover', placement:'left'});
setDetailsLinkUrl();
setGlobalMenu();
setActiveMenu();
fillStats(pageStats);
Highcharts.setOptions({
global: { useUTC: false }
});
var rangesChart = new Highcharts.Chart({
chart: {
renderTo: 'ranges',
marginRight: 100
},
credits: { enabled: false },
legend: { enabled: false },
title: { text: 'A title to let highcharts reserve the place for the title set later' },
xAxis: {
categories: [
pageStats.group1.htmlName,
pageStats.group2.htmlName,
pageStats.group3.htmlName,
pageStats.group4.htmlName
]
},
yAxis: {
title: { text: 'Number of Requests' },
reversedStacks: false
},
tooltip: {
formatter: function() {
var s;
if (this.point.name) { // the pie chart
s = ''+ this.point.name +': '+ this.y +'% requests';
} else {
s = ''+ this.y + ' requests';
}
return s;
}
},
plotOptions: {
series: {
stacking: 'normal',
shadow: true
}
},
series: [
{
type: 'column',
data: [{
color: '#68b65c',
y: pageStats.group1.count
},
{
color: '#FFDD00',
y: pageStats.group2.count
},
{
color: '#FFA900',
y: pageStats.group3.count
},
{
color: '#f15b4f',
y: pageStats.group4.count
}]
},
{
type: 'pie',
name: 'Percentages',
data: [
{
name: pageStats.group1.name,
y: pageStats.group1.percentage,
color: '#68b65c'
},
{
name: pageStats.group2.name,
y: pageStats.group2.percentage,
color: '#FFDD00'
},
{
name: pageStats.group3.name,
y: pageStats.group3.percentage,
color: '#FFA900'
},
{
name: pageStats.group4.name,
y: pageStats.group4.percentage,
color: '#f15b4f'
}
],
center: [345, 0],
size: 90,
showInLegend: false,
dataLabels: { enabled: false }
}
]
});
rangesChart.setTitle({
text: '<span class="chart_title">Response Time Ranges</span>',
useHTML: true
});
function numberOfRequestsDataForGroup(group) {
var data = {names: [], oks: [], kos: []};
$.each(group.contents, function(contentName, content) {
if (content.type == 'GROUP') {
var result = numberOfRequestsDataForGroup(content);
data.names = data.names.concat(result.names);
data.oks = data.oks.concat(result.oks);
data.kos = data.kos.concat(result.kos);
}
else if (content.type == 'REQUEST') {
data.names.push(content.path);
data.oks.push(parseInt(content.stats.numberOfRequests.ok));
data.kos.push(parseInt(content.stats.numberOfRequests.ko));
}
});
return data;
}
var numberOfRequestsData = numberOfRequestsDataForGroup(stats);
var tickInterval = Math.ceil(numberOfRequestsData.names.length / 1000);
new Highcharts.Chart({
chart: {
renderTo:'container_number_of_requests',
polar:true,
type:'column',
height:330
},
credits:{
enabled:false
},
title:{
text:'<span class="chart_title">Number of requests</span>',
useHTML: true,
widthAdjust:-20
},
xAxis:{
tickmarkPlacement:'on',
tickInterval: tickInterval,
categories:numberOfRequestsData.names,
labels:{ enabled:false }
},
yAxis:{
min:0,
reversedStacks: false
},
plotOptions:{
series:{
stacking:'normal',
groupPadding:0,
pointPlacement:'on',
shadow: true
}
},
legend: {
borderWidth: 0,
itemStyle: { fontWeight: "normal" },
symbolRadius: 0
},
series:[
{
name:'OK',
data:numberOfRequestsData.oks,
color:"#68b65c"
},
{
name:'KO',
data:numberOfRequestsData.kos,
color:"#f15b4f"
}
]
});
$('#container_exceptions').sortable('#container_exceptions');
function generateHtmlRow(request, level, index, parent, group) {
if (request.name == 'All Requests')
var url = 'index.html';
else
var url = request.pathFormatted + '.html';
if (group)
var expandButtonStyle = '';
else
var expandButtonStyle = ' hidden';
if (request.stats.numberOfRequests.total != 0)
var koPercent = (request.stats.numberOfRequests.ko * 100 / request.stats.numberOfRequests.total).toFixed(0) + '%';
else
var koPercent = '-'
return '<tr id="' + request.pathFormatted + '" data-parent=' + parent + '> \
<td class="total col-1"> \
<div class="expandable-container"> \
<span id="' + request.pathFormatted + '" style="margin-left: ' + (level * 10) + 'px;" class="expand-button' + expandButtonStyle + '"> </span> \
<a href="' + url +'" class="withTooltip">' + ellipsedLabel({ name: request.name, parentClass: "table-cell-tooltip" }) + '</a><span class="value" style="display:none;">' + index + '</span> \
</div> \
</td> \
<td class="value total col-2">' + request.stats.numberOfRequests.total + '</td> \
<td class="value ok col-3">' + request.stats.numberOfRequests.ok + '</td> \
<td class="value ko col-4">' + request.stats.numberOfRequests.ko + '</td> \
<td class="value ko col-5">' + koPercent + '</td> \
<td class="value total col-6">' + request.stats.meanNumberOfRequestsPerSecond.total + '</td> \
<td class="value total col-7">' + request.stats.minResponseTime.total + '</td> \
<td class="value total col-8">' + request.stats.percentiles1.total + '</td> \
<td class="value total col-9">' + request.stats.percentiles2.total + '</td> \
<td class="value total col-10">' + request.stats.percentiles3.total + '</td> \
<td class="value total col-11">' + request.stats.percentiles4.total + '</td> \
<td class="value total col-12">' + request.stats.maxResponseTime.total + '</td> \
<td class="value total col-13">' + request.stats.meanResponseTime.total + '</td> \
<td class="value total col-14">' + request.stats.standardDeviation.total + '</td> \
</tr>';
}
function generateHtmlRowsForGroup(group, level, index, parent) {
var buffer = '';
if (!parent)
parent = 'ROOT';
else {
buffer += generateHtmlRow(group, level - 1, index, parent, true);
index++;
parent = group.pathFormatted;
}
$.each(group.contents, function(contentName, content) {
if (content.type == 'GROUP') {
var result = generateHtmlRowsForGroup(content, level + 1, index, parent);
buffer += result.html;
index = result.index;
}
else if (content.type == 'REQUEST') {
buffer += generateHtmlRow(content, level, index, parent);
index++;
}
});
return { html: buffer, index: index };
}
$('#container_statistics_head tbody').append(generateHtmlRow(stats, 0, 0));
var lines = generateHtmlRowsForGroup(stats, 0, 0);
$('#container_statistics_body tbody').append(lines.html);
$('#container_statistics_head').sortable('#container_statistics_body');
$('.statistics').expandable();
if (lines.index < 30) {
$('#statistics_title span').attr('style', 'display: none;');
} else {
$('#statistics_title').addClass('title_collapsed');
$('#statistics_title').click(function() {
$('#toggle-stats').toggleClass("off");
$(this).toggleClass('title_collapsed').toggleClass('title_expanded');
$('#container_statistics_body').parent().toggleClass('scrollable').toggleClass('');
});
}
$('.table-cell-tooltip').popover({trigger:'hover'});
$('#container_errors').sortable('#container_errors');
allUsersData.yAxis = 0;
var allUsersChart = new Highcharts.StockChart({
chart: {
renderTo: 'active_users',
zoomType: 'x'
},
credits: { enabled: false },
legend: {
enabled: true,
floating: true,
align: 'right',
verticalAlign: 'top',
layout: 'vertical',
borderWidth: 0,
itemStyle: { fontWeight: "normal" },
symbolRadius: 0
},
title: { text: 'A title to let highcharts reserve the place for the title set later' },
navigator: {
maskInside: false
},
rangeSelector: {
buttonSpacing: 0,
buttonTheme: {
fill: '#CFC9C6',
padding: 1,
stroke: '#000000',
'stroke-width': 0.25,
style: {
color: '#000000',
fontWeight: 'bold',
},
states: {
stroke: '#000000',
'stroke-width': 0.25,
hover: {
fill: '#92918C',
style: { color: 'black' }
},
select: {
fill: '#FFA900',
style: { color: 'white' }
}
}
},
buttons : [
{
type : 'minute',
count : 1,
text : '1m'
}, {
type : 'minute',
count : 10,
text : '10m'
}, {
type : 'hour',
count : 1,
text : '1h'
}, {
type : 'all',
count : 1,
text : 'All'
}
],
selected : 3,
inputEnabled : false
},
xAxis: {
type: 'datetime',
ordinal: false,
maxZoom: 10000 // three days
},
yAxis: {
title: { text: 'Number of Active Users' },
opposite: false,
min: 0
},
series: [
{
color: '#5E7BE2',
name: 'débitos',
data: [
[1708474971000,0],[1708474972000,0],[1708474973000,0],[1708474974000,0],[1708474975000,0],[1708474976000,2],[1708474977000,4],[1708474978000,6],[1708474979000,7],[1708474980000,9],[1708474981000,11],[1708474982000,13],[1708474983000,15],[1708474984000,16],[1708474985000,19],[1708474986000,20],[1708474987000,22],[1708474988000,24],[1708474989000,25],[1708474990000,28],[1708474991000,29],[1708474992000,31],[1708474993000,33],[1708474994000,36],[1708474995000,37],[1708474996000,38],[1708474997000,40],[1708474998000,42],[1708474999000,44],[1708475000000,46],[1708475001000,47],[1708475002000,50],[1708475003000,51],[1708475004000,53],[1708475005000,55],[1708475006000,56],[1708475007000,59],[1708475008000,60],[1708475009000,62],[1708475010000,64],[1708475011000,66],[1708475012000,68],[1708475013000,70],[1708475014000,72],[1708475015000,75],[1708475016000,75],[1708475017000,78],[1708475018000,80],[1708475019000,81],[1708475020000,83],[1708475021000,85],[1708475022000,87],[1708475023000,89],[1708475024000,89],[1708475025000,92],[1708475026000,93],[1708475027000,95],[1708475028000,97],[1708475029000,99],[1708475030000,101],[1708475031000,102],[1708475032000,104],[1708475033000,106],[1708475034000,108],[1708475035000,110],[1708475036000,111],[1708475037000,113],[1708475038000,115],[1708475039000,117],[1708475040000,119],[1708475041000,120],[1708475042000,123],[1708475043000,124],[1708475044000,126],[1708475045000,128],[1708475046000,129],[1708475047000,132],[1708475048000,134],[1708475049000,136],[1708475050000,137],[1708475051000,140],[1708475052000,142],[1708475053000,143],[1708475054000,145],[1708475055000,148],[1708475056000,148],[1708475057000,151],[1708475058000,153],[1708475059000,153],[1708475060000,156],[1708475061000,157],[1708475062000,160],[1708475063000,162],[1708475064000,163],[1708475065000,166],[1708475066000,166],[1708475067000,168],[1708475068000,170],[1708475069000,171],[1708475070000,174],[1708475071000,175],[1708475072000,177],[1708475073000,179],[1708475074000,182],[1708475075000,183],[1708475076000,185],[1708475077000,186],[1708475078000,188],[1708475079000,190],[1708475080000,193],[1708475081000,193],[1708475082000,196],[1708475083000,197],[1708475084000,199],[1708475085000,202],[1708475086000,203],[1708475087000,206],[1708475088000,207],[1708475089000,209],[1708475090000,211],[1708475091000,213],[1708475092000,215],[1708475093000,216],[1708475094000,218],[1708475095000,221],[1708475096000,221],[1708475097000,221],[1708475098000,221],[1708475099000,221],[1708475100000,221],[1708475101000,221],[1708475102000,221],[1708475103000,222],[1708475104000,222],[1708475105000,221],[1708475106000,224],[1708475107000,221],[1708475108000,222],[1708475109000,221],[1708475110000,222],[1708475111000,221],[1708475112000,222],[1708475113000,222],[1708475114000,222],[1708475115000,220],[1708475116000,222],[1708475117000,221],[1708475118000,222],[1708475119000,221],[1708475120000,222],[1708475121000,221],[1708475122000,222],[1708475123000,221],[1708475124000,221],[1708475125000,221],[1708475126000,221],[1708475127000,221],[1708475128000,221],[1708475129000,221],[1708475130000,221],[1708475131000,222],[1708475132000,221],[1708475133000,222],[1708475134000,221],[1708475135000,221],[1708475136000,221],[1708475137000,255],[1708475138000,369],[1708475139000,471],[1708475140000,553],[1708475141000,540],[1708475142000,545],[1708475143000,537],[1708475144000,534],[1708475145000,535],[1708475146000,530],[1708475147000,541],[1708475148000,547],[1708475149000,557],[1708475150000,553],[1708475151000,550],[1708475152000,551],[1708475153000,546],[1708475154000,524],[1708475155000,537],[1708475156000,546],[1708475157000,531],[1708475158000,545],[1708475159000,535],[1708475160000,534],[1708475161000,545],[1708475162000,550],[1708475163000,533],[1708475164000,529],[1708475165000,529],[1708475166000,529],[1708475167000,543],[1708475168000,545],[1708475169000,549],[1708475170000,537],[1708475171000,548],[1708475172000,543],[1708475173000,539],[1708475174000,545],[1708475175000,555],[1708475176000,556],[1708475177000,555],[1708475178000,544],[1708475179000,551],[1708475180000,551],[1708475181000,542],[1708475182000,535],[1708475183000,546],[1708475184000,548],[1708475185000,549],[1708475186000,545],[1708475187000,543],[1708475188000,538],[1708475189000,550],[1708475190000,543],[1708475191000,539],[1708475192000,545],[1708475193000,545],[1708475194000,546],[1708475195000,552],[1708475196000,546],[1708475197000,540],[1708475198000,545],[1708475199000,555],[1708475200000,544],[1708475201000,551],[1708475202000,540],[1708475203000,535],[1708475204000,534],[1708475205000,531],[1708475206000,535],[1708475207000,542],[1708475208000,547],[1708475209000,533],[1708475210000,541],[1708475211000,541],[1708475212000,547],[1708475213000,538],[1708475214000,530],[1708475215000,533],[1708475216000,321],[1708475217000,191],[1708475218000,53]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#68b65c',
name: 'créditos',
data: [
[1708474971000,0],[1708474972000,0],[1708474973000,0],[1708474974000,0],[1708474975000,1],[1708474976000,2],[1708474977000,2],[1708474978000,4],[1708474979000,4],[1708474980000,5],[1708474981000,6],[1708474982000,7],[1708474983000,8],[1708474984000,8],[1708474985000,10],[1708474986000,10],[1708474987000,12],[1708474988000,12],[1708474989000,14],[1708474990000,14],[1708474991000,15],[1708474992000,16],[1708474993000,17],[1708474994000,17],[1708474995000,19],[1708474996000,20],[1708474997000,20],[1708474998000,22],[1708474999000,22],[1708475000000,23],[1708475001000,25],[1708475002000,25],[1708475003000,26],[1708475004000,27],[1708475005000,28],[1708475006000,29],[1708475007000,30],[1708475008000,30],[1708475009000,32],[1708475010000,32],[1708475011000,33],[1708475012000,34],[1708475013000,35],[1708475014000,36],[1708475015000,37],[1708475016000,38],[1708475017000,39],[1708475018000,39],[1708475019000,41],[1708475020000,41],[1708475021000,43],[1708475022000,43],[1708475023000,44],[1708475024000,45],[1708475025000,46],[1708475026000,47],[1708475027000,48],[1708475028000,48],[1708475029000,50],[1708475030000,50],[1708475031000,52],[1708475032000,52],[1708475033000,53],[1708475034000,54],[1708475035000,56],[1708475036000,55],[1708475037000,57],[1708475038000,58],[1708475039000,59],[1708475040000,59],[1708475041000,61],[1708475042000,61],[1708475043000,63],[1708475044000,63],[1708475045000,64],[1708475046000,65],[1708475047000,67],[1708475048000,68],[1708475049000,69],[1708475050000,69],[1708475051000,71],[1708475052000,71],[1708475053000,73],[1708475054000,73],[1708475055000,74],[1708475056000,75],[1708475057000,76],[1708475058000,77],[1708475059000,78],[1708475060000,79],[1708475061000,80],[1708475062000,80],[1708475063000,82],[1708475064000,82],[1708475065000,83],[1708475066000,84],[1708475067000,86],[1708475068000,86],[1708475069000,86],[1708475070000,87],[1708475071000,89],[1708475072000,90],[1708475073000,90],[1708475074000,91],[1708475075000,91],[1708475076000,93],[1708475077000,95],[1708475078000,94],[1708475079000,95],[1708475080000,97],[1708475081000,98],[1708475082000,97],[1708475083000,99],[1708475084000,100],[1708475085000,101],[1708475086000,101],[1708475087000,104],[1708475088000,104],[1708475089000,104],[1708475090000,105],[1708475091000,107],[1708475092000,107],[1708475093000,107],[1708475094000,109],[1708475095000,111],[1708475096000,110],[1708475097000,111],[1708475098000,110],[1708475099000,111],[1708475100000,110],[1708475101000,110],[1708475102000,110],[1708475103000,110],[1708475104000,110],[1708475105000,110],[1708475106000,112],[1708475107000,110],[1708475108000,110],[1708475109000,110],[1708475110000,110],[1708475111000,110],[1708475112000,111],[1708475113000,111],[1708475114000,110],[1708475115000,110],[1708475116000,111],[1708475117000,110],[1708475118000,111],[1708475119000,111],[1708475120000,110],[1708475121000,110],[1708475122000,110],[1708475123000,110],[1708475124000,111],[1708475125000,110],[1708475126000,110],[1708475127000,110],[1708475128000,110],[1708475129000,110],[1708475130000,110],[1708475131000,110],[1708475132000,111],[1708475133000,111],[1708475134000,111],[1708475135000,111],[1708475136000,111],[1708475137000,128],[1708475138000,191],[1708475139000,237],[1708475140000,264],[1708475141000,267],[1708475142000,266],[1708475143000,260],[1708475144000,261],[1708475145000,260],[1708475146000,278],[1708475147000,269],[1708475148000,261],[1708475149000,256],[1708475150000,256],[1708475151000,259],[1708475152000,258],[1708475153000,258],[1708475154000,259],[1708475155000,272],[1708475156000,268],[1708475157000,268],[1708475158000,268],[1708475159000,257],[1708475160000,259],[1708475161000,261],[1708475162000,256],[1708475163000,270],[1708475164000,263],[1708475165000,274],[1708475166000,267],[1708475167000,261],[1708475168000,256],[1708475169000,256],[1708475170000,270],[1708475171000,258],[1708475172000,267],[1708475173000,269],[1708475174000,268],[1708475175000,264],[1708475176000,265],[1708475177000,256],[1708475178000,263],[1708475179000,260],[1708475180000,259],[1708475181000,267],[1708475182000,263],[1708475183000,260],[1708475184000,260],[1708475185000,259],[1708475186000,255],[1708475187000,263],[1708475188000,265],[1708475189000,261],[1708475190000,263],[1708475191000,262],[1708475192000,271],[1708475193000,260],[1708475194000,259],[1708475195000,255],[1708475196000,258],[1708475197000,268],[1708475198000,259],[1708475199000,256],[1708475200000,266],[1708475201000,255],[1708475202000,259],[1708475203000,263],[1708475204000,272],[1708475205000,269],[1708475206000,261],[1708475207000,270],[1708475208000,256],[1708475209000,270],[1708475210000,261],[1708475211000,260],[1708475212000,262],[1708475213000,266],[1708475214000,263],[1708475215000,266],[1708475216000,161],[1708475217000,99],[1708475218000,25]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#f15b4f',
name: 'extratos',
data: [
[1708474971000,0],[1708474972000,0],[1708474973000,0],[1708474974000,0],[1708474975000,1],[1708474976000,2],[1708474977000,1],[1708474978000,1],[1708474979000,1],[1708474980000,1],[1708474981000,2],[1708474982000,1],[1708474983000,2],[1708474984000,2],[1708474985000,1],[1708474986000,2],[1708474987000,2],[1708474988000,2],[1708474989000,2],[1708474990000,2],[1708474991000,2],[1708474992000,2],[1708474993000,3],[1708474994000,2],[1708474995000,3],[1708474996000,2],[1708474997000,3],[1708474998000,2],[1708474999000,3],[1708475000000,3],[1708475001000,3],[1708475002000,3],[1708475003000,3],[1708475004000,3],[1708475005000,3],[1708475006000,4],[1708475007000,3],[1708475008000,3],[1708475009000,4],[1708475010000,3],[1708475011000,4],[1708475012000,4],[1708475013000,4],[1708475014000,4],[1708475015000,4],[1708475016000,4],[1708475017000,4],[1708475018000,4],[1708475019000,4],[1708475020000,4],[1708475021000,5],[1708475022000,4],[1708475023000,5],[1708475024000,5],[1708475025000,4],[1708475026000,5],[1708475027000,5],[1708475028000,5],[1708475029000,5],[1708475030000,5],[1708475031000,5],[1708475032000,5],[1708475033000,6],[1708475034000,5],[1708475035000,6],[1708475036000,5],[1708475037000,6],[1708475038000,5],[1708475039000,6],[1708475040000,6],[1708475041000,6],[1708475042000,6],[1708475043000,6],[1708475044000,6],[1708475045000,6],[1708475046000,7],[1708475047000,6],[1708475048000,6],[1708475049000,7],[1708475050000,6],[1708475051000,7],[1708475052000,7],[1708475053000,7],[1708475054000,7],[1708475055000,7],[1708475056000,7],[1708475057000,7],[1708475058000,7],[1708475059000,7],[1708475060000,7],[1708475061000,8],[1708475062000,7],[1708475063000,8],[1708475064000,8],[1708475065000,7],[1708475066000,8],[1708475067000,8],[1708475068000,8],[1708475069000,8],[1708475070000,8],[1708475071000,8],[1708475072000,8],[1708475073000,9],[1708475074000,8],[1708475075000,9],[1708475076000,8],[1708475077000,9],[1708475078000,8],[1708475079000,9],[1708475080000,9],[1708475081000,9],[1708475082000,9],[1708475083000,9],[1708475084000,9],[1708475085000,9],[1708475086000,10],[1708475087000,9],[1708475088000,9],[1708475089000,10],[1708475090000,9],[1708475091000,10],[1708475092000,10],[1708475093000,10],[1708475094000,10],[1708475095000,10],[1708475096000,10],[1708475097000,10],[1708475098000,10],[1708475099000,10],[1708475100000,10],[1708475101000,10],[1708475102000,10],[1708475103000,10],[1708475104000,10],[1708475105000,10],[1708475106000,10],[1708475107000,10],[1708475108000,10],[1708475109000,10],[1708475110000,10],[1708475111000,10],[1708475112000,10],[1708475113000,10],[1708475114000,10],[1708475115000,10],[1708475116000,10],[1708475117000,10],[1708475118000,10],[1708475119000,10],[1708475120000,10],[1708475121000,10],[1708475122000,10],[1708475123000,10],[1708475124000,10],[1708475125000,10],[1708475126000,10],[1708475127000,10],[1708475128000,10],[1708475129000,10],[1708475130000,10],[1708475131000,10],[1708475132000,10],[1708475133000,10],[1708475134000,10],[1708475135000,10],[1708475136000,10],[1708475137000,11],[1708475138000,15],[1708475139000,21],[1708475140000,24],[1708475141000,29],[1708475142000,28],[1708475143000,29],[1708475144000,29],[1708475145000,28],[1708475146000,25],[1708475147000,29],[1708475148000,29],[1708475149000,27],[1708475150000,26],[1708475151000,26],[1708475152000,26],[1708475153000,25],[1708475154000,26],[1708475155000,30],[1708475156000,27],[1708475157000,28],[1708475158000,26],[1708475159000,27],[1708475160000,29],[1708475161000,28],[1708475162000,27],[1708475163000,30],[1708475164000,29],[1708475165000,32],[1708475166000,30],[1708475167000,27],[1708475168000,28],[1708475169000,28],[1708475170000,32],[1708475171000,27],[1708475172000,26],[1708475173000,30],[1708475174000,26],[1708475175000,23],[1708475176000,22],[1708475177000,27],[1708475178000,30],[1708475179000,30],[1708475180000,32],[1708475181000,28],[1708475182000,35],[1708475183000,31],[1708475184000,26],[1708475185000,28],[1708475186000,25],[1708475187000,29],[1708475188000,29],[1708475189000,25],[1708475190000,26],[1708475191000,30],[1708475192000,30],[1708475193000,32],[1708475194000,24],[1708475195000,27],[1708475196000,25],[1708475197000,29],[1708475198000,30],[1708475199000,31],[1708475200000,28],[1708475201000,25],[1708475202000,27],[1708475203000,29],[1708475204000,30],[1708475205000,30],[1708475206000,29],[1708475207000,23],[1708475208000,23],[1708475209000,23],[1708475210000,23],[1708475211000,20],[1708475212000,25],[1708475213000,30],[1708475214000,29],[1708475215000,24],[1708475216000,17],[1708475217000,11],[1708475218000,2]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FFDD00',
name: 'validação HTTP 404',
data: [
[1708474971000,0],[1708474972000,0],[1708474973000,0],[1708474974000,1],[1708474975000,0],[1708474976000,0],[1708474977000,0],[1708474978000,0],[1708474979000,0],[1708474980000,0],[1708474981000,0],[1708474982000,0],[1708474983000,0],[1708474984000,0],[1708474985000,0],[1708474986000,0],[1708474987000,0],[1708474988000,0],[1708474989000,0],[1708474990000,0],[1708474991000,0],[1708474992000,0],[1708474993000,0],[1708474994000,0],[1708474995000,0],[1708474996000,0],[1708474997000,0],[1708474998000,0],[1708474999000,0],[1708475000000,0],[1708475001000,0],[1708475002000,0],[1708475003000,0],[1708475004000,0],[1708475005000,0],[1708475006000,0],[1708475007000,0],[1708475008000,0],[1708475009000,0],[1708475010000,0],[1708475011000,0],[1708475012000,0],[1708475013000,0],[1708475014000,0],[1708475015000,0],[1708475016000,0],[1708475017000,0],[1708475018000,0],[1708475019000,0],[1708475020000,0],[1708475021000,0],[1708475022000,0],[1708475023000,0],[1708475024000,0],[1708475025000,0],[1708475026000,0],[1708475027000,0],[1708475028000,0],[1708475029000,0],[1708475030000,0],[1708475031000,0],[1708475032000,0],[1708475033000,0],[1708475034000,0],[1708475035000,0],[1708475036000,0],[1708475037000,0],[1708475038000,0],[1708475039000,0],[1708475040000,0],[1708475041000,0],[1708475042000,0],[1708475043000,0],[1708475044000,0],[1708475045000,0],[1708475046000,0],[1708475047000,0],[1708475048000,0],[1708475049000,0],[1708475050000,0],[1708475051000,0],[1708475052000,0],[1708475053000,0],[1708475054000,0],[1708475055000,0],[1708475056000,0],[1708475057000,0],[1708475058000,0],[1708475059000,0],[1708475060000,0],[1708475061000,0],[1708475062000,0],[1708475063000,0],[1708475064000,0],[1708475065000,0],[1708475066000,0],[1708475067000,0],[1708475068000,0],[1708475069000,0],[1708475070000,0],[1708475071000,0],[1708475072000,0],[1708475073000,0],[1708475074000,0],[1708475075000,0],[1708475076000,0],[1708475077000,0],[1708475078000,0],[1708475079000,0],[1708475080000,0],[1708475081000,0],[1708475082000,0],[1708475083000,0],[1708475084000,0],[1708475085000,0],[1708475086000,0],[1708475087000,0],[1708475088000,0],[1708475089000,0],[1708475090000,0],[1708475091000,0],[1708475092000,0],[1708475093000,0],[1708475094000,0],[1708475095000,0],[1708475096000,0],[1708475097000,0],[1708475098000,0],[1708475099000,0],[1708475100000,0],[1708475101000,0],[1708475102000,0],[1708475103000,0],[1708475104000,0],[1708475105000,0],[1708475106000,0],[1708475107000,0],[1708475108000,0],[1708475109000,0],[1708475110000,0],[1708475111000,0],[1708475112000,0],[1708475113000,0],[1708475114000,0],[1708475115000,0],[1708475116000,0],[1708475117000,0],[1708475118000,0],[1708475119000,0],[1708475120000,0],[1708475121000,0],[1708475122000,0],[1708475123000,0],[1708475124000,0],[1708475125000,0],[1708475126000,0],[1708475127000,0],[1708475128000,0],[1708475129000,0],[1708475130000,0],[1708475131000,0],[1708475132000,0],[1708475133000,0],[1708475134000,0],[1708475135000,0],[1708475136000,0],[1708475137000,0],[1708475138000,0],[1708475139000,0],[1708475140000,0],[1708475141000,0],[1708475142000,0],[1708475143000,0],[1708475144000,0],[1708475145000,0],[1708475146000,0],[1708475147000,0],[1708475148000,0],[1708475149000,0],[1708475150000,0],[1708475151000,0],[1708475152000,0],[1708475153000,0],[1708475154000,0],[1708475155000,0],[1708475156000,0],[1708475157000,0],[1708475158000,0],[1708475159000,0],[1708475160000,0],[1708475161000,0],[1708475162000,0],[1708475163000,0],[1708475164000,0],[1708475165000,0],[1708475166000,0],[1708475167000,0],[1708475168000,0],[1708475169000,0],[1708475170000,0],[1708475171000,0],[1708475172000,0],[1708475173000,0],[1708475174000,0],[1708475175000,0],[1708475176000,0],[1708475177000,0],[1708475178000,0],[1708475179000,0],[1708475180000,0],[1708475181000,0],[1708475182000,0],[1708475183000,0],[1708475184000,0],[1708475185000,0],[1708475186000,0],[1708475187000,0],[1708475188000,0],[1708475189000,0],[1708475190000,0],[1708475191000,0],[1708475192000,0],[1708475193000,0],[1708475194000,0],[1708475195000,0],[1708475196000,0],[1708475197000,0],[1708475198000,0],[1708475199000,0],[1708475200000,0],[1708475201000,0],[1708475202000,0],[1708475203000,0],[1708475204000,0],[1708475205000,0],[1708475206000,0],[1708475207000,0],[1708475208000,0],[1708475209000,0],[1708475210000,0],[1708475211000,0],[1708475212000,0],[1708475213000,0],[1708475214000,0],[1708475215000,0],[1708475216000,0],[1708475217000,0],[1708475218000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00D5FF',
name: 'validações',
data: [
[1708474971000,0],[1708474972000,0],[1708474973000,0],[1708474974000,5],[1708474975000,5],[1708474976000,0],[1708474977000,0],[1708474978000,0],[1708474979000,0],[1708474980000,0],[1708474981000,0],[1708474982000,0],[1708474983000,0],[1708474984000,0],[1708474985000,0],[1708474986000,0],[1708474987000,0],[1708474988000,0],[1708474989000,0],[1708474990000,0],[1708474991000,0],[1708474992000,0],[1708474993000,0],[1708474994000,0],[1708474995000,0],[1708474996000,0],[1708474997000,0],[1708474998000,0],[1708474999000,0],[1708475000000,0],[1708475001000,0],[1708475002000,0],[1708475003000,0],[1708475004000,0],[1708475005000,0],[1708475006000,0],[1708475007000,0],[1708475008000,0],[1708475009000,0],[1708475010000,0],[1708475011000,0],[1708475012000,0],[1708475013000,0],[1708475014000,0],[1708475015000,0],[1708475016000,0],[1708475017000,0],[1708475018000,0],[1708475019000,0],[1708475020000,0],[1708475021000,0],[1708475022000,0],[1708475023000,0],[1708475024000,0],[1708475025000,0],[1708475026000,0],[1708475027000,0],[1708475028000,0],[1708475029000,0],[1708475030000,0],[1708475031000,0],[1708475032000,0],[1708475033000,0],[1708475034000,0],[1708475035000,0],[1708475036000,0],[1708475037000,0],[1708475038000,0],[1708475039000,0],[1708475040000,0],[1708475041000,0],[1708475042000,0],[1708475043000,0],[1708475044000,0],[1708475045000,0],[1708475046000,0],[1708475047000,0],[1708475048000,0],[1708475049000,0],[1708475050000,0],[1708475051000,0],[1708475052000,0],[1708475053000,0],[1708475054000,0],[1708475055000,0],[1708475056000,0],[1708475057000,0],[1708475058000,0],[1708475059000,0],[1708475060000,0],[1708475061000,0],[1708475062000,0],[1708475063000,0],[1708475064000,0],[1708475065000,0],[1708475066000,0],[1708475067000,0],[1708475068000,0],[1708475069000,0],[1708475070000,0],[1708475071000,0],[1708475072000,0],[1708475073000,0],[1708475074000,0],[1708475075000,0],[1708475076000,0],[1708475077000,0],[1708475078000,0],[1708475079000,0],[1708475080000,0],[1708475081000,0],[1708475082000,0],[1708475083000,0],[1708475084000,0],[1708475085000,0],[1708475086000,0],[1708475087000,0],[1708475088000,0],[1708475089000,0],[1708475090000,0],[1708475091000,0],[1708475092000,0],[1708475093000,0],[1708475094000,0],[1708475095000,0],[1708475096000,0],[1708475097000,0],[1708475098000,0],[1708475099000,0],[1708475100000,0],[1708475101000,0],[1708475102000,0],[1708475103000,0],[1708475104000,0],[1708475105000,0],[1708475106000,0],[1708475107000,0],[1708475108000,0],[1708475109000,0],[1708475110000,0],[1708475111000,0],[1708475112000,0],[1708475113000,0],[1708475114000,0],[1708475115000,0],[1708475116000,0],[1708475117000,0],[1708475118000,0],[1708475119000,0],[1708475120000,0],[1708475121000,0],[1708475122000,0],[1708475123000,0],[1708475124000,0],[1708475125000,0],[1708475126000,0],[1708475127000,0],[1708475128000,0],[1708475129000,0],[1708475130000,0],[1708475131000,0],[1708475132000,0],[1708475133000,0],[1708475134000,0],[1708475135000,0],[1708475136000,0],[1708475137000,0],[1708475138000,0],[1708475139000,0],[1708475140000,0],[1708475141000,0],[1708475142000,0],[1708475143000,0],[1708475144000,0],[1708475145000,0],[1708475146000,0],[1708475147000,0],[1708475148000,0],[1708475149000,0],[1708475150000,0],[1708475151000,0],[1708475152000,0],[1708475153000,0],[1708475154000,0],[1708475155000,0],[1708475156000,0],[1708475157000,0],[1708475158000,0],[1708475159000,0],[1708475160000,0],[1708475161000,0],[1708475162000,0],[1708475163000,0],[1708475164000,0],[1708475165000,0],[1708475166000,0],[1708475167000,0],[1708475168000,0],[1708475169000,0],[1708475170000,0],[1708475171000,0],[1708475172000,0],[1708475173000,0],[1708475174000,0],[1708475175000,0],[1708475176000,0],[1708475177000,0],[1708475178000,0],[1708475179000,0],[1708475180000,0],[1708475181000,0],[1708475182000,0],[1708475183000,0],[1708475184000,0],[1708475185000,0],[1708475186000,0],[1708475187000,0],[1708475188000,0],[1708475189000,0],[1708475190000,0],[1708475191000,0],[1708475192000,0],[1708475193000,0],[1708475194000,0],[1708475195000,0],[1708475196000,0],[1708475197000,0],[1708475198000,0],[1708475199000,0],[1708475200000,0],[1708475201000,0],[1708475202000,0],[1708475203000,0],[1708475204000,0],[1708475205000,0],[1708475206000,0],[1708475207000,0],[1708475208000,0],[1708475209000,0],[1708475210000,0],[1708475211000,0],[1708475212000,0],[1708475213000,0],[1708475214000,0],[1708475215000,0],[1708475216000,0],[1708475217000,0],[1708475218000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00FF00',
name: 'validação concorrência saldo - 0',
data: [
[1708474971000,0],[1708474972000,0],[1708474973000,1],[1708474974000,0],[1708474975000,0],[1708474976000,0],[1708474977000,0],[1708474978000,0],[1708474979000,0],[1708474980000,0],[1708474981000,0],[1708474982000,0],[1708474983000,0],[1708474984000,0],[1708474985000,0],[1708474986000,0],[1708474987000,0],[1708474988000,0],[1708474989000,0],[1708474990000,0],[1708474991000,0],[1708474992000,0],[1708474993000,0],[1708474994000,0],[1708474995000,0],[1708474996000,0],[1708474997000,0],[1708474998000,0],[1708474999000,0],[1708475000000,0],[1708475001000,0],[1708475002000,0],[1708475003000,0],[1708475004000,0],[1708475005000,0],[1708475006000,0],[1708475007000,0],[1708475008000,0],[1708475009000,0],[1708475010000,0],[1708475011000,0],[1708475012000,0],[1708475013000,0],[1708475014000,0],[1708475015000,0],[1708475016000,0],[1708475017000,0],[1708475018000,0],[1708475019000,0],[1708475020000,0],[1708475021000,0],[1708475022000,0],[1708475023000,0],[1708475024000,0],[1708475025000,0],[1708475026000,0],[1708475027000,0],[1708475028000,0],[1708475029000,0],[1708475030000,0],[1708475031000,0],[1708475032000,0],[1708475033000,0],[1708475034000,0],[1708475035000,0],[1708475036000,0],[1708475037000,0],[1708475038000,0],[1708475039000,0],[1708475040000,0],[1708475041000,0],[1708475042000,0],[1708475043000,0],[1708475044000,0],[1708475045000,0],[1708475046000,0],[1708475047000,0],[1708475048000,0],[1708475049000,0],[1708475050000,0],[1708475051000,0],[1708475052000,0],[1708475053000,0],[1708475054000,0],[1708475055000,0],[1708475056000,0],[1708475057000,0],[1708475058000,0],[1708475059000,0],[1708475060000,0],[1708475061000,0],[1708475062000,0],[1708475063000,0],[1708475064000,0],[1708475065000,0],[1708475066000,0],[1708475067000,0],[1708475068000,0],[1708475069000,0],[1708475070000,0],[1708475071000,0],[1708475072000,0],[1708475073000,0],[1708475074000,0],[1708475075000,0],[1708475076000,0],[1708475077000,0],[1708475078000,0],[1708475079000,0],[1708475080000,0],[1708475081000,0],[1708475082000,0],[1708475083000,0],[1708475084000,0],[1708475085000,0],[1708475086000,0],[1708475087000,0],[1708475088000,0],[1708475089000,0],[1708475090000,0],[1708475091000,0],[1708475092000,0],[1708475093000,0],[1708475094000,0],[1708475095000,0],[1708475096000,0],[1708475097000,0],[1708475098000,0],[1708475099000,0],[1708475100000,0],[1708475101000,0],[1708475102000,0],[1708475103000,0],[1708475104000,0],[1708475105000,0],[1708475106000,0],[1708475107000,0],[1708475108000,0],[1708475109000,0],[1708475110000,0],[1708475111000,0],[1708475112000,0],[1708475113000,0],[1708475114000,0],[1708475115000,0],[1708475116000,0],[1708475117000,0],[1708475118000,0],[1708475119000,0],[1708475120000,0],[1708475121000,0],[1708475122000,0],[1708475123000,0],[1708475124000,0],[1708475125000,0],[1708475126000,0],[1708475127000,0],[1708475128000,0],[1708475129000,0],[1708475130000,0],[1708475131000,0],[1708475132000,0],[1708475133000,0],[1708475134000,0],[1708475135000,0],[1708475136000,0],[1708475137000,0],[1708475138000,0],[1708475139000,0],[1708475140000,0],[1708475141000,0],[1708475142000,0],[1708475143000,0],[1708475144000,0],[1708475145000,0],[1708475146000,0],[1708475147000,0],[1708475148000,0],[1708475149000,0],[1708475150000,0],[1708475151000,0],[1708475152000,0],[1708475153000,0],[1708475154000,0],[1708475155000,0],[1708475156000,0],[1708475157000,0],[1708475158000,0],[1708475159000,0],[1708475160000,0],[1708475161000,0],[1708475162000,0],[1708475163000,0],[1708475164000,0],[1708475165000,0],[1708475166000,0],[1708475167000,0],[1708475168000,0],[1708475169000,0],[1708475170000,0],[1708475171000,0],[1708475172000,0],[1708475173000,0],[1708475174000,0],[1708475175000,0],[1708475176000,0],[1708475177000,0],[1708475178000,0],[1708475179000,0],[1708475180000,0],[1708475181000,0],[1708475182000,0],[1708475183000,0],[1708475184000,0],[1708475185000,0],[1708475186000,0],[1708475187000,0],[1708475188000,0],[1708475189000,0],[1708475190000,0],[1708475191000,0],[1708475192000,0],[1708475193000,0],[1708475194000,0],[1708475195000,0],[1708475196000,0],[1708475197000,0],[1708475198000,0],[1708475199000,0],[1708475200000,0],[1708475201000,0],[1708475202000,0],[1708475203000,0],[1708475204000,0],[1708475205000,0],[1708475206000,0],[1708475207000,0],[1708475208000,0],[1708475209000,0],[1708475210000,0],[1708475211000,0],[1708475212000,0],[1708475213000,0],[1708475214000,0],[1708475215000,0],[1708475216000,0],[1708475217000,0],[1708475218000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#9D00FF',
name: 'validação concorrência transações - c',
data: [
[1708474971000,0],[1708474972000,25],[1708474973000,25],[1708474974000,0],[1708474975000,0],[1708474976000,0],[1708474977000,0],[1708474978000,0],[1708474979000,0],[1708474980000,0],[1708474981000,0],[1708474982000,0],[1708474983000,0],[1708474984000,0],[1708474985000,0],[1708474986000,0],[1708474987000,0],[1708474988000,0],[1708474989000,0],[1708474990000,0],[1708474991000,0],[1708474992000,0],[1708474993000,0],[1708474994000,0],[1708474995000,0],[1708474996000,0],[1708474997000,0],[1708474998000,0],[1708474999000,0],[1708475000000,0],[1708475001000,0],[1708475002000,0],[1708475003000,0],[1708475004000,0],[1708475005000,0],[1708475006000,0],[1708475007000,0],[1708475008000,0],[1708475009000,0],[1708475010000,0],[1708475011000,0],[1708475012000,0],[1708475013000,0],[1708475014000,0],[1708475015000,0],[1708475016000,0],[1708475017000,0],[1708475018000,0],[1708475019000,0],[1708475020000,0],[1708475021000,0],[1708475022000,0],[1708475023000,0],[1708475024000,0],[1708475025000,0],[1708475026000,0],[1708475027000,0],[1708475028000,0],[1708475029000,0],[1708475030000,0],[1708475031000,0],[1708475032000,0],[1708475033000,0],[1708475034000,0],[1708475035000,0],[1708475036000,0],[1708475037000,0],[1708475038000,0],[1708475039000,0],[1708475040000,0],[1708475041000,0],[1708475042000,0],[1708475043000,0],[1708475044000,0],[1708475045000,0],[1708475046000,0],[1708475047000,0],[1708475048000,0],[1708475049000,0],[1708475050000,0],[1708475051000,0],[1708475052000,0],[1708475053000,0],[1708475054000,0],[1708475055000,0],[1708475056000,0],[1708475057000,0],[1708475058000,0],[1708475059000,0],[1708475060000,0],[1708475061000,0],[1708475062000,0],[1708475063000,0],[1708475064000,0],[1708475065000,0],[1708475066000,0],[1708475067000,0],[1708475068000,0],[1708475069000,0],[1708475070000,0],[1708475071000,0],[1708475072000,0],[1708475073000,0],[1708475074000,0],[1708475075000,0],[1708475076000,0],[1708475077000,0],[1708475078000,0],[1708475079000,0],[1708475080000,0],[1708475081000,0],[1708475082000,0],[1708475083000,0],[1708475084000,0],[1708475085000,0],[1708475086000,0],[1708475087000,0],[1708475088000,0],[1708475089000,0],[1708475090000,0],[1708475091000,0],[1708475092000,0],[1708475093000,0],[1708475094000,0],[1708475095000,0],[1708475096000,0],[1708475097000,0],[1708475098000,0],[1708475099000,0],[1708475100000,0],[1708475101000,0],[1708475102000,0],[1708475103000,0],[1708475104000,0],[1708475105000,0],[1708475106000,0],[1708475107000,0],[1708475108000,0],[1708475109000,0],[1708475110000,0],[1708475111000,0],[1708475112000,0],[1708475113000,0],[1708475114000,0],[1708475115000,0],[1708475116000,0],[1708475117000,0],[1708475118000,0],[1708475119000,0],[1708475120000,0],[1708475121000,0],[1708475122000,0],[1708475123000,0],[1708475124000,0],[1708475125000,0],[1708475126000,0],[1708475127000,0],[1708475128000,0],[1708475129000,0],[1708475130000,0],[1708475131000,0],[1708475132000,0],[1708475133000,0],[1708475134000,0],[1708475135000,0],[1708475136000,0],[1708475137000,0],[1708475138000,0],[1708475139000,0],[1708475140000,0],[1708475141000,0],[1708475142000,0],[1708475143000,0],[1708475144000,0],[1708475145000,0],[1708475146000,0],[1708475147000,0],[1708475148000,0],[1708475149000,0],[1708475150000,0],[1708475151000,0],[1708475152000,0],[1708475153000,0],[1708475154000,0],[1708475155000,0],[1708475156000,0],[1708475157000,0],[1708475158000,0],[1708475159000,0],[1708475160000,0],[1708475161000,0],[1708475162000,0],[1708475163000,0],[1708475164000,0],[1708475165000,0],[1708475166000,0],[1708475167000,0],[1708475168000,0],[1708475169000,0],[1708475170000,0],[1708475171000,0],[1708475172000,0],[1708475173000,0],[1708475174000,0],[1708475175000,0],[1708475176000,0],[1708475177000,0],[1708475178000,0],[1708475179000,0],[1708475180000,0],[1708475181000,0],[1708475182000,0],[1708475183000,0],[1708475184000,0],[1708475185000,0],[1708475186000,0],[1708475187000,0],[1708475188000,0],[1708475189000,0],[1708475190000,0],[1708475191000,0],[1708475192000,0],[1708475193000,0],[1708475194000,0],[1708475195000,0],[1708475196000,0],[1708475197000,0],[1708475198000,0],[1708475199000,0],[1708475200000,0],[1708475201000,0],[1708475202000,0],[1708475203000,0],[1708475204000,0],[1708475205000,0],[1708475206000,0],[1708475207000,0],[1708475208000,0],[1708475209000,0],[1708475210000,0],[1708475211000,0],[1708475212000,0],[1708475213000,0],[1708475214000,0],[1708475215000,0],[1708475216000,0],[1708475217000,0],[1708475218000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FF00E1',
name: 'validação concorrência saldo - -25',
data: [
[1708474971000,1],[1708474972000,1],[1708474973000,0],[1708474974000,0],[1708474975000,0],[1708474976000,0],[1708474977000,0],[1708474978000,0],[1708474979000,0],[1708474980000,0],[1708474981000,0],[1708474982000,0],[1708474983000,0],[1708474984000,0],[1708474985000,0],[1708474986000,0],[1708474987000,0],[1708474988000,0],[1708474989000,0],[1708474990000,0],[1708474991000,0],[1708474992000,0],[1708474993000,0],[1708474994000,0],[1708474995000,0],[1708474996000,0],[1708474997000,0],[1708474998000,0],[1708474999000,0],[1708475000000,0],[1708475001000,0],[1708475002000,0],[1708475003000,0],[1708475004000,0],[1708475005000,0],[1708475006000,0],[1708475007000,0],[1708475008000,0],[1708475009000,0],[1708475010000,0],[1708475011000,0],[1708475012000,0],[1708475013000,0],[1708475014000,0],[1708475015000,0],[1708475016000,0],[1708475017000,0],[1708475018000,0],[1708475019000,0],[1708475020000,0],[1708475021000,0],[1708475022000,0],[1708475023000,0],[1708475024000,0],[1708475025000,0],[1708475026000,0],[1708475027000,0],[1708475028000,0],[1708475029000,0],[1708475030000,0],[1708475031000,0],[1708475032000,0],[1708475033000,0],[1708475034000,0],[1708475035000,0],[1708475036000,0],[1708475037000,0],[1708475038000,0],[1708475039000,0],[1708475040000,0],[1708475041000,0],[1708475042000,0],[1708475043000,0],[1708475044000,0],[1708475045000,0],[1708475046000,0],[1708475047000,0],[1708475048000,0],[1708475049000,0],[1708475050000,0],[1708475051000,0],[1708475052000,0],[1708475053000,0],[1708475054000,0],[1708475055000,0],[1708475056000,0],[1708475057000,0],[1708475058000,0],[1708475059000,0],[1708475060000,0],[1708475061000,0],[1708475062000,0],[1708475063000,0],[1708475064000,0],[1708475065000,0],[1708475066000,0],[1708475067000,0],[1708475068000,0],[1708475069000,0],[1708475070000,0],[1708475071000,0],[1708475072000,0],[1708475073000,0],[1708475074000,0],[1708475075000,0],[1708475076000,0],[1708475077000,0],[1708475078000,0],[1708475079000,0],[1708475080000,0],[1708475081000,0],[1708475082000,0],[1708475083000,0],[1708475084000,0],[1708475085000,0],[1708475086000,0],[1708475087000,0],[1708475088000,0],[1708475089000,0],[1708475090000,0],[1708475091000,0],[1708475092000,0],[1708475093000,0],[1708475094000,0],[1708475095000,0],[1708475096000,0],[1708475097000,0],[1708475098000,0],[1708475099000,0],[1708475100000,0],[1708475101000,0],[1708475102000,0],[1708475103000,0],[1708475104000,0],[1708475105000,0],[1708475106000,0],[1708475107000,0],[1708475108000,0],[1708475109000,0],[1708475110000,0],[1708475111000,0],[1708475112000,0],[1708475113000,0],[1708475114000,0],[1708475115000,0],[1708475116000,0],[1708475117000,0],[1708475118000,0],[1708475119000,0],[1708475120000,0],[1708475121000,0],[1708475122000,0],[1708475123000,0],[1708475124000,0],[1708475125000,0],[1708475126000,0],[1708475127000,0],[1708475128000,0],[1708475129000,0],[1708475130000,0],[1708475131000,0],[1708475132000,0],[1708475133000,0],[1708475134000,0],[1708475135000,0],[1708475136000,0],[1708475137000,0],[1708475138000,0],[1708475139000,0],[1708475140000,0],[1708475141000,0],[1708475142000,0],[1708475143000,0],[1708475144000,0],[1708475145000,0],[1708475146000,0],[1708475147000,0],[1708475148000,0],[1708475149000,0],[1708475150000,0],[1708475151000,0],[1708475152000,0],[1708475153000,0],[1708475154000,0],[1708475155000,0],[1708475156000,0],[1708475157000,0],[1708475158000,0],[1708475159000,0],[1708475160000,0],[1708475161000,0],[1708475162000,0],[1708475163000,0],[1708475164000,0],[1708475165000,0],[1708475166000,0],[1708475167000,0],[1708475168000,0],[1708475169000,0],[1708475170000,0],[1708475171000,0],[1708475172000,0],[1708475173000,0],[1708475174000,0],[1708475175000,0],[1708475176000,0],[1708475177000,0],[1708475178000,0],[1708475179000,0],[1708475180000,0],[1708475181000,0],[1708475182000,0],[1708475183000,0],[1708475184000,0],[1708475185000,0],[1708475186000,0],[1708475187000,0],[1708475188000,0],[1708475189000,0],[1708475190000,0],[1708475191000,0],[1708475192000,0],[1708475193000,0],[1708475194000,0],[1708475195000,0],[1708475196000,0],[1708475197000,0],[1708475198000,0],[1708475199000,0],[1708475200000,0],[1708475201000,0],[1708475202000,0],[1708475203000,0],[1708475204000,0],[1708475205000,0],[1708475206000,0],[1708475207000,0],[1708475208000,0],[1708475209000,0],[1708475210000,0],[1708475211000,0],[1708475212000,0],[1708475213000,0],[1708475214000,0],[1708475215000,0],[1708475216000,0],[1708475217000,0],[1708475218000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#AECAEB',
name: 'validação concorrência transações - d',
data: [
[1708474971000,25],[1708474972000,0],[1708474973000,0],[1708474974000,0],[1708474975000,0],[1708474976000,0],[1708474977000,0],[1708474978000,0],[1708474979000,0],[1708474980000,0],[1708474981000,0],[1708474982000,0],[1708474983000,0],[1708474984000,0],[1708474985000,0],[1708474986000,0],[1708474987000,0],[1708474988000,0],[1708474989000,0],[1708474990000,0],[1708474991000,0],[1708474992000,0],[1708474993000,0],[1708474994000,0],[1708474995000,0],[1708474996000,0],[1708474997000,0],[1708474998000,0],[1708474999000,0],[1708475000000,0],[1708475001000,0],[1708475002000,0],[1708475003000,0],[1708475004000,0],[1708475005000,0],[1708475006000,0],[1708475007000,0],[1708475008000,0],[1708475009000,0],[1708475010000,0],[1708475011000,0],[1708475012000,0],[1708475013000,0],[1708475014000,0],[1708475015000,0],[1708475016000,0],[1708475017000,0],[1708475018000,0],[1708475019000,0],[1708475020000,0],[1708475021000,0],[1708475022000,0],[1708475023000,0],[1708475024000,0],[1708475025000,0],[1708475026000,0],[1708475027000,0],[1708475028000,0],[1708475029000,0],[1708475030000,0],[1708475031000,0],[1708475032000,0],[1708475033000,0],[1708475034000,0],[1708475035000,0],[1708475036000,0],[1708475037000,0],[1708475038000,0],[1708475039000,0],[1708475040000,0],[1708475041000,0],[1708475042000,0],[1708475043000,0],[1708475044000,0],[1708475045000,0],[1708475046000,0],[1708475047000,0],[1708475048000,0],[1708475049000,0],[1708475050000,0],[1708475051000,0],[1708475052000,0],[1708475053000,0],[1708475054000,0],[1708475055000,0],[1708475056000,0],[1708475057000,0],[1708475058000,0],[1708475059000,0],[1708475060000,0],[1708475061000,0],[1708475062000,0],[1708475063000,0],[1708475064000,0],[1708475065000,0],[1708475066000,0],[1708475067000,0],[1708475068000,0],[1708475069000,0],[1708475070000,0],[1708475071000,0],[1708475072000,0],[1708475073000,0],[1708475074000,0],[1708475075000,0],[1708475076000,0],[1708475077000,0],[1708475078000,0],[1708475079000,0],[1708475080000,0],[1708475081000,0],[1708475082000,0],[1708475083000,0],[1708475084000,0],[1708475085000,0],[1708475086000,0],[1708475087000,0],[1708475088000,0],[1708475089000,0],[1708475090000,0],[1708475091000,0],[1708475092000,0],[1708475093000,0],[1708475094000,0],[1708475095000,0],[1708475096000,0],[1708475097000,0],[1708475098000,0],[1708475099000,0],[1708475100000,0],[1708475101000,0],[1708475102000,0],[1708475103000,0],[1708475104000,0],[1708475105000,0],[1708475106000,0],[1708475107000,0],[1708475108000,0],[1708475109000,0],[1708475110000,0],[1708475111000,0],[1708475112000,0],[1708475113000,0],[1708475114000,0],[1708475115000,0],[1708475116000,0],[1708475117000,0],[1708475118000,0],[1708475119000,0],[1708475120000,0],[1708475121000,0],[1708475122000,0],[1708475123000,0],[1708475124000,0],[1708475125000,0],[1708475126000,0],[1708475127000,0],[1708475128000,0],[1708475129000,0],[1708475130000,0],[1708475131000,0],[1708475132000,0],[1708475133000,0],[1708475134000,0],[1708475135000,0],[1708475136000,0],[1708475137000,0],[1708475138000,0],[1708475139000,0],[1708475140000,0],[1708475141000,0],[1708475142000,0],[1708475143000,0],[1708475144000,0],[1708475145000,0],[1708475146000,0],[1708475147000,0],[1708475148000,0],[1708475149000,0],[1708475150000,0],[1708475151000,0],[1708475152000,0],[1708475153000,0],[1708475154000,0],[1708475155000,0],[1708475156000,0],[1708475157000,0],[1708475158000,0],[1708475159000,0],[1708475160000,0],[1708475161000,0],[1708475162000,0],[1708475163000,0],[1708475164000,0],[1708475165000,0],[1708475166000,0],[1708475167000,0],[1708475168000,0],[1708475169000,0],[1708475170000,0],[1708475171000,0],[1708475172000,0],[1708475173000,0],[1708475174000,0],[1708475175000,0],[1708475176000,0],[1708475177000,0],[1708475178000,0],[1708475179000,0],[1708475180000,0],[1708475181000,0],[1708475182000,0],[1708475183000,0],[1708475184000,0],[1708475185000,0],[1708475186000,0],[1708475187000,0],[1708475188000,0],[1708475189000,0],[1708475190000,0],[1708475191000,0],[1708475192000,0],[1708475193000,0],[1708475194000,0],[1708475195000,0],[1708475196000,0],[1708475197000,0],[1708475198000,0],[1708475199000,0],[1708475200000,0],[1708475201000,0],[1708475202000,0],[1708475203000,0],[1708475204000,0],[1708475205000,0],[1708475206000,0],[1708475207000,0],[1708475208000,0],[1708475209000,0],[1708475210000,0],[1708475211000,0],[1708475212000,0],[1708475213000,0],[1708475214000,0],[1708475215000,0],[1708475216000,0],[1708475217000,0],[1708475218000,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: ['59', '177', '294', '412', '530', '648', '766', '883', '1001', '1119', '1237', '1354', '1472', '1590', '1708', '1826', '1943', '2061', '2179', '2297', '2414', '2532', '2650', '2768', '2886', '3003', '3121', '3239', '3357', '3475', '3592', '3710', '3828', '3946', '4063', '4181', '4299', '4417', '4535', '4652', '4770', '4888', '5006', '5123', '5241', '5359', '5477', '5595', '5712', '5830', '5948', '6066', '6183', '6301', '6419', '6537', '6655', '6772', '6890', '7008', '7126', '7243', '7361', '7479', '7597', '7715', '7832', '7950', '8068', '8186', '8303', '8421', '8539', '8657', '8775', '8892', '9010', '9128', '9246', '9364', '9481', '9599', '9717', '9835', '9952', '10070', '10188', '10306', '10424', '10541', '10659', '10777', '10895', '11012', '11130', '11248', '11366', '11484', '11601', '11719'],
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: [
56.19,0.13,0.08,0.07,0.05,0.08,0.07,0.06,0.06,0.07,0.06,0.15,0.4,0.83,1.38,1.95,2.19,1.95,1.55,1.48,1.46,1.33,1.23,0.89,0.82,0.75,0.69,0.62,0.49,0.45,0.35,0.35,0.31,0.3,0.22,0.2,0.15,0.16,0.12,0.13,0.1,0.06,0.09,0.09,0.08,0.05,0.04,0.04,0.04,0.04,0.03,0.03,0.03,0.01,0.01,0.02,0.01,0.01,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
],
tooltip: { yDecimals: 0, ySuffix: 'ms' }
},
{
type: 'column',
color: '#f15b4f',
name: 'KO',
data: [
19.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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([[1708474971,[38,338,351,358,359,359,359,361,363,364]],[1708474972,[6,6,6,6,6,6,6,6,6,6]],[1708474973,[28,35,50,63,66,69,72,75,79,80]],[1708474974,[4,4,4,4,4,4,4,4,4,4]],[1708474975,[2,5,9,21,28,31,32,36,43,45]],[1708474976,[6,6,6,6,6,6,6,6,6,6]],[1708474977,[5,5,6,7,8,8,8,8,8,9]],[1708474978,[5,6,6,8,8,8,9,10,10,11]],[1708474979,[5,5,5,6,7,7,7,9,11,12]],[1708474980,[4,5,6,7,7,7,7,7,7,7]],[1708474981,[3,5,5,6,6,7,7,8,8,8]],[1708474982,[4,5,5,6,6,6,6,6,8,9]],[1708474983,[3,5,5,6,6,6,6,7,8,9]],[1708474984,[4,4,5,6,6,7,7,8,12,14]],[1708474985,[4,5,6,6,6,6,7,7,9,10]],[1708474986,[4,5,5,6,6,6,6,7,7,8]],[1708474987,[4,5,5,5,6,6,6,7,8,9]],[1708474988,[3,5,5,5,5,6,6,7,7,8]],[1708474989,[2,5,5,6,6,6,6,7,8,9]],[1708474990,[3,5,5,6,6,6,7,11,13,14]],[1708474991,[3,4,5,5,6,6,6,8,11,12]],[1708474992,[3,4,5,5,6,6,6,7,8,9]],[1708474993,[3,4,4,5,5,5,5,6,6,7]],[1708474994,[2,4,4,5,5,5,7,10,15,16]],[1708474995,[2,4,4,5,5,5,5,6,6,7]],[1708474996,[2,3,4,4,4,5,5,5,7,7]],[1708474997,[2,4,4,5,5,5,6,7,7,7]],[1708474998,[2,3,4,5,5,5,5,6,8,10]],[1708474999,[3,4,4,5,5,6,6,7,8,10]],[1708475000,[2,4,4,5,6,6,6,7,8,8]],[1708475001,[2,4,4,5,6,6,7,9,12,13]],[1708475002,[2,4,4,5,6,6,7,9,22,23]],[1708475003,[2,3,4,5,5,5,6,6,7,7]],[1708475004,[1,3,4,5,5,5,6,6,13,16]],[1708475005,[2,3,4,4,4,5,5,6,9,9]],[1708475006,[2,3,4,4,4,4,5,5,7,7]],[1708475007,[1,3,4,4,4,4,5,6,7,15]],[1708475008,[2,4,4,5,5,6,6,8,13,14]],[1708475009,[2,4,4,5,5,5,5,6,8,11]],[1708475010,[2,3,4,5,5,5,6,6,8,9]],[1708475011,[2,4,5,6,6,6,7,9,12,13]],[1708475012,[2,4,4,5,5,5,6,6,6,7]],[1708475013,[2,3,4,5,5,5,5,6,8,10]],[1708475014,[2,3,4,4,4,5,5,6,6,8]],[1708475015,[2,3,4,4,5,5,5,6,7,8]],[1708475016,[2,4,4,5,6,6,7,29,63,67]],[1708475017,[2,4,4,4,4,5,5,5,6,7]],[1708475018,[2,3,4,4,4,4,5,5,5,6]],[1708475019,[1,3,4,4,4,4,5,6,7,12]],[1708475020,[1,3,4,5,5,5,6,7,11,17]],[1708475021,[2,3,4,4,5,5,6,6,7,11]],[1708475022,[1,3,4,4,4,4,5,5,6,7]],[1708475023,[1,4,4,5,5,6,7,21,48,53]],[1708475024,[1,3,4,5,5,5,6,8,11,13]],[1708475025,[1,3,4,4,4,4,5,5,7,7]],[1708475026,[1,3,3,4,4,4,4,5,7,8]],[1708475027,[1,3,3,4,4,4,4,5,6,9]],[1708475028,[1,3,3,4,4,4,4,5,5,6]],[1708475029,[1,3,3,4,4,4,5,5,9,10]],[1708475030,[1,3,3,4,4,4,4,5,7,11]],[1708475031,[1,3,4,4,4,5,5,5,7,8]],[1708475032,[1,3,4,5,5,5,6,7,11,18]],[1708475033,[1,4,4,5,5,6,6,6,8,9]],[1708475034,[1,3,4,5,5,5,6,6,9,11]],[1708475035,[1,3,4,4,4,5,5,5,5,5]],[1708475036,[1,3,3,4,4,4,4,5,11,16]],[1708475037,[1,3,3,4,4,4,4,5,7,7]],[1708475038,[1,3,3,4,4,4,4,5,5,6]],[1708475039,[1,3,4,4,4,4,5,6,8,9]],[1708475040,[1,2,3,4,4,4,5,6,8,9]],[1708475041,[1,3,3,4,4,4,4,5,8,14]],[1708475042,[1,2,3,4,4,4,4,6,8,10]],[1708475043,[1,3,3,4,4,4,6,7,9,10]],[1708475044,[1,3,3,4,5,5,5,6,7,11]],[1708475045,[1,3,3,5,5,5,6,6,8,9]],[1708475046,[1,3,3,4,5,5,5,6,7,11]],[1708475047,[1,3,4,4,5,5,5,6,10,15]],[1708475048,[2,3,4,4,5,5,5,6,8,10]],[1708475049,[2,3,4,4,4,5,5,6,7,17]],[1708475050,[2,3,4,4,4,5,5,6,10,11]],[1708475051,[1,3,3,4,4,4,5,5,8,10]],[1708475052,[1,3,3,4,4,4,5,6,8,10]],[1708475053,[1,3,3,4,4,4,5,6,8,15]],[1708475054,[2,3,4,5,5,5,6,7,11,16]],[1708475055,[2,3,4,5,5,5,6,7,12,15]],[1708475056,[1,3,3,4,4,4,4,5,6,8]],[1708475057,[1,2,3,4,4,5,5,6,13,18]],[1708475058,[1,3,3,4,4,4,5,5,6,7]],[1708475059,[1,3,3,4,4,4,4,6,7,7]],[1708475060,[1,3,3,4,4,4,4,5,6,8]],[1708475061,[1,3,3,4,4,4,5,5,7,9]],[1708475062,[1,3,4,4,4,4,5,6,8,12]],[1708475063,[2,3,4,4,5,5,5,6,10,15]],[1708475064,[2,3,4,5,5,5,6,7,11,16]],[1708475065,[2,3,4,5,5,5,6,6,8,11]],[1708475066,[2,3,4,4,5,5,5,6,8,10]],[1708475067,[1,3,3,4,4,5,5,6,7,8]],[1708475068,[1,3,3,4,5,5,5,6,7,11]],[1708475069,[1,3,3,4,5,5,5,7,9,14]],[1708475070,[1,2,3,4,4,4,4,5,8,11]],[1708475071,[1,3,3,4,4,4,5,7,14,16]],[1708475072,[1,3,4,4,4,5,5,6,12,17]],[1708475073,[2,3,4,4,4,5,5,6,10,12]],[1708475074,[1,3,3,4,4,4,4,5,7,10]],[1708475075,[1,3,3,4,4,4,4,5,6,8]],[1708475076,[1,3,3,4,4,5,5,6,11,12]],[1708475077,[1,3,3,4,4,5,5,6,10,16]],[1708475078,[1,3,3,4,4,5,5,6,7,8]],[1708475079,[1,3,4,5,5,5,5,6,8,8]],[1708475080,[1,3,4,5,5,5,6,6,9,12]],[1708475081,[2,3,4,4,5,5,6,7,14,19]],[1708475082,[2,3,4,4,4,5,5,6,9,12]],[1708475083,[1,3,4,4,4,4,5,5,9,9]],[1708475084,[1,3,4,4,4,5,5,6,7,8]],[1708475085,[1,3,3,4,4,4,5,6,8,10]],[1708475086,[1,3,4,5,5,6,6,9,20,33]],[1708475087,[2,3,4,5,5,5,6,6,8,10]],[1708475088,[1,3,4,5,5,5,5,6,7,10]],[1708475089,[1,4,5,6,6,6,7,7,16,23]],[1708475090,[1,3,4,5,5,6,6,6,8,12]],[1708475091,[2,4,5,6,6,7,7,7,10,13]],[1708475092,[1,3,4,5,5,5,6,7,8,16]],[1708475093,[1,3,4,5,5,5,6,6,8,13]],[1708475094,[1,3,4,5,5,5,5,6,6,7]],[1708475095,[2,4,5,6,6,7,7,8,10,15]],[1708475096,[1,3,4,5,5,6,7,8,9,11]],[1708475097,[1,4,5,6,6,6,7,7,10,11]],[1708475098,[2,4,5,6,6,6,7,8,12,18]],[1708475099,[2,4,5,6,6,7,8,9,15,22]],[1708475100,[1,3,4,6,6,6,7,9,13,21]],[1708475101,[1,3,4,5,6,6,7,7,9,11]],[1708475102,[2,4,5,6,6,6,7,8,12,15]],[1708475103,[2,3,4,5,6,6,7,8,13,18]],[1708475104,[1,3,4,6,6,6,7,7,8,10]],[1708475105,[1,3,3,4,4,5,5,6,11,14]],[1708475106,[1,3,4,5,5,6,6,7,15,21]],[1708475107,[1,3,4,5,5,5,6,7,9,16]],[1708475108,[1,3,5,6,6,6,7,7,8,12]],[1708475109,[1,3,4,5,6,6,7,8,11,14]],[1708475110,[2,4,5,6,7,7,8,9,14,20]],[1708475111,[1,3,4,5,5,5,6,8,11,17]],[1708475112,[2,4,5,6,6,6,7,8,11,16]],[1708475113,[1,3,3,4,4,5,5,6,9,11]],[1708475114,[1,3,4,5,5,6,6,7,8,9]],[1708475115,[1,3,4,5,5,5,6,7,27,36]],[1708475116,[1,4,5,6,7,7,8,9,12,17]],[1708475117,[1,3,3,5,5,5,6,7,14,21]],[1708475118,[1,3,4,6,6,7,7,8,12,14]],[1708475119,[1,3,4,5,5,6,6,8,12,15]],[1708475120,[1,4,4,5,6,6,7,7,10,12]],[1708475121,[1,3,3,4,4,5,5,6,7,8]],[1708475122,[1,4,5,6,6,7,7,8,9,14]],[1708475123,[2,3,4,5,6,6,7,8,16,22]],[1708475124,[2,4,5,6,6,7,7,8,9,10]],[1708475125,[1,3,4,5,5,6,6,7,48,61]],[1708475126,[1,4,4,6,6,7,8,9,33,43]],[1708475127,[1,3,4,5,5,6,6,7,11,16]],[1708475128,[1,3,5,6,7,7,8,12,20,28]],[1708475129,[1,3,4,5,6,6,7,10,14,27]],[1708475130,[1,3,4,5,5,6,6,7,9,20]],[1708475131,[1,3,4,5,6,6,7,8,11,12]],[1708475132,[2,4,5,6,6,7,7,9,27,44]],[1708475133,[1,3,3,5,5,6,6,8,10,13]],[1708475134,[1,3,3,5,5,6,6,7,11,15]],[1708475135,[1,3,4,5,6,6,6,7,9,12]],[1708475136,[1,3,4,5,5,6,6,7,9,11]],[1708475137,[3,80,215,645,801,1050,1335,2285,3526,9226]],[1708475138,[30,720,1075,1746,1967,2262,2616,3244,4317,8202]],[1708475139,[731,1457,1846,2563,2721,2927,3291,3932,5419,6317]],[1708475140,[1633,1971,2364,3086,3262,3620,3986,4456,5187,6692]],[1708475141,[1593,1934,2275,2800,3052,3414,3812,4347,5803,6079]],[1708475142,[1573,1925,2388,3055,3185,3385,3679,4292,6121,8202]],[1708475143,[1481,1907,2405,3014,3308,3468,3806,4378,6203,7987]],[1708475144,[1506,2036,2483,3006,3202,3539,3850,5058,6451,8148]],[1708475145,[1578,1964,2213,2728,2899,3297,3785,4384,6028,6974]],[1708475146,[1521,1963,2387,2989,3174,3445,4170,4870,6200,8280]],[1708475147,[1449,2022,2314,3001,3189,3423,3672,4071,4958,6000]],[1708475148,[1659,2015,2408,3163,3301,3650,3895,4577,5688,7640]],[1708475149,[1593,1913,2270,2992,3276,3457,3693,4386,5751,6183]],[1708475150,[1547,1955,2291,2981,3087,3381,3849,4409,5714,6201]],[1708475151,[1505,1901,2301,2885,3161,3605,3909,4220,6347,9013]],[1708475152,[1568,2006,2388,2966,3278,3545,3791,4792,5825,10258]],[1708475153,[1618,1900,2404,2978,3118,3429,3879,4668,5855,6059]],[1708475154,[1478,1910,2367,2906,3259,3611,4093,4644,6258,8473]],[1708475155,[1581,1912,2252,2891,3088,3394,3899,4272,5551,6840]],[1708475156,[1553,1996,2392,3099,3392,3499,4031,4771,5542,6172]],[1708475157,[1533,2005,2414,2889,3006,3277,3581,4074,5159,5839]],[1708475158,[1415,1988,2386,3102,3355,3702,4173,4884,5318,8166]],[1708475159,[1426,1948,2360,2813,3122,3304,3632,4167,4875,5795]],[1708475160,[1444,1978,2421,3265,3479,3788,3988,4661,5539,7212]],[1708475161,[1517,2095,2494,3132,3333,3581,3885,4573,5386,5434]],[1708475162,[1573,2081,2476,3178,3395,3754,4113,4825,7309,9276]],[1708475163,[1492,2010,2458,3085,3297,3474,3803,4693,6262,10286]],[1708475164,[1489,2025,2441,2997,3160,3318,3891,4508,5675,8085]],[1708475165,[1497,2006,2400,3184,3383,3710,3898,4375,6602,10475]],[1708475166,[1400,1976,2333,3105,3214,3462,4068,4531,5976,7693]],[1708475167,[1466,2068,2355,2980,3183,3332,3676,4037,5266,7141]],[1708475168,[1503,2007,2358,2904,3087,3259,3574,4294,5441,6350]],[1708475169,[1599,1979,2507,3101,3337,3595,4149,4867,6621,6966]],[1708475170,[1484,1940,2286,2968,3024,3233,3793,4563,5757,6093]],[1708475171,[1495,2060,2404,3090,3293,3685,4071,4582,5984,7494]],[1708475172,[1564,1998,2401,2966,3112,3379,3866,4625,6246,6852]],[1708475173,[1605,1994,2314,2862,2976,3241,3426,4275,5159,6478]],[1708475174,[1559,2087,2559,3086,3218,3576,3960,5165,6591,7907]],[1708475175,[1600,2094,2568,3301,3549,3817,4059,4747,5640,11778]],[1708475176,[1576,2115,2481,3169,3328,3531,3774,4380,5401,5610]],[1708475177,[1680,2106,2536,3144,3306,3553,4079,4633,6828,8875]],[1708475178,[1579,2098,2494,3106,3363,3534,3863,4395,5283,5744]],[1708475179,[1566,1991,2297,2892,3282,3554,3884,4667,5585,6663]],[1708475180,[1561,1953,2377,2930,3149,3362,3992,4507,6283,9184]],[1708475181,[1476,1886,2293,2881,3106,3499,3723,4744,6352,6737]],[1708475182,[1516,1896,2315,2982,3187,3489,3846,4383,6093,7786]],[1708475183,[1423,1900,2265,2742,3193,3454,3705,4207,5080,5491]],[1708475184,[1560,1960,2292,2994,3156,3424,3811,4422,5770,7573]],[1708475185,[1551,1978,2302,2919,3211,3684,3980,4566,5639,7037]],[1708475186,[1548,1943,2318,3003,3111,3380,3663,4389,5742,6586]],[1708475187,[1576,1944,2351,3056,3186,3489,3883,4519,6378,8302]],[1708475188,[1470,1877,2294,2895,3033,3407,3619,4446,5207,7302]],[1708475189,[1443,2016,2387,3049,3216,3544,3803,4234,5680,8681]],[1708475190,[1392,1997,2414,3001,3150,3371,3824,4390,5838,7497]],[1708475191,[1406,1981,2393,2992,3220,3503,3951,4665,6156,6480]],[1708475192,[1376,1952,2308,3048,3154,3481,3847,4487,5574,7903]],[1708475193,[1380,1975,2393,2989,3169,3565,3949,4673,5322,5991]],[1708475194,[1394,2017,2479,3112,3321,3689,4179,4889,7041,8436]],[1708475195,[1379,1979,2292,3041,3205,3689,3894,4812,5757,6253]],[1708475196,[1397,1971,2332,3015,3190,3657,3998,4300,5831,7692]],[1708475197,[1369,1968,2292,3039,3381,3576,3964,4280,5935,9558]],[1708475198,[1384,2007,2392,3068,3285,3509,3718,4222,5106,5795]],[1708475199,[1328,1913,2318,3180,3272,3496,4257,4824,5567,5779]],[1708475200,[1397,1983,2401,2973,3232,3543,4017,4589,6080,10788]],[1708475201,[1458,1964,2368,2887,3071,3319,3491,4266,5084,5818]],[1708475202,[1436,1914,2391,3069,3181,3516,3870,4785,7105,7440]],[1708475203,[1375,1894,2214,2864,3117,3303,3654,4348,5877,6987]],[1708475204,[1504,1974,2384,2995,3198,3393,3701,4262,5379,6565]],[1708475205,[1473,1981,2252,2974,3074,3409,3738,4593,6505,7204]],[1708475206,[1569,1895,2281,2914,3121,3466,3967,4696,6332,7676]],[1708475207,[1393,1897,2210,2858,2998,3242,3697,4415,6217,6376]],[1708475208,[1471,1850,2220,2995,3227,3497,3902,4901,6479,7070]],[1708475209,[1429,1892,2329,3015,3289,3493,3761,4583,5447,6181]],[1708475210,[1556,2074,2475,3051,3283,3620,4066,4685,6338,7682]],[1708475211,[1403,1996,2384,2891,3099,3383,3685,4342,6155,6770]],[1708475212,[1339,1960,2344,3038,3274,3491,3782,4962,6145,6372]],[1708475213,[1301,1956,2290,2846,3096,3284,3480,3977,4930,5364]],[1708475214,[1269,1990,2453,3081,3177,3303,3539,3858,4257,4472]],[1708475215,[1372,1899,2284,2683,2826,2889,3015,3262,3530,3588]],[1708475216,[1341,1776,2134,2351,2378,2466,2493,2623,2786,2807]],[1708475217,null],[1708475218,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([[1708474971,[25,25,0]],[1708474972,[1,1,0]],[1708474973,[25,25,0]],[1708474974,[1,1,0]],[1708474975,[71,71,0]],[1708474976,[3,3,0]],[1708474977,[6,6,0]],[1708474978,[9,9,0]],[1708474979,[11,11,0]],[1708474980,[13,13,0]],[1708474981,[18,18,0]],[1708474982,[19,19,0]],[1708474983,[24,24,0]],[1708474984,[26,26,0]],[1708474985,[27,27,0]],[1708474986,[32,32,0]],[1708474987,[34,34,0]],[1708474988,[37,37,0]],[1708474989,[39,39,0]],[1708474990,[43,43,0]],[1708474991,[44,44,0]],[1708474992,[48,48,0]],[1708474993,[50,50,0]],[1708474994,[54,54,0]],[1708474995,[56,56,0]],[1708474996,[61,61,0]],[1708474997,[61,61,0]],[1708474998,[65,65,0]],[1708474999,[67,67,0]],[1708475000,[70,70,0]],[1708475001,[74,74,0]],[1708475002,[76,76,0]],[1708475003,[80,80,0]],[1708475004,[81,81,0]],[1708475005,[84,84,0]],[1708475006,[87,87,0]],[1708475007,[91,91,0]],[1708475008,[92,92,0]],[1708475009,[96,96,0]],[1708475010,[98,98,0]],[1708475011,[101,101,0]],[1708475012,[105,105,0]],[1708475013,[107,107,0]],[1708475014,[110,110,0]],[1708475015,[114,114,0]],[1708475016,[115,115,0]],[1708475017,[118,118,0]],[1708475018,[121,121,0]],[1708475019,[124,124,0]],[1708475020,[126,126,0]],[1708475021,[129,129,0]],[1708475022,[133,133,0]],[1708475023,[134,134,0]],[1708475024,[138,138,0]],[1708475025,[141,141,0]],[1708475026,[143,143,0]],[1708475027,[146,146,0]],[1708475028,[149,149,0]],[1708475029,[152,152,0]],[1708475030,[154,154,0]],[1708475031,[158,158,0]],[1708475032,[160,160,0]],[1708475033,[164,164,0]],[1708475034,[165,165,0]],[1708475035,[170,170,0]],[1708475036,[171,171,0]],[1708475037,[175,175,0]],[1708475038,[176,176,0]],[1708475039,[181,181,0]],[1708475040,[183,183,0]],[1708475041,[185,185,0]],[1708475042,[189,189,0]],[1708475043,[191,191,0]],[1708475044,[194,194,0]],[1708475045,[196,196,0]],[1708475046,[200,200,0]],[1708475047,[202,202,0]],[1708475048,[206,206,0]],[1708475049,[207,207,0]],[1708475050,[211,211,0]],[1708475051,[213,213,0]],[1708475052,[217,217,0]],[1708475053,[220,220,0]],[1708475054,[223,223,0]],[1708475055,[224,224,0]],[1708475056,[228,228,0]],[1708475057,[230,230,0]],[1708475058,[233,233,0]],[1708475059,[236,236,0]],[1708475060,[239,239,0]],[1708475061,[242,242,0]],[1708475062,[244,244,0]],[1708475063,[248,248,0]],[1708475064,[251,251,0]],[1708475065,[252,252,0]],[1708475066,[256,256,0]],[1708475067,[259,259,0]],[1708475068,[262,262,0]],[1708475069,[264,264,0]],[1708475070,[267,267,0]],[1708475071,[269,269,0]],[1708475072,[272,272,0]],[1708475073,[276,276,0]],[1708475074,[278,278,0]],[1708475075,[281,281,0]],[1708475076,[285,285,0]],[1708475077,[286,286,0]],[1708475078,[290,290,0]],[1708475079,[291,291,0]],[1708475080,[296,296,0]],[1708475081,[298,298,0]],[1708475082,[300,300,0]],[1708475083,[304,304,0]],[1708475084,[306,306,0]],[1708475085,[309,309,0]],[1708475086,[312,312,0]],[1708475087,[315,315,0]],[1708475088,[317,317,0]],[1708475089,[321,321,0]],[1708475090,[322,322,0]],[1708475091,[327,327,0]],[1708475092,[329,329,0]],[1708475093,[332,332,0]],[1708475094,[335,335,0]],[1708475095,[338,338,0]],[1708475096,[339,339,0]],[1708475097,[341,341,0]],[1708475098,[340,340,0]],[1708475099,[340,340,0]],[1708475100,[339,339,0]],[1708475101,[341,341,0]],[1708475102,[340,340,0]],[1708475103,[340,340,0]],[1708475104,[339,339,0]],[1708475105,[340,340,0]],[1708475106,[341,341,0]],[1708475107,[340,340,0]],[1708475108,[340,340,0]],[1708475109,[340,340,0]],[1708475110,[340,340,0]],[1708475111,[340,340,0]],[1708475112,[340,340,0]],[1708475113,[339,339,0]],[1708475114,[341,341,0]],[1708475115,[340,340,0]],[1708475116,[340,340,0]],[1708475117,[339,339,0]],[1708475118,[341,341,0]],[1708475119,[340,340,0]],[1708475120,[339,339,0]],[1708475121,[341,341,0]],[1708475122,[340,340,0]],[1708475123,[340,340,0]],[1708475124,[340,340,0]],[1708475125,[340,340,0]],[1708475126,[340,340,0]],[1708475127,[340,340,0]],[1708475128,[340,340,0]],[1708475129,[339,339,0]],[1708475130,[341,341,0]],[1708475131,[340,340,0]],[1708475132,[340,340,0]],[1708475133,[339,339,0]],[1708475134,[341,341,0]],[1708475135,[340,340,0]],[1708475136,[340,340,0]],[1708475137,[339,339,0]],[1708475138,[340,340,0]],[1708475139,[341,341,0]],[1708475140,[340,204,136]],[1708475141,[340,188,152]],[1708475142,[340,200,140]],[1708475143,[340,180,160]],[1708475144,[339,195,144]],[1708475145,[341,176,165]],[1708475146,[340,190,150]],[1708475147,[340,181,159]],[1708475148,[340,189,151]],[1708475149,[340,183,157]],[1708475150,[340,193,147]],[1708475151,[339,187,152]],[1708475152,[340,188,152]],[1708475153,[340,171,169]],[1708475154,[341,197,144]],[1708475155,[340,180,160]],[1708475156,[340,182,158]],[1708475157,[340,196,144]],[1708475158,[340,188,152]],[1708475159,[340,185,155]],[1708475160,[340,192,148]],[1708475161,[340,186,154]],[1708475162,[339,169,170]],[1708475163,[340,177,163]],[1708475164,[341,196,145]],[1708475165,[339,181,158]],[1708475166,[341,184,157]],[1708475167,[340,177,163]],[1708475168,[339,187,152]],[1708475169,[341,186,155]],[1708475170,[339,189,150]],[1708475171,[340,187,153]],[1708475172,[341,185,156]],[1708475173,[340,176,164]],[1708475174,[340,195,145]],[1708475175,[340,185,155]],[1708475176,[340,165,175]],[1708475177,[340,201,139]],[1708475178,[340,162,178]],[1708475179,[340,181,159]],[1708475180,[340,183,157]],[1708475181,[340,188,152]],[1708475182,[340,210,130]],[1708475183,[340,177,163]],[1708475184,[340,198,142]],[1708475185,[340,181,159]],[1708475186,[339,193,146]],[1708475187,[340,186,154]],[1708475188,[341,188,153]],[1708475189,[340,190,150]],[1708475190,[340,195,145]],[1708475191,[340,185,155]],[1708475192,[340,188,152]],[1708475193,[340,192,148]],[1708475194,[340,191,149]],[1708475195,[340,177,163]],[1708475196,[340,188,152]],[1708475197,[340,190,150]],[1708475198,[340,192,148]],[1708475199,[340,170,170]],[1708475200,[340,204,136]],[1708475201,[340,187,153]],[1708475202,[339,178,161]],[1708475203,[340,195,145]],[1708475204,[341,191,150]],[1708475205,[339,176,163]],[1708475206,[341,199,142]],[1708475207,[340,179,161]],[1708475208,[339,189,150]],[1708475209,[341,206,135]],[1708475210,[339,182,157]],[1708475211,[341,181,160]],[1708475212,[340,185,155]],[1708475213,[340,180,160]],[1708475214,[340,203,137]],[1708475215,[339,184,155]],[1708475216,[164,100,64]],[1708475217,[0,0,0]],[1708475218,[0,0,0]]]);
var requestsChart = new Highcharts.StockChart({
chart: {
renderTo: 'requests',
zoomType: 'x',
marginBottom: 60
},
credits: { enabled: false },
legend: {
enabled: true,
floating: true,
y: -65,
borderWidth: 0,
itemStyle: { fontWeight: "normal" },
symbolRadius: 0
},
title: { text: 'A title to let highcharts reserve the place for the title set later' },
navigator: {
maskInside: false
},
rangeSelector: {
buttonSpacing: 0,
buttonTheme: {
fill: '#CFC9C6',
padding: 1,
stroke: '#000000',
'stroke-width': 0.25,
style: {
color: '#000000',
fontWeight: 'bold',
},
states: {
stroke: '#000000',
'stroke-width': 0.25,
hover: {
fill: '#92918C',
style: { color: 'black' }
},
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'
}, {