-
Notifications
You must be signed in to change notification settings - Fork 923
/
Copy pathindex.html
1173 lines (1104 loc) · 93.1 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-07 23:50:40 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 - paulo_sergio">
<span class="simulation-information-label">Description: </span>
<span>Rinha de Backend - 2024/Q1: Crébito - paulo_sergio</span>
</span>
</div>
</div>
</div>
</div>
<div id="statistics_table_container">
<div id="stats" class="statistics extensible-geant collapsed">
<div class="title">
<div id="statistics_title" class="title_base"><span class="title_base_stats">Stats</span><span class="expand-table">Fixed height</span><span id="toggle-stats" class="toggle-table"></span><span class="collapse-table">Full size</span></div>
<div class="right">
<button class="statistics-button expand-all-button">Expand all groups</button>
<button class="statistics-button collapse-all-button">Collapse all groups</button>
<button id="statistics_full_screen" class="statistics-button" onclick="openStatisticsTableModal()"><img alt="Fullscreen" src="style/fullscreen.svg"></button>
</div>
</div>
<div class="scrollable">
<table id="container_statistics_head" class="statistics-in extensible-geant">
<thead>
<tr>
<th rowspan="2" id="col-1" class="header sortable sorted-up"><span>Requests</span></th>
<th colspan="5" class="header"><span class="executions">Executions</span></th>
<th colspan="8" class="header"><span class="response-time">Response Time (ms)</span></th>
</tr>
<tr>
<th id="col-2" class="header sortable"><span>Total</span></th>
<th id="col-3" class="header sortable"><span>OK</span></th>
<th id="col-4" class="header sortable"><span>KO</span></th>
<th id="col-5" class="header sortable"><span>% KO</span></th>
<th id="col-6" class="header sortable"><span><abbr title="Count of events per second">Cnt/s</abbr></span></th>
<th id="col-7" class="header sortable"><span>Min</span></th>
<th id="col-8" class="header sortable"><span>50th pct</span></th>
<th id="col-9" class="header sortable"><span>75th pct</span></th>
<th id="col-10" class="header sortable"><span>95th pct</span></th>
<th id="col-11" class="header sortable"><span>99th pct</span></th>
<th id="col-12" class="header sortable"><span>Max</span></th>
<th id="col-13" class="header sortable"><span>Mean</span></th>
<th id="col-14" class="header sortable"><span><abbr title="Standard Deviation">Std Dev</abbr></span></th>
</tr>
</thead>
<tbody></tbody>
</table>
<table id="container_statistics_body" class="statistics-in extensible-geant">
<tbody></tbody>
</table>
</div>
</div>
</div>
<dialog id="statistics_table_modal" class="statistics-table-modal">
<div class="statistics-table-modal-header"><button class="button-modal" onclick="closeStatisticsTableModal()"><img alt="Close" src="style/close.svg"></button></div>
<div class="statistics-table-modal-container">
<div id="statistics_table_modal_content" class="statistics-table-modal-content"></div>
</div>
</dialog>
<script>
function openStatisticsTableModal () {
const statsTable = document.getElementById("stats");
const statsTableModal = document.getElementById("statistics_table_modal");
const fullScreenButton = document.getElementById("statistics_full_screen");
fullScreenButton.disabled = true;
if (typeof statsTableModal.showModal === "function") {
const statsTableModalContent = document.getElementById("statistics_table_modal_content");
statsTableModalContent.innerHTML = "";
statsTableModalContent.appendChild(statsTable);
statsTableModal.showModal();
statsTableModal.addEventListener("close", function () {
const container = document.getElementById("statistics_table_container");
container.appendChild(statsTable);
fullScreenButton.disabled = false;
});
} else {
const incompatibleBrowserVersionMessage = document.createElement("div");
incompatibleBrowserVersionMessage.innerText = "Sorry, the <dialog> API is not supported by this browser.";
statsTable.insertBefore(incompatibleBrowserVersionMessage, statsTable.children[0]);
}
}
function closeStatisticsTableModal () {
const statsTableModal = document.getElementById("statistics_table_modal");
statsTableModal.close();
}
</script>
<div class="schema geant">
<div id="active_users" class="geant"></div>
</div>
<div class="schema geant">
<div id="responsetimeDistributionContainer" class="geant"></div>
</div>
<div class="schema geant">
<div id="responsetimepercentilesovertimeokPercentilesContainer" class="geant"></div>
</div>
<div class="schema geant">
<div id="requests" class="geant"></div>
</div>
<div class="schema geant">
<div id="responses" class="geant"></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<script>
var pageStats = stats.stats;
$(document).ready(function() {
$('.simulation-tooltip').popover({trigger:'hover', placement:'left'});
setDetailsLinkUrl();
setGlobalMenu();
setActiveMenu();
fillStats(pageStats);
Highcharts.setOptions({
global: { useUTC: false }
});
var rangesChart = new Highcharts.Chart({
chart: {
renderTo: 'ranges',
marginRight: 100
},
credits: { enabled: false },
legend: { enabled: false },
title: { text: 'A title to let highcharts reserve the place for the title set later' },
xAxis: {
categories: [
pageStats.group1.htmlName,
pageStats.group2.htmlName,
pageStats.group3.htmlName,
pageStats.group4.htmlName
]
},
yAxis: {
title: { text: 'Number of Requests' },
reversedStacks: false
},
tooltip: {
formatter: function() {
var s;
if (this.point.name) { // the pie chart
s = ''+ this.point.name +': '+ this.y +'% requests';
} else {
s = ''+ this.y + ' requests';
}
return s;
}
},
plotOptions: {
series: {
stacking: 'normal',
shadow: true
}
},
series: [
{
type: 'column',
data: [{
color: '#68b65c',
y: pageStats.group1.count
},
{
color: '#FFDD00',
y: pageStats.group2.count
},
{
color: '#FFA900',
y: pageStats.group3.count
},
{
color: '#f15b4f',
y: pageStats.group4.count
}]
},
{
type: 'pie',
name: 'Percentages',
data: [
{
name: pageStats.group1.name,
y: pageStats.group1.percentage,
color: '#68b65c'
},
{
name: pageStats.group2.name,
y: pageStats.group2.percentage,
color: '#FFDD00'
},
{
name: pageStats.group3.name,
y: pageStats.group3.percentage,
color: '#FFA900'
},
{
name: pageStats.group4.name,
y: pageStats.group4.percentage,
color: '#f15b4f'
}
],
center: [345, 0],
size: 90,
showInLegend: false,
dataLabels: { enabled: false }
}
]
});
rangesChart.setTitle({
text: '<span class="chart_title">Response Time Ranges</span>',
useHTML: true
});
function numberOfRequestsDataForGroup(group) {
var data = {names: [], oks: [], kos: []};
$.each(group.contents, function(contentName, content) {
if (content.type == 'GROUP') {
var result = numberOfRequestsDataForGroup(content);
data.names = data.names.concat(result.names);
data.oks = data.oks.concat(result.oks);
data.kos = data.kos.concat(result.kos);
}
else if (content.type == 'REQUEST') {
data.names.push(content.path);
data.oks.push(parseInt(content.stats.numberOfRequests.ok));
data.kos.push(parseInt(content.stats.numberOfRequests.ko));
}
});
return data;
}
var numberOfRequestsData = numberOfRequestsDataForGroup(stats);
var tickInterval = Math.ceil(numberOfRequestsData.names.length / 1000);
new Highcharts.Chart({
chart: {
renderTo:'container_number_of_requests',
polar:true,
type:'column',
height:330
},
credits:{
enabled:false
},
title:{
text:'<span class="chart_title">Number of requests</span>',
useHTML: true,
widthAdjust:-20
},
xAxis:{
tickmarkPlacement:'on',
tickInterval: tickInterval,
categories:numberOfRequestsData.names,
labels:{ enabled:false }
},
yAxis:{
min:0,
reversedStacks: false
},
plotOptions:{
series:{
stacking:'normal',
groupPadding:0,
pointPlacement:'on',
shadow: true
}
},
legend: {
borderWidth: 0,
itemStyle: { fontWeight: "normal" },
symbolRadius: 0
},
series:[
{
name:'OK',
data:numberOfRequestsData.oks,
color:"#68b65c"
},
{
name:'KO',
data:numberOfRequestsData.kos,
color:"#f15b4f"
}
]
});
$('#container_exceptions').sortable('#container_exceptions');
function generateHtmlRow(request, level, index, parent, group) {
if (request.name == 'All Requests')
var url = 'index.html';
else
var url = request.pathFormatted + '.html';
if (group)
var expandButtonStyle = '';
else
var expandButtonStyle = ' hidden';
if (request.stats.numberOfRequests.total != 0)
var koPercent = (request.stats.numberOfRequests.ko * 100 / request.stats.numberOfRequests.total).toFixed(0) + '%';
else
var koPercent = '-'
return '<tr id="' + request.pathFormatted + '" data-parent=' + parent + '> \
<td class="total col-1"> \
<div class="expandable-container"> \
<span id="' + request.pathFormatted + '" style="margin-left: ' + (level * 10) + 'px;" class="expand-button' + expandButtonStyle + '"> </span> \
<a href="' + url +'" class="withTooltip">' + ellipsedLabel({ name: request.name, parentClass: "table-cell-tooltip" }) + '</a><span class="value" style="display:none;">' + index + '</span> \
</div> \
</td> \
<td class="value total col-2">' + request.stats.numberOfRequests.total + '</td> \
<td class="value ok col-3">' + request.stats.numberOfRequests.ok + '</td> \
<td class="value ko col-4">' + request.stats.numberOfRequests.ko + '</td> \
<td class="value ko col-5">' + koPercent + '</td> \
<td class="value total col-6">' + request.stats.meanNumberOfRequestsPerSecond.total + '</td> \
<td class="value total col-7">' + request.stats.minResponseTime.total + '</td> \
<td class="value total col-8">' + request.stats.percentiles1.total + '</td> \
<td class="value total col-9">' + request.stats.percentiles2.total + '</td> \
<td class="value total col-10">' + request.stats.percentiles3.total + '</td> \
<td class="value total col-11">' + request.stats.percentiles4.total + '</td> \
<td class="value total col-12">' + request.stats.maxResponseTime.total + '</td> \
<td class="value total col-13">' + request.stats.meanResponseTime.total + '</td> \
<td class="value total col-14">' + request.stats.standardDeviation.total + '</td> \
</tr>';
}
function generateHtmlRowsForGroup(group, level, index, parent) {
var buffer = '';
if (!parent)
parent = 'ROOT';
else {
buffer += generateHtmlRow(group, level - 1, index, parent, true);
index++;
parent = group.pathFormatted;
}
$.each(group.contents, function(contentName, content) {
if (content.type == 'GROUP') {
var result = generateHtmlRowsForGroup(content, level + 1, index, parent);
buffer += result.html;
index = result.index;
}
else if (content.type == 'REQUEST') {
buffer += generateHtmlRow(content, level, index, parent);
index++;
}
});
return { html: buffer, index: index };
}
$('#container_statistics_head tbody').append(generateHtmlRow(stats, 0, 0));
var lines = generateHtmlRowsForGroup(stats, 0, 0);
$('#container_statistics_body tbody').append(lines.html);
$('#container_statistics_head').sortable('#container_statistics_body');
$('.statistics').expandable();
if (lines.index < 30) {
$('#statistics_title span').attr('style', 'display: none;');
} else {
$('#statistics_title').addClass('title_collapsed');
$('#statistics_title').click(function() {
$('#toggle-stats').toggleClass("off");
$(this).toggleClass('title_collapsed').toggleClass('title_expanded');
$('#container_statistics_body').parent().toggleClass('scrollable').toggleClass('');
});
}
$('.table-cell-tooltip').popover({trigger:'hover'});
$('#container_errors').sortable('#container_errors');
allUsersData.yAxis = 0;
var allUsersChart = new Highcharts.StockChart({
chart: {
renderTo: 'active_users',
zoomType: 'x'
},
credits: { enabled: false },
legend: {
enabled: true,
floating: true,
align: 'right',
verticalAlign: 'top',
layout: 'vertical',
borderWidth: 0,
itemStyle: { fontWeight: "normal" },
symbolRadius: 0
},
title: { text: 'A title to let highcharts reserve the place for the title set later' },
navigator: {
maskInside: false
},
rangeSelector: {
buttonSpacing: 0,
buttonTheme: {
fill: '#CFC9C6',
padding: 1,
stroke: '#000000',
'stroke-width': 0.25,
style: {
color: '#000000',
fontWeight: 'bold',
},
states: {
stroke: '#000000',
'stroke-width': 0.25,
hover: {
fill: '#92918C',
style: { color: 'black' }
},
select: {
fill: '#FFA900',
style: { color: 'white' }
}
}
},
buttons : [
{
type : 'minute',
count : 1,
text : '1m'
}, {
type : 'minute',
count : 10,
text : '10m'
}, {
type : 'hour',
count : 1,
text : '1h'
}, {
type : 'all',
count : 1,
text : 'All'
}
],
selected : 3,
inputEnabled : false
},
xAxis: {
type: 'datetime',
ordinal: false,
maxZoom: 10000 // three days
},
yAxis: {
title: { text: 'Number of Active Users' },
opposite: false,
min: 0
},
series: [
{
color: '#5E7BE2',
name: 'débitos',
data: [
[1709855440000,0],[1709855441000,0],[1709855442000,0],[1709855443000,0],[1709855444000,0],[1709855445000,2],[1709855446000,5],[1709855447000,6],[1709855448000,7],[1709855449000,9],[1709855450000,11],[1709855451000,13],[1709855452000,15],[1709855453000,16],[1709855454000,19],[1709855455000,20],[1709855456000,22],[1709855457000,24],[1709855458000,25],[1709855459000,28],[1709855460000,29],[1709855461000,31],[1709855462000,33],[1709855463000,35],[1709855464000,37],[1709855465000,38],[1709855466000,40],[1709855467000,42],[1709855468000,44],[1709855469000,46],[1709855470000,47],[1709855471000,50],[1709855472000,51],[1709855473000,53],[1709855474000,55],[1709855475000,56],[1709855476000,59],[1709855477000,60],[1709855478000,62],[1709855479000,64],[1709855480000,66],[1709855481000,68],[1709855482000,69],[1709855483000,71],[1709855484000,74],[1709855485000,75],[1709855486000,77],[1709855487000,79],[1709855488000,81],[1709855489000,83],[1709855490000,85],[1709855491000,87],[1709855492000,89],[1709855493000,90],[1709855494000,92],[1709855495000,94],[1709855496000,96],[1709855497000,98],[1709855498000,99],[1709855499000,101],[1709855500000,102],[1709855501000,105],[1709855502000,106],[1709855503000,108],[1709855504000,111],[1709855505000,111],[1709855506000,113],[1709855507000,115],[1709855508000,117],[1709855509000,119],[1709855510000,120],[1709855511000,123],[1709855512000,125],[1709855513000,126],[1709855514000,128],[1709855515000,129],[1709855516000,132],[1709855517000,133],[1709855518000,135],[1709855519000,137],[1709855520000,139],[1709855521000,141],[1709855522000,142],[1709855523000,144],[1709855524000,147],[1709855525000,147],[1709855526000,150],[1709855527000,152],[1709855528000,154],[1709855529000,156],[1709855530000,158],[1709855531000,160],[1709855532000,162],[1709855533000,163],[1709855534000,165],[1709855535000,167],[1709855536000,169],[1709855537000,171],[1709855538000,172],[1709855539000,175],[1709855540000,176],[1709855541000,178],[1709855542000,180],[1709855543000,182],[1709855544000,184],[1709855545000,184],[1709855546000,187],[1709855547000,189],[1709855548000,190],[1709855549000,193],[1709855550000,194],[1709855551000,197],[1709855552000,198],[1709855553000,200],[1709855554000,201],[1709855555000,203],[1709855556000,206],[1709855557000,206],[1709855558000,209],[1709855559000,210],[1709855560000,213],[1709855561000,215],[1709855562000,216],[1709855563000,217],[1709855564000,221],[1709855565000,221],[1709855566000,221],[1709855567000,221],[1709855568000,221],[1709855569000,220],[1709855570000,221],[1709855571000,221],[1709855572000,221],[1709855573000,220],[1709855574000,221],[1709855575000,221],[1709855576000,221],[1709855577000,220],[1709855578000,221],[1709855579000,221],[1709855580000,221],[1709855581000,221],[1709855582000,221],[1709855583000,221],[1709855584000,220],[1709855585000,220],[1709855586000,220],[1709855587000,221],[1709855588000,220],[1709855589000,220],[1709855590000,220],[1709855591000,220],[1709855592000,221],[1709855593000,221],[1709855594000,221],[1709855595000,221],[1709855596000,221],[1709855597000,220],[1709855598000,220],[1709855599000,221],[1709855600000,221],[1709855601000,220],[1709855602000,220],[1709855603000,221],[1709855604000,221],[1709855605000,221],[1709855606000,220],[1709855607000,221],[1709855608000,221],[1709855609000,221],[1709855610000,221],[1709855611000,220],[1709855612000,221],[1709855613000,221],[1709855614000,221],[1709855615000,221],[1709855616000,220],[1709855617000,221],[1709855618000,220],[1709855619000,221],[1709855620000,221],[1709855621000,221],[1709855622000,220],[1709855623000,221],[1709855624000,220],[1709855625000,221],[1709855626000,221],[1709855627000,221],[1709855628000,220],[1709855629000,221],[1709855630000,220],[1709855631000,221],[1709855632000,220],[1709855633000,220],[1709855634000,220],[1709855635000,221],[1709855636000,221],[1709855637000,221],[1709855638000,221],[1709855639000,221],[1709855640000,221],[1709855641000,220],[1709855642000,221],[1709855643000,221],[1709855644000,221],[1709855645000,221],[1709855646000,221],[1709855647000,220],[1709855648000,221],[1709855649000,221],[1709855650000,221],[1709855651000,221],[1709855652000,221],[1709855653000,221],[1709855654000,221],[1709855655000,226],[1709855656000,221],[1709855657000,220],[1709855658000,221],[1709855659000,220],[1709855660000,220],[1709855661000,220],[1709855662000,220],[1709855663000,220],[1709855664000,220],[1709855665000,220],[1709855666000,220],[1709855667000,221],[1709855668000,220],[1709855669000,221],[1709855670000,221],[1709855671000,220],[1709855672000,221],[1709855673000,221],[1709855674000,220],[1709855675000,221],[1709855676000,220],[1709855677000,220],[1709855678000,221],[1709855679000,221],[1709855680000,221],[1709855681000,220],[1709855682000,221],[1709855683000,221],[1709855684000,217]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#68b65c',
name: 'créditos',
data: [
[1709855440000,0],[1709855441000,0],[1709855442000,0],[1709855443000,0],[1709855444000,1],[1709855445000,2],[1709855446000,2],[1709855447000,4],[1709855448000,4],[1709855449000,5],[1709855450000,6],[1709855451000,7],[1709855452000,8],[1709855453000,8],[1709855454000,10],[1709855455000,10],[1709855456000,12],[1709855457000,12],[1709855458000,14],[1709855459000,14],[1709855460000,15],[1709855461000,16],[1709855462000,17],[1709855463000,17],[1709855464000,19],[1709855465000,20],[1709855466000,20],[1709855467000,22],[1709855468000,22],[1709855469000,23],[1709855470000,25],[1709855471000,25],[1709855472000,26],[1709855473000,26],[1709855474000,28],[1709855475000,29],[1709855476000,30],[1709855477000,30],[1709855478000,32],[1709855479000,32],[1709855480000,33],[1709855481000,34],[1709855482000,35],[1709855483000,36],[1709855484000,37],[1709855485000,38],[1709855486000,39],[1709855487000,39],[1709855488000,41],[1709855489000,41],[1709855490000,43],[1709855491000,43],[1709855492000,44],[1709855493000,45],[1709855494000,46],[1709855495000,47],[1709855496000,48],[1709855497000,48],[1709855498000,50],[1709855499000,50],[1709855500000,52],[1709855501000,52],[1709855502000,53],[1709855503000,54],[1709855504000,56],[1709855505000,55],[1709855506000,57],[1709855507000,58],[1709855508000,59],[1709855509000,59],[1709855510000,61],[1709855511000,61],[1709855512000,63],[1709855513000,63],[1709855514000,64],[1709855515000,65],[1709855516000,66],[1709855517000,67],[1709855518000,68],[1709855519000,68],[1709855520000,70],[1709855521000,70],[1709855522000,72],[1709855523000,72],[1709855524000,73],[1709855525000,74],[1709855526000,75],[1709855527000,77],[1709855528000,78],[1709855529000,79],[1709855530000,79],[1709855531000,80],[1709855532000,82],[1709855533000,82],[1709855534000,82],[1709855535000,84],[1709855536000,86],[1709855537000,86],[1709855538000,87],[1709855539000,87],[1709855540000,89],[1709855541000,90],[1709855542000,90],[1709855543000,92],[1709855544000,92],[1709855545000,93],[1709855546000,95],[1709855547000,95],[1709855548000,96],[1709855549000,97],[1709855550000,98],[1709855551000,98],[1709855552000,100],[1709855553000,100],[1709855554000,102],[1709855555000,102],[1709855556000,104],[1709855557000,104],[1709855558000,105],[1709855559000,105],[1709855560000,107],[1709855561000,108],[1709855562000,108],[1709855563000,110],[1709855564000,111],[1709855565000,110],[1709855566000,111],[1709855567000,111],[1709855568000,111],[1709855569000,111],[1709855570000,111],[1709855571000,111],[1709855572000,111],[1709855573000,111],[1709855574000,111],[1709855575000,110],[1709855576000,111],[1709855577000,111],[1709855578000,111],[1709855579000,111],[1709855580000,111],[1709855581000,111],[1709855582000,111],[1709855583000,111],[1709855584000,111],[1709855585000,111],[1709855586000,111],[1709855587000,111],[1709855588000,111],[1709855589000,110],[1709855590000,111],[1709855591000,110],[1709855592000,111],[1709855593000,111],[1709855594000,111],[1709855595000,111],[1709855596000,111],[1709855597000,111],[1709855598000,111],[1709855599000,111],[1709855600000,110],[1709855601000,111],[1709855602000,111],[1709855603000,111],[1709855604000,111],[1709855605000,111],[1709855606000,110],[1709855607000,111],[1709855608000,110],[1709855609000,111],[1709855610000,111],[1709855611000,111],[1709855612000,111],[1709855613000,111],[1709855614000,111],[1709855615000,111],[1709855616000,111],[1709855617000,111],[1709855618000,111],[1709855619000,111],[1709855620000,111],[1709855621000,111],[1709855622000,111],[1709855623000,111],[1709855624000,110],[1709855625000,111],[1709855626000,111],[1709855627000,111],[1709855628000,110],[1709855629000,111],[1709855630000,111],[1709855631000,111],[1709855632000,111],[1709855633000,110],[1709855634000,111],[1709855635000,110],[1709855636000,111],[1709855637000,111],[1709855638000,111],[1709855639000,111],[1709855640000,111],[1709855641000,111],[1709855642000,111],[1709855643000,110],[1709855644000,111],[1709855645000,110],[1709855646000,111],[1709855647000,111],[1709855648000,111],[1709855649000,111],[1709855650000,111],[1709855651000,111],[1709855652000,111],[1709855653000,111],[1709855654000,111],[1709855655000,112],[1709855656000,111],[1709855657000,110],[1709855658000,111],[1709855659000,111],[1709855660000,111],[1709855661000,111],[1709855662000,111],[1709855663000,111],[1709855664000,110],[1709855665000,110],[1709855666000,111],[1709855667000,111],[1709855668000,111],[1709855669000,111],[1709855670000,111],[1709855671000,111],[1709855672000,111],[1709855673000,111],[1709855674000,110],[1709855675000,111],[1709855676000,110],[1709855677000,111],[1709855678000,111],[1709855679000,111],[1709855680000,110],[1709855681000,111],[1709855682000,111],[1709855683000,111],[1709855684000,109]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#f15b4f',
name: 'extratos',
data: [
[1709855440000,0],[1709855441000,0],[1709855442000,0],[1709855443000,0],[1709855444000,1],[1709855445000,2],[1709855446000,1],[1709855447000,1],[1709855448000,1],[1709855449000,1],[1709855450000,2],[1709855451000,1],[1709855452000,2],[1709855453000,2],[1709855454000,1],[1709855455000,2],[1709855456000,2],[1709855457000,2],[1709855458000,2],[1709855459000,2],[1709855460000,2],[1709855461000,2],[1709855462000,3],[1709855463000,2],[1709855464000,3],[1709855465000,2],[1709855466000,3],[1709855467000,2],[1709855468000,3],[1709855469000,3],[1709855470000,3],[1709855471000,3],[1709855472000,3],[1709855473000,3],[1709855474000,3],[1709855475000,4],[1709855476000,3],[1709855477000,3],[1709855478000,4],[1709855479000,3],[1709855480000,4],[1709855481000,4],[1709855482000,4],[1709855483000,4],[1709855484000,4],[1709855485000,4],[1709855486000,4],[1709855487000,4],[1709855488000,4],[1709855489000,4],[1709855490000,5],[1709855491000,4],[1709855492000,5],[1709855493000,5],[1709855494000,4],[1709855495000,5],[1709855496000,5],[1709855497000,5],[1709855498000,5],[1709855499000,5],[1709855500000,5],[1709855501000,5],[1709855502000,6],[1709855503000,5],[1709855504000,6],[1709855505000,5],[1709855506000,6],[1709855507000,5],[1709855508000,6],[1709855509000,6],[1709855510000,6],[1709855511000,6],[1709855512000,6],[1709855513000,6],[1709855514000,6],[1709855515000,7],[1709855516000,6],[1709855517000,6],[1709855518000,7],[1709855519000,6],[1709855520000,7],[1709855521000,7],[1709855522000,7],[1709855523000,7],[1709855524000,7],[1709855525000,7],[1709855526000,7],[1709855527000,7],[1709855528000,7],[1709855529000,7],[1709855530000,8],[1709855531000,7],[1709855532000,8],[1709855533000,8],[1709855534000,7],[1709855535000,8],[1709855536000,8],[1709855537000,8],[1709855538000,8],[1709855539000,8],[1709855540000,8],[1709855541000,8],[1709855542000,9],[1709855543000,8],[1709855544000,9],[1709855545000,8],[1709855546000,9],[1709855547000,8],[1709855548000,9],[1709855549000,9],[1709855550000,9],[1709855551000,9],[1709855552000,9],[1709855553000,9],[1709855554000,9],[1709855555000,10],[1709855556000,9],[1709855557000,9],[1709855558000,10],[1709855559000,9],[1709855560000,10],[1709855561000,10],[1709855562000,10],[1709855563000,10],[1709855564000,10],[1709855565000,10],[1709855566000,10],[1709855567000,10],[1709855568000,10],[1709855569000,10],[1709855570000,10],[1709855571000,10],[1709855572000,10],[1709855573000,10],[1709855574000,10],[1709855575000,10],[1709855576000,10],[1709855577000,10],[1709855578000,11],[1709855579000,10],[1709855580000,10],[1709855581000,10],[1709855582000,10],[1709855583000,10],[1709855584000,10],[1709855585000,10],[1709855586000,10],[1709855587000,10],[1709855588000,10],[1709855589000,10],[1709855590000,10],[1709855591000,10],[1709855592000,10],[1709855593000,10],[1709855594000,10],[1709855595000,10],[1709855596000,10],[1709855597000,10],[1709855598000,10],[1709855599000,10],[1709855600000,10],[1709855601000,10],[1709855602000,10],[1709855603000,10],[1709855604000,10],[1709855605000,10],[1709855606000,10],[1709855607000,10],[1709855608000,10],[1709855609000,10],[1709855610000,10],[1709855611000,10],[1709855612000,10],[1709855613000,10],[1709855614000,10],[1709855615000,10],[1709855616000,10],[1709855617000,10],[1709855618000,10],[1709855619000,10],[1709855620000,10],[1709855621000,10],[1709855622000,10],[1709855623000,10],[1709855624000,10],[1709855625000,10],[1709855626000,10],[1709855627000,10],[1709855628000,10],[1709855629000,10],[1709855630000,10],[1709855631000,10],[1709855632000,10],[1709855633000,10],[1709855634000,10],[1709855635000,10],[1709855636000,10],[1709855637000,10],[1709855638000,10],[1709855639000,10],[1709855640000,10],[1709855641000,10],[1709855642000,10],[1709855643000,10],[1709855644000,10],[1709855645000,10],[1709855646000,10],[1709855647000,10],[1709855648000,10],[1709855649000,10],[1709855650000,10],[1709855651000,10],[1709855652000,10],[1709855653000,10],[1709855654000,10],[1709855655000,11],[1709855656000,10],[1709855657000,10],[1709855658000,10],[1709855659000,10],[1709855660000,10],[1709855661000,10],[1709855662000,10],[1709855663000,10],[1709855664000,10],[1709855665000,10],[1709855666000,10],[1709855667000,10],[1709855668000,10],[1709855669000,10],[1709855670000,10],[1709855671000,10],[1709855672000,10],[1709855673000,10],[1709855674000,10],[1709855675000,10],[1709855676000,10],[1709855677000,10],[1709855678000,10],[1709855679000,10],[1709855680000,10],[1709855681000,10],[1709855682000,10],[1709855683000,10],[1709855684000,9]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FFDD00',
name: 'validação HTTP 404',
data: [
[1709855440000,0],[1709855441000,0],[1709855442000,0],[1709855443000,1],[1709855444000,0],[1709855445000,0],[1709855446000,0],[1709855447000,0],[1709855448000,0],[1709855449000,0],[1709855450000,0],[1709855451000,0],[1709855452000,0],[1709855453000,0],[1709855454000,0],[1709855455000,0],[1709855456000,0],[1709855457000,0],[1709855458000,0],[1709855459000,0],[1709855460000,0],[1709855461000,0],[1709855462000,0],[1709855463000,0],[1709855464000,0],[1709855465000,0],[1709855466000,0],[1709855467000,0],[1709855468000,0],[1709855469000,0],[1709855470000,0],[1709855471000,0],[1709855472000,0],[1709855473000,0],[1709855474000,0],[1709855475000,0],[1709855476000,0],[1709855477000,0],[1709855478000,0],[1709855479000,0],[1709855480000,0],[1709855481000,0],[1709855482000,0],[1709855483000,0],[1709855484000,0],[1709855485000,0],[1709855486000,0],[1709855487000,0],[1709855488000,0],[1709855489000,0],[1709855490000,0],[1709855491000,0],[1709855492000,0],[1709855493000,0],[1709855494000,0],[1709855495000,0],[1709855496000,0],[1709855497000,0],[1709855498000,0],[1709855499000,0],[1709855500000,0],[1709855501000,0],[1709855502000,0],[1709855503000,0],[1709855504000,0],[1709855505000,0],[1709855506000,0],[1709855507000,0],[1709855508000,0],[1709855509000,0],[1709855510000,0],[1709855511000,0],[1709855512000,0],[1709855513000,0],[1709855514000,0],[1709855515000,0],[1709855516000,0],[1709855517000,0],[1709855518000,0],[1709855519000,0],[1709855520000,0],[1709855521000,0],[1709855522000,0],[1709855523000,0],[1709855524000,0],[1709855525000,0],[1709855526000,0],[1709855527000,0],[1709855528000,0],[1709855529000,0],[1709855530000,0],[1709855531000,0],[1709855532000,0],[1709855533000,0],[1709855534000,0],[1709855535000,0],[1709855536000,0],[1709855537000,0],[1709855538000,0],[1709855539000,0],[1709855540000,0],[1709855541000,0],[1709855542000,0],[1709855543000,0],[1709855544000,0],[1709855545000,0],[1709855546000,0],[1709855547000,0],[1709855548000,0],[1709855549000,0],[1709855550000,0],[1709855551000,0],[1709855552000,0],[1709855553000,0],[1709855554000,0],[1709855555000,0],[1709855556000,0],[1709855557000,0],[1709855558000,0],[1709855559000,0],[1709855560000,0],[1709855561000,0],[1709855562000,0],[1709855563000,0],[1709855564000,0],[1709855565000,0],[1709855566000,0],[1709855567000,0],[1709855568000,0],[1709855569000,0],[1709855570000,0],[1709855571000,0],[1709855572000,0],[1709855573000,0],[1709855574000,0],[1709855575000,0],[1709855576000,0],[1709855577000,0],[1709855578000,0],[1709855579000,0],[1709855580000,0],[1709855581000,0],[1709855582000,0],[1709855583000,0],[1709855584000,0],[1709855585000,0],[1709855586000,0],[1709855587000,0],[1709855588000,0],[1709855589000,0],[1709855590000,0],[1709855591000,0],[1709855592000,0],[1709855593000,0],[1709855594000,0],[1709855595000,0],[1709855596000,0],[1709855597000,0],[1709855598000,0],[1709855599000,0],[1709855600000,0],[1709855601000,0],[1709855602000,0],[1709855603000,0],[1709855604000,0],[1709855605000,0],[1709855606000,0],[1709855607000,0],[1709855608000,0],[1709855609000,0],[1709855610000,0],[1709855611000,0],[1709855612000,0],[1709855613000,0],[1709855614000,0],[1709855615000,0],[1709855616000,0],[1709855617000,0],[1709855618000,0],[1709855619000,0],[1709855620000,0],[1709855621000,0],[1709855622000,0],[1709855623000,0],[1709855624000,0],[1709855625000,0],[1709855626000,0],[1709855627000,0],[1709855628000,0],[1709855629000,0],[1709855630000,0],[1709855631000,0],[1709855632000,0],[1709855633000,0],[1709855634000,0],[1709855635000,0],[1709855636000,0],[1709855637000,0],[1709855638000,0],[1709855639000,0],[1709855640000,0],[1709855641000,0],[1709855642000,0],[1709855643000,0],[1709855644000,0],[1709855645000,0],[1709855646000,0],[1709855647000,0],[1709855648000,0],[1709855649000,0],[1709855650000,0],[1709855651000,0],[1709855652000,0],[1709855653000,0],[1709855654000,0],[1709855655000,0],[1709855656000,0],[1709855657000,0],[1709855658000,0],[1709855659000,0],[1709855660000,0],[1709855661000,0],[1709855662000,0],[1709855663000,0],[1709855664000,0],[1709855665000,0],[1709855666000,0],[1709855667000,0],[1709855668000,0],[1709855669000,0],[1709855670000,0],[1709855671000,0],[1709855672000,0],[1709855673000,0],[1709855674000,0],[1709855675000,0],[1709855676000,0],[1709855677000,0],[1709855678000,0],[1709855679000,0],[1709855680000,0],[1709855681000,0],[1709855682000,0],[1709855683000,0],[1709855684000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00D5FF',
name: 'validações',
data: [
[1709855440000,0],[1709855441000,0],[1709855442000,0],[1709855443000,5],[1709855444000,5],[1709855445000,0],[1709855446000,0],[1709855447000,0],[1709855448000,0],[1709855449000,0],[1709855450000,0],[1709855451000,0],[1709855452000,0],[1709855453000,0],[1709855454000,0],[1709855455000,0],[1709855456000,0],[1709855457000,0],[1709855458000,0],[1709855459000,0],[1709855460000,0],[1709855461000,0],[1709855462000,0],[1709855463000,0],[1709855464000,0],[1709855465000,0],[1709855466000,0],[1709855467000,0],[1709855468000,0],[1709855469000,0],[1709855470000,0],[1709855471000,0],[1709855472000,0],[1709855473000,0],[1709855474000,0],[1709855475000,0],[1709855476000,0],[1709855477000,0],[1709855478000,0],[1709855479000,0],[1709855480000,0],[1709855481000,0],[1709855482000,0],[1709855483000,0],[1709855484000,0],[1709855485000,0],[1709855486000,0],[1709855487000,0],[1709855488000,0],[1709855489000,0],[1709855490000,0],[1709855491000,0],[1709855492000,0],[1709855493000,0],[1709855494000,0],[1709855495000,0],[1709855496000,0],[1709855497000,0],[1709855498000,0],[1709855499000,0],[1709855500000,0],[1709855501000,0],[1709855502000,0],[1709855503000,0],[1709855504000,0],[1709855505000,0],[1709855506000,0],[1709855507000,0],[1709855508000,0],[1709855509000,0],[1709855510000,0],[1709855511000,0],[1709855512000,0],[1709855513000,0],[1709855514000,0],[1709855515000,0],[1709855516000,0],[1709855517000,0],[1709855518000,0],[1709855519000,0],[1709855520000,0],[1709855521000,0],[1709855522000,0],[1709855523000,0],[1709855524000,0],[1709855525000,0],[1709855526000,0],[1709855527000,0],[1709855528000,0],[1709855529000,0],[1709855530000,0],[1709855531000,0],[1709855532000,0],[1709855533000,0],[1709855534000,0],[1709855535000,0],[1709855536000,0],[1709855537000,0],[1709855538000,0],[1709855539000,0],[1709855540000,0],[1709855541000,0],[1709855542000,0],[1709855543000,0],[1709855544000,0],[1709855545000,0],[1709855546000,0],[1709855547000,0],[1709855548000,0],[1709855549000,0],[1709855550000,0],[1709855551000,0],[1709855552000,0],[1709855553000,0],[1709855554000,0],[1709855555000,0],[1709855556000,0],[1709855557000,0],[1709855558000,0],[1709855559000,0],[1709855560000,0],[1709855561000,0],[1709855562000,0],[1709855563000,0],[1709855564000,0],[1709855565000,0],[1709855566000,0],[1709855567000,0],[1709855568000,0],[1709855569000,0],[1709855570000,0],[1709855571000,0],[1709855572000,0],[1709855573000,0],[1709855574000,0],[1709855575000,0],[1709855576000,0],[1709855577000,0],[1709855578000,0],[1709855579000,0],[1709855580000,0],[1709855581000,0],[1709855582000,0],[1709855583000,0],[1709855584000,0],[1709855585000,0],[1709855586000,0],[1709855587000,0],[1709855588000,0],[1709855589000,0],[1709855590000,0],[1709855591000,0],[1709855592000,0],[1709855593000,0],[1709855594000,0],[1709855595000,0],[1709855596000,0],[1709855597000,0],[1709855598000,0],[1709855599000,0],[1709855600000,0],[1709855601000,0],[1709855602000,0],[1709855603000,0],[1709855604000,0],[1709855605000,0],[1709855606000,0],[1709855607000,0],[1709855608000,0],[1709855609000,0],[1709855610000,0],[1709855611000,0],[1709855612000,0],[1709855613000,0],[1709855614000,0],[1709855615000,0],[1709855616000,0],[1709855617000,0],[1709855618000,0],[1709855619000,0],[1709855620000,0],[1709855621000,0],[1709855622000,0],[1709855623000,0],[1709855624000,0],[1709855625000,0],[1709855626000,0],[1709855627000,0],[1709855628000,0],[1709855629000,0],[1709855630000,0],[1709855631000,0],[1709855632000,0],[1709855633000,0],[1709855634000,0],[1709855635000,0],[1709855636000,0],[1709855637000,0],[1709855638000,0],[1709855639000,0],[1709855640000,0],[1709855641000,0],[1709855642000,0],[1709855643000,0],[1709855644000,0],[1709855645000,0],[1709855646000,0],[1709855647000,0],[1709855648000,0],[1709855649000,0],[1709855650000,0],[1709855651000,0],[1709855652000,0],[1709855653000,0],[1709855654000,0],[1709855655000,0],[1709855656000,0],[1709855657000,0],[1709855658000,0],[1709855659000,0],[1709855660000,0],[1709855661000,0],[1709855662000,0],[1709855663000,0],[1709855664000,0],[1709855665000,0],[1709855666000,0],[1709855667000,0],[1709855668000,0],[1709855669000,0],[1709855670000,0],[1709855671000,0],[1709855672000,0],[1709855673000,0],[1709855674000,0],[1709855675000,0],[1709855676000,0],[1709855677000,0],[1709855678000,0],[1709855679000,0],[1709855680000,0],[1709855681000,0],[1709855682000,0],[1709855683000,0],[1709855684000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00FF00',
name: 'validação concorrência saldo - 0',
data: [
[1709855440000,0],[1709855441000,0],[1709855442000,1],[1709855443000,0],[1709855444000,0],[1709855445000,0],[1709855446000,0],[1709855447000,0],[1709855448000,0],[1709855449000,0],[1709855450000,0],[1709855451000,0],[1709855452000,0],[1709855453000,0],[1709855454000,0],[1709855455000,0],[1709855456000,0],[1709855457000,0],[1709855458000,0],[1709855459000,0],[1709855460000,0],[1709855461000,0],[1709855462000,0],[1709855463000,0],[1709855464000,0],[1709855465000,0],[1709855466000,0],[1709855467000,0],[1709855468000,0],[1709855469000,0],[1709855470000,0],[1709855471000,0],[1709855472000,0],[1709855473000,0],[1709855474000,0],[1709855475000,0],[1709855476000,0],[1709855477000,0],[1709855478000,0],[1709855479000,0],[1709855480000,0],[1709855481000,0],[1709855482000,0],[1709855483000,0],[1709855484000,0],[1709855485000,0],[1709855486000,0],[1709855487000,0],[1709855488000,0],[1709855489000,0],[1709855490000,0],[1709855491000,0],[1709855492000,0],[1709855493000,0],[1709855494000,0],[1709855495000,0],[1709855496000,0],[1709855497000,0],[1709855498000,0],[1709855499000,0],[1709855500000,0],[1709855501000,0],[1709855502000,0],[1709855503000,0],[1709855504000,0],[1709855505000,0],[1709855506000,0],[1709855507000,0],[1709855508000,0],[1709855509000,0],[1709855510000,0],[1709855511000,0],[1709855512000,0],[1709855513000,0],[1709855514000,0],[1709855515000,0],[1709855516000,0],[1709855517000,0],[1709855518000,0],[1709855519000,0],[1709855520000,0],[1709855521000,0],[1709855522000,0],[1709855523000,0],[1709855524000,0],[1709855525000,0],[1709855526000,0],[1709855527000,0],[1709855528000,0],[1709855529000,0],[1709855530000,0],[1709855531000,0],[1709855532000,0],[1709855533000,0],[1709855534000,0],[1709855535000,0],[1709855536000,0],[1709855537000,0],[1709855538000,0],[1709855539000,0],[1709855540000,0],[1709855541000,0],[1709855542000,0],[1709855543000,0],[1709855544000,0],[1709855545000,0],[1709855546000,0],[1709855547000,0],[1709855548000,0],[1709855549000,0],[1709855550000,0],[1709855551000,0],[1709855552000,0],[1709855553000,0],[1709855554000,0],[1709855555000,0],[1709855556000,0],[1709855557000,0],[1709855558000,0],[1709855559000,0],[1709855560000,0],[1709855561000,0],[1709855562000,0],[1709855563000,0],[1709855564000,0],[1709855565000,0],[1709855566000,0],[1709855567000,0],[1709855568000,0],[1709855569000,0],[1709855570000,0],[1709855571000,0],[1709855572000,0],[1709855573000,0],[1709855574000,0],[1709855575000,0],[1709855576000,0],[1709855577000,0],[1709855578000,0],[1709855579000,0],[1709855580000,0],[1709855581000,0],[1709855582000,0],[1709855583000,0],[1709855584000,0],[1709855585000,0],[1709855586000,0],[1709855587000,0],[1709855588000,0],[1709855589000,0],[1709855590000,0],[1709855591000,0],[1709855592000,0],[1709855593000,0],[1709855594000,0],[1709855595000,0],[1709855596000,0],[1709855597000,0],[1709855598000,0],[1709855599000,0],[1709855600000,0],[1709855601000,0],[1709855602000,0],[1709855603000,0],[1709855604000,0],[1709855605000,0],[1709855606000,0],[1709855607000,0],[1709855608000,0],[1709855609000,0],[1709855610000,0],[1709855611000,0],[1709855612000,0],[1709855613000,0],[1709855614000,0],[1709855615000,0],[1709855616000,0],[1709855617000,0],[1709855618000,0],[1709855619000,0],[1709855620000,0],[1709855621000,0],[1709855622000,0],[1709855623000,0],[1709855624000,0],[1709855625000,0],[1709855626000,0],[1709855627000,0],[1709855628000,0],[1709855629000,0],[1709855630000,0],[1709855631000,0],[1709855632000,0],[1709855633000,0],[1709855634000,0],[1709855635000,0],[1709855636000,0],[1709855637000,0],[1709855638000,0],[1709855639000,0],[1709855640000,0],[1709855641000,0],[1709855642000,0],[1709855643000,0],[1709855644000,0],[1709855645000,0],[1709855646000,0],[1709855647000,0],[1709855648000,0],[1709855649000,0],[1709855650000,0],[1709855651000,0],[1709855652000,0],[1709855653000,0],[1709855654000,0],[1709855655000,0],[1709855656000,0],[1709855657000,0],[1709855658000,0],[1709855659000,0],[1709855660000,0],[1709855661000,0],[1709855662000,0],[1709855663000,0],[1709855664000,0],[1709855665000,0],[1709855666000,0],[1709855667000,0],[1709855668000,0],[1709855669000,0],[1709855670000,0],[1709855671000,0],[1709855672000,0],[1709855673000,0],[1709855674000,0],[1709855675000,0],[1709855676000,0],[1709855677000,0],[1709855678000,0],[1709855679000,0],[1709855680000,0],[1709855681000,0],[1709855682000,0],[1709855683000,0],[1709855684000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#9D00FF',
name: 'validação concorrência transações - c',
data: [
[1709855440000,0],[1709855441000,25],[1709855442000,25],[1709855443000,0],[1709855444000,0],[1709855445000,0],[1709855446000,0],[1709855447000,0],[1709855448000,0],[1709855449000,0],[1709855450000,0],[1709855451000,0],[1709855452000,0],[1709855453000,0],[1709855454000,0],[1709855455000,0],[1709855456000,0],[1709855457000,0],[1709855458000,0],[1709855459000,0],[1709855460000,0],[1709855461000,0],[1709855462000,0],[1709855463000,0],[1709855464000,0],[1709855465000,0],[1709855466000,0],[1709855467000,0],[1709855468000,0],[1709855469000,0],[1709855470000,0],[1709855471000,0],[1709855472000,0],[1709855473000,0],[1709855474000,0],[1709855475000,0],[1709855476000,0],[1709855477000,0],[1709855478000,0],[1709855479000,0],[1709855480000,0],[1709855481000,0],[1709855482000,0],[1709855483000,0],[1709855484000,0],[1709855485000,0],[1709855486000,0],[1709855487000,0],[1709855488000,0],[1709855489000,0],[1709855490000,0],[1709855491000,0],[1709855492000,0],[1709855493000,0],[1709855494000,0],[1709855495000,0],[1709855496000,0],[1709855497000,0],[1709855498000,0],[1709855499000,0],[1709855500000,0],[1709855501000,0],[1709855502000,0],[1709855503000,0],[1709855504000,0],[1709855505000,0],[1709855506000,0],[1709855507000,0],[1709855508000,0],[1709855509000,0],[1709855510000,0],[1709855511000,0],[1709855512000,0],[1709855513000,0],[1709855514000,0],[1709855515000,0],[1709855516000,0],[1709855517000,0],[1709855518000,0],[1709855519000,0],[1709855520000,0],[1709855521000,0],[1709855522000,0],[1709855523000,0],[1709855524000,0],[1709855525000,0],[1709855526000,0],[1709855527000,0],[1709855528000,0],[1709855529000,0],[1709855530000,0],[1709855531000,0],[1709855532000,0],[1709855533000,0],[1709855534000,0],[1709855535000,0],[1709855536000,0],[1709855537000,0],[1709855538000,0],[1709855539000,0],[1709855540000,0],[1709855541000,0],[1709855542000,0],[1709855543000,0],[1709855544000,0],[1709855545000,0],[1709855546000,0],[1709855547000,0],[1709855548000,0],[1709855549000,0],[1709855550000,0],[1709855551000,0],[1709855552000,0],[1709855553000,0],[1709855554000,0],[1709855555000,0],[1709855556000,0],[1709855557000,0],[1709855558000,0],[1709855559000,0],[1709855560000,0],[1709855561000,0],[1709855562000,0],[1709855563000,0],[1709855564000,0],[1709855565000,0],[1709855566000,0],[1709855567000,0],[1709855568000,0],[1709855569000,0],[1709855570000,0],[1709855571000,0],[1709855572000,0],[1709855573000,0],[1709855574000,0],[1709855575000,0],[1709855576000,0],[1709855577000,0],[1709855578000,0],[1709855579000,0],[1709855580000,0],[1709855581000,0],[1709855582000,0],[1709855583000,0],[1709855584000,0],[1709855585000,0],[1709855586000,0],[1709855587000,0],[1709855588000,0],[1709855589000,0],[1709855590000,0],[1709855591000,0],[1709855592000,0],[1709855593000,0],[1709855594000,0],[1709855595000,0],[1709855596000,0],[1709855597000,0],[1709855598000,0],[1709855599000,0],[1709855600000,0],[1709855601000,0],[1709855602000,0],[1709855603000,0],[1709855604000,0],[1709855605000,0],[1709855606000,0],[1709855607000,0],[1709855608000,0],[1709855609000,0],[1709855610000,0],[1709855611000,0],[1709855612000,0],[1709855613000,0],[1709855614000,0],[1709855615000,0],[1709855616000,0],[1709855617000,0],[1709855618000,0],[1709855619000,0],[1709855620000,0],[1709855621000,0],[1709855622000,0],[1709855623000,0],[1709855624000,0],[1709855625000,0],[1709855626000,0],[1709855627000,0],[1709855628000,0],[1709855629000,0],[1709855630000,0],[1709855631000,0],[1709855632000,0],[1709855633000,0],[1709855634000,0],[1709855635000,0],[1709855636000,0],[1709855637000,0],[1709855638000,0],[1709855639000,0],[1709855640000,0],[1709855641000,0],[1709855642000,0],[1709855643000,0],[1709855644000,0],[1709855645000,0],[1709855646000,0],[1709855647000,0],[1709855648000,0],[1709855649000,0],[1709855650000,0],[1709855651000,0],[1709855652000,0],[1709855653000,0],[1709855654000,0],[1709855655000,0],[1709855656000,0],[1709855657000,0],[1709855658000,0],[1709855659000,0],[1709855660000,0],[1709855661000,0],[1709855662000,0],[1709855663000,0],[1709855664000,0],[1709855665000,0],[1709855666000,0],[1709855667000,0],[1709855668000,0],[1709855669000,0],[1709855670000,0],[1709855671000,0],[1709855672000,0],[1709855673000,0],[1709855674000,0],[1709855675000,0],[1709855676000,0],[1709855677000,0],[1709855678000,0],[1709855679000,0],[1709855680000,0],[1709855681000,0],[1709855682000,0],[1709855683000,0],[1709855684000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FF00E1',
name: 'validação concorrência saldo - -25',
data: [
[1709855440000,1],[1709855441000,1],[1709855442000,0],[1709855443000,0],[1709855444000,0],[1709855445000,0],[1709855446000,0],[1709855447000,0],[1709855448000,0],[1709855449000,0],[1709855450000,0],[1709855451000,0],[1709855452000,0],[1709855453000,0],[1709855454000,0],[1709855455000,0],[1709855456000,0],[1709855457000,0],[1709855458000,0],[1709855459000,0],[1709855460000,0],[1709855461000,0],[1709855462000,0],[1709855463000,0],[1709855464000,0],[1709855465000,0],[1709855466000,0],[1709855467000,0],[1709855468000,0],[1709855469000,0],[1709855470000,0],[1709855471000,0],[1709855472000,0],[1709855473000,0],[1709855474000,0],[1709855475000,0],[1709855476000,0],[1709855477000,0],[1709855478000,0],[1709855479000,0],[1709855480000,0],[1709855481000,0],[1709855482000,0],[1709855483000,0],[1709855484000,0],[1709855485000,0],[1709855486000,0],[1709855487000,0],[1709855488000,0],[1709855489000,0],[1709855490000,0],[1709855491000,0],[1709855492000,0],[1709855493000,0],[1709855494000,0],[1709855495000,0],[1709855496000,0],[1709855497000,0],[1709855498000,0],[1709855499000,0],[1709855500000,0],[1709855501000,0],[1709855502000,0],[1709855503000,0],[1709855504000,0],[1709855505000,0],[1709855506000,0],[1709855507000,0],[1709855508000,0],[1709855509000,0],[1709855510000,0],[1709855511000,0],[1709855512000,0],[1709855513000,0],[1709855514000,0],[1709855515000,0],[1709855516000,0],[1709855517000,0],[1709855518000,0],[1709855519000,0],[1709855520000,0],[1709855521000,0],[1709855522000,0],[1709855523000,0],[1709855524000,0],[1709855525000,0],[1709855526000,0],[1709855527000,0],[1709855528000,0],[1709855529000,0],[1709855530000,0],[1709855531000,0],[1709855532000,0],[1709855533000,0],[1709855534000,0],[1709855535000,0],[1709855536000,0],[1709855537000,0],[1709855538000,0],[1709855539000,0],[1709855540000,0],[1709855541000,0],[1709855542000,0],[1709855543000,0],[1709855544000,0],[1709855545000,0],[1709855546000,0],[1709855547000,0],[1709855548000,0],[1709855549000,0],[1709855550000,0],[1709855551000,0],[1709855552000,0],[1709855553000,0],[1709855554000,0],[1709855555000,0],[1709855556000,0],[1709855557000,0],[1709855558000,0],[1709855559000,0],[1709855560000,0],[1709855561000,0],[1709855562000,0],[1709855563000,0],[1709855564000,0],[1709855565000,0],[1709855566000,0],[1709855567000,0],[1709855568000,0],[1709855569000,0],[1709855570000,0],[1709855571000,0],[1709855572000,0],[1709855573000,0],[1709855574000,0],[1709855575000,0],[1709855576000,0],[1709855577000,0],[1709855578000,0],[1709855579000,0],[1709855580000,0],[1709855581000,0],[1709855582000,0],[1709855583000,0],[1709855584000,0],[1709855585000,0],[1709855586000,0],[1709855587000,0],[1709855588000,0],[1709855589000,0],[1709855590000,0],[1709855591000,0],[1709855592000,0],[1709855593000,0],[1709855594000,0],[1709855595000,0],[1709855596000,0],[1709855597000,0],[1709855598000,0],[1709855599000,0],[1709855600000,0],[1709855601000,0],[1709855602000,0],[1709855603000,0],[1709855604000,0],[1709855605000,0],[1709855606000,0],[1709855607000,0],[1709855608000,0],[1709855609000,0],[1709855610000,0],[1709855611000,0],[1709855612000,0],[1709855613000,0],[1709855614000,0],[1709855615000,0],[1709855616000,0],[1709855617000,0],[1709855618000,0],[1709855619000,0],[1709855620000,0],[1709855621000,0],[1709855622000,0],[1709855623000,0],[1709855624000,0],[1709855625000,0],[1709855626000,0],[1709855627000,0],[1709855628000,0],[1709855629000,0],[1709855630000,0],[1709855631000,0],[1709855632000,0],[1709855633000,0],[1709855634000,0],[1709855635000,0],[1709855636000,0],[1709855637000,0],[1709855638000,0],[1709855639000,0],[1709855640000,0],[1709855641000,0],[1709855642000,0],[1709855643000,0],[1709855644000,0],[1709855645000,0],[1709855646000,0],[1709855647000,0],[1709855648000,0],[1709855649000,0],[1709855650000,0],[1709855651000,0],[1709855652000,0],[1709855653000,0],[1709855654000,0],[1709855655000,0],[1709855656000,0],[1709855657000,0],[1709855658000,0],[1709855659000,0],[1709855660000,0],[1709855661000,0],[1709855662000,0],[1709855663000,0],[1709855664000,0],[1709855665000,0],[1709855666000,0],[1709855667000,0],[1709855668000,0],[1709855669000,0],[1709855670000,0],[1709855671000,0],[1709855672000,0],[1709855673000,0],[1709855674000,0],[1709855675000,0],[1709855676000,0],[1709855677000,0],[1709855678000,0],[1709855679000,0],[1709855680000,0],[1709855681000,0],[1709855682000,0],[1709855683000,0],[1709855684000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#AECAEB',
name: 'validação concorrência transações - d',
data: [
[1709855440000,25],[1709855441000,0],[1709855442000,0],[1709855443000,0],[1709855444000,0],[1709855445000,0],[1709855446000,0],[1709855447000,0],[1709855448000,0],[1709855449000,0],[1709855450000,0],[1709855451000,0],[1709855452000,0],[1709855453000,0],[1709855454000,0],[1709855455000,0],[1709855456000,0],[1709855457000,0],[1709855458000,0],[1709855459000,0],[1709855460000,0],[1709855461000,0],[1709855462000,0],[1709855463000,0],[1709855464000,0],[1709855465000,0],[1709855466000,0],[1709855467000,0],[1709855468000,0],[1709855469000,0],[1709855470000,0],[1709855471000,0],[1709855472000,0],[1709855473000,0],[1709855474000,0],[1709855475000,0],[1709855476000,0],[1709855477000,0],[1709855478000,0],[1709855479000,0],[1709855480000,0],[1709855481000,0],[1709855482000,0],[1709855483000,0],[1709855484000,0],[1709855485000,0],[1709855486000,0],[1709855487000,0],[1709855488000,0],[1709855489000,0],[1709855490000,0],[1709855491000,0],[1709855492000,0],[1709855493000,0],[1709855494000,0],[1709855495000,0],[1709855496000,0],[1709855497000,0],[1709855498000,0],[1709855499000,0],[1709855500000,0],[1709855501000,0],[1709855502000,0],[1709855503000,0],[1709855504000,0],[1709855505000,0],[1709855506000,0],[1709855507000,0],[1709855508000,0],[1709855509000,0],[1709855510000,0],[1709855511000,0],[1709855512000,0],[1709855513000,0],[1709855514000,0],[1709855515000,0],[1709855516000,0],[1709855517000,0],[1709855518000,0],[1709855519000,0],[1709855520000,0],[1709855521000,0],[1709855522000,0],[1709855523000,0],[1709855524000,0],[1709855525000,0],[1709855526000,0],[1709855527000,0],[1709855528000,0],[1709855529000,0],[1709855530000,0],[1709855531000,0],[1709855532000,0],[1709855533000,0],[1709855534000,0],[1709855535000,0],[1709855536000,0],[1709855537000,0],[1709855538000,0],[1709855539000,0],[1709855540000,0],[1709855541000,0],[1709855542000,0],[1709855543000,0],[1709855544000,0],[1709855545000,0],[1709855546000,0],[1709855547000,0],[1709855548000,0],[1709855549000,0],[1709855550000,0],[1709855551000,0],[1709855552000,0],[1709855553000,0],[1709855554000,0],[1709855555000,0],[1709855556000,0],[1709855557000,0],[1709855558000,0],[1709855559000,0],[1709855560000,0],[1709855561000,0],[1709855562000,0],[1709855563000,0],[1709855564000,0],[1709855565000,0],[1709855566000,0],[1709855567000,0],[1709855568000,0],[1709855569000,0],[1709855570000,0],[1709855571000,0],[1709855572000,0],[1709855573000,0],[1709855574000,0],[1709855575000,0],[1709855576000,0],[1709855577000,0],[1709855578000,0],[1709855579000,0],[1709855580000,0],[1709855581000,0],[1709855582000,0],[1709855583000,0],[1709855584000,0],[1709855585000,0],[1709855586000,0],[1709855587000,0],[1709855588000,0],[1709855589000,0],[1709855590000,0],[1709855591000,0],[1709855592000,0],[1709855593000,0],[1709855594000,0],[1709855595000,0],[1709855596000,0],[1709855597000,0],[1709855598000,0],[1709855599000,0],[1709855600000,0],[1709855601000,0],[1709855602000,0],[1709855603000,0],[1709855604000,0],[1709855605000,0],[1709855606000,0],[1709855607000,0],[1709855608000,0],[1709855609000,0],[1709855610000,0],[1709855611000,0],[1709855612000,0],[1709855613000,0],[1709855614000,0],[1709855615000,0],[1709855616000,0],[1709855617000,0],[1709855618000,0],[1709855619000,0],[1709855620000,0],[1709855621000,0],[1709855622000,0],[1709855623000,0],[1709855624000,0],[1709855625000,0],[1709855626000,0],[1709855627000,0],[1709855628000,0],[1709855629000,0],[1709855630000,0],[1709855631000,0],[1709855632000,0],[1709855633000,0],[1709855634000,0],[1709855635000,0],[1709855636000,0],[1709855637000,0],[1709855638000,0],[1709855639000,0],[1709855640000,0],[1709855641000,0],[1709855642000,0],[1709855643000,0],[1709855644000,0],[1709855645000,0],[1709855646000,0],[1709855647000,0],[1709855648000,0],[1709855649000,0],[1709855650000,0],[1709855651000,0],[1709855652000,0],[1709855653000,0],[1709855654000,0],[1709855655000,0],[1709855656000,0],[1709855657000,0],[1709855658000,0],[1709855659000,0],[1709855660000,0],[1709855661000,0],[1709855662000,0],[1709855663000,0],[1709855664000,0],[1709855665000,0],[1709855666000,0],[1709855667000,0],[1709855668000,0],[1709855669000,0],[1709855670000,0],[1709855671000,0],[1709855672000,0],[1709855673000,0],[1709855674000,0],[1709855675000,0],[1709855676000,0],[1709855677000,0],[1709855678000,0],[1709855679000,0],[1709855680000,0],[1709855681000,0],[1709855682000,0],[1709855683000,0],[1709855684000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
allUsersData
]
});
allUsersChart.setTitle({
text: '<span class="chart_title">Active Users along the Simulation</span>',
useHTML: true
});
allUsersData.yAxis = 1;
var responsetimeDistributionChart = new Highcharts.Chart({
chart: {
renderTo: 'responsetimeDistributionContainer',
type: 'column',
marginBottom: 60
},
credits: { enabled: false },
legend: {
enabled: true,
floating: true,
y: 5,
borderWidth: 0,
itemStyle: { fontWeight: "normal" },
symbolRadius: 0
},
title: { text: 'A title to let highcharts reserve the place for the title set later' },
navigator: {
maskInside: false
},
xAxis: {
categories: ['2', '4', '6', '7', '9', '11', '13', '15', '17', '18', '20', '22', '24', '26', '28', '29', '31', '33', '35', '37', '39', '40', '42', '44', '46', '48', '49', '51', '53', '55', '57', '59', '60', '62', '64', '66', '68', '70', '71', '73', '75', '77', '79', '81', '82', '84', '86', '88', '90', '92', '93', '95', '97', '99', '101', '103', '104', '106', '108', '110', '112', '114', '115', '117', '119', '121', '123', '125', '126', '128', '130', '132', '134', '136', '137', '139', '141', '143', '145', '146', '148', '150', '152', '154', '156', '157', '159', '161', '163', '165', '167', '168', '170', '172', '174', '176', '178', '179', '181', '183'],
tickInterval: 20
},
yAxis: {
min: 0,
title: { text: 'Percentage of Requests' },
reversedStacks: false
},
tooltip: {
formatter: function() {
return '<b>'+ this.x +' ms</b><br/>'+
this.series.name +': '+ this.y +' %<br/>'+
'Total: '+ this.point.stackTotal + ' %';
}
},
plotOptions: {
series: {
groupPadding: 0,
stacking: 'normal',
shadow: true
}
},
series: [
{
type: 'column',
color: '#68b65c',
name: 'OK',
data: [
15.14,58.42,22.03,2.95,0.52,0.05,0.03,0.02,0.02,0.0,0.01,0.01,0.02,0.01,0.01,0.01,0.0,0.0,0.01,0.02,0.0,0.0,0.0,0.01,0.01,0.0,0.0,0.0,0.01,0.0,0.01,0.0,0.02,0.01,0.02,0.0,0.01,0.01,0.0,0.01,0.0,0.0,0.0,0.01,0.0,0.0,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.0,0.0,0.0,0.01,0.0,0.0,0.0,0.0,0.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.01,0.0,0.0,0.0,0.0,0.01,0.01,0.0,0.0,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
],
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([[1709855440,[45,73,78,87,88,91,94,98,99,99]],[1709855441,[6,6,6,6,6,6,6,6,6,6]],[1709855442,[11,22,34,46,46,51,54,58,59,60]],[1709855443,[5,5,5,5,5,5,5,5,5,5]],[1709855444,[1,6,10,15,22,24,30,34,37,40]],[1709855445,[7,8,10,10,10,10,10,10,10,10]],[1709855446,[6,6,7,8,8,8,9,9,9,10]],[1709855447,[6,6,6,7,7,7,7,8,9,10]],[1709855448,[5,5,5,6,6,6,7,7,7,8]],[1709855449,[5,5,5,6,6,6,6,7,8,9]],[1709855450,[5,5,5,6,6,7,7,7,8,9]],[1709855451,[4,5,6,6,6,6,7,7,8,9]],[1709855452,[4,5,5,5,5,5,5,6,8,9]],[1709855453,[4,5,5,6,6,6,7,7,8,8]],[1709855454,[4,5,5,6,6,6,7,7,8,9]],[1709855455,[4,5,5,6,6,6,6,7,9,10]],[1709855456,[4,5,5,6,6,6,6,7,8,9]],[1709855457,[4,5,5,5,6,6,6,7,8,9]],[1709855458,[3,4,5,5,6,6,6,6,8,9]],[1709855459,[3,5,5,6,6,6,6,6,8,9]],[1709855460,[3,4,5,5,5,5,6,6,8,9]],[1709855461,[2,4,4,5,5,5,5,5,7,8]],[1709855462,[3,4,5,5,5,5,6,6,8,9]],[1709855463,[2,4,4,5,5,5,5,6,7,8]],[1709855464,[2,4,4,5,5,5,5,5,6,8]],[1709855465,[2,4,4,5,5,5,5,6,8,8]],[1709855466,[2,4,4,5,5,5,5,5,6,8]],[1709855467,[2,4,4,5,5,5,6,6,7,9]],[1709855468,[2,4,4,5,5,5,5,5,6,8]],[1709855469,[2,4,4,5,5,5,6,6,7,9]],[1709855470,[2,4,4,4,4,5,5,5,6,8]],[1709855471,[2,4,4,5,5,5,5,6,6,7]],[1709855472,[2,4,4,5,5,5,5,6,6,7]],[1709855473,[2,4,4,4,5,5,5,5,9,9]],[1709855474,[2,3,4,4,4,5,5,5,6,8]],[1709855475,[1,3,4,4,4,4,4,5,5,7]],[1709855476,[1,3,4,4,4,5,5,5,6,9]],[1709855477,[2,3,4,4,4,5,5,5,7,8]],[1709855478,[2,3,4,4,5,5,5,5,7,9]],[1709855479,[1,3,4,4,4,5,5,5,6,7]],[1709855480,[2,3,4,4,5,5,5,5,6,7]],[1709855481,[2,3,4,5,5,5,5,5,6,8]],[1709855482,[2,3,4,4,4,5,5,5,5,6]],[1709855483,[1,3,4,4,4,5,5,5,6,8]],[1709855484,[2,3,4,4,4,5,5,5,6,7]],[1709855485,[2,3,4,4,4,5,5,5,12,25]],[1709855486,[2,3,4,4,4,5,5,5,8,25]],[1709855487,[2,3,4,5,5,5,5,5,5,6]],[1709855488,[1,3,4,4,4,4,4,5,5,6]],[1709855489,[1,3,4,4,4,4,5,5,5,6]],[1709855490,[2,3,4,4,4,4,5,5,6,6]],[1709855491,[2,4,4,5,5,5,5,5,6,10]],[1709855492,[2,3,4,5,5,5,5,5,6,7]],[1709855493,[2,3,4,4,4,4,5,5,5,8]],[1709855494,[1,3,4,4,4,5,5,5,6,7]],[1709855495,[2,3,4,4,4,4,5,5,6,8]],[1709855496,[2,3,4,4,4,4,4,4,5,6]],[1709855497,[1,3,3,4,4,4,4,4,5,5]],[1709855498,[1,3,3,4,4,4,4,4,5,7]],[1709855499,[1,3,4,4,4,4,4,5,5,6]],[1709855500,[2,3,4,4,4,4,4,5,5,9]],[1709855501,[2,3,4,4,4,4,5,5,5,7]],[1709855502,[1,3,4,4,5,5,5,5,6,7]],[1709855503,[2,3,4,4,4,5,5,5,5,6]],[1709855504,[1,3,3,4,4,4,5,5,5,6]],[1709855505,[1,3,4,4,4,4,4,5,5,7]],[1709855506,[2,3,4,4,5,5,5,5,6,8]],[1709855507,[1,3,3,4,4,4,4,5,6,8]],[1709855508,[1,3,3,4,4,4,4,4,5,7]],[1709855509,[1,3,3,4,4,4,4,4,5,6]],[1709855510,[2,3,4,4,4,4,4,4,5,6]],[1709855511,[2,3,4,4,4,4,5,5,5,8]],[1709855512,[2,3,4,4,4,4,4,5,5,7]],[1709855513,[1,3,3,4,4,4,4,4,5,6]],[1709855514,[1,2,4,4,4,4,4,4,5,6]],[1709855515,[2,3,4,4,4,4,4,5,5,6]],[1709855516,[2,3,4,4,4,4,4,5,6,7]],[1709855517,[1,3,3,4,4,4,4,5,6,7]],[1709855518,[1,2,3,4,4,4,4,4,5,7]],[1709855519,[2,3,4,4,4,4,4,4,5,7]],[1709855520,[2,3,4,4,4,4,5,5,5,6]],[1709855521,[2,3,4,4,4,4,4,5,6,8]],[1709855522,[1,3,3,4,4,4,4,5,5,7]],[1709855523,[1,3,3,4,4,4,4,5,5,6]],[1709855524,[1,3,4,4,4,4,4,4,5,7]],[1709855525,[2,3,4,4,4,4,4,5,5,7]],[1709855526,[1,3,4,4,4,4,4,4,5,8]],[1709855527,[1,3,4,4,4,4,4,5,5,7]],[1709855528,[1,3,3,4,4,4,4,5,5,7]],[1709855529,[1,3,3,4,4,4,4,4,5,7]],[1709855530,[1,3,3,4,4,4,4,5,6,8]],[1709855531,[2,3,3,4,4,4,4,4,5,6]],[1709855532,[1,3,3,4,4,4,4,4,5,5]],[1709855533,[1,3,3,4,4,4,4,4,5,6]],[1709855534,[1,3,4,4,4,4,4,5,5,7]],[1709855535,[2,3,4,4,4,4,4,5,6,7]],[1709855536,[1,3,3,4,4,4,4,5,5,6]],[1709855537,[1,3,4,4,4,4,5,5,6,7]],[1709855538,[1,3,3,4,4,4,4,5,5,6]],[1709855539,[1,3,3,4,4,4,4,4,6,7]],[1709855540,[1,3,3,4,4,4,4,5,6,7]],[1709855541,[1,3,3,4,4,4,4,4,5,6]],[1709855542,[1,3,3,4,4,4,4,4,5,7]],[1709855543,[1,3,3,4,4,4,4,4,5,8]],[1709855544,[2,3,3,4,4,4,4,4,5,6]],[1709855545,[1,3,3,4,4,4,4,4,5,6]],[1709855546,[1,3,3,4,4,4,4,4,5,6]],[1709855547,[1,3,3,4,4,4,4,4,6,8]],[1709855548,[1,3,4,4,4,4,4,5,5,7]],[1709855549,[1,3,4,4,4,4,4,5,5,5]],[1709855550,[2,3,3,4,4,4,4,5,6,7]],[1709855551,[1,3,3,4,4,4,4,4,6,8]],[1709855552,[1,3,3,4,4,4,4,4,5,7]],[1709855553,[2,3,3,4,4,4,4,5,6,7]],[1709855554,[2,3,4,4,4,4,4,4,5,6]],[1709855555,[2,3,4,4,4,4,4,4,6,7]],[1709855556,[2,3,4,4,4,4,5,6,7,8]],[1709855557,[2,3,4,5,6,6,6,7,7,9]],[1709855558,[1,3,5,6,6,6,6,6,7,8]],[1709855559,[1,3,4,4,5,5,5,6,7,7]],[1709855560,[1,3,5,5,5,6,6,6,7,10]],[1709855561,[1,3,4,5,5,5,5,6,7,8]],[1709855562,[2,4,5,6,6,6,6,7,8,10]],[1709855563,[1,3,4,4,5,5,5,6,6,8]],[1709855564,[2,4,5,6,6,6,6,6,7,9]],[1709855565,[1,3,4,4,4,5,5,5,7,9]],[1709855566,[1,4,5,5,5,6,6,6,7,10]],[1709855567,[1,3,4,4,4,4,5,6,7,9]],[1709855568,[2,5,5,6,6,6,7,7,9,10]],[1709855569,[1,3,4,4,4,4,5,5,7,9]],[1709855570,[2,4,5,6,6,6,6,7,8,9]],[1709855571,[2,3,4,4,4,4,5,5,7,9]],[1709855572,[2,4,5,6,6,6,6,8,9,12]],[1709855573,[1,3,3,4,4,4,4,5,7,8]],[1709855574,[2,4,5,6,6,6,6,7,9,10]],[1709855575,[1,3,3,4,4,4,5,6,8,12]],[1709855576,[1,3,5,5,6,6,6,7,9,13]],[1709855577,[2,3,4,4,5,5,5,6,7,9]],[1709855578,[2,4,5,6,6,6,6,7,8,11]],[1709855579,[2,3,4,4,5,5,5,6,7,9]],[1709855580,[2,4,5,5,6,6,6,7,9,10]],[1709855581,[1,3,4,4,5,5,5,6,7,9]],[1709855582,[1,3,4,5,6,6,6,7,10,12]],[1709855583,[1,3,4,5,5,6,6,7,8,11]],[1709855584,[1,3,4,5,6,6,6,7,8,10]],[1709855585,[2,3,4,5,5,6,6,7,8,9]],[1709855586,[2,4,4,5,6,6,6,7,9,11]],[1709855587,[2,4,4,5,6,6,6,7,8,10]],[1709855588,[2,3,4,5,5,6,6,7,9,9]],[1709855589,[1,3,4,5,5,6,6,7,8,10]],[1709855590,[2,3,4,5,5,6,6,7,8,10]],[1709855591,[1,3,4,6,6,6,6,7,8,10]],[1709855592,[1,3,4,4,4,5,5,6,7,8]],[1709855593,[2,4,4,5,6,6,6,7,8,10]],[1709855594,[1,3,4,6,11,21,34,46,65,70]],[1709855595,[2,3,4,5,5,6,6,7,8,9]],[1709855596,[1,3,3,4,4,4,4,5,6,8]],[1709855597,[1,3,4,5,5,5,5,6,8,9]],[1709855598,[2,3,3,4,4,4,5,5,7,8]],[1709855599,[1,4,4,5,6,6,6,7,9,10]],[1709855600,[1,3,3,4,4,4,4,5,6,8]],[1709855601,[1,3,4,5,5,6,6,6,7,10]],[1709855602,[2,3,4,4,4,4,5,5,7,8]],[1709855603,[1,3,4,5,5,5,5,6,8,9]],[1709855604,[1,2,3,4,4,4,4,5,6,8]],[1709855605,[1,3,4,5,6,6,6,7,8,10]],[1709855606,[1,3,4,4,4,4,5,5,7,9]],[1709855607,[2,3,4,5,5,6,6,7,9,10]],[1709855608,[1,3,3,4,4,4,5,5,7,8]],[1709855609,[1,3,4,5,5,5,6,6,7,10]],[1709855610,[1,2,3,4,4,4,4,4,6,7]],[1709855611,[1,3,4,5,5,5,6,6,7,10]],[1709855612,[1,3,4,4,4,5,5,5,7,8]],[1709855613,[2,3,4,5,5,5,6,6,7,10]],[1709855614,[2,2,4,4,4,4,5,5,7,9]],[1709855615,[1,3,4,4,4,5,5,6,7,9]],[1709855616,[1,3,3,4,4,4,4,5,7,7]],[1709855617,[2,3,4,4,5,5,6,6,8,9]],[1709855618,[1,3,3,4,4,5,5,6,7,8]],[1709855619,[1,3,4,5,5,5,6,7,8,11]],[1709855620,[1,2,3,4,4,4,5,5,7,8]],[1709855621,[1,4,5,6,6,6,7,7,10,10]],[1709855622,[2,3,4,5,5,5,6,6,7,9]],[1709855623,[2,4,5,6,6,6,6,7,8,10]],[1709855624,[1,3,3,4,4,5,5,5,7,9]],[1709855625,[1,3,5,6,6,6,6,7,9,11]],[1709855626,[2,3,4,5,5,6,6,7,8,10]],[1709855627,[2,4,4,6,6,6,6,7,9,13]],[1709855628,[1,3,3,4,5,5,5,6,6,8]],[1709855629,[1,3,4,5,5,6,6,7,9,10]],[1709855630,[1,3,4,5,5,5,5,6,7,10]],[1709855631,[2,3,4,5,5,5,6,6,8,9]],[1709855632,[1,3,3,5,5,5,5,6,7,11]],[1709855633,[1,3,4,5,5,5,5,6,7,9]],[1709855634,[1,3,4,5,5,5,5,6,7,9]],[1709855635,[2,3,4,5,5,5,6,6,7,10]],[1709855636,[2,3,4,5,6,6,6,7,7,9]],[1709855637,[1,3,4,5,5,6,6,6,8,9]],[1709855638,[2,3,4,6,6,6,6,7,8,11]],[1709855639,[2,3,4,5,6,6,7,12,24,31]],[1709855640,[2,4,5,6,6,6,6,7,9,10]],[1709855641,[2,3,4,5,5,6,6,7,16,27]],[1709855642,[1,3,4,5,5,6,6,6,8,10]],[1709855643,[1,2,3,4,4,4,5,5,8,9]],[1709855644,[2,4,5,6,6,6,6,6,8,10]],[1709855645,[1,2,3,4,4,4,4,5,6,8]],[1709855646,[2,3,5,5,5,6,6,7,8,9]],[1709855647,[1,2,3,4,4,4,4,5,7,8]],[1709855648,[1,4,5,6,6,6,6,7,9,10]],[1709855649,[1,3,3,4,4,4,4,5,7,8]],[1709855650,[1,3,5,5,6,6,6,7,8,10]],[1709855651,[2,3,4,4,4,4,5,5,6,7]],[1709855652,[2,4,5,6,6,6,6,7,9,10]],[1709855653,[2,3,4,4,4,5,5,6,8,9]],[1709855654,[2,4,31,136,145,151,158,169,178,184]],[1709855655,[1,4,21,70,77,86,92,100,120,133]],[1709855656,[1,4,5,6,6,6,7,7,8,11]],[1709855657,[1,3,4,4,4,4,5,5,7,9]],[1709855658,[1,3,4,6,6,6,6,7,9,11]],[1709855659,[1,2,3,4,4,4,5,5,7,7]],[1709855660,[1,3,4,5,5,5,5,6,7,9]],[1709855661,[1,3,3,4,4,4,4,5,7,7]],[1709855662,[1,3,4,5,5,6,6,7,8,9]],[1709855663,[1,3,3,4,4,4,5,6,6,9]],[1709855664,[1,3,3,4,5,5,6,6,7,9]],[1709855665,[1,3,3,4,5,5,5,6,7,9]],[1709855666,[1,3,4,5,5,5,5,7,8,9]],[1709855667,[2,3,4,5,5,5,6,7,8,9]],[1709855668,[1,3,4,4,5,5,5,6,7,8]],[1709855669,[1,3,4,4,5,5,5,6,7,9]],[1709855670,[1,3,4,4,4,5,5,6,7,9]],[1709855671,[1,3,4,5,6,6,6,7,9,9]],[1709855672,[1,3,3,4,4,4,4,5,6,8]],[1709855673,[2,3,4,5,5,6,6,7,9,12]],[1709855674,[1,3,3,4,4,4,4,5,6,8]],[1709855675,[1,3,4,4,5,5,5,6,8,9]],[1709855676,[1,2,3,4,4,4,4,5,6,7]],[1709855677,[1,3,4,4,5,5,5,6,7,9]],[1709855678,[1,3,4,4,4,4,5,5,7,9]],[1709855679,[1,3,4,5,5,6,6,7,8,10]],[1709855680,[1,2,3,4,4,4,5,5,7,8]],[1709855681,[2,3,4,5,5,5,6,6,7,11]],[1709855682,[2,3,4,6,6,6,6,7,9,10]],[1709855683,[1,3,4,6,6,6,6,7,9,10]],[1709855684,[1,2,4,6,6,6,6,7,9,11]]]);
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([[1709855440,[25,25,0]],[1709855441,[1,1,0]],[1709855442,[25,25,0]],[1709855443,[1,1,0]],[1709855444,[71,71,0]],[1709855445,[3,3,0]],[1709855446,[6,6,0]],[1709855447,[9,9,0]],[1709855448,[11,11,0]],[1709855449,[13,13,0]],[1709855450,[18,18,0]],[1709855451,[19,19,0]],[1709855452,[24,24,0]],[1709855453,[26,26,0]],[1709855454,[27,27,0]],[1709855455,[32,32,0]],[1709855456,[34,34,0]],[1709855457,[37,37,0]],[1709855458,[39,39,0]],[1709855459,[43,43,0]],[1709855460,[44,44,0]],[1709855461,[48,48,0]],[1709855462,[50,50,0]],[1709855463,[54,54,0]],[1709855464,[56,56,0]],[1709855465,[61,61,0]],[1709855466,[61,61,0]],[1709855467,[65,65,0]],[1709855468,[67,67,0]],[1709855469,[70,70,0]],[1709855470,[74,74,0]],[1709855471,[76,76,0]],[1709855472,[80,80,0]],[1709855473,[81,81,0]],[1709855474,[84,84,0]],[1709855475,[87,87,0]],[1709855476,[91,91,0]],[1709855477,[92,92,0]],[1709855478,[96,96,0]],[1709855479,[98,98,0]],[1709855480,[101,101,0]],[1709855481,[105,105,0]],[1709855482,[107,107,0]],[1709855483,[110,110,0]],[1709855484,[112,112,0]],[1709855485,[116,116,0]],[1709855486,[118,118,0]],[1709855487,[121,121,0]],[1709855488,[123,123,0]],[1709855489,[126,126,0]],[1709855490,[131,131,0]],[1709855491,[133,133,0]],[1709855492,[133,133,0]],[1709855493,[138,138,0]],[1709855494,[142,142,0]],[1709855495,[143,143,0]],[1709855496,[146,146,0]],[1709855497,[149,149,0]],[1709855498,[152,152,0]],[1709855499,[154,154,0]],[1709855500,[158,158,0]],[1709855501,[160,160,0]],[1709855502,[164,164,0]],[1709855503,[165,165,0]],[1709855504,[170,170,0]],[1709855505,[171,171,0]],[1709855506,[174,174,0]],[1709855507,[176,176,0]],[1709855508,[181,181,0]],[1709855509,[183,183,0]],[1709855510,[186,186,0]],[1709855511,[188,188,0]],[1709855512,[192,192,0]],[1709855513,[194,194,0]],[1709855514,[196,196,0]],[1709855515,[200,200,0]],[1709855516,[202,202,0]],[1709855517,[205,205,0]],[1709855518,[208,208,0]],[1709855519,[211,211,0]],[1709855520,[213,213,0]],[1709855521,[217,217,0]],[1709855522,[219,219,0]],[1709855523,[222,222,0]],[1709855524,[226,226,0]],[1709855525,[227,227,0]],[1709855526,[230,230,0]],[1709855527,[233,233,0]],[1709855528,[237,237,0]],[1709855529,[238,238,0]],[1709855530,[243,243,0]],[1709855531,[244,244,0]],[1709855532,[248,248,0]],[1709855533,[250,250,0]],[1709855534,[252,252,0]],[1709855535,[256,256,0]],[1709855536,[260,260,0]],[1709855537,[262,262,0]],[1709855538,[264,264,0]],[1709855539,[266,266,0]],[1709855540,[269,269,0]],[1709855541,[273,273,0]],[1709855542,[275,275,0]],[1709855543,[279,279,0]],[1709855544,[281,281,0]],[1709855545,[285,285,0]],[1709855546,[286,286,0]],[1709855547,[290,290,0]],[1709855548,[291,291,0]],[1709855549,[296,296,0]],[1709855550,[297,297,0]],[1709855551,[301,301,0]],[1709855552,[303,303,0]],[1709855553,[306,306,0]],[1709855554,[309,309,0]],[1709855555,[313,313,0]],[1709855556,[314,314,0]],[1709855557,[318,318,0]],[1709855558,[321,321,0]],[1709855559,[322,322,0]],[1709855560,[327,327,0]],[1709855561,[329,329,0]],[1709855562,[332,332,0]],[1709855563,[334,334,0]],[1709855564,[338,338,0]],[1709855565,[340,340,0]],[1709855566,[340,340,0]],[1709855567,[340,340,0]],[1709855568,[340,340,0]],[1709855569,[340,340,0]],[1709855570,[340,340,0]],[1709855571,[340,340,0]],[1709855572,[340,340,0]],[1709855573,[340,340,0]],[1709855574,[340,340,0]],[1709855575,[340,340,0]],[1709855576,[340,340,0]],[1709855577,[340,340,0]],[1709855578,[340,340,0]],[1709855579,[340,340,0]],[1709855580,[340,340,0]],[1709855581,[340,340,0]],[1709855582,[340,340,0]],[1709855583,[340,340,0]],[1709855584,[340,340,0]],[1709855585,[340,340,0]],[1709855586,[340,340,0]],[1709855587,[340,340,0]],[1709855588,[340,340,0]],[1709855589,[340,340,0]],[1709855590,[340,340,0]],[1709855591,[340,340,0]],[1709855592,[340,340,0]],[1709855593,[340,340,0]],[1709855594,[340,340,0]],[1709855595,[340,340,0]],[1709855596,[340,340,0]],[1709855597,[340,340,0]],[1709855598,[340,340,0]],[1709855599,[340,340,0]],[1709855600,[340,340,0]],[1709855601,[340,340,0]],[1709855602,[340,340,0]],[1709855603,[340,340,0]],[1709855604,[340,340,0]],[1709855605,[340,340,0]],[1709855606,[340,340,0]],[1709855607,[340,340,0]],[1709855608,[340,340,0]],[1709855609,[340,340,0]],[1709855610,[340,340,0]],[1709855611,[340,340,0]],[1709855612,[340,340,0]],[1709855613,[340,340,0]],[1709855614,[340,340,0]],[1709855615,[340,340,0]],[1709855616,[340,340,0]],[1709855617,[340,340,0]],[1709855618,[340,340,0]],[1709855619,[340,340,0]],[1709855620,[340,340,0]],[1709855621,[340,340,0]],[1709855622,[340,340,0]],[1709855623,[340,340,0]],[1709855624,[340,340,0]],[1709855625,[340,340,0]],[1709855626,[340,340,0]],[1709855627,[340,340,0]],[1709855628,[340,340,0]],[1709855629,[340,340,0]],[1709855630,[340,340,0]],[1709855631,[340,340,0]],[1709855632,[340,340,0]],[1709855633,[340,340,0]],[1709855634,[340,340,0]],[1709855635,[340,340,0]],[1709855636,[340,340,0]],[1709855637,[340,340,0]],[1709855638,[340,340,0]],[1709855639,[340,340,0]],[1709855640,[340,340,0]],[1709855641,[340,340,0]],[1709855642,[340,340,0]],[1709855643,[340,340,0]],[1709855644,[340,340,0]],[1709855645,[340,340,0]],[1709855646,[340,340,0]],[1709855647,[340,340,0]],[1709855648,[340,340,0]],[1709855649,[340,340,0]],[1709855650,[340,340,0]],[1709855651,[340,340,0]],[1709855652,[340,340,0]],[1709855653,[340,340,0]],[1709855654,[340,340,0]],[1709855655,[340,340,0]],[1709855656,[340,340,0]],[1709855657,[340,340,0]],[1709855658,[340,340,0]],[1709855659,[340,340,0]],[1709855660,[340,340,0]],[1709855661,[340,340,0]],[1709855662,[340,340,0]],[1709855663,[340,340,0]],[1709855664,[340,340,0]],[1709855665,[340,340,0]],[1709855666,[340,340,0]],[1709855667,[340,340,0]],[1709855668,[340,340,0]],[1709855669,[340,340,0]],[1709855670,[340,340,0]],[1709855671,[340,340,0]],[1709855672,[340,340,0]],[1709855673,[340,340,0]],[1709855674,[340,340,0]],[1709855675,[340,340,0]],[1709855676,[340,340,0]],[1709855677,[340,340,0]],[1709855678,[340,340,0]],[1709855679,[340,340,0]],[1709855680,[340,340,0]],[1709855681,[340,340,0]],[1709855682,[340,340,0]],[1709855683,[340,340,0]],[1709855684,[504,504,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:[