-
Notifications
You must be signed in to change notification settings - Fork 923
/
Copy pathindex.html
1173 lines (1104 loc) · 95.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-24 14:33:26 GMT</span>
</span>
<span class="simulation-information-item">
<span class="simulation-information-label">Duration: </span>
<span>4m 5s </span>
</span>
<span class="simulation-tooltip simulation-information-item description" title="Description" data-content="Rinha de Backend - 2024/Q1: Crébito - glauco-filho-01">
<span class="simulation-information-label">Description: </span>
<span>Rinha de Backend - 2024/Q1: Crébito - glauco-filho-01</span>
</span>
</div>
</div>
</div>
</div>
<div id="statistics_table_container">
<div id="stats" class="statistics extensible-geant collapsed">
<div class="title">
<div id="statistics_title" class="title_base"><span class="title_base_stats">Stats</span><span class="expand-table">Fixed height</span><span id="toggle-stats" class="toggle-table"></span><span class="collapse-table">Full size</span></div>
<div class="right">
<button class="statistics-button expand-all-button">Expand all groups</button>
<button class="statistics-button collapse-all-button">Collapse all groups</button>
<button id="statistics_full_screen" class="statistics-button" onclick="openStatisticsTableModal()"><img alt="Fullscreen" src="style/fullscreen.svg"></button>
</div>
</div>
<div class="scrollable">
<table id="container_statistics_head" class="statistics-in extensible-geant">
<thead>
<tr>
<th rowspan="2" id="col-1" class="header sortable sorted-up"><span>Requests</span></th>
<th colspan="5" class="header"><span class="executions">Executions</span></th>
<th colspan="8" class="header"><span class="response-time">Response Time (ms)</span></th>
</tr>
<tr>
<th id="col-2" class="header sortable"><span>Total</span></th>
<th id="col-3" class="header sortable"><span>OK</span></th>
<th id="col-4" class="header sortable"><span>KO</span></th>
<th id="col-5" class="header sortable"><span>% KO</span></th>
<th id="col-6" class="header sortable"><span><abbr title="Count of events per second">Cnt/s</abbr></span></th>
<th id="col-7" class="header sortable"><span>Min</span></th>
<th id="col-8" class="header sortable"><span>50th pct</span></th>
<th id="col-9" class="header sortable"><span>75th pct</span></th>
<th id="col-10" class="header sortable"><span>95th pct</span></th>
<th id="col-11" class="header sortable"><span>99th pct</span></th>
<th id="col-12" class="header sortable"><span>Max</span></th>
<th id="col-13" class="header sortable"><span>Mean</span></th>
<th id="col-14" class="header sortable"><span><abbr title="Standard Deviation">Std Dev</abbr></span></th>
</tr>
</thead>
<tbody></tbody>
</table>
<table id="container_statistics_body" class="statistics-in extensible-geant">
<tbody></tbody>
</table>
</div>
</div>
</div>
<dialog id="statistics_table_modal" class="statistics-table-modal">
<div class="statistics-table-modal-header"><button class="button-modal" onclick="closeStatisticsTableModal()"><img alt="Close" src="style/close.svg"></button></div>
<div class="statistics-table-modal-container">
<div id="statistics_table_modal_content" class="statistics-table-modal-content"></div>
</div>
</dialog>
<script>
function openStatisticsTableModal () {
const statsTable = document.getElementById("stats");
const statsTableModal = document.getElementById("statistics_table_modal");
const fullScreenButton = document.getElementById("statistics_full_screen");
fullScreenButton.disabled = true;
if (typeof statsTableModal.showModal === "function") {
const statsTableModalContent = document.getElementById("statistics_table_modal_content");
statsTableModalContent.innerHTML = "";
statsTableModalContent.appendChild(statsTable);
statsTableModal.showModal();
statsTableModal.addEventListener("close", function () {
const container = document.getElementById("statistics_table_container");
container.appendChild(statsTable);
fullScreenButton.disabled = false;
});
} else {
const incompatibleBrowserVersionMessage = document.createElement("div");
incompatibleBrowserVersionMessage.innerText = "Sorry, the <dialog> API is not supported by this browser.";
statsTable.insertBefore(incompatibleBrowserVersionMessage, statsTable.children[0]);
}
}
function closeStatisticsTableModal () {
const statsTableModal = document.getElementById("statistics_table_modal");
statsTableModal.close();
}
</script>
<div class="schema geant">
<div id="active_users" class="geant"></div>
</div>
<div class="schema geant">
<div id="responsetimeDistributionContainer" class="geant"></div>
</div>
<div class="schema geant">
<div id="responsetimepercentilesovertimeokPercentilesContainer" class="geant"></div>
</div>
<div class="schema geant">
<div id="requests" class="geant"></div>
</div>
<div class="schema geant">
<div id="responses" class="geant"></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<script>
var pageStats = stats.stats;
$(document).ready(function() {
$('.simulation-tooltip').popover({trigger:'hover', placement:'left'});
setDetailsLinkUrl();
setGlobalMenu();
setActiveMenu();
fillStats(pageStats);
Highcharts.setOptions({
global: { useUTC: false }
});
var rangesChart = new Highcharts.Chart({
chart: {
renderTo: 'ranges',
marginRight: 100
},
credits: { enabled: false },
legend: { enabled: false },
title: { text: 'A title to let highcharts reserve the place for the title set later' },
xAxis: {
categories: [
pageStats.group1.htmlName,
pageStats.group2.htmlName,
pageStats.group3.htmlName,
pageStats.group4.htmlName
]
},
yAxis: {
title: { text: 'Number of Requests' },
reversedStacks: false
},
tooltip: {
formatter: function() {
var s;
if (this.point.name) { // the pie chart
s = ''+ this.point.name +': '+ this.y +'% requests';
} else {
s = ''+ this.y + ' requests';
}
return s;
}
},
plotOptions: {
series: {
stacking: 'normal',
shadow: true
}
},
series: [
{
type: 'column',
data: [{
color: '#68b65c',
y: pageStats.group1.count
},
{
color: '#FFDD00',
y: pageStats.group2.count
},
{
color: '#FFA900',
y: pageStats.group3.count
},
{
color: '#f15b4f',
y: pageStats.group4.count
}]
},
{
type: 'pie',
name: 'Percentages',
data: [
{
name: pageStats.group1.name,
y: pageStats.group1.percentage,
color: '#68b65c'
},
{
name: pageStats.group2.name,
y: pageStats.group2.percentage,
color: '#FFDD00'
},
{
name: pageStats.group3.name,
y: pageStats.group3.percentage,
color: '#FFA900'
},
{
name: pageStats.group4.name,
y: pageStats.group4.percentage,
color: '#f15b4f'
}
],
center: [345, 0],
size: 90,
showInLegend: false,
dataLabels: { enabled: false }
}
]
});
rangesChart.setTitle({
text: '<span class="chart_title">Response Time Ranges</span>',
useHTML: true
});
function numberOfRequestsDataForGroup(group) {
var data = {names: [], oks: [], kos: []};
$.each(group.contents, function(contentName, content) {
if (content.type == 'GROUP') {
var result = numberOfRequestsDataForGroup(content);
data.names = data.names.concat(result.names);
data.oks = data.oks.concat(result.oks);
data.kos = data.kos.concat(result.kos);
}
else if (content.type == 'REQUEST') {
data.names.push(content.path);
data.oks.push(parseInt(content.stats.numberOfRequests.ok));
data.kos.push(parseInt(content.stats.numberOfRequests.ko));
}
});
return data;
}
var numberOfRequestsData = numberOfRequestsDataForGroup(stats);
var tickInterval = Math.ceil(numberOfRequestsData.names.length / 1000);
new Highcharts.Chart({
chart: {
renderTo:'container_number_of_requests',
polar:true,
type:'column',
height:330
},
credits:{
enabled:false
},
title:{
text:'<span class="chart_title">Number of requests</span>',
useHTML: true,
widthAdjust:-20
},
xAxis:{
tickmarkPlacement:'on',
tickInterval: tickInterval,
categories:numberOfRequestsData.names,
labels:{ enabled:false }
},
yAxis:{
min:0,
reversedStacks: false
},
plotOptions:{
series:{
stacking:'normal',
groupPadding:0,
pointPlacement:'on',
shadow: true
}
},
legend: {
borderWidth: 0,
itemStyle: { fontWeight: "normal" },
symbolRadius: 0
},
series:[
{
name:'OK',
data:numberOfRequestsData.oks,
color:"#68b65c"
},
{
name:'KO',
data:numberOfRequestsData.kos,
color:"#f15b4f"
}
]
});
$('#container_exceptions').sortable('#container_exceptions');
function generateHtmlRow(request, level, index, parent, group) {
if (request.name == 'All Requests')
var url = 'index.html';
else
var url = request.pathFormatted + '.html';
if (group)
var expandButtonStyle = '';
else
var expandButtonStyle = ' hidden';
if (request.stats.numberOfRequests.total != 0)
var koPercent = (request.stats.numberOfRequests.ko * 100 / request.stats.numberOfRequests.total).toFixed(0) + '%';
else
var koPercent = '-'
return '<tr id="' + request.pathFormatted + '" data-parent=' + parent + '> \
<td class="total col-1"> \
<div class="expandable-container"> \
<span id="' + request.pathFormatted + '" style="margin-left: ' + (level * 10) + 'px;" class="expand-button' + expandButtonStyle + '"> </span> \
<a href="' + url +'" class="withTooltip">' + ellipsedLabel({ name: request.name, parentClass: "table-cell-tooltip" }) + '</a><span class="value" style="display:none;">' + index + '</span> \
</div> \
</td> \
<td class="value total col-2">' + request.stats.numberOfRequests.total + '</td> \
<td class="value ok col-3">' + request.stats.numberOfRequests.ok + '</td> \
<td class="value ko col-4">' + request.stats.numberOfRequests.ko + '</td> \
<td class="value ko col-5">' + koPercent + '</td> \
<td class="value total col-6">' + request.stats.meanNumberOfRequestsPerSecond.total + '</td> \
<td class="value total col-7">' + request.stats.minResponseTime.total + '</td> \
<td class="value total col-8">' + request.stats.percentiles1.total + '</td> \
<td class="value total col-9">' + request.stats.percentiles2.total + '</td> \
<td class="value total col-10">' + request.stats.percentiles3.total + '</td> \
<td class="value total col-11">' + request.stats.percentiles4.total + '</td> \
<td class="value total col-12">' + request.stats.maxResponseTime.total + '</td> \
<td class="value total col-13">' + request.stats.meanResponseTime.total + '</td> \
<td class="value total col-14">' + request.stats.standardDeviation.total + '</td> \
</tr>';
}
function generateHtmlRowsForGroup(group, level, index, parent) {
var buffer = '';
if (!parent)
parent = 'ROOT';
else {
buffer += generateHtmlRow(group, level - 1, index, parent, true);
index++;
parent = group.pathFormatted;
}
$.each(group.contents, function(contentName, content) {
if (content.type == 'GROUP') {
var result = generateHtmlRowsForGroup(content, level + 1, index, parent);
buffer += result.html;
index = result.index;
}
else if (content.type == 'REQUEST') {
buffer += generateHtmlRow(content, level, index, parent);
index++;
}
});
return { html: buffer, index: index };
}
$('#container_statistics_head tbody').append(generateHtmlRow(stats, 0, 0));
var lines = generateHtmlRowsForGroup(stats, 0, 0);
$('#container_statistics_body tbody').append(lines.html);
$('#container_statistics_head').sortable('#container_statistics_body');
$('.statistics').expandable();
if (lines.index < 30) {
$('#statistics_title span').attr('style', 'display: none;');
} else {
$('#statistics_title').addClass('title_collapsed');
$('#statistics_title').click(function() {
$('#toggle-stats').toggleClass("off");
$(this).toggleClass('title_collapsed').toggleClass('title_expanded');
$('#container_statistics_body').parent().toggleClass('scrollable').toggleClass('');
});
}
$('.table-cell-tooltip').popover({trigger:'hover'});
$('#container_errors').sortable('#container_errors');
allUsersData.yAxis = 0;
var allUsersChart = new Highcharts.StockChart({
chart: {
renderTo: 'active_users',
zoomType: 'x'
},
credits: { enabled: false },
legend: {
enabled: true,
floating: true,
align: 'right',
verticalAlign: 'top',
layout: 'vertical',
borderWidth: 0,
itemStyle: { fontWeight: "normal" },
symbolRadius: 0
},
title: { text: 'A title to let highcharts reserve the place for the title set later' },
navigator: {
maskInside: false
},
rangeSelector: {
buttonSpacing: 0,
buttonTheme: {
fill: '#CFC9C6',
padding: 1,
stroke: '#000000',
'stroke-width': 0.25,
style: {
color: '#000000',
fontWeight: 'bold',
},
states: {
stroke: '#000000',
'stroke-width': 0.25,
hover: {
fill: '#92918C',
style: { color: 'black' }
},
select: {
fill: '#FFA900',
style: { color: 'white' }
}
}
},
buttons : [
{
type : 'minute',
count : 1,
text : '1m'
}, {
type : 'minute',
count : 10,
text : '10m'
}, {
type : 'hour',
count : 1,
text : '1h'
}, {
type : 'all',
count : 1,
text : 'All'
}
],
selected : 3,
inputEnabled : false
},
xAxis: {
type: 'datetime',
ordinal: false,
maxZoom: 10000 // three days
},
yAxis: {
title: { text: 'Number of Active Users' },
opposite: false,
min: 0
},
series: [
{
color: '#5E7BE2',
name: 'débitos',
data: [
[1708785206000,0],[1708785207000,0],[1708785208000,0],[1708785209000,0],[1708785210000,0],[1708785211000,2],[1708785212000,4],[1708785213000,6],[1708785214000,7],[1708785215000,9],[1708785216000,11],[1708785217000,13],[1708785218000,15],[1708785219000,16],[1708785220000,19],[1708785221000,20],[1708785222000,22],[1708785223000,24],[1708785224000,25],[1708785225000,28],[1708785226000,29],[1708785227000,31],[1708785228000,33],[1708785229000,35],[1708785230000,37],[1708785231000,38],[1708785232000,40],[1708785233000,42],[1708785234000,44],[1708785235000,46],[1708785236000,47],[1708785237000,50],[1708785238000,51],[1708785239000,53],[1708785240000,55],[1708785241000,56],[1708785242000,59],[1708785243000,60],[1708785244000,62],[1708785245000,64],[1708785246000,66],[1708785247000,68],[1708785248000,69],[1708785249000,71],[1708785250000,74],[1708785251000,74],[1708785252000,78],[1708785253000,80],[1708785254000,81],[1708785255000,83],[1708785256000,85],[1708785257000,87],[1708785258000,89],[1708785259000,90],[1708785260000,92],[1708785261000,93],[1708785262000,96],[1708785263000,97],[1708785264000,98],[1708785265000,102],[1708785266000,102],[1708785267000,104],[1708785268000,106],[1708785269000,108],[1708785270000,110],[1708785271000,112],[1708785272000,113],[1708785273000,115],[1708785274000,117],[1708785275000,119],[1708785276000,120],[1708785277000,123],[1708785278000,124],[1708785279000,126],[1708785280000,128],[1708785281000,129],[1708785282000,132],[1708785283000,133],[1708785284000,135],[1708785285000,137],[1708785286000,139],[1708785287000,142],[1708785288000,142],[1708785289000,144],[1708785290000,147],[1708785291000,147],[1708785292000,150],[1708785293000,152],[1708785294000,154],[1708785295000,156],[1708785296000,158],[1708785297000,160],[1708785298000,162],[1708785299000,163],[1708785300000,167],[1708785301000,167],[1708785302000,169],[1708785303000,171],[1708785304000,172],[1708785305000,175],[1708785306000,176],[1708785307000,178],[1708785308000,179],[1708785309000,182],[1708785310000,184],[1708785311000,185],[1708785312000,187],[1708785313000,189],[1708785314000,191],[1708785315000,193],[1708785316000,194],[1708785317000,196],[1708785318000,198],[1708785319000,200],[1708785320000,202],[1708785321000,202],[1708785322000,205],[1708785323000,207],[1708785324000,208],[1708785325000,236],[1708785326000,233],[1708785327000,239],[1708785328000,230],[1708785329000,232],[1708785330000,236],[1708785331000,236],[1708785332000,244],[1708785333000,239],[1708785334000,239],[1708785335000,237],[1708785336000,240],[1708785337000,235],[1708785338000,246],[1708785339000,234],[1708785340000,241],[1708785341000,231],[1708785342000,241],[1708785343000,234],[1708785344000,230],[1708785345000,229],[1708785346000,243],[1708785347000,234],[1708785348000,237],[1708785349000,244],[1708785350000,240],[1708785351000,231],[1708785352000,241],[1708785353000,233],[1708785354000,234],[1708785355000,234],[1708785356000,246],[1708785357000,248],[1708785358000,238],[1708785359000,246],[1708785360000,236],[1708785361000,236],[1708785362000,234],[1708785363000,234],[1708785364000,237],[1708785365000,234],[1708785366000,239],[1708785367000,235],[1708785368000,252],[1708785369000,237],[1708785370000,242],[1708785371000,238],[1708785372000,236],[1708785373000,244],[1708785374000,237],[1708785375000,234],[1708785376000,235],[1708785377000,232],[1708785378000,259],[1708785379000,236],[1708785380000,233],[1708785381000,236],[1708785382000,233],[1708785383000,235],[1708785384000,238],[1708785385000,232],[1708785386000,242],[1708785387000,235],[1708785388000,242],[1708785389000,247],[1708785390000,233],[1708785391000,232],[1708785392000,238],[1708785393000,235],[1708785394000,238],[1708785395000,244],[1708785396000,243],[1708785397000,247],[1708785398000,240],[1708785399000,234],[1708785400000,237],[1708785401000,248],[1708785402000,234],[1708785403000,242],[1708785404000,233],[1708785405000,237],[1708785406000,241],[1708785407000,232],[1708785408000,241],[1708785409000,243],[1708785410000,246],[1708785411000,240],[1708785412000,237],[1708785413000,241],[1708785414000,239],[1708785415000,242],[1708785416000,244],[1708785417000,241],[1708785418000,238],[1708785419000,230],[1708785420000,237],[1708785421000,238],[1708785422000,242],[1708785423000,240],[1708785424000,237],[1708785425000,246],[1708785426000,235],[1708785427000,239],[1708785428000,237],[1708785429000,237],[1708785430000,243],[1708785431000,243],[1708785432000,236],[1708785433000,237],[1708785434000,234],[1708785435000,239],[1708785436000,243],[1708785437000,236],[1708785438000,242],[1708785439000,232],[1708785440000,232],[1708785441000,243],[1708785442000,239],[1708785443000,240],[1708785444000,243],[1708785445000,244],[1708785446000,240],[1708785447000,236],[1708785448000,237],[1708785449000,235],[1708785450000,230],[1708785451000,8]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#68b65c',
name: 'créditos',
data: [
[1708785206000,0],[1708785207000,0],[1708785208000,0],[1708785209000,0],[1708785210000,0],[1708785211000,2],[1708785212000,2],[1708785213000,4],[1708785214000,4],[1708785215000,5],[1708785216000,6],[1708785217000,7],[1708785218000,8],[1708785219000,8],[1708785220000,10],[1708785221000,10],[1708785222000,12],[1708785223000,12],[1708785224000,14],[1708785225000,14],[1708785226000,15],[1708785227000,16],[1708785228000,17],[1708785229000,17],[1708785230000,19],[1708785231000,20],[1708785232000,20],[1708785233000,22],[1708785234000,22],[1708785235000,23],[1708785236000,25],[1708785237000,25],[1708785238000,26],[1708785239000,26],[1708785240000,28],[1708785241000,29],[1708785242000,30],[1708785243000,30],[1708785244000,32],[1708785245000,32],[1708785246000,33],[1708785247000,34],[1708785248000,35],[1708785249000,36],[1708785250000,37],[1708785251000,38],[1708785252000,39],[1708785253000,39],[1708785254000,41],[1708785255000,41],[1708785256000,43],[1708785257000,43],[1708785258000,44],[1708785259000,45],[1708785260000,46],[1708785261000,47],[1708785262000,48],[1708785263000,48],[1708785264000,50],[1708785265000,50],[1708785266000,52],[1708785267000,52],[1708785268000,53],[1708785269000,54],[1708785270000,56],[1708785271000,55],[1708785272000,57],[1708785273000,58],[1708785274000,59],[1708785275000,59],[1708785276000,61],[1708785277000,61],[1708785278000,63],[1708785279000,63],[1708785280000,64],[1708785281000,65],[1708785282000,66],[1708785283000,67],[1708785284000,68],[1708785285000,68],[1708785286000,70],[1708785287000,70],[1708785288000,72],[1708785289000,72],[1708785290000,73],[1708785291000,74],[1708785292000,75],[1708785293000,77],[1708785294000,78],[1708785295000,79],[1708785296000,79],[1708785297000,80],[1708785298000,82],[1708785299000,81],[1708785300000,83],[1708785301000,84],[1708785302000,86],[1708785303000,86],[1708785304000,87],[1708785305000,87],[1708785306000,89],[1708785307000,90],[1708785308000,90],[1708785309000,92],[1708785310000,92],[1708785311000,93],[1708785312000,95],[1708785313000,94],[1708785314000,95],[1708785315000,97],[1708785316000,97],[1708785317000,97],[1708785318000,100],[1708785319000,100],[1708785320000,102],[1708785321000,101],[1708785322000,103],[1708785323000,103],[1708785324000,105],[1708785325000,117],[1708785326000,120],[1708785327000,119],[1708785328000,112],[1708785329000,118],[1708785330000,120],[1708785331000,118],[1708785332000,124],[1708785333000,119],[1708785334000,118],[1708785335000,117],[1708785336000,122],[1708785337000,116],[1708785338000,125],[1708785339000,120],[1708785340000,119],[1708785341000,119],[1708785342000,120],[1708785343000,119],[1708785344000,120],[1708785345000,119],[1708785346000,122],[1708785347000,120],[1708785348000,118],[1708785349000,122],[1708785350000,118],[1708785351000,119],[1708785352000,122],[1708785353000,123],[1708785354000,117],[1708785355000,118],[1708785356000,123],[1708785357000,125],[1708785358000,119],[1708785359000,121],[1708785360000,119],[1708785361000,116],[1708785362000,118],[1708785363000,121],[1708785364000,120],[1708785365000,118],[1708785366000,120],[1708785367000,117],[1708785368000,127],[1708785369000,118],[1708785370000,120],[1708785371000,121],[1708785372000,118],[1708785373000,123],[1708785374000,122],[1708785375000,120],[1708785376000,117],[1708785377000,114],[1708785378000,129],[1708785379000,115],[1708785380000,118],[1708785381000,121],[1708785382000,119],[1708785383000,118],[1708785384000,123],[1708785385000,120],[1708785386000,120],[1708785387000,116],[1708785388000,116],[1708785389000,127],[1708785390000,121],[1708785391000,118],[1708785392000,120],[1708785393000,115],[1708785394000,120],[1708785395000,121],[1708785396000,121],[1708785397000,121],[1708785398000,120],[1708785399000,114],[1708785400000,118],[1708785401000,125],[1708785402000,120],[1708785403000,120],[1708785404000,118],[1708785405000,119],[1708785406000,120],[1708785407000,120],[1708785408000,121],[1708785409000,122],[1708785410000,119],[1708785411000,122],[1708785412000,118],[1708785413000,121],[1708785414000,121],[1708785415000,121],[1708785416000,123],[1708785417000,116],[1708785418000,122],[1708785419000,117],[1708785420000,120],[1708785421000,118],[1708785422000,119],[1708785423000,124],[1708785424000,118],[1708785425000,119],[1708785426000,118],[1708785427000,122],[1708785428000,118],[1708785429000,118],[1708785430000,119],[1708785431000,118],[1708785432000,119],[1708785433000,117],[1708785434000,118],[1708785435000,120],[1708785436000,123],[1708785437000,116],[1708785438000,121],[1708785439000,118],[1708785440000,119],[1708785441000,118],[1708785442000,119],[1708785443000,124],[1708785444000,121],[1708785445000,121],[1708785446000,121],[1708785447000,119],[1708785448000,119],[1708785449000,119],[1708785450000,113],[1708785451000,9]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#f15b4f',
name: 'extratos',
data: [
[1708785206000,0],[1708785207000,0],[1708785208000,0],[1708785209000,0],[1708785210000,0],[1708785211000,2],[1708785212000,1],[1708785213000,1],[1708785214000,1],[1708785215000,1],[1708785216000,2],[1708785217000,1],[1708785218000,2],[1708785219000,2],[1708785220000,1],[1708785221000,2],[1708785222000,2],[1708785223000,2],[1708785224000,2],[1708785225000,2],[1708785226000,2],[1708785227000,2],[1708785228000,3],[1708785229000,2],[1708785230000,3],[1708785231000,2],[1708785232000,3],[1708785233000,2],[1708785234000,3],[1708785235000,3],[1708785236000,3],[1708785237000,3],[1708785238000,3],[1708785239000,3],[1708785240000,3],[1708785241000,4],[1708785242000,3],[1708785243000,3],[1708785244000,4],[1708785245000,3],[1708785246000,4],[1708785247000,4],[1708785248000,4],[1708785249000,4],[1708785250000,4],[1708785251000,4],[1708785252000,4],[1708785253000,4],[1708785254000,4],[1708785255000,4],[1708785256000,5],[1708785257000,4],[1708785258000,5],[1708785259000,5],[1708785260000,4],[1708785261000,5],[1708785262000,5],[1708785263000,5],[1708785264000,5],[1708785265000,5],[1708785266000,5],[1708785267000,5],[1708785268000,6],[1708785269000,5],[1708785270000,6],[1708785271000,5],[1708785272000,6],[1708785273000,5],[1708785274000,6],[1708785275000,6],[1708785276000,6],[1708785277000,6],[1708785278000,6],[1708785279000,6],[1708785280000,6],[1708785281000,7],[1708785282000,6],[1708785283000,6],[1708785284000,7],[1708785285000,6],[1708785286000,7],[1708785287000,7],[1708785288000,7],[1708785289000,7],[1708785290000,7],[1708785291000,7],[1708785292000,7],[1708785293000,7],[1708785294000,7],[1708785295000,7],[1708785296000,8],[1708785297000,7],[1708785298000,8],[1708785299000,8],[1708785300000,7],[1708785301000,8],[1708785302000,8],[1708785303000,8],[1708785304000,8],[1708785305000,8],[1708785306000,8],[1708785307000,8],[1708785308000,9],[1708785309000,8],[1708785310000,9],[1708785311000,8],[1708785312000,9],[1708785313000,8],[1708785314000,9],[1708785315000,9],[1708785316000,9],[1708785317000,9],[1708785318000,9],[1708785319000,9],[1708785320000,9],[1708785321000,10],[1708785322000,9],[1708785323000,9],[1708785324000,10],[1708785325000,10],[1708785326000,11],[1708785327000,12],[1708785328000,11],[1708785329000,11],[1708785330000,11],[1708785331000,11],[1708785332000,12],[1708785333000,11],[1708785334000,12],[1708785335000,10],[1708785336000,11],[1708785337000,10],[1708785338000,12],[1708785339000,11],[1708785340000,11],[1708785341000,10],[1708785342000,12],[1708785343000,11],[1708785344000,12],[1708785345000,11],[1708785346000,11],[1708785347000,10],[1708785348000,11],[1708785349000,11],[1708785350000,11],[1708785351000,11],[1708785352000,11],[1708785353000,11],[1708785354000,11],[1708785355000,11],[1708785356000,11],[1708785357000,13],[1708785358000,12],[1708785359000,11],[1708785360000,11],[1708785361000,11],[1708785362000,12],[1708785363000,11],[1708785364000,11],[1708785365000,11],[1708785366000,12],[1708785367000,11],[1708785368000,12],[1708785369000,11],[1708785370000,11],[1708785371000,11],[1708785372000,12],[1708785373000,11],[1708785374000,11],[1708785375000,12],[1708785376000,11],[1708785377000,11],[1708785378000,12],[1708785379000,11],[1708785380000,11],[1708785381000,11],[1708785382000,11],[1708785383000,11],[1708785384000,11],[1708785385000,11],[1708785386000,11],[1708785387000,12],[1708785388000,11],[1708785389000,11],[1708785390000,11],[1708785391000,11],[1708785392000,12],[1708785393000,11],[1708785394000,12],[1708785395000,12],[1708785396000,11],[1708785397000,12],[1708785398000,11],[1708785399000,13],[1708785400000,11],[1708785401000,11],[1708785402000,11],[1708785403000,11],[1708785404000,11],[1708785405000,11],[1708785406000,11],[1708785407000,12],[1708785408000,12],[1708785409000,12],[1708785410000,11],[1708785411000,12],[1708785412000,11],[1708785413000,11],[1708785414000,12],[1708785415000,11],[1708785416000,12],[1708785417000,12],[1708785418000,12],[1708785419000,11],[1708785420000,11],[1708785421000,11],[1708785422000,11],[1708785423000,11],[1708785424000,11],[1708785425000,11],[1708785426000,11],[1708785427000,12],[1708785428000,12],[1708785429000,10],[1708785430000,11],[1708785431000,11],[1708785432000,12],[1708785433000,11],[1708785434000,11],[1708785435000,11],[1708785436000,11],[1708785437000,11],[1708785438000,11],[1708785439000,11],[1708785440000,10],[1708785441000,12],[1708785442000,10],[1708785443000,11],[1708785444000,11],[1708785445000,11],[1708785446000,11],[1708785447000,11],[1708785448000,11],[1708785449000,12],[1708785450000,10],[1708785451000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FFDD00',
name: 'validação HTTP 404',
data: [
[1708785206000,0],[1708785207000,0],[1708785208000,0],[1708785209000,1],[1708785210000,0],[1708785211000,0],[1708785212000,0],[1708785213000,0],[1708785214000,0],[1708785215000,0],[1708785216000,0],[1708785217000,0],[1708785218000,0],[1708785219000,0],[1708785220000,0],[1708785221000,0],[1708785222000,0],[1708785223000,0],[1708785224000,0],[1708785225000,0],[1708785226000,0],[1708785227000,0],[1708785228000,0],[1708785229000,0],[1708785230000,0],[1708785231000,0],[1708785232000,0],[1708785233000,0],[1708785234000,0],[1708785235000,0],[1708785236000,0],[1708785237000,0],[1708785238000,0],[1708785239000,0],[1708785240000,0],[1708785241000,0],[1708785242000,0],[1708785243000,0],[1708785244000,0],[1708785245000,0],[1708785246000,0],[1708785247000,0],[1708785248000,0],[1708785249000,0],[1708785250000,0],[1708785251000,0],[1708785252000,0],[1708785253000,0],[1708785254000,0],[1708785255000,0],[1708785256000,0],[1708785257000,0],[1708785258000,0],[1708785259000,0],[1708785260000,0],[1708785261000,0],[1708785262000,0],[1708785263000,0],[1708785264000,0],[1708785265000,0],[1708785266000,0],[1708785267000,0],[1708785268000,0],[1708785269000,0],[1708785270000,0],[1708785271000,0],[1708785272000,0],[1708785273000,0],[1708785274000,0],[1708785275000,0],[1708785276000,0],[1708785277000,0],[1708785278000,0],[1708785279000,0],[1708785280000,0],[1708785281000,0],[1708785282000,0],[1708785283000,0],[1708785284000,0],[1708785285000,0],[1708785286000,0],[1708785287000,0],[1708785288000,0],[1708785289000,0],[1708785290000,0],[1708785291000,0],[1708785292000,0],[1708785293000,0],[1708785294000,0],[1708785295000,0],[1708785296000,0],[1708785297000,0],[1708785298000,0],[1708785299000,0],[1708785300000,0],[1708785301000,0],[1708785302000,0],[1708785303000,0],[1708785304000,0],[1708785305000,0],[1708785306000,0],[1708785307000,0],[1708785308000,0],[1708785309000,0],[1708785310000,0],[1708785311000,0],[1708785312000,0],[1708785313000,0],[1708785314000,0],[1708785315000,0],[1708785316000,0],[1708785317000,0],[1708785318000,0],[1708785319000,0],[1708785320000,0],[1708785321000,0],[1708785322000,0],[1708785323000,0],[1708785324000,0],[1708785325000,0],[1708785326000,0],[1708785327000,0],[1708785328000,0],[1708785329000,0],[1708785330000,0],[1708785331000,0],[1708785332000,0],[1708785333000,0],[1708785334000,0],[1708785335000,0],[1708785336000,0],[1708785337000,0],[1708785338000,0],[1708785339000,0],[1708785340000,0],[1708785341000,0],[1708785342000,0],[1708785343000,0],[1708785344000,0],[1708785345000,0],[1708785346000,0],[1708785347000,0],[1708785348000,0],[1708785349000,0],[1708785350000,0],[1708785351000,0],[1708785352000,0],[1708785353000,0],[1708785354000,0],[1708785355000,0],[1708785356000,0],[1708785357000,0],[1708785358000,0],[1708785359000,0],[1708785360000,0],[1708785361000,0],[1708785362000,0],[1708785363000,0],[1708785364000,0],[1708785365000,0],[1708785366000,0],[1708785367000,0],[1708785368000,0],[1708785369000,0],[1708785370000,0],[1708785371000,0],[1708785372000,0],[1708785373000,0],[1708785374000,0],[1708785375000,0],[1708785376000,0],[1708785377000,0],[1708785378000,0],[1708785379000,0],[1708785380000,0],[1708785381000,0],[1708785382000,0],[1708785383000,0],[1708785384000,0],[1708785385000,0],[1708785386000,0],[1708785387000,0],[1708785388000,0],[1708785389000,0],[1708785390000,0],[1708785391000,0],[1708785392000,0],[1708785393000,0],[1708785394000,0],[1708785395000,0],[1708785396000,0],[1708785397000,0],[1708785398000,0],[1708785399000,0],[1708785400000,0],[1708785401000,0],[1708785402000,0],[1708785403000,0],[1708785404000,0],[1708785405000,0],[1708785406000,0],[1708785407000,0],[1708785408000,0],[1708785409000,0],[1708785410000,0],[1708785411000,0],[1708785412000,0],[1708785413000,0],[1708785414000,0],[1708785415000,0],[1708785416000,0],[1708785417000,0],[1708785418000,0],[1708785419000,0],[1708785420000,0],[1708785421000,0],[1708785422000,0],[1708785423000,0],[1708785424000,0],[1708785425000,0],[1708785426000,0],[1708785427000,0],[1708785428000,0],[1708785429000,0],[1708785430000,0],[1708785431000,0],[1708785432000,0],[1708785433000,0],[1708785434000,0],[1708785435000,0],[1708785436000,0],[1708785437000,0],[1708785438000,0],[1708785439000,0],[1708785440000,0],[1708785441000,0],[1708785442000,0],[1708785443000,0],[1708785444000,0],[1708785445000,0],[1708785446000,0],[1708785447000,0],[1708785448000,0],[1708785449000,0],[1708785450000,0],[1708785451000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00D5FF',
name: 'validações',
data: [
[1708785206000,0],[1708785207000,0],[1708785208000,0],[1708785209000,5],[1708785210000,5],[1708785211000,0],[1708785212000,0],[1708785213000,0],[1708785214000,0],[1708785215000,0],[1708785216000,0],[1708785217000,0],[1708785218000,0],[1708785219000,0],[1708785220000,0],[1708785221000,0],[1708785222000,0],[1708785223000,0],[1708785224000,0],[1708785225000,0],[1708785226000,0],[1708785227000,0],[1708785228000,0],[1708785229000,0],[1708785230000,0],[1708785231000,0],[1708785232000,0],[1708785233000,0],[1708785234000,0],[1708785235000,0],[1708785236000,0],[1708785237000,0],[1708785238000,0],[1708785239000,0],[1708785240000,0],[1708785241000,0],[1708785242000,0],[1708785243000,0],[1708785244000,0],[1708785245000,0],[1708785246000,0],[1708785247000,0],[1708785248000,0],[1708785249000,0],[1708785250000,0],[1708785251000,0],[1708785252000,0],[1708785253000,0],[1708785254000,0],[1708785255000,0],[1708785256000,0],[1708785257000,0],[1708785258000,0],[1708785259000,0],[1708785260000,0],[1708785261000,0],[1708785262000,0],[1708785263000,0],[1708785264000,0],[1708785265000,0],[1708785266000,0],[1708785267000,0],[1708785268000,0],[1708785269000,0],[1708785270000,0],[1708785271000,0],[1708785272000,0],[1708785273000,0],[1708785274000,0],[1708785275000,0],[1708785276000,0],[1708785277000,0],[1708785278000,0],[1708785279000,0],[1708785280000,0],[1708785281000,0],[1708785282000,0],[1708785283000,0],[1708785284000,0],[1708785285000,0],[1708785286000,0],[1708785287000,0],[1708785288000,0],[1708785289000,0],[1708785290000,0],[1708785291000,0],[1708785292000,0],[1708785293000,0],[1708785294000,0],[1708785295000,0],[1708785296000,0],[1708785297000,0],[1708785298000,0],[1708785299000,0],[1708785300000,0],[1708785301000,0],[1708785302000,0],[1708785303000,0],[1708785304000,0],[1708785305000,0],[1708785306000,0],[1708785307000,0],[1708785308000,0],[1708785309000,0],[1708785310000,0],[1708785311000,0],[1708785312000,0],[1708785313000,0],[1708785314000,0],[1708785315000,0],[1708785316000,0],[1708785317000,0],[1708785318000,0],[1708785319000,0],[1708785320000,0],[1708785321000,0],[1708785322000,0],[1708785323000,0],[1708785324000,0],[1708785325000,0],[1708785326000,0],[1708785327000,0],[1708785328000,0],[1708785329000,0],[1708785330000,0],[1708785331000,0],[1708785332000,0],[1708785333000,0],[1708785334000,0],[1708785335000,0],[1708785336000,0],[1708785337000,0],[1708785338000,0],[1708785339000,0],[1708785340000,0],[1708785341000,0],[1708785342000,0],[1708785343000,0],[1708785344000,0],[1708785345000,0],[1708785346000,0],[1708785347000,0],[1708785348000,0],[1708785349000,0],[1708785350000,0],[1708785351000,0],[1708785352000,0],[1708785353000,0],[1708785354000,0],[1708785355000,0],[1708785356000,0],[1708785357000,0],[1708785358000,0],[1708785359000,0],[1708785360000,0],[1708785361000,0],[1708785362000,0],[1708785363000,0],[1708785364000,0],[1708785365000,0],[1708785366000,0],[1708785367000,0],[1708785368000,0],[1708785369000,0],[1708785370000,0],[1708785371000,0],[1708785372000,0],[1708785373000,0],[1708785374000,0],[1708785375000,0],[1708785376000,0],[1708785377000,0],[1708785378000,0],[1708785379000,0],[1708785380000,0],[1708785381000,0],[1708785382000,0],[1708785383000,0],[1708785384000,0],[1708785385000,0],[1708785386000,0],[1708785387000,0],[1708785388000,0],[1708785389000,0],[1708785390000,0],[1708785391000,0],[1708785392000,0],[1708785393000,0],[1708785394000,0],[1708785395000,0],[1708785396000,0],[1708785397000,0],[1708785398000,0],[1708785399000,0],[1708785400000,0],[1708785401000,0],[1708785402000,0],[1708785403000,0],[1708785404000,0],[1708785405000,0],[1708785406000,0],[1708785407000,0],[1708785408000,0],[1708785409000,0],[1708785410000,0],[1708785411000,0],[1708785412000,0],[1708785413000,0],[1708785414000,0],[1708785415000,0],[1708785416000,0],[1708785417000,0],[1708785418000,0],[1708785419000,0],[1708785420000,0],[1708785421000,0],[1708785422000,0],[1708785423000,0],[1708785424000,0],[1708785425000,0],[1708785426000,0],[1708785427000,0],[1708785428000,0],[1708785429000,0],[1708785430000,0],[1708785431000,0],[1708785432000,0],[1708785433000,0],[1708785434000,0],[1708785435000,0],[1708785436000,0],[1708785437000,0],[1708785438000,0],[1708785439000,0],[1708785440000,0],[1708785441000,0],[1708785442000,0],[1708785443000,0],[1708785444000,0],[1708785445000,0],[1708785446000,0],[1708785447000,0],[1708785448000,0],[1708785449000,0],[1708785450000,0],[1708785451000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00FF00',
name: 'validação concorrência saldo - 0',
data: [
[1708785206000,0],[1708785207000,0],[1708785208000,1],[1708785209000,0],[1708785210000,0],[1708785211000,0],[1708785212000,0],[1708785213000,0],[1708785214000,0],[1708785215000,0],[1708785216000,0],[1708785217000,0],[1708785218000,0],[1708785219000,0],[1708785220000,0],[1708785221000,0],[1708785222000,0],[1708785223000,0],[1708785224000,0],[1708785225000,0],[1708785226000,0],[1708785227000,0],[1708785228000,0],[1708785229000,0],[1708785230000,0],[1708785231000,0],[1708785232000,0],[1708785233000,0],[1708785234000,0],[1708785235000,0],[1708785236000,0],[1708785237000,0],[1708785238000,0],[1708785239000,0],[1708785240000,0],[1708785241000,0],[1708785242000,0],[1708785243000,0],[1708785244000,0],[1708785245000,0],[1708785246000,0],[1708785247000,0],[1708785248000,0],[1708785249000,0],[1708785250000,0],[1708785251000,0],[1708785252000,0],[1708785253000,0],[1708785254000,0],[1708785255000,0],[1708785256000,0],[1708785257000,0],[1708785258000,0],[1708785259000,0],[1708785260000,0],[1708785261000,0],[1708785262000,0],[1708785263000,0],[1708785264000,0],[1708785265000,0],[1708785266000,0],[1708785267000,0],[1708785268000,0],[1708785269000,0],[1708785270000,0],[1708785271000,0],[1708785272000,0],[1708785273000,0],[1708785274000,0],[1708785275000,0],[1708785276000,0],[1708785277000,0],[1708785278000,0],[1708785279000,0],[1708785280000,0],[1708785281000,0],[1708785282000,0],[1708785283000,0],[1708785284000,0],[1708785285000,0],[1708785286000,0],[1708785287000,0],[1708785288000,0],[1708785289000,0],[1708785290000,0],[1708785291000,0],[1708785292000,0],[1708785293000,0],[1708785294000,0],[1708785295000,0],[1708785296000,0],[1708785297000,0],[1708785298000,0],[1708785299000,0],[1708785300000,0],[1708785301000,0],[1708785302000,0],[1708785303000,0],[1708785304000,0],[1708785305000,0],[1708785306000,0],[1708785307000,0],[1708785308000,0],[1708785309000,0],[1708785310000,0],[1708785311000,0],[1708785312000,0],[1708785313000,0],[1708785314000,0],[1708785315000,0],[1708785316000,0],[1708785317000,0],[1708785318000,0],[1708785319000,0],[1708785320000,0],[1708785321000,0],[1708785322000,0],[1708785323000,0],[1708785324000,0],[1708785325000,0],[1708785326000,0],[1708785327000,0],[1708785328000,0],[1708785329000,0],[1708785330000,0],[1708785331000,0],[1708785332000,0],[1708785333000,0],[1708785334000,0],[1708785335000,0],[1708785336000,0],[1708785337000,0],[1708785338000,0],[1708785339000,0],[1708785340000,0],[1708785341000,0],[1708785342000,0],[1708785343000,0],[1708785344000,0],[1708785345000,0],[1708785346000,0],[1708785347000,0],[1708785348000,0],[1708785349000,0],[1708785350000,0],[1708785351000,0],[1708785352000,0],[1708785353000,0],[1708785354000,0],[1708785355000,0],[1708785356000,0],[1708785357000,0],[1708785358000,0],[1708785359000,0],[1708785360000,0],[1708785361000,0],[1708785362000,0],[1708785363000,0],[1708785364000,0],[1708785365000,0],[1708785366000,0],[1708785367000,0],[1708785368000,0],[1708785369000,0],[1708785370000,0],[1708785371000,0],[1708785372000,0],[1708785373000,0],[1708785374000,0],[1708785375000,0],[1708785376000,0],[1708785377000,0],[1708785378000,0],[1708785379000,0],[1708785380000,0],[1708785381000,0],[1708785382000,0],[1708785383000,0],[1708785384000,0],[1708785385000,0],[1708785386000,0],[1708785387000,0],[1708785388000,0],[1708785389000,0],[1708785390000,0],[1708785391000,0],[1708785392000,0],[1708785393000,0],[1708785394000,0],[1708785395000,0],[1708785396000,0],[1708785397000,0],[1708785398000,0],[1708785399000,0],[1708785400000,0],[1708785401000,0],[1708785402000,0],[1708785403000,0],[1708785404000,0],[1708785405000,0],[1708785406000,0],[1708785407000,0],[1708785408000,0],[1708785409000,0],[1708785410000,0],[1708785411000,0],[1708785412000,0],[1708785413000,0],[1708785414000,0],[1708785415000,0],[1708785416000,0],[1708785417000,0],[1708785418000,0],[1708785419000,0],[1708785420000,0],[1708785421000,0],[1708785422000,0],[1708785423000,0],[1708785424000,0],[1708785425000,0],[1708785426000,0],[1708785427000,0],[1708785428000,0],[1708785429000,0],[1708785430000,0],[1708785431000,0],[1708785432000,0],[1708785433000,0],[1708785434000,0],[1708785435000,0],[1708785436000,0],[1708785437000,0],[1708785438000,0],[1708785439000,0],[1708785440000,0],[1708785441000,0],[1708785442000,0],[1708785443000,0],[1708785444000,0],[1708785445000,0],[1708785446000,0],[1708785447000,0],[1708785448000,0],[1708785449000,0],[1708785450000,0],[1708785451000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#9D00FF',
name: 'validação concorrência transações - c',
data: [
[1708785206000,0],[1708785207000,24],[1708785208000,25],[1708785209000,0],[1708785210000,0],[1708785211000,0],[1708785212000,0],[1708785213000,0],[1708785214000,0],[1708785215000,0],[1708785216000,0],[1708785217000,0],[1708785218000,0],[1708785219000,0],[1708785220000,0],[1708785221000,0],[1708785222000,0],[1708785223000,0],[1708785224000,0],[1708785225000,0],[1708785226000,0],[1708785227000,0],[1708785228000,0],[1708785229000,0],[1708785230000,0],[1708785231000,0],[1708785232000,0],[1708785233000,0],[1708785234000,0],[1708785235000,0],[1708785236000,0],[1708785237000,0],[1708785238000,0],[1708785239000,0],[1708785240000,0],[1708785241000,0],[1708785242000,0],[1708785243000,0],[1708785244000,0],[1708785245000,0],[1708785246000,0],[1708785247000,0],[1708785248000,0],[1708785249000,0],[1708785250000,0],[1708785251000,0],[1708785252000,0],[1708785253000,0],[1708785254000,0],[1708785255000,0],[1708785256000,0],[1708785257000,0],[1708785258000,0],[1708785259000,0],[1708785260000,0],[1708785261000,0],[1708785262000,0],[1708785263000,0],[1708785264000,0],[1708785265000,0],[1708785266000,0],[1708785267000,0],[1708785268000,0],[1708785269000,0],[1708785270000,0],[1708785271000,0],[1708785272000,0],[1708785273000,0],[1708785274000,0],[1708785275000,0],[1708785276000,0],[1708785277000,0],[1708785278000,0],[1708785279000,0],[1708785280000,0],[1708785281000,0],[1708785282000,0],[1708785283000,0],[1708785284000,0],[1708785285000,0],[1708785286000,0],[1708785287000,0],[1708785288000,0],[1708785289000,0],[1708785290000,0],[1708785291000,0],[1708785292000,0],[1708785293000,0],[1708785294000,0],[1708785295000,0],[1708785296000,0],[1708785297000,0],[1708785298000,0],[1708785299000,0],[1708785300000,0],[1708785301000,0],[1708785302000,0],[1708785303000,0],[1708785304000,0],[1708785305000,0],[1708785306000,0],[1708785307000,0],[1708785308000,0],[1708785309000,0],[1708785310000,0],[1708785311000,0],[1708785312000,0],[1708785313000,0],[1708785314000,0],[1708785315000,0],[1708785316000,0],[1708785317000,0],[1708785318000,0],[1708785319000,0],[1708785320000,0],[1708785321000,0],[1708785322000,0],[1708785323000,0],[1708785324000,0],[1708785325000,0],[1708785326000,0],[1708785327000,0],[1708785328000,0],[1708785329000,0],[1708785330000,0],[1708785331000,0],[1708785332000,0],[1708785333000,0],[1708785334000,0],[1708785335000,0],[1708785336000,0],[1708785337000,0],[1708785338000,0],[1708785339000,0],[1708785340000,0],[1708785341000,0],[1708785342000,0],[1708785343000,0],[1708785344000,0],[1708785345000,0],[1708785346000,0],[1708785347000,0],[1708785348000,0],[1708785349000,0],[1708785350000,0],[1708785351000,0],[1708785352000,0],[1708785353000,0],[1708785354000,0],[1708785355000,0],[1708785356000,0],[1708785357000,0],[1708785358000,0],[1708785359000,0],[1708785360000,0],[1708785361000,0],[1708785362000,0],[1708785363000,0],[1708785364000,0],[1708785365000,0],[1708785366000,0],[1708785367000,0],[1708785368000,0],[1708785369000,0],[1708785370000,0],[1708785371000,0],[1708785372000,0],[1708785373000,0],[1708785374000,0],[1708785375000,0],[1708785376000,0],[1708785377000,0],[1708785378000,0],[1708785379000,0],[1708785380000,0],[1708785381000,0],[1708785382000,0],[1708785383000,0],[1708785384000,0],[1708785385000,0],[1708785386000,0],[1708785387000,0],[1708785388000,0],[1708785389000,0],[1708785390000,0],[1708785391000,0],[1708785392000,0],[1708785393000,0],[1708785394000,0],[1708785395000,0],[1708785396000,0],[1708785397000,0],[1708785398000,0],[1708785399000,0],[1708785400000,0],[1708785401000,0],[1708785402000,0],[1708785403000,0],[1708785404000,0],[1708785405000,0],[1708785406000,0],[1708785407000,0],[1708785408000,0],[1708785409000,0],[1708785410000,0],[1708785411000,0],[1708785412000,0],[1708785413000,0],[1708785414000,0],[1708785415000,0],[1708785416000,0],[1708785417000,0],[1708785418000,0],[1708785419000,0],[1708785420000,0],[1708785421000,0],[1708785422000,0],[1708785423000,0],[1708785424000,0],[1708785425000,0],[1708785426000,0],[1708785427000,0],[1708785428000,0],[1708785429000,0],[1708785430000,0],[1708785431000,0],[1708785432000,0],[1708785433000,0],[1708785434000,0],[1708785435000,0],[1708785436000,0],[1708785437000,0],[1708785438000,0],[1708785439000,0],[1708785440000,0],[1708785441000,0],[1708785442000,0],[1708785443000,0],[1708785444000,0],[1708785445000,0],[1708785446000,0],[1708785447000,0],[1708785448000,0],[1708785449000,0],[1708785450000,0],[1708785451000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FF00E1',
name: 'validação concorrência saldo - -25',
data: [
[1708785206000,1],[1708785207000,1],[1708785208000,0],[1708785209000,0],[1708785210000,0],[1708785211000,0],[1708785212000,0],[1708785213000,0],[1708785214000,0],[1708785215000,0],[1708785216000,0],[1708785217000,0],[1708785218000,0],[1708785219000,0],[1708785220000,0],[1708785221000,0],[1708785222000,0],[1708785223000,0],[1708785224000,0],[1708785225000,0],[1708785226000,0],[1708785227000,0],[1708785228000,0],[1708785229000,0],[1708785230000,0],[1708785231000,0],[1708785232000,0],[1708785233000,0],[1708785234000,0],[1708785235000,0],[1708785236000,0],[1708785237000,0],[1708785238000,0],[1708785239000,0],[1708785240000,0],[1708785241000,0],[1708785242000,0],[1708785243000,0],[1708785244000,0],[1708785245000,0],[1708785246000,0],[1708785247000,0],[1708785248000,0],[1708785249000,0],[1708785250000,0],[1708785251000,0],[1708785252000,0],[1708785253000,0],[1708785254000,0],[1708785255000,0],[1708785256000,0],[1708785257000,0],[1708785258000,0],[1708785259000,0],[1708785260000,0],[1708785261000,0],[1708785262000,0],[1708785263000,0],[1708785264000,0],[1708785265000,0],[1708785266000,0],[1708785267000,0],[1708785268000,0],[1708785269000,0],[1708785270000,0],[1708785271000,0],[1708785272000,0],[1708785273000,0],[1708785274000,0],[1708785275000,0],[1708785276000,0],[1708785277000,0],[1708785278000,0],[1708785279000,0],[1708785280000,0],[1708785281000,0],[1708785282000,0],[1708785283000,0],[1708785284000,0],[1708785285000,0],[1708785286000,0],[1708785287000,0],[1708785288000,0],[1708785289000,0],[1708785290000,0],[1708785291000,0],[1708785292000,0],[1708785293000,0],[1708785294000,0],[1708785295000,0],[1708785296000,0],[1708785297000,0],[1708785298000,0],[1708785299000,0],[1708785300000,0],[1708785301000,0],[1708785302000,0],[1708785303000,0],[1708785304000,0],[1708785305000,0],[1708785306000,0],[1708785307000,0],[1708785308000,0],[1708785309000,0],[1708785310000,0],[1708785311000,0],[1708785312000,0],[1708785313000,0],[1708785314000,0],[1708785315000,0],[1708785316000,0],[1708785317000,0],[1708785318000,0],[1708785319000,0],[1708785320000,0],[1708785321000,0],[1708785322000,0],[1708785323000,0],[1708785324000,0],[1708785325000,0],[1708785326000,0],[1708785327000,0],[1708785328000,0],[1708785329000,0],[1708785330000,0],[1708785331000,0],[1708785332000,0],[1708785333000,0],[1708785334000,0],[1708785335000,0],[1708785336000,0],[1708785337000,0],[1708785338000,0],[1708785339000,0],[1708785340000,0],[1708785341000,0],[1708785342000,0],[1708785343000,0],[1708785344000,0],[1708785345000,0],[1708785346000,0],[1708785347000,0],[1708785348000,0],[1708785349000,0],[1708785350000,0],[1708785351000,0],[1708785352000,0],[1708785353000,0],[1708785354000,0],[1708785355000,0],[1708785356000,0],[1708785357000,0],[1708785358000,0],[1708785359000,0],[1708785360000,0],[1708785361000,0],[1708785362000,0],[1708785363000,0],[1708785364000,0],[1708785365000,0],[1708785366000,0],[1708785367000,0],[1708785368000,0],[1708785369000,0],[1708785370000,0],[1708785371000,0],[1708785372000,0],[1708785373000,0],[1708785374000,0],[1708785375000,0],[1708785376000,0],[1708785377000,0],[1708785378000,0],[1708785379000,0],[1708785380000,0],[1708785381000,0],[1708785382000,0],[1708785383000,0],[1708785384000,0],[1708785385000,0],[1708785386000,0],[1708785387000,0],[1708785388000,0],[1708785389000,0],[1708785390000,0],[1708785391000,0],[1708785392000,0],[1708785393000,0],[1708785394000,0],[1708785395000,0],[1708785396000,0],[1708785397000,0],[1708785398000,0],[1708785399000,0],[1708785400000,0],[1708785401000,0],[1708785402000,0],[1708785403000,0],[1708785404000,0],[1708785405000,0],[1708785406000,0],[1708785407000,0],[1708785408000,0],[1708785409000,0],[1708785410000,0],[1708785411000,0],[1708785412000,0],[1708785413000,0],[1708785414000,0],[1708785415000,0],[1708785416000,0],[1708785417000,0],[1708785418000,0],[1708785419000,0],[1708785420000,0],[1708785421000,0],[1708785422000,0],[1708785423000,0],[1708785424000,0],[1708785425000,0],[1708785426000,0],[1708785427000,0],[1708785428000,0],[1708785429000,0],[1708785430000,0],[1708785431000,0],[1708785432000,0],[1708785433000,0],[1708785434000,0],[1708785435000,0],[1708785436000,0],[1708785437000,0],[1708785438000,0],[1708785439000,0],[1708785440000,0],[1708785441000,0],[1708785442000,0],[1708785443000,0],[1708785444000,0],[1708785445000,0],[1708785446000,0],[1708785447000,0],[1708785448000,0],[1708785449000,0],[1708785450000,0],[1708785451000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#AECAEB',
name: 'validação concorrência transações - d',
data: [
[1708785206000,25],[1708785207000,0],[1708785208000,0],[1708785209000,0],[1708785210000,0],[1708785211000,0],[1708785212000,0],[1708785213000,0],[1708785214000,0],[1708785215000,0],[1708785216000,0],[1708785217000,0],[1708785218000,0],[1708785219000,0],[1708785220000,0],[1708785221000,0],[1708785222000,0],[1708785223000,0],[1708785224000,0],[1708785225000,0],[1708785226000,0],[1708785227000,0],[1708785228000,0],[1708785229000,0],[1708785230000,0],[1708785231000,0],[1708785232000,0],[1708785233000,0],[1708785234000,0],[1708785235000,0],[1708785236000,0],[1708785237000,0],[1708785238000,0],[1708785239000,0],[1708785240000,0],[1708785241000,0],[1708785242000,0],[1708785243000,0],[1708785244000,0],[1708785245000,0],[1708785246000,0],[1708785247000,0],[1708785248000,0],[1708785249000,0],[1708785250000,0],[1708785251000,0],[1708785252000,0],[1708785253000,0],[1708785254000,0],[1708785255000,0],[1708785256000,0],[1708785257000,0],[1708785258000,0],[1708785259000,0],[1708785260000,0],[1708785261000,0],[1708785262000,0],[1708785263000,0],[1708785264000,0],[1708785265000,0],[1708785266000,0],[1708785267000,0],[1708785268000,0],[1708785269000,0],[1708785270000,0],[1708785271000,0],[1708785272000,0],[1708785273000,0],[1708785274000,0],[1708785275000,0],[1708785276000,0],[1708785277000,0],[1708785278000,0],[1708785279000,0],[1708785280000,0],[1708785281000,0],[1708785282000,0],[1708785283000,0],[1708785284000,0],[1708785285000,0],[1708785286000,0],[1708785287000,0],[1708785288000,0],[1708785289000,0],[1708785290000,0],[1708785291000,0],[1708785292000,0],[1708785293000,0],[1708785294000,0],[1708785295000,0],[1708785296000,0],[1708785297000,0],[1708785298000,0],[1708785299000,0],[1708785300000,0],[1708785301000,0],[1708785302000,0],[1708785303000,0],[1708785304000,0],[1708785305000,0],[1708785306000,0],[1708785307000,0],[1708785308000,0],[1708785309000,0],[1708785310000,0],[1708785311000,0],[1708785312000,0],[1708785313000,0],[1708785314000,0],[1708785315000,0],[1708785316000,0],[1708785317000,0],[1708785318000,0],[1708785319000,0],[1708785320000,0],[1708785321000,0],[1708785322000,0],[1708785323000,0],[1708785324000,0],[1708785325000,0],[1708785326000,0],[1708785327000,0],[1708785328000,0],[1708785329000,0],[1708785330000,0],[1708785331000,0],[1708785332000,0],[1708785333000,0],[1708785334000,0],[1708785335000,0],[1708785336000,0],[1708785337000,0],[1708785338000,0],[1708785339000,0],[1708785340000,0],[1708785341000,0],[1708785342000,0],[1708785343000,0],[1708785344000,0],[1708785345000,0],[1708785346000,0],[1708785347000,0],[1708785348000,0],[1708785349000,0],[1708785350000,0],[1708785351000,0],[1708785352000,0],[1708785353000,0],[1708785354000,0],[1708785355000,0],[1708785356000,0],[1708785357000,0],[1708785358000,0],[1708785359000,0],[1708785360000,0],[1708785361000,0],[1708785362000,0],[1708785363000,0],[1708785364000,0],[1708785365000,0],[1708785366000,0],[1708785367000,0],[1708785368000,0],[1708785369000,0],[1708785370000,0],[1708785371000,0],[1708785372000,0],[1708785373000,0],[1708785374000,0],[1708785375000,0],[1708785376000,0],[1708785377000,0],[1708785378000,0],[1708785379000,0],[1708785380000,0],[1708785381000,0],[1708785382000,0],[1708785383000,0],[1708785384000,0],[1708785385000,0],[1708785386000,0],[1708785387000,0],[1708785388000,0],[1708785389000,0],[1708785390000,0],[1708785391000,0],[1708785392000,0],[1708785393000,0],[1708785394000,0],[1708785395000,0],[1708785396000,0],[1708785397000,0],[1708785398000,0],[1708785399000,0],[1708785400000,0],[1708785401000,0],[1708785402000,0],[1708785403000,0],[1708785404000,0],[1708785405000,0],[1708785406000,0],[1708785407000,0],[1708785408000,0],[1708785409000,0],[1708785410000,0],[1708785411000,0],[1708785412000,0],[1708785413000,0],[1708785414000,0],[1708785415000,0],[1708785416000,0],[1708785417000,0],[1708785418000,0],[1708785419000,0],[1708785420000,0],[1708785421000,0],[1708785422000,0],[1708785423000,0],[1708785424000,0],[1708785425000,0],[1708785426000,0],[1708785427000,0],[1708785428000,0],[1708785429000,0],[1708785430000,0],[1708785431000,0],[1708785432000,0],[1708785433000,0],[1708785434000,0],[1708785435000,0],[1708785436000,0],[1708785437000,0],[1708785438000,0],[1708785439000,0],[1708785440000,0],[1708785441000,0],[1708785442000,0],[1708785443000,0],[1708785444000,0],[1708785445000,0],[1708785446000,0],[1708785447000,0],[1708785448000,0],[1708785449000,0],[1708785450000,0],[1708785451000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
allUsersData
]
});
allUsersChart.setTitle({
text: '<span class="chart_title">Active Users along the Simulation</span>',
useHTML: true
});
allUsersData.yAxis = 1;
var responsetimeDistributionChart = new Highcharts.Chart({
chart: {
renderTo: 'responsetimeDistributionContainer',
type: 'column',
marginBottom: 60
},
credits: { enabled: false },
legend: {
enabled: true,
floating: true,
y: 5,
borderWidth: 0,
itemStyle: { fontWeight: "normal" },
symbolRadius: 0
},
title: { text: 'A title to let highcharts reserve the place for the title set later' },
navigator: {
maskInside: false
},
xAxis: {
categories: ['3', '8', '12', '17', '22', '26', '31', '35', '40', '44', '49', '54', '58', '63', '67', '72', '76', '81', '86', '90', '95', '99', '104', '108', '113', '118', '122', '127', '131', '136', '140', '145', '150', '154', '159', '163', '168', '172', '177', '182', '186', '191', '195', '200', '204', '209', '214', '218', '223', '227', '232', '236', '241', '245', '250', '255', '259', '264', '268', '273', '277', '282', '287', '291', '296', '300', '305', '309', '314', '319', '323', '328', '332', '337', '341', '346', '351', '355', '360', '364', '369', '373', '378', '383', '387', '392', '396', '401', '405', '410', '415', '419', '424', '428', '433', '437', '442', '447', '451', '456'],
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: [
31.73,2.32,1.36,1.64,1.41,1.71,1.38,1.7,1.74,1.57,1.9,1.77,2.16,1.88,2.41,2.34,2.08,2.52,1.93,2.22,1.84,2.04,1.88,1.48,1.7,1.3,1.53,1.18,1.33,1.39,1.03,1.33,1.02,1.16,0.87,0.99,0.94,0.66,0.76,0.56,0.71,0.48,0.59,0.52,0.35,0.43,0.3,0.38,0.23,0.34,0.35,0.31,0.31,0.28,0.3,0.14,0.16,0.1,0.09,0.07,0.05,0.03,0.02,0.02,0.02,0.02,0.01,0.01,0.02,0.02,0.03,0.01,0.02,0.02,0.01,0.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
],
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([[1708785206,[37,193,285,314,314,317,318,320,323,325]],[1708785207,[5,5,5,5,5,5,5,5,5,5]],[1708785208,[16,97,119,200,201,203,207,209,210,211]],[1708785209,[4,4,4,4,4,4,4,4,4,4]],[1708785210,[1,2,7,12,13,17,21,23,25,26]],[1708785211,[5,5,5,6,6,6,6,6,6,7]],[1708785212,[5,6,6,6,6,6,6,6,6,7]],[1708785213,[4,5,5,6,6,6,6,6,6,7]],[1708785214,[4,5,5,5,5,5,6,6,6,7]],[1708785215,[4,5,5,5,5,5,5,5,5,6]],[1708785216,[4,5,5,5,5,5,6,6,6,7]],[1708785217,[4,4,4,5,5,5,5,5,5,6]],[1708785218,[3,4,4,5,5,5,5,5,6,7]],[1708785219,[3,4,4,5,5,6,6,6,6,7]],[1708785220,[3,4,5,5,5,5,5,6,6,6]],[1708785221,[3,4,4,5,5,5,6,6,7,7]],[1708785222,[2,4,4,4,5,5,6,6,6,6]],[1708785223,[3,4,4,5,5,6,6,6,6,7]],[1708785224,[2,4,4,5,5,5,6,6,6,7]],[1708785225,[2,4,4,5,5,5,6,7,92,93]],[1708785226,[2,4,4,5,5,5,5,18,43,59]],[1708785227,[2,3,4,4,4,4,4,5,7,7]],[1708785228,[2,3,3,4,4,4,4,4,5,5]],[1708785229,[2,4,4,4,4,4,5,12,51,53]],[1708785230,[2,4,4,4,4,4,5,5,5,6]],[1708785231,[2,3,4,4,4,4,5,5,7,8]],[1708785232,[2,3,4,4,4,5,5,5,5,6]],[1708785233,[2,3,4,4,4,4,5,5,6,6]],[1708785234,[1,3,3,4,4,4,5,5,8,8]],[1708785235,[2,3,4,4,4,4,5,5,5,6]],[1708785236,[1,3,3,4,4,4,4,5,5,6]],[1708785237,[1,3,3,4,4,4,5,5,5,6]],[1708785238,[1,3,3,4,4,4,5,5,6,6]],[1708785239,[2,3,3,4,4,4,4,4,6,6]],[1708785240,[2,3,4,4,5,5,5,5,6,6]],[1708785241,[1,3,3,4,4,4,4,4,5,8]],[1708785242,[1,3,3,3,3,3,4,4,5,5]],[1708785243,[1,3,3,3,4,4,4,5,6,7]],[1708785244,[1,2,3,3,3,4,4,4,5,6]],[1708785245,[1,3,3,4,4,4,4,5,5,6]],[1708785246,[1,3,3,4,4,4,4,5,5,5]],[1708785247,[1,3,3,4,4,4,4,24,55,67]],[1708785248,[1,3,3,3,4,4,4,4,4,5]],[1708785249,[1,2,3,3,4,4,4,4,5,6]],[1708785250,[1,2,3,4,4,4,4,5,5,6]],[1708785251,[1,3,3,4,4,4,4,5,6,6]],[1708785252,[1,2,3,3,3,3,4,4,4,5]],[1708785253,[1,2,3,3,3,3,4,4,5,6]],[1708785254,[1,2,3,3,3,4,4,4,5,5]],[1708785255,[2,3,3,4,4,4,4,5,5,6]],[1708785256,[1,2,3,4,4,4,4,5,5,5]],[1708785257,[1,2,3,3,4,4,5,5,6,8]],[1708785258,[1,3,3,4,4,4,5,5,5,6]],[1708785259,[1,2,3,3,4,4,4,4,5,5]],[1708785260,[1,3,3,4,4,4,5,5,6,8]],[1708785261,[1,3,3,4,4,4,4,5,6,6]],[1708785262,[1,3,3,3,3,4,4,4,5,5]],[1708785263,[1,2,3,3,3,4,4,4,5,6]],[1708785264,[1,2,3,3,3,3,4,4,4,6]],[1708785265,[1,2,3,3,3,3,4,4,8,15]],[1708785266,[1,2,3,3,3,4,4,4,5,6]],[1708785267,[1,2,3,3,3,3,4,4,5,5]],[1708785268,[1,2,3,4,4,4,4,5,5,6]],[1708785269,[1,3,3,4,4,4,4,5,6,7]],[1708785270,[1,2,3,3,4,4,4,4,5,5]],[1708785271,[1,3,3,3,3,4,4,4,5,5]],[1708785272,[1,2,3,3,3,3,3,4,4,5]],[1708785273,[1,2,3,3,3,3,4,4,5,6]],[1708785274,[1,3,3,3,3,4,4,4,4,5]],[1708785275,[1,2,3,3,3,3,4,4,5,5]],[1708785276,[1,2,3,3,3,4,4,4,5,7]],[1708785277,[1,2,3,3,3,4,4,4,6,7]],[1708785278,[1,3,3,3,3,4,4,4,5,6]],[1708785279,[1,3,3,3,3,4,4,4,5,6]],[1708785280,[1,2,3,3,3,4,4,4,5,5]],[1708785281,[1,2,3,3,3,3,4,4,5,7]],[1708785282,[1,2,3,3,3,3,4,4,5,6]],[1708785283,[1,2,3,3,3,4,4,4,5,6]],[1708785284,[1,2,3,3,3,3,4,4,4,5]],[1708785285,[1,2,3,3,3,3,4,5,6,26]],[1708785286,[1,2,3,3,3,4,4,4,5,5]],[1708785287,[1,2,3,3,3,3,4,4,5,6]],[1708785288,[1,2,3,3,3,3,4,5,7,27]],[1708785289,[1,2,3,3,3,4,4,4,15,23]],[1708785290,[1,2,3,3,4,4,4,5,6,7]],[1708785291,[1,2,3,3,3,4,4,4,5,6]],[1708785292,[1,2,3,3,3,4,4,4,5,6]],[1708785293,[1,2,3,3,4,4,4,4,5,7]],[1708785294,[1,2,3,3,3,4,4,4,5,6]],[1708785295,[1,2,3,3,4,4,5,6,7,7]],[1708785296,[1,2,3,3,3,4,4,4,6,11]],[1708785297,[1,2,3,3,3,3,3,4,5,7]],[1708785298,[1,2,3,3,3,4,4,5,6,7]],[1708785299,[1,2,3,3,4,4,5,5,5,6]],[1708785300,[1,2,3,3,4,4,5,6,15,22]],[1708785301,[1,2,3,3,3,4,4,4,6,7]],[1708785302,[1,2,3,3,3,4,4,4,5,7]],[1708785303,[1,2,3,3,3,3,4,4,6,7]],[1708785304,[1,2,3,3,4,4,5,5,7,8]],[1708785305,[1,3,3,3,3,3,4,4,5,6]],[1708785306,[1,2,2,3,3,3,3,4,4,6]],[1708785307,[1,2,2,3,3,3,3,4,4,5]],[1708785308,[1,2,2,3,3,3,3,3,6,7]],[1708785309,[1,2,3,3,3,3,4,4,4,5]],[1708785310,[1,2,3,3,3,3,3,4,5,13]],[1708785311,[1,2,2,3,3,3,4,4,4,5]],[1708785312,[1,2,2,3,3,3,4,4,4,5]],[1708785313,[1,2,2,3,3,3,3,3,4,7]],[1708785314,[1,2,2,3,3,3,3,4,4,6]],[1708785315,[1,2,2,3,3,3,3,4,4,7]],[1708785316,[1,2,2,3,3,3,3,3,4,5]],[1708785317,[1,2,2,2,3,3,3,4,4,5]],[1708785318,[1,2,2,3,3,3,3,4,4,7]],[1708785319,[1,2,3,3,3,3,4,4,4,5]],[1708785320,[1,2,3,3,3,3,4,4,5,5]],[1708785321,[1,2,3,3,3,4,4,4,6,13]],[1708785322,[1,3,3,3,4,4,4,5,5,9]],[1708785323,[1,2,3,3,4,4,4,4,5,7]],[1708785324,[1,2,3,4,4,4,4,5,6,6]],[1708785325,[1,4,72,125,134,145,161,178,216,256]],[1708785326,[2,49,92,145,158,168,186,233,268,310]],[1708785327,[2,52,90,138,148,159,178,198,234,249]],[1708785328,[1,52,88,145,157,164,178,202,229,251]],[1708785329,[1,52,85,140,150,167,181,204,264,316]],[1708785330,[2,49,86,128,140,150,162,185,237,328]],[1708785331,[1,48,79,129,144,159,182,226,335,421]],[1708785332,[1,45,78,143,163,185,209,247,334,348]],[1708785333,[1,41,76,133,153,186,207,237,290,348]],[1708785334,[1,45,82,138,153,172,201,229,296,398]],[1708785335,[2,61,88,125,134,145,162,200,261,323]],[1708785336,[1,47,80,137,155,182,211,241,261,273]],[1708785337,[1,38,73,131,145,195,225,252,305,325]],[1708785338,[1,50,87,142,170,185,197,237,282,318]],[1708785339,[2,41,80,138,153,164,181,201,233,260]],[1708785340,[1,43,83,132,148,164,180,216,252,351]],[1708785341,[2,53,88,119,132,144,153,167,202,255]],[1708785342,[2,40,82,129,147,162,176,194,235,267]],[1708785343,[2,49,93,143,153,173,208,242,279,319]],[1708785344,[1,34,82,128,143,156,176,216,247,259]],[1708785345,[2,53,93,135,144,158,177,221,260,278]],[1708785346,[2,50,87,132,144,163,180,213,279,325]],[1708785347,[1,29,68,138,162,196,220,248,267,301]],[1708785348,[1,55,90,134,144,154,177,202,255,333]],[1708785349,[1,45,80,129,141,160,181,211,249,254]],[1708785350,[1,41,76,138,173,197,216,241,276,292]],[1708785351,[1,42,76,129,150,175,219,245,275,292]],[1708785352,[2,44,80,140,158,172,190,212,246,326]],[1708785353,[1,25,62,134,171,206,231,248,296,361]],[1708785354,[1,45,86,142,158,177,199,236,277,312]],[1708785355,[1,36,70,136,158,180,198,223,253,279]],[1708785356,[1,49,89,133,142,153,171,203,242,259]],[1708785357,[2,45,79,137,155,186,213,245,276,286]],[1708785358,[2,56,94,133,139,150,164,181,224,254]],[1708785359,[1,60,90,133,145,153,170,199,238,247]],[1708785360,[1,39,75,137,155,189,215,251,300,346]],[1708785361,[2,34,69,128,142,158,180,216,267,304]],[1708785362,[1,42,81,136,147,163,183,222,269,318]],[1708785363,[1,38,78,133,144,154,175,198,248,259]],[1708785364,[2,52,85,138,152,170,202,223,290,338]],[1708785365,[1,41,82,128,142,164,182,220,255,348]],[1708785366,[2,42,77,132,154,184,215,241,285,345]],[1708785367,[2,40,76,148,171,194,215,240,272,333]],[1708785368,[2,49,96,146,161,183,195,228,268,354]],[1708785369,[1,53,93,137,148,163,181,219,254,324]],[1708785370,[1,54,88,130,145,169,198,238,266,340]],[1708785371,[2,56,90,133,146,157,176,214,250,346]],[1708785372,[2,46,82,128,142,152,168,187,242,336]],[1708785373,[2,47,88,150,167,185,210,241,296,404]],[1708785374,[4,58,90,125,138,150,166,194,248,269]],[1708785375,[6,54,87,126,144,154,173,195,228,341]],[1708785376,[2,42,77,128,144,159,181,197,250,259]],[1708785377,[2,52,93,141,156,171,188,230,298,342]],[1708785378,[2,66,119,175,189,202,224,242,325,350]],[1708785379,[2,59,90,126,137,147,162,183,242,344]],[1708785380,[1,49,85,129,145,162,182,214,249,274]],[1708785381,[2,50,86,125,136,150,165,203,252,331]],[1708785382,[1,58,91,134,149,163,178,203,268,345]],[1708785383,[4,65,104,145,154,169,183,217,243,263]],[1708785384,[1,42,84,132,140,153,164,179,229,264]],[1708785385,[2,59,93,128,140,150,166,197,254,334]],[1708785386,[2,41,77,128,143,160,182,200,235,251]],[1708785387,[1,57,96,143,150,163,183,209,249,300]],[1708785388,[2,53,87,136,147,168,190,221,260,439]],[1708785389,[2,61,104,163,180,204,233,261,351,458]],[1708785390,[1,58,93,129,139,156,170,195,252,336]],[1708785391,[1,40,78,134,147,164,183,209,271,305]],[1708785392,[2,47,82,133,146,159,170,199,249,333]],[1708785393,[2,47,84,135,148,160,178,190,237,252]],[1708785394,[1,55,92,143,148,159,170,193,239,249]],[1708785395,[1,56,90,133,141,156,171,186,243,266]],[1708785396,[1,43,85,128,145,160,178,219,247,346]],[1708785397,[2,60,89,130,144,154,164,196,233,269]],[1708785398,[2,40,87,133,148,161,177,208,256,271]],[1708785399,[3,58,98,136,147,159,168,195,249,300]],[1708785400,[1,51,86,130,140,154,170,232,267,321]],[1708785401,[1,53,93,143,158,187,219,247,281,429]],[1708785402,[2,51,87,124,134,147,155,177,237,260]],[1708785403,[1,57,89,120,134,147,159,187,249,323]],[1708785404,[1,43,82,145,160,176,196,224,273,399]],[1708785405,[2,53,84,125,133,153,177,206,248,324]],[1708785406,[2,57,90,125,136,149,164,188,244,335]],[1708785407,[1,50,84,137,150,164,187,207,247,290]],[1708785408,[1,43,76,137,151,174,190,207,261,315]],[1708785409,[1,49,89,141,151,171,183,208,235,249]],[1708785410,[1,43,80,134,147,157,176,200,247,267]],[1708785411,[1,48,84,130,144,163,183,221,281,331]],[1708785412,[2,40,80,125,135,153,161,189,228,247]],[1708785413,[7,61,94,140,150,167,188,217,258,322]],[1708785414,[2,49,85,127,139,152,164,198,240,345]],[1708785415,[1,61,100,152,166,184,224,249,320,335]],[1708785416,[1,58,95,129,142,151,174,199,245,305]],[1708785417,[1,39,78,137,148,167,185,212,272,286]],[1708785418,[2,49,82,140,153,171,196,231,264,341]],[1708785419,[1,45,90,132,143,159,179,206,242,264]],[1708785420,[4,51,90,144,165,183,198,229,277,352]],[1708785421,[2,46,83,129,144,161,190,227,249,270]],[1708785422,[2,52,87,131,148,168,183,211,249,257]],[1708785423,[1,53,90,133,153,177,200,221,255,270]],[1708785424,[1,50,90,128,140,157,171,184,224,253]],[1708785425,[1,46,85,140,152,171,187,222,261,333]],[1708785426,[1,48,87,128,145,153,165,184,232,260]],[1708785427,[1,56,85,126,137,152,175,196,232,252]],[1708785428,[1,33,80,129,141,156,183,217,239,254]],[1708785429,[2,44,87,151,162,178,195,217,259,319]],[1708785430,[1,53,90,143,155,164,182,207,244,267]],[1708785431,[3,65,91,125,136,151,165,196,254,325]],[1708785432,[1,48,87,127,136,151,166,187,248,302]],[1708785433,[2,42,81,134,147,159,172,188,205,245]],[1708785434,[1,47,83,122,140,153,166,193,239,271]],[1708785435,[2,52,86,132,146,157,171,190,237,257]],[1708785436,[1,53,89,132,144,156,183,221,255,271]],[1708785437,[1,59,91,130,139,151,159,177,244,348]],[1708785438,[1,48,80,135,145,163,184,207,246,267]],[1708785439,[2,49,84,127,137,153,172,194,251,278]],[1708785440,[1,52,92,131,142,153,169,200,249,352]],[1708785441,[2,47,90,153,166,185,202,237,323,428]],[1708785442,[3,52,81,129,140,155,191,220,256,332]],[1708785443,[2,56,93,131,143,156,168,190,245,317]],[1708785444,[3,55,94,138,153,161,178,196,235,301]],[1708785445,[1,50,91,133,144,163,180,214,247,259]],[1708785446,[2,51,89,130,141,158,187,227,258,330]],[1708785447,[2,51,87,140,149,158,175,196,244,258]],[1708785448,[1,50,85,122,136,155,169,221,253,273]],[1708785449,[1,59,90,121,131,143,154,176,219,249]],[1708785450,[1,56,88,131,142,156,175,206,302,369]],[1708785451,[1,32,72,136,152,162,185,199,235,246]]]);
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([[1708785206,[25,25,0]],[1708785207,[1,1,0]],[1708785208,[25,25,0]],[1708785209,[1,1,0]],[1708785210,[71,71,0]],[1708785211,[3,3,0]],[1708785212,[6,6,0]],[1708785213,[9,9,0]],[1708785214,[11,11,0]],[1708785215,[13,13,0]],[1708785216,[18,18,0]],[1708785217,[19,19,0]],[1708785218,[24,24,0]],[1708785219,[26,26,0]],[1708785220,[27,27,0]],[1708785221,[32,32,0]],[1708785222,[34,34,0]],[1708785223,[37,37,0]],[1708785224,[39,39,0]],[1708785225,[43,43,0]],[1708785226,[44,44,0]],[1708785227,[48,48,0]],[1708785228,[50,50,0]],[1708785229,[54,54,0]],[1708785230,[56,56,0]],[1708785231,[61,61,0]],[1708785232,[61,61,0]],[1708785233,[65,65,0]],[1708785234,[67,67,0]],[1708785235,[70,70,0]],[1708785236,[74,74,0]],[1708785237,[76,76,0]],[1708785238,[80,80,0]],[1708785239,[81,81,0]],[1708785240,[84,84,0]],[1708785241,[87,87,0]],[1708785242,[91,91,0]],[1708785243,[92,92,0]],[1708785244,[96,96,0]],[1708785245,[98,98,0]],[1708785246,[101,101,0]],[1708785247,[105,105,0]],[1708785248,[107,107,0]],[1708785249,[110,110,0]],[1708785250,[112,112,0]],[1708785251,[116,116,0]],[1708785252,[118,118,0]],[1708785253,[121,121,0]],[1708785254,[123,123,0]],[1708785255,[126,126,0]],[1708785256,[130,130,0]],[1708785257,[134,134,0]],[1708785258,[134,134,0]],[1708785259,[138,138,0]],[1708785260,[141,141,0]],[1708785261,[143,143,0]],[1708785262,[146,146,0]],[1708785263,[149,149,0]],[1708785264,[152,152,0]],[1708785265,[154,154,0]],[1708785266,[158,158,0]],[1708785267,[160,160,0]],[1708785268,[164,164,0]],[1708785269,[165,165,0]],[1708785270,[170,170,0]],[1708785271,[171,171,0]],[1708785272,[174,174,0]],[1708785273,[176,176,0]],[1708785274,[181,181,0]],[1708785275,[183,183,0]],[1708785276,[186,186,0]],[1708785277,[188,188,0]],[1708785278,[192,192,0]],[1708785279,[194,194,0]],[1708785280,[196,196,0]],[1708785281,[200,200,0]],[1708785282,[202,202,0]],[1708785283,[206,206,0]],[1708785284,[207,207,0]],[1708785285,[211,211,0]],[1708785286,[213,213,0]],[1708785287,[217,217,0]],[1708785288,[219,219,0]],[1708785289,[222,222,0]],[1708785290,[226,226,0]],[1708785291,[227,227,0]],[1708785292,[230,230,0]],[1708785293,[233,233,0]],[1708785294,[237,237,0]],[1708785295,[238,238,0]],[1708785296,[243,243,0]],[1708785297,[244,244,0]],[1708785298,[248,248,0]],[1708785299,[250,250,0]],[1708785300,[252,252,0]],[1708785301,[256,256,0]],[1708785302,[260,260,0]],[1708785303,[262,262,0]],[1708785304,[264,264,0]],[1708785305,[267,267,0]],[1708785306,[269,269,0]],[1708785307,[272,272,0]],[1708785308,[275,275,0]],[1708785309,[279,279,0]],[1708785310,[281,281,0]],[1708785311,[285,285,0]],[1708785312,[286,286,0]],[1708785313,[290,290,0]],[1708785314,[291,291,0]],[1708785315,[296,296,0]],[1708785316,[297,297,0]],[1708785317,[301,301,0]],[1708785318,[303,303,0]],[1708785319,[306,306,0]],[1708785320,[309,309,0]],[1708785321,[313,313,0]],[1708785322,[314,314,0]],[1708785323,[318,318,0]],[1708785324,[321,321,0]],[1708785325,[322,322,0]],[1708785326,[327,327,0]],[1708785327,[329,329,0]],[1708785328,[332,332,0]],[1708785329,[334,334,0]],[1708785330,[338,338,0]],[1708785331,[340,340,0]],[1708785332,[340,340,0]],[1708785333,[340,340,0]],[1708785334,[340,340,0]],[1708785335,[340,340,0]],[1708785336,[340,340,0]],[1708785337,[340,340,0]],[1708785338,[340,340,0]],[1708785339,[340,340,0]],[1708785340,[340,340,0]],[1708785341,[340,340,0]],[1708785342,[340,340,0]],[1708785343,[340,340,0]],[1708785344,[340,340,0]],[1708785345,[340,340,0]],[1708785346,[340,340,0]],[1708785347,[340,340,0]],[1708785348,[340,340,0]],[1708785349,[340,340,0]],[1708785350,[340,340,0]],[1708785351,[340,340,0]],[1708785352,[340,340,0]],[1708785353,[340,340,0]],[1708785354,[340,340,0]],[1708785355,[340,340,0]],[1708785356,[340,340,0]],[1708785357,[340,340,0]],[1708785358,[340,340,0]],[1708785359,[340,340,0]],[1708785360,[340,340,0]],[1708785361,[340,340,0]],[1708785362,[340,340,0]],[1708785363,[340,340,0]],[1708785364,[340,340,0]],[1708785365,[340,340,0]],[1708785366,[340,340,0]],[1708785367,[340,340,0]],[1708785368,[340,340,0]],[1708785369,[340,340,0]],[1708785370,[340,340,0]],[1708785371,[340,340,0]],[1708785372,[340,340,0]],[1708785373,[340,340,0]],[1708785374,[340,340,0]],[1708785375,[340,340,0]],[1708785376,[340,340,0]],[1708785377,[340,340,0]],[1708785378,[340,340,0]],[1708785379,[340,340,0]],[1708785380,[340,340,0]],[1708785381,[340,340,0]],[1708785382,[340,340,0]],[1708785383,[340,340,0]],[1708785384,[340,340,0]],[1708785385,[340,340,0]],[1708785386,[340,340,0]],[1708785387,[340,340,0]],[1708785388,[340,340,0]],[1708785389,[340,340,0]],[1708785390,[340,340,0]],[1708785391,[340,340,0]],[1708785392,[340,340,0]],[1708785393,[340,340,0]],[1708785394,[340,340,0]],[1708785395,[340,340,0]],[1708785396,[340,340,0]],[1708785397,[340,340,0]],[1708785398,[340,340,0]],[1708785399,[340,340,0]],[1708785400,[340,340,0]],[1708785401,[340,340,0]],[1708785402,[340,340,0]],[1708785403,[340,340,0]],[1708785404,[340,340,0]],[1708785405,[340,340,0]],[1708785406,[340,340,0]],[1708785407,[340,340,0]],[1708785408,[340,340,0]],[1708785409,[340,340,0]],[1708785410,[340,340,0]],[1708785411,[340,340,0]],[1708785412,[340,340,0]],[1708785413,[340,340,0]],[1708785414,[340,340,0]],[1708785415,[340,340,0]],[1708785416,[340,340,0]],[1708785417,[340,340,0]],[1708785418,[340,340,0]],[1708785419,[340,340,0]],[1708785420,[340,340,0]],[1708785421,[340,340,0]],[1708785422,[340,340,0]],[1708785423,[340,340,0]],[1708785424,[340,340,0]],[1708785425,[340,340,0]],[1708785426,[340,340,0]],[1708785427,[340,340,0]],[1708785428,[340,340,0]],[1708785429,[340,340,0]],[1708785430,[340,340,0]],[1708785431,[340,340,0]],[1708785432,[340,340,0]],[1708785433,[340,340,0]],[1708785434,[340,340,0]],[1708785435,[340,340,0]],[1708785436,[340,340,0]],[1708785437,[340,340,0]],[1708785438,[340,340,0]],[1708785439,[340,340,0]],[1708785440,[340,340,0]],[1708785441,[340,340,0]],[1708785442,[340,340,0]],[1708785443,[340,340,0]],[1708785444,[340,340,0]],[1708785445,[340,340,0]],[1708785446,[340,340,0]],[1708785447,[340,340,0]],[1708785448,[340,340,0]],[1708785449,[340,340,0]],[1708785450,[340,340,0]],[1708785451,[164,164,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:[