-
Notifications
You must be signed in to change notification settings - Fork 923
/
Copy pathindex.html
1173 lines (1104 loc) · 94.6 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="shortcut icon" type="image/x-icon" href="style/favicon.ico"/>
<link href="style/style.css" rel="stylesheet" type="text/css" />
<link href="style/bootstrap.min.css" rel="stylesheet" type="text/css" />
<script src="js/jquery-3.5.1.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/gatling.js"></script>
<script src="js/menu.js"></script>
<script src="js/ellipsis.js"></script>
<script src="js/all_sessions.js"></script>
<script src="js/stats.js"></script>
<script src="js/highstock.js"></script>
<script src="js/highcharts-more.js"></script>
<script src="js/theme.js"></script>
<script src="js/unpack.js"></script>
<title>Gatling Stats - Global Information</title>
</head>
<body>
<script>
const storedTheme = localStorage.getItem('theme') || (window.matchMedia("(prefers-color-scheme: dark)").matches ? "dark" : "light");
if (storedTheme) document.documentElement.setAttribute('data-theme', storedTheme)
function toggleTheme() {
const currentTheme = document.documentElement.getAttribute("data-theme");
const targetTheme = currentTheme === "light" ? "dark" : "light";
document.documentElement.setAttribute('data-theme', targetTheme)
localStorage.setItem('theme', targetTheme);
};
</script>
<div class="app-container">
<div class="frise"></div>
<div class="head">
<div class="gatling-open-source">
<a class="gatling-logo gatling-logo-light" href="https://gatling.io" target="blank_" title="Gatling Home Page"><img alt="Gatling" src="style/logo-light.svg"/></a>
<a class="gatling-logo gatling-logo-dark" href="https://gatling.io" target="blank_" title="Gatling Home Page"><img alt="Gatling" src="style/logo-dark.svg"/></a>
<a class="gatling-documentation" href="https://gatling.io/docs/" target="_blank">Documentation</a>
</div>
<div class="nav spacer"></div>
<a class="enterprise" href="https://gatling.io/enterprise/next-step/" target="_blank"><strong>Try</strong>
<img class="logo-enterprise-light" alt="Gatling Enterprise" src="style/logo-enterprise-light.svg"/>
<img class="logo-enterprise-dark" alt="Gatling Enterprise" src="style/logo-enterprise-dark.svg"/>
</a>
<button id="theme-toggle" class="theme-toggle" type="button" onclick="toggleTheme()" aria-label="Toggle user interface mode">
<span class="toggle-dark"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-moon"><path d="M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z"></path></svg></span>
<span class="toggle-light"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-sun"><circle cx="12" cy="12" r="5"></circle><line x1="12" y1="1" x2="12" y2="3"></line><line x1="12" y1="21" x2="12" y2="23"></line><line x1="4.22" y1="4.22" x2="5.64" y2="5.64"></line><line x1="18.36" y1="18.36" x2="19.78" y2="19.78"></line><line x1="1" y1="12" x2="3" y2="12"></line><line x1="21" y1="12" x2="23" y2="12"></line><line x1="4.22" y1="19.78" x2="5.64" y2="18.36"></line><line x1="18.36" y1="5.64" x2="19.78" y2="4.22"></line></svg></span>
</button>
</div>
<div class="container details">
<div class="nav">
<ul></ul>
</div>
<div class="cadre">
<div class="content">
<div class="content-header">
<div class="onglet">
RinhaBackendCrebitosSimulation
</div>
<div class="sous-menu" id="sousMenu">
<div class="sous-menu-spacer">
<div class="item ouvert"><a href="index.html">Global</a></div>
<div class="item "><a id="details_link" href="#">Details</a></div>
</div>
</div>
</div>
<div class="content-in">
<div class="container-article">
<div class="article">
<div class="schema-container">
<div id="ranges" class="schema ranges">
</div>
<div class="schema polar">
<div id="container_number_of_requests"></div>
</div>
<div class="simulation-card">
<div class="simulation-version-information">
<span class="simulation-information-title">Gatling Version</span>
<span class="simulation-information-item">
<span class="simulation-information-label">Version: </span>
<span>3.10.3</span>
</span>
<span class="simulation-information-item">
<span class="simulation-information-label">Released: </span>
<span>2023-12-20</span>
</span>
</div>
<div id="simulation-information" class="simulation-version-information">
<span class="simulation-information-title">Run Information</span>
<div class="simulation-information-container">
<span class="simulation-information-item">
<span class="simulation-information-label">Date: </span>
<span>2024-02-19 08:05:41 GMT</span>
</span>
<span class="simulation-information-item">
<span class="simulation-information-label">Duration: </span>
<span>4m 5s </span>
</span>
<span class="simulation-tooltip simulation-information-item description" title="Description" data-content="Rinha de Backend - 2024/Q1: Crébito - impedro29-performance">
<span class="simulation-information-label">Description: </span>
<span>Rinha de Backend - 2024/Q1: Crébito - impedro29-performance</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="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: [
[1708329942000,0],[1708329943000,0],[1708329944000,0],[1708329945000,0],[1708329946000,0],[1708329947000,2],[1708329948000,4],[1708329949000,6],[1708329950000,7],[1708329951000,9],[1708329952000,11],[1708329953000,13],[1708329954000,15],[1708329955000,16],[1708329956000,19],[1708329957000,20],[1708329958000,22],[1708329959000,24],[1708329960000,25],[1708329961000,28],[1708329962000,29],[1708329963000,31],[1708329964000,33],[1708329965000,35],[1708329966000,37],[1708329967000,38],[1708329968000,40],[1708329969000,42],[1708329970000,44],[1708329971000,46],[1708329972000,47],[1708329973000,50],[1708329974000,51],[1708329975000,53],[1708329976000,55],[1708329977000,56],[1708329978000,59],[1708329979000,60],[1708329980000,62],[1708329981000,64],[1708329982000,66],[1708329983000,68],[1708329984000,69],[1708329985000,71],[1708329986000,74],[1708329987000,74],[1708329988000,77],[1708329989000,79],[1708329990000,80],[1708329991000,82],[1708329992000,84],[1708329993000,86],[1708329994000,88],[1708329995000,90],[1708329996000,92],[1708329997000,93],[1708329998000,96],[1708329999000,98],[1708330000000,99],[1708330001000,101],[1708330002000,103],[1708330003000,105],[1708330004000,107],[1708330005000,109],[1708330006000,110],[1708330007000,111],[1708330008000,114],[1708330009000,116],[1708330010000,117],[1708330011000,120],[1708330012000,121],[1708330013000,124],[1708330014000,125],[1708330015000,126],[1708330016000,128],[1708330017000,130],[1708330018000,133],[1708330019000,134],[1708330020000,135],[1708330021000,138],[1708330022000,139],[1708330023000,141],[1708330024000,143],[1708330025000,145],[1708330026000,147],[1708330027000,147],[1708330028000,150],[1708330029000,152],[1708330030000,153],[1708330031000,155],[1708330032000,157],[1708330033000,159],[1708330034000,161],[1708330035000,162],[1708330036000,165],[1708330037000,166],[1708330038000,168],[1708330039000,170],[1708330040000,171],[1708330041000,174],[1708330042000,175],[1708330043000,177],[1708330044000,180],[1708330045000,182],[1708330046000,184],[1708330047000,185],[1708330048000,188],[1708330049000,189],[1708330050000,191],[1708330051000,193],[1708330052000,195],[1708330053000,197],[1708330054000,198],[1708330055000,200],[1708330056000,201],[1708330057000,202],[1708330058000,209],[1708330059000,208],[1708330060000,215],[1708330061000,222],[1708330062000,245],[1708330063000,258],[1708330064000,276],[1708330065000,291],[1708330066000,300],[1708330067000,309],[1708330068000,309],[1708330069000,302],[1708330070000,320],[1708330071000,325],[1708330072000,322],[1708330073000,316],[1708330074000,303],[1708330075000,310],[1708330076000,298],[1708330077000,295],[1708330078000,278],[1708330079000,270],[1708330080000,262],[1708330081000,249],[1708330082000,267],[1708330083000,249],[1708330084000,241],[1708330085000,221],[1708330086000,222],[1708330087000,227],[1708330088000,220],[1708330089000,222],[1708330090000,234],[1708330091000,224],[1708330092000,221],[1708330093000,231],[1708330094000,221],[1708330095000,220],[1708330096000,226],[1708330097000,221],[1708330098000,221],[1708330099000,234],[1708330100000,236],[1708330101000,267],[1708330102000,242],[1708330103000,221],[1708330104000,222],[1708330105000,220],[1708330106000,229],[1708330107000,220],[1708330108000,221],[1708330109000,226],[1708330110000,232],[1708330111000,222],[1708330112000,222],[1708330113000,222],[1708330114000,228],[1708330115000,221],[1708330116000,228],[1708330117000,220],[1708330118000,224],[1708330119000,221],[1708330120000,222],[1708330121000,222],[1708330122000,222],[1708330123000,220],[1708330124000,222],[1708330125000,221],[1708330126000,222],[1708330127000,221],[1708330128000,222],[1708330129000,222],[1708330130000,222],[1708330131000,221],[1708330132000,221],[1708330133000,222],[1708330134000,225],[1708330135000,229],[1708330136000,223],[1708330137000,264],[1708330138000,259],[1708330139000,250],[1708330140000,236],[1708330141000,237],[1708330142000,221],[1708330143000,222],[1708330144000,226],[1708330145000,221],[1708330146000,220],[1708330147000,221],[1708330148000,220],[1708330149000,235],[1708330150000,220],[1708330151000,224],[1708330152000,221],[1708330153000,221],[1708330154000,226],[1708330155000,221],[1708330156000,221],[1708330157000,226],[1708330158000,221],[1708330159000,221],[1708330160000,221],[1708330161000,223],[1708330162000,223],[1708330163000,221],[1708330164000,230],[1708330165000,222],[1708330166000,222],[1708330167000,221],[1708330168000,225],[1708330169000,227],[1708330170000,221],[1708330171000,221],[1708330172000,226],[1708330173000,221],[1708330174000,221],[1708330175000,220],[1708330176000,224],[1708330177000,221],[1708330178000,222],[1708330179000,221],[1708330180000,265],[1708330181000,256],[1708330182000,240],[1708330183000,222],[1708330184000,220],[1708330185000,221],[1708330186000,225]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#68b65c',
name: 'créditos',
data: [
[1708329942000,0],[1708329943000,0],[1708329944000,0],[1708329945000,0],[1708329946000,0],[1708329947000,2],[1708329948000,2],[1708329949000,4],[1708329950000,4],[1708329951000,6],[1708329952000,6],[1708329953000,7],[1708329954000,9],[1708329955000,8],[1708329956000,10],[1708329957000,10],[1708329958000,12],[1708329959000,12],[1708329960000,14],[1708329961000,14],[1708329962000,15],[1708329963000,16],[1708329964000,17],[1708329965000,17],[1708329966000,19],[1708329967000,20],[1708329968000,20],[1708329969000,22],[1708329970000,22],[1708329971000,23],[1708329972000,25],[1708329973000,25],[1708329974000,26],[1708329975000,26],[1708329976000,28],[1708329977000,29],[1708329978000,30],[1708329979000,31],[1708329980000,32],[1708329981000,32],[1708329982000,33],[1708329983000,34],[1708329984000,35],[1708329985000,36],[1708329986000,37],[1708329987000,38],[1708329988000,39],[1708329989000,39],[1708329990000,41],[1708329991000,41],[1708329992000,43],[1708329993000,43],[1708329994000,44],[1708329995000,45],[1708329996000,46],[1708329997000,47],[1708329998000,48],[1708329999000,48],[1708330000000,50],[1708330001000,50],[1708330002000,52],[1708330003000,52],[1708330004000,53],[1708330005000,54],[1708330006000,56],[1708330007000,55],[1708330008000,57],[1708330009000,58],[1708330010000,59],[1708330011000,59],[1708330012000,61],[1708330013000,61],[1708330014000,63],[1708330015000,63],[1708330016000,64],[1708330017000,65],[1708330018000,66],[1708330019000,67],[1708330020000,68],[1708330021000,69],[1708330022000,70],[1708330023000,70],[1708330024000,72],[1708330025000,73],[1708330026000,73],[1708330027000,74],[1708330028000,75],[1708330029000,76],[1708330030000,77],[1708330031000,78],[1708330032000,79],[1708330033000,79],[1708330034000,81],[1708330035000,81],[1708330036000,82],[1708330037000,83],[1708330038000,85],[1708330039000,85],[1708330040000,86],[1708330041000,86],[1708330042000,88],[1708330043000,89],[1708330044000,90],[1708330045000,91],[1708330046000,91],[1708330047000,93],[1708330048000,95],[1708330049000,95],[1708330050000,96],[1708330051000,97],[1708330052000,98],[1708330053000,97],[1708330054000,100],[1708330055000,100],[1708330056000,102],[1708330057000,102],[1708330058000,106],[1708330059000,104],[1708330060000,108],[1708330061000,111],[1708330062000,122],[1708330063000,130],[1708330064000,138],[1708330065000,146],[1708330066000,151],[1708330067000,154],[1708330068000,155],[1708330069000,152],[1708330070000,160],[1708330071000,163],[1708330072000,161],[1708330073000,159],[1708330074000,152],[1708330075000,155],[1708330076000,150],[1708330077000,148],[1708330078000,139],[1708330079000,136],[1708330080000,131],[1708330081000,125],[1708330082000,133],[1708330083000,125],[1708330084000,121],[1708330085000,111],[1708330086000,111],[1708330087000,114],[1708330088000,111],[1708330089000,111],[1708330090000,118],[1708330091000,112],[1708330092000,111],[1708330093000,116],[1708330094000,111],[1708330095000,111],[1708330096000,113],[1708330097000,111],[1708330098000,111],[1708330099000,118],[1708330100000,118],[1708330101000,133],[1708330102000,121],[1708330103000,111],[1708330104000,111],[1708330105000,111],[1708330106000,115],[1708330107000,111],[1708330108000,111],[1708330109000,113],[1708330110000,116],[1708330111000,113],[1708330112000,111],[1708330113000,111],[1708330114000,114],[1708330115000,111],[1708330116000,114],[1708330117000,111],[1708330118000,113],[1708330119000,111],[1708330120000,112],[1708330121000,111],[1708330122000,111],[1708330123000,111],[1708330124000,111],[1708330125000,111],[1708330126000,111],[1708330127000,111],[1708330128000,112],[1708330129000,111],[1708330130000,112],[1708330131000,111],[1708330132000,111],[1708330133000,112],[1708330134000,113],[1708330135000,115],[1708330136000,112],[1708330137000,132],[1708330138000,130],[1708330139000,125],[1708330140000,119],[1708330141000,119],[1708330142000,111],[1708330143000,111],[1708330144000,113],[1708330145000,111],[1708330146000,111],[1708330147000,111],[1708330148000,111],[1708330149000,118],[1708330150000,111],[1708330151000,112],[1708330152000,111],[1708330153000,111],[1708330154000,113],[1708330155000,111],[1708330156000,111],[1708330157000,113],[1708330158000,111],[1708330159000,111],[1708330160000,111],[1708330161000,112],[1708330162000,112],[1708330163000,111],[1708330164000,116],[1708330165000,111],[1708330166000,112],[1708330167000,111],[1708330168000,113],[1708330169000,114],[1708330170000,111],[1708330171000,111],[1708330172000,113],[1708330173000,111],[1708330174000,111],[1708330175000,111],[1708330176000,112],[1708330177000,111],[1708330178000,111],[1708330179000,111],[1708330180000,133],[1708330181000,129],[1708330182000,121],[1708330183000,112],[1708330184000,111],[1708330185000,111],[1708330186000,113]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#f15b4f',
name: 'extratos',
data: [
[1708329942000,0],[1708329943000,0],[1708329944000,0],[1708329945000,0],[1708329946000,0],[1708329947000,2],[1708329948000,1],[1708329949000,1],[1708329950000,1],[1708329951000,1],[1708329952000,2],[1708329953000,1],[1708329954000,2],[1708329955000,2],[1708329956000,1],[1708329957000,2],[1708329958000,2],[1708329959000,2],[1708329960000,2],[1708329961000,2],[1708329962000,2],[1708329963000,2],[1708329964000,3],[1708329965000,2],[1708329966000,3],[1708329967000,2],[1708329968000,3],[1708329969000,2],[1708329970000,3],[1708329971000,3],[1708329972000,3],[1708329973000,3],[1708329974000,3],[1708329975000,3],[1708329976000,3],[1708329977000,4],[1708329978000,3],[1708329979000,3],[1708329980000,4],[1708329981000,3],[1708329982000,4],[1708329983000,4],[1708329984000,4],[1708329985000,4],[1708329986000,4],[1708329987000,4],[1708329988000,4],[1708329989000,4],[1708329990000,4],[1708329991000,4],[1708329992000,5],[1708329993000,4],[1708329994000,5],[1708329995000,5],[1708329996000,4],[1708329997000,5],[1708329998000,5],[1708329999000,5],[1708330000000,5],[1708330001000,5],[1708330002000,5],[1708330003000,5],[1708330004000,6],[1708330005000,5],[1708330006000,6],[1708330007000,5],[1708330008000,6],[1708330009000,5],[1708330010000,6],[1708330011000,6],[1708330012000,6],[1708330013000,6],[1708330014000,6],[1708330015000,6],[1708330016000,6],[1708330017000,7],[1708330018000,6],[1708330019000,6],[1708330020000,7],[1708330021000,6],[1708330022000,7],[1708330023000,7],[1708330024000,7],[1708330025000,7],[1708330026000,7],[1708330027000,7],[1708330028000,7],[1708330029000,7],[1708330030000,7],[1708330031000,7],[1708330032000,8],[1708330033000,7],[1708330034000,8],[1708330035000,8],[1708330036000,7],[1708330037000,8],[1708330038000,8],[1708330039000,8],[1708330040000,8],[1708330041000,8],[1708330042000,8],[1708330043000,8],[1708330044000,9],[1708330045000,8],[1708330046000,9],[1708330047000,8],[1708330048000,9],[1708330049000,8],[1708330050000,9],[1708330051000,9],[1708330052000,9],[1708330053000,9],[1708330054000,9],[1708330055000,9],[1708330056000,9],[1708330057000,10],[1708330058000,9],[1708330059000,9],[1708330060000,11],[1708330061000,9],[1708330062000,10],[1708330063000,10],[1708330064000,10],[1708330065000,11],[1708330066000,11],[1708330067000,10],[1708330068000,11],[1708330069000,10],[1708330070000,11],[1708330071000,11],[1708330072000,11],[1708330073000,10],[1708330074000,10],[1708330075000,10],[1708330076000,10],[1708330077000,10],[1708330078000,10],[1708330079000,11],[1708330080000,10],[1708330081000,10],[1708330082000,10],[1708330083000,10],[1708330084000,10],[1708330085000,10],[1708330086000,10],[1708330087000,10],[1708330088000,10],[1708330089000,10],[1708330090000,10],[1708330091000,10],[1708330092000,10],[1708330093000,10],[1708330094000,10],[1708330095000,10],[1708330096000,10],[1708330097000,10],[1708330098000,10],[1708330099000,10],[1708330100000,10],[1708330101000,10],[1708330102000,10],[1708330103000,10],[1708330104000,10],[1708330105000,10],[1708330106000,10],[1708330107000,10],[1708330108000,10],[1708330109000,10],[1708330110000,10],[1708330111000,10],[1708330112000,10],[1708330113000,10],[1708330114000,10],[1708330115000,10],[1708330116000,10],[1708330117000,10],[1708330118000,10],[1708330119000,10],[1708330120000,10],[1708330121000,10],[1708330122000,10],[1708330123000,10],[1708330124000,10],[1708330125000,10],[1708330126000,10],[1708330127000,10],[1708330128000,10],[1708330129000,10],[1708330130000,10],[1708330131000,10],[1708330132000,10],[1708330133000,10],[1708330134000,10],[1708330135000,10],[1708330136000,10],[1708330137000,10],[1708330138000,10],[1708330139000,10],[1708330140000,10],[1708330141000,10],[1708330142000,10],[1708330143000,10],[1708330144000,11],[1708330145000,10],[1708330146000,10],[1708330147000,10],[1708330148000,10],[1708330149000,10],[1708330150000,10],[1708330151000,10],[1708330152000,10],[1708330153000,10],[1708330154000,10],[1708330155000,10],[1708330156000,10],[1708330157000,10],[1708330158000,10],[1708330159000,10],[1708330160000,10],[1708330161000,10],[1708330162000,10],[1708330163000,10],[1708330164000,10],[1708330165000,10],[1708330166000,10],[1708330167000,10],[1708330168000,10],[1708330169000,10],[1708330170000,10],[1708330171000,10],[1708330172000,10],[1708330173000,10],[1708330174000,10],[1708330175000,10],[1708330176000,10],[1708330177000,10],[1708330178000,10],[1708330179000,10],[1708330180000,11],[1708330181000,10],[1708330182000,10],[1708330183000,10],[1708330184000,10],[1708330185000,10],[1708330186000,9]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FFDD00',
name: 'validações',
data: [
[1708329942000,0],[1708329943000,0],[1708329944000,0],[1708329945000,5],[1708329946000,5],[1708329947000,0],[1708329948000,0],[1708329949000,0],[1708329950000,0],[1708329951000,0],[1708329952000,0],[1708329953000,0],[1708329954000,0],[1708329955000,0],[1708329956000,0],[1708329957000,0],[1708329958000,0],[1708329959000,0],[1708329960000,0],[1708329961000,0],[1708329962000,0],[1708329963000,0],[1708329964000,0],[1708329965000,0],[1708329966000,0],[1708329967000,0],[1708329968000,0],[1708329969000,0],[1708329970000,0],[1708329971000,0],[1708329972000,0],[1708329973000,0],[1708329974000,0],[1708329975000,0],[1708329976000,0],[1708329977000,0],[1708329978000,0],[1708329979000,0],[1708329980000,0],[1708329981000,0],[1708329982000,0],[1708329983000,0],[1708329984000,0],[1708329985000,0],[1708329986000,0],[1708329987000,0],[1708329988000,0],[1708329989000,0],[1708329990000,0],[1708329991000,0],[1708329992000,0],[1708329993000,0],[1708329994000,0],[1708329995000,0],[1708329996000,0],[1708329997000,0],[1708329998000,0],[1708329999000,0],[1708330000000,0],[1708330001000,0],[1708330002000,0],[1708330003000,0],[1708330004000,0],[1708330005000,0],[1708330006000,0],[1708330007000,0],[1708330008000,0],[1708330009000,0],[1708330010000,0],[1708330011000,0],[1708330012000,0],[1708330013000,0],[1708330014000,0],[1708330015000,0],[1708330016000,0],[1708330017000,0],[1708330018000,0],[1708330019000,0],[1708330020000,0],[1708330021000,0],[1708330022000,0],[1708330023000,0],[1708330024000,0],[1708330025000,0],[1708330026000,0],[1708330027000,0],[1708330028000,0],[1708330029000,0],[1708330030000,0],[1708330031000,0],[1708330032000,0],[1708330033000,0],[1708330034000,0],[1708330035000,0],[1708330036000,0],[1708330037000,0],[1708330038000,0],[1708330039000,0],[1708330040000,0],[1708330041000,0],[1708330042000,0],[1708330043000,0],[1708330044000,0],[1708330045000,0],[1708330046000,0],[1708330047000,0],[1708330048000,0],[1708330049000,0],[1708330050000,0],[1708330051000,0],[1708330052000,0],[1708330053000,0],[1708330054000,0],[1708330055000,0],[1708330056000,0],[1708330057000,0],[1708330058000,0],[1708330059000,0],[1708330060000,0],[1708330061000,0],[1708330062000,0],[1708330063000,0],[1708330064000,0],[1708330065000,0],[1708330066000,0],[1708330067000,0],[1708330068000,0],[1708330069000,0],[1708330070000,0],[1708330071000,0],[1708330072000,0],[1708330073000,0],[1708330074000,0],[1708330075000,0],[1708330076000,0],[1708330077000,0],[1708330078000,0],[1708330079000,0],[1708330080000,0],[1708330081000,0],[1708330082000,0],[1708330083000,0],[1708330084000,0],[1708330085000,0],[1708330086000,0],[1708330087000,0],[1708330088000,0],[1708330089000,0],[1708330090000,0],[1708330091000,0],[1708330092000,0],[1708330093000,0],[1708330094000,0],[1708330095000,0],[1708330096000,0],[1708330097000,0],[1708330098000,0],[1708330099000,0],[1708330100000,0],[1708330101000,0],[1708330102000,0],[1708330103000,0],[1708330104000,0],[1708330105000,0],[1708330106000,0],[1708330107000,0],[1708330108000,0],[1708330109000,0],[1708330110000,0],[1708330111000,0],[1708330112000,0],[1708330113000,0],[1708330114000,0],[1708330115000,0],[1708330116000,0],[1708330117000,0],[1708330118000,0],[1708330119000,0],[1708330120000,0],[1708330121000,0],[1708330122000,0],[1708330123000,0],[1708330124000,0],[1708330125000,0],[1708330126000,0],[1708330127000,0],[1708330128000,0],[1708330129000,0],[1708330130000,0],[1708330131000,0],[1708330132000,0],[1708330133000,0],[1708330134000,0],[1708330135000,0],[1708330136000,0],[1708330137000,0],[1708330138000,0],[1708330139000,0],[1708330140000,0],[1708330141000,0],[1708330142000,0],[1708330143000,0],[1708330144000,0],[1708330145000,0],[1708330146000,0],[1708330147000,0],[1708330148000,0],[1708330149000,0],[1708330150000,0],[1708330151000,0],[1708330152000,0],[1708330153000,0],[1708330154000,0],[1708330155000,0],[1708330156000,0],[1708330157000,0],[1708330158000,0],[1708330159000,0],[1708330160000,0],[1708330161000,0],[1708330162000,0],[1708330163000,0],[1708330164000,0],[1708330165000,0],[1708330166000,0],[1708330167000,0],[1708330168000,0],[1708330169000,0],[1708330170000,0],[1708330171000,0],[1708330172000,0],[1708330173000,0],[1708330174000,0],[1708330175000,0],[1708330176000,0],[1708330177000,0],[1708330178000,0],[1708330179000,0],[1708330180000,0],[1708330181000,0],[1708330182000,0],[1708330183000,0],[1708330184000,0],[1708330185000,0],[1708330186000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00D5FF',
name: 'validação HTTP 404',
data: [
[1708329942000,0],[1708329943000,0],[1708329944000,0],[1708329945000,1],[1708329946000,0],[1708329947000,0],[1708329948000,0],[1708329949000,0],[1708329950000,0],[1708329951000,0],[1708329952000,0],[1708329953000,0],[1708329954000,0],[1708329955000,0],[1708329956000,0],[1708329957000,0],[1708329958000,0],[1708329959000,0],[1708329960000,0],[1708329961000,0],[1708329962000,0],[1708329963000,0],[1708329964000,0],[1708329965000,0],[1708329966000,0],[1708329967000,0],[1708329968000,0],[1708329969000,0],[1708329970000,0],[1708329971000,0],[1708329972000,0],[1708329973000,0],[1708329974000,0],[1708329975000,0],[1708329976000,0],[1708329977000,0],[1708329978000,0],[1708329979000,0],[1708329980000,0],[1708329981000,0],[1708329982000,0],[1708329983000,0],[1708329984000,0],[1708329985000,0],[1708329986000,0],[1708329987000,0],[1708329988000,0],[1708329989000,0],[1708329990000,0],[1708329991000,0],[1708329992000,0],[1708329993000,0],[1708329994000,0],[1708329995000,0],[1708329996000,0],[1708329997000,0],[1708329998000,0],[1708329999000,0],[1708330000000,0],[1708330001000,0],[1708330002000,0],[1708330003000,0],[1708330004000,0],[1708330005000,0],[1708330006000,0],[1708330007000,0],[1708330008000,0],[1708330009000,0],[1708330010000,0],[1708330011000,0],[1708330012000,0],[1708330013000,0],[1708330014000,0],[1708330015000,0],[1708330016000,0],[1708330017000,0],[1708330018000,0],[1708330019000,0],[1708330020000,0],[1708330021000,0],[1708330022000,0],[1708330023000,0],[1708330024000,0],[1708330025000,0],[1708330026000,0],[1708330027000,0],[1708330028000,0],[1708330029000,0],[1708330030000,0],[1708330031000,0],[1708330032000,0],[1708330033000,0],[1708330034000,0],[1708330035000,0],[1708330036000,0],[1708330037000,0],[1708330038000,0],[1708330039000,0],[1708330040000,0],[1708330041000,0],[1708330042000,0],[1708330043000,0],[1708330044000,0],[1708330045000,0],[1708330046000,0],[1708330047000,0],[1708330048000,0],[1708330049000,0],[1708330050000,0],[1708330051000,0],[1708330052000,0],[1708330053000,0],[1708330054000,0],[1708330055000,0],[1708330056000,0],[1708330057000,0],[1708330058000,0],[1708330059000,0],[1708330060000,0],[1708330061000,0],[1708330062000,0],[1708330063000,0],[1708330064000,0],[1708330065000,0],[1708330066000,0],[1708330067000,0],[1708330068000,0],[1708330069000,0],[1708330070000,0],[1708330071000,0],[1708330072000,0],[1708330073000,0],[1708330074000,0],[1708330075000,0],[1708330076000,0],[1708330077000,0],[1708330078000,0],[1708330079000,0],[1708330080000,0],[1708330081000,0],[1708330082000,0],[1708330083000,0],[1708330084000,0],[1708330085000,0],[1708330086000,0],[1708330087000,0],[1708330088000,0],[1708330089000,0],[1708330090000,0],[1708330091000,0],[1708330092000,0],[1708330093000,0],[1708330094000,0],[1708330095000,0],[1708330096000,0],[1708330097000,0],[1708330098000,0],[1708330099000,0],[1708330100000,0],[1708330101000,0],[1708330102000,0],[1708330103000,0],[1708330104000,0],[1708330105000,0],[1708330106000,0],[1708330107000,0],[1708330108000,0],[1708330109000,0],[1708330110000,0],[1708330111000,0],[1708330112000,0],[1708330113000,0],[1708330114000,0],[1708330115000,0],[1708330116000,0],[1708330117000,0],[1708330118000,0],[1708330119000,0],[1708330120000,0],[1708330121000,0],[1708330122000,0],[1708330123000,0],[1708330124000,0],[1708330125000,0],[1708330126000,0],[1708330127000,0],[1708330128000,0],[1708330129000,0],[1708330130000,0],[1708330131000,0],[1708330132000,0],[1708330133000,0],[1708330134000,0],[1708330135000,0],[1708330136000,0],[1708330137000,0],[1708330138000,0],[1708330139000,0],[1708330140000,0],[1708330141000,0],[1708330142000,0],[1708330143000,0],[1708330144000,0],[1708330145000,0],[1708330146000,0],[1708330147000,0],[1708330148000,0],[1708330149000,0],[1708330150000,0],[1708330151000,0],[1708330152000,0],[1708330153000,0],[1708330154000,0],[1708330155000,0],[1708330156000,0],[1708330157000,0],[1708330158000,0],[1708330159000,0],[1708330160000,0],[1708330161000,0],[1708330162000,0],[1708330163000,0],[1708330164000,0],[1708330165000,0],[1708330166000,0],[1708330167000,0],[1708330168000,0],[1708330169000,0],[1708330170000,0],[1708330171000,0],[1708330172000,0],[1708330173000,0],[1708330174000,0],[1708330175000,0],[1708330176000,0],[1708330177000,0],[1708330178000,0],[1708330179000,0],[1708330180000,0],[1708330181000,0],[1708330182000,0],[1708330183000,0],[1708330184000,0],[1708330185000,0],[1708330186000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00FF00',
name: 'validação concorrência saldo - 0',
data: [
[1708329942000,0],[1708329943000,0],[1708329944000,1],[1708329945000,0],[1708329946000,0],[1708329947000,0],[1708329948000,0],[1708329949000,0],[1708329950000,0],[1708329951000,0],[1708329952000,0],[1708329953000,0],[1708329954000,0],[1708329955000,0],[1708329956000,0],[1708329957000,0],[1708329958000,0],[1708329959000,0],[1708329960000,0],[1708329961000,0],[1708329962000,0],[1708329963000,0],[1708329964000,0],[1708329965000,0],[1708329966000,0],[1708329967000,0],[1708329968000,0],[1708329969000,0],[1708329970000,0],[1708329971000,0],[1708329972000,0],[1708329973000,0],[1708329974000,0],[1708329975000,0],[1708329976000,0],[1708329977000,0],[1708329978000,0],[1708329979000,0],[1708329980000,0],[1708329981000,0],[1708329982000,0],[1708329983000,0],[1708329984000,0],[1708329985000,0],[1708329986000,0],[1708329987000,0],[1708329988000,0],[1708329989000,0],[1708329990000,0],[1708329991000,0],[1708329992000,0],[1708329993000,0],[1708329994000,0],[1708329995000,0],[1708329996000,0],[1708329997000,0],[1708329998000,0],[1708329999000,0],[1708330000000,0],[1708330001000,0],[1708330002000,0],[1708330003000,0],[1708330004000,0],[1708330005000,0],[1708330006000,0],[1708330007000,0],[1708330008000,0],[1708330009000,0],[1708330010000,0],[1708330011000,0],[1708330012000,0],[1708330013000,0],[1708330014000,0],[1708330015000,0],[1708330016000,0],[1708330017000,0],[1708330018000,0],[1708330019000,0],[1708330020000,0],[1708330021000,0],[1708330022000,0],[1708330023000,0],[1708330024000,0],[1708330025000,0],[1708330026000,0],[1708330027000,0],[1708330028000,0],[1708330029000,0],[1708330030000,0],[1708330031000,0],[1708330032000,0],[1708330033000,0],[1708330034000,0],[1708330035000,0],[1708330036000,0],[1708330037000,0],[1708330038000,0],[1708330039000,0],[1708330040000,0],[1708330041000,0],[1708330042000,0],[1708330043000,0],[1708330044000,0],[1708330045000,0],[1708330046000,0],[1708330047000,0],[1708330048000,0],[1708330049000,0],[1708330050000,0],[1708330051000,0],[1708330052000,0],[1708330053000,0],[1708330054000,0],[1708330055000,0],[1708330056000,0],[1708330057000,0],[1708330058000,0],[1708330059000,0],[1708330060000,0],[1708330061000,0],[1708330062000,0],[1708330063000,0],[1708330064000,0],[1708330065000,0],[1708330066000,0],[1708330067000,0],[1708330068000,0],[1708330069000,0],[1708330070000,0],[1708330071000,0],[1708330072000,0],[1708330073000,0],[1708330074000,0],[1708330075000,0],[1708330076000,0],[1708330077000,0],[1708330078000,0],[1708330079000,0],[1708330080000,0],[1708330081000,0],[1708330082000,0],[1708330083000,0],[1708330084000,0],[1708330085000,0],[1708330086000,0],[1708330087000,0],[1708330088000,0],[1708330089000,0],[1708330090000,0],[1708330091000,0],[1708330092000,0],[1708330093000,0],[1708330094000,0],[1708330095000,0],[1708330096000,0],[1708330097000,0],[1708330098000,0],[1708330099000,0],[1708330100000,0],[1708330101000,0],[1708330102000,0],[1708330103000,0],[1708330104000,0],[1708330105000,0],[1708330106000,0],[1708330107000,0],[1708330108000,0],[1708330109000,0],[1708330110000,0],[1708330111000,0],[1708330112000,0],[1708330113000,0],[1708330114000,0],[1708330115000,0],[1708330116000,0],[1708330117000,0],[1708330118000,0],[1708330119000,0],[1708330120000,0],[1708330121000,0],[1708330122000,0],[1708330123000,0],[1708330124000,0],[1708330125000,0],[1708330126000,0],[1708330127000,0],[1708330128000,0],[1708330129000,0],[1708330130000,0],[1708330131000,0],[1708330132000,0],[1708330133000,0],[1708330134000,0],[1708330135000,0],[1708330136000,0],[1708330137000,0],[1708330138000,0],[1708330139000,0],[1708330140000,0],[1708330141000,0],[1708330142000,0],[1708330143000,0],[1708330144000,0],[1708330145000,0],[1708330146000,0],[1708330147000,0],[1708330148000,0],[1708330149000,0],[1708330150000,0],[1708330151000,0],[1708330152000,0],[1708330153000,0],[1708330154000,0],[1708330155000,0],[1708330156000,0],[1708330157000,0],[1708330158000,0],[1708330159000,0],[1708330160000,0],[1708330161000,0],[1708330162000,0],[1708330163000,0],[1708330164000,0],[1708330165000,0],[1708330166000,0],[1708330167000,0],[1708330168000,0],[1708330169000,0],[1708330170000,0],[1708330171000,0],[1708330172000,0],[1708330173000,0],[1708330174000,0],[1708330175000,0],[1708330176000,0],[1708330177000,0],[1708330178000,0],[1708330179000,0],[1708330180000,0],[1708330181000,0],[1708330182000,0],[1708330183000,0],[1708330184000,0],[1708330185000,0],[1708330186000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#9D00FF',
name: 'validação concorrência transações - c',
data: [
[1708329942000,0],[1708329943000,23],[1708329944000,25],[1708329945000,0],[1708329946000,0],[1708329947000,0],[1708329948000,0],[1708329949000,0],[1708329950000,0],[1708329951000,0],[1708329952000,0],[1708329953000,0],[1708329954000,0],[1708329955000,0],[1708329956000,0],[1708329957000,0],[1708329958000,0],[1708329959000,0],[1708329960000,0],[1708329961000,0],[1708329962000,0],[1708329963000,0],[1708329964000,0],[1708329965000,0],[1708329966000,0],[1708329967000,0],[1708329968000,0],[1708329969000,0],[1708329970000,0],[1708329971000,0],[1708329972000,0],[1708329973000,0],[1708329974000,0],[1708329975000,0],[1708329976000,0],[1708329977000,0],[1708329978000,0],[1708329979000,0],[1708329980000,0],[1708329981000,0],[1708329982000,0],[1708329983000,0],[1708329984000,0],[1708329985000,0],[1708329986000,0],[1708329987000,0],[1708329988000,0],[1708329989000,0],[1708329990000,0],[1708329991000,0],[1708329992000,0],[1708329993000,0],[1708329994000,0],[1708329995000,0],[1708329996000,0],[1708329997000,0],[1708329998000,0],[1708329999000,0],[1708330000000,0],[1708330001000,0],[1708330002000,0],[1708330003000,0],[1708330004000,0],[1708330005000,0],[1708330006000,0],[1708330007000,0],[1708330008000,0],[1708330009000,0],[1708330010000,0],[1708330011000,0],[1708330012000,0],[1708330013000,0],[1708330014000,0],[1708330015000,0],[1708330016000,0],[1708330017000,0],[1708330018000,0],[1708330019000,0],[1708330020000,0],[1708330021000,0],[1708330022000,0],[1708330023000,0],[1708330024000,0],[1708330025000,0],[1708330026000,0],[1708330027000,0],[1708330028000,0],[1708330029000,0],[1708330030000,0],[1708330031000,0],[1708330032000,0],[1708330033000,0],[1708330034000,0],[1708330035000,0],[1708330036000,0],[1708330037000,0],[1708330038000,0],[1708330039000,0],[1708330040000,0],[1708330041000,0],[1708330042000,0],[1708330043000,0],[1708330044000,0],[1708330045000,0],[1708330046000,0],[1708330047000,0],[1708330048000,0],[1708330049000,0],[1708330050000,0],[1708330051000,0],[1708330052000,0],[1708330053000,0],[1708330054000,0],[1708330055000,0],[1708330056000,0],[1708330057000,0],[1708330058000,0],[1708330059000,0],[1708330060000,0],[1708330061000,0],[1708330062000,0],[1708330063000,0],[1708330064000,0],[1708330065000,0],[1708330066000,0],[1708330067000,0],[1708330068000,0],[1708330069000,0],[1708330070000,0],[1708330071000,0],[1708330072000,0],[1708330073000,0],[1708330074000,0],[1708330075000,0],[1708330076000,0],[1708330077000,0],[1708330078000,0],[1708330079000,0],[1708330080000,0],[1708330081000,0],[1708330082000,0],[1708330083000,0],[1708330084000,0],[1708330085000,0],[1708330086000,0],[1708330087000,0],[1708330088000,0],[1708330089000,0],[1708330090000,0],[1708330091000,0],[1708330092000,0],[1708330093000,0],[1708330094000,0],[1708330095000,0],[1708330096000,0],[1708330097000,0],[1708330098000,0],[1708330099000,0],[1708330100000,0],[1708330101000,0],[1708330102000,0],[1708330103000,0],[1708330104000,0],[1708330105000,0],[1708330106000,0],[1708330107000,0],[1708330108000,0],[1708330109000,0],[1708330110000,0],[1708330111000,0],[1708330112000,0],[1708330113000,0],[1708330114000,0],[1708330115000,0],[1708330116000,0],[1708330117000,0],[1708330118000,0],[1708330119000,0],[1708330120000,0],[1708330121000,0],[1708330122000,0],[1708330123000,0],[1708330124000,0],[1708330125000,0],[1708330126000,0],[1708330127000,0],[1708330128000,0],[1708330129000,0],[1708330130000,0],[1708330131000,0],[1708330132000,0],[1708330133000,0],[1708330134000,0],[1708330135000,0],[1708330136000,0],[1708330137000,0],[1708330138000,0],[1708330139000,0],[1708330140000,0],[1708330141000,0],[1708330142000,0],[1708330143000,0],[1708330144000,0],[1708330145000,0],[1708330146000,0],[1708330147000,0],[1708330148000,0],[1708330149000,0],[1708330150000,0],[1708330151000,0],[1708330152000,0],[1708330153000,0],[1708330154000,0],[1708330155000,0],[1708330156000,0],[1708330157000,0],[1708330158000,0],[1708330159000,0],[1708330160000,0],[1708330161000,0],[1708330162000,0],[1708330163000,0],[1708330164000,0],[1708330165000,0],[1708330166000,0],[1708330167000,0],[1708330168000,0],[1708330169000,0],[1708330170000,0],[1708330171000,0],[1708330172000,0],[1708330173000,0],[1708330174000,0],[1708330175000,0],[1708330176000,0],[1708330177000,0],[1708330178000,0],[1708330179000,0],[1708330180000,0],[1708330181000,0],[1708330182000,0],[1708330183000,0],[1708330184000,0],[1708330185000,0],[1708330186000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FF00E1',
name: 'validação concorrência saldo - -25',
data: [
[1708329942000,1],[1708329943000,1],[1708329944000,0],[1708329945000,0],[1708329946000,0],[1708329947000,0],[1708329948000,0],[1708329949000,0],[1708329950000,0],[1708329951000,0],[1708329952000,0],[1708329953000,0],[1708329954000,0],[1708329955000,0],[1708329956000,0],[1708329957000,0],[1708329958000,0],[1708329959000,0],[1708329960000,0],[1708329961000,0],[1708329962000,0],[1708329963000,0],[1708329964000,0],[1708329965000,0],[1708329966000,0],[1708329967000,0],[1708329968000,0],[1708329969000,0],[1708329970000,0],[1708329971000,0],[1708329972000,0],[1708329973000,0],[1708329974000,0],[1708329975000,0],[1708329976000,0],[1708329977000,0],[1708329978000,0],[1708329979000,0],[1708329980000,0],[1708329981000,0],[1708329982000,0],[1708329983000,0],[1708329984000,0],[1708329985000,0],[1708329986000,0],[1708329987000,0],[1708329988000,0],[1708329989000,0],[1708329990000,0],[1708329991000,0],[1708329992000,0],[1708329993000,0],[1708329994000,0],[1708329995000,0],[1708329996000,0],[1708329997000,0],[1708329998000,0],[1708329999000,0],[1708330000000,0],[1708330001000,0],[1708330002000,0],[1708330003000,0],[1708330004000,0],[1708330005000,0],[1708330006000,0],[1708330007000,0],[1708330008000,0],[1708330009000,0],[1708330010000,0],[1708330011000,0],[1708330012000,0],[1708330013000,0],[1708330014000,0],[1708330015000,0],[1708330016000,0],[1708330017000,0],[1708330018000,0],[1708330019000,0],[1708330020000,0],[1708330021000,0],[1708330022000,0],[1708330023000,0],[1708330024000,0],[1708330025000,0],[1708330026000,0],[1708330027000,0],[1708330028000,0],[1708330029000,0],[1708330030000,0],[1708330031000,0],[1708330032000,0],[1708330033000,0],[1708330034000,0],[1708330035000,0],[1708330036000,0],[1708330037000,0],[1708330038000,0],[1708330039000,0],[1708330040000,0],[1708330041000,0],[1708330042000,0],[1708330043000,0],[1708330044000,0],[1708330045000,0],[1708330046000,0],[1708330047000,0],[1708330048000,0],[1708330049000,0],[1708330050000,0],[1708330051000,0],[1708330052000,0],[1708330053000,0],[1708330054000,0],[1708330055000,0],[1708330056000,0],[1708330057000,0],[1708330058000,0],[1708330059000,0],[1708330060000,0],[1708330061000,0],[1708330062000,0],[1708330063000,0],[1708330064000,0],[1708330065000,0],[1708330066000,0],[1708330067000,0],[1708330068000,0],[1708330069000,0],[1708330070000,0],[1708330071000,0],[1708330072000,0],[1708330073000,0],[1708330074000,0],[1708330075000,0],[1708330076000,0],[1708330077000,0],[1708330078000,0],[1708330079000,0],[1708330080000,0],[1708330081000,0],[1708330082000,0],[1708330083000,0],[1708330084000,0],[1708330085000,0],[1708330086000,0],[1708330087000,0],[1708330088000,0],[1708330089000,0],[1708330090000,0],[1708330091000,0],[1708330092000,0],[1708330093000,0],[1708330094000,0],[1708330095000,0],[1708330096000,0],[1708330097000,0],[1708330098000,0],[1708330099000,0],[1708330100000,0],[1708330101000,0],[1708330102000,0],[1708330103000,0],[1708330104000,0],[1708330105000,0],[1708330106000,0],[1708330107000,0],[1708330108000,0],[1708330109000,0],[1708330110000,0],[1708330111000,0],[1708330112000,0],[1708330113000,0],[1708330114000,0],[1708330115000,0],[1708330116000,0],[1708330117000,0],[1708330118000,0],[1708330119000,0],[1708330120000,0],[1708330121000,0],[1708330122000,0],[1708330123000,0],[1708330124000,0],[1708330125000,0],[1708330126000,0],[1708330127000,0],[1708330128000,0],[1708330129000,0],[1708330130000,0],[1708330131000,0],[1708330132000,0],[1708330133000,0],[1708330134000,0],[1708330135000,0],[1708330136000,0],[1708330137000,0],[1708330138000,0],[1708330139000,0],[1708330140000,0],[1708330141000,0],[1708330142000,0],[1708330143000,0],[1708330144000,0],[1708330145000,0],[1708330146000,0],[1708330147000,0],[1708330148000,0],[1708330149000,0],[1708330150000,0],[1708330151000,0],[1708330152000,0],[1708330153000,0],[1708330154000,0],[1708330155000,0],[1708330156000,0],[1708330157000,0],[1708330158000,0],[1708330159000,0],[1708330160000,0],[1708330161000,0],[1708330162000,0],[1708330163000,0],[1708330164000,0],[1708330165000,0],[1708330166000,0],[1708330167000,0],[1708330168000,0],[1708330169000,0],[1708330170000,0],[1708330171000,0],[1708330172000,0],[1708330173000,0],[1708330174000,0],[1708330175000,0],[1708330176000,0],[1708330177000,0],[1708330178000,0],[1708330179000,0],[1708330180000,0],[1708330181000,0],[1708330182000,0],[1708330183000,0],[1708330184000,0],[1708330185000,0],[1708330186000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#AECAEB',
name: 'validação concorrência transações - d',
data: [
[1708329942000,25],[1708329943000,0],[1708329944000,0],[1708329945000,0],[1708329946000,0],[1708329947000,0],[1708329948000,0],[1708329949000,0],[1708329950000,0],[1708329951000,0],[1708329952000,0],[1708329953000,0],[1708329954000,0],[1708329955000,0],[1708329956000,0],[1708329957000,0],[1708329958000,0],[1708329959000,0],[1708329960000,0],[1708329961000,0],[1708329962000,0],[1708329963000,0],[1708329964000,0],[1708329965000,0],[1708329966000,0],[1708329967000,0],[1708329968000,0],[1708329969000,0],[1708329970000,0],[1708329971000,0],[1708329972000,0],[1708329973000,0],[1708329974000,0],[1708329975000,0],[1708329976000,0],[1708329977000,0],[1708329978000,0],[1708329979000,0],[1708329980000,0],[1708329981000,0],[1708329982000,0],[1708329983000,0],[1708329984000,0],[1708329985000,0],[1708329986000,0],[1708329987000,0],[1708329988000,0],[1708329989000,0],[1708329990000,0],[1708329991000,0],[1708329992000,0],[1708329993000,0],[1708329994000,0],[1708329995000,0],[1708329996000,0],[1708329997000,0],[1708329998000,0],[1708329999000,0],[1708330000000,0],[1708330001000,0],[1708330002000,0],[1708330003000,0],[1708330004000,0],[1708330005000,0],[1708330006000,0],[1708330007000,0],[1708330008000,0],[1708330009000,0],[1708330010000,0],[1708330011000,0],[1708330012000,0],[1708330013000,0],[1708330014000,0],[1708330015000,0],[1708330016000,0],[1708330017000,0],[1708330018000,0],[1708330019000,0],[1708330020000,0],[1708330021000,0],[1708330022000,0],[1708330023000,0],[1708330024000,0],[1708330025000,0],[1708330026000,0],[1708330027000,0],[1708330028000,0],[1708330029000,0],[1708330030000,0],[1708330031000,0],[1708330032000,0],[1708330033000,0],[1708330034000,0],[1708330035000,0],[1708330036000,0],[1708330037000,0],[1708330038000,0],[1708330039000,0],[1708330040000,0],[1708330041000,0],[1708330042000,0],[1708330043000,0],[1708330044000,0],[1708330045000,0],[1708330046000,0],[1708330047000,0],[1708330048000,0],[1708330049000,0],[1708330050000,0],[1708330051000,0],[1708330052000,0],[1708330053000,0],[1708330054000,0],[1708330055000,0],[1708330056000,0],[1708330057000,0],[1708330058000,0],[1708330059000,0],[1708330060000,0],[1708330061000,0],[1708330062000,0],[1708330063000,0],[1708330064000,0],[1708330065000,0],[1708330066000,0],[1708330067000,0],[1708330068000,0],[1708330069000,0],[1708330070000,0],[1708330071000,0],[1708330072000,0],[1708330073000,0],[1708330074000,0],[1708330075000,0],[1708330076000,0],[1708330077000,0],[1708330078000,0],[1708330079000,0],[1708330080000,0],[1708330081000,0],[1708330082000,0],[1708330083000,0],[1708330084000,0],[1708330085000,0],[1708330086000,0],[1708330087000,0],[1708330088000,0],[1708330089000,0],[1708330090000,0],[1708330091000,0],[1708330092000,0],[1708330093000,0],[1708330094000,0],[1708330095000,0],[1708330096000,0],[1708330097000,0],[1708330098000,0],[1708330099000,0],[1708330100000,0],[1708330101000,0],[1708330102000,0],[1708330103000,0],[1708330104000,0],[1708330105000,0],[1708330106000,0],[1708330107000,0],[1708330108000,0],[1708330109000,0],[1708330110000,0],[1708330111000,0],[1708330112000,0],[1708330113000,0],[1708330114000,0],[1708330115000,0],[1708330116000,0],[1708330117000,0],[1708330118000,0],[1708330119000,0],[1708330120000,0],[1708330121000,0],[1708330122000,0],[1708330123000,0],[1708330124000,0],[1708330125000,0],[1708330126000,0],[1708330127000,0],[1708330128000,0],[1708330129000,0],[1708330130000,0],[1708330131000,0],[1708330132000,0],[1708330133000,0],[1708330134000,0],[1708330135000,0],[1708330136000,0],[1708330137000,0],[1708330138000,0],[1708330139000,0],[1708330140000,0],[1708330141000,0],[1708330142000,0],[1708330143000,0],[1708330144000,0],[1708330145000,0],[1708330146000,0],[1708330147000,0],[1708330148000,0],[1708330149000,0],[1708330150000,0],[1708330151000,0],[1708330152000,0],[1708330153000,0],[1708330154000,0],[1708330155000,0],[1708330156000,0],[1708330157000,0],[1708330158000,0],[1708330159000,0],[1708330160000,0],[1708330161000,0],[1708330162000,0],[1708330163000,0],[1708330164000,0],[1708330165000,0],[1708330166000,0],[1708330167000,0],[1708330168000,0],[1708330169000,0],[1708330170000,0],[1708330171000,0],[1708330172000,0],[1708330173000,0],[1708330174000,0],[1708330175000,0],[1708330176000,0],[1708330177000,0],[1708330178000,0],[1708330179000,0],[1708330180000,0],[1708330181000,0],[1708330182000,0],[1708330183000,0],[1708330184000,0],[1708330185000,0],[1708330186000,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: ['3', '9', '15', '21', '27', '33', '39', '45', '51', '57', '63', '69', '75', '81', '87', '93', '99', '104', '110', '116', '122', '128', '134', '140', '146', '152', '158', '164', '170', '176', '182', '188', '194', '200', '206', '212', '218', '224', '230', '236', '242', '248', '254', '260', '266', '272', '278', '284', '290', '296', '301', '307', '313', '319', '325', '331', '337', '343', '349', '355', '361', '367', '373', '379', '385', '391', '397', '403', '409', '415', '421', '427', '433', '439', '445', '451', '457', '463', '469', '475', '481', '487', '493', '498', '504', '510', '516', '522', '528', '534', '540', '546', '552', '558', '564', '570', '576', '582', '588', '594'],
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: [
34.59,14.22,8.76,6.99,5.15,3.74,2.59,1.78,1.35,1.0,0.87,0.61,0.56,0.56,0.47,0.44,0.38,0.32,0.3,0.25,0.35,0.34,0.42,0.38,0.36,0.31,0.34,0.33,0.32,0.32,0.32,0.38,0.43,0.34,0.4,0.41,0.39,0.31,0.2,0.12,0.06,0.05,0.06,0.07,0.08,0.08,0.1,0.1,0.14,0.13,0.1,0.07,0.06,0.11,0.11,0.18,0.2,0.19,0.22,0.19,0.23,0.23,0.26,0.28,0.29,0.33,0.32,0.4,0.35,0.31,0.24,0.23,0.27,0.23,0.24,0.21,0.24,0.24,0.22,0.15,0.11,0.07,0.04,0.02,0.01,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
],
tooltip: { yDecimals: 0, ySuffix: 'ms' }
},
{
type: 'column',
color: '#f15b4f',
name: 'KO',
data: [
0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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([[1708329942,[21,40,51,82,84,86,88,88,89,90]],[1708329943,[2,2,2,2,2,2,2,2,2,2]],[1708329944,[7,26,42,53,53,62,73,74,77,78]],[1708329945,[2,2,2,2,2,2,2,2,2,2]],[1708329946,[0,1,4,9,12,14,16,20,21,23]],[1708329947,[3,6,9,10,10,10,10,10,10,11]],[1708329948,[4,5,5,7,8,8,8,8,8,9]],[1708329949,[5,6,6,8,8,8,8,9,9,10]],[1708329950,[2,5,6,6,6,6,7,7,7,8]],[1708329951,[4,5,5,6,6,7,7,8,9,10]],[1708329952,[2,5,5,7,7,7,7,8,8,9]],[1708329953,[4,4,5,5,5,6,6,6,6,7]],[1708329954,[1,4,5,5,5,5,5,6,8,9]],[1708329955,[2,4,5,6,6,6,8,8,9,9]],[1708329956,[2,5,5,6,6,6,7,9,9,10]],[1708329957,[1,4,5,6,6,7,7,7,7,8]],[1708329958,[2,4,5,5,6,7,8,8,8,9]],[1708329959,[2,4,5,6,6,6,6,7,8,9]],[1708329960,[2,5,5,6,6,6,7,7,8,8]],[1708329961,[3,5,5,6,7,7,8,9,12,13]],[1708329962,[1,4,5,7,7,7,9,11,14,15]],[1708329963,[1,4,5,5,5,6,6,6,7,7]],[1708329964,[1,3,4,5,5,5,7,7,18,21]],[1708329965,[1,3,4,5,5,5,6,8,12,15]],[1708329966,[0,1,4,4,5,5,5,7,9,13]],[1708329967,[1,4,4,4,4,5,5,6,8,12]],[1708329968,[1,3,4,5,5,6,6,8,9,11]],[1708329969,[1,4,5,6,7,8,8,9,12,14]],[1708329970,[1,4,5,6,7,8,8,9,11,12]],[1708329971,[1,4,4,6,6,7,8,9,11,11]],[1708329972,[1,3,4,5,5,5,6,7,8,8]],[1708329973,[1,4,4,5,5,5,6,9,10,10]],[1708329974,[1,4,4,5,6,6,7,8,9,11]],[1708329975,[1,4,5,5,6,6,7,7,9,9]],[1708329976,[1,4,4,5,5,6,6,6,9,9]],[1708329977,[1,4,4,5,5,5,5,7,9,10]],[1708329978,[0,3,4,4,4,4,5,6,9,9]],[1708329979,[1,3,4,5,5,6,6,8,8,11]],[1708329980,[1,4,4,5,5,5,6,7,9,9]],[1708329981,[1,4,4,5,6,7,7,8,10,13]],[1708329982,[1,4,4,5,6,7,7,7,9,9]],[1708329983,[1,3,4,5,5,6,6,6,7,8]],[1708329984,[0,3,4,6,7,10,22,60,84,98]],[1708329985,[1,3,4,4,4,5,6,6,7,8]],[1708329986,[0,1,3,4,4,5,6,6,7,9]],[1708329987,[0,3,3,4,4,5,6,6,9,9]],[1708329988,[0,3,4,4,5,5,6,8,15,19]],[1708329989,[0,3,4,4,5,5,5,5,7,7]],[1708329990,[0,3,4,5,5,5,6,7,8,9]],[1708329991,[1,3,4,5,5,6,7,8,11,16]],[1708329992,[1,4,4,6,7,8,9,10,13,17]],[1708329993,[0,3,4,5,6,6,7,7,10,12]],[1708329994,[0,1,4,5,6,7,8,9,14,18]],[1708329995,[1,3,4,5,5,6,7,8,10,12]],[1708329996,[0,3,4,5,5,6,7,8,9,13]],[1708329997,[0,3,4,4,5,5,6,7,9,12]],[1708329998,[0,2,3,4,4,5,6,7,13,19]],[1708329999,[0,3,4,5,6,6,7,8,11,16]],[1708330000,[0,3,4,5,5,5,7,8,14,17]],[1708330001,[0,3,4,5,5,5,5,6,10,11]],[1708330002,[0,2,3,4,5,5,6,7,10,13]],[1708330003,[0,3,4,5,5,6,7,8,9,12]],[1708330004,[1,3,4,6,7,7,8,12,16,24]],[1708330005,[0,3,3,4,5,5,6,6,7,8]],[1708330006,[0,3,3,4,4,5,5,6,9,13]],[1708330007,[0,3,4,4,4,4,5,6,10,24]],[1708330008,[0,3,4,5,6,6,7,9,13,17]],[1708330009,[0,3,3,4,4,4,5,6,7,9]],[1708330010,[0,2,3,4,4,4,4,5,6,8]],[1708330011,[0,3,3,4,5,6,7,10,14,21]],[1708330012,[0,3,3,4,4,4,5,5,7,8]],[1708330013,[0,3,4,5,5,6,8,13,31,33]],[1708330014,[0,3,4,4,5,5,6,7,10,16]],[1708330015,[0,3,4,5,5,6,6,7,9,11]],[1708330016,[0,3,4,5,6,7,7,10,15,20]],[1708330017,[0,3,3,4,4,5,6,7,11,19]],[1708330018,[0,3,3,4,4,5,6,9,17,19]],[1708330019,[0,2,3,3,4,4,4,5,11,13]],[1708330020,[0,3,3,4,5,6,7,11,20,22]],[1708330021,[0,3,3,4,4,5,6,7,12,19]],[1708330022,[0,3,3,4,4,4,5,6,8,9]],[1708330023,[0,3,3,4,5,5,6,7,10,13]],[1708330024,[0,3,3,4,4,5,5,6,7,10]],[1708330025,[0,3,4,4,5,5,7,12,26,31]],[1708330026,[1,3,3,5,5,5,6,6,7,10]],[1708330027,[0,3,4,4,5,5,6,7,12,14]],[1708330028,[0,3,4,5,5,6,6,7,10,15]],[1708330029,[0,2,4,5,6,6,7,10,21,26]],[1708330030,[1,3,3,4,4,5,6,8,15,19]],[1708330031,[1,3,4,4,5,5,7,12,26,30]],[1708330032,[0,3,4,5,5,5,7,15,19,24]],[1708330033,[0,3,3,5,5,7,10,14,21,25]],[1708330034,[0,3,3,4,4,5,6,6,9,9]],[1708330035,[0,3,3,4,5,6,7,9,28,33]],[1708330036,[0,3,4,5,6,7,8,11,14,17]],[1708330037,[1,3,4,5,5,5,7,12,20,25]],[1708330038,[0,3,4,7,7,11,13,20,27,28]],[1708330039,[1,3,4,5,6,7,8,14,32,35]],[1708330040,[0,3,4,8,10,13,18,24,32,35]],[1708330041,[0,3,3,5,6,6,8,10,14,19]],[1708330042,[1,3,4,6,7,8,9,13,18,19]],[1708330043,[0,3,4,6,8,10,16,21,28,33]],[1708330044,[0,3,3,5,7,8,12,17,24,27]],[1708330045,[0,3,4,6,7,9,11,16,32,37]],[1708330046,[1,3,4,6,7,8,11,16,23,28]],[1708330047,[0,3,4,8,10,11,14,17,21,25]],[1708330048,[0,4,5,10,12,15,19,23,26,31]],[1708330049,[0,4,6,13,16,17,20,24,33,35]],[1708330050,[0,3,5,12,14,16,19,22,29,32]],[1708330051,[0,3,6,11,12,14,17,21,26,31]],[1708330052,[0,3,5,9,10,11,14,18,25,30]],[1708330053,[0,3,4,9,11,13,16,19,26,32]],[1708330054,[0,3,4,7,8,10,11,14,20,22]],[1708330055,[0,3,5,13,14,17,19,22,30,32]],[1708330056,[1,4,8,15,17,20,22,25,28,29]],[1708330057,[0,4,8,16,17,20,22,28,40,44]],[1708330058,[0,23,29,35,37,39,42,46,54,60]],[1708330059,[1,18,27,39,40,42,45,50,58,61]],[1708330060,[1,29,37,48,51,55,59,63,68,77]],[1708330061,[1,50,61,78,84,97,110,117,125,130]],[1708330062,[2,146,162,176,178,182,185,192,201,204]],[1708330063,[1,210,228,280,289,292,296,300,306,310]],[1708330064,[1,284,295,309,312,317,321,326,334,597]],[1708330065,[1,334,345,358,361,363,366,373,384,389]],[1708330066,[1,364,376,388,391,393,396,399,405,410]],[1708330067,[1,406,415,425,427,430,432,435,438,444]],[1708330068,[1,391,401,410,412,415,418,422,426,428]],[1708330069,[2,381,421,434,438,439,442,444,450,456]],[1708330070,[1,452,463,473,475,478,480,485,492,494]],[1708330071,[1,460,471,484,487,490,495,501,510,512]],[1708330072,[1,433,444,458,460,464,468,471,478,485]],[1708330073,[1,413,434,448,452,456,459,464,469,472]],[1708330074,[1,389,396,405,407,410,412,415,419,425]],[1708330075,[1,374,389,407,410,414,418,422,429,433]],[1708330076,[1,345,361,372,376,380,386,393,401,403]],[1708330077,[1,315,331,343,346,349,352,356,360,362]],[1708330078,[1,230,254,269,272,275,278,291,313,321]],[1708330079,[2,202,213,225,228,231,234,238,243,246]],[1708330080,[1,167,185,203,205,207,211,217,223,225]],[1708330081,[1,141,152,160,162,164,170,176,184,186]],[1708330082,[1,139,179,199,204,211,219,222,226,230]],[1708330083,[2,92,103,120,122,125,129,134,139,143]],[1708330084,[1,74,89,102,105,107,110,114,123,127]],[1708330085,[1,14,26,51,55,60,63,67,75,80]],[1708330086,[0,5,11,20,23,26,30,37,46,48]],[1708330087,[0,19,31,40,41,45,48,51,63,68]],[1708330088,[1,6,18,29,32,34,37,41,48,51]],[1708330089,[0,12,18,28,32,36,42,54,71,74]],[1708330090,[1,60,77,95,98,101,104,107,113,118]],[1708330091,[1,11,23,54,62,69,75,83,92,96]],[1708330092,[0,11,19,26,27,29,31,36,41,43]],[1708330093,[0,42,51,59,60,63,65,70,76,79]],[1708330094,[1,12,19,29,31,34,37,44,57,60]],[1708330095,[1,9,15,21,22,24,26,29,34,36]],[1708330096,[1,10,19,26,28,30,32,33,41,43]],[1708330097,[1,6,15,26,27,32,36,41,44,53]],[1708330098,[0,9,18,28,29,32,35,38,43,48]],[1708330099,[2,30,73,85,91,94,97,104,110,113]],[1708330100,[1,52,68,90,93,95,99,103,107,112]],[1708330101,[1,151,195,211,215,218,224,230,235,238]],[1708330102,[1,71,95,119,124,129,131,136,141,149]],[1708330103,[1,5,12,36,40,44,49,55,64,68]],[1708330104,[1,7,17,29,32,36,38,42,49,54]],[1708330105,[0,3,5,14,17,20,22,25,29,33]],[1708330106,[1,9,23,52,56,59,62,65,69,75]],[1708330107,[1,4,10,25,34,39,43,48,53,61]],[1708330108,[1,9,19,27,29,31,33,37,47,50]],[1708330109,[1,20,27,35,38,41,44,49,57,59]],[1708330110,[1,9,18,28,31,36,41,48,53,57]],[1708330111,[0,7,14,22,25,28,34,47,57,60]],[1708330112,[0,5,12,21,23,27,30,33,43,48]],[1708330113,[0,4,8,15,16,18,20,24,37,41]],[1708330114,[0,14,26,52,55,60,62,68,76,81]],[1708330115,[0,4,9,15,16,18,21,24,28,33]],[1708330116,[1,30,38,52,54,56,59,62,70,74]],[1708330117,[1,6,14,25,28,31,36,46,56,59]],[1708330118,[1,8,18,27,30,33,38,42,47,48]],[1708330119,[0,5,9,15,17,19,20,22,25,27]],[1708330120,[0,6,13,24,26,28,31,39,46,49]],[1708330121,[0,8,15,25,28,29,32,34,38,39]],[1708330122,[1,10,19,26,28,31,34,38,44,48]],[1708330123,[0,4,7,17,19,23,26,30,40,44]],[1708330124,[1,6,10,18,20,23,25,28,35,40]],[1708330125,[0,4,7,15,16,20,23,26,29,31]],[1708330126,[0,6,15,23,24,26,28,31,35,37]],[1708330127,[0,3,5,10,12,14,17,20,25,28]],[1708330128,[1,5,7,15,16,20,22,26,34,39]],[1708330129,[1,3,6,15,17,19,21,26,33,36]],[1708330130,[1,11,18,25,27,30,32,37,42,43]],[1708330131,[0,8,19,30,32,34,37,43,48,52]],[1708330132,[1,5,8,17,19,23,29,34,43,45]],[1708330133,[0,4,11,20,22,25,32,42,54,58]],[1708330134,[1,29,42,54,56,59,67,76,88,91]],[1708330135,[1,33,45,52,55,58,62,68,72,74]],[1708330136,[1,19,27,36,86,211,218,221,226,230]],[1708330137,[1,196,205,214,217,219,221,224,232,238]],[1708330138,[1,168,181,192,194,196,197,201,207,210]],[1708330139,[1,127,139,152,155,157,159,162,170,174]],[1708330140,[2,80,93,125,129,132,138,141,145,147]],[1708330141,[1,42,64,75,78,80,83,85,88,90]],[1708330142,[1,10,18,25,28,30,33,36,41,47]],[1708330143,[0,9,19,29,31,34,38,40,47,50]],[1708330144,[1,5,9,15,17,20,24,27,32,36]],[1708330145,[0,4,8,15,17,18,20,24,28,32]],[1708330146,[0,7,12,19,20,22,23,29,44,48]],[1708330147,[1,4,6,9,10,12,14,18,23,27]],[1708330148,[0,7,15,26,30,141,147,157,169,174]],[1708330149,[1,22,68,100,115,126,133,138,144,146]],[1708330150,[1,7,16,26,28,30,33,35,40,46]],[1708330151,[1,7,15,26,28,30,33,39,50,54]],[1708330152,[1,4,8,13,14,16,18,20,28,34]],[1708330153,[0,6,11,17,18,19,21,25,30,32]],[1708330154,[0,11,26,35,37,39,41,45,49,53]],[1708330155,[0,4,5,9,11,13,17,21,25,34]],[1708330156,[0,3,7,26,33,40,48,56,66,69]],[1708330157,[1,10,22,31,34,37,39,42,46,53]],[1708330158,[0,3,6,12,13,15,17,18,21,24]],[1708330159,[0,3,5,12,14,16,19,21,23,29]],[1708330160,[0,4,10,16,18,21,25,31,43,44]],[1708330161,[0,3,6,16,18,20,24,27,30,33]],[1708330162,[0,3,7,14,16,19,21,24,27,30]],[1708330163,[2,10,21,32,34,36,39,43,56,64]],[1708330164,[1,30,41,50,54,57,60,65,71,77]],[1708330165,[0,4,9,14,15,16,18,21,25,28]],[1708330166,[0,7,16,27,29,31,33,36,38,43]],[1708330167,[1,5,9,16,18,21,26,31,34,37]],[1708330168,[1,15,23,31,34,36,40,44,47,52]],[1708330169,[1,9,20,34,36,37,39,41,49,55]],[1708330170,[0,7,17,26,28,30,34,37,42,46]],[1708330171,[0,6,10,17,18,20,22,24,32,37]],[1708330172,[0,4,10,21,24,26,29,34,37,40]],[1708330173,[0,4,7,14,16,17,20,23,29,35]],[1708330174,[1,5,12,23,26,31,36,43,49,55]],[1708330175,[1,4,7,18,22,27,34,40,48,52]],[1708330176,[1,5,12,20,22,26,29,34,42,43]],[1708330177,[0,5,9,20,22,25,30,33,39,41]],[1708330178,[0,3,4,8,10,11,14,18,23,24]],[1708330179,[0,5,13,23,26,29,37,43,52,55]],[1708330180,[1,44,190,205,208,210,214,221,227,233]],[1708330181,[2,134,150,168,170,173,179,184,191,197]],[1708330182,[1,59,81,116,121,124,128,132,137,143]],[1708330183,[1,5,8,14,15,17,20,21,23,26]],[1708330184,[1,5,10,17,19,22,24,27,30,32]],[1708330185,[2,5,8,19,23,26,30,33,36,41]],[1708330186,[0,10,26,40,43,45,48,52,61,86]]]);
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([[1708329942,[25,25,0]],[1708329943,[1,1,0]],[1708329944,[25,25,0]],[1708329945,[1,1,0]],[1708329946,[71,71,0]],[1708329947,[3,3,0]],[1708329948,[6,6,0]],[1708329949,[9,9,0]],[1708329950,[11,11,0]],[1708329951,[13,13,0]],[1708329952,[18,18,0]],[1708329953,[19,19,0]],[1708329954,[24,24,0]],[1708329955,[26,26,0]],[1708329956,[27,27,0]],[1708329957,[32,32,0]],[1708329958,[34,34,0]],[1708329959,[37,37,0]],[1708329960,[39,39,0]],[1708329961,[43,43,0]],[1708329962,[44,44,0]],[1708329963,[48,48,0]],[1708329964,[50,50,0]],[1708329965,[54,54,0]],[1708329966,[56,56,0]],[1708329967,[61,61,0]],[1708329968,[61,61,0]],[1708329969,[65,65,0]],[1708329970,[67,67,0]],[1708329971,[70,70,0]],[1708329972,[73,73,0]],[1708329973,[77,77,0]],[1708329974,[80,80,0]],[1708329975,[81,81,0]],[1708329976,[84,84,0]],[1708329977,[87,87,0]],[1708329978,[91,91,0]],[1708329979,[92,92,0]],[1708329980,[96,96,0]],[1708329981,[98,98,0]],[1708329982,[101,101,0]],[1708329983,[105,105,0]],[1708329984,[107,107,0]],[1708329985,[110,110,0]],[1708329986,[112,112,0]],[1708329987,[116,116,0]],[1708329988,[118,118,0]],[1708329989,[121,121,0]],[1708329990,[123,123,0]],[1708329991,[126,126,0]],[1708329992,[129,129,0]],[1708329993,[133,133,0]],[1708329994,[135,135,0]],[1708329995,[138,138,0]],[1708329996,[141,141,0]],[1708329997,[143,143,0]],[1708329998,[147,147,0]],[1708329999,[149,149,0]],[1708330000,[151,151,0]],[1708330001,[155,155,0]],[1708330002,[158,158,0]],[1708330003,[160,160,0]],[1708330004,[164,164,0]],[1708330005,[164,164,0]],[1708330006,[171,171,0]],[1708330007,[171,171,0]],[1708330008,[174,174,0]],[1708330009,[176,176,0]],[1708330010,[181,181,0]],[1708330011,[183,183,0]],[1708330012,[186,186,0]],[1708330013,[188,188,0]],[1708330014,[192,192,0]],[1708330015,[194,194,0]],[1708330016,[196,196,0]],[1708330017,[199,199,0]],[1708330018,[203,203,0]],[1708330019,[205,205,0]],[1708330020,[207,207,0]],[1708330021,[211,211,0]],[1708330022,[213,213,0]],[1708330023,[217,217,0]],[1708330024,[220,220,0]],[1708330025,[222,222,0]],[1708330026,[225,225,0]],[1708330027,[227,227,0]],[1708330028,[231,231,0]],[1708330029,[233,233,0]],[1708330030,[237,237,0]],[1708330031,[238,238,0]],[1708330032,[243,243,0]],[1708330033,[244,244,0]],[1708330034,[248,248,0]],[1708330035,[250,250,0]],[1708330036,[252,252,0]],[1708330037,[256,256,0]],[1708330038,[259,259,0]],[1708330039,[262,262,0]],[1708330040,[264,264,0]],[1708330041,[266,266,0]],[1708330042,[270,270,0]],[1708330043,[273,273,0]],[1708330044,[275,275,0]],[1708330045,[279,279,0]],[1708330046,[281,281,0]],[1708330047,[283,283,0]],[1708330048,[286,286,0]],[1708330049,[290,290,0]],[1708330050,[292,292,0]],[1708330051,[295,295,0]],[1708330052,[299,299,0]],[1708330053,[300,300,0]],[1708330054,[304,304,0]],[1708330055,[306,306,0]],[1708330056,[309,309,0]],[1708330057,[313,313,0]],[1708330058,[314,314,0]],[1708330059,[318,318,0]],[1708330060,[321,321,0]],[1708330061,[322,322,0]],[1708330062,[327,327,0]],[1708330063,[329,329,0]],[1708330064,[331,331,0]],[1708330065,[334,334,0]],[1708330066,[339,339,0]],[1708330067,[340,340,0]],[1708330068,[340,340,0]],[1708330069,[340,340,0]],[1708330070,[340,340,0]],[1708330071,[339,339,0]],[1708330072,[341,341,0]],[1708330073,[340,340,0]],[1708330074,[340,340,0]],[1708330075,[340,340,0]],[1708330076,[340,340,0]],[1708330077,[340,340,0]],[1708330078,[340,340,0]],[1708330079,[340,340,0]],[1708330080,[340,340,0]],[1708330081,[339,339,0]],[1708330082,[340,340,0]],[1708330083,[340,340,0]],[1708330084,[341,341,0]],[1708330085,[340,340,0]],[1708330086,[339,339,0]],[1708330087,[341,341,0]],[1708330088,[339,339,0]],[1708330089,[341,341,0]],[1708330090,[340,340,0]],[1708330091,[339,339,0]],[1708330092,[340,340,0]],[1708330093,[341,341,0]],[1708330094,[340,340,0]],[1708330095,[340,340,0]],[1708330096,[339,339,0]],[1708330097,[341,341,0]],[1708330098,[340,340,0]],[1708330099,[339,339,0]],[1708330100,[340,340,0]],[1708330101,[341,341,0]],[1708330102,[340,340,0]],[1708330103,[340,340,0]],[1708330104,[339,339,0]],[1708330105,[341,341,0]],[1708330106,[340,340,0]],[1708330107,[340,340,0]],[1708330108,[339,339,0]],[1708330109,[341,341,0]],[1708330110,[340,340,0]],[1708330111,[339,339,0]],[1708330112,[341,341,0]],[1708330113,[339,339,0]],[1708330114,[341,341,0]],[1708330115,[340,340,0]],[1708330116,[340,340,0]],[1708330117,[340,340,0]],[1708330118,[340,340,0]],[1708330119,[340,340,0]],[1708330120,[340,340,0]],[1708330121,[340,340,0]],[1708330122,[340,340,0]],[1708330123,[340,340,0]],[1708330124,[340,340,0]],[1708330125,[339,339,0]],[1708330126,[340,340,0]],[1708330127,[340,340,0]],[1708330128,[341,341,0]],[1708330129,[339,339,0]],[1708330130,[339,339,0]],[1708330131,[342,342,0]],[1708330132,[340,340,0]],[1708330133,[340,340,0]],[1708330134,[340,340,0]],[1708330135,[338,338,0]],[1708330136,[342,342,0]],[1708330137,[339,339,0]],[1708330138,[341,341,0]],[1708330139,[338,338,0]],[1708330140,[342,342,0]],[1708330141,[340,340,0]],[1708330142,[338,338,0]],[1708330143,[342,342,0]],[1708330144,[340,340,0]],[1708330145,[339,339,0]],[1708330146,[341,341,0]],[1708330147,[340,340,0]],[1708330148,[340,340,0]],[1708330149,[340,340,0]],[1708330150,[340,340,0]],[1708330151,[340,340,0]],[1708330152,[340,340,0]],[1708330153,[339,339,0]],[1708330154,[341,341,0]],[1708330155,[340,340,0]],[1708330156,[340,340,0]],[1708330157,[340,340,0]],[1708330158,[339,339,0]],[1708330159,[339,339,0]],[1708330160,[341,341,0]],[1708330161,[341,341,0]],[1708330162,[340,340,0]],[1708330163,[340,340,0]],[1708330164,[339,339,0]],[1708330165,[340,340,0]],[1708330166,[341,341,0]],[1708330167,[339,339,0]],[1708330168,[341,341,0]],[1708330169,[340,340,0]],[1708330170,[338,338,0]],[1708330171,[342,342,0]],[1708330172,[340,340,0]],[1708330173,[340,340,0]],[1708330174,[340,340,0]],[1708330175,[340,340,0]],[1708330176,[340,340,0]],[1708330177,[340,340,0]],[1708330178,[338,338,0]],[1708330179,[342,342,0]],[1708330180,[340,340,0]],[1708330181,[340,340,0]],[1708330182,[340,340,0]],[1708330183,[340,340,0]],[1708330184,[340,340,0]],[1708330185,[340,340,0]],[1708330186,[504,504,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'
}, {
type : 'all',
count : 1,
text : 'All'
}
],
selected : 3,
inputEnabled : false
},
plotOptions: {
series: {
dataGrouping: { enabled: false }
},
area: {
stacking: 'normal'
}
},
xAxis: {
type: 'datetime',
ordinal: false,
maxZoom: 10000 // three days
},
yAxis:[