-
Notifications
You must be signed in to change notification settings - Fork 923
/
Copy pathindex.html
1173 lines (1104 loc) · 93.3 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="shortcut icon" type="image/x-icon" href="style/favicon.ico"/>
<link href="style/style.css" rel="stylesheet" type="text/css" />
<link href="style/bootstrap.min.css" rel="stylesheet" type="text/css" />
<script src="js/jquery-3.5.1.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/gatling.js"></script>
<script src="js/menu.js"></script>
<script src="js/ellipsis.js"></script>
<script src="js/all_sessions.js"></script>
<script src="js/stats.js"></script>
<script src="js/highstock.js"></script>
<script src="js/highcharts-more.js"></script>
<script src="js/theme.js"></script>
<script src="js/unpack.js"></script>
<title>Gatling Stats - Global Information</title>
</head>
<body>
<script>
const storedTheme = localStorage.getItem('theme') || (window.matchMedia("(prefers-color-scheme: dark)").matches ? "dark" : "light");
if (storedTheme) document.documentElement.setAttribute('data-theme', storedTheme)
function toggleTheme() {
const currentTheme = document.documentElement.getAttribute("data-theme");
const targetTheme = currentTheme === "light" ? "dark" : "light";
document.documentElement.setAttribute('data-theme', targetTheme)
localStorage.setItem('theme', targetTheme);
};
</script>
<div class="app-container">
<div class="frise"></div>
<div class="head">
<div class="gatling-open-source">
<a class="gatling-logo gatling-logo-light" href="https://gatling.io" target="blank_" title="Gatling Home Page"><img alt="Gatling" src="style/logo-light.svg"/></a>
<a class="gatling-logo gatling-logo-dark" href="https://gatling.io" target="blank_" title="Gatling Home Page"><img alt="Gatling" src="style/logo-dark.svg"/></a>
<a class="gatling-documentation" href="https://gatling.io/docs/" target="_blank">Documentation</a>
</div>
<div class="nav spacer"></div>
<a class="enterprise" href="https://gatling.io/enterprise/next-step/" target="_blank"><strong>Try</strong>
<img class="logo-enterprise-light" alt="Gatling Enterprise" src="style/logo-enterprise-light.svg"/>
<img class="logo-enterprise-dark" alt="Gatling Enterprise" src="style/logo-enterprise-dark.svg"/>
</a>
<button id="theme-toggle" class="theme-toggle" type="button" onclick="toggleTheme()" aria-label="Toggle user interface mode">
<span class="toggle-dark"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-moon"><path d="M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z"></path></svg></span>
<span class="toggle-light"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-sun"><circle cx="12" cy="12" r="5"></circle><line x1="12" y1="1" x2="12" y2="3"></line><line x1="12" y1="21" x2="12" y2="23"></line><line x1="4.22" y1="4.22" x2="5.64" y2="5.64"></line><line x1="18.36" y1="18.36" x2="19.78" y2="19.78"></line><line x1="1" y1="12" x2="3" y2="12"></line><line x1="21" y1="12" x2="23" y2="12"></line><line x1="4.22" y1="19.78" x2="5.64" y2="18.36"></line><line x1="18.36" y1="5.64" x2="19.78" y2="4.22"></line></svg></span>
</button>
</div>
<div class="container details">
<div class="nav">
<ul></ul>
</div>
<div class="cadre">
<div class="content">
<div class="content-header">
<div class="onglet">
RinhaBackendCrebitosSimulation
</div>
<div class="sous-menu" id="sousMenu">
<div class="sous-menu-spacer">
<div class="item ouvert"><a href="index.html">Global</a></div>
<div class="item "><a id="details_link" href="#">Details</a></div>
</div>
</div>
</div>
<div class="content-in">
<div class="container-article">
<div class="article">
<div class="schema-container">
<div id="ranges" class="schema ranges">
</div>
<div class="schema polar">
<div id="container_number_of_requests"></div>
</div>
<div class="simulation-card">
<div class="simulation-version-information">
<span class="simulation-information-title">Gatling Version</span>
<span class="simulation-information-item">
<span class="simulation-information-label">Version: </span>
<span>3.10.3</span>
</span>
<span class="simulation-information-item">
<span class="simulation-information-label">Released: </span>
<span>2023-12-20</span>
</span>
</div>
<div id="simulation-information" class="simulation-version-information">
<span class="simulation-information-title">Run Information</span>
<div class="simulation-information-container">
<span class="simulation-information-item">
<span class="simulation-information-label">Date: </span>
<span>2024-02-19 16:36:38 GMT</span>
</span>
<span class="simulation-information-item">
<span class="simulation-information-label">Duration: </span>
<span>4m 4s </span>
</span>
<span class="simulation-tooltip simulation-information-item description" title="Description" data-content="Rinha de Backend - 2024/Q1: Crébito - rschio">
<span class="simulation-information-label">Description: </span>
<span>Rinha de Backend - 2024/Q1: Crébito - rschio</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: 'créditos',
data: [
[1708360598000,0],[1708360599000,0],[1708360600000,0],[1708360601000,0],[1708360602000,0],[1708360603000,2],[1708360604000,2],[1708360605000,4],[1708360606000,4],[1708360607000,5],[1708360608000,6],[1708360609000,7],[1708360610000,8],[1708360611000,8],[1708360612000,10],[1708360613000,10],[1708360614000,12],[1708360615000,12],[1708360616000,14],[1708360617000,14],[1708360618000,15],[1708360619000,16],[1708360620000,17],[1708360621000,17],[1708360622000,19],[1708360623000,20],[1708360624000,20],[1708360625000,22],[1708360626000,22],[1708360627000,23],[1708360628000,25],[1708360629000,25],[1708360630000,26],[1708360631000,26],[1708360632000,28],[1708360633000,29],[1708360634000,30],[1708360635000,30],[1708360636000,32],[1708360637000,32],[1708360638000,33],[1708360639000,34],[1708360640000,35],[1708360641000,36],[1708360642000,37],[1708360643000,38],[1708360644000,39],[1708360645000,39],[1708360646000,41],[1708360647000,41],[1708360648000,43],[1708360649000,43],[1708360650000,44],[1708360651000,45],[1708360652000,46],[1708360653000,47],[1708360654000,48],[1708360655000,48],[1708360656000,50],[1708360657000,50],[1708360658000,52],[1708360659000,52],[1708360660000,53],[1708360661000,54],[1708360662000,56],[1708360663000,55],[1708360664000,57],[1708360665000,58],[1708360666000,59],[1708360667000,59],[1708360668000,61],[1708360669000,61],[1708360670000,63],[1708360671000,63],[1708360672000,64],[1708360673000,65],[1708360674000,67],[1708360675000,68],[1708360676000,69],[1708360677000,69],[1708360678000,71],[1708360679000,71],[1708360680000,73],[1708360681000,73],[1708360682000,74],[1708360683000,75],[1708360684000,76],[1708360685000,77],[1708360686000,78],[1708360687000,79],[1708360688000,80],[1708360689000,80],[1708360690000,82],[1708360691000,81],[1708360692000,83],[1708360693000,84],[1708360694000,87],[1708360695000,85],[1708360696000,86],[1708360697000,87],[1708360698000,89],[1708360699000,90],[1708360700000,90],[1708360701000,91],[1708360702000,92],[1708360703000,92],[1708360704000,94],[1708360705000,95],[1708360706000,95],[1708360707000,96],[1708360708000,97],[1708360709000,97],[1708360710000,99],[1708360711000,100],[1708360712000,101],[1708360713000,101],[1708360714000,103],[1708360715000,103],[1708360716000,105],[1708360717000,105],[1708360718000,107],[1708360719000,107],[1708360720000,108],[1708360721000,109],[1708360722000,111],[1708360723000,110],[1708360724000,110],[1708360725000,110],[1708360726000,110],[1708360727000,111],[1708360728000,110],[1708360729000,111],[1708360730000,110],[1708360731000,111],[1708360732000,110],[1708360733000,110],[1708360734000,110],[1708360735000,111],[1708360736000,110],[1708360737000,110],[1708360738000,110],[1708360739000,110],[1708360740000,110],[1708360741000,110],[1708360742000,110],[1708360743000,111],[1708360744000,110],[1708360745000,110],[1708360746000,110],[1708360747000,111],[1708360748000,110],[1708360749000,110],[1708360750000,110],[1708360751000,110],[1708360752000,111],[1708360753000,110],[1708360754000,110],[1708360755000,110],[1708360756000,110],[1708360757000,110],[1708360758000,110],[1708360759000,110],[1708360760000,110],[1708360761000,110],[1708360762000,110],[1708360763000,110],[1708360764000,110],[1708360765000,110],[1708360766000,111],[1708360767000,110],[1708360768000,110],[1708360769000,110],[1708360770000,111],[1708360771000,110],[1708360772000,111],[1708360773000,110],[1708360774000,111],[1708360775000,110],[1708360776000,110],[1708360777000,110],[1708360778000,111],[1708360779000,110],[1708360780000,111],[1708360781000,110],[1708360782000,111],[1708360783000,110],[1708360784000,110],[1708360785000,110],[1708360786000,111],[1708360787000,110],[1708360788000,111],[1708360789000,110],[1708360790000,111],[1708360791000,110],[1708360792000,111],[1708360793000,110],[1708360794000,111],[1708360795000,110],[1708360796000,111],[1708360797000,110],[1708360798000,111],[1708360799000,110],[1708360800000,111],[1708360801000,110],[1708360802000,110],[1708360803000,110],[1708360804000,110],[1708360805000,110],[1708360806000,110],[1708360807000,110],[1708360808000,110],[1708360809000,110],[1708360810000,110],[1708360811000,111],[1708360812000,110],[1708360813000,111],[1708360814000,110],[1708360815000,111],[1708360816000,110],[1708360817000,111],[1708360818000,110],[1708360819000,114],[1708360820000,110],[1708360821000,111],[1708360822000,110],[1708360823000,111],[1708360824000,127],[1708360825000,111],[1708360826000,110],[1708360827000,112],[1708360828000,111],[1708360829000,110],[1708360830000,110],[1708360831000,110],[1708360832000,110],[1708360833000,110],[1708360834000,110],[1708360835000,110],[1708360836000,110],[1708360837000,110],[1708360838000,110],[1708360839000,110],[1708360840000,111],[1708360841000,111],[1708360842000,108]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#68b65c',
name: 'débitos',
data: [
[1708360598000,0],[1708360599000,0],[1708360600000,0],[1708360601000,0],[1708360602000,0],[1708360603000,2],[1708360604000,4],[1708360605000,6],[1708360606000,7],[1708360607000,9],[1708360608000,11],[1708360609000,13],[1708360610000,15],[1708360611000,16],[1708360612000,19],[1708360613000,20],[1708360614000,22],[1708360615000,24],[1708360616000,25],[1708360617000,28],[1708360618000,29],[1708360619000,31],[1708360620000,33],[1708360621000,35],[1708360622000,37],[1708360623000,38],[1708360624000,40],[1708360625000,42],[1708360626000,44],[1708360627000,46],[1708360628000,47],[1708360629000,50],[1708360630000,51],[1708360631000,53],[1708360632000,55],[1708360633000,56],[1708360634000,59],[1708360635000,60],[1708360636000,62],[1708360637000,64],[1708360638000,66],[1708360639000,68],[1708360640000,70],[1708360641000,72],[1708360642000,75],[1708360643000,75],[1708360644000,78],[1708360645000,80],[1708360646000,80],[1708360647000,82],[1708360648000,84],[1708360649000,87],[1708360650000,88],[1708360651000,89],[1708360652000,92],[1708360653000,93],[1708360654000,95],[1708360655000,97],[1708360656000,98],[1708360657000,101],[1708360658000,102],[1708360659000,104],[1708360660000,106],[1708360661000,108],[1708360662000,110],[1708360663000,111],[1708360664000,113],[1708360665000,115],[1708360666000,117],[1708360667000,119],[1708360668000,120],[1708360669000,123],[1708360670000,124],[1708360671000,126],[1708360672000,128],[1708360673000,129],[1708360674000,132],[1708360675000,133],[1708360676000,136],[1708360677000,138],[1708360678000,139],[1708360679000,142],[1708360680000,143],[1708360681000,145],[1708360682000,148],[1708360683000,147],[1708360684000,151],[1708360685000,152],[1708360686000,153],[1708360687000,156],[1708360688000,157],[1708360689000,160],[1708360690000,162],[1708360691000,162],[1708360692000,166],[1708360693000,167],[1708360694000,169],[1708360695000,171],[1708360696000,172],[1708360697000,174],[1708360698000,176],[1708360699000,177],[1708360700000,180],[1708360701000,181],[1708360702000,184],[1708360703000,184],[1708360704000,187],[1708360705000,188],[1708360706000,190],[1708360707000,192],[1708360708000,193],[1708360709000,197],[1708360710000,197],[1708360711000,200],[1708360712000,202],[1708360713000,203],[1708360714000,206],[1708360715000,207],[1708360716000,209],[1708360717000,211],[1708360718000,214],[1708360719000,215],[1708360720000,217],[1708360721000,217],[1708360722000,221],[1708360723000,221],[1708360724000,221],[1708360725000,221],[1708360726000,221],[1708360727000,222],[1708360728000,221],[1708360729000,222],[1708360730000,221],[1708360731000,222],[1708360732000,221],[1708360733000,222],[1708360734000,221],[1708360735000,222],[1708360736000,221],[1708360737000,221],[1708360738000,220],[1708360739000,221],[1708360740000,220],[1708360741000,222],[1708360742000,220],[1708360743000,221],[1708360744000,221],[1708360745000,222],[1708360746000,221],[1708360747000,222],[1708360748000,221],[1708360749000,221],[1708360750000,221],[1708360751000,221],[1708360752000,223],[1708360753000,221],[1708360754000,221],[1708360755000,221],[1708360756000,221],[1708360757000,222],[1708360758000,221],[1708360759000,221],[1708360760000,221],[1708360761000,221],[1708360762000,221],[1708360763000,220],[1708360764000,221],[1708360765000,221],[1708360766000,221],[1708360767000,221],[1708360768000,222],[1708360769000,220],[1708360770000,221],[1708360771000,221],[1708360772000,222],[1708360773000,220],[1708360774000,222],[1708360775000,221],[1708360776000,220],[1708360777000,221],[1708360778000,222],[1708360779000,221],[1708360780000,222],[1708360781000,220],[1708360782000,222],[1708360783000,221],[1708360784000,221],[1708360785000,221],[1708360786000,221],[1708360787000,220],[1708360788000,222],[1708360789000,221],[1708360790000,221],[1708360791000,220],[1708360792000,222],[1708360793000,220],[1708360794000,221],[1708360795000,220],[1708360796000,222],[1708360797000,220],[1708360798000,222],[1708360799000,221],[1708360800000,222],[1708360801000,221],[1708360802000,221],[1708360803000,220],[1708360804000,221],[1708360805000,220],[1708360806000,221],[1708360807000,221],[1708360808000,221],[1708360809000,221],[1708360810000,221],[1708360811000,222],[1708360812000,221],[1708360813000,222],[1708360814000,220],[1708360815000,222],[1708360816000,221],[1708360817000,222],[1708360818000,220],[1708360819000,225],[1708360820000,220],[1708360821000,222],[1708360822000,220],[1708360823000,222],[1708360824000,252],[1708360825000,222],[1708360826000,220],[1708360827000,222],[1708360828000,221],[1708360829000,220],[1708360830000,221],[1708360831000,221],[1708360832000,221],[1708360833000,221],[1708360834000,221],[1708360835000,221],[1708360836000,220],[1708360837000,221],[1708360838000,220],[1708360839000,221],[1708360840000,221],[1708360841000,221],[1708360842000,216]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#f15b4f',
name: 'extratos',
data: [
[1708360598000,0],[1708360599000,0],[1708360600000,0],[1708360601000,0],[1708360602000,1],[1708360603000,2],[1708360604000,1],[1708360605000,1],[1708360606000,1],[1708360607000,1],[1708360608000,2],[1708360609000,1],[1708360610000,2],[1708360611000,2],[1708360612000,1],[1708360613000,2],[1708360614000,2],[1708360615000,2],[1708360616000,2],[1708360617000,2],[1708360618000,2],[1708360619000,2],[1708360620000,3],[1708360621000,2],[1708360622000,3],[1708360623000,2],[1708360624000,3],[1708360625000,2],[1708360626000,3],[1708360627000,3],[1708360628000,3],[1708360629000,3],[1708360630000,3],[1708360631000,3],[1708360632000,3],[1708360633000,4],[1708360634000,3],[1708360635000,3],[1708360636000,4],[1708360637000,3],[1708360638000,4],[1708360639000,4],[1708360640000,4],[1708360641000,4],[1708360642000,4],[1708360643000,4],[1708360644000,4],[1708360645000,4],[1708360646000,4],[1708360647000,4],[1708360648000,5],[1708360649000,4],[1708360650000,5],[1708360651000,5],[1708360652000,4],[1708360653000,5],[1708360654000,5],[1708360655000,5],[1708360656000,5],[1708360657000,5],[1708360658000,5],[1708360659000,5],[1708360660000,6],[1708360661000,5],[1708360662000,6],[1708360663000,5],[1708360664000,6],[1708360665000,5],[1708360666000,6],[1708360667000,6],[1708360668000,6],[1708360669000,6],[1708360670000,6],[1708360671000,6],[1708360672000,6],[1708360673000,7],[1708360674000,6],[1708360675000,6],[1708360676000,7],[1708360677000,6],[1708360678000,7],[1708360679000,7],[1708360680000,7],[1708360681000,7],[1708360682000,7],[1708360683000,7],[1708360684000,7],[1708360685000,7],[1708360686000,7],[1708360687000,7],[1708360688000,8],[1708360689000,7],[1708360690000,8],[1708360691000,8],[1708360692000,7],[1708360693000,8],[1708360694000,8],[1708360695000,8],[1708360696000,8],[1708360697000,8],[1708360698000,8],[1708360699000,8],[1708360700000,9],[1708360701000,8],[1708360702000,9],[1708360703000,8],[1708360704000,9],[1708360705000,8],[1708360706000,9],[1708360707000,9],[1708360708000,9],[1708360709000,9],[1708360710000,9],[1708360711000,9],[1708360712000,9],[1708360713000,10],[1708360714000,9],[1708360715000,9],[1708360716000,10],[1708360717000,9],[1708360718000,10],[1708360719000,10],[1708360720000,10],[1708360721000,10],[1708360722000,10],[1708360723000,10],[1708360724000,10],[1708360725000,10],[1708360726000,10],[1708360727000,10],[1708360728000,10],[1708360729000,10],[1708360730000,10],[1708360731000,10],[1708360732000,10],[1708360733000,10],[1708360734000,10],[1708360735000,10],[1708360736000,10],[1708360737000,10],[1708360738000,10],[1708360739000,10],[1708360740000,10],[1708360741000,10],[1708360742000,10],[1708360743000,10],[1708360744000,10],[1708360745000,10],[1708360746000,10],[1708360747000,10],[1708360748000,10],[1708360749000,10],[1708360750000,10],[1708360751000,10],[1708360752000,10],[1708360753000,10],[1708360754000,10],[1708360755000,10],[1708360756000,10],[1708360757000,10],[1708360758000,10],[1708360759000,10],[1708360760000,10],[1708360761000,10],[1708360762000,10],[1708360763000,10],[1708360764000,10],[1708360765000,10],[1708360766000,10],[1708360767000,10],[1708360768000,10],[1708360769000,10],[1708360770000,10],[1708360771000,10],[1708360772000,10],[1708360773000,10],[1708360774000,10],[1708360775000,10],[1708360776000,10],[1708360777000,10],[1708360778000,10],[1708360779000,10],[1708360780000,10],[1708360781000,10],[1708360782000,10],[1708360783000,10],[1708360784000,10],[1708360785000,10],[1708360786000,10],[1708360787000,10],[1708360788000,10],[1708360789000,10],[1708360790000,10],[1708360791000,10],[1708360792000,10],[1708360793000,10],[1708360794000,10],[1708360795000,10],[1708360796000,10],[1708360797000,10],[1708360798000,10],[1708360799000,10],[1708360800000,10],[1708360801000,10],[1708360802000,10],[1708360803000,10],[1708360804000,10],[1708360805000,10],[1708360806000,10],[1708360807000,10],[1708360808000,10],[1708360809000,10],[1708360810000,10],[1708360811000,10],[1708360812000,10],[1708360813000,10],[1708360814000,10],[1708360815000,10],[1708360816000,10],[1708360817000,10],[1708360818000,10],[1708360819000,11],[1708360820000,10],[1708360821000,10],[1708360822000,10],[1708360823000,10],[1708360824000,12],[1708360825000,10],[1708360826000,10],[1708360827000,10],[1708360828000,10],[1708360829000,10],[1708360830000,10],[1708360831000,10],[1708360832000,10],[1708360833000,10],[1708360834000,10],[1708360835000,10],[1708360836000,10],[1708360837000,10],[1708360838000,10],[1708360839000,10],[1708360840000,10],[1708360841000,10],[1708360842000,9]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FFDD00',
name: 'validações',
data: [
[1708360598000,0],[1708360599000,0],[1708360600000,0],[1708360601000,5],[1708360602000,5],[1708360603000,0],[1708360604000,0],[1708360605000,0],[1708360606000,0],[1708360607000,0],[1708360608000,0],[1708360609000,0],[1708360610000,0],[1708360611000,0],[1708360612000,0],[1708360613000,0],[1708360614000,0],[1708360615000,0],[1708360616000,0],[1708360617000,0],[1708360618000,0],[1708360619000,0],[1708360620000,0],[1708360621000,0],[1708360622000,0],[1708360623000,0],[1708360624000,0],[1708360625000,0],[1708360626000,0],[1708360627000,0],[1708360628000,0],[1708360629000,0],[1708360630000,0],[1708360631000,0],[1708360632000,0],[1708360633000,0],[1708360634000,0],[1708360635000,0],[1708360636000,0],[1708360637000,0],[1708360638000,0],[1708360639000,0],[1708360640000,0],[1708360641000,0],[1708360642000,0],[1708360643000,0],[1708360644000,0],[1708360645000,0],[1708360646000,0],[1708360647000,0],[1708360648000,0],[1708360649000,0],[1708360650000,0],[1708360651000,0],[1708360652000,0],[1708360653000,0],[1708360654000,0],[1708360655000,0],[1708360656000,0],[1708360657000,0],[1708360658000,0],[1708360659000,0],[1708360660000,0],[1708360661000,0],[1708360662000,0],[1708360663000,0],[1708360664000,0],[1708360665000,0],[1708360666000,0],[1708360667000,0],[1708360668000,0],[1708360669000,0],[1708360670000,0],[1708360671000,0],[1708360672000,0],[1708360673000,0],[1708360674000,0],[1708360675000,0],[1708360676000,0],[1708360677000,0],[1708360678000,0],[1708360679000,0],[1708360680000,0],[1708360681000,0],[1708360682000,0],[1708360683000,0],[1708360684000,0],[1708360685000,0],[1708360686000,0],[1708360687000,0],[1708360688000,0],[1708360689000,0],[1708360690000,0],[1708360691000,0],[1708360692000,0],[1708360693000,0],[1708360694000,0],[1708360695000,0],[1708360696000,0],[1708360697000,0],[1708360698000,0],[1708360699000,0],[1708360700000,0],[1708360701000,0],[1708360702000,0],[1708360703000,0],[1708360704000,0],[1708360705000,0],[1708360706000,0],[1708360707000,0],[1708360708000,0],[1708360709000,0],[1708360710000,0],[1708360711000,0],[1708360712000,0],[1708360713000,0],[1708360714000,0],[1708360715000,0],[1708360716000,0],[1708360717000,0],[1708360718000,0],[1708360719000,0],[1708360720000,0],[1708360721000,0],[1708360722000,0],[1708360723000,0],[1708360724000,0],[1708360725000,0],[1708360726000,0],[1708360727000,0],[1708360728000,0],[1708360729000,0],[1708360730000,0],[1708360731000,0],[1708360732000,0],[1708360733000,0],[1708360734000,0],[1708360735000,0],[1708360736000,0],[1708360737000,0],[1708360738000,0],[1708360739000,0],[1708360740000,0],[1708360741000,0],[1708360742000,0],[1708360743000,0],[1708360744000,0],[1708360745000,0],[1708360746000,0],[1708360747000,0],[1708360748000,0],[1708360749000,0],[1708360750000,0],[1708360751000,0],[1708360752000,0],[1708360753000,0],[1708360754000,0],[1708360755000,0],[1708360756000,0],[1708360757000,0],[1708360758000,0],[1708360759000,0],[1708360760000,0],[1708360761000,0],[1708360762000,0],[1708360763000,0],[1708360764000,0],[1708360765000,0],[1708360766000,0],[1708360767000,0],[1708360768000,0],[1708360769000,0],[1708360770000,0],[1708360771000,0],[1708360772000,0],[1708360773000,0],[1708360774000,0],[1708360775000,0],[1708360776000,0],[1708360777000,0],[1708360778000,0],[1708360779000,0],[1708360780000,0],[1708360781000,0],[1708360782000,0],[1708360783000,0],[1708360784000,0],[1708360785000,0],[1708360786000,0],[1708360787000,0],[1708360788000,0],[1708360789000,0],[1708360790000,0],[1708360791000,0],[1708360792000,0],[1708360793000,0],[1708360794000,0],[1708360795000,0],[1708360796000,0],[1708360797000,0],[1708360798000,0],[1708360799000,0],[1708360800000,0],[1708360801000,0],[1708360802000,0],[1708360803000,0],[1708360804000,0],[1708360805000,0],[1708360806000,0],[1708360807000,0],[1708360808000,0],[1708360809000,0],[1708360810000,0],[1708360811000,0],[1708360812000,0],[1708360813000,0],[1708360814000,0],[1708360815000,0],[1708360816000,0],[1708360817000,0],[1708360818000,0],[1708360819000,0],[1708360820000,0],[1708360821000,0],[1708360822000,0],[1708360823000,0],[1708360824000,0],[1708360825000,0],[1708360826000,0],[1708360827000,0],[1708360828000,0],[1708360829000,0],[1708360830000,0],[1708360831000,0],[1708360832000,0],[1708360833000,0],[1708360834000,0],[1708360835000,0],[1708360836000,0],[1708360837000,0],[1708360838000,0],[1708360839000,0],[1708360840000,0],[1708360841000,0],[1708360842000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00D5FF',
name: 'validação HTTP 404',
data: [
[1708360598000,0],[1708360599000,0],[1708360600000,0],[1708360601000,1],[1708360602000,0],[1708360603000,0],[1708360604000,0],[1708360605000,0],[1708360606000,0],[1708360607000,0],[1708360608000,0],[1708360609000,0],[1708360610000,0],[1708360611000,0],[1708360612000,0],[1708360613000,0],[1708360614000,0],[1708360615000,0],[1708360616000,0],[1708360617000,0],[1708360618000,0],[1708360619000,0],[1708360620000,0],[1708360621000,0],[1708360622000,0],[1708360623000,0],[1708360624000,0],[1708360625000,0],[1708360626000,0],[1708360627000,0],[1708360628000,0],[1708360629000,0],[1708360630000,0],[1708360631000,0],[1708360632000,0],[1708360633000,0],[1708360634000,0],[1708360635000,0],[1708360636000,0],[1708360637000,0],[1708360638000,0],[1708360639000,0],[1708360640000,0],[1708360641000,0],[1708360642000,0],[1708360643000,0],[1708360644000,0],[1708360645000,0],[1708360646000,0],[1708360647000,0],[1708360648000,0],[1708360649000,0],[1708360650000,0],[1708360651000,0],[1708360652000,0],[1708360653000,0],[1708360654000,0],[1708360655000,0],[1708360656000,0],[1708360657000,0],[1708360658000,0],[1708360659000,0],[1708360660000,0],[1708360661000,0],[1708360662000,0],[1708360663000,0],[1708360664000,0],[1708360665000,0],[1708360666000,0],[1708360667000,0],[1708360668000,0],[1708360669000,0],[1708360670000,0],[1708360671000,0],[1708360672000,0],[1708360673000,0],[1708360674000,0],[1708360675000,0],[1708360676000,0],[1708360677000,0],[1708360678000,0],[1708360679000,0],[1708360680000,0],[1708360681000,0],[1708360682000,0],[1708360683000,0],[1708360684000,0],[1708360685000,0],[1708360686000,0],[1708360687000,0],[1708360688000,0],[1708360689000,0],[1708360690000,0],[1708360691000,0],[1708360692000,0],[1708360693000,0],[1708360694000,0],[1708360695000,0],[1708360696000,0],[1708360697000,0],[1708360698000,0],[1708360699000,0],[1708360700000,0],[1708360701000,0],[1708360702000,0],[1708360703000,0],[1708360704000,0],[1708360705000,0],[1708360706000,0],[1708360707000,0],[1708360708000,0],[1708360709000,0],[1708360710000,0],[1708360711000,0],[1708360712000,0],[1708360713000,0],[1708360714000,0],[1708360715000,0],[1708360716000,0],[1708360717000,0],[1708360718000,0],[1708360719000,0],[1708360720000,0],[1708360721000,0],[1708360722000,0],[1708360723000,0],[1708360724000,0],[1708360725000,0],[1708360726000,0],[1708360727000,0],[1708360728000,0],[1708360729000,0],[1708360730000,0],[1708360731000,0],[1708360732000,0],[1708360733000,0],[1708360734000,0],[1708360735000,0],[1708360736000,0],[1708360737000,0],[1708360738000,0],[1708360739000,0],[1708360740000,0],[1708360741000,0],[1708360742000,0],[1708360743000,0],[1708360744000,0],[1708360745000,0],[1708360746000,0],[1708360747000,0],[1708360748000,0],[1708360749000,0],[1708360750000,0],[1708360751000,0],[1708360752000,0],[1708360753000,0],[1708360754000,0],[1708360755000,0],[1708360756000,0],[1708360757000,0],[1708360758000,0],[1708360759000,0],[1708360760000,0],[1708360761000,0],[1708360762000,0],[1708360763000,0],[1708360764000,0],[1708360765000,0],[1708360766000,0],[1708360767000,0],[1708360768000,0],[1708360769000,0],[1708360770000,0],[1708360771000,0],[1708360772000,0],[1708360773000,0],[1708360774000,0],[1708360775000,0],[1708360776000,0],[1708360777000,0],[1708360778000,0],[1708360779000,0],[1708360780000,0],[1708360781000,0],[1708360782000,0],[1708360783000,0],[1708360784000,0],[1708360785000,0],[1708360786000,0],[1708360787000,0],[1708360788000,0],[1708360789000,0],[1708360790000,0],[1708360791000,0],[1708360792000,0],[1708360793000,0],[1708360794000,0],[1708360795000,0],[1708360796000,0],[1708360797000,0],[1708360798000,0],[1708360799000,0],[1708360800000,0],[1708360801000,0],[1708360802000,0],[1708360803000,0],[1708360804000,0],[1708360805000,0],[1708360806000,0],[1708360807000,0],[1708360808000,0],[1708360809000,0],[1708360810000,0],[1708360811000,0],[1708360812000,0],[1708360813000,0],[1708360814000,0],[1708360815000,0],[1708360816000,0],[1708360817000,0],[1708360818000,0],[1708360819000,0],[1708360820000,0],[1708360821000,0],[1708360822000,0],[1708360823000,0],[1708360824000,0],[1708360825000,0],[1708360826000,0],[1708360827000,0],[1708360828000,0],[1708360829000,0],[1708360830000,0],[1708360831000,0],[1708360832000,0],[1708360833000,0],[1708360834000,0],[1708360835000,0],[1708360836000,0],[1708360837000,0],[1708360838000,0],[1708360839000,0],[1708360840000,0],[1708360841000,0],[1708360842000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00FF00',
name: 'validação concorrência saldo - 0',
data: [
[1708360598000,0],[1708360599000,0],[1708360600000,1],[1708360601000,0],[1708360602000,0],[1708360603000,0],[1708360604000,0],[1708360605000,0],[1708360606000,0],[1708360607000,0],[1708360608000,0],[1708360609000,0],[1708360610000,0],[1708360611000,0],[1708360612000,0],[1708360613000,0],[1708360614000,0],[1708360615000,0],[1708360616000,0],[1708360617000,0],[1708360618000,0],[1708360619000,0],[1708360620000,0],[1708360621000,0],[1708360622000,0],[1708360623000,0],[1708360624000,0],[1708360625000,0],[1708360626000,0],[1708360627000,0],[1708360628000,0],[1708360629000,0],[1708360630000,0],[1708360631000,0],[1708360632000,0],[1708360633000,0],[1708360634000,0],[1708360635000,0],[1708360636000,0],[1708360637000,0],[1708360638000,0],[1708360639000,0],[1708360640000,0],[1708360641000,0],[1708360642000,0],[1708360643000,0],[1708360644000,0],[1708360645000,0],[1708360646000,0],[1708360647000,0],[1708360648000,0],[1708360649000,0],[1708360650000,0],[1708360651000,0],[1708360652000,0],[1708360653000,0],[1708360654000,0],[1708360655000,0],[1708360656000,0],[1708360657000,0],[1708360658000,0],[1708360659000,0],[1708360660000,0],[1708360661000,0],[1708360662000,0],[1708360663000,0],[1708360664000,0],[1708360665000,0],[1708360666000,0],[1708360667000,0],[1708360668000,0],[1708360669000,0],[1708360670000,0],[1708360671000,0],[1708360672000,0],[1708360673000,0],[1708360674000,0],[1708360675000,0],[1708360676000,0],[1708360677000,0],[1708360678000,0],[1708360679000,0],[1708360680000,0],[1708360681000,0],[1708360682000,0],[1708360683000,0],[1708360684000,0],[1708360685000,0],[1708360686000,0],[1708360687000,0],[1708360688000,0],[1708360689000,0],[1708360690000,0],[1708360691000,0],[1708360692000,0],[1708360693000,0],[1708360694000,0],[1708360695000,0],[1708360696000,0],[1708360697000,0],[1708360698000,0],[1708360699000,0],[1708360700000,0],[1708360701000,0],[1708360702000,0],[1708360703000,0],[1708360704000,0],[1708360705000,0],[1708360706000,0],[1708360707000,0],[1708360708000,0],[1708360709000,0],[1708360710000,0],[1708360711000,0],[1708360712000,0],[1708360713000,0],[1708360714000,0],[1708360715000,0],[1708360716000,0],[1708360717000,0],[1708360718000,0],[1708360719000,0],[1708360720000,0],[1708360721000,0],[1708360722000,0],[1708360723000,0],[1708360724000,0],[1708360725000,0],[1708360726000,0],[1708360727000,0],[1708360728000,0],[1708360729000,0],[1708360730000,0],[1708360731000,0],[1708360732000,0],[1708360733000,0],[1708360734000,0],[1708360735000,0],[1708360736000,0],[1708360737000,0],[1708360738000,0],[1708360739000,0],[1708360740000,0],[1708360741000,0],[1708360742000,0],[1708360743000,0],[1708360744000,0],[1708360745000,0],[1708360746000,0],[1708360747000,0],[1708360748000,0],[1708360749000,0],[1708360750000,0],[1708360751000,0],[1708360752000,0],[1708360753000,0],[1708360754000,0],[1708360755000,0],[1708360756000,0],[1708360757000,0],[1708360758000,0],[1708360759000,0],[1708360760000,0],[1708360761000,0],[1708360762000,0],[1708360763000,0],[1708360764000,0],[1708360765000,0],[1708360766000,0],[1708360767000,0],[1708360768000,0],[1708360769000,0],[1708360770000,0],[1708360771000,0],[1708360772000,0],[1708360773000,0],[1708360774000,0],[1708360775000,0],[1708360776000,0],[1708360777000,0],[1708360778000,0],[1708360779000,0],[1708360780000,0],[1708360781000,0],[1708360782000,0],[1708360783000,0],[1708360784000,0],[1708360785000,0],[1708360786000,0],[1708360787000,0],[1708360788000,0],[1708360789000,0],[1708360790000,0],[1708360791000,0],[1708360792000,0],[1708360793000,0],[1708360794000,0],[1708360795000,0],[1708360796000,0],[1708360797000,0],[1708360798000,0],[1708360799000,0],[1708360800000,0],[1708360801000,0],[1708360802000,0],[1708360803000,0],[1708360804000,0],[1708360805000,0],[1708360806000,0],[1708360807000,0],[1708360808000,0],[1708360809000,0],[1708360810000,0],[1708360811000,0],[1708360812000,0],[1708360813000,0],[1708360814000,0],[1708360815000,0],[1708360816000,0],[1708360817000,0],[1708360818000,0],[1708360819000,0],[1708360820000,0],[1708360821000,0],[1708360822000,0],[1708360823000,0],[1708360824000,0],[1708360825000,0],[1708360826000,0],[1708360827000,0],[1708360828000,0],[1708360829000,0],[1708360830000,0],[1708360831000,0],[1708360832000,0],[1708360833000,0],[1708360834000,0],[1708360835000,0],[1708360836000,0],[1708360837000,0],[1708360838000,0],[1708360839000,0],[1708360840000,0],[1708360841000,0],[1708360842000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#9D00FF',
name: 'validação concorrência transações - c',
data: [
[1708360598000,0],[1708360599000,25],[1708360600000,24],[1708360601000,0],[1708360602000,0],[1708360603000,0],[1708360604000,0],[1708360605000,0],[1708360606000,0],[1708360607000,0],[1708360608000,0],[1708360609000,0],[1708360610000,0],[1708360611000,0],[1708360612000,0],[1708360613000,0],[1708360614000,0],[1708360615000,0],[1708360616000,0],[1708360617000,0],[1708360618000,0],[1708360619000,0],[1708360620000,0],[1708360621000,0],[1708360622000,0],[1708360623000,0],[1708360624000,0],[1708360625000,0],[1708360626000,0],[1708360627000,0],[1708360628000,0],[1708360629000,0],[1708360630000,0],[1708360631000,0],[1708360632000,0],[1708360633000,0],[1708360634000,0],[1708360635000,0],[1708360636000,0],[1708360637000,0],[1708360638000,0],[1708360639000,0],[1708360640000,0],[1708360641000,0],[1708360642000,0],[1708360643000,0],[1708360644000,0],[1708360645000,0],[1708360646000,0],[1708360647000,0],[1708360648000,0],[1708360649000,0],[1708360650000,0],[1708360651000,0],[1708360652000,0],[1708360653000,0],[1708360654000,0],[1708360655000,0],[1708360656000,0],[1708360657000,0],[1708360658000,0],[1708360659000,0],[1708360660000,0],[1708360661000,0],[1708360662000,0],[1708360663000,0],[1708360664000,0],[1708360665000,0],[1708360666000,0],[1708360667000,0],[1708360668000,0],[1708360669000,0],[1708360670000,0],[1708360671000,0],[1708360672000,0],[1708360673000,0],[1708360674000,0],[1708360675000,0],[1708360676000,0],[1708360677000,0],[1708360678000,0],[1708360679000,0],[1708360680000,0],[1708360681000,0],[1708360682000,0],[1708360683000,0],[1708360684000,0],[1708360685000,0],[1708360686000,0],[1708360687000,0],[1708360688000,0],[1708360689000,0],[1708360690000,0],[1708360691000,0],[1708360692000,0],[1708360693000,0],[1708360694000,0],[1708360695000,0],[1708360696000,0],[1708360697000,0],[1708360698000,0],[1708360699000,0],[1708360700000,0],[1708360701000,0],[1708360702000,0],[1708360703000,0],[1708360704000,0],[1708360705000,0],[1708360706000,0],[1708360707000,0],[1708360708000,0],[1708360709000,0],[1708360710000,0],[1708360711000,0],[1708360712000,0],[1708360713000,0],[1708360714000,0],[1708360715000,0],[1708360716000,0],[1708360717000,0],[1708360718000,0],[1708360719000,0],[1708360720000,0],[1708360721000,0],[1708360722000,0],[1708360723000,0],[1708360724000,0],[1708360725000,0],[1708360726000,0],[1708360727000,0],[1708360728000,0],[1708360729000,0],[1708360730000,0],[1708360731000,0],[1708360732000,0],[1708360733000,0],[1708360734000,0],[1708360735000,0],[1708360736000,0],[1708360737000,0],[1708360738000,0],[1708360739000,0],[1708360740000,0],[1708360741000,0],[1708360742000,0],[1708360743000,0],[1708360744000,0],[1708360745000,0],[1708360746000,0],[1708360747000,0],[1708360748000,0],[1708360749000,0],[1708360750000,0],[1708360751000,0],[1708360752000,0],[1708360753000,0],[1708360754000,0],[1708360755000,0],[1708360756000,0],[1708360757000,0],[1708360758000,0],[1708360759000,0],[1708360760000,0],[1708360761000,0],[1708360762000,0],[1708360763000,0],[1708360764000,0],[1708360765000,0],[1708360766000,0],[1708360767000,0],[1708360768000,0],[1708360769000,0],[1708360770000,0],[1708360771000,0],[1708360772000,0],[1708360773000,0],[1708360774000,0],[1708360775000,0],[1708360776000,0],[1708360777000,0],[1708360778000,0],[1708360779000,0],[1708360780000,0],[1708360781000,0],[1708360782000,0],[1708360783000,0],[1708360784000,0],[1708360785000,0],[1708360786000,0],[1708360787000,0],[1708360788000,0],[1708360789000,0],[1708360790000,0],[1708360791000,0],[1708360792000,0],[1708360793000,0],[1708360794000,0],[1708360795000,0],[1708360796000,0],[1708360797000,0],[1708360798000,0],[1708360799000,0],[1708360800000,0],[1708360801000,0],[1708360802000,0],[1708360803000,0],[1708360804000,0],[1708360805000,0],[1708360806000,0],[1708360807000,0],[1708360808000,0],[1708360809000,0],[1708360810000,0],[1708360811000,0],[1708360812000,0],[1708360813000,0],[1708360814000,0],[1708360815000,0],[1708360816000,0],[1708360817000,0],[1708360818000,0],[1708360819000,0],[1708360820000,0],[1708360821000,0],[1708360822000,0],[1708360823000,0],[1708360824000,0],[1708360825000,0],[1708360826000,0],[1708360827000,0],[1708360828000,0],[1708360829000,0],[1708360830000,0],[1708360831000,0],[1708360832000,0],[1708360833000,0],[1708360834000,0],[1708360835000,0],[1708360836000,0],[1708360837000,0],[1708360838000,0],[1708360839000,0],[1708360840000,0],[1708360841000,0],[1708360842000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FF00E1',
name: 'validação concorrência saldo - -25',
data: [
[1708360598000,1],[1708360599000,1],[1708360600000,0],[1708360601000,0],[1708360602000,0],[1708360603000,0],[1708360604000,0],[1708360605000,0],[1708360606000,0],[1708360607000,0],[1708360608000,0],[1708360609000,0],[1708360610000,0],[1708360611000,0],[1708360612000,0],[1708360613000,0],[1708360614000,0],[1708360615000,0],[1708360616000,0],[1708360617000,0],[1708360618000,0],[1708360619000,0],[1708360620000,0],[1708360621000,0],[1708360622000,0],[1708360623000,0],[1708360624000,0],[1708360625000,0],[1708360626000,0],[1708360627000,0],[1708360628000,0],[1708360629000,0],[1708360630000,0],[1708360631000,0],[1708360632000,0],[1708360633000,0],[1708360634000,0],[1708360635000,0],[1708360636000,0],[1708360637000,0],[1708360638000,0],[1708360639000,0],[1708360640000,0],[1708360641000,0],[1708360642000,0],[1708360643000,0],[1708360644000,0],[1708360645000,0],[1708360646000,0],[1708360647000,0],[1708360648000,0],[1708360649000,0],[1708360650000,0],[1708360651000,0],[1708360652000,0],[1708360653000,0],[1708360654000,0],[1708360655000,0],[1708360656000,0],[1708360657000,0],[1708360658000,0],[1708360659000,0],[1708360660000,0],[1708360661000,0],[1708360662000,0],[1708360663000,0],[1708360664000,0],[1708360665000,0],[1708360666000,0],[1708360667000,0],[1708360668000,0],[1708360669000,0],[1708360670000,0],[1708360671000,0],[1708360672000,0],[1708360673000,0],[1708360674000,0],[1708360675000,0],[1708360676000,0],[1708360677000,0],[1708360678000,0],[1708360679000,0],[1708360680000,0],[1708360681000,0],[1708360682000,0],[1708360683000,0],[1708360684000,0],[1708360685000,0],[1708360686000,0],[1708360687000,0],[1708360688000,0],[1708360689000,0],[1708360690000,0],[1708360691000,0],[1708360692000,0],[1708360693000,0],[1708360694000,0],[1708360695000,0],[1708360696000,0],[1708360697000,0],[1708360698000,0],[1708360699000,0],[1708360700000,0],[1708360701000,0],[1708360702000,0],[1708360703000,0],[1708360704000,0],[1708360705000,0],[1708360706000,0],[1708360707000,0],[1708360708000,0],[1708360709000,0],[1708360710000,0],[1708360711000,0],[1708360712000,0],[1708360713000,0],[1708360714000,0],[1708360715000,0],[1708360716000,0],[1708360717000,0],[1708360718000,0],[1708360719000,0],[1708360720000,0],[1708360721000,0],[1708360722000,0],[1708360723000,0],[1708360724000,0],[1708360725000,0],[1708360726000,0],[1708360727000,0],[1708360728000,0],[1708360729000,0],[1708360730000,0],[1708360731000,0],[1708360732000,0],[1708360733000,0],[1708360734000,0],[1708360735000,0],[1708360736000,0],[1708360737000,0],[1708360738000,0],[1708360739000,0],[1708360740000,0],[1708360741000,0],[1708360742000,0],[1708360743000,0],[1708360744000,0],[1708360745000,0],[1708360746000,0],[1708360747000,0],[1708360748000,0],[1708360749000,0],[1708360750000,0],[1708360751000,0],[1708360752000,0],[1708360753000,0],[1708360754000,0],[1708360755000,0],[1708360756000,0],[1708360757000,0],[1708360758000,0],[1708360759000,0],[1708360760000,0],[1708360761000,0],[1708360762000,0],[1708360763000,0],[1708360764000,0],[1708360765000,0],[1708360766000,0],[1708360767000,0],[1708360768000,0],[1708360769000,0],[1708360770000,0],[1708360771000,0],[1708360772000,0],[1708360773000,0],[1708360774000,0],[1708360775000,0],[1708360776000,0],[1708360777000,0],[1708360778000,0],[1708360779000,0],[1708360780000,0],[1708360781000,0],[1708360782000,0],[1708360783000,0],[1708360784000,0],[1708360785000,0],[1708360786000,0],[1708360787000,0],[1708360788000,0],[1708360789000,0],[1708360790000,0],[1708360791000,0],[1708360792000,0],[1708360793000,0],[1708360794000,0],[1708360795000,0],[1708360796000,0],[1708360797000,0],[1708360798000,0],[1708360799000,0],[1708360800000,0],[1708360801000,0],[1708360802000,0],[1708360803000,0],[1708360804000,0],[1708360805000,0],[1708360806000,0],[1708360807000,0],[1708360808000,0],[1708360809000,0],[1708360810000,0],[1708360811000,0],[1708360812000,0],[1708360813000,0],[1708360814000,0],[1708360815000,0],[1708360816000,0],[1708360817000,0],[1708360818000,0],[1708360819000,0],[1708360820000,0],[1708360821000,0],[1708360822000,0],[1708360823000,0],[1708360824000,0],[1708360825000,0],[1708360826000,0],[1708360827000,0],[1708360828000,0],[1708360829000,0],[1708360830000,0],[1708360831000,0],[1708360832000,0],[1708360833000,0],[1708360834000,0],[1708360835000,0],[1708360836000,0],[1708360837000,0],[1708360838000,0],[1708360839000,0],[1708360840000,0],[1708360841000,0],[1708360842000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#AECAEB',
name: 'validação concorrência transações - d',
data: [
[1708360598000,25],[1708360599000,0],[1708360600000,0],[1708360601000,0],[1708360602000,0],[1708360603000,0],[1708360604000,0],[1708360605000,0],[1708360606000,0],[1708360607000,0],[1708360608000,0],[1708360609000,0],[1708360610000,0],[1708360611000,0],[1708360612000,0],[1708360613000,0],[1708360614000,0],[1708360615000,0],[1708360616000,0],[1708360617000,0],[1708360618000,0],[1708360619000,0],[1708360620000,0],[1708360621000,0],[1708360622000,0],[1708360623000,0],[1708360624000,0],[1708360625000,0],[1708360626000,0],[1708360627000,0],[1708360628000,0],[1708360629000,0],[1708360630000,0],[1708360631000,0],[1708360632000,0],[1708360633000,0],[1708360634000,0],[1708360635000,0],[1708360636000,0],[1708360637000,0],[1708360638000,0],[1708360639000,0],[1708360640000,0],[1708360641000,0],[1708360642000,0],[1708360643000,0],[1708360644000,0],[1708360645000,0],[1708360646000,0],[1708360647000,0],[1708360648000,0],[1708360649000,0],[1708360650000,0],[1708360651000,0],[1708360652000,0],[1708360653000,0],[1708360654000,0],[1708360655000,0],[1708360656000,0],[1708360657000,0],[1708360658000,0],[1708360659000,0],[1708360660000,0],[1708360661000,0],[1708360662000,0],[1708360663000,0],[1708360664000,0],[1708360665000,0],[1708360666000,0],[1708360667000,0],[1708360668000,0],[1708360669000,0],[1708360670000,0],[1708360671000,0],[1708360672000,0],[1708360673000,0],[1708360674000,0],[1708360675000,0],[1708360676000,0],[1708360677000,0],[1708360678000,0],[1708360679000,0],[1708360680000,0],[1708360681000,0],[1708360682000,0],[1708360683000,0],[1708360684000,0],[1708360685000,0],[1708360686000,0],[1708360687000,0],[1708360688000,0],[1708360689000,0],[1708360690000,0],[1708360691000,0],[1708360692000,0],[1708360693000,0],[1708360694000,0],[1708360695000,0],[1708360696000,0],[1708360697000,0],[1708360698000,0],[1708360699000,0],[1708360700000,0],[1708360701000,0],[1708360702000,0],[1708360703000,0],[1708360704000,0],[1708360705000,0],[1708360706000,0],[1708360707000,0],[1708360708000,0],[1708360709000,0],[1708360710000,0],[1708360711000,0],[1708360712000,0],[1708360713000,0],[1708360714000,0],[1708360715000,0],[1708360716000,0],[1708360717000,0],[1708360718000,0],[1708360719000,0],[1708360720000,0],[1708360721000,0],[1708360722000,0],[1708360723000,0],[1708360724000,0],[1708360725000,0],[1708360726000,0],[1708360727000,0],[1708360728000,0],[1708360729000,0],[1708360730000,0],[1708360731000,0],[1708360732000,0],[1708360733000,0],[1708360734000,0],[1708360735000,0],[1708360736000,0],[1708360737000,0],[1708360738000,0],[1708360739000,0],[1708360740000,0],[1708360741000,0],[1708360742000,0],[1708360743000,0],[1708360744000,0],[1708360745000,0],[1708360746000,0],[1708360747000,0],[1708360748000,0],[1708360749000,0],[1708360750000,0],[1708360751000,0],[1708360752000,0],[1708360753000,0],[1708360754000,0],[1708360755000,0],[1708360756000,0],[1708360757000,0],[1708360758000,0],[1708360759000,0],[1708360760000,0],[1708360761000,0],[1708360762000,0],[1708360763000,0],[1708360764000,0],[1708360765000,0],[1708360766000,0],[1708360767000,0],[1708360768000,0],[1708360769000,0],[1708360770000,0],[1708360771000,0],[1708360772000,0],[1708360773000,0],[1708360774000,0],[1708360775000,0],[1708360776000,0],[1708360777000,0],[1708360778000,0],[1708360779000,0],[1708360780000,0],[1708360781000,0],[1708360782000,0],[1708360783000,0],[1708360784000,0],[1708360785000,0],[1708360786000,0],[1708360787000,0],[1708360788000,0],[1708360789000,0],[1708360790000,0],[1708360791000,0],[1708360792000,0],[1708360793000,0],[1708360794000,0],[1708360795000,0],[1708360796000,0],[1708360797000,0],[1708360798000,0],[1708360799000,0],[1708360800000,0],[1708360801000,0],[1708360802000,0],[1708360803000,0],[1708360804000,0],[1708360805000,0],[1708360806000,0],[1708360807000,0],[1708360808000,0],[1708360809000,0],[1708360810000,0],[1708360811000,0],[1708360812000,0],[1708360813000,0],[1708360814000,0],[1708360815000,0],[1708360816000,0],[1708360817000,0],[1708360818000,0],[1708360819000,0],[1708360820000,0],[1708360821000,0],[1708360822000,0],[1708360823000,0],[1708360824000,0],[1708360825000,0],[1708360826000,0],[1708360827000,0],[1708360828000,0],[1708360829000,0],[1708360830000,0],[1708360831000,0],[1708360832000,0],[1708360833000,0],[1708360834000,0],[1708360835000,0],[1708360836000,0],[1708360837000,0],[1708360838000,0],[1708360839000,0],[1708360840000,0],[1708360841000,0],[1708360842000,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: ['2', '6', '10', '14', '17', '21', '25', '29', '33', '37', '41', '45', '48', '52', '56', '60', '64', '68', '72', '75', '79', '83', '87', '91', '95', '99', '103', '106', '110', '114', '118', '122', '126', '130', '134', '137', '141', '145', '149', '153', '157', '161', '164', '168', '172', '176', '180', '184', '188', '192', '195', '199', '203', '207', '211', '215', '219', '223', '226', '230', '234', '238', '242', '246', '250', '253', '257', '261', '265', '269', '273', '277', '281', '284', '288', '292', '296', '300', '304', '308', '312', '315', '319', '323', '327', '331', '335', '339', '342', '346', '350', '354', '358', '362', '366', '370', '373', '377', '381', '385'],
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: [
53.95,37.88,6.33,0.62,0.18,0.09,0.07,0.06,0.05,0.05,0.04,0.07,0.05,0.03,0.04,0.04,0.03,0.04,0.02,0.02,0.01,0.02,0.01,0.0,0.0,0.01,0.02,0.0,0.01,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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([[1708360598,[30,48,67,85,92,101,101,103,108,110]],[1708360599,[5,5,5,5,5,5,5,5,5,5]],[1708360600,[10,25,38,48,50,56,58,60,63,64]],[1708360601,[5,5,5,5,5,5,5,5,5,5]],[1708360602,[0,3,6,9,11,13,18,21,24,29]],[1708360603,[6,6,7,9,9,9,10,10,10,11]],[1708360604,[4,5,5,5,6,6,6,6,6,7]],[1708360605,[4,4,5,5,5,5,6,6,6,6]],[1708360606,[4,5,5,5,5,5,6,6,6,7]],[1708360607,[4,5,5,5,5,5,5,6,7,8]],[1708360608,[4,4,5,5,5,6,6,6,6,7]],[1708360609,[4,4,5,5,5,6,6,7,7,8]],[1708360610,[3,4,4,5,5,6,6,7,9,10]],[1708360611,[4,4,5,5,6,6,6,7,9,10]],[1708360612,[3,4,5,6,6,7,7,7,8,8]],[1708360613,[4,4,5,5,5,6,6,8,11,13]],[1708360614,[3,4,4,5,5,6,6,7,9,11]],[1708360615,[3,4,4,5,5,5,6,7,8,10]],[1708360616,[3,4,4,5,5,6,6,7,8,8]],[1708360617,[3,4,4,5,5,6,7,8,10,10]],[1708360618,[2,4,4,4,5,5,5,5,6,6]],[1708360619,[2,4,6,103,229,270,305,349,375,387]],[1708360620,[1,4,4,5,7,45,91,159,197,204]],[1708360621,[1,4,4,4,4,4,5,5,6,7]],[1708360622,[1,3,4,4,4,4,4,5,6,8]],[1708360623,[1,3,3,4,4,4,4,5,6,6]],[1708360624,[1,3,4,4,5,5,5,6,6,6]],[1708360625,[1,3,4,4,4,4,5,5,7,7]],[1708360626,[1,3,4,4,4,5,5,5,10,12]],[1708360627,[1,3,4,5,5,5,6,6,7,7]],[1708360628,[1,3,4,4,4,5,6,6,7,11]],[1708360629,[1,3,4,4,4,4,5,5,6,9]],[1708360630,[1,3,3,4,4,4,5,6,9,9]],[1708360631,[1,3,3,4,4,4,5,5,6,7]],[1708360632,[1,3,4,4,4,4,5,5,5,9]],[1708360633,[1,3,3,4,4,4,5,5,6,7]],[1708360634,[1,3,3,4,4,4,4,5,6,6]],[1708360635,[2,3,4,4,5,5,5,6,9,9]],[1708360636,[1,3,4,4,5,5,6,7,10,10]],[1708360637,[1,3,4,4,5,5,6,7,14,15]],[1708360638,[1,3,4,5,5,5,6,7,11,13]],[1708360639,[1,3,4,4,4,5,5,5,6,6]],[1708360640,[1,3,4,4,4,4,5,6,7,10]],[1708360641,[1,3,3,4,4,4,5,6,8,11]],[1708360642,[2,3,4,4,4,5,5,5,7,8]],[1708360643,[1,3,3,4,4,4,5,5,6,11]],[1708360644,[1,3,3,4,4,4,4,5,7,11]],[1708360645,[1,3,3,4,4,5,5,8,9,11]],[1708360646,[1,3,3,4,4,5,5,7,9,11]],[1708360647,[1,3,3,4,4,4,4,5,7,8]],[1708360648,[1,3,3,4,4,4,4,5,10,11]],[1708360649,[1,3,3,4,4,4,4,5,7,8]],[1708360650,[1,3,3,4,4,5,5,6,34,38]],[1708360651,[1,3,3,3,4,4,4,5,9,12]],[1708360652,[1,1,3,4,4,4,5,5,7,8]],[1708360653,[1,3,3,4,4,4,5,5,8,9]],[1708360654,[1,3,3,3,4,4,4,5,7,8]],[1708360655,[1,3,3,3,3,4,4,5,5,6]],[1708360656,[1,3,3,4,4,4,5,5,8,13]],[1708360657,[0,2,3,3,3,4,4,5,7,7]],[1708360658,[1,2,3,4,4,4,5,5,9,11]],[1708360659,[1,2,3,3,4,4,4,5,6,10]],[1708360660,[1,3,3,4,4,4,5,6,8,12]],[1708360661,[1,3,3,4,4,4,5,5,8,12]],[1708360662,[1,3,3,4,4,5,5,6,11,12]],[1708360663,[1,2,3,4,4,4,5,7,10,15]],[1708360664,[1,2,3,3,3,3,4,4,6,7]],[1708360665,[1,3,3,4,4,4,4,5,6,7]],[1708360666,[1,3,3,4,4,4,4,5,8,12]],[1708360667,[1,2,3,3,4,4,4,4,5,8]],[1708360668,[1,3,3,4,4,4,5,6,9,11]],[1708360669,[0,1,3,3,4,4,4,5,6,11]],[1708360670,[1,2,3,3,3,4,4,5,6,7]],[1708360671,[1,2,3,3,4,4,4,5,5,6]],[1708360672,[0,2,3,3,4,4,5,5,7,8]],[1708360673,[1,2,3,3,3,4,4,5,6,7]],[1708360674,[1,3,3,4,4,4,4,5,6,8]],[1708360675,[0,2,3,3,3,4,4,5,5,6]],[1708360676,[0,2,3,3,3,4,4,5,17,31]],[1708360677,[0,2,3,3,3,4,4,5,8,12]],[1708360678,[1,2,3,3,3,4,4,5,7,10]],[1708360679,[0,2,3,3,3,4,4,5,8,10]],[1708360680,[0,2,3,3,3,3,4,4,6,15]],[1708360681,[1,1,3,3,4,4,5,5,7,16]],[1708360682,[1,2,3,3,4,4,5,5,7,8]],[1708360683,[1,2,3,3,4,4,4,5,8,11]],[1708360684,[1,2,3,3,4,4,4,5,7,9]],[1708360685,[0,3,3,4,4,4,4,5,6,9]],[1708360686,[1,2,3,3,4,4,4,5,6,9]],[1708360687,[1,2,3,3,4,4,5,8,13,14]],[1708360688,[1,2,3,3,4,4,5,7,11,17]],[1708360689,[0,2,3,3,3,4,4,5,7,13]],[1708360690,[0,2,3,3,3,4,4,4,6,7]],[1708360691,[0,2,3,3,3,3,4,4,9,15]],[1708360692,[0,2,3,3,3,3,4,4,6,10]],[1708360693,[1,2,3,4,4,4,4,5,7,8]],[1708360694,[0,2,3,4,4,5,5,8,12,15]],[1708360695,[1,2,3,4,4,4,5,6,8,10]],[1708360696,[0,2,3,3,3,4,4,5,6,13]],[1708360697,[1,2,3,3,3,4,4,5,5,10]],[1708360698,[1,2,3,3,3,4,4,5,8,14]],[1708360699,[1,2,3,3,3,4,4,5,9,15]],[1708360700,[1,2,3,3,3,4,5,6,12,15]],[1708360701,[0,2,3,3,3,4,4,5,8,16]],[1708360702,[0,2,3,3,3,4,4,5,8,13]],[1708360703,[0,2,3,3,3,4,4,5,6,8]],[1708360704,[0,2,3,3,3,4,4,5,6,7]],[1708360705,[1,2,3,4,4,4,4,6,10,15]],[1708360706,[0,2,3,4,4,5,6,11,21,29]],[1708360707,[0,1,3,3,4,4,4,5,8,10]],[1708360708,[1,2,3,4,4,4,5,5,10,16]],[1708360709,[1,2,3,4,4,4,5,5,8,14]],[1708360710,[1,2,3,3,4,4,4,5,6,8]],[1708360711,[1,3,3,4,4,5,7,38,56,62]],[1708360712,[1,3,3,4,4,4,4,5,6,10]],[1708360713,[1,2,3,4,4,4,4,6,8,8]],[1708360714,[1,3,3,4,4,5,5,6,7,9]],[1708360715,[1,3,3,5,5,5,5,6,8,10]],[1708360716,[1,4,5,6,6,7,7,8,12,15]],[1708360717,[1,3,3,5,5,5,6,7,9,10]],[1708360718,[1,4,5,7,7,7,8,9,11,12]],[1708360719,[1,3,4,6,7,7,8,8,9,11]],[1708360720,[1,3,5,6,7,7,8,9,12,16]],[1708360721,[0,2,3,5,5,6,6,7,8,9]],[1708360722,[0,2,4,6,6,6,7,7,10,13]],[1708360723,[1,3,4,6,6,6,7,8,10,16]],[1708360724,[0,3,4,5,5,5,6,7,9,11]],[1708360725,[1,3,4,4,5,5,6,7,8,11]],[1708360726,[1,3,4,6,7,7,8,10,15,17]],[1708360727,[1,3,4,6,6,7,8,9,12,25]],[1708360728,[1,3,4,6,6,7,7,8,11,17]],[1708360729,[1,3,5,7,7,8,8,9,10,13]],[1708360730,[0,3,3,5,5,5,6,7,8,10]],[1708360731,[1,3,4,6,6,7,7,8,12,16]],[1708360732,[1,3,3,5,6,7,7,9,12,16]],[1708360733,[1,4,5,7,7,7,8,9,11,13]],[1708360734,[1,2,3,4,4,5,6,7,9,9]],[1708360735,[1,4,6,7,7,7,8,9,10,11]],[1708360736,[0,2,3,4,4,4,5,6,8,9]],[1708360737,[1,4,6,7,8,8,9,15,43,50]],[1708360738,[0,2,3,6,10,38,72,103,143,146]],[1708360739,[1,4,6,7,7,8,8,9,13,16]],[1708360740,[1,3,3,4,4,4,5,5,7,10]],[1708360741,[1,4,5,7,7,7,8,9,12,17]],[1708360742,[1,2,3,4,4,5,6,7,17,26]],[1708360743,[1,4,5,7,7,8,8,9,11,14]],[1708360744,[0,2,3,4,4,5,5,6,9,11]],[1708360745,[0,3,5,6,6,7,7,8,10,11]],[1708360746,[0,2,3,3,4,4,5,5,8,9]],[1708360747,[0,3,5,7,7,8,8,9,11,13]],[1708360748,[0,2,3,4,4,5,5,7,10,12]],[1708360749,[1,3,5,7,7,8,9,17,49,56]],[1708360750,[1,2,3,4,5,5,6,7,9,10]],[1708360751,[1,3,5,7,7,8,8,10,13,18]],[1708360752,[1,2,3,5,5,6,8,9,12,13]],[1708360753,[1,3,5,7,7,8,8,10,13,15]],[1708360754,[1,3,4,6,6,7,8,9,11,16]],[1708360755,[1,3,4,6,7,7,8,9,15,20]],[1708360756,[1,3,4,7,7,8,9,10,18,25]],[1708360757,[1,3,4,5,6,7,7,9,10,14]],[1708360758,[1,3,4,6,7,7,8,9,14,25]],[1708360759,[1,2,3,4,4,5,5,7,9,10]],[1708360760,[0,3,4,6,7,7,8,9,13,18]],[1708360761,[1,3,3,4,4,5,5,6,8,10]],[1708360762,[1,3,5,7,8,9,10,46,85,103]],[1708360763,[1,2,3,4,5,5,6,29,61,74]],[1708360764,[0,2,3,7,7,8,8,9,10,11]],[1708360765,[0,1,2,3,3,4,4,5,6,12]],[1708360766,[1,2,4,5,6,6,7,8,9,10]],[1708360767,[0,2,3,3,3,4,4,5,6,12]],[1708360768,[0,2,3,4,5,5,6,7,11,16]],[1708360769,[0,2,3,4,4,4,5,5,6,8]],[1708360770,[1,3,3,5,6,6,6,8,9,13]],[1708360771,[1,3,3,4,5,5,5,6,8,11]],[1708360772,[1,3,5,11,18,28,42,54,67,73]],[1708360773,[1,2,3,4,4,5,5,6,7,11]],[1708360774,[0,2,3,5,5,5,6,6,8,8]],[1708360775,[0,1,3,3,4,4,4,5,6,9]],[1708360776,[1,2,3,5,5,6,6,7,9,12]],[1708360777,[1,3,4,6,6,7,8,9,12,17]],[1708360778,[1,4,6,7,8,8,9,10,12,13]],[1708360779,[1,3,3,5,6,7,8,9,11,13]],[1708360780,[1,4,6,7,8,8,9,10,12,17]],[1708360781,[1,3,4,5,6,6,7,8,10,17]],[1708360782,[0,4,5,7,7,8,8,10,13,19]],[1708360783,[0,2,3,5,6,7,8,13,44,53]],[1708360784,[1,4,6,7,7,8,8,9,10,12]],[1708360785,[0,2,3,4,4,5,6,7,11,15]],[1708360786,[1,4,5,6,7,7,8,9,10,15]],[1708360787,[0,2,3,4,4,4,5,5,8,20]],[1708360788,[2,5,6,8,8,10,24,57,73,105]],[1708360789,[1,2,3,4,4,4,5,6,8,11]],[1708360790,[1,5,7,8,8,8,9,10,12,13]],[1708360791,[1,1,3,4,5,5,6,7,9,9]],[1708360792,[1,5,6,8,8,8,9,10,12,15]],[1708360793,[0,2,4,7,9,22,57,93,126,129]],[1708360794,[0,4,6,7,7,8,8,10,13,13]],[1708360795,[1,3,3,5,5,6,7,8,12,17]],[1708360796,[1,4,6,7,8,8,8,9,10,11]],[1708360797,[1,3,3,5,6,7,7,9,11,14]],[1708360798,[1,3,5,7,7,8,8,9,10,11]],[1708360799,[1,2,3,5,6,7,7,8,11,15]],[1708360800,[1,3,5,6,7,7,8,9,26,35]],[1708360801,[0,2,4,6,6,7,8,9,13,20]],[1708360802,[1,3,4,6,7,7,8,9,10,13]],[1708360803,[1,2,3,6,7,7,8,9,10,14]],[1708360804,[1,2,3,5,6,7,7,9,11,15]],[1708360805,[0,3,4,5,5,6,6,7,8,14]],[1708360806,[1,3,3,5,6,6,7,8,10,11]],[1708360807,[0,2,4,7,7,8,8,9,11,13]],[1708360808,[0,2,3,3,4,4,5,6,7,9]],[1708360809,[0,2,4,6,6,6,7,8,10,12]],[1708360810,[0,2,3,4,5,5,6,7,9,12]],[1708360811,[1,3,5,7,7,8,8,9,16,23]],[1708360812,[1,2,3,4,5,5,5,6,9,15]],[1708360813,[1,3,5,7,7,8,8,9,10,12]],[1708360814,[1,3,3,4,5,5,6,8,15,27]],[1708360815,[0,3,5,7,7,8,8,11,18,29]],[1708360816,[0,2,3,4,4,5,5,6,8,10]],[1708360817,[1,3,5,7,7,8,9,11,14,17]],[1708360818,[1,3,3,4,5,5,5,6,10,17]],[1708360819,[1,3,5,7,8,9,9,21,51,64]],[1708360820,[1,1,3,4,4,5,5,6,9,13]],[1708360821,[1,3,5,7,7,8,9,10,12,16]],[1708360822,[1,2,3,4,4,4,5,6,7,12]],[1708360823,[1,3,4,6,7,7,8,8,11,11]],[1708360824,[1,2,3,6,14,51,86,120,153,179]],[1708360825,[1,3,4,6,7,6,8,9,10,12]],[1708360826,[1,2,3,4,5,5,5,6,9,12]],[1708360827,[1,3,5,7,9,11,37,73,107,114]],[1708360828,[1,2,3,4,4,4,5,6,8,11]],[1708360829,[1,3,4,7,7,8,8,9,10,12]],[1708360830,[1,3,3,4,5,5,5,6,7,10]],[1708360831,[1,3,4,7,7,8,9,11,18,26]],[1708360832,[1,2,3,5,6,9,19,36,60,67]],[1708360833,[1,3,3,5,6,6,7,8,9,11]],[1708360834,[1,2,3,4,4,5,6,7,9,11]],[1708360835,[0,2,3,4,4,5,5,7,8,14]],[1708360836,[1,2,3,4,4,5,5,6,9,10]],[1708360837,[1,2,3,4,4,5,5,6,8,10]],[1708360838,[1,2,3,4,5,5,6,7,8,9]],[1708360839,[1,3,4,6,6,7,8,9,13,19]],[1708360840,[1,2,3,5,6,6,7,9,15,19]],[1708360841,[1,5,6,8,8,9,9,10,14,22]],[1708360842,[1,3,4,6,6,7,8,8,10,12]]]);
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([[1708360598,[25,25,0]],[1708360599,[1,1,0]],[1708360600,[25,25,0]],[1708360601,[1,1,0]],[1708360602,[71,71,0]],[1708360603,[3,3,0]],[1708360604,[6,6,0]],[1708360605,[9,9,0]],[1708360606,[11,11,0]],[1708360607,[13,13,0]],[1708360608,[18,18,0]],[1708360609,[19,19,0]],[1708360610,[24,24,0]],[1708360611,[26,26,0]],[1708360612,[27,27,0]],[1708360613,[32,32,0]],[1708360614,[34,34,0]],[1708360615,[37,37,0]],[1708360616,[39,39,0]],[1708360617,[43,43,0]],[1708360618,[44,44,0]],[1708360619,[48,48,0]],[1708360620,[50,50,0]],[1708360621,[54,54,0]],[1708360622,[56,56,0]],[1708360623,[61,61,0]],[1708360624,[61,61,0]],[1708360625,[65,65,0]],[1708360626,[67,67,0]],[1708360627,[70,70,0]],[1708360628,[74,74,0]],[1708360629,[76,76,0]],[1708360630,[80,80,0]],[1708360631,[81,81,0]],[1708360632,[84,84,0]],[1708360633,[87,87,0]],[1708360634,[91,91,0]],[1708360635,[92,92,0]],[1708360636,[96,96,0]],[1708360637,[98,98,0]],[1708360638,[101,101,0]],[1708360639,[105,105,0]],[1708360640,[107,107,0]],[1708360641,[110,110,0]],[1708360642,[114,114,0]],[1708360643,[115,115,0]],[1708360644,[118,118,0]],[1708360645,[121,121,0]],[1708360646,[124,124,0]],[1708360647,[126,126,0]],[1708360648,[129,129,0]],[1708360649,[133,133,0]],[1708360650,[134,134,0]],[1708360651,[138,138,0]],[1708360652,[141,141,0]],[1708360653,[143,143,0]],[1708360654,[146,146,0]],[1708360655,[149,149,0]],[1708360656,[152,152,0]],[1708360657,[154,154,0]],[1708360658,[158,158,0]],[1708360659,[160,160,0]],[1708360660,[164,164,0]],[1708360661,[165,165,0]],[1708360662,[170,170,0]],[1708360663,[171,171,0]],[1708360664,[175,175,0]],[1708360665,[176,176,0]],[1708360666,[181,181,0]],[1708360667,[183,183,0]],[1708360668,[185,185,0]],[1708360669,[189,189,0]],[1708360670,[191,191,0]],[1708360671,[194,194,0]],[1708360672,[196,196,0]],[1708360673,[200,200,0]],[1708360674,[202,202,0]],[1708360675,[206,206,0]],[1708360676,[207,207,0]],[1708360677,[211,211,0]],[1708360678,[213,213,0]],[1708360679,[217,217,0]],[1708360680,[220,220,0]],[1708360681,[222,222,0]],[1708360682,[225,225,0]],[1708360683,[228,228,0]],[1708360684,[230,230,0]],[1708360685,[234,234,0]],[1708360686,[235,235,0]],[1708360687,[239,239,0]],[1708360688,[242,242,0]],[1708360689,[244,244,0]],[1708360690,[248,248,0]],[1708360691,[251,251,0]],[1708360692,[252,252,0]],[1708360693,[256,256,0]],[1708360694,[259,259,0]],[1708360695,[262,262,0]],[1708360696,[264,264,0]],[1708360697,[267,267,0]],[1708360698,[269,269,0]],[1708360699,[272,272,0]],[1708360700,[276,276,0]],[1708360701,[278,278,0]],[1708360702,[282,282,0]],[1708360703,[284,284,0]],[1708360704,[286,286,0]],[1708360705,[290,290,0]],[1708360706,[291,291,0]],[1708360707,[296,296,0]],[1708360708,[298,298,0]],[1708360709,[300,300,0]],[1708360710,[304,304,0]],[1708360711,[306,306,0]],[1708360712,[309,309,0]],[1708360713,[312,312,0]],[1708360714,[315,315,0]],[1708360715,[317,317,0]],[1708360716,[321,321,0]],[1708360717,[322,322,0]],[1708360718,[327,327,0]],[1708360719,[329,329,0]],[1708360720,[332,332,0]],[1708360721,[335,335,0]],[1708360722,[338,338,0]],[1708360723,[340,340,0]],[1708360724,[339,339,0]],[1708360725,[341,341,0]],[1708360726,[340,340,0]],[1708360727,[340,340,0]],[1708360728,[339,339,0]],[1708360729,[341,341,0]],[1708360730,[340,340,0]],[1708360731,[340,340,0]],[1708360732,[340,340,0]],[1708360733,[340,340,0]],[1708360734,[340,340,0]],[1708360735,[340,340,0]],[1708360736,[340,340,0]],[1708360737,[340,340,0]],[1708360738,[340,340,0]],[1708360739,[340,340,0]],[1708360740,[340,340,0]],[1708360741,[340,340,0]],[1708360742,[340,340,0]],[1708360743,[340,340,0]],[1708360744,[339,339,0]],[1708360745,[341,341,0]],[1708360746,[339,339,0]],[1708360747,[340,340,0]],[1708360748,[341,341,0]],[1708360749,[340,340,0]],[1708360750,[340,340,0]],[1708360751,[340,340,0]],[1708360752,[340,340,0]],[1708360753,[340,340,0]],[1708360754,[340,340,0]],[1708360755,[340,340,0]],[1708360756,[340,340,0]],[1708360757,[340,340,0]],[1708360758,[340,340,0]],[1708360759,[340,340,0]],[1708360760,[340,340,0]],[1708360761,[340,340,0]],[1708360762,[340,340,0]],[1708360763,[340,340,0]],[1708360764,[339,339,0]],[1708360765,[341,341,0]],[1708360766,[340,340,0]],[1708360767,[339,339,0]],[1708360768,[340,340,0]],[1708360769,[341,341,0]],[1708360770,[340,340,0]],[1708360771,[340,340,0]],[1708360772,[340,340,0]],[1708360773,[340,340,0]],[1708360774,[339,339,0]],[1708360775,[341,341,0]],[1708360776,[340,340,0]],[1708360777,[340,340,0]],[1708360778,[340,340,0]],[1708360779,[340,340,0]],[1708360780,[340,340,0]],[1708360781,[340,340,0]],[1708360782,[339,339,0]],[1708360783,[341,341,0]],[1708360784,[340,340,0]],[1708360785,[339,339,0]],[1708360786,[341,341,0]],[1708360787,[340,340,0]],[1708360788,[340,340,0]],[1708360789,[340,340,0]],[1708360790,[340,340,0]],[1708360791,[340,340,0]],[1708360792,[340,340,0]],[1708360793,[339,339,0]],[1708360794,[341,341,0]],[1708360795,[340,340,0]],[1708360796,[340,340,0]],[1708360797,[340,340,0]],[1708360798,[340,340,0]],[1708360799,[340,340,0]],[1708360800,[340,340,0]],[1708360801,[340,340,0]],[1708360802,[340,340,0]],[1708360803,[340,340,0]],[1708360804,[339,339,0]],[1708360805,[341,341,0]],[1708360806,[340,340,0]],[1708360807,[339,339,0]],[1708360808,[340,340,0]],[1708360809,[340,340,0]],[1708360810,[341,341,0]],[1708360811,[340,340,0]],[1708360812,[340,340,0]],[1708360813,[340,340,0]],[1708360814,[340,340,0]],[1708360815,[339,339,0]],[1708360816,[341,341,0]],[1708360817,[340,340,0]],[1708360818,[340,340,0]],[1708360819,[340,340,0]],[1708360820,[340,340,0]],[1708360821,[340,340,0]],[1708360822,[340,340,0]],[1708360823,[340,340,0]],[1708360824,[340,340,0]],[1708360825,[340,340,0]],[1708360826,[340,340,0]],[1708360827,[340,340,0]],[1708360828,[340,340,0]],[1708360829,[340,340,0]],[1708360830,[340,340,0]],[1708360831,[340,340,0]],[1708360832,[340,340,0]],[1708360833,[340,340,0]],[1708360834,[340,340,0]],[1708360835,[339,339,0]],[1708360836,[341,341,0]],[1708360837,[340,340,0]],[1708360838,[340,340,0]],[1708360839,[340,340,0]],[1708360840,[340,340,0]],[1708360841,[340,340,0]],[1708360842,[503,503,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:[