-
Notifications
You must be signed in to change notification settings - Fork 923
/
Copy pathindex.html
1173 lines (1104 loc) · 93.3 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="shortcut icon" type="image/x-icon" href="style/favicon.ico"/>
<link href="style/style.css" rel="stylesheet" type="text/css" />
<link href="style/bootstrap.min.css" rel="stylesheet" type="text/css" />
<script src="js/jquery-3.5.1.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/gatling.js"></script>
<script src="js/menu.js"></script>
<script src="js/ellipsis.js"></script>
<script src="js/all_sessions.js"></script>
<script src="js/stats.js"></script>
<script src="js/highstock.js"></script>
<script src="js/highcharts-more.js"></script>
<script src="js/theme.js"></script>
<script src="js/unpack.js"></script>
<title>Gatling Stats - Global Information</title>
</head>
<body>
<script>
const storedTheme = localStorage.getItem('theme') || (window.matchMedia("(prefers-color-scheme: dark)").matches ? "dark" : "light");
if (storedTheme) document.documentElement.setAttribute('data-theme', storedTheme)
function toggleTheme() {
const currentTheme = document.documentElement.getAttribute("data-theme");
const targetTheme = currentTheme === "light" ? "dark" : "light";
document.documentElement.setAttribute('data-theme', targetTheme)
localStorage.setItem('theme', targetTheme);
};
</script>
<div class="app-container">
<div class="frise"></div>
<div class="head">
<div class="gatling-open-source">
<a class="gatling-logo gatling-logo-light" href="https://gatling.io" target="blank_" title="Gatling Home Page"><img alt="Gatling" src="style/logo-light.svg"/></a>
<a class="gatling-logo gatling-logo-dark" href="https://gatling.io" target="blank_" title="Gatling Home Page"><img alt="Gatling" src="style/logo-dark.svg"/></a>
<a class="gatling-documentation" href="https://gatling.io/docs/" target="_blank">Documentation</a>
</div>
<div class="nav spacer"></div>
<a class="enterprise" href="https://gatling.io/enterprise/next-step/" target="_blank"><strong>Try</strong>
<img class="logo-enterprise-light" alt="Gatling Enterprise" src="style/logo-enterprise-light.svg"/>
<img class="logo-enterprise-dark" alt="Gatling Enterprise" src="style/logo-enterprise-dark.svg"/>
</a>
<button id="theme-toggle" class="theme-toggle" type="button" onclick="toggleTheme()" aria-label="Toggle user interface mode">
<span class="toggle-dark"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-moon"><path d="M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z"></path></svg></span>
<span class="toggle-light"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-sun"><circle cx="12" cy="12" r="5"></circle><line x1="12" y1="1" x2="12" y2="3"></line><line x1="12" y1="21" x2="12" y2="23"></line><line x1="4.22" y1="4.22" x2="5.64" y2="5.64"></line><line x1="18.36" y1="18.36" x2="19.78" y2="19.78"></line><line x1="1" y1="12" x2="3" y2="12"></line><line x1="21" y1="12" x2="23" y2="12"></line><line x1="4.22" y1="19.78" x2="5.64" y2="18.36"></line><line x1="18.36" y1="5.64" x2="19.78" y2="4.22"></line></svg></span>
</button>
</div>
<div class="container details">
<div class="nav">
<ul></ul>
</div>
<div class="cadre">
<div class="content">
<div class="content-header">
<div class="onglet">
RinhaBackendCrebitosSimulation
</div>
<div class="sous-menu" id="sousMenu">
<div class="sous-menu-spacer">
<div class="item ouvert"><a href="index.html">Global</a></div>
<div class="item "><a id="details_link" href="#">Details</a></div>
</div>
</div>
</div>
<div class="content-in">
<div class="container-article">
<div class="article">
<div class="schema-container">
<div id="ranges" class="schema ranges">
</div>
<div class="schema polar">
<div id="container_number_of_requests"></div>
</div>
<div class="simulation-card">
<div class="simulation-version-information">
<span class="simulation-information-title">Gatling Version</span>
<span class="simulation-information-item">
<span class="simulation-information-label">Version: </span>
<span>3.10.3</span>
</span>
<span class="simulation-information-item">
<span class="simulation-information-label">Released: </span>
<span>2023-12-20</span>
</span>
</div>
<div id="simulation-information" class="simulation-version-information">
<span class="simulation-information-title">Run Information</span>
<div class="simulation-information-container">
<span class="simulation-information-item">
<span class="simulation-information-label">Date: </span>
<span>2024-03-10 03:55:15 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 - gcrispino-rust">
<span class="simulation-information-label">Description: </span>
<span>Rinha de Backend - 2024/Q1: Crébito - gcrispino-rust</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: [
[1710042916000,0],[1710042917000,0],[1710042918000,0],[1710042919000,0],[1710042920000,1],[1710042921000,2],[1710042922000,2],[1710042923000,4],[1710042924000,4],[1710042925000,5],[1710042926000,6],[1710042927000,7],[1710042928000,8],[1710042929000,8],[1710042930000,10],[1710042931000,10],[1710042932000,12],[1710042933000,12],[1710042934000,14],[1710042935000,14],[1710042936000,15],[1710042937000,16],[1710042938000,17],[1710042939000,17],[1710042940000,19],[1710042941000,20],[1710042942000,20],[1710042943000,22],[1710042944000,22],[1710042945000,23],[1710042946000,25],[1710042947000,25],[1710042948000,26],[1710042949000,26],[1710042950000,28],[1710042951000,29],[1710042952000,30],[1710042953000,30],[1710042954000,32],[1710042955000,32],[1710042956000,33],[1710042957000,34],[1710042958000,35],[1710042959000,36],[1710042960000,37],[1710042961000,38],[1710042962000,39],[1710042963000,39],[1710042964000,41],[1710042965000,41],[1710042966000,43],[1710042967000,43],[1710042968000,44],[1710042969000,46],[1710042970000,46],[1710042971000,47],[1710042972000,48],[1710042973000,48],[1710042974000,50],[1710042975000,50],[1710042976000,52],[1710042977000,52],[1710042978000,53],[1710042979000,54],[1710042980000,57],[1710042981000,55],[1710042982000,57],[1710042983000,58],[1710042984000,59],[1710042985000,59],[1710042986000,61],[1710042987000,61],[1710042988000,63],[1710042989000,63],[1710042990000,64],[1710042991000,65],[1710042992000,67],[1710042993000,68],[1710042994000,69],[1710042995000,69],[1710042996000,71],[1710042997000,71],[1710042998000,73],[1710042999000,73],[1710043000000,74],[1710043001000,75],[1710043002000,76],[1710043003000,77],[1710043004000,78],[1710043005000,79],[1710043006000,80],[1710043007000,80],[1710043008000,82],[1710043009000,82],[1710043010000,83],[1710043011000,84],[1710043012000,86],[1710043013000,86],[1710043014000,87],[1710043015000,87],[1710043016000,89],[1710043017000,90],[1710043018000,89],[1710043019000,91],[1710043020000,91],[1710043021000,93],[1710043022000,94],[1710043023000,94],[1710043024000,95],[1710043025000,96],[1710043026000,97],[1710043027000,97],[1710043028000,100],[1710043029000,99],[1710043030000,102],[1710043031000,101],[1710043032000,103],[1710043033000,104],[1710043034000,104],[1710043035000,105],[1710043036000,106],[1710043037000,107],[1710043038000,107],[1710043039000,109],[1710043040000,110],[1710043041000,110],[1710043042000,110],[1710043043000,110],[1710043044000,110],[1710043045000,111],[1710043046000,111],[1710043047000,110],[1710043048000,110],[1710043049000,111],[1710043050000,110],[1710043051000,111],[1710043052000,110],[1710043053000,111],[1710043054000,114],[1710043055000,111],[1710043056000,110],[1710043057000,110],[1710043058000,111],[1710043059000,111],[1710043060000,110],[1710043061000,110],[1710043062000,110],[1710043063000,111],[1710043064000,110],[1710043065000,111],[1710043066000,110],[1710043067000,110],[1710043068000,110],[1710043069000,111],[1710043070000,110],[1710043071000,110],[1710043072000,110],[1710043073000,111],[1710043074000,110],[1710043075000,110],[1710043076000,110],[1710043077000,110],[1710043078000,110],[1710043079000,110],[1710043080000,110],[1710043081000,110],[1710043082000,110],[1710043083000,110],[1710043084000,110],[1710043085000,111],[1710043086000,110],[1710043087000,110],[1710043088000,111],[1710043089000,110],[1710043090000,110],[1710043091000,110],[1710043092000,112],[1710043093000,110],[1710043094000,111],[1710043095000,111],[1710043096000,110],[1710043097000,111],[1710043098000,111],[1710043099000,110],[1710043100000,110],[1710043101000,110],[1710043102000,110],[1710043103000,110],[1710043104000,110],[1710043105000,110],[1710043106000,118],[1710043107000,110],[1710043108000,112],[1710043109000,110],[1710043110000,110],[1710043111000,110],[1710043112000,110],[1710043113000,110],[1710043114000,110],[1710043115000,110],[1710043116000,110],[1710043117000,110],[1710043118000,111],[1710043119000,111],[1710043120000,110],[1710043121000,110],[1710043122000,110],[1710043123000,110],[1710043124000,110],[1710043125000,110],[1710043126000,110],[1710043127000,110],[1710043128000,110],[1710043129000,111],[1710043130000,110],[1710043131000,111],[1710043132000,110],[1710043133000,110],[1710043134000,111],[1710043135000,110],[1710043136000,110],[1710043137000,110],[1710043138000,110],[1710043139000,111],[1710043140000,110],[1710043141000,110],[1710043142000,110],[1710043143000,111],[1710043144000,110],[1710043145000,110],[1710043146000,110],[1710043147000,110],[1710043148000,110],[1710043149000,110],[1710043150000,110],[1710043151000,110],[1710043152000,110],[1710043153000,111],[1710043154000,110],[1710043155000,110],[1710043156000,111],[1710043157000,110],[1710043158000,110],[1710043159000,110],[1710043160000,108]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#68b65c',
name: 'débitos',
data: [
[1710042916000,0],[1710042917000,0],[1710042918000,0],[1710042919000,0],[1710042920000,1],[1710042921000,2],[1710042922000,4],[1710042923000,6],[1710042924000,7],[1710042925000,9],[1710042926000,11],[1710042927000,13],[1710042928000,15],[1710042929000,16],[1710042930000,19],[1710042931000,20],[1710042932000,22],[1710042933000,24],[1710042934000,25],[1710042935000,28],[1710042936000,29],[1710042937000,31],[1710042938000,33],[1710042939000,35],[1710042940000,37],[1710042941000,38],[1710042942000,40],[1710042943000,42],[1710042944000,44],[1710042945000,46],[1710042946000,47],[1710042947000,50],[1710042948000,51],[1710042949000,53],[1710042950000,55],[1710042951000,56],[1710042952000,59],[1710042953000,60],[1710042954000,62],[1710042955000,64],[1710042956000,66],[1710042957000,69],[1710042958000,69],[1710042959000,72],[1710042960000,74],[1710042961000,75],[1710042962000,78],[1710042963000,80],[1710042964000,81],[1710042965000,83],[1710042966000,84],[1710042967000,86],[1710042968000,88],[1710042969000,91],[1710042970000,92],[1710042971000,94],[1710042972000,95],[1710042973000,97],[1710042974000,98],[1710042975000,101],[1710042976000,102],[1710042977000,104],[1710042978000,106],[1710042979000,108],[1710042980000,112],[1710042981000,111],[1710042982000,113],[1710042983000,115],[1710042984000,117],[1710042985000,119],[1710042986000,120],[1710042987000,123],[1710042988000,124],[1710042989000,126],[1710042990000,128],[1710042991000,129],[1710042992000,132],[1710042993000,134],[1710042994000,136],[1710042995000,138],[1710042996000,140],[1710042997000,142],[1710042998000,143],[1710042999000,145],[1710043000000,148],[1710043001000,148],[1710043002000,151],[1710043003000,153],[1710043004000,154],[1710043005000,157],[1710043006000,157],[1710043007000,160],[1710043008000,162],[1710043009000,163],[1710043010000,165],[1710043011000,167],[1710043012000,168],[1710043013000,170],[1710043014000,171],[1710043015000,175],[1710043016000,176],[1710043017000,178],[1710043018000,180],[1710043019000,181],[1710043020000,183],[1710043021000,184],[1710043022000,186],[1710043023000,188],[1710043024000,190],[1710043025000,192],[1710043026000,193],[1710043027000,196],[1710043028000,198],[1710043029000,200],[1710043030000,203],[1710043031000,202],[1710043032000,206],[1710043033000,206],[1710043034000,210],[1710043035000,211],[1710043036000,212],[1710043037000,215],[1710043038000,216],[1710043039000,218],[1710043040000,222],[1710043041000,222],[1710043042000,222],[1710043043000,221],[1710043044000,221],[1710043045000,221],[1710043046000,221],[1710043047000,221],[1710043048000,220],[1710043049000,221],[1710043050000,220],[1710043051000,222],[1710043052000,221],[1710043053000,221],[1710043054000,226],[1710043055000,221],[1710043056000,221],[1710043057000,222],[1710043058000,220],[1710043059000,221],[1710043060000,221],[1710043061000,221],[1710043062000,222],[1710043063000,221],[1710043064000,221],[1710043065000,222],[1710043066000,220],[1710043067000,222],[1710043068000,221],[1710043069000,221],[1710043070000,221],[1710043071000,221],[1710043072000,221],[1710043073000,221],[1710043074000,220],[1710043075000,221],[1710043076000,221],[1710043077000,220],[1710043078000,220],[1710043079000,220],[1710043080000,221],[1710043081000,221],[1710043082000,221],[1710043083000,220],[1710043084000,221],[1710043085000,220],[1710043086000,221],[1710043087000,220],[1710043088000,221],[1710043089000,220],[1710043090000,221],[1710043091000,221],[1710043092000,222],[1710043093000,221],[1710043094000,221],[1710043095000,220],[1710043096000,221],[1710043097000,222],[1710043098000,222],[1710043099000,220],[1710043100000,221],[1710043101000,221],[1710043102000,222],[1710043103000,220],[1710043104000,222],[1710043105000,221],[1710043106000,234],[1710043107000,221],[1710043108000,223],[1710043109000,220],[1710043110000,221],[1710043111000,221],[1710043112000,221],[1710043113000,221],[1710043114000,221],[1710043115000,221],[1710043116000,221],[1710043117000,220],[1710043118000,221],[1710043119000,221],[1710043120000,221],[1710043121000,221],[1710043122000,221],[1710043123000,221],[1710043124000,221],[1710043125000,221],[1710043126000,222],[1710043127000,222],[1710043128000,220],[1710043129000,221],[1710043130000,220],[1710043131000,221],[1710043132000,220],[1710043133000,221],[1710043134000,220],[1710043135000,221],[1710043136000,220],[1710043137000,221],[1710043138000,221],[1710043139000,221],[1710043140000,220],[1710043141000,221],[1710043142000,221],[1710043143000,221],[1710043144000,220],[1710043145000,221],[1710043146000,221],[1710043147000,221],[1710043148000,221],[1710043149000,220],[1710043150000,220],[1710043151000,221],[1710043152000,221],[1710043153000,221],[1710043154000,221],[1710043155000,221],[1710043156000,220],[1710043157000,221],[1710043158000,221],[1710043159000,221],[1710043160000,216]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#f15b4f',
name: 'extratos',
data: [
[1710042916000,0],[1710042917000,0],[1710042918000,0],[1710042919000,0],[1710042920000,1],[1710042921000,2],[1710042922000,1],[1710042923000,1],[1710042924000,1],[1710042925000,1],[1710042926000,2],[1710042927000,1],[1710042928000,2],[1710042929000,2],[1710042930000,1],[1710042931000,2],[1710042932000,2],[1710042933000,2],[1710042934000,2],[1710042935000,2],[1710042936000,2],[1710042937000,2],[1710042938000,3],[1710042939000,2],[1710042940000,3],[1710042941000,2],[1710042942000,3],[1710042943000,2],[1710042944000,3],[1710042945000,3],[1710042946000,3],[1710042947000,3],[1710042948000,3],[1710042949000,3],[1710042950000,3],[1710042951000,4],[1710042952000,3],[1710042953000,3],[1710042954000,4],[1710042955000,3],[1710042956000,4],[1710042957000,4],[1710042958000,4],[1710042959000,4],[1710042960000,4],[1710042961000,4],[1710042962000,4],[1710042963000,4],[1710042964000,4],[1710042965000,4],[1710042966000,5],[1710042967000,4],[1710042968000,5],[1710042969000,5],[1710042970000,4],[1710042971000,5],[1710042972000,5],[1710042973000,5],[1710042974000,5],[1710042975000,5],[1710042976000,5],[1710042977000,5],[1710042978000,6],[1710042979000,5],[1710042980000,6],[1710042981000,5],[1710042982000,6],[1710042983000,5],[1710042984000,6],[1710042985000,6],[1710042986000,6],[1710042987000,6],[1710042988000,6],[1710042989000,6],[1710042990000,6],[1710042991000,7],[1710042992000,6],[1710042993000,6],[1710042994000,7],[1710042995000,6],[1710042996000,7],[1710042997000,7],[1710042998000,7],[1710042999000,7],[1710043000000,7],[1710043001000,7],[1710043002000,7],[1710043003000,7],[1710043004000,7],[1710043005000,7],[1710043006000,8],[1710043007000,7],[1710043008000,8],[1710043009000,8],[1710043010000,7],[1710043011000,8],[1710043012000,8],[1710043013000,8],[1710043014000,8],[1710043015000,8],[1710043016000,8],[1710043017000,8],[1710043018000,9],[1710043019000,8],[1710043020000,9],[1710043021000,8],[1710043022000,9],[1710043023000,8],[1710043024000,9],[1710043025000,9],[1710043026000,9],[1710043027000,9],[1710043028000,9],[1710043029000,9],[1710043030000,9],[1710043031000,10],[1710043032000,9],[1710043033000,9],[1710043034000,10],[1710043035000,9],[1710043036000,10],[1710043037000,10],[1710043038000,10],[1710043039000,10],[1710043040000,10],[1710043041000,10],[1710043042000,10],[1710043043000,10],[1710043044000,10],[1710043045000,10],[1710043046000,10],[1710043047000,10],[1710043048000,10],[1710043049000,10],[1710043050000,10],[1710043051000,10],[1710043052000,10],[1710043053000,10],[1710043054000,10],[1710043055000,10],[1710043056000,10],[1710043057000,10],[1710043058000,10],[1710043059000,10],[1710043060000,10],[1710043061000,10],[1710043062000,10],[1710043063000,10],[1710043064000,10],[1710043065000,10],[1710043066000,10],[1710043067000,10],[1710043068000,10],[1710043069000,10],[1710043070000,10],[1710043071000,10],[1710043072000,10],[1710043073000,10],[1710043074000,10],[1710043075000,10],[1710043076000,10],[1710043077000,10],[1710043078000,10],[1710043079000,10],[1710043080000,10],[1710043081000,10],[1710043082000,10],[1710043083000,10],[1710043084000,10],[1710043085000,10],[1710043086000,10],[1710043087000,10],[1710043088000,10],[1710043089000,10],[1710043090000,10],[1710043091000,10],[1710043092000,10],[1710043093000,10],[1710043094000,10],[1710043095000,10],[1710043096000,10],[1710043097000,10],[1710043098000,10],[1710043099000,10],[1710043100000,10],[1710043101000,10],[1710043102000,10],[1710043103000,10],[1710043104000,10],[1710043105000,10],[1710043106000,11],[1710043107000,10],[1710043108000,10],[1710043109000,10],[1710043110000,10],[1710043111000,10],[1710043112000,10],[1710043113000,10],[1710043114000,10],[1710043115000,10],[1710043116000,10],[1710043117000,10],[1710043118000,10],[1710043119000,10],[1710043120000,10],[1710043121000,10],[1710043122000,10],[1710043123000,10],[1710043124000,10],[1710043125000,10],[1710043126000,10],[1710043127000,10],[1710043128000,10],[1710043129000,10],[1710043130000,10],[1710043131000,10],[1710043132000,10],[1710043133000,10],[1710043134000,10],[1710043135000,10],[1710043136000,10],[1710043137000,10],[1710043138000,10],[1710043139000,10],[1710043140000,10],[1710043141000,10],[1710043142000,10],[1710043143000,10],[1710043144000,10],[1710043145000,10],[1710043146000,10],[1710043147000,10],[1710043148000,10],[1710043149000,10],[1710043150000,10],[1710043151000,10],[1710043152000,10],[1710043153000,10],[1710043154000,10],[1710043155000,10],[1710043156000,10],[1710043157000,10],[1710043158000,10],[1710043159000,10],[1710043160000,9]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FFDD00',
name: 'validações',
data: [
[1710042916000,0],[1710042917000,0],[1710042918000,0],[1710042919000,5],[1710042920000,5],[1710042921000,0],[1710042922000,0],[1710042923000,0],[1710042924000,0],[1710042925000,0],[1710042926000,0],[1710042927000,0],[1710042928000,0],[1710042929000,0],[1710042930000,0],[1710042931000,0],[1710042932000,0],[1710042933000,0],[1710042934000,0],[1710042935000,0],[1710042936000,0],[1710042937000,0],[1710042938000,0],[1710042939000,0],[1710042940000,0],[1710042941000,0],[1710042942000,0],[1710042943000,0],[1710042944000,0],[1710042945000,0],[1710042946000,0],[1710042947000,0],[1710042948000,0],[1710042949000,0],[1710042950000,0],[1710042951000,0],[1710042952000,0],[1710042953000,0],[1710042954000,0],[1710042955000,0],[1710042956000,0],[1710042957000,0],[1710042958000,0],[1710042959000,0],[1710042960000,0],[1710042961000,0],[1710042962000,0],[1710042963000,0],[1710042964000,0],[1710042965000,0],[1710042966000,0],[1710042967000,0],[1710042968000,0],[1710042969000,0],[1710042970000,0],[1710042971000,0],[1710042972000,0],[1710042973000,0],[1710042974000,0],[1710042975000,0],[1710042976000,0],[1710042977000,0],[1710042978000,0],[1710042979000,0],[1710042980000,0],[1710042981000,0],[1710042982000,0],[1710042983000,0],[1710042984000,0],[1710042985000,0],[1710042986000,0],[1710042987000,0],[1710042988000,0],[1710042989000,0],[1710042990000,0],[1710042991000,0],[1710042992000,0],[1710042993000,0],[1710042994000,0],[1710042995000,0],[1710042996000,0],[1710042997000,0],[1710042998000,0],[1710042999000,0],[1710043000000,0],[1710043001000,0],[1710043002000,0],[1710043003000,0],[1710043004000,0],[1710043005000,0],[1710043006000,0],[1710043007000,0],[1710043008000,0],[1710043009000,0],[1710043010000,0],[1710043011000,0],[1710043012000,0],[1710043013000,0],[1710043014000,0],[1710043015000,0],[1710043016000,0],[1710043017000,0],[1710043018000,0],[1710043019000,0],[1710043020000,0],[1710043021000,0],[1710043022000,0],[1710043023000,0],[1710043024000,0],[1710043025000,0],[1710043026000,0],[1710043027000,0],[1710043028000,0],[1710043029000,0],[1710043030000,0],[1710043031000,0],[1710043032000,0],[1710043033000,0],[1710043034000,0],[1710043035000,0],[1710043036000,0],[1710043037000,0],[1710043038000,0],[1710043039000,0],[1710043040000,0],[1710043041000,0],[1710043042000,0],[1710043043000,0],[1710043044000,0],[1710043045000,0],[1710043046000,0],[1710043047000,0],[1710043048000,0],[1710043049000,0],[1710043050000,0],[1710043051000,0],[1710043052000,0],[1710043053000,0],[1710043054000,0],[1710043055000,0],[1710043056000,0],[1710043057000,0],[1710043058000,0],[1710043059000,0],[1710043060000,0],[1710043061000,0],[1710043062000,0],[1710043063000,0],[1710043064000,0],[1710043065000,0],[1710043066000,0],[1710043067000,0],[1710043068000,0],[1710043069000,0],[1710043070000,0],[1710043071000,0],[1710043072000,0],[1710043073000,0],[1710043074000,0],[1710043075000,0],[1710043076000,0],[1710043077000,0],[1710043078000,0],[1710043079000,0],[1710043080000,0],[1710043081000,0],[1710043082000,0],[1710043083000,0],[1710043084000,0],[1710043085000,0],[1710043086000,0],[1710043087000,0],[1710043088000,0],[1710043089000,0],[1710043090000,0],[1710043091000,0],[1710043092000,0],[1710043093000,0],[1710043094000,0],[1710043095000,0],[1710043096000,0],[1710043097000,0],[1710043098000,0],[1710043099000,0],[1710043100000,0],[1710043101000,0],[1710043102000,0],[1710043103000,0],[1710043104000,0],[1710043105000,0],[1710043106000,0],[1710043107000,0],[1710043108000,0],[1710043109000,0],[1710043110000,0],[1710043111000,0],[1710043112000,0],[1710043113000,0],[1710043114000,0],[1710043115000,0],[1710043116000,0],[1710043117000,0],[1710043118000,0],[1710043119000,0],[1710043120000,0],[1710043121000,0],[1710043122000,0],[1710043123000,0],[1710043124000,0],[1710043125000,0],[1710043126000,0],[1710043127000,0],[1710043128000,0],[1710043129000,0],[1710043130000,0],[1710043131000,0],[1710043132000,0],[1710043133000,0],[1710043134000,0],[1710043135000,0],[1710043136000,0],[1710043137000,0],[1710043138000,0],[1710043139000,0],[1710043140000,0],[1710043141000,0],[1710043142000,0],[1710043143000,0],[1710043144000,0],[1710043145000,0],[1710043146000,0],[1710043147000,0],[1710043148000,0],[1710043149000,0],[1710043150000,0],[1710043151000,0],[1710043152000,0],[1710043153000,0],[1710043154000,0],[1710043155000,0],[1710043156000,0],[1710043157000,0],[1710043158000,0],[1710043159000,0],[1710043160000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00D5FF',
name: 'validação HTTP 404',
data: [
[1710042916000,0],[1710042917000,0],[1710042918000,0],[1710042919000,1],[1710042920000,0],[1710042921000,0],[1710042922000,0],[1710042923000,0],[1710042924000,0],[1710042925000,0],[1710042926000,0],[1710042927000,0],[1710042928000,0],[1710042929000,0],[1710042930000,0],[1710042931000,0],[1710042932000,0],[1710042933000,0],[1710042934000,0],[1710042935000,0],[1710042936000,0],[1710042937000,0],[1710042938000,0],[1710042939000,0],[1710042940000,0],[1710042941000,0],[1710042942000,0],[1710042943000,0],[1710042944000,0],[1710042945000,0],[1710042946000,0],[1710042947000,0],[1710042948000,0],[1710042949000,0],[1710042950000,0],[1710042951000,0],[1710042952000,0],[1710042953000,0],[1710042954000,0],[1710042955000,0],[1710042956000,0],[1710042957000,0],[1710042958000,0],[1710042959000,0],[1710042960000,0],[1710042961000,0],[1710042962000,0],[1710042963000,0],[1710042964000,0],[1710042965000,0],[1710042966000,0],[1710042967000,0],[1710042968000,0],[1710042969000,0],[1710042970000,0],[1710042971000,0],[1710042972000,0],[1710042973000,0],[1710042974000,0],[1710042975000,0],[1710042976000,0],[1710042977000,0],[1710042978000,0],[1710042979000,0],[1710042980000,0],[1710042981000,0],[1710042982000,0],[1710042983000,0],[1710042984000,0],[1710042985000,0],[1710042986000,0],[1710042987000,0],[1710042988000,0],[1710042989000,0],[1710042990000,0],[1710042991000,0],[1710042992000,0],[1710042993000,0],[1710042994000,0],[1710042995000,0],[1710042996000,0],[1710042997000,0],[1710042998000,0],[1710042999000,0],[1710043000000,0],[1710043001000,0],[1710043002000,0],[1710043003000,0],[1710043004000,0],[1710043005000,0],[1710043006000,0],[1710043007000,0],[1710043008000,0],[1710043009000,0],[1710043010000,0],[1710043011000,0],[1710043012000,0],[1710043013000,0],[1710043014000,0],[1710043015000,0],[1710043016000,0],[1710043017000,0],[1710043018000,0],[1710043019000,0],[1710043020000,0],[1710043021000,0],[1710043022000,0],[1710043023000,0],[1710043024000,0],[1710043025000,0],[1710043026000,0],[1710043027000,0],[1710043028000,0],[1710043029000,0],[1710043030000,0],[1710043031000,0],[1710043032000,0],[1710043033000,0],[1710043034000,0],[1710043035000,0],[1710043036000,0],[1710043037000,0],[1710043038000,0],[1710043039000,0],[1710043040000,0],[1710043041000,0],[1710043042000,0],[1710043043000,0],[1710043044000,0],[1710043045000,0],[1710043046000,0],[1710043047000,0],[1710043048000,0],[1710043049000,0],[1710043050000,0],[1710043051000,0],[1710043052000,0],[1710043053000,0],[1710043054000,0],[1710043055000,0],[1710043056000,0],[1710043057000,0],[1710043058000,0],[1710043059000,0],[1710043060000,0],[1710043061000,0],[1710043062000,0],[1710043063000,0],[1710043064000,0],[1710043065000,0],[1710043066000,0],[1710043067000,0],[1710043068000,0],[1710043069000,0],[1710043070000,0],[1710043071000,0],[1710043072000,0],[1710043073000,0],[1710043074000,0],[1710043075000,0],[1710043076000,0],[1710043077000,0],[1710043078000,0],[1710043079000,0],[1710043080000,0],[1710043081000,0],[1710043082000,0],[1710043083000,0],[1710043084000,0],[1710043085000,0],[1710043086000,0],[1710043087000,0],[1710043088000,0],[1710043089000,0],[1710043090000,0],[1710043091000,0],[1710043092000,0],[1710043093000,0],[1710043094000,0],[1710043095000,0],[1710043096000,0],[1710043097000,0],[1710043098000,0],[1710043099000,0],[1710043100000,0],[1710043101000,0],[1710043102000,0],[1710043103000,0],[1710043104000,0],[1710043105000,0],[1710043106000,0],[1710043107000,0],[1710043108000,0],[1710043109000,0],[1710043110000,0],[1710043111000,0],[1710043112000,0],[1710043113000,0],[1710043114000,0],[1710043115000,0],[1710043116000,0],[1710043117000,0],[1710043118000,0],[1710043119000,0],[1710043120000,0],[1710043121000,0],[1710043122000,0],[1710043123000,0],[1710043124000,0],[1710043125000,0],[1710043126000,0],[1710043127000,0],[1710043128000,0],[1710043129000,0],[1710043130000,0],[1710043131000,0],[1710043132000,0],[1710043133000,0],[1710043134000,0],[1710043135000,0],[1710043136000,0],[1710043137000,0],[1710043138000,0],[1710043139000,0],[1710043140000,0],[1710043141000,0],[1710043142000,0],[1710043143000,0],[1710043144000,0],[1710043145000,0],[1710043146000,0],[1710043147000,0],[1710043148000,0],[1710043149000,0],[1710043150000,0],[1710043151000,0],[1710043152000,0],[1710043153000,0],[1710043154000,0],[1710043155000,0],[1710043156000,0],[1710043157000,0],[1710043158000,0],[1710043159000,0],[1710043160000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00FF00',
name: 'validação concorrência saldo - 0',
data: [
[1710042916000,0],[1710042917000,0],[1710042918000,1],[1710042919000,0],[1710042920000,0],[1710042921000,0],[1710042922000,0],[1710042923000,0],[1710042924000,0],[1710042925000,0],[1710042926000,0],[1710042927000,0],[1710042928000,0],[1710042929000,0],[1710042930000,0],[1710042931000,0],[1710042932000,0],[1710042933000,0],[1710042934000,0],[1710042935000,0],[1710042936000,0],[1710042937000,0],[1710042938000,0],[1710042939000,0],[1710042940000,0],[1710042941000,0],[1710042942000,0],[1710042943000,0],[1710042944000,0],[1710042945000,0],[1710042946000,0],[1710042947000,0],[1710042948000,0],[1710042949000,0],[1710042950000,0],[1710042951000,0],[1710042952000,0],[1710042953000,0],[1710042954000,0],[1710042955000,0],[1710042956000,0],[1710042957000,0],[1710042958000,0],[1710042959000,0],[1710042960000,0],[1710042961000,0],[1710042962000,0],[1710042963000,0],[1710042964000,0],[1710042965000,0],[1710042966000,0],[1710042967000,0],[1710042968000,0],[1710042969000,0],[1710042970000,0],[1710042971000,0],[1710042972000,0],[1710042973000,0],[1710042974000,0],[1710042975000,0],[1710042976000,0],[1710042977000,0],[1710042978000,0],[1710042979000,0],[1710042980000,0],[1710042981000,0],[1710042982000,0],[1710042983000,0],[1710042984000,0],[1710042985000,0],[1710042986000,0],[1710042987000,0],[1710042988000,0],[1710042989000,0],[1710042990000,0],[1710042991000,0],[1710042992000,0],[1710042993000,0],[1710042994000,0],[1710042995000,0],[1710042996000,0],[1710042997000,0],[1710042998000,0],[1710042999000,0],[1710043000000,0],[1710043001000,0],[1710043002000,0],[1710043003000,0],[1710043004000,0],[1710043005000,0],[1710043006000,0],[1710043007000,0],[1710043008000,0],[1710043009000,0],[1710043010000,0],[1710043011000,0],[1710043012000,0],[1710043013000,0],[1710043014000,0],[1710043015000,0],[1710043016000,0],[1710043017000,0],[1710043018000,0],[1710043019000,0],[1710043020000,0],[1710043021000,0],[1710043022000,0],[1710043023000,0],[1710043024000,0],[1710043025000,0],[1710043026000,0],[1710043027000,0],[1710043028000,0],[1710043029000,0],[1710043030000,0],[1710043031000,0],[1710043032000,0],[1710043033000,0],[1710043034000,0],[1710043035000,0],[1710043036000,0],[1710043037000,0],[1710043038000,0],[1710043039000,0],[1710043040000,0],[1710043041000,0],[1710043042000,0],[1710043043000,0],[1710043044000,0],[1710043045000,0],[1710043046000,0],[1710043047000,0],[1710043048000,0],[1710043049000,0],[1710043050000,0],[1710043051000,0],[1710043052000,0],[1710043053000,0],[1710043054000,0],[1710043055000,0],[1710043056000,0],[1710043057000,0],[1710043058000,0],[1710043059000,0],[1710043060000,0],[1710043061000,0],[1710043062000,0],[1710043063000,0],[1710043064000,0],[1710043065000,0],[1710043066000,0],[1710043067000,0],[1710043068000,0],[1710043069000,0],[1710043070000,0],[1710043071000,0],[1710043072000,0],[1710043073000,0],[1710043074000,0],[1710043075000,0],[1710043076000,0],[1710043077000,0],[1710043078000,0],[1710043079000,0],[1710043080000,0],[1710043081000,0],[1710043082000,0],[1710043083000,0],[1710043084000,0],[1710043085000,0],[1710043086000,0],[1710043087000,0],[1710043088000,0],[1710043089000,0],[1710043090000,0],[1710043091000,0],[1710043092000,0],[1710043093000,0],[1710043094000,0],[1710043095000,0],[1710043096000,0],[1710043097000,0],[1710043098000,0],[1710043099000,0],[1710043100000,0],[1710043101000,0],[1710043102000,0],[1710043103000,0],[1710043104000,0],[1710043105000,0],[1710043106000,0],[1710043107000,0],[1710043108000,0],[1710043109000,0],[1710043110000,0],[1710043111000,0],[1710043112000,0],[1710043113000,0],[1710043114000,0],[1710043115000,0],[1710043116000,0],[1710043117000,0],[1710043118000,0],[1710043119000,0],[1710043120000,0],[1710043121000,0],[1710043122000,0],[1710043123000,0],[1710043124000,0],[1710043125000,0],[1710043126000,0],[1710043127000,0],[1710043128000,0],[1710043129000,0],[1710043130000,0],[1710043131000,0],[1710043132000,0],[1710043133000,0],[1710043134000,0],[1710043135000,0],[1710043136000,0],[1710043137000,0],[1710043138000,0],[1710043139000,0],[1710043140000,0],[1710043141000,0],[1710043142000,0],[1710043143000,0],[1710043144000,0],[1710043145000,0],[1710043146000,0],[1710043147000,0],[1710043148000,0],[1710043149000,0],[1710043150000,0],[1710043151000,0],[1710043152000,0],[1710043153000,0],[1710043154000,0],[1710043155000,0],[1710043156000,0],[1710043157000,0],[1710043158000,0],[1710043159000,0],[1710043160000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#9D00FF',
name: 'validação concorrência transações - c',
data: [
[1710042916000,0],[1710042917000,25],[1710042918000,22],[1710042919000,0],[1710042920000,0],[1710042921000,0],[1710042922000,0],[1710042923000,0],[1710042924000,0],[1710042925000,0],[1710042926000,0],[1710042927000,0],[1710042928000,0],[1710042929000,0],[1710042930000,0],[1710042931000,0],[1710042932000,0],[1710042933000,0],[1710042934000,0],[1710042935000,0],[1710042936000,0],[1710042937000,0],[1710042938000,0],[1710042939000,0],[1710042940000,0],[1710042941000,0],[1710042942000,0],[1710042943000,0],[1710042944000,0],[1710042945000,0],[1710042946000,0],[1710042947000,0],[1710042948000,0],[1710042949000,0],[1710042950000,0],[1710042951000,0],[1710042952000,0],[1710042953000,0],[1710042954000,0],[1710042955000,0],[1710042956000,0],[1710042957000,0],[1710042958000,0],[1710042959000,0],[1710042960000,0],[1710042961000,0],[1710042962000,0],[1710042963000,0],[1710042964000,0],[1710042965000,0],[1710042966000,0],[1710042967000,0],[1710042968000,0],[1710042969000,0],[1710042970000,0],[1710042971000,0],[1710042972000,0],[1710042973000,0],[1710042974000,0],[1710042975000,0],[1710042976000,0],[1710042977000,0],[1710042978000,0],[1710042979000,0],[1710042980000,0],[1710042981000,0],[1710042982000,0],[1710042983000,0],[1710042984000,0],[1710042985000,0],[1710042986000,0],[1710042987000,0],[1710042988000,0],[1710042989000,0],[1710042990000,0],[1710042991000,0],[1710042992000,0],[1710042993000,0],[1710042994000,0],[1710042995000,0],[1710042996000,0],[1710042997000,0],[1710042998000,0],[1710042999000,0],[1710043000000,0],[1710043001000,0],[1710043002000,0],[1710043003000,0],[1710043004000,0],[1710043005000,0],[1710043006000,0],[1710043007000,0],[1710043008000,0],[1710043009000,0],[1710043010000,0],[1710043011000,0],[1710043012000,0],[1710043013000,0],[1710043014000,0],[1710043015000,0],[1710043016000,0],[1710043017000,0],[1710043018000,0],[1710043019000,0],[1710043020000,0],[1710043021000,0],[1710043022000,0],[1710043023000,0],[1710043024000,0],[1710043025000,0],[1710043026000,0],[1710043027000,0],[1710043028000,0],[1710043029000,0],[1710043030000,0],[1710043031000,0],[1710043032000,0],[1710043033000,0],[1710043034000,0],[1710043035000,0],[1710043036000,0],[1710043037000,0],[1710043038000,0],[1710043039000,0],[1710043040000,0],[1710043041000,0],[1710043042000,0],[1710043043000,0],[1710043044000,0],[1710043045000,0],[1710043046000,0],[1710043047000,0],[1710043048000,0],[1710043049000,0],[1710043050000,0],[1710043051000,0],[1710043052000,0],[1710043053000,0],[1710043054000,0],[1710043055000,0],[1710043056000,0],[1710043057000,0],[1710043058000,0],[1710043059000,0],[1710043060000,0],[1710043061000,0],[1710043062000,0],[1710043063000,0],[1710043064000,0],[1710043065000,0],[1710043066000,0],[1710043067000,0],[1710043068000,0],[1710043069000,0],[1710043070000,0],[1710043071000,0],[1710043072000,0],[1710043073000,0],[1710043074000,0],[1710043075000,0],[1710043076000,0],[1710043077000,0],[1710043078000,0],[1710043079000,0],[1710043080000,0],[1710043081000,0],[1710043082000,0],[1710043083000,0],[1710043084000,0],[1710043085000,0],[1710043086000,0],[1710043087000,0],[1710043088000,0],[1710043089000,0],[1710043090000,0],[1710043091000,0],[1710043092000,0],[1710043093000,0],[1710043094000,0],[1710043095000,0],[1710043096000,0],[1710043097000,0],[1710043098000,0],[1710043099000,0],[1710043100000,0],[1710043101000,0],[1710043102000,0],[1710043103000,0],[1710043104000,0],[1710043105000,0],[1710043106000,0],[1710043107000,0],[1710043108000,0],[1710043109000,0],[1710043110000,0],[1710043111000,0],[1710043112000,0],[1710043113000,0],[1710043114000,0],[1710043115000,0],[1710043116000,0],[1710043117000,0],[1710043118000,0],[1710043119000,0],[1710043120000,0],[1710043121000,0],[1710043122000,0],[1710043123000,0],[1710043124000,0],[1710043125000,0],[1710043126000,0],[1710043127000,0],[1710043128000,0],[1710043129000,0],[1710043130000,0],[1710043131000,0],[1710043132000,0],[1710043133000,0],[1710043134000,0],[1710043135000,0],[1710043136000,0],[1710043137000,0],[1710043138000,0],[1710043139000,0],[1710043140000,0],[1710043141000,0],[1710043142000,0],[1710043143000,0],[1710043144000,0],[1710043145000,0],[1710043146000,0],[1710043147000,0],[1710043148000,0],[1710043149000,0],[1710043150000,0],[1710043151000,0],[1710043152000,0],[1710043153000,0],[1710043154000,0],[1710043155000,0],[1710043156000,0],[1710043157000,0],[1710043158000,0],[1710043159000,0],[1710043160000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FF00E1',
name: 'validação concorrência saldo - -25',
data: [
[1710042916000,1],[1710042917000,1],[1710042918000,0],[1710042919000,0],[1710042920000,0],[1710042921000,0],[1710042922000,0],[1710042923000,0],[1710042924000,0],[1710042925000,0],[1710042926000,0],[1710042927000,0],[1710042928000,0],[1710042929000,0],[1710042930000,0],[1710042931000,0],[1710042932000,0],[1710042933000,0],[1710042934000,0],[1710042935000,0],[1710042936000,0],[1710042937000,0],[1710042938000,0],[1710042939000,0],[1710042940000,0],[1710042941000,0],[1710042942000,0],[1710042943000,0],[1710042944000,0],[1710042945000,0],[1710042946000,0],[1710042947000,0],[1710042948000,0],[1710042949000,0],[1710042950000,0],[1710042951000,0],[1710042952000,0],[1710042953000,0],[1710042954000,0],[1710042955000,0],[1710042956000,0],[1710042957000,0],[1710042958000,0],[1710042959000,0],[1710042960000,0],[1710042961000,0],[1710042962000,0],[1710042963000,0],[1710042964000,0],[1710042965000,0],[1710042966000,0],[1710042967000,0],[1710042968000,0],[1710042969000,0],[1710042970000,0],[1710042971000,0],[1710042972000,0],[1710042973000,0],[1710042974000,0],[1710042975000,0],[1710042976000,0],[1710042977000,0],[1710042978000,0],[1710042979000,0],[1710042980000,0],[1710042981000,0],[1710042982000,0],[1710042983000,0],[1710042984000,0],[1710042985000,0],[1710042986000,0],[1710042987000,0],[1710042988000,0],[1710042989000,0],[1710042990000,0],[1710042991000,0],[1710042992000,0],[1710042993000,0],[1710042994000,0],[1710042995000,0],[1710042996000,0],[1710042997000,0],[1710042998000,0],[1710042999000,0],[1710043000000,0],[1710043001000,0],[1710043002000,0],[1710043003000,0],[1710043004000,0],[1710043005000,0],[1710043006000,0],[1710043007000,0],[1710043008000,0],[1710043009000,0],[1710043010000,0],[1710043011000,0],[1710043012000,0],[1710043013000,0],[1710043014000,0],[1710043015000,0],[1710043016000,0],[1710043017000,0],[1710043018000,0],[1710043019000,0],[1710043020000,0],[1710043021000,0],[1710043022000,0],[1710043023000,0],[1710043024000,0],[1710043025000,0],[1710043026000,0],[1710043027000,0],[1710043028000,0],[1710043029000,0],[1710043030000,0],[1710043031000,0],[1710043032000,0],[1710043033000,0],[1710043034000,0],[1710043035000,0],[1710043036000,0],[1710043037000,0],[1710043038000,0],[1710043039000,0],[1710043040000,0],[1710043041000,0],[1710043042000,0],[1710043043000,0],[1710043044000,0],[1710043045000,0],[1710043046000,0],[1710043047000,0],[1710043048000,0],[1710043049000,0],[1710043050000,0],[1710043051000,0],[1710043052000,0],[1710043053000,0],[1710043054000,0],[1710043055000,0],[1710043056000,0],[1710043057000,0],[1710043058000,0],[1710043059000,0],[1710043060000,0],[1710043061000,0],[1710043062000,0],[1710043063000,0],[1710043064000,0],[1710043065000,0],[1710043066000,0],[1710043067000,0],[1710043068000,0],[1710043069000,0],[1710043070000,0],[1710043071000,0],[1710043072000,0],[1710043073000,0],[1710043074000,0],[1710043075000,0],[1710043076000,0],[1710043077000,0],[1710043078000,0],[1710043079000,0],[1710043080000,0],[1710043081000,0],[1710043082000,0],[1710043083000,0],[1710043084000,0],[1710043085000,0],[1710043086000,0],[1710043087000,0],[1710043088000,0],[1710043089000,0],[1710043090000,0],[1710043091000,0],[1710043092000,0],[1710043093000,0],[1710043094000,0],[1710043095000,0],[1710043096000,0],[1710043097000,0],[1710043098000,0],[1710043099000,0],[1710043100000,0],[1710043101000,0],[1710043102000,0],[1710043103000,0],[1710043104000,0],[1710043105000,0],[1710043106000,0],[1710043107000,0],[1710043108000,0],[1710043109000,0],[1710043110000,0],[1710043111000,0],[1710043112000,0],[1710043113000,0],[1710043114000,0],[1710043115000,0],[1710043116000,0],[1710043117000,0],[1710043118000,0],[1710043119000,0],[1710043120000,0],[1710043121000,0],[1710043122000,0],[1710043123000,0],[1710043124000,0],[1710043125000,0],[1710043126000,0],[1710043127000,0],[1710043128000,0],[1710043129000,0],[1710043130000,0],[1710043131000,0],[1710043132000,0],[1710043133000,0],[1710043134000,0],[1710043135000,0],[1710043136000,0],[1710043137000,0],[1710043138000,0],[1710043139000,0],[1710043140000,0],[1710043141000,0],[1710043142000,0],[1710043143000,0],[1710043144000,0],[1710043145000,0],[1710043146000,0],[1710043147000,0],[1710043148000,0],[1710043149000,0],[1710043150000,0],[1710043151000,0],[1710043152000,0],[1710043153000,0],[1710043154000,0],[1710043155000,0],[1710043156000,0],[1710043157000,0],[1710043158000,0],[1710043159000,0],[1710043160000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#AECAEB',
name: 'validação concorrência transações - d',
data: [
[1710042916000,25],[1710042917000,0],[1710042918000,0],[1710042919000,0],[1710042920000,0],[1710042921000,0],[1710042922000,0],[1710042923000,0],[1710042924000,0],[1710042925000,0],[1710042926000,0],[1710042927000,0],[1710042928000,0],[1710042929000,0],[1710042930000,0],[1710042931000,0],[1710042932000,0],[1710042933000,0],[1710042934000,0],[1710042935000,0],[1710042936000,0],[1710042937000,0],[1710042938000,0],[1710042939000,0],[1710042940000,0],[1710042941000,0],[1710042942000,0],[1710042943000,0],[1710042944000,0],[1710042945000,0],[1710042946000,0],[1710042947000,0],[1710042948000,0],[1710042949000,0],[1710042950000,0],[1710042951000,0],[1710042952000,0],[1710042953000,0],[1710042954000,0],[1710042955000,0],[1710042956000,0],[1710042957000,0],[1710042958000,0],[1710042959000,0],[1710042960000,0],[1710042961000,0],[1710042962000,0],[1710042963000,0],[1710042964000,0],[1710042965000,0],[1710042966000,0],[1710042967000,0],[1710042968000,0],[1710042969000,0],[1710042970000,0],[1710042971000,0],[1710042972000,0],[1710042973000,0],[1710042974000,0],[1710042975000,0],[1710042976000,0],[1710042977000,0],[1710042978000,0],[1710042979000,0],[1710042980000,0],[1710042981000,0],[1710042982000,0],[1710042983000,0],[1710042984000,0],[1710042985000,0],[1710042986000,0],[1710042987000,0],[1710042988000,0],[1710042989000,0],[1710042990000,0],[1710042991000,0],[1710042992000,0],[1710042993000,0],[1710042994000,0],[1710042995000,0],[1710042996000,0],[1710042997000,0],[1710042998000,0],[1710042999000,0],[1710043000000,0],[1710043001000,0],[1710043002000,0],[1710043003000,0],[1710043004000,0],[1710043005000,0],[1710043006000,0],[1710043007000,0],[1710043008000,0],[1710043009000,0],[1710043010000,0],[1710043011000,0],[1710043012000,0],[1710043013000,0],[1710043014000,0],[1710043015000,0],[1710043016000,0],[1710043017000,0],[1710043018000,0],[1710043019000,0],[1710043020000,0],[1710043021000,0],[1710043022000,0],[1710043023000,0],[1710043024000,0],[1710043025000,0],[1710043026000,0],[1710043027000,0],[1710043028000,0],[1710043029000,0],[1710043030000,0],[1710043031000,0],[1710043032000,0],[1710043033000,0],[1710043034000,0],[1710043035000,0],[1710043036000,0],[1710043037000,0],[1710043038000,0],[1710043039000,0],[1710043040000,0],[1710043041000,0],[1710043042000,0],[1710043043000,0],[1710043044000,0],[1710043045000,0],[1710043046000,0],[1710043047000,0],[1710043048000,0],[1710043049000,0],[1710043050000,0],[1710043051000,0],[1710043052000,0],[1710043053000,0],[1710043054000,0],[1710043055000,0],[1710043056000,0],[1710043057000,0],[1710043058000,0],[1710043059000,0],[1710043060000,0],[1710043061000,0],[1710043062000,0],[1710043063000,0],[1710043064000,0],[1710043065000,0],[1710043066000,0],[1710043067000,0],[1710043068000,0],[1710043069000,0],[1710043070000,0],[1710043071000,0],[1710043072000,0],[1710043073000,0],[1710043074000,0],[1710043075000,0],[1710043076000,0],[1710043077000,0],[1710043078000,0],[1710043079000,0],[1710043080000,0],[1710043081000,0],[1710043082000,0],[1710043083000,0],[1710043084000,0],[1710043085000,0],[1710043086000,0],[1710043087000,0],[1710043088000,0],[1710043089000,0],[1710043090000,0],[1710043091000,0],[1710043092000,0],[1710043093000,0],[1710043094000,0],[1710043095000,0],[1710043096000,0],[1710043097000,0],[1710043098000,0],[1710043099000,0],[1710043100000,0],[1710043101000,0],[1710043102000,0],[1710043103000,0],[1710043104000,0],[1710043105000,0],[1710043106000,0],[1710043107000,0],[1710043108000,0],[1710043109000,0],[1710043110000,0],[1710043111000,0],[1710043112000,0],[1710043113000,0],[1710043114000,0],[1710043115000,0],[1710043116000,0],[1710043117000,0],[1710043118000,0],[1710043119000,0],[1710043120000,0],[1710043121000,0],[1710043122000,0],[1710043123000,0],[1710043124000,0],[1710043125000,0],[1710043126000,0],[1710043127000,0],[1710043128000,0],[1710043129000,0],[1710043130000,0],[1710043131000,0],[1710043132000,0],[1710043133000,0],[1710043134000,0],[1710043135000,0],[1710043136000,0],[1710043137000,0],[1710043138000,0],[1710043139000,0],[1710043140000,0],[1710043141000,0],[1710043142000,0],[1710043143000,0],[1710043144000,0],[1710043145000,0],[1710043146000,0],[1710043147000,0],[1710043148000,0],[1710043149000,0],[1710043150000,0],[1710043151000,0],[1710043152000,0],[1710043153000,0],[1710043154000,0],[1710043155000,0],[1710043156000,0],[1710043157000,0],[1710043158000,0],[1710043159000,0],[1710043160000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
allUsersData
]
});
allUsersChart.setTitle({
text: '<span class="chart_title">Active Users along the Simulation</span>',
useHTML: true
});
allUsersData.yAxis = 1;
var responsetimeDistributionChart = new Highcharts.Chart({
chart: {
renderTo: 'responsetimeDistributionContainer',
type: 'column',
marginBottom: 60
},
credits: { enabled: false },
legend: {
enabled: true,
floating: true,
y: 5,
borderWidth: 0,
itemStyle: { fontWeight: "normal" },
symbolRadius: 0
},
title: { text: 'A title to let highcharts reserve the place for the title set later' },
navigator: {
maskInside: false
},
xAxis: {
categories: ['3', '9', '15', '20', '26', '32', '38', '44', '49', '55', '61', '67', '73', '79', '84', '90', '96', '102', '108', '113', '119', '125', '131', '137', '143', '148', '154', '160', '166', '172', '178', '183', '189', '195', '201', '207', '212', '218', '224', '230', '236', '242', '247', '253', '259', '265', '271', '276', '282', '288', '294', '300', '306', '311', '317', '323', '329', '335', '340', '346', '352', '358', '364', '370', '375', '381', '387', '393', '399', '404', '410', '416', '422', '428', '434', '439', '445', '451', '457', '463', '469', '474', '480', '486', '492', '498', '503', '509', '515', '521', '527', '533', '538', '544', '550', '556', '562', '567', '573', '579'],
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: [
89.58,8.58,0.68,0.21,0.12,0.06,0.08,0.06,0.07,0.05,0.04,0.04,0.03,0.02,0.04,0.01,0.02,0.03,0.01,0.02,0.0,0.02,0.01,0.01,0.02,0.01,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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([[1710042916,[27,60,79,95,98,103,110,114,122,125]],[1710042917,[4,4,4,4,4,4,4,4,4,4]],[1710042918,[7,19,31,43,46,50,55,58,63,65]],[1710042919,[3,3,3,3,3,3,3,3,3,3]],[1710042920,[1,2,4,7,9,16,33,40,47,50]],[1710042921,[4,5,6,6,6,6,6,6,6,7]],[1710042922,[4,4,4,5,5,5,5,5,5,6]],[1710042923,[3,4,5,6,6,7,8,8,8,8]],[1710042924,[2,4,4,5,5,5,5,6,6,7]],[1710042925,[3,4,4,5,5,5,5,5,5,5]],[1710042926,[2,4,4,5,5,5,5,7,7,8]],[1710042927,[2,4,4,5,5,5,6,6,6,6]],[1710042928,[2,4,4,5,5,5,5,5,6,6]],[1710042929,[2,4,4,5,5,5,5,5,7,8]],[1710042930,[2,4,4,5,5,5,6,7,7,7]],[1710042931,[2,4,4,5,5,6,6,7,7,8]],[1710042932,[2,3,4,4,5,6,6,7,11,13]],[1710042933,[2,3,4,5,5,5,6,6,7,7]],[1710042934,[2,3,4,4,4,4,5,5,6,6]],[1710042935,[1,3,4,5,5,6,7,9,11,12]],[1710042936,[1,3,4,5,5,5,6,6,7,7]],[1710042937,[1,3,3,4,4,4,4,4,6,6]],[1710042938,[1,3,4,8,219,272,419,471,539,582]],[1710042939,[1,3,4,141,194,224,275,326,366,373]],[1710042940,[1,3,3,3,3,4,4,4,4,6]],[1710042941,[1,3,3,4,4,4,4,7,10,10]],[1710042942,[1,3,4,4,4,5,7,9,12,14]],[1710042943,[1,3,3,4,4,4,5,5,8,14]],[1710042944,[1,3,3,4,4,5,6,9,52,54]],[1710042945,[1,3,3,4,4,4,4,5,5,6]],[1710042946,[1,3,3,4,4,4,5,5,9,10]],[1710042947,[1,3,4,4,4,5,5,5,9,10]],[1710042948,[1,3,4,4,4,4,5,7,10,11]],[1710042949,[1,3,3,4,4,4,5,6,10,16]],[1710042950,[1,3,3,3,4,4,4,4,5,7]],[1710042951,[1,3,3,4,4,4,5,5,7,7]],[1710042952,[1,3,3,3,4,4,4,5,7,7]],[1710042953,[1,3,3,4,4,4,4,5,5,6]],[1710042954,[1,3,3,4,4,4,5,5,6,8]],[1710042955,[1,3,3,4,4,4,4,4,5,5]],[1710042956,[1,3,3,4,4,5,5,6,13,14]],[1710042957,[1,3,3,4,4,4,5,5,6,6]],[1710042958,[1,3,3,4,4,4,4,5,5,6]],[1710042959,[1,2,3,3,3,4,4,4,5,5]],[1710042960,[1,3,3,4,4,4,5,5,14,16]],[1710042961,[1,3,3,4,4,5,5,6,7,12]],[1710042962,[1,3,3,4,4,4,4,6,9,14]],[1710042963,[1,3,3,4,4,4,4,5,5,6]],[1710042964,[1,2,3,3,4,4,4,4,7,8]],[1710042965,[1,3,3,4,4,4,5,5,5,6]],[1710042966,[1,2,3,4,4,4,5,5,6,11]],[1710042967,[1,2,3,4,4,4,5,6,13,16]],[1710042968,[1,3,3,4,4,5,5,7,10,13]],[1710042969,[1,2,3,4,4,5,6,7,13,27]],[1710042970,[1,2,3,3,3,4,4,5,7,8]],[1710042971,[1,2,3,3,4,4,4,6,9,15]],[1710042972,[1,2,3,3,4,4,4,5,11,16]],[1710042973,[1,2,3,3,3,4,4,4,7,9]],[1710042974,[1,3,3,4,5,6,25,87,127,134]],[1710042975,[1,2,3,3,4,4,4,4,5,7]],[1710042976,[1,2,3,3,3,4,4,6,9,11]],[1710042977,[1,2,3,3,4,4,4,5,5,6]],[1710042978,[1,3,3,4,4,5,5,5,8,10]],[1710042979,[1,3,3,4,4,4,5,5,9,16]],[1710042980,[1,2,3,4,4,5,5,7,20,35]],[1710042981,[1,2,3,4,4,4,5,6,9,11]],[1710042982,[1,3,3,3,3,4,4,5,6,9]],[1710042983,[1,2,3,3,3,3,4,4,5,10]],[1710042984,[1,2,3,3,4,4,4,5,7,9]],[1710042985,[1,3,3,3,3,4,4,4,10,12]],[1710042986,[0,1,3,3,4,4,4,4,7,10]],[1710042987,[0,2,3,3,3,3,4,4,6,13]],[1710042988,[1,3,3,3,4,4,4,4,5,9]],[1710042989,[0,2,3,3,4,4,4,5,10,14]],[1710042990,[0,2,3,4,4,4,4,5,7,11]],[1710042991,[1,2,3,3,4,4,5,7,9,15]],[1710042992,[1,2,3,3,3,4,4,5,5,7]],[1710042993,[0,2,3,3,4,4,4,5,6,7]],[1710042994,[0,2,3,3,3,4,4,5,5,6]],[1710042995,[1,2,3,3,3,4,4,5,9,16]],[1710042996,[1,2,3,3,3,3,4,5,7,11]],[1710042997,[1,2,3,3,3,4,4,5,6,6]],[1710042998,[1,2,3,3,4,4,4,4,6,8]],[1710042999,[0,2,3,3,3,4,4,5,7,15]],[1710043000,[1,2,3,3,4,4,4,5,10,15]],[1710043001,[0,2,3,3,3,4,4,5,7,10]],[1710043002,[0,2,2,3,3,4,4,5,6,7]],[1710043003,[0,2,3,3,4,4,4,5,6,9]],[1710043004,[1,2,3,4,4,4,5,6,9,20]],[1710043005,[1,2,3,3,3,3,3,4,9,13]],[1710043006,[1,2,3,3,3,3,4,4,6,8]],[1710043007,[1,2,3,3,3,3,4,4,5,7]],[1710043008,[1,2,3,3,3,4,5,6,10,13]],[1710043009,[1,2,2,3,3,4,4,4,5,7]],[1710043010,[0,2,3,3,3,3,4,5,8,8]],[1710043011,[1,2,3,3,4,4,4,5,6,9]],[1710043012,[1,2,3,3,4,4,4,5,7,10]],[1710043013,[1,2,3,3,3,4,4,5,6,8]],[1710043014,[1,2,3,3,3,4,4,5,8,18]],[1710043015,[1,2,3,3,4,4,5,8,14,17]],[1710043016,[1,2,3,3,3,3,4,4,5,11]],[1710043017,[1,2,3,3,3,3,4,4,5,6]],[1710043018,[0,2,3,3,3,4,4,4,6,13]],[1710043019,[0,2,3,3,3,4,12,125,154,166]],[1710043020,[1,3,3,6,14,28,47,71,84,104]],[1710043021,[1,3,3,4,4,5,5,6,23,31]],[1710043022,[1,2,3,4,4,5,5,6,11,16]],[1710043023,[0,2,3,3,3,4,4,4,9,15]],[1710043024,[0,2,3,3,4,4,4,5,7,11]],[1710043025,[1,2,3,4,4,4,5,6,10,11]],[1710043026,[1,2,3,3,4,4,4,6,8,11]],[1710043027,[1,2,3,3,4,4,4,5,11,18]],[1710043028,[1,2,3,3,3,3,4,4,7,10]],[1710043029,[0,2,3,4,4,4,4,5,9,12]],[1710043030,[1,2,3,3,3,4,4,5,6,10]],[1710043031,[1,2,3,3,4,4,5,7,21,42]],[1710043032,[0,2,3,4,4,4,5,5,8,13]],[1710043033,[0,2,3,4,4,5,5,7,11,13]],[1710043034,[1,3,4,5,5,5,6,6,7,11]],[1710043035,[0,2,3,4,4,4,4,5,21,30]],[1710043036,[1,3,4,5,5,6,6,7,10,15]],[1710043037,[1,2,3,4,4,4,5,6,8,17]],[1710043038,[0,3,4,5,5,5,6,6,9,13]],[1710043039,[1,2,3,4,4,5,5,7,22,27]],[1710043040,[1,3,4,5,5,5,6,7,10,14]],[1710043041,[1,3,4,5,5,6,6,7,19,23]],[1710043042,[1,3,4,5,5,6,6,7,10,17]],[1710043043,[1,3,4,5,6,6,6,7,11,14]],[1710043044,[1,3,4,4,5,5,5,6,9,18]],[1710043045,[1,3,3,4,5,5,5,6,10,12]],[1710043046,[0,2,3,4,5,5,5,7,12,16]],[1710043047,[1,3,4,4,5,5,6,7,11,17]],[1710043048,[1,3,3,5,5,5,6,7,9,11]],[1710043049,[1,3,4,5,5,6,6,7,11,18]],[1710043050,[1,2,3,4,5,5,5,6,7,9]],[1710043051,[0,3,4,5,5,5,6,7,9,12]],[1710043052,[0,2,3,4,4,5,5,6,10,16]],[1710043053,[1,3,4,5,5,6,6,7,8,14]],[1710043054,[0,3,4,30,46,66,94,128,152,164]],[1710043055,[1,3,4,5,5,6,6,7,10,12]],[1710043056,[1,3,3,4,5,5,9,17,46,56]],[1710043057,[0,3,4,5,5,5,6,6,7,9]],[1710043058,[0,2,3,4,4,5,7,15,39,48]],[1710043059,[1,3,4,6,6,6,7,10,16,27]],[1710043060,[0,2,3,4,4,4,5,6,12,19]],[1710043061,[0,3,4,5,5,6,6,7,13,16]],[1710043062,[0,2,3,4,4,4,5,6,13,21]],[1710043063,[0,3,4,5,5,6,6,7,9,16]],[1710043064,[1,3,3,4,4,5,5,8,12,20]],[1710043065,[0,3,4,5,5,6,6,9,16,26]],[1710043066,[0,2,3,4,4,4,5,6,7,10]],[1710043067,[1,3,4,5,5,6,6,7,11,15]],[1710043068,[1,2,3,4,4,5,5,8,18,24]],[1710043069,[1,3,4,5,5,5,6,7,9,14]],[1710043070,[0,2,3,4,5,6,7,10,16,46]],[1710043071,[0,3,4,4,5,5,5,7,11,20]],[1710043072,[0,2,3,4,4,4,4,5,10,13]],[1710043073,[1,3,4,5,5,5,6,7,9,11]],[1710043074,[1,2,3,4,4,5,5,7,12,15]],[1710043075,[0,2,3,4,4,5,6,14,58,79]],[1710043076,[0,2,3,4,4,4,5,5,6,12]],[1710043077,[1,2,3,4,4,5,6,8,20,27]],[1710043078,[1,2,3,4,4,5,5,6,8,10]],[1710043079,[1,2,3,4,5,5,7,10,15,19]],[1710043080,[1,2,3,4,5,5,5,7,10,15]],[1710043081,[0,1,2,3,3,4,4,5,7,11]],[1710043082,[1,2,3,4,4,4,4,5,6,8]],[1710043083,[1,2,3,4,4,5,5,7,13,18]],[1710043084,[1,2,3,5,5,6,6,7,10,14]],[1710043085,[1,2,3,4,4,4,5,7,11,14]],[1710043086,[1,2,3,5,5,5,6,7,11,14]],[1710043087,[0,1,3,4,4,4,5,7,15,24]],[1710043088,[0,2,3,4,5,5,6,7,18,32]],[1710043089,[1,2,3,4,4,5,5,6,11,22]],[1710043090,[1,2,3,4,5,5,5,7,9,14]],[1710043091,[1,2,3,4,4,5,5,6,8,11]],[1710043092,[0,2,3,4,5,5,5,7,11,15]],[1710043093,[0,1,3,3,4,4,5,5,7,9]],[1710043094,[1,2,3,5,5,6,6,8,10,15]],[1710043095,[1,3,4,5,5,6,7,8,10,14]],[1710043096,[0,2,3,5,5,5,6,7,13,18]],[1710043097,[0,2,3,4,4,5,6,7,17,23]],[1710043098,[1,2,4,4,5,5,6,7,17,27]],[1710043099,[1,3,4,5,5,6,6,8,11,16]],[1710043100,[1,3,4,5,5,6,6,7,9,16]],[1710043101,[1,2,3,4,5,5,6,6,13,28]],[1710043102,[1,3,4,5,5,5,6,7,7,10]],[1710043103,[0,2,3,4,4,5,6,7,12,21]],[1710043104,[1,3,4,5,6,6,6,7,8,11]],[1710043105,[1,2,3,4,4,5,5,6,8,11]],[1710043106,[1,4,7,49,60,83,103,140,174,186]],[1710043107,[0,2,3,4,5,5,6,9,23,43]],[1710043108,[0,3,4,4,5,5,5,7,12,20]],[1710043109,[0,2,3,3,4,4,4,5,6,13]],[1710043110,[1,3,4,5,6,6,7,8,11,13]],[1710043111,[0,2,3,4,4,4,5,5,6,8]],[1710043112,[0,3,4,5,5,6,6,7,9,11]],[1710043113,[0,2,3,4,4,5,5,7,10,18]],[1710043114,[0,2,4,5,5,5,6,7,8,9]],[1710043115,[1,2,3,4,4,5,5,6,8,11]],[1710043116,[1,3,4,5,5,6,6,7,9,9]],[1710043117,[1,2,3,4,5,5,5,6,7,9]],[1710043118,[1,3,4,5,5,6,6,8,9,12]],[1710043119,[0,2,3,5,5,5,6,8,15,25]],[1710043120,[0,3,4,5,5,6,7,8,12,21]],[1710043121,[0,2,3,4,5,5,5,7,8,9]],[1710043122,[0,2,3,4,5,5,6,7,8,10]],[1710043123,[1,3,4,5,5,5,6,7,8,11]],[1710043124,[1,3,3,5,5,5,6,8,13,19]],[1710043125,[1,2,3,4,5,5,6,7,11,18]],[1710043126,[1,2,3,4,5,5,6,7,9,14]],[1710043127,[1,2,3,4,5,5,6,7,10,16]],[1710043128,[1,2,3,4,5,5,6,8,12,18]],[1710043129,[1,3,4,5,5,6,6,7,8,17]],[1710043130,[1,3,3,5,5,5,6,7,9,10]],[1710043131,[0,2,4,5,5,6,6,7,10,12]],[1710043132,[1,1,3,3,4,4,5,6,7,12]],[1710043133,[1,2,4,5,5,6,6,7,9,9]],[1710043134,[0,2,3,4,4,5,6,28,61,70]],[1710043135,[1,3,4,5,5,5,6,7,9,11]],[1710043136,[1,2,3,4,4,4,5,6,8,19]],[1710043137,[1,3,4,7,18,36,54,76,106,120]],[1710043138,[0,2,3,3,4,4,4,6,21,32]],[1710043139,[1,3,4,5,5,5,6,7,9,11]],[1710043140,[0,2,3,4,4,5,6,8,15,29]],[1710043141,[0,2,3,4,5,5,6,7,9,10]],[1710043142,[1,2,3,4,4,5,5,6,8,12]],[1710043143,[0,3,4,5,6,6,7,9,14,15]],[1710043144,[0,2,3,3,4,4,5,6,7,10]],[1710043145,[1,3,4,5,5,5,6,6,8,11]],[1710043146,[1,2,3,4,4,5,5,6,7,13]],[1710043147,[0,3,3,4,5,5,6,6,8,9]],[1710043148,[0,1,2,3,3,4,4,6,7,9]],[1710043149,[0,2,3,4,4,5,6,8,12,20]],[1710043150,[0,2,3,3,4,4,5,6,7,11]],[1710043151,[1,2,3,4,4,5,6,6,10,19]],[1710043152,[1,1,3,3,4,4,4,6,8,14]],[1710043153,[1,2,3,4,5,5,6,7,14,21]],[1710043154,[1,2,3,4,4,5,5,7,12,18]],[1710043155,[0,1,3,3,4,4,5,7,11,24]],[1710043156,[0,2,2,3,4,4,5,7,9,14]],[1710043157,[0,2,3,5,5,5,6,7,9,12]],[1710043158,[0,3,3,4,5,5,6,7,27,38]],[1710043159,[1,3,4,5,6,7,9,22,58,67]],[1710043160,[1,3,4,5,6,7,8,10,15,21]]]);
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([[1710042916,[25,25,0]],[1710042917,[1,1,0]],[1710042918,[25,25,0]],[1710042919,[1,1,0]],[1710042920,[71,71,0]],[1710042921,[3,3,0]],[1710042922,[6,6,0]],[1710042923,[9,9,0]],[1710042924,[11,11,0]],[1710042925,[13,13,0]],[1710042926,[18,18,0]],[1710042927,[19,19,0]],[1710042928,[24,24,0]],[1710042929,[26,26,0]],[1710042930,[27,27,0]],[1710042931,[32,32,0]],[1710042932,[34,34,0]],[1710042933,[37,37,0]],[1710042934,[39,39,0]],[1710042935,[43,43,0]],[1710042936,[44,44,0]],[1710042937,[48,48,0]],[1710042938,[50,50,0]],[1710042939,[54,54,0]],[1710042940,[57,57,0]],[1710042941,[60,60,0]],[1710042942,[61,61,0]],[1710042943,[65,65,0]],[1710042944,[67,67,0]],[1710042945,[70,70,0]],[1710042946,[74,74,0]],[1710042947,[76,76,0]],[1710042948,[80,80,0]],[1710042949,[81,81,0]],[1710042950,[84,84,0]],[1710042951,[87,87,0]],[1710042952,[91,91,0]],[1710042953,[92,92,0]],[1710042954,[96,96,0]],[1710042955,[98,98,0]],[1710042956,[101,101,0]],[1710042957,[105,105,0]],[1710042958,[107,107,0]],[1710042959,[110,110,0]],[1710042960,[114,114,0]],[1710042961,[115,115,0]],[1710042962,[118,118,0]],[1710042963,[121,121,0]],[1710042964,[124,124,0]],[1710042965,[126,126,0]],[1710042966,[129,129,0]],[1710042967,[133,133,0]],[1710042968,[134,134,0]],[1710042969,[138,138,0]],[1710042970,[141,141,0]],[1710042971,[143,143,0]],[1710042972,[146,146,0]],[1710042973,[149,149,0]],[1710042974,[152,152,0]],[1710042975,[154,154,0]],[1710042976,[158,158,0]],[1710042977,[160,160,0]],[1710042978,[164,164,0]],[1710042979,[165,165,0]],[1710042980,[170,170,0]],[1710042981,[172,172,0]],[1710042982,[174,174,0]],[1710042983,[175,175,0]],[1710042984,[182,182,0]],[1710042985,[183,183,0]],[1710042986,[185,185,0]],[1710042987,[189,189,0]],[1710042988,[191,191,0]],[1710042989,[194,194,0]],[1710042990,[196,196,0]],[1710042991,[200,200,0]],[1710042992,[202,202,0]],[1710042993,[206,206,0]],[1710042994,[207,207,0]],[1710042995,[211,211,0]],[1710042996,[213,213,0]],[1710042997,[217,217,0]],[1710042998,[220,220,0]],[1710042999,[222,222,0]],[1710043000,[225,225,0]],[1710043001,[228,228,0]],[1710043002,[229,229,0]],[1710043003,[235,235,0]],[1710043004,[235,235,0]],[1710043005,[239,239,0]],[1710043006,[242,242,0]],[1710043007,[244,244,0]],[1710043008,[248,248,0]],[1710043009,[251,251,0]],[1710043010,[252,252,0]],[1710043011,[256,256,0]],[1710043012,[259,259,0]],[1710043013,[262,262,0]],[1710043014,[264,264,0]],[1710043015,[267,267,0]],[1710043016,[269,269,0]],[1710043017,[272,272,0]],[1710043018,[275,275,0]],[1710043019,[280,280,0]],[1710043020,[281,281,0]],[1710043021,[284,284,0]],[1710043022,[286,286,0]],[1710043023,[290,290,0]],[1710043024,[291,291,0]],[1710043025,[296,296,0]],[1710043026,[298,298,0]],[1710043027,[300,300,0]],[1710043028,[304,304,0]],[1710043029,[306,306,0]],[1710043030,[309,309,0]],[1710043031,[312,312,0]],[1710043032,[315,315,0]],[1710043033,[317,317,0]],[1710043034,[321,321,0]],[1710043035,[322,322,0]],[1710043036,[327,327,0]],[1710043037,[329,329,0]],[1710043038,[332,332,0]],[1710043039,[334,334,0]],[1710043040,[339,339,0]],[1710043041,[339,339,0]],[1710043042,[341,341,0]],[1710043043,[340,340,0]],[1710043044,[339,339,0]],[1710043045,[341,341,0]],[1710043046,[339,339,0]],[1710043047,[341,341,0]],[1710043048,[340,340,0]],[1710043049,[340,340,0]],[1710043050,[340,340,0]],[1710043051,[340,340,0]],[1710043052,[340,340,0]],[1710043053,[340,340,0]],[1710043054,[340,340,0]],[1710043055,[340,340,0]],[1710043056,[340,340,0]],[1710043057,[339,339,0]],[1710043058,[341,341,0]],[1710043059,[340,340,0]],[1710043060,[339,339,0]],[1710043061,[341,341,0]],[1710043062,[339,339,0]],[1710043063,[341,341,0]],[1710043064,[340,340,0]],[1710043065,[339,339,0]],[1710043066,[341,341,0]],[1710043067,[340,340,0]],[1710043068,[340,340,0]],[1710043069,[340,340,0]],[1710043070,[340,340,0]],[1710043071,[339,339,0]],[1710043072,[341,341,0]],[1710043073,[340,340,0]],[1710043074,[340,340,0]],[1710043075,[339,339,0]],[1710043076,[341,341,0]],[1710043077,[340,340,0]],[1710043078,[340,340,0]],[1710043079,[340,340,0]],[1710043080,[340,340,0]],[1710043081,[339,339,0]],[1710043082,[341,341,0]],[1710043083,[340,340,0]],[1710043084,[340,340,0]],[1710043085,[340,340,0]],[1710043086,[340,340,0]],[1710043087,[339,339,0]],[1710043088,[341,341,0]],[1710043089,[340,340,0]],[1710043090,[340,340,0]],[1710043091,[340,340,0]],[1710043092,[339,339,0]],[1710043093,[341,341,0]],[1710043094,[340,340,0]],[1710043095,[340,340,0]],[1710043096,[339,339,0]],[1710043097,[340,340,0]],[1710043098,[341,341,0]],[1710043099,[340,340,0]],[1710043100,[340,340,0]],[1710043101,[340,340,0]],[1710043102,[339,339,0]],[1710043103,[340,340,0]],[1710043104,[341,341,0]],[1710043105,[340,340,0]],[1710043106,[340,340,0]],[1710043107,[339,339,0]],[1710043108,[340,340,0]],[1710043109,[341,341,0]],[1710043110,[340,340,0]],[1710043111,[339,339,0]],[1710043112,[341,341,0]],[1710043113,[339,339,0]],[1710043114,[341,341,0]],[1710043115,[340,340,0]],[1710043116,[340,340,0]],[1710043117,[340,340,0]],[1710043118,[340,340,0]],[1710043119,[339,339,0]],[1710043120,[341,341,0]],[1710043121,[339,339,0]],[1710043122,[341,341,0]],[1710043123,[340,340,0]],[1710043124,[340,340,0]],[1710043125,[340,340,0]],[1710043126,[340,340,0]],[1710043127,[340,340,0]],[1710043128,[339,339,0]],[1710043129,[341,341,0]],[1710043130,[340,340,0]],[1710043131,[340,340,0]],[1710043132,[340,340,0]],[1710043133,[339,339,0]],[1710043134,[341,341,0]],[1710043135,[340,340,0]],[1710043136,[340,340,0]],[1710043137,[339,339,0]],[1710043138,[341,341,0]],[1710043139,[340,340,0]],[1710043140,[339,339,0]],[1710043141,[341,341,0]],[1710043142,[340,340,0]],[1710043143,[339,339,0]],[1710043144,[341,341,0]],[1710043145,[340,340,0]],[1710043146,[340,340,0]],[1710043147,[339,339,0]],[1710043148,[340,340,0]],[1710043149,[340,340,0]],[1710043150,[341,341,0]],[1710043151,[340,340,0]],[1710043152,[340,340,0]],[1710043153,[340,340,0]],[1710043154,[340,340,0]],[1710043155,[339,339,0]],[1710043156,[341,341,0]],[1710043157,[340,340,0]],[1710043158,[340,340,0]],[1710043159,[340,340,0]],[1710043160,[503,503,0]]]);
var requestsChart = new Highcharts.StockChart({
chart: {
renderTo: 'requests',
zoomType: 'x',
marginBottom: 60
},
credits: { enabled: false },
legend: {
enabled: true,
floating: true,
y: -65,
borderWidth: 0,
itemStyle: { fontWeight: "normal" },
symbolRadius: 0
},
title: { text: 'A title to let highcharts reserve the place for the title set later' },
navigator: {
maskInside: false
},
rangeSelector: {
buttonSpacing: 0,
buttonTheme: {
fill: '#CFC9C6',
padding: 1,
stroke: '#000000',
'stroke-width': 0.25,
style: {
color: '#000000',
fontWeight: 'bold',
},
states: {
stroke: '#000000',
'stroke-width': 0.25,
hover: {
fill: '#92918C',
style: { color: 'black' }
},
select: {
fill: '#FFA900',
style: { color: 'white' }
}
}
},
buttons : [
{
type : 'minute',
count : 1,
text : '1m'
}, {
type : 'minute',
count : 10,
text : '10m'
}, {
type : 'hour',
count : 1,
text : '1h'
}, {
type : 'all',
count : 1,
text : 'All'
}
],
selected : 3,
inputEnabled : false
},
plotOptions: {
series: {
dataGrouping: { enabled: false }
},
area: {
stacking: 'normal'
}
},
xAxis: {
type: 'datetime',
ordinal: false,
maxZoom: 10000 // three days
},
yAxis:[