-
Notifications
You must be signed in to change notification settings - Fork 923
/
Copy pathindex.html
1173 lines (1104 loc) · 94.5 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-03-10 18:11:27 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 - vpithan-bun">
<span class="simulation-information-label">Description: </span>
<span>Rinha de Backend - 2024/Q1: Crébito - vpithan-bun</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: [
[1710094288000,0],[1710094289000,0],[1710094290000,0],[1710094291000,0],[1710094292000,1],[1710094293000,1],[1710094294000,2],[1710094295000,4],[1710094296000,4],[1710094297000,5],[1710094298000,6],[1710094299000,7],[1710094300000,8],[1710094301000,8],[1710094302000,10],[1710094303000,10],[1710094304000,12],[1710094305000,12],[1710094306000,14],[1710094307000,14],[1710094308000,15],[1710094309000,16],[1710094310000,17],[1710094311000,17],[1710094312000,19],[1710094313000,20],[1710094314000,20],[1710094315000,22],[1710094316000,22],[1710094317000,23],[1710094318000,25],[1710094319000,25],[1710094320000,26],[1710094321000,26],[1710094322000,28],[1710094323000,29],[1710094324000,30],[1710094325000,30],[1710094326000,32],[1710094327000,32],[1710094328000,33],[1710094329000,34],[1710094330000,35],[1710094331000,36],[1710094332000,37],[1710094333000,38],[1710094334000,39],[1710094335000,39],[1710094336000,41],[1710094337000,41],[1710094338000,43],[1710094339000,43],[1710094340000,44],[1710094341000,45],[1710094342000,46],[1710094343000,48],[1710094344000,49],[1710094345000,49],[1710094346000,51],[1710094347000,51],[1710094348000,53],[1710094349000,53],[1710094350000,54],[1710094351000,54],[1710094352000,57],[1710094353000,56],[1710094354000,58],[1710094355000,58],[1710094356000,59],[1710094357000,59],[1710094358000,61],[1710094359000,61],[1710094360000,64],[1710094361000,63],[1710094362000,64],[1710094363000,65],[1710094364000,66],[1710094365000,67],[1710094366000,68],[1710094367000,68],[1710094368000,70],[1710094369000,70],[1710094370000,72],[1710094371000,72],[1710094372000,73],[1710094373000,74],[1710094374000,75],[1710094375000,76],[1710094376000,77],[1710094377000,78],[1710094378000,79],[1710094379000,79],[1710094380000,81],[1710094381000,81],[1710094382000,82],[1710094383000,83],[1710094384000,85],[1710094385000,85],[1710094386000,86],[1710094387000,86],[1710094388000,88],[1710094389000,89],[1710094390000,89],[1710094391000,92],[1710094392000,92],[1710094393000,93],[1710094394000,95],[1710094395000,95],[1710094396000,96],[1710094397000,97],[1710094398000,98],[1710094399000,98],[1710094400000,100],[1710094401000,100],[1710094402000,102],[1710094403000,101],[1710094404000,104],[1710094405000,104],[1710094406000,105],[1710094407000,105],[1710094408000,107],[1710094409000,107],[1710094410000,108],[1710094411000,111],[1710094412000,147],[1710094413000,129],[1710094414000,115],[1710094415000,111],[1710094416000,111],[1710094417000,111],[1710094418000,110],[1710094419000,111],[1710094420000,110],[1710094421000,112],[1710094422000,111],[1710094423000,111],[1710094424000,111],[1710094425000,114],[1710094426000,110],[1710094427000,112],[1710094428000,110],[1710094429000,116],[1710094430000,110],[1710094431000,112],[1710094432000,110],[1710094433000,112],[1710094434000,110],[1710094435000,111],[1710094436000,110],[1710094437000,112],[1710094438000,110],[1710094439000,111],[1710094440000,110],[1710094441000,111],[1710094442000,110],[1710094443000,111],[1710094444000,110],[1710094445000,110],[1710094446000,110],[1710094447000,111],[1710094448000,110],[1710094449000,111],[1710094450000,111],[1710094451000,110],[1710094452000,110],[1710094453000,110],[1710094454000,111],[1710094455000,110],[1710094456000,112],[1710094457000,110],[1710094458000,111],[1710094459000,111],[1710094460000,111],[1710094461000,110],[1710094462000,116],[1710094463000,110],[1710094464000,112],[1710094465000,110],[1710094466000,111],[1710094467000,110],[1710094468000,114],[1710094469000,110],[1710094470000,112],[1710094471000,110],[1710094472000,114],[1710094473000,111],[1710094474000,111],[1710094475000,110],[1710094476000,112],[1710094477000,110],[1710094478000,113],[1710094479000,110],[1710094480000,111],[1710094481000,110],[1710094482000,112],[1710094483000,110],[1710094484000,113],[1710094485000,110],[1710094486000,112],[1710094487000,111],[1710094488000,112],[1710094489000,111],[1710094490000,112],[1710094491000,111],[1710094492000,111],[1710094493000,110],[1710094494000,110],[1710094495000,111],[1710094496000,112],[1710094497000,110],[1710094498000,111],[1710094499000,110],[1710094500000,111],[1710094501000,111],[1710094502000,116],[1710094503000,113],[1710094504000,112],[1710094505000,116],[1710094506000,111],[1710094507000,113],[1710094508000,111],[1710094509000,114],[1710094510000,110],[1710094511000,112],[1710094512000,111],[1710094513000,118],[1710094514000,111],[1710094515000,114],[1710094516000,112],[1710094517000,114],[1710094518000,111],[1710094519000,111],[1710094520000,112],[1710094521000,110],[1710094522000,113],[1710094523000,111],[1710094524000,112],[1710094525000,112],[1710094526000,110],[1710094527000,110],[1710094528000,114],[1710094529000,110],[1710094530000,110],[1710094531000,115],[1710094532000,109]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#68b65c',
name: 'débitos',
data: [
[1710094288000,0],[1710094289000,0],[1710094290000,0],[1710094291000,0],[1710094292000,1],[1710094293000,1],[1710094294000,4],[1710094295000,6],[1710094296000,7],[1710094297000,9],[1710094298000,11],[1710094299000,13],[1710094300000,15],[1710094301000,16],[1710094302000,19],[1710094303000,20],[1710094304000,22],[1710094305000,24],[1710094306000,25],[1710094307000,28],[1710094308000,29],[1710094309000,31],[1710094310000,33],[1710094311000,35],[1710094312000,37],[1710094313000,38],[1710094314000,40],[1710094315000,42],[1710094316000,45],[1710094317000,47],[1710094318000,48],[1710094319000,51],[1710094320000,52],[1710094321000,54],[1710094322000,56],[1710094323000,57],[1710094324000,59],[1710094325000,60],[1710094326000,63],[1710094327000,64],[1710094328000,66],[1710094329000,68],[1710094330000,69],[1710094331000,71],[1710094332000,74],[1710094333000,74],[1710094334000,77],[1710094335000,79],[1710094336000,80],[1710094337000,82],[1710094338000,84],[1710094339000,86],[1710094340000,88],[1710094341000,90],[1710094342000,93],[1710094343000,94],[1710094344000,96],[1710094345000,98],[1710094346000,99],[1710094347000,102],[1710094348000,103],[1710094349000,105],[1710094350000,107],[1710094351000,109],[1710094352000,111],[1710094353000,112],[1710094354000,114],[1710094355000,116],[1710094356000,117],[1710094357000,119],[1710094358000,120],[1710094359000,123],[1710094360000,125],[1710094361000,126],[1710094362000,128],[1710094363000,129],[1710094364000,132],[1710094365000,133],[1710094366000,136],[1710094367000,138],[1710094368000,140],[1710094369000,142],[1710094370000,143],[1710094371000,145],[1710094372000,147],[1710094373000,148],[1710094374000,151],[1710094375000,153],[1710094376000,153],[1710094377000,155],[1710094378000,157],[1710094379000,159],[1710094380000,161],[1710094381000,162],[1710094382000,165],[1710094383000,166],[1710094384000,168],[1710094385000,170],[1710094386000,171],[1710094387000,174],[1710094388000,175],[1710094389000,177],[1710094390000,179],[1710094391000,182],[1710094392000,183],[1710094393000,185],[1710094394000,187],[1710094395000,189],[1710094396000,191],[1710094397000,193],[1710094398000,193],[1710094399000,197],[1710094400000,198],[1710094401000,200],[1710094402000,202],[1710094403000,203],[1710094404000,206],[1710094405000,207],[1710094406000,209],[1710094407000,210],[1710094408000,213],[1710094409000,214],[1710094410000,216],[1710094411000,218],[1710094412000,296],[1710094413000,266],[1710094414000,223],[1710094415000,220],[1710094416000,220],[1710094417000,221],[1710094418000,221],[1710094419000,221],[1710094420000,220],[1710094421000,223],[1710094422000,220],[1710094423000,221],[1710094424000,221],[1710094425000,228],[1710094426000,221],[1710094427000,224],[1710094428000,220],[1710094429000,233],[1710094430000,221],[1710094431000,222],[1710094432000,220],[1710094433000,225],[1710094434000,221],[1710094435000,222],[1710094436000,221],[1710094437000,225],[1710094438000,220],[1710094439000,221],[1710094440000,220],[1710094441000,222],[1710094442000,221],[1710094443000,220],[1710094444000,220],[1710094445000,220],[1710094446000,220],[1710094447000,221],[1710094448000,220],[1710094449000,221],[1710094450000,220],[1710094451000,220],[1710094452000,220],[1710094453000,220],[1710094454000,220],[1710094455000,220],[1710094456000,225],[1710094457000,222],[1710094458000,221],[1710094459000,221],[1710094460000,224],[1710094461000,221],[1710094462000,227],[1710094463000,220],[1710094464000,222],[1710094465000,221],[1710094466000,220],[1710094467000,220],[1710094468000,228],[1710094469000,221],[1710094470000,224],[1710094471000,220],[1710094472000,225],[1710094473000,220],[1710094474000,225],[1710094475000,221],[1710094476000,223],[1710094477000,220],[1710094478000,226],[1710094479000,220],[1710094480000,222],[1710094481000,221],[1710094482000,223],[1710094483000,221],[1710094484000,222],[1710094485000,221],[1710094486000,226],[1710094487000,223],[1710094488000,226],[1710094489000,221],[1710094490000,230],[1710094491000,222],[1710094492000,224],[1710094493000,220],[1710094494000,220],[1710094495000,220],[1710094496000,221],[1710094497000,220],[1710094498000,222],[1710094499000,220],[1710094500000,221],[1710094501000,221],[1710094502000,231],[1710094503000,228],[1710094504000,223],[1710094505000,226],[1710094506000,223],[1710094507000,229],[1710094508000,221],[1710094509000,227],[1710094510000,225],[1710094511000,227],[1710094512000,223],[1710094513000,231],[1710094514000,220],[1710094515000,225],[1710094516000,223],[1710094517000,228],[1710094518000,221],[1710094519000,220],[1710094520000,221],[1710094521000,220],[1710094522000,224],[1710094523000,222],[1710094524000,223],[1710094525000,223],[1710094526000,222],[1710094527000,221],[1710094528000,230],[1710094529000,222],[1710094530000,223],[1710094531000,229],[1710094532000,217]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#f15b4f',
name: 'extratos',
data: [
[1710094288000,0],[1710094289000,0],[1710094290000,0],[1710094291000,0],[1710094292000,1],[1710094293000,1],[1710094294000,1],[1710094295000,1],[1710094296000,1],[1710094297000,1],[1710094298000,2],[1710094299000,1],[1710094300000,2],[1710094301000,2],[1710094302000,1],[1710094303000,2],[1710094304000,2],[1710094305000,2],[1710094306000,2],[1710094307000,2],[1710094308000,2],[1710094309000,2],[1710094310000,3],[1710094311000,2],[1710094312000,3],[1710094313000,2],[1710094314000,3],[1710094315000,2],[1710094316000,3],[1710094317000,3],[1710094318000,3],[1710094319000,3],[1710094320000,3],[1710094321000,3],[1710094322000,3],[1710094323000,4],[1710094324000,3],[1710094325000,3],[1710094326000,4],[1710094327000,3],[1710094328000,4],[1710094329000,4],[1710094330000,4],[1710094331000,4],[1710094332000,4],[1710094333000,4],[1710094334000,4],[1710094335000,4],[1710094336000,4],[1710094337000,4],[1710094338000,5],[1710094339000,4],[1710094340000,5],[1710094341000,5],[1710094342000,4],[1710094343000,5],[1710094344000,5],[1710094345000,5],[1710094346000,5],[1710094347000,5],[1710094348000,5],[1710094349000,5],[1710094350000,6],[1710094351000,5],[1710094352000,6],[1710094353000,5],[1710094354000,6],[1710094355000,5],[1710094356000,6],[1710094357000,6],[1710094358000,6],[1710094359000,6],[1710094360000,6],[1710094361000,6],[1710094362000,6],[1710094363000,7],[1710094364000,6],[1710094365000,6],[1710094366000,7],[1710094367000,6],[1710094368000,7],[1710094369000,7],[1710094370000,7],[1710094371000,7],[1710094372000,7],[1710094373000,7],[1710094374000,7],[1710094375000,7],[1710094376000,7],[1710094377000,7],[1710094378000,8],[1710094379000,7],[1710094380000,8],[1710094381000,8],[1710094382000,7],[1710094383000,8],[1710094384000,8],[1710094385000,8],[1710094386000,8],[1710094387000,8],[1710094388000,8],[1710094389000,8],[1710094390000,9],[1710094391000,8],[1710094392000,9],[1710094393000,8],[1710094394000,9],[1710094395000,8],[1710094396000,9],[1710094397000,9],[1710094398000,9],[1710094399000,9],[1710094400000,9],[1710094401000,9],[1710094402000,9],[1710094403000,10],[1710094404000,9],[1710094405000,9],[1710094406000,10],[1710094407000,9],[1710094408000,10],[1710094409000,10],[1710094410000,10],[1710094411000,10],[1710094412000,12],[1710094413000,10],[1710094414000,10],[1710094415000,10],[1710094416000,10],[1710094417000,10],[1710094418000,10],[1710094419000,10],[1710094420000,10],[1710094421000,10],[1710094422000,10],[1710094423000,10],[1710094424000,10],[1710094425000,10],[1710094426000,10],[1710094427000,11],[1710094428000,10],[1710094429000,11],[1710094430000,10],[1710094431000,10],[1710094432000,10],[1710094433000,10],[1710094434000,10],[1710094435000,10],[1710094436000,10],[1710094437000,10],[1710094438000,10],[1710094439000,10],[1710094440000,10],[1710094441000,10],[1710094442000,10],[1710094443000,10],[1710094444000,10],[1710094445000,10],[1710094446000,10],[1710094447000,10],[1710094448000,10],[1710094449000,10],[1710094450000,10],[1710094451000,10],[1710094452000,10],[1710094453000,10],[1710094454000,10],[1710094455000,10],[1710094456000,10],[1710094457000,10],[1710094458000,10],[1710094459000,10],[1710094460000,10],[1710094461000,10],[1710094462000,10],[1710094463000,10],[1710094464000,10],[1710094465000,10],[1710094466000,10],[1710094467000,10],[1710094468000,10],[1710094469000,10],[1710094470000,10],[1710094471000,10],[1710094472000,10],[1710094473000,10],[1710094474000,10],[1710094475000,10],[1710094476000,10],[1710094477000,10],[1710094478000,11],[1710094479000,10],[1710094480000,10],[1710094481000,10],[1710094482000,10],[1710094483000,10],[1710094484000,10],[1710094485000,10],[1710094486000,10],[1710094487000,10],[1710094488000,11],[1710094489000,10],[1710094490000,10],[1710094491000,10],[1710094492000,10],[1710094493000,10],[1710094494000,10],[1710094495000,10],[1710094496000,10],[1710094497000,10],[1710094498000,10],[1710094499000,10],[1710094500000,10],[1710094501000,10],[1710094502000,11],[1710094503000,10],[1710094504000,10],[1710094505000,10],[1710094506000,10],[1710094507000,10],[1710094508000,10],[1710094509000,10],[1710094510000,10],[1710094511000,10],[1710094512000,10],[1710094513000,11],[1710094514000,10],[1710094515000,10],[1710094516000,10],[1710094517000,10],[1710094518000,10],[1710094519000,10],[1710094520000,10],[1710094521000,10],[1710094522000,10],[1710094523000,10],[1710094524000,10],[1710094525000,10],[1710094526000,10],[1710094527000,10],[1710094528000,10],[1710094529000,10],[1710094530000,10],[1710094531000,11],[1710094532000,9]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FFDD00',
name: 'validação HTTP 404',
data: [
[1710094288000,0],[1710094289000,0],[1710094290000,0],[1710094291000,1],[1710094292000,0],[1710094293000,0],[1710094294000,0],[1710094295000,0],[1710094296000,0],[1710094297000,0],[1710094298000,0],[1710094299000,0],[1710094300000,0],[1710094301000,0],[1710094302000,0],[1710094303000,0],[1710094304000,0],[1710094305000,0],[1710094306000,0],[1710094307000,0],[1710094308000,0],[1710094309000,0],[1710094310000,0],[1710094311000,0],[1710094312000,0],[1710094313000,0],[1710094314000,0],[1710094315000,0],[1710094316000,0],[1710094317000,0],[1710094318000,0],[1710094319000,0],[1710094320000,0],[1710094321000,0],[1710094322000,0],[1710094323000,0],[1710094324000,0],[1710094325000,0],[1710094326000,0],[1710094327000,0],[1710094328000,0],[1710094329000,0],[1710094330000,0],[1710094331000,0],[1710094332000,0],[1710094333000,0],[1710094334000,0],[1710094335000,0],[1710094336000,0],[1710094337000,0],[1710094338000,0],[1710094339000,0],[1710094340000,0],[1710094341000,0],[1710094342000,0],[1710094343000,0],[1710094344000,0],[1710094345000,0],[1710094346000,0],[1710094347000,0],[1710094348000,0],[1710094349000,0],[1710094350000,0],[1710094351000,0],[1710094352000,0],[1710094353000,0],[1710094354000,0],[1710094355000,0],[1710094356000,0],[1710094357000,0],[1710094358000,0],[1710094359000,0],[1710094360000,0],[1710094361000,0],[1710094362000,0],[1710094363000,0],[1710094364000,0],[1710094365000,0],[1710094366000,0],[1710094367000,0],[1710094368000,0],[1710094369000,0],[1710094370000,0],[1710094371000,0],[1710094372000,0],[1710094373000,0],[1710094374000,0],[1710094375000,0],[1710094376000,0],[1710094377000,0],[1710094378000,0],[1710094379000,0],[1710094380000,0],[1710094381000,0],[1710094382000,0],[1710094383000,0],[1710094384000,0],[1710094385000,0],[1710094386000,0],[1710094387000,0],[1710094388000,0],[1710094389000,0],[1710094390000,0],[1710094391000,0],[1710094392000,0],[1710094393000,0],[1710094394000,0],[1710094395000,0],[1710094396000,0],[1710094397000,0],[1710094398000,0],[1710094399000,0],[1710094400000,0],[1710094401000,0],[1710094402000,0],[1710094403000,0],[1710094404000,0],[1710094405000,0],[1710094406000,0],[1710094407000,0],[1710094408000,0],[1710094409000,0],[1710094410000,0],[1710094411000,0],[1710094412000,0],[1710094413000,0],[1710094414000,0],[1710094415000,0],[1710094416000,0],[1710094417000,0],[1710094418000,0],[1710094419000,0],[1710094420000,0],[1710094421000,0],[1710094422000,0],[1710094423000,0],[1710094424000,0],[1710094425000,0],[1710094426000,0],[1710094427000,0],[1710094428000,0],[1710094429000,0],[1710094430000,0],[1710094431000,0],[1710094432000,0],[1710094433000,0],[1710094434000,0],[1710094435000,0],[1710094436000,0],[1710094437000,0],[1710094438000,0],[1710094439000,0],[1710094440000,0],[1710094441000,0],[1710094442000,0],[1710094443000,0],[1710094444000,0],[1710094445000,0],[1710094446000,0],[1710094447000,0],[1710094448000,0],[1710094449000,0],[1710094450000,0],[1710094451000,0],[1710094452000,0],[1710094453000,0],[1710094454000,0],[1710094455000,0],[1710094456000,0],[1710094457000,0],[1710094458000,0],[1710094459000,0],[1710094460000,0],[1710094461000,0],[1710094462000,0],[1710094463000,0],[1710094464000,0],[1710094465000,0],[1710094466000,0],[1710094467000,0],[1710094468000,0],[1710094469000,0],[1710094470000,0],[1710094471000,0],[1710094472000,0],[1710094473000,0],[1710094474000,0],[1710094475000,0],[1710094476000,0],[1710094477000,0],[1710094478000,0],[1710094479000,0],[1710094480000,0],[1710094481000,0],[1710094482000,0],[1710094483000,0],[1710094484000,0],[1710094485000,0],[1710094486000,0],[1710094487000,0],[1710094488000,0],[1710094489000,0],[1710094490000,0],[1710094491000,0],[1710094492000,0],[1710094493000,0],[1710094494000,0],[1710094495000,0],[1710094496000,0],[1710094497000,0],[1710094498000,0],[1710094499000,0],[1710094500000,0],[1710094501000,0],[1710094502000,0],[1710094503000,0],[1710094504000,0],[1710094505000,0],[1710094506000,0],[1710094507000,0],[1710094508000,0],[1710094509000,0],[1710094510000,0],[1710094511000,0],[1710094512000,0],[1710094513000,0],[1710094514000,0],[1710094515000,0],[1710094516000,0],[1710094517000,0],[1710094518000,0],[1710094519000,0],[1710094520000,0],[1710094521000,0],[1710094522000,0],[1710094523000,0],[1710094524000,0],[1710094525000,0],[1710094526000,0],[1710094527000,0],[1710094528000,0],[1710094529000,0],[1710094530000,0],[1710094531000,0],[1710094532000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00D5FF',
name: 'validações',
data: [
[1710094288000,0],[1710094289000,0],[1710094290000,0],[1710094291000,5],[1710094292000,5],[1710094293000,0],[1710094294000,0],[1710094295000,0],[1710094296000,0],[1710094297000,0],[1710094298000,0],[1710094299000,0],[1710094300000,0],[1710094301000,0],[1710094302000,0],[1710094303000,0],[1710094304000,0],[1710094305000,0],[1710094306000,0],[1710094307000,0],[1710094308000,0],[1710094309000,0],[1710094310000,0],[1710094311000,0],[1710094312000,0],[1710094313000,0],[1710094314000,0],[1710094315000,0],[1710094316000,0],[1710094317000,0],[1710094318000,0],[1710094319000,0],[1710094320000,0],[1710094321000,0],[1710094322000,0],[1710094323000,0],[1710094324000,0],[1710094325000,0],[1710094326000,0],[1710094327000,0],[1710094328000,0],[1710094329000,0],[1710094330000,0],[1710094331000,0],[1710094332000,0],[1710094333000,0],[1710094334000,0],[1710094335000,0],[1710094336000,0],[1710094337000,0],[1710094338000,0],[1710094339000,0],[1710094340000,0],[1710094341000,0],[1710094342000,0],[1710094343000,0],[1710094344000,0],[1710094345000,0],[1710094346000,0],[1710094347000,0],[1710094348000,0],[1710094349000,0],[1710094350000,0],[1710094351000,0],[1710094352000,0],[1710094353000,0],[1710094354000,0],[1710094355000,0],[1710094356000,0],[1710094357000,0],[1710094358000,0],[1710094359000,0],[1710094360000,0],[1710094361000,0],[1710094362000,0],[1710094363000,0],[1710094364000,0],[1710094365000,0],[1710094366000,0],[1710094367000,0],[1710094368000,0],[1710094369000,0],[1710094370000,0],[1710094371000,0],[1710094372000,0],[1710094373000,0],[1710094374000,0],[1710094375000,0],[1710094376000,0],[1710094377000,0],[1710094378000,0],[1710094379000,0],[1710094380000,0],[1710094381000,0],[1710094382000,0],[1710094383000,0],[1710094384000,0],[1710094385000,0],[1710094386000,0],[1710094387000,0],[1710094388000,0],[1710094389000,0],[1710094390000,0],[1710094391000,0],[1710094392000,0],[1710094393000,0],[1710094394000,0],[1710094395000,0],[1710094396000,0],[1710094397000,0],[1710094398000,0],[1710094399000,0],[1710094400000,0],[1710094401000,0],[1710094402000,0],[1710094403000,0],[1710094404000,0],[1710094405000,0],[1710094406000,0],[1710094407000,0],[1710094408000,0],[1710094409000,0],[1710094410000,0],[1710094411000,0],[1710094412000,0],[1710094413000,0],[1710094414000,0],[1710094415000,0],[1710094416000,0],[1710094417000,0],[1710094418000,0],[1710094419000,0],[1710094420000,0],[1710094421000,0],[1710094422000,0],[1710094423000,0],[1710094424000,0],[1710094425000,0],[1710094426000,0],[1710094427000,0],[1710094428000,0],[1710094429000,0],[1710094430000,0],[1710094431000,0],[1710094432000,0],[1710094433000,0],[1710094434000,0],[1710094435000,0],[1710094436000,0],[1710094437000,0],[1710094438000,0],[1710094439000,0],[1710094440000,0],[1710094441000,0],[1710094442000,0],[1710094443000,0],[1710094444000,0],[1710094445000,0],[1710094446000,0],[1710094447000,0],[1710094448000,0],[1710094449000,0],[1710094450000,0],[1710094451000,0],[1710094452000,0],[1710094453000,0],[1710094454000,0],[1710094455000,0],[1710094456000,0],[1710094457000,0],[1710094458000,0],[1710094459000,0],[1710094460000,0],[1710094461000,0],[1710094462000,0],[1710094463000,0],[1710094464000,0],[1710094465000,0],[1710094466000,0],[1710094467000,0],[1710094468000,0],[1710094469000,0],[1710094470000,0],[1710094471000,0],[1710094472000,0],[1710094473000,0],[1710094474000,0],[1710094475000,0],[1710094476000,0],[1710094477000,0],[1710094478000,0],[1710094479000,0],[1710094480000,0],[1710094481000,0],[1710094482000,0],[1710094483000,0],[1710094484000,0],[1710094485000,0],[1710094486000,0],[1710094487000,0],[1710094488000,0],[1710094489000,0],[1710094490000,0],[1710094491000,0],[1710094492000,0],[1710094493000,0],[1710094494000,0],[1710094495000,0],[1710094496000,0],[1710094497000,0],[1710094498000,0],[1710094499000,0],[1710094500000,0],[1710094501000,0],[1710094502000,0],[1710094503000,0],[1710094504000,0],[1710094505000,0],[1710094506000,0],[1710094507000,0],[1710094508000,0],[1710094509000,0],[1710094510000,0],[1710094511000,0],[1710094512000,0],[1710094513000,0],[1710094514000,0],[1710094515000,0],[1710094516000,0],[1710094517000,0],[1710094518000,0],[1710094519000,0],[1710094520000,0],[1710094521000,0],[1710094522000,0],[1710094523000,0],[1710094524000,0],[1710094525000,0],[1710094526000,0],[1710094527000,0],[1710094528000,0],[1710094529000,0],[1710094530000,0],[1710094531000,0],[1710094532000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00FF00',
name: 'validação concorrência saldo - 0',
data: [
[1710094288000,0],[1710094289000,0],[1710094290000,1],[1710094291000,0],[1710094292000,0],[1710094293000,0],[1710094294000,0],[1710094295000,0],[1710094296000,0],[1710094297000,0],[1710094298000,0],[1710094299000,0],[1710094300000,0],[1710094301000,0],[1710094302000,0],[1710094303000,0],[1710094304000,0],[1710094305000,0],[1710094306000,0],[1710094307000,0],[1710094308000,0],[1710094309000,0],[1710094310000,0],[1710094311000,0],[1710094312000,0],[1710094313000,0],[1710094314000,0],[1710094315000,0],[1710094316000,0],[1710094317000,0],[1710094318000,0],[1710094319000,0],[1710094320000,0],[1710094321000,0],[1710094322000,0],[1710094323000,0],[1710094324000,0],[1710094325000,0],[1710094326000,0],[1710094327000,0],[1710094328000,0],[1710094329000,0],[1710094330000,0],[1710094331000,0],[1710094332000,0],[1710094333000,0],[1710094334000,0],[1710094335000,0],[1710094336000,0],[1710094337000,0],[1710094338000,0],[1710094339000,0],[1710094340000,0],[1710094341000,0],[1710094342000,0],[1710094343000,0],[1710094344000,0],[1710094345000,0],[1710094346000,0],[1710094347000,0],[1710094348000,0],[1710094349000,0],[1710094350000,0],[1710094351000,0],[1710094352000,0],[1710094353000,0],[1710094354000,0],[1710094355000,0],[1710094356000,0],[1710094357000,0],[1710094358000,0],[1710094359000,0],[1710094360000,0],[1710094361000,0],[1710094362000,0],[1710094363000,0],[1710094364000,0],[1710094365000,0],[1710094366000,0],[1710094367000,0],[1710094368000,0],[1710094369000,0],[1710094370000,0],[1710094371000,0],[1710094372000,0],[1710094373000,0],[1710094374000,0],[1710094375000,0],[1710094376000,0],[1710094377000,0],[1710094378000,0],[1710094379000,0],[1710094380000,0],[1710094381000,0],[1710094382000,0],[1710094383000,0],[1710094384000,0],[1710094385000,0],[1710094386000,0],[1710094387000,0],[1710094388000,0],[1710094389000,0],[1710094390000,0],[1710094391000,0],[1710094392000,0],[1710094393000,0],[1710094394000,0],[1710094395000,0],[1710094396000,0],[1710094397000,0],[1710094398000,0],[1710094399000,0],[1710094400000,0],[1710094401000,0],[1710094402000,0],[1710094403000,0],[1710094404000,0],[1710094405000,0],[1710094406000,0],[1710094407000,0],[1710094408000,0],[1710094409000,0],[1710094410000,0],[1710094411000,0],[1710094412000,0],[1710094413000,0],[1710094414000,0],[1710094415000,0],[1710094416000,0],[1710094417000,0],[1710094418000,0],[1710094419000,0],[1710094420000,0],[1710094421000,0],[1710094422000,0],[1710094423000,0],[1710094424000,0],[1710094425000,0],[1710094426000,0],[1710094427000,0],[1710094428000,0],[1710094429000,0],[1710094430000,0],[1710094431000,0],[1710094432000,0],[1710094433000,0],[1710094434000,0],[1710094435000,0],[1710094436000,0],[1710094437000,0],[1710094438000,0],[1710094439000,0],[1710094440000,0],[1710094441000,0],[1710094442000,0],[1710094443000,0],[1710094444000,0],[1710094445000,0],[1710094446000,0],[1710094447000,0],[1710094448000,0],[1710094449000,0],[1710094450000,0],[1710094451000,0],[1710094452000,0],[1710094453000,0],[1710094454000,0],[1710094455000,0],[1710094456000,0],[1710094457000,0],[1710094458000,0],[1710094459000,0],[1710094460000,0],[1710094461000,0],[1710094462000,0],[1710094463000,0],[1710094464000,0],[1710094465000,0],[1710094466000,0],[1710094467000,0],[1710094468000,0],[1710094469000,0],[1710094470000,0],[1710094471000,0],[1710094472000,0],[1710094473000,0],[1710094474000,0],[1710094475000,0],[1710094476000,0],[1710094477000,0],[1710094478000,0],[1710094479000,0],[1710094480000,0],[1710094481000,0],[1710094482000,0],[1710094483000,0],[1710094484000,0],[1710094485000,0],[1710094486000,0],[1710094487000,0],[1710094488000,0],[1710094489000,0],[1710094490000,0],[1710094491000,0],[1710094492000,0],[1710094493000,0],[1710094494000,0],[1710094495000,0],[1710094496000,0],[1710094497000,0],[1710094498000,0],[1710094499000,0],[1710094500000,0],[1710094501000,0],[1710094502000,0],[1710094503000,0],[1710094504000,0],[1710094505000,0],[1710094506000,0],[1710094507000,0],[1710094508000,0],[1710094509000,0],[1710094510000,0],[1710094511000,0],[1710094512000,0],[1710094513000,0],[1710094514000,0],[1710094515000,0],[1710094516000,0],[1710094517000,0],[1710094518000,0],[1710094519000,0],[1710094520000,0],[1710094521000,0],[1710094522000,0],[1710094523000,0],[1710094524000,0],[1710094525000,0],[1710094526000,0],[1710094527000,0],[1710094528000,0],[1710094529000,0],[1710094530000,0],[1710094531000,0],[1710094532000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#9D00FF',
name: 'validação concorrência transações - c',
data: [
[1710094288000,0],[1710094289000,25],[1710094290000,24],[1710094291000,0],[1710094292000,0],[1710094293000,0],[1710094294000,0],[1710094295000,0],[1710094296000,0],[1710094297000,0],[1710094298000,0],[1710094299000,0],[1710094300000,0],[1710094301000,0],[1710094302000,0],[1710094303000,0],[1710094304000,0],[1710094305000,0],[1710094306000,0],[1710094307000,0],[1710094308000,0],[1710094309000,0],[1710094310000,0],[1710094311000,0],[1710094312000,0],[1710094313000,0],[1710094314000,0],[1710094315000,0],[1710094316000,0],[1710094317000,0],[1710094318000,0],[1710094319000,0],[1710094320000,0],[1710094321000,0],[1710094322000,0],[1710094323000,0],[1710094324000,0],[1710094325000,0],[1710094326000,0],[1710094327000,0],[1710094328000,0],[1710094329000,0],[1710094330000,0],[1710094331000,0],[1710094332000,0],[1710094333000,0],[1710094334000,0],[1710094335000,0],[1710094336000,0],[1710094337000,0],[1710094338000,0],[1710094339000,0],[1710094340000,0],[1710094341000,0],[1710094342000,0],[1710094343000,0],[1710094344000,0],[1710094345000,0],[1710094346000,0],[1710094347000,0],[1710094348000,0],[1710094349000,0],[1710094350000,0],[1710094351000,0],[1710094352000,0],[1710094353000,0],[1710094354000,0],[1710094355000,0],[1710094356000,0],[1710094357000,0],[1710094358000,0],[1710094359000,0],[1710094360000,0],[1710094361000,0],[1710094362000,0],[1710094363000,0],[1710094364000,0],[1710094365000,0],[1710094366000,0],[1710094367000,0],[1710094368000,0],[1710094369000,0],[1710094370000,0],[1710094371000,0],[1710094372000,0],[1710094373000,0],[1710094374000,0],[1710094375000,0],[1710094376000,0],[1710094377000,0],[1710094378000,0],[1710094379000,0],[1710094380000,0],[1710094381000,0],[1710094382000,0],[1710094383000,0],[1710094384000,0],[1710094385000,0],[1710094386000,0],[1710094387000,0],[1710094388000,0],[1710094389000,0],[1710094390000,0],[1710094391000,0],[1710094392000,0],[1710094393000,0],[1710094394000,0],[1710094395000,0],[1710094396000,0],[1710094397000,0],[1710094398000,0],[1710094399000,0],[1710094400000,0],[1710094401000,0],[1710094402000,0],[1710094403000,0],[1710094404000,0],[1710094405000,0],[1710094406000,0],[1710094407000,0],[1710094408000,0],[1710094409000,0],[1710094410000,0],[1710094411000,0],[1710094412000,0],[1710094413000,0],[1710094414000,0],[1710094415000,0],[1710094416000,0],[1710094417000,0],[1710094418000,0],[1710094419000,0],[1710094420000,0],[1710094421000,0],[1710094422000,0],[1710094423000,0],[1710094424000,0],[1710094425000,0],[1710094426000,0],[1710094427000,0],[1710094428000,0],[1710094429000,0],[1710094430000,0],[1710094431000,0],[1710094432000,0],[1710094433000,0],[1710094434000,0],[1710094435000,0],[1710094436000,0],[1710094437000,0],[1710094438000,0],[1710094439000,0],[1710094440000,0],[1710094441000,0],[1710094442000,0],[1710094443000,0],[1710094444000,0],[1710094445000,0],[1710094446000,0],[1710094447000,0],[1710094448000,0],[1710094449000,0],[1710094450000,0],[1710094451000,0],[1710094452000,0],[1710094453000,0],[1710094454000,0],[1710094455000,0],[1710094456000,0],[1710094457000,0],[1710094458000,0],[1710094459000,0],[1710094460000,0],[1710094461000,0],[1710094462000,0],[1710094463000,0],[1710094464000,0],[1710094465000,0],[1710094466000,0],[1710094467000,0],[1710094468000,0],[1710094469000,0],[1710094470000,0],[1710094471000,0],[1710094472000,0],[1710094473000,0],[1710094474000,0],[1710094475000,0],[1710094476000,0],[1710094477000,0],[1710094478000,0],[1710094479000,0],[1710094480000,0],[1710094481000,0],[1710094482000,0],[1710094483000,0],[1710094484000,0],[1710094485000,0],[1710094486000,0],[1710094487000,0],[1710094488000,0],[1710094489000,0],[1710094490000,0],[1710094491000,0],[1710094492000,0],[1710094493000,0],[1710094494000,0],[1710094495000,0],[1710094496000,0],[1710094497000,0],[1710094498000,0],[1710094499000,0],[1710094500000,0],[1710094501000,0],[1710094502000,0],[1710094503000,0],[1710094504000,0],[1710094505000,0],[1710094506000,0],[1710094507000,0],[1710094508000,0],[1710094509000,0],[1710094510000,0],[1710094511000,0],[1710094512000,0],[1710094513000,0],[1710094514000,0],[1710094515000,0],[1710094516000,0],[1710094517000,0],[1710094518000,0],[1710094519000,0],[1710094520000,0],[1710094521000,0],[1710094522000,0],[1710094523000,0],[1710094524000,0],[1710094525000,0],[1710094526000,0],[1710094527000,0],[1710094528000,0],[1710094529000,0],[1710094530000,0],[1710094531000,0],[1710094532000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FF00E1',
name: 'validação concorrência saldo - -25',
data: [
[1710094288000,1],[1710094289000,1],[1710094290000,0],[1710094291000,0],[1710094292000,0],[1710094293000,0],[1710094294000,0],[1710094295000,0],[1710094296000,0],[1710094297000,0],[1710094298000,0],[1710094299000,0],[1710094300000,0],[1710094301000,0],[1710094302000,0],[1710094303000,0],[1710094304000,0],[1710094305000,0],[1710094306000,0],[1710094307000,0],[1710094308000,0],[1710094309000,0],[1710094310000,0],[1710094311000,0],[1710094312000,0],[1710094313000,0],[1710094314000,0],[1710094315000,0],[1710094316000,0],[1710094317000,0],[1710094318000,0],[1710094319000,0],[1710094320000,0],[1710094321000,0],[1710094322000,0],[1710094323000,0],[1710094324000,0],[1710094325000,0],[1710094326000,0],[1710094327000,0],[1710094328000,0],[1710094329000,0],[1710094330000,0],[1710094331000,0],[1710094332000,0],[1710094333000,0],[1710094334000,0],[1710094335000,0],[1710094336000,0],[1710094337000,0],[1710094338000,0],[1710094339000,0],[1710094340000,0],[1710094341000,0],[1710094342000,0],[1710094343000,0],[1710094344000,0],[1710094345000,0],[1710094346000,0],[1710094347000,0],[1710094348000,0],[1710094349000,0],[1710094350000,0],[1710094351000,0],[1710094352000,0],[1710094353000,0],[1710094354000,0],[1710094355000,0],[1710094356000,0],[1710094357000,0],[1710094358000,0],[1710094359000,0],[1710094360000,0],[1710094361000,0],[1710094362000,0],[1710094363000,0],[1710094364000,0],[1710094365000,0],[1710094366000,0],[1710094367000,0],[1710094368000,0],[1710094369000,0],[1710094370000,0],[1710094371000,0],[1710094372000,0],[1710094373000,0],[1710094374000,0],[1710094375000,0],[1710094376000,0],[1710094377000,0],[1710094378000,0],[1710094379000,0],[1710094380000,0],[1710094381000,0],[1710094382000,0],[1710094383000,0],[1710094384000,0],[1710094385000,0],[1710094386000,0],[1710094387000,0],[1710094388000,0],[1710094389000,0],[1710094390000,0],[1710094391000,0],[1710094392000,0],[1710094393000,0],[1710094394000,0],[1710094395000,0],[1710094396000,0],[1710094397000,0],[1710094398000,0],[1710094399000,0],[1710094400000,0],[1710094401000,0],[1710094402000,0],[1710094403000,0],[1710094404000,0],[1710094405000,0],[1710094406000,0],[1710094407000,0],[1710094408000,0],[1710094409000,0],[1710094410000,0],[1710094411000,0],[1710094412000,0],[1710094413000,0],[1710094414000,0],[1710094415000,0],[1710094416000,0],[1710094417000,0],[1710094418000,0],[1710094419000,0],[1710094420000,0],[1710094421000,0],[1710094422000,0],[1710094423000,0],[1710094424000,0],[1710094425000,0],[1710094426000,0],[1710094427000,0],[1710094428000,0],[1710094429000,0],[1710094430000,0],[1710094431000,0],[1710094432000,0],[1710094433000,0],[1710094434000,0],[1710094435000,0],[1710094436000,0],[1710094437000,0],[1710094438000,0],[1710094439000,0],[1710094440000,0],[1710094441000,0],[1710094442000,0],[1710094443000,0],[1710094444000,0],[1710094445000,0],[1710094446000,0],[1710094447000,0],[1710094448000,0],[1710094449000,0],[1710094450000,0],[1710094451000,0],[1710094452000,0],[1710094453000,0],[1710094454000,0],[1710094455000,0],[1710094456000,0],[1710094457000,0],[1710094458000,0],[1710094459000,0],[1710094460000,0],[1710094461000,0],[1710094462000,0],[1710094463000,0],[1710094464000,0],[1710094465000,0],[1710094466000,0],[1710094467000,0],[1710094468000,0],[1710094469000,0],[1710094470000,0],[1710094471000,0],[1710094472000,0],[1710094473000,0],[1710094474000,0],[1710094475000,0],[1710094476000,0],[1710094477000,0],[1710094478000,0],[1710094479000,0],[1710094480000,0],[1710094481000,0],[1710094482000,0],[1710094483000,0],[1710094484000,0],[1710094485000,0],[1710094486000,0],[1710094487000,0],[1710094488000,0],[1710094489000,0],[1710094490000,0],[1710094491000,0],[1710094492000,0],[1710094493000,0],[1710094494000,0],[1710094495000,0],[1710094496000,0],[1710094497000,0],[1710094498000,0],[1710094499000,0],[1710094500000,0],[1710094501000,0],[1710094502000,0],[1710094503000,0],[1710094504000,0],[1710094505000,0],[1710094506000,0],[1710094507000,0],[1710094508000,0],[1710094509000,0],[1710094510000,0],[1710094511000,0],[1710094512000,0],[1710094513000,0],[1710094514000,0],[1710094515000,0],[1710094516000,0],[1710094517000,0],[1710094518000,0],[1710094519000,0],[1710094520000,0],[1710094521000,0],[1710094522000,0],[1710094523000,0],[1710094524000,0],[1710094525000,0],[1710094526000,0],[1710094527000,0],[1710094528000,0],[1710094529000,0],[1710094530000,0],[1710094531000,0],[1710094532000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#AECAEB',
name: 'validação concorrência transações - d',
data: [
[1710094288000,25],[1710094289000,0],[1710094290000,0],[1710094291000,0],[1710094292000,0],[1710094293000,0],[1710094294000,0],[1710094295000,0],[1710094296000,0],[1710094297000,0],[1710094298000,0],[1710094299000,0],[1710094300000,0],[1710094301000,0],[1710094302000,0],[1710094303000,0],[1710094304000,0],[1710094305000,0],[1710094306000,0],[1710094307000,0],[1710094308000,0],[1710094309000,0],[1710094310000,0],[1710094311000,0],[1710094312000,0],[1710094313000,0],[1710094314000,0],[1710094315000,0],[1710094316000,0],[1710094317000,0],[1710094318000,0],[1710094319000,0],[1710094320000,0],[1710094321000,0],[1710094322000,0],[1710094323000,0],[1710094324000,0],[1710094325000,0],[1710094326000,0],[1710094327000,0],[1710094328000,0],[1710094329000,0],[1710094330000,0],[1710094331000,0],[1710094332000,0],[1710094333000,0],[1710094334000,0],[1710094335000,0],[1710094336000,0],[1710094337000,0],[1710094338000,0],[1710094339000,0],[1710094340000,0],[1710094341000,0],[1710094342000,0],[1710094343000,0],[1710094344000,0],[1710094345000,0],[1710094346000,0],[1710094347000,0],[1710094348000,0],[1710094349000,0],[1710094350000,0],[1710094351000,0],[1710094352000,0],[1710094353000,0],[1710094354000,0],[1710094355000,0],[1710094356000,0],[1710094357000,0],[1710094358000,0],[1710094359000,0],[1710094360000,0],[1710094361000,0],[1710094362000,0],[1710094363000,0],[1710094364000,0],[1710094365000,0],[1710094366000,0],[1710094367000,0],[1710094368000,0],[1710094369000,0],[1710094370000,0],[1710094371000,0],[1710094372000,0],[1710094373000,0],[1710094374000,0],[1710094375000,0],[1710094376000,0],[1710094377000,0],[1710094378000,0],[1710094379000,0],[1710094380000,0],[1710094381000,0],[1710094382000,0],[1710094383000,0],[1710094384000,0],[1710094385000,0],[1710094386000,0],[1710094387000,0],[1710094388000,0],[1710094389000,0],[1710094390000,0],[1710094391000,0],[1710094392000,0],[1710094393000,0],[1710094394000,0],[1710094395000,0],[1710094396000,0],[1710094397000,0],[1710094398000,0],[1710094399000,0],[1710094400000,0],[1710094401000,0],[1710094402000,0],[1710094403000,0],[1710094404000,0],[1710094405000,0],[1710094406000,0],[1710094407000,0],[1710094408000,0],[1710094409000,0],[1710094410000,0],[1710094411000,0],[1710094412000,0],[1710094413000,0],[1710094414000,0],[1710094415000,0],[1710094416000,0],[1710094417000,0],[1710094418000,0],[1710094419000,0],[1710094420000,0],[1710094421000,0],[1710094422000,0],[1710094423000,0],[1710094424000,0],[1710094425000,0],[1710094426000,0],[1710094427000,0],[1710094428000,0],[1710094429000,0],[1710094430000,0],[1710094431000,0],[1710094432000,0],[1710094433000,0],[1710094434000,0],[1710094435000,0],[1710094436000,0],[1710094437000,0],[1710094438000,0],[1710094439000,0],[1710094440000,0],[1710094441000,0],[1710094442000,0],[1710094443000,0],[1710094444000,0],[1710094445000,0],[1710094446000,0],[1710094447000,0],[1710094448000,0],[1710094449000,0],[1710094450000,0],[1710094451000,0],[1710094452000,0],[1710094453000,0],[1710094454000,0],[1710094455000,0],[1710094456000,0],[1710094457000,0],[1710094458000,0],[1710094459000,0],[1710094460000,0],[1710094461000,0],[1710094462000,0],[1710094463000,0],[1710094464000,0],[1710094465000,0],[1710094466000,0],[1710094467000,0],[1710094468000,0],[1710094469000,0],[1710094470000,0],[1710094471000,0],[1710094472000,0],[1710094473000,0],[1710094474000,0],[1710094475000,0],[1710094476000,0],[1710094477000,0],[1710094478000,0],[1710094479000,0],[1710094480000,0],[1710094481000,0],[1710094482000,0],[1710094483000,0],[1710094484000,0],[1710094485000,0],[1710094486000,0],[1710094487000,0],[1710094488000,0],[1710094489000,0],[1710094490000,0],[1710094491000,0],[1710094492000,0],[1710094493000,0],[1710094494000,0],[1710094495000,0],[1710094496000,0],[1710094497000,0],[1710094498000,0],[1710094499000,0],[1710094500000,0],[1710094501000,0],[1710094502000,0],[1710094503000,0],[1710094504000,0],[1710094505000,0],[1710094506000,0],[1710094507000,0],[1710094508000,0],[1710094509000,0],[1710094510000,0],[1710094511000,0],[1710094512000,0],[1710094513000,0],[1710094514000,0],[1710094515000,0],[1710094516000,0],[1710094517000,0],[1710094518000,0],[1710094519000,0],[1710094520000,0],[1710094521000,0],[1710094522000,0],[1710094523000,0],[1710094524000,0],[1710094525000,0],[1710094526000,0],[1710094527000,0],[1710094528000,0],[1710094529000,0],[1710094530000,0],[1710094531000,0],[1710094532000,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: ['8', '23', '38', '54', '69', '85', '100', '115', '131', '146', '162', '177', '192', '208', '223', '239', '254', '269', '285', '300', '315', '331', '346', '362', '377', '392', '408', '423', '439', '454', '469', '485', '500', '516', '531', '546', '562', '577', '593', '608', '623', '639', '654', '669', '685', '700', '716', '731', '746', '762', '777', '793', '808', '823', '839', '854', '870', '885', '900', '916', '931', '946', '962', '977', '993', '1008', '1023', '1039', '1054', '1070', '1085', '1100', '1116', '1131', '1147', '1162', '1177', '1193', '1208', '1224', '1239', '1254', '1270', '1285', '1300', '1316', '1331', '1347', '1362', '1377', '1393', '1408', '1424', '1439', '1454', '1470', '1485', '1501', '1516', '1531'],
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: [
51.5,14.98,13.43,11.34,6.27,1.17,0.12,0.06,0.06,0.06,0.06,0.06,0.04,0.06,0.04,0.06,0.05,0.04,0.04,0.04,0.02,0.04,0.03,0.03,0.02,0.01,0.03,0.01,0.02,0.0,0.01,0.0,0.0,0.0,0.0,0.0,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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([[1710094288,[271,296,317,335,337,344,347,350,351,352]],[1710094289,[6,6,6,6,6,6,6,6,6,6]],[1710094290,[15,31,43,54,56,58,81,95,98,99]],[1710094291,[5,5,5,5,5,5,5,5,5,5]],[1710094292,[0,2,6,12,36,38,40,42,46,48]],[1710094293,[7,7,7,7,7,7,7,7,7,8]],[1710094294,[5,6,6,6,6,6,6,6,6,7]],[1710094295,[4,5,5,7,7,7,8,8,8,8]],[1710094296,[4,5,5,5,6,6,7,7,7,8]],[1710094297,[4,4,5,5,5,5,5,6,6,6]],[1710094298,[4,4,5,5,5,5,5,6,8,9]],[1710094299,[4,4,5,5,5,5,5,6,7,8]],[1710094300,[3,4,4,5,5,5,5,5,6,7]],[1710094301,[3,4,4,5,5,5,5,5,5,6]],[1710094302,[3,4,4,5,5,5,5,6,7,7]],[1710094303,[3,4,4,5,5,5,5,5,6,6]],[1710094304,[3,4,4,4,5,5,5,5,5,5]],[1710094305,[3,4,4,4,4,5,5,5,5,6]],[1710094306,[3,4,4,4,4,5,5,5,5,5]],[1710094307,[3,3,4,4,4,5,5,5,5,6]],[1710094308,[3,3,4,4,4,4,5,5,5,5]],[1710094309,[3,3,4,4,4,4,4,4,4,4]],[1710094310,[2,3,3,4,4,4,4,5,5,5]],[1710094311,[2,3,3,4,4,4,4,4,5,5]],[1710094312,[2,3,3,4,4,4,4,4,5,6]],[1710094313,[2,3,3,4,4,4,4,4,5,5]],[1710094314,[2,3,3,4,4,4,4,5,5,6]],[1710094315,[2,3,3,4,4,4,5,5,6,6]],[1710094316,[2,3,3,4,4,4,4,5,5,5]],[1710094317,[2,3,4,4,4,4,4,5,6,10]],[1710094318,[2,3,4,4,5,5,6,6,7,7]],[1710094319,[2,3,4,5,5,5,6,6,6,7]],[1710094320,[2,3,4,5,5,5,5,6,7,11]],[1710094321,[2,3,4,4,4,5,5,5,6,7]],[1710094322,[2,3,4,4,4,4,5,5,6,7]],[1710094323,[2,3,3,4,4,4,5,5,5,6]],[1710094324,[2,3,4,5,5,5,5,5,6,7]],[1710094325,[2,3,4,4,5,5,5,5,6,8]],[1710094326,[2,3,3,4,4,5,5,6,7,7]],[1710094327,[1,3,3,4,5,5,6,6,7,8]],[1710094328,[1,3,4,5,5,5,6,7,7,8]],[1710094329,[2,3,4,5,5,6,6,6,7,9]],[1710094330,[1,3,4,4,5,5,5,6,6,6]],[1710094331,[2,3,4,4,4,5,5,5,12,15]],[1710094332,[2,3,3,4,5,5,5,5,6,7]],[1710094333,[2,3,3,4,4,4,5,5,5,7]],[1710094334,[2,3,3,4,4,4,4,5,5,7]],[1710094335,[2,3,4,5,5,6,6,7,8,10]],[1710094336,[2,3,4,4,5,5,5,6,9,10]],[1710094337,[2,3,3,4,5,5,5,6,8,12]],[1710094338,[1,2,3,4,4,4,5,5,6,7]],[1710094339,[1,2,3,4,4,4,5,5,8,12]],[1710094340,[1,2,3,4,4,5,5,5,7,7]],[1710094341,[1,2,3,4,4,4,4,5,6,9]],[1710094342,[2,3,4,5,5,5,6,7,16,26]],[1710094343,[2,3,4,5,5,5,6,6,8,10]],[1710094344,[1,3,4,5,5,5,6,8,18,27]],[1710094345,[1,3,4,5,5,5,6,7,13,15]],[1710094346,[1,3,4,5,5,5,6,13,21,28]],[1710094347,[2,3,4,5,6,7,11,19,22,23]],[1710094348,[1,3,4,6,7,9,15,22,30,38]],[1710094349,[1,3,4,5,5,6,6,9,17,25]],[1710094350,[2,3,4,5,5,6,6,7,15,26]],[1710094351,[2,3,4,5,6,6,6,8,13,19]],[1710094352,[2,3,4,5,5,6,9,14,22,28]],[1710094353,[1,3,4,6,6,7,12,19,33,38]],[1710094354,[1,3,4,5,6,6,8,14,25,38]],[1710094355,[1,3,4,6,6,8,14,20,28,34]],[1710094356,[1,2,4,4,5,6,9,14,25,31]],[1710094357,[1,2,3,4,5,6,7,10,19,24]],[1710094358,[1,3,4,5,5,6,14,21,32,35]],[1710094359,[1,3,4,7,10,15,21,26,35,39]],[1710094360,[1,3,4,11,16,23,29,36,48,52]],[1710094361,[1,2,4,6,8,14,19,24,34,54]],[1710094362,[1,2,4,5,5,6,10,17,27,31]],[1710094363,[1,3,4,5,7,12,19,26,37,40]],[1710094364,[1,3,4,6,9,14,19,25,34,42]],[1710094365,[1,3,4,10,14,21,24,31,39,50]],[1710094366,[1,2,4,9,14,20,25,30,38,41]],[1710094367,[1,2,4,7,12,16,21,26,34,38]],[1710094368,[1,2,4,7,10,15,20,28,33,43]],[1710094369,[1,2,4,8,13,16,22,29,40,46]],[1710094370,[1,2,4,8,14,18,25,32,40,48]],[1710094371,[1,2,4,6,8,13,19,25,33,47]],[1710094372,[1,2,4,7,12,17,22,28,34,38]],[1710094373,[1,3,4,11,16,21,26,33,39,45]],[1710094374,[1,3,4,10,13,19,25,33,40,41]],[1710094375,[1,3,5,17,20,25,31,38,50,59]],[1710094376,[1,3,4,14,19,24,29,35,41,51]],[1710094377,[1,3,4,16,21,24,30,36,40,42]],[1710094378,[1,3,5,17,23,28,32,39,50,56]],[1710094379,[1,2,4,17,22,27,32,37,42,43]],[1710094380,[1,2,4,17,21,28,30,36,43,45]],[1710094381,[1,3,5,23,27,34,39,49,61,85]],[1710094382,[1,4,12,36,43,49,59,76,95,155]],[1710094383,[1,3,4,16,20,26,31,36,43,49]],[1710094384,[1,4,9,34,40,45,52,60,72,76]],[1710094385,[1,3,5,22,27,32,38,42,51,53]],[1710094386,[1,2,5,18,23,27,33,37,43,54]],[1710094387,[1,3,4,20,26,30,33,39,48,58]],[1710094388,[1,3,5,24,30,34,40,44,57,61]],[1710094389,[1,3,5,26,31,36,40,45,53,56]],[1710094390,[1,3,6,27,31,35,41,46,57,70]],[1710094391,[1,3,12,35,40,45,50,56,62,70]],[1710094392,[1,3,9,31,36,41,47,54,57,60]],[1710094393,[1,3,6,28,32,35,41,48,56,62]],[1710094394,[1,3,7,29,34,38,44,54,69,80]],[1710094395,[1,4,9,34,39,44,50,53,59,61]],[1710094396,[1,3,11,38,42,47,51,57,62,73]],[1710094397,[1,3,6,29,34,37,44,49,56,61]],[1710094398,[1,3,6,29,33,38,44,48,58,68]],[1710094399,[1,3,7,30,38,41,45,52,56,57]],[1710094400,[1,3,6,27,31,36,40,45,53,57]],[1710094401,[1,3,5,27,31,37,41,48,58,60]],[1710094402,[1,3,6,28,31,36,42,49,57,64]],[1710094403,[1,3,6,28,32,39,42,52,58,62]],[1710094404,[1,4,8,32,36,41,45,51,58,64]],[1710094405,[1,4,10,35,40,45,51,56,61,66]],[1710094406,[1,5,12,36,39,44,51,57,64,71]],[1710094407,[1,5,16,41,46,51,55,59,66,73]],[1710094408,[1,6,21,45,49,54,59,64,74,90]],[1710094409,[1,4,12,35,39,43,49,56,62,67]],[1710094410,[1,5,15,37,43,47,54,59,64,82]],[1710094411,[1,15,52,299,342,379,430,562,1020,1504]],[1710094412,[50,196,255,366,407,449,544,687,1105,1539]],[1710094413,[3,53,119,209,254,289,361,497,758,840]],[1710094414,[2,13,35,61,66,70,77,86,212,251]],[1710094415,[1,6,22,45,49,54,58,67,76,82]],[1710094416,[2,5,18,42,47,51,56,60,71,80]],[1710094417,[2,7,20,45,50,54,59,62,72,88]],[1710094418,[1,5,19,44,48,51,58,62,74,86]],[1710094419,[1,6,17,41,47,53,57,60,73,76]],[1710094420,[1,5,15,39,44,49,55,59,71,81]],[1710094421,[1,6,18,44,49,53,60,64,71,76]],[1710094422,[1,5,21,45,49,55,61,69,81,96]],[1710094423,[1,6,18,45,49,54,59,66,73,83]],[1710094424,[1,5,18,42,46,51,56,61,77,100]],[1710094425,[2,10,27,53,58,64,71,79,131,173]],[1710094426,[1,4,16,42,46,52,57,64,74,88]],[1710094427,[2,7,21,46,50,54,59,67,77,82]],[1710094428,[1,4,17,42,47,51,57,61,68,75]],[1710094429,[2,8,24,48,52,59,64,71,82,92]],[1710094430,[1,4,13,39,44,48,53,58,68,72]],[1710094431,[1,6,19,44,48,52,57,63,68,75]],[1710094432,[1,4,16,40,44,49,56,60,71,75]],[1710094433,[1,8,22,45,50,57,61,66,73,87]],[1710094434,[1,5,15,40,46,51,57,62,74,85]],[1710094435,[1,6,18,43,47,53,58,64,74,85]],[1710094436,[1,4,16,44,47,52,57,61,71,86]],[1710094437,[1,6,20,45,50,55,59,64,74,87]],[1710094438,[1,4,15,40,43,49,54,59,63,74]],[1710094439,[1,5,17,41,45,52,58,65,72,78]],[1710094440,[1,4,14,39,44,49,55,61,69,74]],[1710094441,[1,5,19,42,46,52,57,64,70,80]],[1710094442,[1,6,22,45,50,56,61,68,81,91]],[1710094443,[1,6,19,45,50,54,58,62,74,85]],[1710094444,[1,5,17,41,45,51,56,60,69,84]],[1710094445,[1,6,21,45,50,55,59,64,73,82]],[1710094446,[2,6,22,48,52,56,62,68,77,93]],[1710094447,[2,6,23,46,52,58,62,69,74,81]],[1710094448,[1,5,18,44,50,54,58,67,76,84]],[1710094449,[2,5,17,42,46,50,56,61,67,73]],[1710094450,[1,4,16,40,46,51,56,61,67,74]],[1710094451,[1,5,17,44,49,53,59,64,71,83]],[1710094452,[1,5,19,43,47,53,57,62,72,78]],[1710094453,[1,4,15,41,46,50,55,61,70,75]],[1710094454,[1,7,22,49,52,58,62,67,75,82]],[1710094455,[1,6,23,46,51,57,62,70,76,82]],[1710094456,[1,6,23,46,51,57,62,67,77,84]],[1710094457,[1,6,20,46,50,56,60,64,74,86]],[1710094458,[1,6,19,44,48,54,59,64,72,76]],[1710094459,[1,5,17,44,48,51,57,61,69,73]],[1710094460,[1,5,18,43,48,52,57,60,66,77]],[1710094461,[1,5,17,42,48,53,57,61,75,85]],[1710094462,[1,5,19,45,51,56,59,67,76,90]],[1710094463,[1,5,21,47,52,56,62,66,73,77]],[1710094464,[1,5,16,42,44,49,56,61,71,72]],[1710094465,[1,5,18,42,47,51,58,62,75,90]],[1710094466,[1,6,21,46,53,57,62,68,74,84]],[1710094467,[1,8,24,49,53,58,65,69,77,87]],[1710094468,[2,12,31,55,61,65,70,74,83,90]],[1710094469,[1,7,23,49,54,59,61,67,77,84]],[1710094470,[2,7,20,44,48,55,59,65,74,84]],[1710094471,[1,6,21,46,52,57,60,66,80,88]],[1710094472,[2,8,22,48,51,57,63,71,77,87]],[1710094473,[1,6,21,44,49,54,58,65,79,84]],[1710094474,[1,7,20,44,49,52,58,65,81,148]],[1710094475,[1,5,18,45,49,53,58,64,72,76]],[1710094476,[2,7,22,48,53,58,61,68,73,77]],[1710094477,[1,6,21,47,51,55,59,67,75,81]],[1710094478,[3,9,23,47,52,57,63,67,74,80]],[1710094479,[1,6,23,46,50,57,61,68,74,81]],[1710094480,[2,8,22,47,52,57,62,68,76,84]],[1710094481,[1,6,20,45,50,53,59,64,77,91]],[1710094482,[2,9,23,49,53,57,62,71,79,90]],[1710094483,[1,5,20,45,50,54,59,66,72,75]],[1710094484,[2,9,23,48,53,57,61,67,75,79]],[1710094485,[1,6,21,47,53,57,63,68,75,142]],[1710094486,[2,9,23,49,54,58,62,69,79,91]],[1710094487,[1,8,26,53,59,62,68,72,78,86]],[1710094488,[1,9,26,52,56,60,65,71,83,87]],[1710094489,[2,6,20,48,52,55,58,67,74,84]],[1710094490,[1,9,23,51,55,59,66,73,80,87]],[1710094491,[1,6,21,45,51,56,60,65,73,85]],[1710094492,[1,8,24,50,54,59,63,71,81,87]],[1710094493,[1,8,25,48,54,59,63,70,77,83]],[1710094494,[1,7,23,48,51,55,60,65,72,75]],[1710094495,[1,6,20,47,51,57,61,67,76,91]],[1710094496,[1,10,28,52,58,62,67,73,81,87]],[1710094497,[2,7,20,45,51,56,60,66,77,86]],[1710094498,[2,8,25,49,55,60,67,72,81,121]],[1710094499,[1,7,22,48,51,57,62,68,80,89]],[1710094500,[1,5,19,44,49,53,57,62,68,69]],[1710094501,[1,8,22,47,51,56,60,68,82,88]],[1710094502,[1,12,32,59,63,69,74,79,104,127]],[1710094503,[2,14,30,57,61,66,72,76,87,117]],[1710094504,[1,9,28,53,58,62,67,72,79,84]],[1710094505,[2,14,34,59,64,68,73,77,94,131]],[1710094506,[1,7,23,48,54,59,66,72,77,84]],[1710094507,[1,8,22,48,53,58,63,71,76,82]],[1710094508,[1,8,25,51,56,60,63,68,80,89]],[1710094509,[2,12,31,55,59,65,69,73,82,167]],[1710094510,[2,8,25,53,57,61,67,73,80,91]],[1710094511,[1,12,32,57,61,66,70,76,82,93]],[1710094512,[1,9,29,54,59,63,69,76,94,134]],[1710094513,[1,11,30,53,59,64,71,76,88,173]],[1710094514,[1,11,29,56,60,66,70,74,80,94]],[1710094515,[1,12,32,56,62,66,70,75,80,86]],[1710094516,[1,10,26,54,58,64,69,74,77,87]],[1710094517,[2,12,33,55,60,64,70,74,83,141]],[1710094518,[2,7,25,48,55,59,64,73,80,85]],[1710094519,[1,10,30,53,59,64,69,74,80,86]],[1710094520,[1,8,28,53,57,60,65,73,84,95]],[1710094521,[1,9,29,55,61,64,70,84,137,179]],[1710094522,[1,8,25,51,56,60,66,74,85,88]],[1710094523,[1,13,30,57,63,68,72,78,107,133]],[1710094524,[1,10,31,55,60,63,69,74,80,86]],[1710094525,[2,14,33,58,65,69,73,79,93,155]],[1710094526,[1,9,27,53,56,61,66,72,80,86]],[1710094527,[1,10,27,55,60,63,67,70,79,84]],[1710094528,[1,11,31,55,60,64,69,74,78,156]],[1710094529,[1,10,27,53,58,63,67,73,84,89]],[1710094530,[1,11,30,54,59,63,70,73,83,104]],[1710094531,[2,18,39,66,70,73,78,85,103,182]],[1710094532,[1,15,34,58,64,69,74,80,130,161]]]);
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([[1710094288,[25,25,0]],[1710094289,[1,1,0]],[1710094290,[25,25,0]],[1710094291,[1,1,0]],[1710094292,[71,71,0]],[1710094293,[3,3,0]],[1710094294,[6,6,0]],[1710094295,[9,9,0]],[1710094296,[11,11,0]],[1710094297,[13,13,0]],[1710094298,[18,18,0]],[1710094299,[19,19,0]],[1710094300,[24,24,0]],[1710094301,[26,26,0]],[1710094302,[27,27,0]],[1710094303,[32,32,0]],[1710094304,[34,34,0]],[1710094305,[37,37,0]],[1710094306,[39,39,0]],[1710094307,[43,43,0]],[1710094308,[45,45,0]],[1710094309,[48,48,0]],[1710094310,[50,50,0]],[1710094311,[54,54,0]],[1710094312,[56,56,0]],[1710094313,[60,60,0]],[1710094314,[61,61,0]],[1710094315,[65,65,0]],[1710094316,[67,67,0]],[1710094317,[70,70,0]],[1710094318,[75,75,0]],[1710094319,[77,77,0]],[1710094320,[78,78,0]],[1710094321,[81,81,0]],[1710094322,[84,84,0]],[1710094323,[89,89,0]],[1710094324,[89,89,0]],[1710094325,[93,93,0]],[1710094326,[96,96,0]],[1710094327,[98,98,0]],[1710094328,[102,102,0]],[1710094329,[104,104,0]],[1710094330,[107,107,0]],[1710094331,[109,109,0]],[1710094332,[114,114,0]],[1710094333,[115,115,0]],[1710094334,[119,119,0]],[1710094335,[121,121,0]],[1710094336,[123,123,0]],[1710094337,[126,126,0]],[1710094338,[129,129,0]],[1710094339,[133,133,0]],[1710094340,[134,134,0]],[1710094341,[139,139,0]],[1710094342,[140,140,0]],[1710094343,[144,144,0]],[1710094344,[147,147,0]],[1710094345,[149,149,0]],[1710094346,[152,152,0]],[1710094347,[154,154,0]],[1710094348,[158,158,0]],[1710094349,[160,160,0]],[1710094350,[163,163,0]],[1710094351,[166,166,0]],[1710094352,[170,170,0]],[1710094353,[170,170,0]],[1710094354,[174,174,0]],[1710094355,[177,177,0]],[1710094356,[180,180,0]],[1710094357,[183,183,0]],[1710094358,[186,186,0]],[1710094359,[189,189,0]],[1710094360,[191,191,0]],[1710094361,[194,194,0]],[1710094362,[197,197,0]],[1710094363,[199,199,0]],[1710094364,[203,203,0]],[1710094365,[205,205,0]],[1710094366,[208,208,0]],[1710094367,[211,211,0]],[1710094368,[213,213,0]],[1710094369,[217,217,0]],[1710094370,[219,219,0]],[1710094371,[223,223,0]],[1710094372,[225,225,0]],[1710094373,[227,227,0]],[1710094374,[231,231,0]],[1710094375,[233,233,0]],[1710094376,[236,236,0]],[1710094377,[238,238,0]],[1710094378,[243,243,0]],[1710094379,[244,244,0]],[1710094380,[248,248,0]],[1710094381,[251,251,0]],[1710094382,[251,251,0]],[1710094383,[257,257,0]],[1710094384,[259,259,0]],[1710094385,[262,262,0]],[1710094386,[264,264,0]],[1710094387,[266,266,0]],[1710094388,[270,270,0]],[1710094389,[273,273,0]],[1710094390,[275,275,0]],[1710094391,[279,279,0]],[1710094392,[281,281,0]],[1710094393,[283,283,0]],[1710094394,[286,286,0]],[1710094395,[290,290,0]],[1710094396,[292,292,0]],[1710094397,[297,297,0]],[1710094398,[297,297,0]],[1710094399,[301,301,0]],[1710094400,[303,303,0]],[1710094401,[306,306,0]],[1710094402,[309,309,0]],[1710094403,[313,313,0]],[1710094404,[314,314,0]],[1710094405,[318,318,0]],[1710094406,[321,321,0]],[1710094407,[322,322,0]],[1710094408,[327,327,0]],[1710094409,[329,329,0]],[1710094410,[332,332,0]],[1710094411,[334,334,0]],[1710094412,[338,338,0]],[1710094413,[340,340,0]],[1710094414,[340,340,0]],[1710094415,[340,340,0]],[1710094416,[340,340,0]],[1710094417,[340,340,0]],[1710094418,[340,340,0]],[1710094419,[340,340,0]],[1710094420,[340,340,0]],[1710094421,[340,340,0]],[1710094422,[340,340,0]],[1710094423,[340,340,0]],[1710094424,[340,340,0]],[1710094425,[340,340,0]],[1710094426,[340,340,0]],[1710094427,[340,340,0]],[1710094428,[340,340,0]],[1710094429,[340,340,0]],[1710094430,[340,340,0]],[1710094431,[340,340,0]],[1710094432,[340,340,0]],[1710094433,[340,340,0]],[1710094434,[340,340,0]],[1710094435,[340,340,0]],[1710094436,[340,340,0]],[1710094437,[340,340,0]],[1710094438,[340,340,0]],[1710094439,[340,340,0]],[1710094440,[340,340,0]],[1710094441,[340,340,0]],[1710094442,[340,340,0]],[1710094443,[340,340,0]],[1710094444,[340,340,0]],[1710094445,[340,340,0]],[1710094446,[340,340,0]],[1710094447,[340,340,0]],[1710094448,[340,340,0]],[1710094449,[340,340,0]],[1710094450,[340,340,0]],[1710094451,[340,340,0]],[1710094452,[340,340,0]],[1710094453,[340,340,0]],[1710094454,[340,340,0]],[1710094455,[340,340,0]],[1710094456,[340,340,0]],[1710094457,[340,340,0]],[1710094458,[340,340,0]],[1710094459,[340,340,0]],[1710094460,[340,340,0]],[1710094461,[340,340,0]],[1710094462,[340,340,0]],[1710094463,[340,340,0]],[1710094464,[340,340,0]],[1710094465,[340,340,0]],[1710094466,[340,340,0]],[1710094467,[340,340,0]],[1710094468,[340,340,0]],[1710094469,[340,340,0]],[1710094470,[340,340,0]],[1710094471,[340,340,0]],[1710094472,[340,340,0]],[1710094473,[340,340,0]],[1710094474,[340,340,0]],[1710094475,[340,340,0]],[1710094476,[340,340,0]],[1710094477,[340,340,0]],[1710094478,[340,340,0]],[1710094479,[340,340,0]],[1710094480,[340,340,0]],[1710094481,[340,340,0]],[1710094482,[340,340,0]],[1710094483,[340,340,0]],[1710094484,[340,340,0]],[1710094485,[340,340,0]],[1710094486,[340,340,0]],[1710094487,[340,340,0]],[1710094488,[340,340,0]],[1710094489,[340,340,0]],[1710094490,[340,340,0]],[1710094491,[340,340,0]],[1710094492,[340,340,0]],[1710094493,[340,340,0]],[1710094494,[340,340,0]],[1710094495,[340,340,0]],[1710094496,[340,340,0]],[1710094497,[340,340,0]],[1710094498,[340,340,0]],[1710094499,[340,340,0]],[1710094500,[340,340,0]],[1710094501,[340,340,0]],[1710094502,[340,340,0]],[1710094503,[340,340,0]],[1710094504,[340,340,0]],[1710094505,[340,340,0]],[1710094506,[340,340,0]],[1710094507,[340,340,0]],[1710094508,[340,340,0]],[1710094509,[340,340,0]],[1710094510,[340,340,0]],[1710094511,[340,340,0]],[1710094512,[340,340,0]],[1710094513,[340,340,0]],[1710094514,[340,340,0]],[1710094515,[340,340,0]],[1710094516,[340,340,0]],[1710094517,[340,340,0]],[1710094518,[340,340,0]],[1710094519,[340,340,0]],[1710094520,[340,340,0]],[1710094521,[340,340,0]],[1710094522,[340,340,0]],[1710094523,[340,340,0]],[1710094524,[340,340,0]],[1710094525,[340,340,0]],[1710094526,[340,340,0]],[1710094527,[340,340,0]],[1710094528,[340,340,0]],[1710094529,[340,340,0]],[1710094530,[340,340,0]],[1710094531,[340,340,0]],[1710094532,[501,501,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:[