-
Notifications
You must be signed in to change notification settings - Fork 925
/
index.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 03:50:55 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 - diegoalexandrooliveira">
<span class="simulation-information-label">Description: </span>
<span>Rinha de Backend - 2024/Q1: Crébito - diegoalexandrooliveira</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: [
[1708314656000,0],[1708314657000,0],[1708314658000,0],[1708314659000,0],[1708314660000,1],[1708314661000,2],[1708314662000,2],[1708314663000,4],[1708314664000,4],[1708314665000,5],[1708314666000,6],[1708314667000,7],[1708314668000,8],[1708314669000,8],[1708314670000,10],[1708314671000,10],[1708314672000,12],[1708314673000,12],[1708314674000,14],[1708314675000,14],[1708314676000,15],[1708314677000,16],[1708314678000,17],[1708314679000,17],[1708314680000,19],[1708314681000,20],[1708314682000,20],[1708314683000,22],[1708314684000,22],[1708314685000,23],[1708314686000,25],[1708314687000,25],[1708314688000,26],[1708314689000,26],[1708314690000,28],[1708314691000,29],[1708314692000,30],[1708314693000,30],[1708314694000,32],[1708314695000,32],[1708314696000,33],[1708314697000,34],[1708314698000,35],[1708314699000,36],[1708314700000,37],[1708314701000,38],[1708314702000,39],[1708314703000,39],[1708314704000,41],[1708314705000,41],[1708314706000,43],[1708314707000,43],[1708314708000,44],[1708314709000,45],[1708314710000,46],[1708314711000,47],[1708314712000,48],[1708314713000,48],[1708314714000,50],[1708314715000,50],[1708314716000,52],[1708314717000,52],[1708314718000,54],[1708314719000,55],[1708314720000,56],[1708314721000,56],[1708314722000,58],[1708314723000,59],[1708314724000,60],[1708314725000,60],[1708314726000,62],[1708314727000,62],[1708314728000,64],[1708314729000,64],[1708314730000,64],[1708314731000,65],[1708314732000,67],[1708314733000,67],[1708314734000,68],[1708314735000,69],[1708314736000,71],[1708314737000,70],[1708314738000,72],[1708314739000,72],[1708314740000,73],[1708314741000,74],[1708314742000,75],[1708314743000,76],[1708314744000,77],[1708314745000,79],[1708314746000,79],[1708314747000,79],[1708314748000,81],[1708314749000,81],[1708314750000,82],[1708314751000,83],[1708314752000,85],[1708314753000,85],[1708314754000,87],[1708314755000,86],[1708314756000,88],[1708314757000,89],[1708314758000,89],[1708314759000,91],[1708314760000,91],[1708314761000,92],[1708314762000,94],[1708314763000,94],[1708314764000,95],[1708314765000,96],[1708314766000,97],[1708314767000,97],[1708314768000,99],[1708314769000,99],[1708314770000,101],[1708314771000,101],[1708314772000,103],[1708314773000,103],[1708314774000,104],[1708314775000,106],[1708314776000,107],[1708314777000,108],[1708314778000,108],[1708314779000,110],[1708314780000,111],[1708314781000,111],[1708314782000,111],[1708314783000,110],[1708314784000,111],[1708314785000,111],[1708314786000,111],[1708314787000,111],[1708314788000,111],[1708314789000,111],[1708314790000,111],[1708314791000,110],[1708314792000,111],[1708314793000,111],[1708314794000,111],[1708314795000,111],[1708314796000,111],[1708314797000,111],[1708314798000,111],[1708314799000,111],[1708314800000,111],[1708314801000,111],[1708314802000,111],[1708314803000,111],[1708314804000,111],[1708314805000,111],[1708314806000,111],[1708314807000,111],[1708314808000,111],[1708314809000,111],[1708314810000,111],[1708314811000,111],[1708314812000,111],[1708314813000,110],[1708314814000,111],[1708314815000,110],[1708314816000,111],[1708314817000,111],[1708314818000,111],[1708314819000,111],[1708314820000,111],[1708314821000,111],[1708314822000,111],[1708314823000,111],[1708314824000,111],[1708314825000,111],[1708314826000,111],[1708314827000,111],[1708314828000,111],[1708314829000,110],[1708314830000,111],[1708314831000,111],[1708314832000,111],[1708314833000,110],[1708314834000,112],[1708314835000,111],[1708314836000,111],[1708314837000,111],[1708314838000,111],[1708314839000,110],[1708314840000,110],[1708314841000,110],[1708314842000,111],[1708314843000,111],[1708314844000,110],[1708314845000,111],[1708314846000,110],[1708314847000,111],[1708314848000,111],[1708314849000,111],[1708314850000,111],[1708314851000,111],[1708314852000,110],[1708314853000,111],[1708314854000,111],[1708314855000,110],[1708314856000,110],[1708314857000,111],[1708314858000,110],[1708314859000,111],[1708314860000,111],[1708314861000,111],[1708314862000,111],[1708314863000,111],[1708314864000,111],[1708314865000,111],[1708314866000,111],[1708314867000,111],[1708314868000,111],[1708314869000,111],[1708314870000,112],[1708314871000,111],[1708314872000,111],[1708314873000,111],[1708314874000,111],[1708314875000,110],[1708314876000,111],[1708314877000,111],[1708314878000,111],[1708314879000,111],[1708314880000,111],[1708314881000,111],[1708314882000,111],[1708314883000,111],[1708314884000,111],[1708314885000,111],[1708314886000,111],[1708314887000,111],[1708314888000,111],[1708314889000,111],[1708314890000,111],[1708314891000,111],[1708314892000,111],[1708314893000,111],[1708314894000,111],[1708314895000,110],[1708314896000,111],[1708314897000,111],[1708314898000,110],[1708314899000,111],[1708314900000,108]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#68b65c',
name: 'débitos',
data: [
[1708314656000,0],[1708314657000,0],[1708314658000,0],[1708314659000,0],[1708314660000,1],[1708314661000,2],[1708314662000,4],[1708314663000,6],[1708314664000,7],[1708314665000,9],[1708314666000,11],[1708314667000,13],[1708314668000,15],[1708314669000,16],[1708314670000,19],[1708314671000,20],[1708314672000,22],[1708314673000,24],[1708314674000,25],[1708314675000,28],[1708314676000,29],[1708314677000,31],[1708314678000,33],[1708314679000,35],[1708314680000,37],[1708314681000,38],[1708314682000,40],[1708314683000,42],[1708314684000,44],[1708314685000,46],[1708314686000,47],[1708314687000,50],[1708314688000,52],[1708314689000,53],[1708314690000,56],[1708314691000,57],[1708314692000,60],[1708314693000,61],[1708314694000,63],[1708314695000,64],[1708314696000,67],[1708314697000,68],[1708314698000,69],[1708314699000,71],[1708314700000,74],[1708314701000,74],[1708314702000,78],[1708314703000,79],[1708314704000,80],[1708314705000,82],[1708314706000,84],[1708314707000,86],[1708314708000,88],[1708314709000,89],[1708314710000,92],[1708314711000,93],[1708314712000,95],[1708314713000,97],[1708314714000,98],[1708314715000,101],[1708314716000,102],[1708314717000,105],[1708314718000,107],[1708314719000,109],[1708314720000,111],[1708314721000,112],[1708314722000,114],[1708314723000,116],[1708314724000,118],[1708314725000,120],[1708314726000,121],[1708314727000,124],[1708314728000,124],[1708314729000,127],[1708314730000,129],[1708314731000,130],[1708314732000,133],[1708314733000,134],[1708314734000,135],[1708314735000,137],[1708314736000,139],[1708314737000,142],[1708314738000,142],[1708314739000,144],[1708314740000,147],[1708314741000,147],[1708314742000,150],[1708314743000,152],[1708314744000,153],[1708314745000,158],[1708314746000,158],[1708314747000,160],[1708314748000,161],[1708314749000,162],[1708314750000,166],[1708314751000,167],[1708314752000,169],[1708314753000,171],[1708314754000,171],[1708314755000,175],[1708314756000,175],[1708314757000,177],[1708314758000,180],[1708314759000,182],[1708314760000,184],[1708314761000,185],[1708314762000,186],[1708314763000,188],[1708314764000,190],[1708314765000,192],[1708314766000,194],[1708314767000,196],[1708314768000,197],[1708314769000,199],[1708314770000,201],[1708314771000,202],[1708314772000,206],[1708314773000,206],[1708314774000,208],[1708314775000,211],[1708314776000,213],[1708314777000,215],[1708314778000,216],[1708314779000,218],[1708314780000,221],[1708314781000,220],[1708314782000,223],[1708314783000,221],[1708314784000,221],[1708314785000,221],[1708314786000,220],[1708314787000,221],[1708314788000,221],[1708314789000,221],[1708314790000,221],[1708314791000,221],[1708314792000,221],[1708314793000,221],[1708314794000,221],[1708314795000,221],[1708314796000,221],[1708314797000,222],[1708314798000,221],[1708314799000,221],[1708314800000,220],[1708314801000,221],[1708314802000,221],[1708314803000,221],[1708314804000,221],[1708314805000,221],[1708314806000,221],[1708314807000,220],[1708314808000,221],[1708314809000,221],[1708314810000,221],[1708314811000,220],[1708314812000,220],[1708314813000,221],[1708314814000,221],[1708314815000,220],[1708314816000,221],[1708314817000,221],[1708314818000,220],[1708314819000,221],[1708314820000,220],[1708314821000,221],[1708314822000,221],[1708314823000,221],[1708314824000,220],[1708314825000,221],[1708314826000,221],[1708314827000,221],[1708314828000,221],[1708314829000,221],[1708314830000,221],[1708314831000,221],[1708314832000,221],[1708314833000,221],[1708314834000,221],[1708314835000,221],[1708314836000,221],[1708314837000,221],[1708314838000,221],[1708314839000,221],[1708314840000,221],[1708314841000,221],[1708314842000,222],[1708314843000,221],[1708314844000,221],[1708314845000,221],[1708314846000,221],[1708314847000,221],[1708314848000,221],[1708314849000,221],[1708314850000,221],[1708314851000,221],[1708314852000,221],[1708314853000,221],[1708314854000,221],[1708314855000,221],[1708314856000,222],[1708314857000,220],[1708314858000,221],[1708314859000,221],[1708314860000,221],[1708314861000,221],[1708314862000,220],[1708314863000,221],[1708314864000,220],[1708314865000,220],[1708314866000,221],[1708314867000,221],[1708314868000,221],[1708314869000,221],[1708314870000,222],[1708314871000,221],[1708314872000,221],[1708314873000,221],[1708314874000,221],[1708314875000,221],[1708314876000,221],[1708314877000,221],[1708314878000,221],[1708314879000,220],[1708314880000,221],[1708314881000,221],[1708314882000,221],[1708314883000,221],[1708314884000,221],[1708314885000,222],[1708314886000,221],[1708314887000,221],[1708314888000,221],[1708314889000,220],[1708314890000,221],[1708314891000,221],[1708314892000,221],[1708314893000,220],[1708314894000,221],[1708314895000,221],[1708314896000,221],[1708314897000,221],[1708314898000,220],[1708314899000,221],[1708314900000,216]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#f15b4f',
name: 'extratos',
data: [
[1708314656000,0],[1708314657000,0],[1708314658000,0],[1708314659000,0],[1708314660000,1],[1708314661000,1],[1708314662000,1],[1708314663000,1],[1708314664000,1],[1708314665000,1],[1708314666000,2],[1708314667000,1],[1708314668000,2],[1708314669000,2],[1708314670000,1],[1708314671000,2],[1708314672000,2],[1708314673000,2],[1708314674000,2],[1708314675000,2],[1708314676000,2],[1708314677000,2],[1708314678000,3],[1708314679000,2],[1708314680000,3],[1708314681000,2],[1708314682000,3],[1708314683000,2],[1708314684000,3],[1708314685000,3],[1708314686000,3],[1708314687000,3],[1708314688000,3],[1708314689000,3],[1708314690000,3],[1708314691000,4],[1708314692000,3],[1708314693000,3],[1708314694000,4],[1708314695000,3],[1708314696000,4],[1708314697000,4],[1708314698000,4],[1708314699000,4],[1708314700000,4],[1708314701000,4],[1708314702000,4],[1708314703000,4],[1708314704000,4],[1708314705000,4],[1708314706000,5],[1708314707000,4],[1708314708000,5],[1708314709000,5],[1708314710000,4],[1708314711000,5],[1708314712000,5],[1708314713000,5],[1708314714000,5],[1708314715000,5],[1708314716000,5],[1708314717000,5],[1708314718000,6],[1708314719000,5],[1708314720000,6],[1708314721000,5],[1708314722000,6],[1708314723000,5],[1708314724000,6],[1708314725000,6],[1708314726000,6],[1708314727000,6],[1708314728000,6],[1708314729000,6],[1708314730000,6],[1708314731000,7],[1708314732000,6],[1708314733000,6],[1708314734000,7],[1708314735000,6],[1708314736000,7],[1708314737000,7],[1708314738000,7],[1708314739000,7],[1708314740000,7],[1708314741000,7],[1708314742000,7],[1708314743000,7],[1708314744000,7],[1708314745000,7],[1708314746000,8],[1708314747000,7],[1708314748000,8],[1708314749000,8],[1708314750000,7],[1708314751000,8],[1708314752000,8],[1708314753000,8],[1708314754000,8],[1708314755000,8],[1708314756000,8],[1708314757000,8],[1708314758000,9],[1708314759000,8],[1708314760000,9],[1708314761000,8],[1708314762000,9],[1708314763000,8],[1708314764000,9],[1708314765000,9],[1708314766000,9],[1708314767000,9],[1708314768000,9],[1708314769000,9],[1708314770000,9],[1708314771000,10],[1708314772000,9],[1708314773000,9],[1708314774000,10],[1708314775000,9],[1708314776000,10],[1708314777000,10],[1708314778000,10],[1708314779000,10],[1708314780000,10],[1708314781000,10],[1708314782000,10],[1708314783000,10],[1708314784000,10],[1708314785000,10],[1708314786000,10],[1708314787000,10],[1708314788000,10],[1708314789000,10],[1708314790000,10],[1708314791000,10],[1708314792000,10],[1708314793000,10],[1708314794000,10],[1708314795000,10],[1708314796000,10],[1708314797000,10],[1708314798000,10],[1708314799000,10],[1708314800000,10],[1708314801000,10],[1708314802000,10],[1708314803000,10],[1708314804000,10],[1708314805000,10],[1708314806000,10],[1708314807000,10],[1708314808000,10],[1708314809000,10],[1708314810000,10],[1708314811000,10],[1708314812000,10],[1708314813000,10],[1708314814000,10],[1708314815000,10],[1708314816000,10],[1708314817000,10],[1708314818000,10],[1708314819000,10],[1708314820000,10],[1708314821000,10],[1708314822000,10],[1708314823000,10],[1708314824000,10],[1708314825000,10],[1708314826000,10],[1708314827000,10],[1708314828000,10],[1708314829000,10],[1708314830000,10],[1708314831000,10],[1708314832000,10],[1708314833000,10],[1708314834000,10],[1708314835000,10],[1708314836000,10],[1708314837000,10],[1708314838000,10],[1708314839000,10],[1708314840000,10],[1708314841000,10],[1708314842000,10],[1708314843000,10],[1708314844000,10],[1708314845000,10],[1708314846000,10],[1708314847000,10],[1708314848000,10],[1708314849000,10],[1708314850000,10],[1708314851000,10],[1708314852000,10],[1708314853000,10],[1708314854000,10],[1708314855000,10],[1708314856000,10],[1708314857000,10],[1708314858000,10],[1708314859000,10],[1708314860000,10],[1708314861000,10],[1708314862000,10],[1708314863000,10],[1708314864000,10],[1708314865000,10],[1708314866000,10],[1708314867000,10],[1708314868000,10],[1708314869000,10],[1708314870000,10],[1708314871000,10],[1708314872000,10],[1708314873000,10],[1708314874000,10],[1708314875000,10],[1708314876000,10],[1708314877000,10],[1708314878000,10],[1708314879000,10],[1708314880000,10],[1708314881000,10],[1708314882000,10],[1708314883000,10],[1708314884000,10],[1708314885000,10],[1708314886000,10],[1708314887000,10],[1708314888000,10],[1708314889000,10],[1708314890000,10],[1708314891000,10],[1708314892000,10],[1708314893000,10],[1708314894000,10],[1708314895000,10],[1708314896000,10],[1708314897000,10],[1708314898000,10],[1708314899000,10],[1708314900000,9]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FFDD00',
name: 'validação HTTP 404',
data: [
[1708314656000,0],[1708314657000,0],[1708314658000,0],[1708314659000,1],[1708314660000,0],[1708314661000,0],[1708314662000,0],[1708314663000,0],[1708314664000,0],[1708314665000,0],[1708314666000,0],[1708314667000,0],[1708314668000,0],[1708314669000,0],[1708314670000,0],[1708314671000,0],[1708314672000,0],[1708314673000,0],[1708314674000,0],[1708314675000,0],[1708314676000,0],[1708314677000,0],[1708314678000,0],[1708314679000,0],[1708314680000,0],[1708314681000,0],[1708314682000,0],[1708314683000,0],[1708314684000,0],[1708314685000,0],[1708314686000,0],[1708314687000,0],[1708314688000,0],[1708314689000,0],[1708314690000,0],[1708314691000,0],[1708314692000,0],[1708314693000,0],[1708314694000,0],[1708314695000,0],[1708314696000,0],[1708314697000,0],[1708314698000,0],[1708314699000,0],[1708314700000,0],[1708314701000,0],[1708314702000,0],[1708314703000,0],[1708314704000,0],[1708314705000,0],[1708314706000,0],[1708314707000,0],[1708314708000,0],[1708314709000,0],[1708314710000,0],[1708314711000,0],[1708314712000,0],[1708314713000,0],[1708314714000,0],[1708314715000,0],[1708314716000,0],[1708314717000,0],[1708314718000,0],[1708314719000,0],[1708314720000,0],[1708314721000,0],[1708314722000,0],[1708314723000,0],[1708314724000,0],[1708314725000,0],[1708314726000,0],[1708314727000,0],[1708314728000,0],[1708314729000,0],[1708314730000,0],[1708314731000,0],[1708314732000,0],[1708314733000,0],[1708314734000,0],[1708314735000,0],[1708314736000,0],[1708314737000,0],[1708314738000,0],[1708314739000,0],[1708314740000,0],[1708314741000,0],[1708314742000,0],[1708314743000,0],[1708314744000,0],[1708314745000,0],[1708314746000,0],[1708314747000,0],[1708314748000,0],[1708314749000,0],[1708314750000,0],[1708314751000,0],[1708314752000,0],[1708314753000,0],[1708314754000,0],[1708314755000,0],[1708314756000,0],[1708314757000,0],[1708314758000,0],[1708314759000,0],[1708314760000,0],[1708314761000,0],[1708314762000,0],[1708314763000,0],[1708314764000,0],[1708314765000,0],[1708314766000,0],[1708314767000,0],[1708314768000,0],[1708314769000,0],[1708314770000,0],[1708314771000,0],[1708314772000,0],[1708314773000,0],[1708314774000,0],[1708314775000,0],[1708314776000,0],[1708314777000,0],[1708314778000,0],[1708314779000,0],[1708314780000,0],[1708314781000,0],[1708314782000,0],[1708314783000,0],[1708314784000,0],[1708314785000,0],[1708314786000,0],[1708314787000,0],[1708314788000,0],[1708314789000,0],[1708314790000,0],[1708314791000,0],[1708314792000,0],[1708314793000,0],[1708314794000,0],[1708314795000,0],[1708314796000,0],[1708314797000,0],[1708314798000,0],[1708314799000,0],[1708314800000,0],[1708314801000,0],[1708314802000,0],[1708314803000,0],[1708314804000,0],[1708314805000,0],[1708314806000,0],[1708314807000,0],[1708314808000,0],[1708314809000,0],[1708314810000,0],[1708314811000,0],[1708314812000,0],[1708314813000,0],[1708314814000,0],[1708314815000,0],[1708314816000,0],[1708314817000,0],[1708314818000,0],[1708314819000,0],[1708314820000,0],[1708314821000,0],[1708314822000,0],[1708314823000,0],[1708314824000,0],[1708314825000,0],[1708314826000,0],[1708314827000,0],[1708314828000,0],[1708314829000,0],[1708314830000,0],[1708314831000,0],[1708314832000,0],[1708314833000,0],[1708314834000,0],[1708314835000,0],[1708314836000,0],[1708314837000,0],[1708314838000,0],[1708314839000,0],[1708314840000,0],[1708314841000,0],[1708314842000,0],[1708314843000,0],[1708314844000,0],[1708314845000,0],[1708314846000,0],[1708314847000,0],[1708314848000,0],[1708314849000,0],[1708314850000,0],[1708314851000,0],[1708314852000,0],[1708314853000,0],[1708314854000,0],[1708314855000,0],[1708314856000,0],[1708314857000,0],[1708314858000,0],[1708314859000,0],[1708314860000,0],[1708314861000,0],[1708314862000,0],[1708314863000,0],[1708314864000,0],[1708314865000,0],[1708314866000,0],[1708314867000,0],[1708314868000,0],[1708314869000,0],[1708314870000,0],[1708314871000,0],[1708314872000,0],[1708314873000,0],[1708314874000,0],[1708314875000,0],[1708314876000,0],[1708314877000,0],[1708314878000,0],[1708314879000,0],[1708314880000,0],[1708314881000,0],[1708314882000,0],[1708314883000,0],[1708314884000,0],[1708314885000,0],[1708314886000,0],[1708314887000,0],[1708314888000,0],[1708314889000,0],[1708314890000,0],[1708314891000,0],[1708314892000,0],[1708314893000,0],[1708314894000,0],[1708314895000,0],[1708314896000,0],[1708314897000,0],[1708314898000,0],[1708314899000,0],[1708314900000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00D5FF',
name: 'validações',
data: [
[1708314656000,0],[1708314657000,0],[1708314658000,0],[1708314659000,5],[1708314660000,5],[1708314661000,0],[1708314662000,0],[1708314663000,0],[1708314664000,0],[1708314665000,0],[1708314666000,0],[1708314667000,0],[1708314668000,0],[1708314669000,0],[1708314670000,0],[1708314671000,0],[1708314672000,0],[1708314673000,0],[1708314674000,0],[1708314675000,0],[1708314676000,0],[1708314677000,0],[1708314678000,0],[1708314679000,0],[1708314680000,0],[1708314681000,0],[1708314682000,0],[1708314683000,0],[1708314684000,0],[1708314685000,0],[1708314686000,0],[1708314687000,0],[1708314688000,0],[1708314689000,0],[1708314690000,0],[1708314691000,0],[1708314692000,0],[1708314693000,0],[1708314694000,0],[1708314695000,0],[1708314696000,0],[1708314697000,0],[1708314698000,0],[1708314699000,0],[1708314700000,0],[1708314701000,0],[1708314702000,0],[1708314703000,0],[1708314704000,0],[1708314705000,0],[1708314706000,0],[1708314707000,0],[1708314708000,0],[1708314709000,0],[1708314710000,0],[1708314711000,0],[1708314712000,0],[1708314713000,0],[1708314714000,0],[1708314715000,0],[1708314716000,0],[1708314717000,0],[1708314718000,0],[1708314719000,0],[1708314720000,0],[1708314721000,0],[1708314722000,0],[1708314723000,0],[1708314724000,0],[1708314725000,0],[1708314726000,0],[1708314727000,0],[1708314728000,0],[1708314729000,0],[1708314730000,0],[1708314731000,0],[1708314732000,0],[1708314733000,0],[1708314734000,0],[1708314735000,0],[1708314736000,0],[1708314737000,0],[1708314738000,0],[1708314739000,0],[1708314740000,0],[1708314741000,0],[1708314742000,0],[1708314743000,0],[1708314744000,0],[1708314745000,0],[1708314746000,0],[1708314747000,0],[1708314748000,0],[1708314749000,0],[1708314750000,0],[1708314751000,0],[1708314752000,0],[1708314753000,0],[1708314754000,0],[1708314755000,0],[1708314756000,0],[1708314757000,0],[1708314758000,0],[1708314759000,0],[1708314760000,0],[1708314761000,0],[1708314762000,0],[1708314763000,0],[1708314764000,0],[1708314765000,0],[1708314766000,0],[1708314767000,0],[1708314768000,0],[1708314769000,0],[1708314770000,0],[1708314771000,0],[1708314772000,0],[1708314773000,0],[1708314774000,0],[1708314775000,0],[1708314776000,0],[1708314777000,0],[1708314778000,0],[1708314779000,0],[1708314780000,0],[1708314781000,0],[1708314782000,0],[1708314783000,0],[1708314784000,0],[1708314785000,0],[1708314786000,0],[1708314787000,0],[1708314788000,0],[1708314789000,0],[1708314790000,0],[1708314791000,0],[1708314792000,0],[1708314793000,0],[1708314794000,0],[1708314795000,0],[1708314796000,0],[1708314797000,0],[1708314798000,0],[1708314799000,0],[1708314800000,0],[1708314801000,0],[1708314802000,0],[1708314803000,0],[1708314804000,0],[1708314805000,0],[1708314806000,0],[1708314807000,0],[1708314808000,0],[1708314809000,0],[1708314810000,0],[1708314811000,0],[1708314812000,0],[1708314813000,0],[1708314814000,0],[1708314815000,0],[1708314816000,0],[1708314817000,0],[1708314818000,0],[1708314819000,0],[1708314820000,0],[1708314821000,0],[1708314822000,0],[1708314823000,0],[1708314824000,0],[1708314825000,0],[1708314826000,0],[1708314827000,0],[1708314828000,0],[1708314829000,0],[1708314830000,0],[1708314831000,0],[1708314832000,0],[1708314833000,0],[1708314834000,0],[1708314835000,0],[1708314836000,0],[1708314837000,0],[1708314838000,0],[1708314839000,0],[1708314840000,0],[1708314841000,0],[1708314842000,0],[1708314843000,0],[1708314844000,0],[1708314845000,0],[1708314846000,0],[1708314847000,0],[1708314848000,0],[1708314849000,0],[1708314850000,0],[1708314851000,0],[1708314852000,0],[1708314853000,0],[1708314854000,0],[1708314855000,0],[1708314856000,0],[1708314857000,0],[1708314858000,0],[1708314859000,0],[1708314860000,0],[1708314861000,0],[1708314862000,0],[1708314863000,0],[1708314864000,0],[1708314865000,0],[1708314866000,0],[1708314867000,0],[1708314868000,0],[1708314869000,0],[1708314870000,0],[1708314871000,0],[1708314872000,0],[1708314873000,0],[1708314874000,0],[1708314875000,0],[1708314876000,0],[1708314877000,0],[1708314878000,0],[1708314879000,0],[1708314880000,0],[1708314881000,0],[1708314882000,0],[1708314883000,0],[1708314884000,0],[1708314885000,0],[1708314886000,0],[1708314887000,0],[1708314888000,0],[1708314889000,0],[1708314890000,0],[1708314891000,0],[1708314892000,0],[1708314893000,0],[1708314894000,0],[1708314895000,0],[1708314896000,0],[1708314897000,0],[1708314898000,0],[1708314899000,0],[1708314900000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00FF00',
name: 'validação concorrência saldo - 0',
data: [
[1708314656000,0],[1708314657000,0],[1708314658000,1],[1708314659000,0],[1708314660000,0],[1708314661000,0],[1708314662000,0],[1708314663000,0],[1708314664000,0],[1708314665000,0],[1708314666000,0],[1708314667000,0],[1708314668000,0],[1708314669000,0],[1708314670000,0],[1708314671000,0],[1708314672000,0],[1708314673000,0],[1708314674000,0],[1708314675000,0],[1708314676000,0],[1708314677000,0],[1708314678000,0],[1708314679000,0],[1708314680000,0],[1708314681000,0],[1708314682000,0],[1708314683000,0],[1708314684000,0],[1708314685000,0],[1708314686000,0],[1708314687000,0],[1708314688000,0],[1708314689000,0],[1708314690000,0],[1708314691000,0],[1708314692000,0],[1708314693000,0],[1708314694000,0],[1708314695000,0],[1708314696000,0],[1708314697000,0],[1708314698000,0],[1708314699000,0],[1708314700000,0],[1708314701000,0],[1708314702000,0],[1708314703000,0],[1708314704000,0],[1708314705000,0],[1708314706000,0],[1708314707000,0],[1708314708000,0],[1708314709000,0],[1708314710000,0],[1708314711000,0],[1708314712000,0],[1708314713000,0],[1708314714000,0],[1708314715000,0],[1708314716000,0],[1708314717000,0],[1708314718000,0],[1708314719000,0],[1708314720000,0],[1708314721000,0],[1708314722000,0],[1708314723000,0],[1708314724000,0],[1708314725000,0],[1708314726000,0],[1708314727000,0],[1708314728000,0],[1708314729000,0],[1708314730000,0],[1708314731000,0],[1708314732000,0],[1708314733000,0],[1708314734000,0],[1708314735000,0],[1708314736000,0],[1708314737000,0],[1708314738000,0],[1708314739000,0],[1708314740000,0],[1708314741000,0],[1708314742000,0],[1708314743000,0],[1708314744000,0],[1708314745000,0],[1708314746000,0],[1708314747000,0],[1708314748000,0],[1708314749000,0],[1708314750000,0],[1708314751000,0],[1708314752000,0],[1708314753000,0],[1708314754000,0],[1708314755000,0],[1708314756000,0],[1708314757000,0],[1708314758000,0],[1708314759000,0],[1708314760000,0],[1708314761000,0],[1708314762000,0],[1708314763000,0],[1708314764000,0],[1708314765000,0],[1708314766000,0],[1708314767000,0],[1708314768000,0],[1708314769000,0],[1708314770000,0],[1708314771000,0],[1708314772000,0],[1708314773000,0],[1708314774000,0],[1708314775000,0],[1708314776000,0],[1708314777000,0],[1708314778000,0],[1708314779000,0],[1708314780000,0],[1708314781000,0],[1708314782000,0],[1708314783000,0],[1708314784000,0],[1708314785000,0],[1708314786000,0],[1708314787000,0],[1708314788000,0],[1708314789000,0],[1708314790000,0],[1708314791000,0],[1708314792000,0],[1708314793000,0],[1708314794000,0],[1708314795000,0],[1708314796000,0],[1708314797000,0],[1708314798000,0],[1708314799000,0],[1708314800000,0],[1708314801000,0],[1708314802000,0],[1708314803000,0],[1708314804000,0],[1708314805000,0],[1708314806000,0],[1708314807000,0],[1708314808000,0],[1708314809000,0],[1708314810000,0],[1708314811000,0],[1708314812000,0],[1708314813000,0],[1708314814000,0],[1708314815000,0],[1708314816000,0],[1708314817000,0],[1708314818000,0],[1708314819000,0],[1708314820000,0],[1708314821000,0],[1708314822000,0],[1708314823000,0],[1708314824000,0],[1708314825000,0],[1708314826000,0],[1708314827000,0],[1708314828000,0],[1708314829000,0],[1708314830000,0],[1708314831000,0],[1708314832000,0],[1708314833000,0],[1708314834000,0],[1708314835000,0],[1708314836000,0],[1708314837000,0],[1708314838000,0],[1708314839000,0],[1708314840000,0],[1708314841000,0],[1708314842000,0],[1708314843000,0],[1708314844000,0],[1708314845000,0],[1708314846000,0],[1708314847000,0],[1708314848000,0],[1708314849000,0],[1708314850000,0],[1708314851000,0],[1708314852000,0],[1708314853000,0],[1708314854000,0],[1708314855000,0],[1708314856000,0],[1708314857000,0],[1708314858000,0],[1708314859000,0],[1708314860000,0],[1708314861000,0],[1708314862000,0],[1708314863000,0],[1708314864000,0],[1708314865000,0],[1708314866000,0],[1708314867000,0],[1708314868000,0],[1708314869000,0],[1708314870000,0],[1708314871000,0],[1708314872000,0],[1708314873000,0],[1708314874000,0],[1708314875000,0],[1708314876000,0],[1708314877000,0],[1708314878000,0],[1708314879000,0],[1708314880000,0],[1708314881000,0],[1708314882000,0],[1708314883000,0],[1708314884000,0],[1708314885000,0],[1708314886000,0],[1708314887000,0],[1708314888000,0],[1708314889000,0],[1708314890000,0],[1708314891000,0],[1708314892000,0],[1708314893000,0],[1708314894000,0],[1708314895000,0],[1708314896000,0],[1708314897000,0],[1708314898000,0],[1708314899000,0],[1708314900000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#9D00FF',
name: 'validação concorrência transações - c',
data: [
[1708314656000,0],[1708314657000,25],[1708314658000,22],[1708314659000,0],[1708314660000,0],[1708314661000,0],[1708314662000,0],[1708314663000,0],[1708314664000,0],[1708314665000,0],[1708314666000,0],[1708314667000,0],[1708314668000,0],[1708314669000,0],[1708314670000,0],[1708314671000,0],[1708314672000,0],[1708314673000,0],[1708314674000,0],[1708314675000,0],[1708314676000,0],[1708314677000,0],[1708314678000,0],[1708314679000,0],[1708314680000,0],[1708314681000,0],[1708314682000,0],[1708314683000,0],[1708314684000,0],[1708314685000,0],[1708314686000,0],[1708314687000,0],[1708314688000,0],[1708314689000,0],[1708314690000,0],[1708314691000,0],[1708314692000,0],[1708314693000,0],[1708314694000,0],[1708314695000,0],[1708314696000,0],[1708314697000,0],[1708314698000,0],[1708314699000,0],[1708314700000,0],[1708314701000,0],[1708314702000,0],[1708314703000,0],[1708314704000,0],[1708314705000,0],[1708314706000,0],[1708314707000,0],[1708314708000,0],[1708314709000,0],[1708314710000,0],[1708314711000,0],[1708314712000,0],[1708314713000,0],[1708314714000,0],[1708314715000,0],[1708314716000,0],[1708314717000,0],[1708314718000,0],[1708314719000,0],[1708314720000,0],[1708314721000,0],[1708314722000,0],[1708314723000,0],[1708314724000,0],[1708314725000,0],[1708314726000,0],[1708314727000,0],[1708314728000,0],[1708314729000,0],[1708314730000,0],[1708314731000,0],[1708314732000,0],[1708314733000,0],[1708314734000,0],[1708314735000,0],[1708314736000,0],[1708314737000,0],[1708314738000,0],[1708314739000,0],[1708314740000,0],[1708314741000,0],[1708314742000,0],[1708314743000,0],[1708314744000,0],[1708314745000,0],[1708314746000,0],[1708314747000,0],[1708314748000,0],[1708314749000,0],[1708314750000,0],[1708314751000,0],[1708314752000,0],[1708314753000,0],[1708314754000,0],[1708314755000,0],[1708314756000,0],[1708314757000,0],[1708314758000,0],[1708314759000,0],[1708314760000,0],[1708314761000,0],[1708314762000,0],[1708314763000,0],[1708314764000,0],[1708314765000,0],[1708314766000,0],[1708314767000,0],[1708314768000,0],[1708314769000,0],[1708314770000,0],[1708314771000,0],[1708314772000,0],[1708314773000,0],[1708314774000,0],[1708314775000,0],[1708314776000,0],[1708314777000,0],[1708314778000,0],[1708314779000,0],[1708314780000,0],[1708314781000,0],[1708314782000,0],[1708314783000,0],[1708314784000,0],[1708314785000,0],[1708314786000,0],[1708314787000,0],[1708314788000,0],[1708314789000,0],[1708314790000,0],[1708314791000,0],[1708314792000,0],[1708314793000,0],[1708314794000,0],[1708314795000,0],[1708314796000,0],[1708314797000,0],[1708314798000,0],[1708314799000,0],[1708314800000,0],[1708314801000,0],[1708314802000,0],[1708314803000,0],[1708314804000,0],[1708314805000,0],[1708314806000,0],[1708314807000,0],[1708314808000,0],[1708314809000,0],[1708314810000,0],[1708314811000,0],[1708314812000,0],[1708314813000,0],[1708314814000,0],[1708314815000,0],[1708314816000,0],[1708314817000,0],[1708314818000,0],[1708314819000,0],[1708314820000,0],[1708314821000,0],[1708314822000,0],[1708314823000,0],[1708314824000,0],[1708314825000,0],[1708314826000,0],[1708314827000,0],[1708314828000,0],[1708314829000,0],[1708314830000,0],[1708314831000,0],[1708314832000,0],[1708314833000,0],[1708314834000,0],[1708314835000,0],[1708314836000,0],[1708314837000,0],[1708314838000,0],[1708314839000,0],[1708314840000,0],[1708314841000,0],[1708314842000,0],[1708314843000,0],[1708314844000,0],[1708314845000,0],[1708314846000,0],[1708314847000,0],[1708314848000,0],[1708314849000,0],[1708314850000,0],[1708314851000,0],[1708314852000,0],[1708314853000,0],[1708314854000,0],[1708314855000,0],[1708314856000,0],[1708314857000,0],[1708314858000,0],[1708314859000,0],[1708314860000,0],[1708314861000,0],[1708314862000,0],[1708314863000,0],[1708314864000,0],[1708314865000,0],[1708314866000,0],[1708314867000,0],[1708314868000,0],[1708314869000,0],[1708314870000,0],[1708314871000,0],[1708314872000,0],[1708314873000,0],[1708314874000,0],[1708314875000,0],[1708314876000,0],[1708314877000,0],[1708314878000,0],[1708314879000,0],[1708314880000,0],[1708314881000,0],[1708314882000,0],[1708314883000,0],[1708314884000,0],[1708314885000,0],[1708314886000,0],[1708314887000,0],[1708314888000,0],[1708314889000,0],[1708314890000,0],[1708314891000,0],[1708314892000,0],[1708314893000,0],[1708314894000,0],[1708314895000,0],[1708314896000,0],[1708314897000,0],[1708314898000,0],[1708314899000,0],[1708314900000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FF00E1',
name: 'validação concorrência saldo - -25',
data: [
[1708314656000,1],[1708314657000,1],[1708314658000,0],[1708314659000,0],[1708314660000,0],[1708314661000,0],[1708314662000,0],[1708314663000,0],[1708314664000,0],[1708314665000,0],[1708314666000,0],[1708314667000,0],[1708314668000,0],[1708314669000,0],[1708314670000,0],[1708314671000,0],[1708314672000,0],[1708314673000,0],[1708314674000,0],[1708314675000,0],[1708314676000,0],[1708314677000,0],[1708314678000,0],[1708314679000,0],[1708314680000,0],[1708314681000,0],[1708314682000,0],[1708314683000,0],[1708314684000,0],[1708314685000,0],[1708314686000,0],[1708314687000,0],[1708314688000,0],[1708314689000,0],[1708314690000,0],[1708314691000,0],[1708314692000,0],[1708314693000,0],[1708314694000,0],[1708314695000,0],[1708314696000,0],[1708314697000,0],[1708314698000,0],[1708314699000,0],[1708314700000,0],[1708314701000,0],[1708314702000,0],[1708314703000,0],[1708314704000,0],[1708314705000,0],[1708314706000,0],[1708314707000,0],[1708314708000,0],[1708314709000,0],[1708314710000,0],[1708314711000,0],[1708314712000,0],[1708314713000,0],[1708314714000,0],[1708314715000,0],[1708314716000,0],[1708314717000,0],[1708314718000,0],[1708314719000,0],[1708314720000,0],[1708314721000,0],[1708314722000,0],[1708314723000,0],[1708314724000,0],[1708314725000,0],[1708314726000,0],[1708314727000,0],[1708314728000,0],[1708314729000,0],[1708314730000,0],[1708314731000,0],[1708314732000,0],[1708314733000,0],[1708314734000,0],[1708314735000,0],[1708314736000,0],[1708314737000,0],[1708314738000,0],[1708314739000,0],[1708314740000,0],[1708314741000,0],[1708314742000,0],[1708314743000,0],[1708314744000,0],[1708314745000,0],[1708314746000,0],[1708314747000,0],[1708314748000,0],[1708314749000,0],[1708314750000,0],[1708314751000,0],[1708314752000,0],[1708314753000,0],[1708314754000,0],[1708314755000,0],[1708314756000,0],[1708314757000,0],[1708314758000,0],[1708314759000,0],[1708314760000,0],[1708314761000,0],[1708314762000,0],[1708314763000,0],[1708314764000,0],[1708314765000,0],[1708314766000,0],[1708314767000,0],[1708314768000,0],[1708314769000,0],[1708314770000,0],[1708314771000,0],[1708314772000,0],[1708314773000,0],[1708314774000,0],[1708314775000,0],[1708314776000,0],[1708314777000,0],[1708314778000,0],[1708314779000,0],[1708314780000,0],[1708314781000,0],[1708314782000,0],[1708314783000,0],[1708314784000,0],[1708314785000,0],[1708314786000,0],[1708314787000,0],[1708314788000,0],[1708314789000,0],[1708314790000,0],[1708314791000,0],[1708314792000,0],[1708314793000,0],[1708314794000,0],[1708314795000,0],[1708314796000,0],[1708314797000,0],[1708314798000,0],[1708314799000,0],[1708314800000,0],[1708314801000,0],[1708314802000,0],[1708314803000,0],[1708314804000,0],[1708314805000,0],[1708314806000,0],[1708314807000,0],[1708314808000,0],[1708314809000,0],[1708314810000,0],[1708314811000,0],[1708314812000,0],[1708314813000,0],[1708314814000,0],[1708314815000,0],[1708314816000,0],[1708314817000,0],[1708314818000,0],[1708314819000,0],[1708314820000,0],[1708314821000,0],[1708314822000,0],[1708314823000,0],[1708314824000,0],[1708314825000,0],[1708314826000,0],[1708314827000,0],[1708314828000,0],[1708314829000,0],[1708314830000,0],[1708314831000,0],[1708314832000,0],[1708314833000,0],[1708314834000,0],[1708314835000,0],[1708314836000,0],[1708314837000,0],[1708314838000,0],[1708314839000,0],[1708314840000,0],[1708314841000,0],[1708314842000,0],[1708314843000,0],[1708314844000,0],[1708314845000,0],[1708314846000,0],[1708314847000,0],[1708314848000,0],[1708314849000,0],[1708314850000,0],[1708314851000,0],[1708314852000,0],[1708314853000,0],[1708314854000,0],[1708314855000,0],[1708314856000,0],[1708314857000,0],[1708314858000,0],[1708314859000,0],[1708314860000,0],[1708314861000,0],[1708314862000,0],[1708314863000,0],[1708314864000,0],[1708314865000,0],[1708314866000,0],[1708314867000,0],[1708314868000,0],[1708314869000,0],[1708314870000,0],[1708314871000,0],[1708314872000,0],[1708314873000,0],[1708314874000,0],[1708314875000,0],[1708314876000,0],[1708314877000,0],[1708314878000,0],[1708314879000,0],[1708314880000,0],[1708314881000,0],[1708314882000,0],[1708314883000,0],[1708314884000,0],[1708314885000,0],[1708314886000,0],[1708314887000,0],[1708314888000,0],[1708314889000,0],[1708314890000,0],[1708314891000,0],[1708314892000,0],[1708314893000,0],[1708314894000,0],[1708314895000,0],[1708314896000,0],[1708314897000,0],[1708314898000,0],[1708314899000,0],[1708314900000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#AECAEB',
name: 'validação concorrência transações - d',
data: [
[1708314656000,25],[1708314657000,0],[1708314658000,0],[1708314659000,0],[1708314660000,0],[1708314661000,0],[1708314662000,0],[1708314663000,0],[1708314664000,0],[1708314665000,0],[1708314666000,0],[1708314667000,0],[1708314668000,0],[1708314669000,0],[1708314670000,0],[1708314671000,0],[1708314672000,0],[1708314673000,0],[1708314674000,0],[1708314675000,0],[1708314676000,0],[1708314677000,0],[1708314678000,0],[1708314679000,0],[1708314680000,0],[1708314681000,0],[1708314682000,0],[1708314683000,0],[1708314684000,0],[1708314685000,0],[1708314686000,0],[1708314687000,0],[1708314688000,0],[1708314689000,0],[1708314690000,0],[1708314691000,0],[1708314692000,0],[1708314693000,0],[1708314694000,0],[1708314695000,0],[1708314696000,0],[1708314697000,0],[1708314698000,0],[1708314699000,0],[1708314700000,0],[1708314701000,0],[1708314702000,0],[1708314703000,0],[1708314704000,0],[1708314705000,0],[1708314706000,0],[1708314707000,0],[1708314708000,0],[1708314709000,0],[1708314710000,0],[1708314711000,0],[1708314712000,0],[1708314713000,0],[1708314714000,0],[1708314715000,0],[1708314716000,0],[1708314717000,0],[1708314718000,0],[1708314719000,0],[1708314720000,0],[1708314721000,0],[1708314722000,0],[1708314723000,0],[1708314724000,0],[1708314725000,0],[1708314726000,0],[1708314727000,0],[1708314728000,0],[1708314729000,0],[1708314730000,0],[1708314731000,0],[1708314732000,0],[1708314733000,0],[1708314734000,0],[1708314735000,0],[1708314736000,0],[1708314737000,0],[1708314738000,0],[1708314739000,0],[1708314740000,0],[1708314741000,0],[1708314742000,0],[1708314743000,0],[1708314744000,0],[1708314745000,0],[1708314746000,0],[1708314747000,0],[1708314748000,0],[1708314749000,0],[1708314750000,0],[1708314751000,0],[1708314752000,0],[1708314753000,0],[1708314754000,0],[1708314755000,0],[1708314756000,0],[1708314757000,0],[1708314758000,0],[1708314759000,0],[1708314760000,0],[1708314761000,0],[1708314762000,0],[1708314763000,0],[1708314764000,0],[1708314765000,0],[1708314766000,0],[1708314767000,0],[1708314768000,0],[1708314769000,0],[1708314770000,0],[1708314771000,0],[1708314772000,0],[1708314773000,0],[1708314774000,0],[1708314775000,0],[1708314776000,0],[1708314777000,0],[1708314778000,0],[1708314779000,0],[1708314780000,0],[1708314781000,0],[1708314782000,0],[1708314783000,0],[1708314784000,0],[1708314785000,0],[1708314786000,0],[1708314787000,0],[1708314788000,0],[1708314789000,0],[1708314790000,0],[1708314791000,0],[1708314792000,0],[1708314793000,0],[1708314794000,0],[1708314795000,0],[1708314796000,0],[1708314797000,0],[1708314798000,0],[1708314799000,0],[1708314800000,0],[1708314801000,0],[1708314802000,0],[1708314803000,0],[1708314804000,0],[1708314805000,0],[1708314806000,0],[1708314807000,0],[1708314808000,0],[1708314809000,0],[1708314810000,0],[1708314811000,0],[1708314812000,0],[1708314813000,0],[1708314814000,0],[1708314815000,0],[1708314816000,0],[1708314817000,0],[1708314818000,0],[1708314819000,0],[1708314820000,0],[1708314821000,0],[1708314822000,0],[1708314823000,0],[1708314824000,0],[1708314825000,0],[1708314826000,0],[1708314827000,0],[1708314828000,0],[1708314829000,0],[1708314830000,0],[1708314831000,0],[1708314832000,0],[1708314833000,0],[1708314834000,0],[1708314835000,0],[1708314836000,0],[1708314837000,0],[1708314838000,0],[1708314839000,0],[1708314840000,0],[1708314841000,0],[1708314842000,0],[1708314843000,0],[1708314844000,0],[1708314845000,0],[1708314846000,0],[1708314847000,0],[1708314848000,0],[1708314849000,0],[1708314850000,0],[1708314851000,0],[1708314852000,0],[1708314853000,0],[1708314854000,0],[1708314855000,0],[1708314856000,0],[1708314857000,0],[1708314858000,0],[1708314859000,0],[1708314860000,0],[1708314861000,0],[1708314862000,0],[1708314863000,0],[1708314864000,0],[1708314865000,0],[1708314866000,0],[1708314867000,0],[1708314868000,0],[1708314869000,0],[1708314870000,0],[1708314871000,0],[1708314872000,0],[1708314873000,0],[1708314874000,0],[1708314875000,0],[1708314876000,0],[1708314877000,0],[1708314878000,0],[1708314879000,0],[1708314880000,0],[1708314881000,0],[1708314882000,0],[1708314883000,0],[1708314884000,0],[1708314885000,0],[1708314886000,0],[1708314887000,0],[1708314888000,0],[1708314889000,0],[1708314890000,0],[1708314891000,0],[1708314892000,0],[1708314893000,0],[1708314894000,0],[1708314895000,0],[1708314896000,0],[1708314897000,0],[1708314898000,0],[1708314899000,0],[1708314900000,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', '4', '6', '7', '9', '11', '13', '15', '17', '18', '20', '22', '24', '26', '28', '29', '31', '33', '35', '37', '39', '40', '42', '44', '46', '48', '49', '51', '53', '55', '57', '59', '60', '62', '64', '66', '68', '70', '71', '73', '75', '77', '79', '81', '82', '84', '86', '88', '90', '92', '93', '95', '97', '99', '101', '103', '104', '106', '108', '110', '112', '114', '115', '117', '119', '121', '123', '125', '126', '128', '130', '132', '134', '136', '137', '139', '141', '143', '145', '146', '148', '150', '152', '154', '156', '157', '159', '161', '163', '165', '167', '168', '170', '172', '174', '176', '178', '179', '181', '183'],
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: [
20.28,53.14,20.25,3.5,0.86,0.26,0.34,0.22,0.18,0.12,0.08,0.03,0.05,0.05,0.04,0.03,0.03,0.01,0.02,0.01,0.02,0.02,0.01,0.01,0.01,0.0,0.02,0.01,0.0,0.0,0.01,0.0,0.0,0.0,0.01,0.0,0.01,0.0,0.0,0.0,0.01,0.0,0.0,0.0,0.01,0.0,0.0,0.0,0.0,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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([[1708314656,[29,50,67,80,80,83,84,91,101,104]],[1708314657,[5,5,5,5,5,5,5,5,5,5]],[1708314658,[11,22,40,50,51,55,57,58,61,62]],[1708314659,[5,5,5,5,5,5,5,5,5,5]],[1708314660,[1,3,7,46,94,101,116,119,127,131]],[1708314661,[5,6,7,7,7,7,7,7,7,8]],[1708314662,[5,6,6,6,7,7,7,7,7,7]],[1708314663,[5,6,6,7,7,7,8,8,8,8]],[1708314664,[4,5,5,6,6,6,7,7,7,8]],[1708314665,[4,5,5,6,6,6,6,7,7,7]],[1708314666,[4,5,5,6,6,6,8,10,14,15]],[1708314667,[4,4,5,7,7,8,10,11,11,12]],[1708314668,[3,4,5,5,5,5,5,6,7,7]],[1708314669,[3,4,5,6,6,7,7,7,7,8]],[1708314670,[4,4,5,6,7,8,8,14,17,18]],[1708314671,[3,4,5,6,6,6,7,7,11,13]],[1708314672,[4,4,5,6,6,6,7,8,8,9]],[1708314673,[3,4,5,5,6,6,7,7,7,8]],[1708314674,[3,4,5,5,5,6,6,6,8,10]],[1708314675,[2,4,5,5,6,6,7,8,9,9]],[1708314676,[3,4,5,5,5,6,6,6,7,7]],[1708314677,[2,3,4,4,4,5,5,5,6,8]],[1708314678,[3,4,4,4,4,5,5,5,6,6]],[1708314679,[2,4,4,4,4,5,5,6,8,8]],[1708314680,[2,3,4,4,5,5,5,6,7,9]],[1708314681,[2,4,4,5,5,5,6,6,17,17]],[1708314682,[1,3,4,5,5,5,6,6,6,7]],[1708314683,[2,4,4,4,5,5,6,7,7,7]],[1708314684,[2,3,4,4,5,5,6,6,10,12]],[1708314685,[1,3,4,5,5,6,8,19,55,68]],[1708314686,[1,3,4,4,4,5,5,5,7,10]],[1708314687,[1,3,4,4,5,5,5,6,11,15]],[1708314688,[1,3,4,4,5,5,6,7,7,9]],[1708314689,[2,3,4,4,4,4,4,5,5,6]],[1708314690,[2,4,4,4,5,5,5,6,9,11]],[1708314691,[1,3,4,4,4,5,5,7,13,14]],[1708314692,[2,3,4,4,4,5,5,5,7,9]],[1708314693,[2,4,4,5,5,5,6,7,11,15]],[1708314694,[1,3,4,5,5,5,6,7,8,17]],[1708314695,[1,3,4,4,5,5,5,6,8,9]],[1708314696,[1,3,4,5,5,5,6,6,7,13]],[1708314697,[2,4,4,5,5,6,6,7,9,10]],[1708314698,[1,3,4,4,4,5,5,5,6,21]],[1708314699,[1,3,3,4,4,4,4,5,5,6]],[1708314700,[1,3,3,4,4,4,5,5,7,8]],[1708314701,[1,3,3,4,4,4,4,5,7,10]],[1708314702,[1,3,3,4,4,4,4,5,6,13]],[1708314703,[2,3,4,4,4,4,5,5,9,11]],[1708314704,[1,3,4,4,4,4,5,5,5,6]],[1708314705,[1,3,3,4,4,4,4,5,5,5]],[1708314706,[1,3,4,4,4,4,4,5,7,20]],[1708314707,[1,3,3,4,4,4,4,5,6,9]],[1708314708,[1,3,4,4,5,5,5,7,10,12]],[1708314709,[1,3,4,4,4,5,5,5,9,15]],[1708314710,[1,3,4,4,4,5,5,6,13,21]],[1708314711,[1,3,4,4,4,4,4,5,6,7]],[1708314712,[1,3,3,4,4,4,5,7,15,17]],[1708314713,[1,3,3,4,4,4,4,4,10,18]],[1708314714,[1,2,3,4,4,4,4,5,6,10]],[1708314715,[1,3,3,4,4,4,4,5,6,10]],[1708314716,[1,3,3,4,4,4,5,6,10,13]],[1708314717,[1,3,3,4,4,4,5,5,9,11]],[1708314718,[1,2,4,4,5,5,5,6,6,8]],[1708314719,[1,3,4,5,5,5,5,6,7,10]],[1708314720,[1,2,4,4,4,5,5,6,6,7]],[1708314721,[1,3,3,4,4,4,4,4,6,6]],[1708314722,[1,2,3,4,4,4,5,6,7,9]],[1708314723,[1,3,3,4,4,4,4,6,8,11]],[1708314724,[1,3,3,4,4,4,5,6,8,9]],[1708314725,[1,2,3,3,4,4,4,4,5,6]],[1708314726,[1,2,3,3,3,3,4,4,5,11]],[1708314727,[1,2,3,3,4,4,4,4,5,6]],[1708314728,[1,3,3,4,4,4,4,5,7,7]],[1708314729,[1,2,3,4,4,4,5,5,6,7]],[1708314730,[1,2,3,4,4,5,5,5,11,22]],[1708314731,[1,2,3,3,3,4,4,5,6,10]],[1708314732,[1,2,3,3,4,4,4,5,8,10]],[1708314733,[1,3,3,4,4,4,5,6,8,14]],[1708314734,[1,3,3,4,4,4,5,5,14,23]],[1708314735,[1,3,3,4,4,4,5,5,8,17]],[1708314736,[1,3,3,4,4,4,4,5,6,8]],[1708314737,[1,2,3,4,4,4,4,5,16,24]],[1708314738,[1,3,3,4,4,4,4,5,6,8]],[1708314739,[1,3,3,4,4,4,4,5,6,7]],[1708314740,[1,3,3,4,4,4,4,5,9,12]],[1708314741,[1,3,3,4,4,4,4,5,6,8]],[1708314742,[1,3,3,4,4,5,5,5,9,16]],[1708314743,[1,2,4,4,5,5,5,6,13,18]],[1708314744,[1,3,3,4,4,4,5,5,7,8]],[1708314745,[1,3,3,3,4,4,4,5,15,24]],[1708314746,[1,3,3,4,4,4,7,37,71,76]],[1708314747,[1,2,3,4,4,4,4,5,7,9]],[1708314748,[1,3,3,4,4,4,5,6,7,11]],[1708314749,[1,3,3,4,4,4,4,5,8,15]],[1708314750,[1,2,3,3,4,4,4,5,6,9]],[1708314751,[1,3,3,4,4,4,5,6,10,14]],[1708314752,[1,3,4,4,5,5,5,6,7,9]],[1708314753,[1,3,3,4,4,4,4,5,13,23]],[1708314754,[1,2,3,4,4,4,5,8,15,18]],[1708314755,[1,3,3,4,4,4,4,5,9,16]],[1708314756,[1,3,3,4,4,4,4,5,15,18]],[1708314757,[1,3,3,4,4,4,4,6,9,20]],[1708314758,[1,2,3,4,4,4,5,6,13,19]],[1708314759,[1,2,3,4,4,4,4,5,8,13]],[1708314760,[1,2,3,4,4,4,4,5,8,10]],[1708314761,[1,2,3,3,4,4,4,5,8,19]],[1708314762,[1,2,3,4,4,4,5,5,10,11]],[1708314763,[1,3,3,4,4,5,5,5,7,9]],[1708314764,[1,3,4,5,5,5,6,8,13,19]],[1708314765,[1,3,4,4,5,5,5,6,9,12]],[1708314766,[1,3,4,4,4,5,5,6,16,20]],[1708314767,[1,2,3,4,4,4,5,6,12,15]],[1708314768,[1,3,3,4,4,4,4,5,5,6]],[1708314769,[1,2,3,3,4,4,4,4,5,8]],[1708314770,[1,2,3,3,4,4,4,5,6,8]],[1708314771,[1,2,3,4,4,5,5,5,6,9]],[1708314772,[1,3,4,4,4,5,5,5,7,12]],[1708314773,[1,2,3,4,5,6,7,12,24,36]],[1708314774,[2,4,5,6,6,6,7,14,33,39]],[1708314775,[1,3,3,4,5,5,6,6,9,12]],[1708314776,[1,5,6,64,77,89,101,124,158,184]],[1708314777,[1,3,4,5,6,7,17,32,57,65]],[1708314778,[1,4,5,6,6,6,6,8,11,24]],[1708314779,[1,3,3,4,5,5,5,6,9,10]],[1708314780,[1,3,4,5,6,6,6,7,18,25]],[1708314781,[1,3,3,5,5,5,6,6,10,14]],[1708314782,[1,3,4,5,5,6,6,8,12,23]],[1708314783,[1,3,3,5,5,5,5,8,12,16]],[1708314784,[1,4,5,6,6,7,8,11,31,45]],[1708314785,[1,3,4,5,5,6,6,7,16,24]],[1708314786,[1,3,4,5,6,6,6,7,10,12]],[1708314787,[1,3,3,5,5,5,5,6,7,9]],[1708314788,[1,3,4,5,6,6,7,8,10,14]],[1708314789,[1,3,4,5,6,6,6,7,13,16]],[1708314790,[1,3,4,5,5,5,6,6,7,9]],[1708314791,[1,3,4,5,5,6,6,7,12,18]],[1708314792,[1,3,4,5,5,6,6,7,9,13]],[1708314793,[1,3,4,5,6,6,7,7,10,17]],[1708314794,[1,3,3,5,5,5,6,7,8,10]],[1708314795,[1,3,4,5,5,6,7,8,11,17]],[1708314796,[1,3,3,5,5,5,6,7,18,29]],[1708314797,[1,3,4,5,6,6,7,7,11,15]],[1708314798,[1,3,3,5,5,5,6,7,11,15]],[1708314799,[1,3,4,5,6,6,6,7,14,27]],[1708314800,[1,3,3,5,5,5,6,8,14,26]],[1708314801,[1,3,4,6,6,7,8,10,38,48]],[1708314802,[1,2,3,3,4,4,5,6,13,18]],[1708314803,[1,3,4,5,6,6,7,7,8,10]],[1708314804,[1,3,3,4,5,5,5,6,12,16]],[1708314805,[1,3,4,6,6,6,7,8,12,15]],[1708314806,[1,3,4,5,5,6,6,7,21,35]],[1708314807,[1,4,5,6,7,9,21,54,78,90]],[1708314808,[1,3,3,4,4,4,5,5,6,9]],[1708314809,[1,3,4,5,5,6,6,7,8,14]],[1708314810,[1,2,3,4,5,5,6,6,9,11]],[1708314811,[1,3,4,5,5,6,6,7,13,17]],[1708314812,[1,2,3,4,4,4,5,7,17,27]],[1708314813,[1,3,3,4,5,5,6,6,8,10]],[1708314814,[1,2,3,4,4,4,5,5,6,12]],[1708314815,[1,3,4,5,6,6,7,8,21,24]],[1708314816,[1,2,3,4,4,5,5,6,7,10]],[1708314817,[1,3,4,5,5,6,6,8,11,16]],[1708314818,[1,2,3,4,4,5,5,6,19,25]],[1708314819,[1,3,4,4,5,5,5,6,8,11]],[1708314820,[1,2,3,4,4,5,5,6,10,14]],[1708314821,[1,2,3,4,5,5,5,6,8,14]],[1708314822,[1,2,3,4,4,5,6,7,10,16]],[1708314823,[1,3,3,4,5,5,6,7,10,13]],[1708314824,[1,3,3,5,5,5,6,6,10,13]],[1708314825,[1,2,3,4,4,4,6,12,37,52]],[1708314826,[1,2,3,4,4,5,5,6,8,13]],[1708314827,[1,2,3,4,5,5,5,6,12,15]],[1708314828,[1,3,4,5,5,5,6,7,11,17]],[1708314829,[1,2,3,4,4,5,5,7,13,16]],[1708314830,[1,3,4,5,5,5,6,7,10,15]],[1708314831,[1,2,3,4,5,5,5,6,9,15]],[1708314832,[1,3,3,4,5,5,5,6,7,11]],[1708314833,[1,2,3,4,4,4,5,6,8,12]],[1708314834,[1,3,3,5,5,5,6,8,24,40]],[1708314835,[1,2,3,5,5,5,6,6,8,12]],[1708314836,[1,3,4,5,5,6,6,9,21,30]],[1708314837,[1,3,4,5,5,5,6,8,16,34]],[1708314838,[1,3,4,6,6,7,9,24,39,49]],[1708314839,[1,3,4,5,5,6,6,6,8,10]],[1708314840,[2,3,5,6,6,6,7,8,11,13]],[1708314841,[2,3,4,5,5,5,6,7,8,12]],[1708314842,[1,3,4,5,5,6,6,8,11,23]],[1708314843,[1,3,4,5,5,6,7,11,36,50]],[1708314844,[1,3,4,6,6,6,7,10,16,32]],[1708314845,[1,3,4,5,5,5,6,6,8,12]],[1708314846,[1,3,4,5,5,6,6,7,8,13]],[1708314847,[1,3,3,5,5,6,6,11,32,42]],[1708314848,[1,3,4,5,5,6,6,7,8,11]],[1708314849,[1,3,3,4,4,5,5,6,20,30]],[1708314850,[1,3,5,6,6,6,6,7,8,11]],[1708314851,[1,2,3,4,5,5,6,6,13,16]],[1708314852,[1,4,5,5,6,6,7,8,18,26]],[1708314853,[1,3,3,4,4,5,5,7,10,14]],[1708314854,[1,4,5,6,6,7,7,10,17,20]],[1708314855,[1,2,3,4,4,5,5,6,13,17]],[1708314856,[1,4,5,6,6,6,6,7,15,21]],[1708314857,[1,2,3,4,5,5,5,6,9,13]],[1708314858,[1,3,4,5,5,5,6,7,11,17]],[1708314859,[1,2,3,4,4,4,5,5,10,14]],[1708314860,[1,3,4,5,5,6,6,7,8,15]],[1708314861,[1,2,3,4,4,5,5,7,14,17]],[1708314862,[1,3,5,5,6,6,6,7,23,43]],[1708314863,[1,2,3,4,5,5,5,6,8,11]],[1708314864,[1,3,3,5,5,5,6,7,10,15]],[1708314865,[1,2,3,4,4,5,5,6,10,19]],[1708314866,[1,2,3,4,4,5,5,6,17,36]],[1708314867,[1,2,3,4,4,4,5,6,8,10]],[1708314868,[1,3,3,5,5,5,6,7,12,15]],[1708314869,[1,3,3,4,5,5,6,6,10,19]],[1708314870,[1,3,4,5,5,6,6,7,9,14]],[1708314871,[1,3,4,5,5,6,6,7,12,14]],[1708314872,[1,3,4,5,5,5,6,6,7,11]],[1708314873,[1,3,4,5,6,6,6,7,11,17]],[1708314874,[1,3,3,4,5,5,5,6,8,14]],[1708314875,[1,3,3,5,5,6,6,7,18,33]],[1708314876,[1,2,3,5,5,5,6,20,46,57]],[1708314877,[1,3,4,5,5,6,6,7,9,18]],[1708314878,[1,2,3,4,4,5,7,18,44,64]],[1708314879,[1,3,4,5,6,6,7,7,9,12]],[1708314880,[1,2,3,4,4,5,5,6,8,11]],[1708314881,[1,3,4,5,5,5,5,6,8,10]],[1708314882,[1,2,4,5,5,5,6,8,19,28]],[1708314883,[1,3,4,5,5,6,6,8,15,28]],[1708314884,[1,2,3,4,4,5,5,5,6,9]],[1708314885,[1,3,4,5,5,6,6,7,10,21]],[1708314886,[1,2,4,4,5,5,5,6,7,11]],[1708314887,[1,3,4,5,5,6,6,7,13,19]],[1708314888,[1,2,3,4,4,5,5,6,7,11]],[1708314889,[1,3,4,5,5,5,6,7,8,11]],[1708314890,[1,2,3,4,4,4,5,5,10,13]],[1708314891,[1,3,4,5,5,5,6,7,8,9]],[1708314892,[1,2,3,4,5,5,5,6,10,18]],[1708314893,[1,3,3,4,5,5,5,6,8,10]],[1708314894,[1,2,3,4,4,5,5,7,9,10]],[1708314895,[1,3,3,4,5,5,6,7,13,26]],[1708314896,[1,2,4,4,5,5,6,7,15,29]],[1708314897,[1,3,4,5,5,6,6,7,12,18]],[1708314898,[1,3,3,5,5,5,6,6,8,12]],[1708314899,[1,4,5,5,6,6,6,7,20,34]],[1708314900,[1,3,4,5,6,6,7,7,17,32]]]);
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([[1708314656,[25,25,0]],[1708314657,[1,1,0]],[1708314658,[25,25,0]],[1708314659,[1,1,0]],[1708314660,[71,71,0]],[1708314661,[3,3,0]],[1708314662,[6,6,0]],[1708314663,[9,9,0]],[1708314664,[11,11,0]],[1708314665,[13,13,0]],[1708314666,[18,18,0]],[1708314667,[19,19,0]],[1708314668,[24,24,0]],[1708314669,[26,26,0]],[1708314670,[27,27,0]],[1708314671,[32,32,0]],[1708314672,[34,34,0]],[1708314673,[37,37,0]],[1708314674,[39,39,0]],[1708314675,[43,43,0]],[1708314676,[44,44,0]],[1708314677,[49,49,0]],[1708314678,[50,50,0]],[1708314679,[54,54,0]],[1708314680,[56,56,0]],[1708314681,[60,60,0]],[1708314682,[61,61,0]],[1708314683,[65,65,0]],[1708314684,[67,67,0]],[1708314685,[70,70,0]],[1708314686,[74,74,0]],[1708314687,[76,76,0]],[1708314688,[80,80,0]],[1708314689,[81,81,0]],[1708314690,[84,84,0]],[1708314691,[88,88,0]],[1708314692,[90,90,0]],[1708314693,[93,93,0]],[1708314694,[96,96,0]],[1708314695,[98,98,0]],[1708314696,[102,102,0]],[1708314697,[104,104,0]],[1708314698,[107,107,0]],[1708314699,[109,109,0]],[1708314700,[114,114,0]],[1708314701,[115,115,0]],[1708314702,[118,118,0]],[1708314703,[121,121,0]],[1708314704,[124,124,0]],[1708314705,[126,126,0]],[1708314706,[129,129,0]],[1708314707,[133,133,0]],[1708314708,[134,134,0]],[1708314709,[139,139,0]],[1708314710,[140,140,0]],[1708314711,[144,144,0]],[1708314712,[146,146,0]],[1708314713,[149,149,0]],[1708314714,[151,151,0]],[1708314715,[155,155,0]],[1708314716,[157,157,0]],[1708314717,[160,160,0]],[1708314718,[164,164,0]],[1708314719,[165,165,0]],[1708314720,[171,171,0]],[1708314721,[171,171,0]],[1708314722,[174,174,0]],[1708314723,[177,177,0]],[1708314724,[180,180,0]],[1708314725,[183,183,0]],[1708314726,[186,186,0]],[1708314727,[188,188,0]],[1708314728,[192,192,0]],[1708314729,[194,194,0]],[1708314730,[197,197,0]],[1708314731,[198,198,0]],[1708314732,[204,204,0]],[1708314733,[204,204,0]],[1708314734,[208,208,0]],[1708314735,[211,211,0]],[1708314736,[214,214,0]],[1708314737,[216,216,0]],[1708314738,[220,220,0]],[1708314739,[222,222,0]],[1708314740,[225,225,0]],[1708314741,[228,228,0]],[1708314742,[229,229,0]],[1708314743,[234,234,0]],[1708314744,[236,236,0]],[1708314745,[239,239,0]],[1708314746,[242,242,0]],[1708314747,[244,244,0]],[1708314748,[248,248,0]],[1708314749,[250,250,0]],[1708314750,[253,253,0]],[1708314751,[255,255,0]],[1708314752,[261,261,0]],[1708314753,[261,261,0]],[1708314754,[264,264,0]],[1708314755,[267,267,0]],[1708314756,[269,269,0]],[1708314757,[273,273,0]],[1708314758,[275,275,0]],[1708314759,[279,279,0]],[1708314760,[281,281,0]],[1708314761,[284,284,0]],[1708314762,[286,286,0]],[1708314763,[290,290,0]],[1708314764,[292,292,0]],[1708314765,[295,295,0]],[1708314766,[298,298,0]],[1708314767,[301,301,0]],[1708314768,[304,304,0]],[1708314769,[306,306,0]],[1708314770,[308,308,0]],[1708314771,[313,313,0]],[1708314772,[314,314,0]],[1708314773,[318,318,0]],[1708314774,[320,320,0]],[1708314775,[323,323,0]],[1708314776,[326,326,0]],[1708314777,[330,330,0]],[1708314778,[332,332,0]],[1708314779,[334,334,0]],[1708314780,[337,337,0]],[1708314781,[340,340,0]],[1708314782,[340,340,0]],[1708314783,[340,340,0]],[1708314784,[340,340,0]],[1708314785,[340,340,0]],[1708314786,[340,340,0]],[1708314787,[340,340,0]],[1708314788,[340,340,0]],[1708314789,[340,340,0]],[1708314790,[340,340,0]],[1708314791,[340,340,0]],[1708314792,[340,340,0]],[1708314793,[340,340,0]],[1708314794,[340,340,0]],[1708314795,[340,340,0]],[1708314796,[340,340,0]],[1708314797,[340,340,0]],[1708314798,[340,340,0]],[1708314799,[340,340,0]],[1708314800,[340,340,0]],[1708314801,[340,340,0]],[1708314802,[340,340,0]],[1708314803,[340,340,0]],[1708314804,[340,340,0]],[1708314805,[340,340,0]],[1708314806,[340,340,0]],[1708314807,[340,340,0]],[1708314808,[340,340,0]],[1708314809,[340,340,0]],[1708314810,[340,340,0]],[1708314811,[340,340,0]],[1708314812,[340,340,0]],[1708314813,[340,340,0]],[1708314814,[340,340,0]],[1708314815,[340,340,0]],[1708314816,[340,340,0]],[1708314817,[340,340,0]],[1708314818,[340,340,0]],[1708314819,[340,340,0]],[1708314820,[340,340,0]],[1708314821,[340,340,0]],[1708314822,[340,340,0]],[1708314823,[340,340,0]],[1708314824,[340,340,0]],[1708314825,[340,340,0]],[1708314826,[340,340,0]],[1708314827,[340,340,0]],[1708314828,[340,340,0]],[1708314829,[340,340,0]],[1708314830,[340,340,0]],[1708314831,[340,340,0]],[1708314832,[340,340,0]],[1708314833,[340,340,0]],[1708314834,[340,340,0]],[1708314835,[340,340,0]],[1708314836,[340,340,0]],[1708314837,[340,340,0]],[1708314838,[340,340,0]],[1708314839,[340,340,0]],[1708314840,[340,340,0]],[1708314841,[340,340,0]],[1708314842,[340,340,0]],[1708314843,[340,340,0]],[1708314844,[340,340,0]],[1708314845,[340,340,0]],[1708314846,[340,340,0]],[1708314847,[340,340,0]],[1708314848,[340,340,0]],[1708314849,[340,340,0]],[1708314850,[340,340,0]],[1708314851,[340,340,0]],[1708314852,[340,340,0]],[1708314853,[340,340,0]],[1708314854,[340,340,0]],[1708314855,[340,340,0]],[1708314856,[340,340,0]],[1708314857,[340,340,0]],[1708314858,[340,340,0]],[1708314859,[340,340,0]],[1708314860,[340,340,0]],[1708314861,[340,340,0]],[1708314862,[340,340,0]],[1708314863,[340,340,0]],[1708314864,[340,340,0]],[1708314865,[340,340,0]],[1708314866,[340,340,0]],[1708314867,[340,340,0]],[1708314868,[340,340,0]],[1708314869,[340,340,0]],[1708314870,[340,340,0]],[1708314871,[340,340,0]],[1708314872,[340,340,0]],[1708314873,[340,340,0]],[1708314874,[340,340,0]],[1708314875,[340,340,0]],[1708314876,[340,340,0]],[1708314877,[340,340,0]],[1708314878,[340,340,0]],[1708314879,[340,340,0]],[1708314880,[340,340,0]],[1708314881,[340,340,0]],[1708314882,[340,340,0]],[1708314883,[340,340,0]],[1708314884,[340,340,0]],[1708314885,[340,340,0]],[1708314886,[340,340,0]],[1708314887,[340,340,0]],[1708314888,[340,340,0]],[1708314889,[340,340,0]],[1708314890,[340,340,0]],[1708314891,[340,340,0]],[1708314892,[340,340,0]],[1708314893,[340,340,0]],[1708314894,[340,340,0]],[1708314895,[340,340,0]],[1708314896,[340,340,0]],[1708314897,[340,340,0]],[1708314898,[340,340,0]],[1708314899,[340,340,0]],[1708314900,[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:[