-
Notifications
You must be signed in to change notification settings - Fork 923
/
Copy pathindex.html
1173 lines (1104 loc) · 93 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-09 01:17:57 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 - alexmarquesfa-kotlin">
<span class="simulation-information-label">Description: </span>
<span>Rinha de Backend - 2024/Q1: Crébito - alexmarquesfa-kotlin</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: [
[1709947077000,0],[1709947078000,0],[1709947079000,0],[1709947080000,0],[1709947081000,1],[1709947082000,1],[1709947083000,2],[1709947084000,4],[1709947085000,4],[1709947086000,5],[1709947087000,6],[1709947088000,7],[1709947089000,8],[1709947090000,8],[1709947091000,10],[1709947092000,10],[1709947093000,12],[1709947094000,12],[1709947095000,14],[1709947096000,14],[1709947097000,15],[1709947098000,16],[1709947099000,17],[1709947100000,17],[1709947101000,19],[1709947102000,20],[1709947103000,20],[1709947104000,22],[1709947105000,22],[1709947106000,23],[1709947107000,25],[1709947108000,25],[1709947109000,26],[1709947110000,26],[1709947111000,28],[1709947112000,29],[1709947113000,30],[1709947114000,30],[1709947115000,32],[1709947116000,32],[1709947117000,33],[1709947118000,34],[1709947119000,35],[1709947120000,36],[1709947121000,38],[1709947122000,39],[1709947123000,40],[1709947124000,40],[1709947125000,42],[1709947126000,42],[1709947127000,44],[1709947128000,44],[1709947129000,45],[1709947130000,45],[1709947131000,46],[1709947132000,47],[1709947133000,48],[1709947134000,48],[1709947135000,50],[1709947136000,50],[1709947137000,52],[1709947138000,52],[1709947139000,53],[1709947140000,54],[1709947141000,56],[1709947142000,55],[1709947143000,57],[1709947144000,58],[1709947145000,59],[1709947146000,59],[1709947147000,61],[1709947148000,61],[1709947149000,63],[1709947150000,63],[1709947151000,64],[1709947152000,65],[1709947153000,66],[1709947154000,67],[1709947155000,68],[1709947156000,68],[1709947157000,70],[1709947158000,70],[1709947159000,72],[1709947160000,72],[1709947161000,73],[1709947162000,74],[1709947163000,76],[1709947164000,77],[1709947165000,78],[1709947166000,79],[1709947167000,80],[1709947168000,80],[1709947169000,82],[1709947170000,82],[1709947171000,83],[1709947172000,84],[1709947173000,85],[1709947174000,86],[1709947175000,87],[1709947176000,87],[1709947177000,88],[1709947178000,89],[1709947179000,90],[1709947180000,91],[1709947181000,91],[1709947182000,92],[1709947183000,94],[1709947184000,94],[1709947185000,95],[1709947186000,96],[1709947187000,97],[1709947188000,97],[1709947189000,99],[1709947190000,99],[1709947191000,101],[1709947192000,101],[1709947193000,103],[1709947194000,103],[1709947195000,104],[1709947196000,105],[1709947197000,106],[1709947198000,107],[1709947199000,107],[1709947200000,109],[1709947201000,110],[1709947202000,110],[1709947203000,110],[1709947204000,110],[1709947205000,110],[1709947206000,110],[1709947207000,110],[1709947208000,110],[1709947209000,110],[1709947210000,110],[1709947211000,110],[1709947212000,110],[1709947213000,110],[1709947214000,110],[1709947215000,110],[1709947216000,110],[1709947217000,110],[1709947218000,110],[1709947219000,110],[1709947220000,110],[1709947221000,110],[1709947222000,110],[1709947223000,110],[1709947224000,110],[1709947225000,110],[1709947226000,110],[1709947227000,110],[1709947228000,110],[1709947229000,110],[1709947230000,110],[1709947231000,110],[1709947232000,110],[1709947233000,110],[1709947234000,110],[1709947235000,110],[1709947236000,110],[1709947237000,110],[1709947238000,110],[1709947239000,110],[1709947240000,110],[1709947241000,110],[1709947242000,110],[1709947243000,110],[1709947244000,110],[1709947245000,110],[1709947246000,110],[1709947247000,110],[1709947248000,110],[1709947249000,110],[1709947250000,110],[1709947251000,110],[1709947252000,110],[1709947253000,110],[1709947254000,110],[1709947255000,110],[1709947256000,110],[1709947257000,110],[1709947258000,110],[1709947259000,110],[1709947260000,110],[1709947261000,110],[1709947262000,110],[1709947263000,110],[1709947264000,110],[1709947265000,110],[1709947266000,110],[1709947267000,110],[1709947268000,110],[1709947269000,110],[1709947270000,110],[1709947271000,110],[1709947272000,110],[1709947273000,110],[1709947274000,110],[1709947275000,110],[1709947276000,110],[1709947277000,110],[1709947278000,110],[1709947279000,110],[1709947280000,110],[1709947281000,110],[1709947282000,110],[1709947283000,110],[1709947284000,110],[1709947285000,110],[1709947286000,110],[1709947287000,110],[1709947288000,110],[1709947289000,110],[1709947290000,110],[1709947291000,110],[1709947292000,110],[1709947293000,110],[1709947294000,110],[1709947295000,110],[1709947296000,110],[1709947297000,110],[1709947298000,110],[1709947299000,110],[1709947300000,110],[1709947301000,110],[1709947302000,110],[1709947303000,110],[1709947304000,110],[1709947305000,110],[1709947306000,110],[1709947307000,110],[1709947308000,110],[1709947309000,110],[1709947310000,110],[1709947311000,110],[1709947312000,110],[1709947313000,110],[1709947314000,110],[1709947315000,110],[1709947316000,110],[1709947317000,110],[1709947318000,110],[1709947319000,110],[1709947320000,110],[1709947321000,107]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#68b65c',
name: 'débitos',
data: [
[1709947077000,0],[1709947078000,0],[1709947079000,0],[1709947080000,0],[1709947081000,1],[1709947082000,1],[1709947083000,4],[1709947084000,6],[1709947085000,7],[1709947086000,9],[1709947087000,11],[1709947088000,13],[1709947089000,15],[1709947090000,16],[1709947091000,19],[1709947092000,20],[1709947093000,22],[1709947094000,24],[1709947095000,25],[1709947096000,28],[1709947097000,29],[1709947098000,31],[1709947099000,33],[1709947100000,35],[1709947101000,38],[1709947102000,39],[1709947103000,41],[1709947104000,43],[1709947105000,45],[1709947106000,46],[1709947107000,47],[1709947108000,50],[1709947109000,51],[1709947110000,53],[1709947111000,55],[1709947112000,56],[1709947113000,59],[1709947114000,60],[1709947115000,62],[1709947116000,64],[1709947117000,66],[1709947118000,68],[1709947119000,69],[1709947120000,71],[1709947121000,74],[1709947122000,75],[1709947123000,78],[1709947124000,80],[1709947125000,81],[1709947126000,83],[1709947127000,85],[1709947128000,86],[1709947129000,88],[1709947130000,89],[1709947131000,92],[1709947132000,94],[1709947133000,95],[1709947134000,97],[1709947135000,98],[1709947136000,101],[1709947137000,102],[1709947138000,104],[1709947139000,106],[1709947140000,108],[1709947141000,110],[1709947142000,112],[1709947143000,114],[1709947144000,116],[1709947145000,118],[1709947146000,120],[1709947147000,121],[1709947148000,123],[1709947149000,125],[1709947150000,126],[1709947151000,128],[1709947152000,130],[1709947153000,132],[1709947154000,133],[1709947155000,135],[1709947156000,137],[1709947157000,139],[1709947158000,141],[1709947159000,142],[1709947160000,144],[1709947161000,147],[1709947162000,148],[1709947163000,150],[1709947164000,153],[1709947165000,154],[1709947166000,156],[1709947167000,158],[1709947168000,160],[1709947169000,162],[1709947170000,162],[1709947171000,166],[1709947172000,167],[1709947173000,168],[1709947174000,171],[1709947175000,172],[1709947176000,174],[1709947177000,175],[1709947178000,177],[1709947179000,179],[1709947180000,182],[1709947181000,183],[1709947182000,185],[1709947183000,187],[1709947184000,189],[1709947185000,191],[1709947186000,193],[1709947187000,194],[1709947188000,197],[1709947189000,198],[1709947190000,200],[1709947191000,202],[1709947192000,202],[1709947193000,205],[1709947194000,206],[1709947195000,209],[1709947196000,211],[1709947197000,212],[1709947198000,215],[1709947199000,215],[1709947200000,218],[1709947201000,222],[1709947202000,220],[1709947203000,220],[1709947204000,220],[1709947205000,220],[1709947206000,220],[1709947207000,220],[1709947208000,220],[1709947209000,220],[1709947210000,220],[1709947211000,220],[1709947212000,220],[1709947213000,220],[1709947214000,220],[1709947215000,220],[1709947216000,220],[1709947217000,221],[1709947218000,220],[1709947219000,220],[1709947220000,220],[1709947221000,220],[1709947222000,220],[1709947223000,220],[1709947224000,220],[1709947225000,220],[1709947226000,220],[1709947227000,220],[1709947228000,220],[1709947229000,220],[1709947230000,220],[1709947231000,220],[1709947232000,220],[1709947233000,220],[1709947234000,220],[1709947235000,220],[1709947236000,220],[1709947237000,220],[1709947238000,220],[1709947239000,221],[1709947240000,220],[1709947241000,220],[1709947242000,220],[1709947243000,220],[1709947244000,220],[1709947245000,220],[1709947246000,220],[1709947247000,221],[1709947248000,220],[1709947249000,220],[1709947250000,220],[1709947251000,220],[1709947252000,220],[1709947253000,220],[1709947254000,220],[1709947255000,220],[1709947256000,220],[1709947257000,220],[1709947258000,220],[1709947259000,220],[1709947260000,220],[1709947261000,220],[1709947262000,220],[1709947263000,220],[1709947264000,220],[1709947265000,220],[1709947266000,220],[1709947267000,220],[1709947268000,220],[1709947269000,220],[1709947270000,220],[1709947271000,220],[1709947272000,220],[1709947273000,220],[1709947274000,220],[1709947275000,220],[1709947276000,220],[1709947277000,220],[1709947278000,220],[1709947279000,220],[1709947280000,220],[1709947281000,220],[1709947282000,220],[1709947283000,220],[1709947284000,220],[1709947285000,220],[1709947286000,220],[1709947287000,220],[1709947288000,221],[1709947289000,220],[1709947290000,220],[1709947291000,220],[1709947292000,220],[1709947293000,220],[1709947294000,220],[1709947295000,220],[1709947296000,220],[1709947297000,220],[1709947298000,221],[1709947299000,220],[1709947300000,220],[1709947301000,220],[1709947302000,220],[1709947303000,220],[1709947304000,220],[1709947305000,220],[1709947306000,220],[1709947307000,220],[1709947308000,220],[1709947309000,220],[1709947310000,220],[1709947311000,220],[1709947312000,220],[1709947313000,220],[1709947314000,220],[1709947315000,220],[1709947316000,220],[1709947317000,220],[1709947318000,220],[1709947319000,220],[1709947320000,220],[1709947321000,214]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#f15b4f',
name: 'extratos',
data: [
[1709947077000,0],[1709947078000,0],[1709947079000,0],[1709947080000,0],[1709947081000,1],[1709947082000,1],[1709947083000,1],[1709947084000,1],[1709947085000,1],[1709947086000,1],[1709947087000,2],[1709947088000,1],[1709947089000,2],[1709947090000,2],[1709947091000,1],[1709947092000,2],[1709947093000,2],[1709947094000,2],[1709947095000,2],[1709947096000,2],[1709947097000,2],[1709947098000,2],[1709947099000,3],[1709947100000,2],[1709947101000,3],[1709947102000,2],[1709947103000,3],[1709947104000,2],[1709947105000,3],[1709947106000,3],[1709947107000,3],[1709947108000,3],[1709947109000,3],[1709947110000,3],[1709947111000,3],[1709947112000,4],[1709947113000,3],[1709947114000,3],[1709947115000,4],[1709947116000,3],[1709947117000,4],[1709947118000,4],[1709947119000,4],[1709947120000,4],[1709947121000,4],[1709947122000,4],[1709947123000,4],[1709947124000,4],[1709947125000,4],[1709947126000,4],[1709947127000,5],[1709947128000,4],[1709947129000,5],[1709947130000,5],[1709947131000,4],[1709947132000,5],[1709947133000,5],[1709947134000,5],[1709947135000,5],[1709947136000,5],[1709947137000,5],[1709947138000,5],[1709947139000,6],[1709947140000,5],[1709947141000,6],[1709947142000,5],[1709947143000,6],[1709947144000,5],[1709947145000,6],[1709947146000,6],[1709947147000,6],[1709947148000,6],[1709947149000,6],[1709947150000,6],[1709947151000,6],[1709947152000,7],[1709947153000,6],[1709947154000,6],[1709947155000,7],[1709947156000,6],[1709947157000,7],[1709947158000,7],[1709947159000,7],[1709947160000,7],[1709947161000,7],[1709947162000,7],[1709947163000,7],[1709947164000,7],[1709947165000,7],[1709947166000,7],[1709947167000,8],[1709947168000,7],[1709947169000,8],[1709947170000,8],[1709947171000,7],[1709947172000,8],[1709947173000,8],[1709947174000,8],[1709947175000,8],[1709947176000,8],[1709947177000,8],[1709947178000,8],[1709947179000,9],[1709947180000,8],[1709947181000,9],[1709947182000,8],[1709947183000,9],[1709947184000,8],[1709947185000,9],[1709947186000,9],[1709947187000,9],[1709947188000,9],[1709947189000,9],[1709947190000,9],[1709947191000,9],[1709947192000,10],[1709947193000,9],[1709947194000,9],[1709947195000,10],[1709947196000,9],[1709947197000,10],[1709947198000,10],[1709947199000,10],[1709947200000,10],[1709947201000,10],[1709947202000,10],[1709947203000,10],[1709947204000,10],[1709947205000,10],[1709947206000,10],[1709947207000,10],[1709947208000,10],[1709947209000,10],[1709947210000,10],[1709947211000,10],[1709947212000,10],[1709947213000,10],[1709947214000,10],[1709947215000,10],[1709947216000,10],[1709947217000,10],[1709947218000,10],[1709947219000,10],[1709947220000,10],[1709947221000,10],[1709947222000,10],[1709947223000,10],[1709947224000,10],[1709947225000,10],[1709947226000,10],[1709947227000,10],[1709947228000,10],[1709947229000,10],[1709947230000,10],[1709947231000,10],[1709947232000,10],[1709947233000,10],[1709947234000,10],[1709947235000,10],[1709947236000,10],[1709947237000,10],[1709947238000,10],[1709947239000,10],[1709947240000,10],[1709947241000,10],[1709947242000,10],[1709947243000,10],[1709947244000,10],[1709947245000,10],[1709947246000,10],[1709947247000,10],[1709947248000,10],[1709947249000,10],[1709947250000,10],[1709947251000,10],[1709947252000,10],[1709947253000,10],[1709947254000,10],[1709947255000,10],[1709947256000,10],[1709947257000,10],[1709947258000,10],[1709947259000,10],[1709947260000,10],[1709947261000,10],[1709947262000,10],[1709947263000,10],[1709947264000,10],[1709947265000,10],[1709947266000,10],[1709947267000,10],[1709947268000,10],[1709947269000,10],[1709947270000,10],[1709947271000,10],[1709947272000,10],[1709947273000,10],[1709947274000,10],[1709947275000,10],[1709947276000,10],[1709947277000,10],[1709947278000,10],[1709947279000,10],[1709947280000,10],[1709947281000,10],[1709947282000,10],[1709947283000,10],[1709947284000,10],[1709947285000,10],[1709947286000,10],[1709947287000,10],[1709947288000,10],[1709947289000,10],[1709947290000,10],[1709947291000,10],[1709947292000,10],[1709947293000,10],[1709947294000,10],[1709947295000,10],[1709947296000,10],[1709947297000,10],[1709947298000,10],[1709947299000,10],[1709947300000,10],[1709947301000,10],[1709947302000,10],[1709947303000,10],[1709947304000,10],[1709947305000,10],[1709947306000,10],[1709947307000,10],[1709947308000,10],[1709947309000,10],[1709947310000,10],[1709947311000,10],[1709947312000,10],[1709947313000,10],[1709947314000,10],[1709947315000,10],[1709947316000,10],[1709947317000,10],[1709947318000,10],[1709947319000,10],[1709947320000,10],[1709947321000,9]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FFDD00',
name: 'validações',
data: [
[1709947077000,0],[1709947078000,0],[1709947079000,0],[1709947080000,5],[1709947081000,5],[1709947082000,0],[1709947083000,0],[1709947084000,0],[1709947085000,0],[1709947086000,0],[1709947087000,0],[1709947088000,0],[1709947089000,0],[1709947090000,0],[1709947091000,0],[1709947092000,0],[1709947093000,0],[1709947094000,0],[1709947095000,0],[1709947096000,0],[1709947097000,0],[1709947098000,0],[1709947099000,0],[1709947100000,0],[1709947101000,0],[1709947102000,0],[1709947103000,0],[1709947104000,0],[1709947105000,0],[1709947106000,0],[1709947107000,0],[1709947108000,0],[1709947109000,0],[1709947110000,0],[1709947111000,0],[1709947112000,0],[1709947113000,0],[1709947114000,0],[1709947115000,0],[1709947116000,0],[1709947117000,0],[1709947118000,0],[1709947119000,0],[1709947120000,0],[1709947121000,0],[1709947122000,0],[1709947123000,0],[1709947124000,0],[1709947125000,0],[1709947126000,0],[1709947127000,0],[1709947128000,0],[1709947129000,0],[1709947130000,0],[1709947131000,0],[1709947132000,0],[1709947133000,0],[1709947134000,0],[1709947135000,0],[1709947136000,0],[1709947137000,0],[1709947138000,0],[1709947139000,0],[1709947140000,0],[1709947141000,0],[1709947142000,0],[1709947143000,0],[1709947144000,0],[1709947145000,0],[1709947146000,0],[1709947147000,0],[1709947148000,0],[1709947149000,0],[1709947150000,0],[1709947151000,0],[1709947152000,0],[1709947153000,0],[1709947154000,0],[1709947155000,0],[1709947156000,0],[1709947157000,0],[1709947158000,0],[1709947159000,0],[1709947160000,0],[1709947161000,0],[1709947162000,0],[1709947163000,0],[1709947164000,0],[1709947165000,0],[1709947166000,0],[1709947167000,0],[1709947168000,0],[1709947169000,0],[1709947170000,0],[1709947171000,0],[1709947172000,0],[1709947173000,0],[1709947174000,0],[1709947175000,0],[1709947176000,0],[1709947177000,0],[1709947178000,0],[1709947179000,0],[1709947180000,0],[1709947181000,0],[1709947182000,0],[1709947183000,0],[1709947184000,0],[1709947185000,0],[1709947186000,0],[1709947187000,0],[1709947188000,0],[1709947189000,0],[1709947190000,0],[1709947191000,0],[1709947192000,0],[1709947193000,0],[1709947194000,0],[1709947195000,0],[1709947196000,0],[1709947197000,0],[1709947198000,0],[1709947199000,0],[1709947200000,0],[1709947201000,0],[1709947202000,0],[1709947203000,0],[1709947204000,0],[1709947205000,0],[1709947206000,0],[1709947207000,0],[1709947208000,0],[1709947209000,0],[1709947210000,0],[1709947211000,0],[1709947212000,0],[1709947213000,0],[1709947214000,0],[1709947215000,0],[1709947216000,0],[1709947217000,0],[1709947218000,0],[1709947219000,0],[1709947220000,0],[1709947221000,0],[1709947222000,0],[1709947223000,0],[1709947224000,0],[1709947225000,0],[1709947226000,0],[1709947227000,0],[1709947228000,0],[1709947229000,0],[1709947230000,0],[1709947231000,0],[1709947232000,0],[1709947233000,0],[1709947234000,0],[1709947235000,0],[1709947236000,0],[1709947237000,0],[1709947238000,0],[1709947239000,0],[1709947240000,0],[1709947241000,0],[1709947242000,0],[1709947243000,0],[1709947244000,0],[1709947245000,0],[1709947246000,0],[1709947247000,0],[1709947248000,0],[1709947249000,0],[1709947250000,0],[1709947251000,0],[1709947252000,0],[1709947253000,0],[1709947254000,0],[1709947255000,0],[1709947256000,0],[1709947257000,0],[1709947258000,0],[1709947259000,0],[1709947260000,0],[1709947261000,0],[1709947262000,0],[1709947263000,0],[1709947264000,0],[1709947265000,0],[1709947266000,0],[1709947267000,0],[1709947268000,0],[1709947269000,0],[1709947270000,0],[1709947271000,0],[1709947272000,0],[1709947273000,0],[1709947274000,0],[1709947275000,0],[1709947276000,0],[1709947277000,0],[1709947278000,0],[1709947279000,0],[1709947280000,0],[1709947281000,0],[1709947282000,0],[1709947283000,0],[1709947284000,0],[1709947285000,0],[1709947286000,0],[1709947287000,0],[1709947288000,0],[1709947289000,0],[1709947290000,0],[1709947291000,0],[1709947292000,0],[1709947293000,0],[1709947294000,0],[1709947295000,0],[1709947296000,0],[1709947297000,0],[1709947298000,0],[1709947299000,0],[1709947300000,0],[1709947301000,0],[1709947302000,0],[1709947303000,0],[1709947304000,0],[1709947305000,0],[1709947306000,0],[1709947307000,0],[1709947308000,0],[1709947309000,0],[1709947310000,0],[1709947311000,0],[1709947312000,0],[1709947313000,0],[1709947314000,0],[1709947315000,0],[1709947316000,0],[1709947317000,0],[1709947318000,0],[1709947319000,0],[1709947320000,0],[1709947321000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00D5FF',
name: 'validação HTTP 404',
data: [
[1709947077000,0],[1709947078000,0],[1709947079000,0],[1709947080000,1],[1709947081000,0],[1709947082000,0],[1709947083000,0],[1709947084000,0],[1709947085000,0],[1709947086000,0],[1709947087000,0],[1709947088000,0],[1709947089000,0],[1709947090000,0],[1709947091000,0],[1709947092000,0],[1709947093000,0],[1709947094000,0],[1709947095000,0],[1709947096000,0],[1709947097000,0],[1709947098000,0],[1709947099000,0],[1709947100000,0],[1709947101000,0],[1709947102000,0],[1709947103000,0],[1709947104000,0],[1709947105000,0],[1709947106000,0],[1709947107000,0],[1709947108000,0],[1709947109000,0],[1709947110000,0],[1709947111000,0],[1709947112000,0],[1709947113000,0],[1709947114000,0],[1709947115000,0],[1709947116000,0],[1709947117000,0],[1709947118000,0],[1709947119000,0],[1709947120000,0],[1709947121000,0],[1709947122000,0],[1709947123000,0],[1709947124000,0],[1709947125000,0],[1709947126000,0],[1709947127000,0],[1709947128000,0],[1709947129000,0],[1709947130000,0],[1709947131000,0],[1709947132000,0],[1709947133000,0],[1709947134000,0],[1709947135000,0],[1709947136000,0],[1709947137000,0],[1709947138000,0],[1709947139000,0],[1709947140000,0],[1709947141000,0],[1709947142000,0],[1709947143000,0],[1709947144000,0],[1709947145000,0],[1709947146000,0],[1709947147000,0],[1709947148000,0],[1709947149000,0],[1709947150000,0],[1709947151000,0],[1709947152000,0],[1709947153000,0],[1709947154000,0],[1709947155000,0],[1709947156000,0],[1709947157000,0],[1709947158000,0],[1709947159000,0],[1709947160000,0],[1709947161000,0],[1709947162000,0],[1709947163000,0],[1709947164000,0],[1709947165000,0],[1709947166000,0],[1709947167000,0],[1709947168000,0],[1709947169000,0],[1709947170000,0],[1709947171000,0],[1709947172000,0],[1709947173000,0],[1709947174000,0],[1709947175000,0],[1709947176000,0],[1709947177000,0],[1709947178000,0],[1709947179000,0],[1709947180000,0],[1709947181000,0],[1709947182000,0],[1709947183000,0],[1709947184000,0],[1709947185000,0],[1709947186000,0],[1709947187000,0],[1709947188000,0],[1709947189000,0],[1709947190000,0],[1709947191000,0],[1709947192000,0],[1709947193000,0],[1709947194000,0],[1709947195000,0],[1709947196000,0],[1709947197000,0],[1709947198000,0],[1709947199000,0],[1709947200000,0],[1709947201000,0],[1709947202000,0],[1709947203000,0],[1709947204000,0],[1709947205000,0],[1709947206000,0],[1709947207000,0],[1709947208000,0],[1709947209000,0],[1709947210000,0],[1709947211000,0],[1709947212000,0],[1709947213000,0],[1709947214000,0],[1709947215000,0],[1709947216000,0],[1709947217000,0],[1709947218000,0],[1709947219000,0],[1709947220000,0],[1709947221000,0],[1709947222000,0],[1709947223000,0],[1709947224000,0],[1709947225000,0],[1709947226000,0],[1709947227000,0],[1709947228000,0],[1709947229000,0],[1709947230000,0],[1709947231000,0],[1709947232000,0],[1709947233000,0],[1709947234000,0],[1709947235000,0],[1709947236000,0],[1709947237000,0],[1709947238000,0],[1709947239000,0],[1709947240000,0],[1709947241000,0],[1709947242000,0],[1709947243000,0],[1709947244000,0],[1709947245000,0],[1709947246000,0],[1709947247000,0],[1709947248000,0],[1709947249000,0],[1709947250000,0],[1709947251000,0],[1709947252000,0],[1709947253000,0],[1709947254000,0],[1709947255000,0],[1709947256000,0],[1709947257000,0],[1709947258000,0],[1709947259000,0],[1709947260000,0],[1709947261000,0],[1709947262000,0],[1709947263000,0],[1709947264000,0],[1709947265000,0],[1709947266000,0],[1709947267000,0],[1709947268000,0],[1709947269000,0],[1709947270000,0],[1709947271000,0],[1709947272000,0],[1709947273000,0],[1709947274000,0],[1709947275000,0],[1709947276000,0],[1709947277000,0],[1709947278000,0],[1709947279000,0],[1709947280000,0],[1709947281000,0],[1709947282000,0],[1709947283000,0],[1709947284000,0],[1709947285000,0],[1709947286000,0],[1709947287000,0],[1709947288000,0],[1709947289000,0],[1709947290000,0],[1709947291000,0],[1709947292000,0],[1709947293000,0],[1709947294000,0],[1709947295000,0],[1709947296000,0],[1709947297000,0],[1709947298000,0],[1709947299000,0],[1709947300000,0],[1709947301000,0],[1709947302000,0],[1709947303000,0],[1709947304000,0],[1709947305000,0],[1709947306000,0],[1709947307000,0],[1709947308000,0],[1709947309000,0],[1709947310000,0],[1709947311000,0],[1709947312000,0],[1709947313000,0],[1709947314000,0],[1709947315000,0],[1709947316000,0],[1709947317000,0],[1709947318000,0],[1709947319000,0],[1709947320000,0],[1709947321000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00FF00',
name: 'validação concorrência saldo - 0',
data: [
[1709947077000,0],[1709947078000,0],[1709947079000,1],[1709947080000,0],[1709947081000,0],[1709947082000,0],[1709947083000,0],[1709947084000,0],[1709947085000,0],[1709947086000,0],[1709947087000,0],[1709947088000,0],[1709947089000,0],[1709947090000,0],[1709947091000,0],[1709947092000,0],[1709947093000,0],[1709947094000,0],[1709947095000,0],[1709947096000,0],[1709947097000,0],[1709947098000,0],[1709947099000,0],[1709947100000,0],[1709947101000,0],[1709947102000,0],[1709947103000,0],[1709947104000,0],[1709947105000,0],[1709947106000,0],[1709947107000,0],[1709947108000,0],[1709947109000,0],[1709947110000,0],[1709947111000,0],[1709947112000,0],[1709947113000,0],[1709947114000,0],[1709947115000,0],[1709947116000,0],[1709947117000,0],[1709947118000,0],[1709947119000,0],[1709947120000,0],[1709947121000,0],[1709947122000,0],[1709947123000,0],[1709947124000,0],[1709947125000,0],[1709947126000,0],[1709947127000,0],[1709947128000,0],[1709947129000,0],[1709947130000,0],[1709947131000,0],[1709947132000,0],[1709947133000,0],[1709947134000,0],[1709947135000,0],[1709947136000,0],[1709947137000,0],[1709947138000,0],[1709947139000,0],[1709947140000,0],[1709947141000,0],[1709947142000,0],[1709947143000,0],[1709947144000,0],[1709947145000,0],[1709947146000,0],[1709947147000,0],[1709947148000,0],[1709947149000,0],[1709947150000,0],[1709947151000,0],[1709947152000,0],[1709947153000,0],[1709947154000,0],[1709947155000,0],[1709947156000,0],[1709947157000,0],[1709947158000,0],[1709947159000,0],[1709947160000,0],[1709947161000,0],[1709947162000,0],[1709947163000,0],[1709947164000,0],[1709947165000,0],[1709947166000,0],[1709947167000,0],[1709947168000,0],[1709947169000,0],[1709947170000,0],[1709947171000,0],[1709947172000,0],[1709947173000,0],[1709947174000,0],[1709947175000,0],[1709947176000,0],[1709947177000,0],[1709947178000,0],[1709947179000,0],[1709947180000,0],[1709947181000,0],[1709947182000,0],[1709947183000,0],[1709947184000,0],[1709947185000,0],[1709947186000,0],[1709947187000,0],[1709947188000,0],[1709947189000,0],[1709947190000,0],[1709947191000,0],[1709947192000,0],[1709947193000,0],[1709947194000,0],[1709947195000,0],[1709947196000,0],[1709947197000,0],[1709947198000,0],[1709947199000,0],[1709947200000,0],[1709947201000,0],[1709947202000,0],[1709947203000,0],[1709947204000,0],[1709947205000,0],[1709947206000,0],[1709947207000,0],[1709947208000,0],[1709947209000,0],[1709947210000,0],[1709947211000,0],[1709947212000,0],[1709947213000,0],[1709947214000,0],[1709947215000,0],[1709947216000,0],[1709947217000,0],[1709947218000,0],[1709947219000,0],[1709947220000,0],[1709947221000,0],[1709947222000,0],[1709947223000,0],[1709947224000,0],[1709947225000,0],[1709947226000,0],[1709947227000,0],[1709947228000,0],[1709947229000,0],[1709947230000,0],[1709947231000,0],[1709947232000,0],[1709947233000,0],[1709947234000,0],[1709947235000,0],[1709947236000,0],[1709947237000,0],[1709947238000,0],[1709947239000,0],[1709947240000,0],[1709947241000,0],[1709947242000,0],[1709947243000,0],[1709947244000,0],[1709947245000,0],[1709947246000,0],[1709947247000,0],[1709947248000,0],[1709947249000,0],[1709947250000,0],[1709947251000,0],[1709947252000,0],[1709947253000,0],[1709947254000,0],[1709947255000,0],[1709947256000,0],[1709947257000,0],[1709947258000,0],[1709947259000,0],[1709947260000,0],[1709947261000,0],[1709947262000,0],[1709947263000,0],[1709947264000,0],[1709947265000,0],[1709947266000,0],[1709947267000,0],[1709947268000,0],[1709947269000,0],[1709947270000,0],[1709947271000,0],[1709947272000,0],[1709947273000,0],[1709947274000,0],[1709947275000,0],[1709947276000,0],[1709947277000,0],[1709947278000,0],[1709947279000,0],[1709947280000,0],[1709947281000,0],[1709947282000,0],[1709947283000,0],[1709947284000,0],[1709947285000,0],[1709947286000,0],[1709947287000,0],[1709947288000,0],[1709947289000,0],[1709947290000,0],[1709947291000,0],[1709947292000,0],[1709947293000,0],[1709947294000,0],[1709947295000,0],[1709947296000,0],[1709947297000,0],[1709947298000,0],[1709947299000,0],[1709947300000,0],[1709947301000,0],[1709947302000,0],[1709947303000,0],[1709947304000,0],[1709947305000,0],[1709947306000,0],[1709947307000,0],[1709947308000,0],[1709947309000,0],[1709947310000,0],[1709947311000,0],[1709947312000,0],[1709947313000,0],[1709947314000,0],[1709947315000,0],[1709947316000,0],[1709947317000,0],[1709947318000,0],[1709947319000,0],[1709947320000,0],[1709947321000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#9D00FF',
name: 'validação concorrência transações - c',
data: [
[1709947077000,0],[1709947078000,25],[1709947079000,18],[1709947080000,0],[1709947081000,0],[1709947082000,0],[1709947083000,0],[1709947084000,0],[1709947085000,0],[1709947086000,0],[1709947087000,0],[1709947088000,0],[1709947089000,0],[1709947090000,0],[1709947091000,0],[1709947092000,0],[1709947093000,0],[1709947094000,0],[1709947095000,0],[1709947096000,0],[1709947097000,0],[1709947098000,0],[1709947099000,0],[1709947100000,0],[1709947101000,0],[1709947102000,0],[1709947103000,0],[1709947104000,0],[1709947105000,0],[1709947106000,0],[1709947107000,0],[1709947108000,0],[1709947109000,0],[1709947110000,0],[1709947111000,0],[1709947112000,0],[1709947113000,0],[1709947114000,0],[1709947115000,0],[1709947116000,0],[1709947117000,0],[1709947118000,0],[1709947119000,0],[1709947120000,0],[1709947121000,0],[1709947122000,0],[1709947123000,0],[1709947124000,0],[1709947125000,0],[1709947126000,0],[1709947127000,0],[1709947128000,0],[1709947129000,0],[1709947130000,0],[1709947131000,0],[1709947132000,0],[1709947133000,0],[1709947134000,0],[1709947135000,0],[1709947136000,0],[1709947137000,0],[1709947138000,0],[1709947139000,0],[1709947140000,0],[1709947141000,0],[1709947142000,0],[1709947143000,0],[1709947144000,0],[1709947145000,0],[1709947146000,0],[1709947147000,0],[1709947148000,0],[1709947149000,0],[1709947150000,0],[1709947151000,0],[1709947152000,0],[1709947153000,0],[1709947154000,0],[1709947155000,0],[1709947156000,0],[1709947157000,0],[1709947158000,0],[1709947159000,0],[1709947160000,0],[1709947161000,0],[1709947162000,0],[1709947163000,0],[1709947164000,0],[1709947165000,0],[1709947166000,0],[1709947167000,0],[1709947168000,0],[1709947169000,0],[1709947170000,0],[1709947171000,0],[1709947172000,0],[1709947173000,0],[1709947174000,0],[1709947175000,0],[1709947176000,0],[1709947177000,0],[1709947178000,0],[1709947179000,0],[1709947180000,0],[1709947181000,0],[1709947182000,0],[1709947183000,0],[1709947184000,0],[1709947185000,0],[1709947186000,0],[1709947187000,0],[1709947188000,0],[1709947189000,0],[1709947190000,0],[1709947191000,0],[1709947192000,0],[1709947193000,0],[1709947194000,0],[1709947195000,0],[1709947196000,0],[1709947197000,0],[1709947198000,0],[1709947199000,0],[1709947200000,0],[1709947201000,0],[1709947202000,0],[1709947203000,0],[1709947204000,0],[1709947205000,0],[1709947206000,0],[1709947207000,0],[1709947208000,0],[1709947209000,0],[1709947210000,0],[1709947211000,0],[1709947212000,0],[1709947213000,0],[1709947214000,0],[1709947215000,0],[1709947216000,0],[1709947217000,0],[1709947218000,0],[1709947219000,0],[1709947220000,0],[1709947221000,0],[1709947222000,0],[1709947223000,0],[1709947224000,0],[1709947225000,0],[1709947226000,0],[1709947227000,0],[1709947228000,0],[1709947229000,0],[1709947230000,0],[1709947231000,0],[1709947232000,0],[1709947233000,0],[1709947234000,0],[1709947235000,0],[1709947236000,0],[1709947237000,0],[1709947238000,0],[1709947239000,0],[1709947240000,0],[1709947241000,0],[1709947242000,0],[1709947243000,0],[1709947244000,0],[1709947245000,0],[1709947246000,0],[1709947247000,0],[1709947248000,0],[1709947249000,0],[1709947250000,0],[1709947251000,0],[1709947252000,0],[1709947253000,0],[1709947254000,0],[1709947255000,0],[1709947256000,0],[1709947257000,0],[1709947258000,0],[1709947259000,0],[1709947260000,0],[1709947261000,0],[1709947262000,0],[1709947263000,0],[1709947264000,0],[1709947265000,0],[1709947266000,0],[1709947267000,0],[1709947268000,0],[1709947269000,0],[1709947270000,0],[1709947271000,0],[1709947272000,0],[1709947273000,0],[1709947274000,0],[1709947275000,0],[1709947276000,0],[1709947277000,0],[1709947278000,0],[1709947279000,0],[1709947280000,0],[1709947281000,0],[1709947282000,0],[1709947283000,0],[1709947284000,0],[1709947285000,0],[1709947286000,0],[1709947287000,0],[1709947288000,0],[1709947289000,0],[1709947290000,0],[1709947291000,0],[1709947292000,0],[1709947293000,0],[1709947294000,0],[1709947295000,0],[1709947296000,0],[1709947297000,0],[1709947298000,0],[1709947299000,0],[1709947300000,0],[1709947301000,0],[1709947302000,0],[1709947303000,0],[1709947304000,0],[1709947305000,0],[1709947306000,0],[1709947307000,0],[1709947308000,0],[1709947309000,0],[1709947310000,0],[1709947311000,0],[1709947312000,0],[1709947313000,0],[1709947314000,0],[1709947315000,0],[1709947316000,0],[1709947317000,0],[1709947318000,0],[1709947319000,0],[1709947320000,0],[1709947321000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FF00E1',
name: 'validação concorrência saldo - -25',
data: [
[1709947077000,1],[1709947078000,1],[1709947079000,0],[1709947080000,0],[1709947081000,0],[1709947082000,0],[1709947083000,0],[1709947084000,0],[1709947085000,0],[1709947086000,0],[1709947087000,0],[1709947088000,0],[1709947089000,0],[1709947090000,0],[1709947091000,0],[1709947092000,0],[1709947093000,0],[1709947094000,0],[1709947095000,0],[1709947096000,0],[1709947097000,0],[1709947098000,0],[1709947099000,0],[1709947100000,0],[1709947101000,0],[1709947102000,0],[1709947103000,0],[1709947104000,0],[1709947105000,0],[1709947106000,0],[1709947107000,0],[1709947108000,0],[1709947109000,0],[1709947110000,0],[1709947111000,0],[1709947112000,0],[1709947113000,0],[1709947114000,0],[1709947115000,0],[1709947116000,0],[1709947117000,0],[1709947118000,0],[1709947119000,0],[1709947120000,0],[1709947121000,0],[1709947122000,0],[1709947123000,0],[1709947124000,0],[1709947125000,0],[1709947126000,0],[1709947127000,0],[1709947128000,0],[1709947129000,0],[1709947130000,0],[1709947131000,0],[1709947132000,0],[1709947133000,0],[1709947134000,0],[1709947135000,0],[1709947136000,0],[1709947137000,0],[1709947138000,0],[1709947139000,0],[1709947140000,0],[1709947141000,0],[1709947142000,0],[1709947143000,0],[1709947144000,0],[1709947145000,0],[1709947146000,0],[1709947147000,0],[1709947148000,0],[1709947149000,0],[1709947150000,0],[1709947151000,0],[1709947152000,0],[1709947153000,0],[1709947154000,0],[1709947155000,0],[1709947156000,0],[1709947157000,0],[1709947158000,0],[1709947159000,0],[1709947160000,0],[1709947161000,0],[1709947162000,0],[1709947163000,0],[1709947164000,0],[1709947165000,0],[1709947166000,0],[1709947167000,0],[1709947168000,0],[1709947169000,0],[1709947170000,0],[1709947171000,0],[1709947172000,0],[1709947173000,0],[1709947174000,0],[1709947175000,0],[1709947176000,0],[1709947177000,0],[1709947178000,0],[1709947179000,0],[1709947180000,0],[1709947181000,0],[1709947182000,0],[1709947183000,0],[1709947184000,0],[1709947185000,0],[1709947186000,0],[1709947187000,0],[1709947188000,0],[1709947189000,0],[1709947190000,0],[1709947191000,0],[1709947192000,0],[1709947193000,0],[1709947194000,0],[1709947195000,0],[1709947196000,0],[1709947197000,0],[1709947198000,0],[1709947199000,0],[1709947200000,0],[1709947201000,0],[1709947202000,0],[1709947203000,0],[1709947204000,0],[1709947205000,0],[1709947206000,0],[1709947207000,0],[1709947208000,0],[1709947209000,0],[1709947210000,0],[1709947211000,0],[1709947212000,0],[1709947213000,0],[1709947214000,0],[1709947215000,0],[1709947216000,0],[1709947217000,0],[1709947218000,0],[1709947219000,0],[1709947220000,0],[1709947221000,0],[1709947222000,0],[1709947223000,0],[1709947224000,0],[1709947225000,0],[1709947226000,0],[1709947227000,0],[1709947228000,0],[1709947229000,0],[1709947230000,0],[1709947231000,0],[1709947232000,0],[1709947233000,0],[1709947234000,0],[1709947235000,0],[1709947236000,0],[1709947237000,0],[1709947238000,0],[1709947239000,0],[1709947240000,0],[1709947241000,0],[1709947242000,0],[1709947243000,0],[1709947244000,0],[1709947245000,0],[1709947246000,0],[1709947247000,0],[1709947248000,0],[1709947249000,0],[1709947250000,0],[1709947251000,0],[1709947252000,0],[1709947253000,0],[1709947254000,0],[1709947255000,0],[1709947256000,0],[1709947257000,0],[1709947258000,0],[1709947259000,0],[1709947260000,0],[1709947261000,0],[1709947262000,0],[1709947263000,0],[1709947264000,0],[1709947265000,0],[1709947266000,0],[1709947267000,0],[1709947268000,0],[1709947269000,0],[1709947270000,0],[1709947271000,0],[1709947272000,0],[1709947273000,0],[1709947274000,0],[1709947275000,0],[1709947276000,0],[1709947277000,0],[1709947278000,0],[1709947279000,0],[1709947280000,0],[1709947281000,0],[1709947282000,0],[1709947283000,0],[1709947284000,0],[1709947285000,0],[1709947286000,0],[1709947287000,0],[1709947288000,0],[1709947289000,0],[1709947290000,0],[1709947291000,0],[1709947292000,0],[1709947293000,0],[1709947294000,0],[1709947295000,0],[1709947296000,0],[1709947297000,0],[1709947298000,0],[1709947299000,0],[1709947300000,0],[1709947301000,0],[1709947302000,0],[1709947303000,0],[1709947304000,0],[1709947305000,0],[1709947306000,0],[1709947307000,0],[1709947308000,0],[1709947309000,0],[1709947310000,0],[1709947311000,0],[1709947312000,0],[1709947313000,0],[1709947314000,0],[1709947315000,0],[1709947316000,0],[1709947317000,0],[1709947318000,0],[1709947319000,0],[1709947320000,0],[1709947321000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#AECAEB',
name: 'validação concorrência transações - d',
data: [
[1709947077000,25],[1709947078000,0],[1709947079000,0],[1709947080000,0],[1709947081000,0],[1709947082000,0],[1709947083000,0],[1709947084000,0],[1709947085000,0],[1709947086000,0],[1709947087000,0],[1709947088000,0],[1709947089000,0],[1709947090000,0],[1709947091000,0],[1709947092000,0],[1709947093000,0],[1709947094000,0],[1709947095000,0],[1709947096000,0],[1709947097000,0],[1709947098000,0],[1709947099000,0],[1709947100000,0],[1709947101000,0],[1709947102000,0],[1709947103000,0],[1709947104000,0],[1709947105000,0],[1709947106000,0],[1709947107000,0],[1709947108000,0],[1709947109000,0],[1709947110000,0],[1709947111000,0],[1709947112000,0],[1709947113000,0],[1709947114000,0],[1709947115000,0],[1709947116000,0],[1709947117000,0],[1709947118000,0],[1709947119000,0],[1709947120000,0],[1709947121000,0],[1709947122000,0],[1709947123000,0],[1709947124000,0],[1709947125000,0],[1709947126000,0],[1709947127000,0],[1709947128000,0],[1709947129000,0],[1709947130000,0],[1709947131000,0],[1709947132000,0],[1709947133000,0],[1709947134000,0],[1709947135000,0],[1709947136000,0],[1709947137000,0],[1709947138000,0],[1709947139000,0],[1709947140000,0],[1709947141000,0],[1709947142000,0],[1709947143000,0],[1709947144000,0],[1709947145000,0],[1709947146000,0],[1709947147000,0],[1709947148000,0],[1709947149000,0],[1709947150000,0],[1709947151000,0],[1709947152000,0],[1709947153000,0],[1709947154000,0],[1709947155000,0],[1709947156000,0],[1709947157000,0],[1709947158000,0],[1709947159000,0],[1709947160000,0],[1709947161000,0],[1709947162000,0],[1709947163000,0],[1709947164000,0],[1709947165000,0],[1709947166000,0],[1709947167000,0],[1709947168000,0],[1709947169000,0],[1709947170000,0],[1709947171000,0],[1709947172000,0],[1709947173000,0],[1709947174000,0],[1709947175000,0],[1709947176000,0],[1709947177000,0],[1709947178000,0],[1709947179000,0],[1709947180000,0],[1709947181000,0],[1709947182000,0],[1709947183000,0],[1709947184000,0],[1709947185000,0],[1709947186000,0],[1709947187000,0],[1709947188000,0],[1709947189000,0],[1709947190000,0],[1709947191000,0],[1709947192000,0],[1709947193000,0],[1709947194000,0],[1709947195000,0],[1709947196000,0],[1709947197000,0],[1709947198000,0],[1709947199000,0],[1709947200000,0],[1709947201000,0],[1709947202000,0],[1709947203000,0],[1709947204000,0],[1709947205000,0],[1709947206000,0],[1709947207000,0],[1709947208000,0],[1709947209000,0],[1709947210000,0],[1709947211000,0],[1709947212000,0],[1709947213000,0],[1709947214000,0],[1709947215000,0],[1709947216000,0],[1709947217000,0],[1709947218000,0],[1709947219000,0],[1709947220000,0],[1709947221000,0],[1709947222000,0],[1709947223000,0],[1709947224000,0],[1709947225000,0],[1709947226000,0],[1709947227000,0],[1709947228000,0],[1709947229000,0],[1709947230000,0],[1709947231000,0],[1709947232000,0],[1709947233000,0],[1709947234000,0],[1709947235000,0],[1709947236000,0],[1709947237000,0],[1709947238000,0],[1709947239000,0],[1709947240000,0],[1709947241000,0],[1709947242000,0],[1709947243000,0],[1709947244000,0],[1709947245000,0],[1709947246000,0],[1709947247000,0],[1709947248000,0],[1709947249000,0],[1709947250000,0],[1709947251000,0],[1709947252000,0],[1709947253000,0],[1709947254000,0],[1709947255000,0],[1709947256000,0],[1709947257000,0],[1709947258000,0],[1709947259000,0],[1709947260000,0],[1709947261000,0],[1709947262000,0],[1709947263000,0],[1709947264000,0],[1709947265000,0],[1709947266000,0],[1709947267000,0],[1709947268000,0],[1709947269000,0],[1709947270000,0],[1709947271000,0],[1709947272000,0],[1709947273000,0],[1709947274000,0],[1709947275000,0],[1709947276000,0],[1709947277000,0],[1709947278000,0],[1709947279000,0],[1709947280000,0],[1709947281000,0],[1709947282000,0],[1709947283000,0],[1709947284000,0],[1709947285000,0],[1709947286000,0],[1709947287000,0],[1709947288000,0],[1709947289000,0],[1709947290000,0],[1709947291000,0],[1709947292000,0],[1709947293000,0],[1709947294000,0],[1709947295000,0],[1709947296000,0],[1709947297000,0],[1709947298000,0],[1709947299000,0],[1709947300000,0],[1709947301000,0],[1709947302000,0],[1709947303000,0],[1709947304000,0],[1709947305000,0],[1709947306000,0],[1709947307000,0],[1709947308000,0],[1709947309000,0],[1709947310000,0],[1709947311000,0],[1709947312000,0],[1709947313000,0],[1709947314000,0],[1709947315000,0],[1709947316000,0],[1709947317000,0],[1709947318000,0],[1709947319000,0],[1709947320000,0],[1709947321000,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', '3', '5', '6', '8', '9', '10', '12', '13', '15', '16', '18', '19', '21', '22', '24', '25', '27', '28', '29', '31', '32', '34', '35', '37', '38', '40', '41', '43', '44', '46', '47', '48', '50', '51', '53', '54', '56', '57', '59', '60', '62', '63', '65', '66', '67', '69', '70', '72', '73', '75', '76', '78', '79', '81', '82', '83', '85', '86', '88', '89', '91', '92', '94', '95', '97', '98', '100', '101', '102', '104', '105', '107', '108', '110', '111', '113', '114', '116', '117', '119', '120', '121', '123', '124', '126', '127', '129', '130', '132', '133', '135', '136', '138', '139', '140', '142', '143', '145', '146'],
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: [
25.63,35.96,31.98,4.15,1.79,0.08,0.04,0.0,0.02,0.01,0.02,0.0,0.0,0.02,0.0,0.01,0.0,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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([[1709947077,[21,57,69,84,85,87,89,92,99,101]],[1709947078,[5,5,5,5,5,5,5,5,5,5]],[1709947079,[5,17,30,49,50,52,54,58,60,61]],[1709947080,[4,4,4,4,4,4,4,4,4,4]],[1709947081,[1,3,5,12,18,20,61,77,84,86]],[1709947082,[5,5,6,8,9,9,10,10,10,11]],[1709947083,[5,5,5,5,6,6,6,6,6,6]],[1709947084,[4,5,5,6,6,6,6,6,6,6]],[1709947085,[3,5,5,5,6,6,6,6,6,7]],[1709947086,[4,4,5,5,5,5,5,5,6,7]],[1709947087,[3,4,5,5,5,5,6,6,6,6]],[1709947088,[4,4,4,5,5,5,6,6,6,7]],[1709947089,[3,4,4,5,5,5,5,5,5,6]],[1709947090,[3,4,5,5,6,6,6,7,9,10]],[1709947091,[4,4,5,5,5,5,5,6,6,6]],[1709947092,[3,4,5,5,5,6,6,6,6,6]],[1709947093,[3,4,4,5,5,5,5,6,6,7]],[1709947094,[3,4,4,6,6,6,6,6,7,7]],[1709947095,[3,4,4,5,5,5,5,6,7,8]],[1709947096,[3,4,4,5,5,5,5,6,6,6]],[1709947097,[2,4,4,5,5,5,5,5,6,7]],[1709947098,[2,4,4,4,4,4,5,5,6,6]],[1709947099,[1,3,4,4,4,4,5,5,6,6]],[1709947100,[2,3,4,4,4,4,4,5,5,7]],[1709947101,[1,3,4,4,4,4,4,5,5,6]],[1709947102,[2,4,4,5,7,39,54,100,144,147]],[1709947103,[1,4,4,4,4,4,5,5,6,6]],[1709947104,[2,3,4,4,4,4,5,5,5,5]],[1709947105,[2,4,4,4,4,5,5,6,21,22]],[1709947106,[2,3,4,4,4,5,5,6,9,9]],[1709947107,[1,3,4,4,4,4,4,5,6,6]],[1709947108,[1,3,4,4,4,5,5,6,6,7]],[1709947109,[1,3,3,4,4,4,5,5,6,6]],[1709947110,[1,3,3,4,4,4,4,4,6,6]],[1709947111,[1,3,3,4,4,4,4,5,8,8]],[1709947112,[1,3,3,4,4,4,4,4,5,5]],[1709947113,[1,3,3,4,4,4,4,5,5,6]],[1709947114,[1,3,3,4,4,4,4,5,6,6]],[1709947115,[1,3,3,4,4,5,5,6,8,8]],[1709947116,[1,3,3,4,4,5,5,5,6,6]],[1709947117,[1,3,4,4,5,5,5,5,6,6]],[1709947118,[1,3,4,4,4,5,5,5,6,9]],[1709947119,[1,2,3,4,4,4,4,5,5,7]],[1709947120,[1,3,3,4,4,4,4,4,5,5]],[1709947121,[1,3,3,4,4,4,4,5,6,6]],[1709947122,[1,3,3,4,4,5,5,5,6,8]],[1709947123,[1,3,3,3,4,4,4,4,5,8]],[1709947124,[1,3,3,3,4,4,4,4,5,6]],[1709947125,[1,3,3,4,4,4,4,5,5,6]],[1709947126,[1,3,3,4,4,4,4,4,5,6]],[1709947127,[1,3,3,4,4,4,4,4,6,7]],[1709947128,[1,3,3,4,4,4,4,5,5,6]],[1709947129,[2,3,4,4,4,4,5,5,6,7]],[1709947130,[1,2,3,4,4,4,4,5,6,7]],[1709947131,[1,2,3,4,4,4,4,5,5,8]],[1709947132,[1,3,3,4,4,4,4,5,5,6]],[1709947133,[1,2,3,3,3,3,4,4,7,18]],[1709947134,[1,2,3,3,3,3,3,4,5,6]],[1709947135,[1,2,3,3,3,3,3,4,5,6]],[1709947136,[1,3,3,3,3,4,4,4,5,6]],[1709947137,[1,2,3,3,4,4,4,4,5,6]],[1709947138,[1,2,3,4,4,4,4,5,6,7]],[1709947139,[1,2,3,4,4,4,5,5,5,7]],[1709947140,[1,3,3,4,4,5,5,5,6,9]],[1709947141,[1,3,3,4,4,4,4,5,6,6]],[1709947142,[1,3,3,3,3,4,4,4,4,6]],[1709947143,[1,3,3,3,3,4,4,4,6,8]],[1709947144,[1,2,3,3,3,3,4,4,5,6]],[1709947145,[1,2,3,3,3,3,4,4,5,7]],[1709947146,[1,2,3,3,3,4,4,4,4,7]],[1709947147,[1,2,3,3,3,3,4,4,5,7]],[1709947148,[1,2,3,3,3,3,4,4,6,7]],[1709947149,[1,2,3,3,3,3,3,4,4,5]],[1709947150,[1,2,3,4,4,4,4,4,7,7]],[1709947151,[1,2,3,4,4,4,4,5,5,7]],[1709947152,[1,2,3,3,3,3,4,4,5,9]],[1709947153,[1,2,3,4,4,4,4,5,6,8]],[1709947154,[1,2,3,3,4,4,4,5,5,8]],[1709947155,[1,2,3,3,3,3,4,4,5,5]],[1709947156,[1,2,3,3,3,3,4,4,5,6]],[1709947157,[1,3,3,3,3,4,4,4,5,5]],[1709947158,[1,3,3,3,4,4,4,5,5,6]],[1709947159,[1,2,3,3,3,3,4,4,5,6]],[1709947160,[1,2,3,4,4,4,4,5,5,7]],[1709947161,[1,2,3,4,4,4,4,5,5,6]],[1709947162,[1,2,3,3,3,4,4,4,5,7]],[1709947163,[1,2,3,3,3,3,4,4,5,6]],[1709947164,[1,2,3,3,3,4,4,4,5,6]],[1709947165,[1,2,3,3,3,4,4,4,6,7]],[1709947166,[1,2,3,3,3,4,4,4,7,8]],[1709947167,[1,2,3,3,3,3,4,4,5,5]],[1709947168,[1,2,3,3,3,3,4,4,5,5]],[1709947169,[1,2,3,3,3,3,4,4,14,21]],[1709947170,[1,2,3,3,4,4,4,4,5,5]],[1709947171,[1,2,3,3,4,4,4,5,7,23]],[1709947172,[1,2,3,3,4,4,4,4,5,7]],[1709947173,[1,2,3,3,4,4,4,5,6,9]],[1709947174,[1,3,3,4,4,4,4,5,6,9]],[1709947175,[1,2,3,3,3,4,4,5,5,6]],[1709947176,[1,2,3,3,3,3,4,4,5,6]],[1709947177,[1,2,3,3,3,3,4,4,5,6]],[1709947178,[1,2,3,3,3,4,4,4,5,6]],[1709947179,[1,3,3,3,3,4,4,4,6,7]],[1709947180,[1,2,3,4,4,4,4,5,5,9]],[1709947181,[1,2,3,3,3,3,4,4,5,6]],[1709947182,[1,3,3,3,4,4,4,5,5,7]],[1709947183,[1,3,3,3,4,4,4,4,5,6]],[1709947184,[1,3,3,3,4,4,4,4,5,7]],[1709947185,[1,2,3,4,4,4,4,5,6,6]],[1709947186,[1,3,3,4,4,4,5,5,6,6]],[1709947187,[1,2,3,3,3,4,4,4,5,6]],[1709947188,[1,2,3,3,3,4,4,5,5,7]],[1709947189,[1,2,3,3,3,3,4,4,5,5]],[1709947190,[1,2,3,3,3,3,3,4,5,5]],[1709947191,[1,2,3,3,3,3,3,4,4,5]],[1709947192,[1,2,3,3,3,4,4,5,6,6]],[1709947193,[1,3,3,4,4,4,4,5,6,7]],[1709947194,[1,3,4,4,4,5,5,5,6,8]],[1709947195,[1,3,4,5,5,5,6,6,7,12]],[1709947196,[1,3,4,5,5,5,6,6,7,8]],[1709947197,[1,3,4,5,5,5,5,6,7,7]],[1709947198,[1,3,3,5,5,5,5,6,7,8]],[1709947199,[1,3,3,4,5,6,28,80,107,116]],[1709947200,[1,3,4,5,5,5,5,6,7,9]],[1709947201,[1,3,3,5,5,5,6,6,8,26]],[1709947202,[1,3,4,5,5,6,6,6,7,8]],[1709947203,[1,3,3,4,4,4,5,5,6,7]],[1709947204,[1,2,4,4,5,5,5,5,6,7]],[1709947205,[1,2,3,4,4,4,4,5,6,20]],[1709947206,[1,3,4,5,5,6,6,7,7,9]],[1709947207,[1,3,3,4,4,5,5,5,6,8]],[1709947208,[1,3,4,5,5,5,5,6,7,10]],[1709947209,[1,2,3,3,3,4,4,4,6,9]],[1709947210,[1,4,4,5,5,6,6,6,7,8]],[1709947211,[1,2,2,3,3,3,4,4,5,6]],[1709947212,[1,3,4,4,4,5,5,5,6,7]],[1709947213,[1,2,3,3,3,3,4,4,6,8]],[1709947214,[1,3,4,5,5,5,6,6,7,8]],[1709947215,[1,2,3,3,4,4,4,4,5,8]],[1709947216,[1,3,4,5,5,6,6,6,7,8]],[1709947217,[1,2,3,4,4,4,5,5,6,8]],[1709947218,[1,3,4,5,5,5,6,6,7,9]],[1709947219,[1,3,3,4,4,4,5,5,6,9]],[1709947220,[1,3,5,6,6,6,7,7,8,13]],[1709947221,[1,3,3,4,5,5,5,6,7,15]],[1709947222,[1,3,4,4,5,5,5,5,7,10]],[1709947223,[1,2,3,4,4,4,4,5,6,7]],[1709947224,[1,3,4,5,5,6,6,7,7,8]],[1709947225,[1,2,3,4,4,5,5,6,7,8]],[1709947226,[1,3,3,4,5,5,6,6,7,7]],[1709947227,[1,2,3,4,5,5,5,6,7,7]],[1709947228,[1,2,3,4,4,5,5,6,7,7]],[1709947229,[1,2,3,4,4,5,5,6,7,10]],[1709947230,[1,2,3,4,4,5,5,6,21,41]],[1709947231,[1,3,4,5,5,5,6,6,7,9]],[1709947232,[1,2,3,4,4,5,5,5,7,9]],[1709947233,[1,2,3,4,4,5,5,6,7,10]],[1709947234,[1,2,3,3,4,4,4,5,6,6]],[1709947235,[1,3,4,4,5,5,5,6,6,7]],[1709947236,[1,2,3,4,4,4,5,5,9,25]],[1709947237,[1,2,3,4,4,5,5,6,7,8]],[1709947238,[1,2,3,3,3,4,4,5,5,8]],[1709947239,[1,3,4,5,5,5,6,6,8,28]],[1709947240,[1,2,3,3,4,4,4,5,6,6]],[1709947241,[1,3,3,4,5,5,5,6,7,7]],[1709947242,[1,2,3,3,4,4,4,4,5,6]],[1709947243,[1,2,3,4,5,5,5,6,7,9]],[1709947244,[1,2,3,4,4,4,4,5,6,7]],[1709947245,[1,2,3,4,4,4,5,6,6,7]],[1709947246,[1,2,3,4,4,4,5,5,6,15]],[1709947247,[1,2,3,4,4,5,5,5,6,7]],[1709947248,[1,2,2,3,3,4,4,4,5,6]],[1709947249,[1,2,3,4,4,5,5,6,7,8]],[1709947250,[1,3,3,4,4,4,5,5,6,6]],[1709947251,[1,3,3,5,5,5,5,6,7,8]],[1709947252,[1,2,3,4,4,4,5,5,6,7]],[1709947253,[1,3,3,4,5,5,5,6,7,8]],[1709947254,[1,2,3,4,4,4,5,5,18,29]],[1709947255,[1,2,3,4,4,5,5,6,7,8]],[1709947256,[1,3,3,4,5,5,5,6,7,8]],[1709947257,[2,4,5,5,6,6,6,7,7,8]],[1709947258,[1,3,3,4,4,5,5,5,7,7]],[1709947259,[2,4,5,5,6,6,6,7,7,8]],[1709947260,[1,3,3,4,4,4,5,5,6,6]],[1709947261,[1,3,4,5,5,6,6,7,8,8]],[1709947262,[1,2,3,3,3,4,4,5,5,6]],[1709947263,[1,3,4,5,5,5,6,6,7,8]],[1709947264,[1,2,3,4,4,5,5,5,7,8]],[1709947265,[1,3,4,5,5,6,6,6,7,8]],[1709947266,[1,2,3,4,4,4,5,6,7,8]],[1709947267,[1,3,4,5,5,6,6,7,9,16]],[1709947268,[1,2,3,4,4,5,5,6,7,9]],[1709947269,[1,2,3,5,5,5,6,6,7,7]],[1709947270,[1,3,3,5,5,5,5,6,7,7]],[1709947271,[1,3,4,5,5,6,6,7,7,10]],[1709947272,[1,3,4,5,5,5,6,6,7,8]],[1709947273,[1,3,4,5,5,5,6,7,8,23]],[1709947274,[1,3,4,5,5,5,5,6,7,7]],[1709947275,[1,3,4,5,5,6,6,7,8,20]],[1709947276,[1,3,4,5,5,6,6,7,7,9]],[1709947277,[1,2,3,4,5,5,5,6,7,8]],[1709947278,[1,2,3,4,5,5,5,6,7,8]],[1709947279,[1,2,3,4,5,5,5,6,7,7]],[1709947280,[1,3,3,4,5,5,5,6,7,8]],[1709947281,[1,2,3,4,4,4,5,5,7,8]],[1709947282,[1,3,4,5,5,5,6,6,7,8]],[1709947283,[1,1,3,3,4,4,4,5,6,9]],[1709947284,[1,3,4,5,5,5,6,6,8,10]],[1709947285,[1,2,3,3,4,4,4,5,6,9]],[1709947286,[1,3,4,5,5,5,6,6,7,8]],[1709947287,[1,2,3,3,4,4,5,5,6,7]],[1709947288,[1,3,4,5,5,5,6,7,8,10]],[1709947289,[1,1,3,3,4,4,4,4,5,7]],[1709947290,[1,3,4,5,6,7,8,26,49,68]],[1709947291,[1,2,3,4,4,4,4,5,6,6]],[1709947292,[1,3,4,5,5,5,6,7,7,9]],[1709947293,[1,3,3,4,4,4,5,5,6,6]],[1709947294,[1,3,4,5,5,5,6,6,7,8]],[1709947295,[1,2,3,4,4,4,5,5,6,6]],[1709947296,[1,3,4,5,6,6,7,7,8,11]],[1709947297,[1,2,3,4,4,4,5,5,6,9]],[1709947298,[1,3,4,5,5,6,6,7,8,10]],[1709947299,[1,3,3,4,4,5,5,5,6,8]],[1709947300,[1,3,4,5,5,6,6,7,7,8]],[1709947301,[1,2,3,4,4,5,5,5,8,26]],[1709947302,[1,2,3,4,4,4,5,5,6,8]],[1709947303,[1,2,3,3,4,4,5,5,6,6]],[1709947304,[1,3,3,5,5,5,6,6,8,9]],[1709947305,[1,3,3,4,4,5,5,6,7,8]],[1709947306,[1,3,3,4,4,5,5,6,7,10]],[1709947307,[1,2,3,4,4,5,5,6,7,7]],[1709947308,[1,2,3,4,4,4,5,5,6,8]],[1709947309,[1,2,3,4,4,5,5,6,7,21]],[1709947310,[1,2,3,4,4,4,5,5,6,9]],[1709947311,[1,3,3,5,5,5,6,6,8,11]],[1709947312,[1,2,3,4,4,4,5,5,6,6]],[1709947313,[1,3,3,4,5,5,5,6,8,17]],[1709947314,[1,2,3,4,4,4,5,5,6,8]],[1709947315,[1,2,3,4,4,5,5,6,7,8]],[1709947316,[1,2,3,4,4,5,5,5,6,8]],[1709947317,[1,2,3,4,5,5,5,6,8,11]],[1709947318,[1,3,3,5,5,5,6,7,8,9]],[1709947319,[1,3,4,5,5,6,6,7,8,9]],[1709947320,[1,3,4,5,5,5,5,6,8,9]],[1709947321,[1,3,3,4,4,5,5,5,7,8]]]);
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([[1709947077,[25,25,0]],[1709947078,[1,1,0]],[1709947079,[25,25,0]],[1709947080,[1,1,0]],[1709947081,[71,71,0]],[1709947082,[3,3,0]],[1709947083,[6,6,0]],[1709947084,[9,9,0]],[1709947085,[11,11,0]],[1709947086,[13,13,0]],[1709947087,[18,18,0]],[1709947088,[19,19,0]],[1709947089,[24,24,0]],[1709947090,[26,26,0]],[1709947091,[27,27,0]],[1709947092,[32,32,0]],[1709947093,[34,34,0]],[1709947094,[37,37,0]],[1709947095,[40,40,0]],[1709947096,[42,42,0]],[1709947097,[45,45,0]],[1709947098,[48,48,0]],[1709947099,[50,50,0]],[1709947100,[54,54,0]],[1709947101,[56,56,0]],[1709947102,[60,60,0]],[1709947103,[61,61,0]],[1709947104,[66,66,0]],[1709947105,[67,67,0]],[1709947106,[71,71,0]],[1709947107,[73,73,0]],[1709947108,[77,77,0]],[1709947109,[78,78,0]],[1709947110,[81,81,0]],[1709947111,[84,84,0]],[1709947112,[89,89,0]],[1709947113,[90,90,0]],[1709947114,[92,92,0]],[1709947115,[96,96,0]],[1709947116,[98,98,0]],[1709947117,[102,102,0]],[1709947118,[104,104,0]],[1709947119,[108,108,0]],[1709947120,[109,109,0]],[1709947121,[113,113,0]],[1709947122,[115,115,0]],[1709947123,[119,119,0]],[1709947124,[121,121,0]],[1709947125,[124,124,0]],[1709947126,[126,126,0]],[1709947127,[129,129,0]],[1709947128,[133,133,0]],[1709947129,[135,135,0]],[1709947130,[137,137,0]],[1709947131,[142,142,0]],[1709947132,[142,142,0]],[1709947133,[147,147,0]],[1709947134,[149,149,0]],[1709947135,[152,152,0]],[1709947136,[155,155,0]],[1709947137,[157,157,0]],[1709947138,[160,160,0]],[1709947139,[163,163,0]],[1709947140,[166,166,0]],[1709947141,[170,170,0]],[1709947142,[171,171,0]],[1709947143,[174,174,0]],[1709947144,[177,177,0]],[1709947145,[181,181,0]],[1709947146,[183,183,0]],[1709947147,[185,185,0]],[1709947148,[189,189,0]],[1709947149,[192,192,0]],[1709947150,[194,194,0]],[1709947151,[196,196,0]],[1709947152,[199,199,0]],[1709947153,[203,203,0]],[1709947154,[205,205,0]],[1709947155,[208,208,0]],[1709947156,[211,211,0]],[1709947157,[213,213,0]],[1709947158,[217,217,0]],[1709947159,[219,219,0]],[1709947160,[222,222,0]],[1709947161,[226,226,0]],[1709947162,[227,227,0]],[1709947163,[230,230,0]],[1709947164,[233,233,0]],[1709947165,[237,237,0]],[1709947166,[239,239,0]],[1709947167,[242,242,0]],[1709947168,[244,244,0]],[1709947169,[248,248,0]],[1709947170,[251,251,0]],[1709947171,[252,252,0]],[1709947172,[256,256,0]],[1709947173,[259,259,0]],[1709947174,[262,262,0]],[1709947175,[264,264,0]],[1709947176,[267,267,0]],[1709947177,[269,269,0]],[1709947178,[273,273,0]],[1709947179,[275,275,0]],[1709947180,[279,279,0]],[1709947181,[281,281,0]],[1709947182,[284,284,0]],[1709947183,[286,286,0]],[1709947184,[290,290,0]],[1709947185,[291,291,0]],[1709947186,[296,296,0]],[1709947187,[299,299,0]],[1709947188,[301,301,0]],[1709947189,[303,303,0]],[1709947190,[306,306,0]],[1709947191,[309,309,0]],[1709947192,[313,313,0]],[1709947193,[314,314,0]],[1709947194,[318,318,0]],[1709947195,[320,320,0]],[1709947196,[323,323,0]],[1709947197,[326,326,0]],[1709947198,[330,330,0]],[1709947199,[332,332,0]],[1709947200,[334,334,0]],[1709947201,[337,337,0]],[1709947202,[340,340,0]],[1709947203,[340,340,0]],[1709947204,[340,340,0]],[1709947205,[340,340,0]],[1709947206,[340,340,0]],[1709947207,[340,340,0]],[1709947208,[340,340,0]],[1709947209,[340,340,0]],[1709947210,[340,340,0]],[1709947211,[340,340,0]],[1709947212,[340,340,0]],[1709947213,[340,340,0]],[1709947214,[340,340,0]],[1709947215,[340,340,0]],[1709947216,[340,340,0]],[1709947217,[340,340,0]],[1709947218,[340,340,0]],[1709947219,[340,340,0]],[1709947220,[340,340,0]],[1709947221,[340,340,0]],[1709947222,[340,340,0]],[1709947223,[340,340,0]],[1709947224,[340,340,0]],[1709947225,[340,340,0]],[1709947226,[340,340,0]],[1709947227,[340,340,0]],[1709947228,[340,340,0]],[1709947229,[340,340,0]],[1709947230,[340,340,0]],[1709947231,[340,340,0]],[1709947232,[340,340,0]],[1709947233,[340,340,0]],[1709947234,[340,340,0]],[1709947235,[340,340,0]],[1709947236,[340,340,0]],[1709947237,[340,340,0]],[1709947238,[340,340,0]],[1709947239,[340,340,0]],[1709947240,[340,340,0]],[1709947241,[340,340,0]],[1709947242,[340,340,0]],[1709947243,[340,340,0]],[1709947244,[340,340,0]],[1709947245,[340,340,0]],[1709947246,[340,340,0]],[1709947247,[340,340,0]],[1709947248,[340,340,0]],[1709947249,[340,340,0]],[1709947250,[340,340,0]],[1709947251,[340,340,0]],[1709947252,[340,340,0]],[1709947253,[340,340,0]],[1709947254,[340,340,0]],[1709947255,[340,340,0]],[1709947256,[340,340,0]],[1709947257,[340,340,0]],[1709947258,[340,340,0]],[1709947259,[340,340,0]],[1709947260,[340,340,0]],[1709947261,[340,340,0]],[1709947262,[340,340,0]],[1709947263,[340,340,0]],[1709947264,[340,340,0]],[1709947265,[340,340,0]],[1709947266,[340,340,0]],[1709947267,[340,340,0]],[1709947268,[340,340,0]],[1709947269,[340,340,0]],[1709947270,[340,340,0]],[1709947271,[340,340,0]],[1709947272,[340,340,0]],[1709947273,[340,340,0]],[1709947274,[340,340,0]],[1709947275,[340,340,0]],[1709947276,[340,340,0]],[1709947277,[340,340,0]],[1709947278,[340,340,0]],[1709947279,[340,340,0]],[1709947280,[340,340,0]],[1709947281,[340,340,0]],[1709947282,[340,340,0]],[1709947283,[340,340,0]],[1709947284,[340,340,0]],[1709947285,[340,340,0]],[1709947286,[340,340,0]],[1709947287,[340,340,0]],[1709947288,[340,340,0]],[1709947289,[340,340,0]],[1709947290,[340,340,0]],[1709947291,[340,340,0]],[1709947292,[340,340,0]],[1709947293,[340,340,0]],[1709947294,[340,340,0]],[1709947295,[340,340,0]],[1709947296,[340,340,0]],[1709947297,[340,340,0]],[1709947298,[340,340,0]],[1709947299,[340,340,0]],[1709947300,[340,340,0]],[1709947301,[340,340,0]],[1709947302,[340,340,0]],[1709947303,[340,340,0]],[1709947304,[340,340,0]],[1709947305,[340,340,0]],[1709947306,[340,340,0]],[1709947307,[340,340,0]],[1709947308,[340,340,0]],[1709947309,[340,340,0]],[1709947310,[340,340,0]],[1709947311,[340,340,0]],[1709947312,[340,340,0]],[1709947313,[340,340,0]],[1709947314,[340,340,0]],[1709947315,[340,340,0]],[1709947316,[340,340,0]],[1709947317,[340,340,0]],[1709947318,[340,340,0]],[1709947319,[340,340,0]],[1709947320,[340,340,0]],[1709947321,[500,500,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:[