-
Notifications
You must be signed in to change notification settings - Fork 923
/
Copy pathindex.html
1173 lines (1103 loc) · 92.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 13:58:30 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 - lucasmro">
<span class="simulation-information-label">Description: </span>
<span>Rinha de Backend - 2024/Q1: Crébito - lucasmro</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: [
[1709819911000,0],[1709819912000,0],[1709819913000,0],[1709819914000,0],[1709819915000,1],[1709819916000,1],[1709819917000,2],[1709819918000,4],[1709819919000,4],[1709819920000,5],[1709819921000,6],[1709819922000,7],[1709819923000,8],[1709819924000,8],[1709819925000,10],[1709819926000,10],[1709819927000,12],[1709819928000,12],[1709819929000,14],[1709819930000,14],[1709819931000,15],[1709819932000,16],[1709819933000,17],[1709819934000,17],[1709819935000,19],[1709819936000,20],[1709819937000,20],[1709819938000,22],[1709819939000,22],[1709819940000,23],[1709819941000,25],[1709819942000,25],[1709819943000,26],[1709819944000,26],[1709819945000,28],[1709819946000,29],[1709819947000,30],[1709819948000,30],[1709819949000,32],[1709819950000,32],[1709819951000,33],[1709819952000,34],[1709819953000,35],[1709819954000,36],[1709819955000,37],[1709819956000,38],[1709819957000,39],[1709819958000,39],[1709819959000,41],[1709819960000,41],[1709819961000,43],[1709819962000,43],[1709819963000,44],[1709819964000,45],[1709819965000,46],[1709819966000,47],[1709819967000,48],[1709819968000,48],[1709819969000,50],[1709819970000,51],[1709819971000,53],[1709819972000,53],[1709819973000,53],[1709819974000,54],[1709819975000,56],[1709819976000,56],[1709819977000,57],[1709819978000,58],[1709819979000,59],[1709819980000,59],[1709819981000,61],[1709819982000,61],[1709819983000,63],[1709819984000,63],[1709819985000,64],[1709819986000,65],[1709819987000,66],[1709819988000,67],[1709819989000,68],[1709819990000,68],[1709819991000,70],[1709819992000,70],[1709819993000,72],[1709819994000,72],[1709819995000,73],[1709819996000,74],[1709819997000,75],[1709819998000,76],[1709819999000,77],[1709820000000,78],[1709820001000,79],[1709820002000,79],[1709820003000,81],[1709820004000,81],[1709820005000,82],[1709820006000,83],[1709820007000,85],[1709820008000,85],[1709820009000,86],[1709820010000,86],[1709820011000,88],[1709820012000,89],[1709820013000,89],[1709820014000,91],[1709820015000,91],[1709820016000,92],[1709820017000,94],[1709820018000,94],[1709820019000,95],[1709820020000,96],[1709820021000,97],[1709820022000,97],[1709820023000,99],[1709820024000,100],[1709820025000,102],[1709820026000,102],[1709820027000,104],[1709820028000,104],[1709820029000,105],[1709820030000,106],[1709820031000,106],[1709820032000,108],[1709820033000,107],[1709820034000,110],[1709820035000,111],[1709820036000,111],[1709820037000,111],[1709820038000,111],[1709820039000,110],[1709820040000,111],[1709820041000,110],[1709820042000,111],[1709820043000,110],[1709820044000,111],[1709820045000,111],[1709820046000,111],[1709820047000,111],[1709820048000,111],[1709820049000,111],[1709820050000,111],[1709820051000,110],[1709820052000,113],[1709820053000,110],[1709820054000,111],[1709820055000,111],[1709820056000,111],[1709820057000,110],[1709820058000,111],[1709820059000,110],[1709820060000,110],[1709820061000,111],[1709820062000,111],[1709820063000,111],[1709820064000,110],[1709820065000,110],[1709820066000,111],[1709820067000,110],[1709820068000,111],[1709820069000,111],[1709820070000,111],[1709820071000,111],[1709820072000,111],[1709820073000,112],[1709820074000,111],[1709820075000,111],[1709820076000,111],[1709820077000,111],[1709820078000,110],[1709820079000,113],[1709820080000,110],[1709820081000,111],[1709820082000,110],[1709820083000,111],[1709820084000,110],[1709820085000,111],[1709820086000,111],[1709820087000,111],[1709820088000,111],[1709820089000,110],[1709820090000,110],[1709820091000,111],[1709820092000,111],[1709820093000,113],[1709820094000,111],[1709820095000,111],[1709820096000,112],[1709820097000,113],[1709820098000,111],[1709820099000,111],[1709820100000,111],[1709820101000,111],[1709820102000,111],[1709820103000,111],[1709820104000,111],[1709820105000,111],[1709820106000,111],[1709820107000,110],[1709820108000,110],[1709820109000,111],[1709820110000,111],[1709820111000,111],[1709820112000,111],[1709820113000,111],[1709820114000,111],[1709820115000,110],[1709820116000,111],[1709820117000,110],[1709820118000,111],[1709820119000,110],[1709820120000,111],[1709820121000,111],[1709820122000,111],[1709820123000,111],[1709820124000,111],[1709820125000,110],[1709820126000,111],[1709820127000,111],[1709820128000,111],[1709820129000,110],[1709820130000,111],[1709820131000,110],[1709820132000,111],[1709820133000,110],[1709820134000,111],[1709820135000,110],[1709820136000,111],[1709820137000,110],[1709820138000,110],[1709820139000,110],[1709820140000,110],[1709820141000,110],[1709820142000,111],[1709820143000,110],[1709820144000,110],[1709820145000,110],[1709820146000,111],[1709820147000,110],[1709820148000,111],[1709820149000,110],[1709820150000,111],[1709820151000,110],[1709820152000,111],[1709820153000,110],[1709820154000,111],[1709820155000,108]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#68b65c',
name: 'débitos',
data: [
[1709819911000,0],[1709819912000,0],[1709819913000,0],[1709819914000,0],[1709819915000,1],[1709819916000,1],[1709819917000,4],[1709819918000,6],[1709819919000,7],[1709819920000,9],[1709819921000,11],[1709819922000,13],[1709819923000,15],[1709819924000,16],[1709819925000,19],[1709819926000,20],[1709819927000,22],[1709819928000,24],[1709819929000,25],[1709819930000,28],[1709819931000,29],[1709819932000,31],[1709819933000,33],[1709819934000,35],[1709819935000,37],[1709819936000,38],[1709819937000,40],[1709819938000,42],[1709819939000,44],[1709819940000,46],[1709819941000,47],[1709819942000,50],[1709819943000,52],[1709819944000,54],[1709819945000,56],[1709819946000,56],[1709819947000,59],[1709819948000,60],[1709819949000,62],[1709819950000,64],[1709819951000,66],[1709819952000,68],[1709819953000,69],[1709819954000,71],[1709819955000,74],[1709819956000,74],[1709819957000,77],[1709819958000,79],[1709819959000,80],[1709819960000,82],[1709819961000,84],[1709819962000,86],[1709819963000,88],[1709819964000,89],[1709819965000,92],[1709819966000,93],[1709819967000,95],[1709819968000,97],[1709819969000,99],[1709819970000,102],[1709819971000,103],[1709819972000,105],[1709819973000,106],[1709819974000,109],[1709819975000,111],[1709819976000,112],[1709819977000,113],[1709819978000,115],[1709819979000,117],[1709819980000,119],[1709819981000,120],[1709819982000,123],[1709819983000,124],[1709819984000,126],[1709819985000,128],[1709819986000,129],[1709819987000,132],[1709819988000,133],[1709819989000,135],[1709819990000,137],[1709819991000,139],[1709819992000,141],[1709819993000,142],[1709819994000,144],[1709819995000,147],[1709819996000,147],[1709819997000,150],[1709819998000,153],[1709819999000,154],[1709820000000,156],[1709820001000,158],[1709820002000,159],[1709820003000,161],[1709820004000,162],[1709820005000,165],[1709820006000,167],[1709820007000,168],[1709820008000,170],[1709820009000,171],[1709820010000,174],[1709820011000,175],[1709820012000,177],[1709820013000,179],[1709820014000,181],[1709820015000,183],[1709820016000,184],[1709820017000,186],[1709820018000,188],[1709820019000,190],[1709820020000,192],[1709820021000,193],[1709820022000,196],[1709820023000,197],[1709820024000,200],[1709820025000,202],[1709820026000,203],[1709820027000,206],[1709820028000,207],[1709820029000,209],[1709820030000,211],[1709820031000,212],[1709820032000,215],[1709820033000,215],[1709820034000,218],[1709820035000,221],[1709820036000,221],[1709820037000,221],[1709820038000,221],[1709820039000,220],[1709820040000,221],[1709820041000,221],[1709820042000,221],[1709820043000,221],[1709820044000,221],[1709820045000,221],[1709820046000,221],[1709820047000,220],[1709820048000,221],[1709820049000,220],[1709820050000,221],[1709820051000,221],[1709820052000,225],[1709820053000,221],[1709820054000,221],[1709820055000,220],[1709820056000,221],[1709820057000,221],[1709820058000,221],[1709820059000,221],[1709820060000,220],[1709820061000,223],[1709820062000,221],[1709820063000,221],[1709820064000,220],[1709820065000,220],[1709820066000,221],[1709820067000,220],[1709820068000,221],[1709820069000,221],[1709820070000,221],[1709820071000,221],[1709820072000,221],[1709820073000,222],[1709820074000,221],[1709820075000,221],[1709820076000,221],[1709820077000,221],[1709820078000,220],[1709820079000,225],[1709820080000,220],[1709820081000,221],[1709820082000,220],[1709820083000,221],[1709820084000,220],[1709820085000,220],[1709820086000,221],[1709820087000,221],[1709820088000,220],[1709820089000,221],[1709820090000,220],[1709820091000,221],[1709820092000,220],[1709820093000,221],[1709820094000,221],[1709820095000,221],[1709820096000,221],[1709820097000,223],[1709820098000,221],[1709820099000,221],[1709820100000,221],[1709820101000,221],[1709820102000,221],[1709820103000,221],[1709820104000,221],[1709820105000,221],[1709820106000,221],[1709820107000,220],[1709820108000,221],[1709820109000,220],[1709820110000,221],[1709820111000,220],[1709820112000,221],[1709820113000,220],[1709820114000,221],[1709820115000,220],[1709820116000,221],[1709820117000,220],[1709820118000,221],[1709820119000,220],[1709820120000,221],[1709820121000,220],[1709820122000,221],[1709820123000,221],[1709820124000,221],[1709820125000,221],[1709820126000,221],[1709820127000,221],[1709820128000,221],[1709820129000,220],[1709820130000,221],[1709820131000,221],[1709820132000,221],[1709820133000,220],[1709820134000,221],[1709820135000,220],[1709820136000,221],[1709820137000,220],[1709820138000,220],[1709820139000,220],[1709820140000,220],[1709820141000,221],[1709820142000,221],[1709820143000,220],[1709820144000,220],[1709820145000,220],[1709820146000,221],[1709820147000,220],[1709820148000,220],[1709820149000,220],[1709820150000,221],[1709820151000,221],[1709820152000,221],[1709820153000,220],[1709820154000,221],[1709820155000,216]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#f15b4f',
name: 'extratos',
data: [
[1709819911000,0],[1709819912000,0],[1709819913000,0],[1709819914000,0],[1709819915000,1],[1709819916000,1],[1709819917000,1],[1709819918000,1],[1709819919000,1],[1709819920000,1],[1709819921000,2],[1709819922000,2],[1709819923000,2],[1709819924000,2],[1709819925000,1],[1709819926000,2],[1709819927000,2],[1709819928000,2],[1709819929000,2],[1709819930000,2],[1709819931000,2],[1709819932000,2],[1709819933000,3],[1709819934000,2],[1709819935000,3],[1709819936000,2],[1709819937000,3],[1709819938000,2],[1709819939000,3],[1709819940000,3],[1709819941000,3],[1709819942000,3],[1709819943000,3],[1709819944000,3],[1709819945000,3],[1709819946000,4],[1709819947000,3],[1709819948000,3],[1709819949000,4],[1709819950000,3],[1709819951000,4],[1709819952000,4],[1709819953000,4],[1709819954000,4],[1709819955000,4],[1709819956000,4],[1709819957000,4],[1709819958000,4],[1709819959000,4],[1709819960000,4],[1709819961000,5],[1709819962000,4],[1709819963000,5],[1709819964000,5],[1709819965000,4],[1709819966000,5],[1709819967000,5],[1709819968000,5],[1709819969000,5],[1709819970000,5],[1709819971000,5],[1709819972000,5],[1709819973000,6],[1709819974000,5],[1709819975000,6],[1709819976000,5],[1709819977000,6],[1709819978000,5],[1709819979000,6],[1709819980000,6],[1709819981000,6],[1709819982000,6],[1709819983000,6],[1709819984000,6],[1709819985000,6],[1709819986000,7],[1709819987000,6],[1709819988000,6],[1709819989000,7],[1709819990000,6],[1709819991000,7],[1709819992000,7],[1709819993000,7],[1709819994000,7],[1709819995000,7],[1709819996000,7],[1709819997000,7],[1709819998000,7],[1709819999000,7],[1709820000000,7],[1709820001000,8],[1709820002000,7],[1709820003000,8],[1709820004000,8],[1709820005000,7],[1709820006000,8],[1709820007000,8],[1709820008000,8],[1709820009000,8],[1709820010000,8],[1709820011000,8],[1709820012000,8],[1709820013000,9],[1709820014000,8],[1709820015000,9],[1709820016000,8],[1709820017000,9],[1709820018000,8],[1709820019000,9],[1709820020000,9],[1709820021000,9],[1709820022000,9],[1709820023000,9],[1709820024000,9],[1709820025000,9],[1709820026000,10],[1709820027000,9],[1709820028000,9],[1709820029000,10],[1709820030000,9],[1709820031000,10],[1709820032000,10],[1709820033000,10],[1709820034000,10],[1709820035000,10],[1709820036000,10],[1709820037000,10],[1709820038000,11],[1709820039000,10],[1709820040000,11],[1709820041000,10],[1709820042000,10],[1709820043000,10],[1709820044000,10],[1709820045000,10],[1709820046000,10],[1709820047000,10],[1709820048000,10],[1709820049000,10],[1709820050000,10],[1709820051000,10],[1709820052000,11],[1709820053000,10],[1709820054000,10],[1709820055000,10],[1709820056000,10],[1709820057000,10],[1709820058000,10],[1709820059000,10],[1709820060000,10],[1709820061000,10],[1709820062000,10],[1709820063000,10],[1709820064000,10],[1709820065000,10],[1709820066000,10],[1709820067000,10],[1709820068000,10],[1709820069000,10],[1709820070000,10],[1709820071000,10],[1709820072000,10],[1709820073000,11],[1709820074000,10],[1709820075000,10],[1709820076000,10],[1709820077000,10],[1709820078000,10],[1709820079000,11],[1709820080000,10],[1709820081000,10],[1709820082000,10],[1709820083000,10],[1709820084000,10],[1709820085000,10],[1709820086000,10],[1709820087000,10],[1709820088000,10],[1709820089000,10],[1709820090000,10],[1709820091000,10],[1709820092000,10],[1709820093000,11],[1709820094000,10],[1709820095000,10],[1709820096000,10],[1709820097000,11],[1709820098000,10],[1709820099000,10],[1709820100000,10],[1709820101000,10],[1709820102000,10],[1709820103000,10],[1709820104000,10],[1709820105000,10],[1709820106000,10],[1709820107000,10],[1709820108000,10],[1709820109000,10],[1709820110000,10],[1709820111000,10],[1709820112000,10],[1709820113000,10],[1709820114000,10],[1709820115000,10],[1709820116000,10],[1709820117000,10],[1709820118000,10],[1709820119000,10],[1709820120000,10],[1709820121000,10],[1709820122000,10],[1709820123000,10],[1709820124000,10],[1709820125000,10],[1709820126000,10],[1709820127000,10],[1709820128000,10],[1709820129000,10],[1709820130000,10],[1709820131000,10],[1709820132000,11],[1709820133000,10],[1709820134000,10],[1709820135000,10],[1709820136000,10],[1709820137000,10],[1709820138000,10],[1709820139000,10],[1709820140000,10],[1709820141000,10],[1709820142000,10],[1709820143000,10],[1709820144000,10],[1709820145000,10],[1709820146000,10],[1709820147000,10],[1709820148000,10],[1709820149000,10],[1709820150000,10],[1709820151000,10],[1709820152000,10],[1709820153000,10],[1709820154000,10],[1709820155000,9]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FFDD00',
name: 'validação HTTP 404',
data: [
[1709819911000,0],[1709819912000,0],[1709819913000,0],[1709819914000,1],[1709819915000,0],[1709819916000,0],[1709819917000,0],[1709819918000,0],[1709819919000,0],[1709819920000,0],[1709819921000,0],[1709819922000,0],[1709819923000,0],[1709819924000,0],[1709819925000,0],[1709819926000,0],[1709819927000,0],[1709819928000,0],[1709819929000,0],[1709819930000,0],[1709819931000,0],[1709819932000,0],[1709819933000,0],[1709819934000,0],[1709819935000,0],[1709819936000,0],[1709819937000,0],[1709819938000,0],[1709819939000,0],[1709819940000,0],[1709819941000,0],[1709819942000,0],[1709819943000,0],[1709819944000,0],[1709819945000,0],[1709819946000,0],[1709819947000,0],[1709819948000,0],[1709819949000,0],[1709819950000,0],[1709819951000,0],[1709819952000,0],[1709819953000,0],[1709819954000,0],[1709819955000,0],[1709819956000,0],[1709819957000,0],[1709819958000,0],[1709819959000,0],[1709819960000,0],[1709819961000,0],[1709819962000,0],[1709819963000,0],[1709819964000,0],[1709819965000,0],[1709819966000,0],[1709819967000,0],[1709819968000,0],[1709819969000,0],[1709819970000,0],[1709819971000,0],[1709819972000,0],[1709819973000,0],[1709819974000,0],[1709819975000,0],[1709819976000,0],[1709819977000,0],[1709819978000,0],[1709819979000,0],[1709819980000,0],[1709819981000,0],[1709819982000,0],[1709819983000,0],[1709819984000,0],[1709819985000,0],[1709819986000,0],[1709819987000,0],[1709819988000,0],[1709819989000,0],[1709819990000,0],[1709819991000,0],[1709819992000,0],[1709819993000,0],[1709819994000,0],[1709819995000,0],[1709819996000,0],[1709819997000,0],[1709819998000,0],[1709819999000,0],[1709820000000,0],[1709820001000,0],[1709820002000,0],[1709820003000,0],[1709820004000,0],[1709820005000,0],[1709820006000,0],[1709820007000,0],[1709820008000,0],[1709820009000,0],[1709820010000,0],[1709820011000,0],[1709820012000,0],[1709820013000,0],[1709820014000,0],[1709820015000,0],[1709820016000,0],[1709820017000,0],[1709820018000,0],[1709820019000,0],[1709820020000,0],[1709820021000,0],[1709820022000,0],[1709820023000,0],[1709820024000,0],[1709820025000,0],[1709820026000,0],[1709820027000,0],[1709820028000,0],[1709820029000,0],[1709820030000,0],[1709820031000,0],[1709820032000,0],[1709820033000,0],[1709820034000,0],[1709820035000,0],[1709820036000,0],[1709820037000,0],[1709820038000,0],[1709820039000,0],[1709820040000,0],[1709820041000,0],[1709820042000,0],[1709820043000,0],[1709820044000,0],[1709820045000,0],[1709820046000,0],[1709820047000,0],[1709820048000,0],[1709820049000,0],[1709820050000,0],[1709820051000,0],[1709820052000,0],[1709820053000,0],[1709820054000,0],[1709820055000,0],[1709820056000,0],[1709820057000,0],[1709820058000,0],[1709820059000,0],[1709820060000,0],[1709820061000,0],[1709820062000,0],[1709820063000,0],[1709820064000,0],[1709820065000,0],[1709820066000,0],[1709820067000,0],[1709820068000,0],[1709820069000,0],[1709820070000,0],[1709820071000,0],[1709820072000,0],[1709820073000,0],[1709820074000,0],[1709820075000,0],[1709820076000,0],[1709820077000,0],[1709820078000,0],[1709820079000,0],[1709820080000,0],[1709820081000,0],[1709820082000,0],[1709820083000,0],[1709820084000,0],[1709820085000,0],[1709820086000,0],[1709820087000,0],[1709820088000,0],[1709820089000,0],[1709820090000,0],[1709820091000,0],[1709820092000,0],[1709820093000,0],[1709820094000,0],[1709820095000,0],[1709820096000,0],[1709820097000,0],[1709820098000,0],[1709820099000,0],[1709820100000,0],[1709820101000,0],[1709820102000,0],[1709820103000,0],[1709820104000,0],[1709820105000,0],[1709820106000,0],[1709820107000,0],[1709820108000,0],[1709820109000,0],[1709820110000,0],[1709820111000,0],[1709820112000,0],[1709820113000,0],[1709820114000,0],[1709820115000,0],[1709820116000,0],[1709820117000,0],[1709820118000,0],[1709820119000,0],[1709820120000,0],[1709820121000,0],[1709820122000,0],[1709820123000,0],[1709820124000,0],[1709820125000,0],[1709820126000,0],[1709820127000,0],[1709820128000,0],[1709820129000,0],[1709820130000,0],[1709820131000,0],[1709820132000,0],[1709820133000,0],[1709820134000,0],[1709820135000,0],[1709820136000,0],[1709820137000,0],[1709820138000,0],[1709820139000,0],[1709820140000,0],[1709820141000,0],[1709820142000,0],[1709820143000,0],[1709820144000,0],[1709820145000,0],[1709820146000,0],[1709820147000,0],[1709820148000,0],[1709820149000,0],[1709820150000,0],[1709820151000,0],[1709820152000,0],[1709820153000,0],[1709820154000,0],[1709820155000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00D5FF',
name: 'validações',
data: [
[1709819911000,0],[1709819912000,0],[1709819913000,0],[1709819914000,5],[1709819915000,5],[1709819916000,0],[1709819917000,0],[1709819918000,0],[1709819919000,0],[1709819920000,0],[1709819921000,0],[1709819922000,0],[1709819923000,0],[1709819924000,0],[1709819925000,0],[1709819926000,0],[1709819927000,0],[1709819928000,0],[1709819929000,0],[1709819930000,0],[1709819931000,0],[1709819932000,0],[1709819933000,0],[1709819934000,0],[1709819935000,0],[1709819936000,0],[1709819937000,0],[1709819938000,0],[1709819939000,0],[1709819940000,0],[1709819941000,0],[1709819942000,0],[1709819943000,0],[1709819944000,0],[1709819945000,0],[1709819946000,0],[1709819947000,0],[1709819948000,0],[1709819949000,0],[1709819950000,0],[1709819951000,0],[1709819952000,0],[1709819953000,0],[1709819954000,0],[1709819955000,0],[1709819956000,0],[1709819957000,0],[1709819958000,0],[1709819959000,0],[1709819960000,0],[1709819961000,0],[1709819962000,0],[1709819963000,0],[1709819964000,0],[1709819965000,0],[1709819966000,0],[1709819967000,0],[1709819968000,0],[1709819969000,0],[1709819970000,0],[1709819971000,0],[1709819972000,0],[1709819973000,0],[1709819974000,0],[1709819975000,0],[1709819976000,0],[1709819977000,0],[1709819978000,0],[1709819979000,0],[1709819980000,0],[1709819981000,0],[1709819982000,0],[1709819983000,0],[1709819984000,0],[1709819985000,0],[1709819986000,0],[1709819987000,0],[1709819988000,0],[1709819989000,0],[1709819990000,0],[1709819991000,0],[1709819992000,0],[1709819993000,0],[1709819994000,0],[1709819995000,0],[1709819996000,0],[1709819997000,0],[1709819998000,0],[1709819999000,0],[1709820000000,0],[1709820001000,0],[1709820002000,0],[1709820003000,0],[1709820004000,0],[1709820005000,0],[1709820006000,0],[1709820007000,0],[1709820008000,0],[1709820009000,0],[1709820010000,0],[1709820011000,0],[1709820012000,0],[1709820013000,0],[1709820014000,0],[1709820015000,0],[1709820016000,0],[1709820017000,0],[1709820018000,0],[1709820019000,0],[1709820020000,0],[1709820021000,0],[1709820022000,0],[1709820023000,0],[1709820024000,0],[1709820025000,0],[1709820026000,0],[1709820027000,0],[1709820028000,0],[1709820029000,0],[1709820030000,0],[1709820031000,0],[1709820032000,0],[1709820033000,0],[1709820034000,0],[1709820035000,0],[1709820036000,0],[1709820037000,0],[1709820038000,0],[1709820039000,0],[1709820040000,0],[1709820041000,0],[1709820042000,0],[1709820043000,0],[1709820044000,0],[1709820045000,0],[1709820046000,0],[1709820047000,0],[1709820048000,0],[1709820049000,0],[1709820050000,0],[1709820051000,0],[1709820052000,0],[1709820053000,0],[1709820054000,0],[1709820055000,0],[1709820056000,0],[1709820057000,0],[1709820058000,0],[1709820059000,0],[1709820060000,0],[1709820061000,0],[1709820062000,0],[1709820063000,0],[1709820064000,0],[1709820065000,0],[1709820066000,0],[1709820067000,0],[1709820068000,0],[1709820069000,0],[1709820070000,0],[1709820071000,0],[1709820072000,0],[1709820073000,0],[1709820074000,0],[1709820075000,0],[1709820076000,0],[1709820077000,0],[1709820078000,0],[1709820079000,0],[1709820080000,0],[1709820081000,0],[1709820082000,0],[1709820083000,0],[1709820084000,0],[1709820085000,0],[1709820086000,0],[1709820087000,0],[1709820088000,0],[1709820089000,0],[1709820090000,0],[1709820091000,0],[1709820092000,0],[1709820093000,0],[1709820094000,0],[1709820095000,0],[1709820096000,0],[1709820097000,0],[1709820098000,0],[1709820099000,0],[1709820100000,0],[1709820101000,0],[1709820102000,0],[1709820103000,0],[1709820104000,0],[1709820105000,0],[1709820106000,0],[1709820107000,0],[1709820108000,0],[1709820109000,0],[1709820110000,0],[1709820111000,0],[1709820112000,0],[1709820113000,0],[1709820114000,0],[1709820115000,0],[1709820116000,0],[1709820117000,0],[1709820118000,0],[1709820119000,0],[1709820120000,0],[1709820121000,0],[1709820122000,0],[1709820123000,0],[1709820124000,0],[1709820125000,0],[1709820126000,0],[1709820127000,0],[1709820128000,0],[1709820129000,0],[1709820130000,0],[1709820131000,0],[1709820132000,0],[1709820133000,0],[1709820134000,0],[1709820135000,0],[1709820136000,0],[1709820137000,0],[1709820138000,0],[1709820139000,0],[1709820140000,0],[1709820141000,0],[1709820142000,0],[1709820143000,0],[1709820144000,0],[1709820145000,0],[1709820146000,0],[1709820147000,0],[1709820148000,0],[1709820149000,0],[1709820150000,0],[1709820151000,0],[1709820152000,0],[1709820153000,0],[1709820154000,0],[1709820155000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00FF00',
name: 'validação concorrência saldo - 0',
data: [
[1709819911000,0],[1709819912000,0],[1709819913000,1],[1709819914000,0],[1709819915000,0],[1709819916000,0],[1709819917000,0],[1709819918000,0],[1709819919000,0],[1709819920000,0],[1709819921000,0],[1709819922000,0],[1709819923000,0],[1709819924000,0],[1709819925000,0],[1709819926000,0],[1709819927000,0],[1709819928000,0],[1709819929000,0],[1709819930000,0],[1709819931000,0],[1709819932000,0],[1709819933000,0],[1709819934000,0],[1709819935000,0],[1709819936000,0],[1709819937000,0],[1709819938000,0],[1709819939000,0],[1709819940000,0],[1709819941000,0],[1709819942000,0],[1709819943000,0],[1709819944000,0],[1709819945000,0],[1709819946000,0],[1709819947000,0],[1709819948000,0],[1709819949000,0],[1709819950000,0],[1709819951000,0],[1709819952000,0],[1709819953000,0],[1709819954000,0],[1709819955000,0],[1709819956000,0],[1709819957000,0],[1709819958000,0],[1709819959000,0],[1709819960000,0],[1709819961000,0],[1709819962000,0],[1709819963000,0],[1709819964000,0],[1709819965000,0],[1709819966000,0],[1709819967000,0],[1709819968000,0],[1709819969000,0],[1709819970000,0],[1709819971000,0],[1709819972000,0],[1709819973000,0],[1709819974000,0],[1709819975000,0],[1709819976000,0],[1709819977000,0],[1709819978000,0],[1709819979000,0],[1709819980000,0],[1709819981000,0],[1709819982000,0],[1709819983000,0],[1709819984000,0],[1709819985000,0],[1709819986000,0],[1709819987000,0],[1709819988000,0],[1709819989000,0],[1709819990000,0],[1709819991000,0],[1709819992000,0],[1709819993000,0],[1709819994000,0],[1709819995000,0],[1709819996000,0],[1709819997000,0],[1709819998000,0],[1709819999000,0],[1709820000000,0],[1709820001000,0],[1709820002000,0],[1709820003000,0],[1709820004000,0],[1709820005000,0],[1709820006000,0],[1709820007000,0],[1709820008000,0],[1709820009000,0],[1709820010000,0],[1709820011000,0],[1709820012000,0],[1709820013000,0],[1709820014000,0],[1709820015000,0],[1709820016000,0],[1709820017000,0],[1709820018000,0],[1709820019000,0],[1709820020000,0],[1709820021000,0],[1709820022000,0],[1709820023000,0],[1709820024000,0],[1709820025000,0],[1709820026000,0],[1709820027000,0],[1709820028000,0],[1709820029000,0],[1709820030000,0],[1709820031000,0],[1709820032000,0],[1709820033000,0],[1709820034000,0],[1709820035000,0],[1709820036000,0],[1709820037000,0],[1709820038000,0],[1709820039000,0],[1709820040000,0],[1709820041000,0],[1709820042000,0],[1709820043000,0],[1709820044000,0],[1709820045000,0],[1709820046000,0],[1709820047000,0],[1709820048000,0],[1709820049000,0],[1709820050000,0],[1709820051000,0],[1709820052000,0],[1709820053000,0],[1709820054000,0],[1709820055000,0],[1709820056000,0],[1709820057000,0],[1709820058000,0],[1709820059000,0],[1709820060000,0],[1709820061000,0],[1709820062000,0],[1709820063000,0],[1709820064000,0],[1709820065000,0],[1709820066000,0],[1709820067000,0],[1709820068000,0],[1709820069000,0],[1709820070000,0],[1709820071000,0],[1709820072000,0],[1709820073000,0],[1709820074000,0],[1709820075000,0],[1709820076000,0],[1709820077000,0],[1709820078000,0],[1709820079000,0],[1709820080000,0],[1709820081000,0],[1709820082000,0],[1709820083000,0],[1709820084000,0],[1709820085000,0],[1709820086000,0],[1709820087000,0],[1709820088000,0],[1709820089000,0],[1709820090000,0],[1709820091000,0],[1709820092000,0],[1709820093000,0],[1709820094000,0],[1709820095000,0],[1709820096000,0],[1709820097000,0],[1709820098000,0],[1709820099000,0],[1709820100000,0],[1709820101000,0],[1709820102000,0],[1709820103000,0],[1709820104000,0],[1709820105000,0],[1709820106000,0],[1709820107000,0],[1709820108000,0],[1709820109000,0],[1709820110000,0],[1709820111000,0],[1709820112000,0],[1709820113000,0],[1709820114000,0],[1709820115000,0],[1709820116000,0],[1709820117000,0],[1709820118000,0],[1709820119000,0],[1709820120000,0],[1709820121000,0],[1709820122000,0],[1709820123000,0],[1709820124000,0],[1709820125000,0],[1709820126000,0],[1709820127000,0],[1709820128000,0],[1709820129000,0],[1709820130000,0],[1709820131000,0],[1709820132000,0],[1709820133000,0],[1709820134000,0],[1709820135000,0],[1709820136000,0],[1709820137000,0],[1709820138000,0],[1709820139000,0],[1709820140000,0],[1709820141000,0],[1709820142000,0],[1709820143000,0],[1709820144000,0],[1709820145000,0],[1709820146000,0],[1709820147000,0],[1709820148000,0],[1709820149000,0],[1709820150000,0],[1709820151000,0],[1709820152000,0],[1709820153000,0],[1709820154000,0],[1709820155000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#9D00FF',
name: 'validação concorrência transações - c',
data: [
[1709819911000,0],[1709819912000,22],[1709819913000,14],[1709819914000,0],[1709819915000,0],[1709819916000,0],[1709819917000,0],[1709819918000,0],[1709819919000,0],[1709819920000,0],[1709819921000,0],[1709819922000,0],[1709819923000,0],[1709819924000,0],[1709819925000,0],[1709819926000,0],[1709819927000,0],[1709819928000,0],[1709819929000,0],[1709819930000,0],[1709819931000,0],[1709819932000,0],[1709819933000,0],[1709819934000,0],[1709819935000,0],[1709819936000,0],[1709819937000,0],[1709819938000,0],[1709819939000,0],[1709819940000,0],[1709819941000,0],[1709819942000,0],[1709819943000,0],[1709819944000,0],[1709819945000,0],[1709819946000,0],[1709819947000,0],[1709819948000,0],[1709819949000,0],[1709819950000,0],[1709819951000,0],[1709819952000,0],[1709819953000,0],[1709819954000,0],[1709819955000,0],[1709819956000,0],[1709819957000,0],[1709819958000,0],[1709819959000,0],[1709819960000,0],[1709819961000,0],[1709819962000,0],[1709819963000,0],[1709819964000,0],[1709819965000,0],[1709819966000,0],[1709819967000,0],[1709819968000,0],[1709819969000,0],[1709819970000,0],[1709819971000,0],[1709819972000,0],[1709819973000,0],[1709819974000,0],[1709819975000,0],[1709819976000,0],[1709819977000,0],[1709819978000,0],[1709819979000,0],[1709819980000,0],[1709819981000,0],[1709819982000,0],[1709819983000,0],[1709819984000,0],[1709819985000,0],[1709819986000,0],[1709819987000,0],[1709819988000,0],[1709819989000,0],[1709819990000,0],[1709819991000,0],[1709819992000,0],[1709819993000,0],[1709819994000,0],[1709819995000,0],[1709819996000,0],[1709819997000,0],[1709819998000,0],[1709819999000,0],[1709820000000,0],[1709820001000,0],[1709820002000,0],[1709820003000,0],[1709820004000,0],[1709820005000,0],[1709820006000,0],[1709820007000,0],[1709820008000,0],[1709820009000,0],[1709820010000,0],[1709820011000,0],[1709820012000,0],[1709820013000,0],[1709820014000,0],[1709820015000,0],[1709820016000,0],[1709820017000,0],[1709820018000,0],[1709820019000,0],[1709820020000,0],[1709820021000,0],[1709820022000,0],[1709820023000,0],[1709820024000,0],[1709820025000,0],[1709820026000,0],[1709820027000,0],[1709820028000,0],[1709820029000,0],[1709820030000,0],[1709820031000,0],[1709820032000,0],[1709820033000,0],[1709820034000,0],[1709820035000,0],[1709820036000,0],[1709820037000,0],[1709820038000,0],[1709820039000,0],[1709820040000,0],[1709820041000,0],[1709820042000,0],[1709820043000,0],[1709820044000,0],[1709820045000,0],[1709820046000,0],[1709820047000,0],[1709820048000,0],[1709820049000,0],[1709820050000,0],[1709820051000,0],[1709820052000,0],[1709820053000,0],[1709820054000,0],[1709820055000,0],[1709820056000,0],[1709820057000,0],[1709820058000,0],[1709820059000,0],[1709820060000,0],[1709820061000,0],[1709820062000,0],[1709820063000,0],[1709820064000,0],[1709820065000,0],[1709820066000,0],[1709820067000,0],[1709820068000,0],[1709820069000,0],[1709820070000,0],[1709820071000,0],[1709820072000,0],[1709820073000,0],[1709820074000,0],[1709820075000,0],[1709820076000,0],[1709820077000,0],[1709820078000,0],[1709820079000,0],[1709820080000,0],[1709820081000,0],[1709820082000,0],[1709820083000,0],[1709820084000,0],[1709820085000,0],[1709820086000,0],[1709820087000,0],[1709820088000,0],[1709820089000,0],[1709820090000,0],[1709820091000,0],[1709820092000,0],[1709820093000,0],[1709820094000,0],[1709820095000,0],[1709820096000,0],[1709820097000,0],[1709820098000,0],[1709820099000,0],[1709820100000,0],[1709820101000,0],[1709820102000,0],[1709820103000,0],[1709820104000,0],[1709820105000,0],[1709820106000,0],[1709820107000,0],[1709820108000,0],[1709820109000,0],[1709820110000,0],[1709820111000,0],[1709820112000,0],[1709820113000,0],[1709820114000,0],[1709820115000,0],[1709820116000,0],[1709820117000,0],[1709820118000,0],[1709820119000,0],[1709820120000,0],[1709820121000,0],[1709820122000,0],[1709820123000,0],[1709820124000,0],[1709820125000,0],[1709820126000,0],[1709820127000,0],[1709820128000,0],[1709820129000,0],[1709820130000,0],[1709820131000,0],[1709820132000,0],[1709820133000,0],[1709820134000,0],[1709820135000,0],[1709820136000,0],[1709820137000,0],[1709820138000,0],[1709820139000,0],[1709820140000,0],[1709820141000,0],[1709820142000,0],[1709820143000,0],[1709820144000,0],[1709820145000,0],[1709820146000,0],[1709820147000,0],[1709820148000,0],[1709820149000,0],[1709820150000,0],[1709820151000,0],[1709820152000,0],[1709820153000,0],[1709820154000,0],[1709820155000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FF00E1',
name: 'validação concorrência saldo - -25',
data: [
[1709819911000,1],[1709819912000,1],[1709819913000,0],[1709819914000,0],[1709819915000,0],[1709819916000,0],[1709819917000,0],[1709819918000,0],[1709819919000,0],[1709819920000,0],[1709819921000,0],[1709819922000,0],[1709819923000,0],[1709819924000,0],[1709819925000,0],[1709819926000,0],[1709819927000,0],[1709819928000,0],[1709819929000,0],[1709819930000,0],[1709819931000,0],[1709819932000,0],[1709819933000,0],[1709819934000,0],[1709819935000,0],[1709819936000,0],[1709819937000,0],[1709819938000,0],[1709819939000,0],[1709819940000,0],[1709819941000,0],[1709819942000,0],[1709819943000,0],[1709819944000,0],[1709819945000,0],[1709819946000,0],[1709819947000,0],[1709819948000,0],[1709819949000,0],[1709819950000,0],[1709819951000,0],[1709819952000,0],[1709819953000,0],[1709819954000,0],[1709819955000,0],[1709819956000,0],[1709819957000,0],[1709819958000,0],[1709819959000,0],[1709819960000,0],[1709819961000,0],[1709819962000,0],[1709819963000,0],[1709819964000,0],[1709819965000,0],[1709819966000,0],[1709819967000,0],[1709819968000,0],[1709819969000,0],[1709819970000,0],[1709819971000,0],[1709819972000,0],[1709819973000,0],[1709819974000,0],[1709819975000,0],[1709819976000,0],[1709819977000,0],[1709819978000,0],[1709819979000,0],[1709819980000,0],[1709819981000,0],[1709819982000,0],[1709819983000,0],[1709819984000,0],[1709819985000,0],[1709819986000,0],[1709819987000,0],[1709819988000,0],[1709819989000,0],[1709819990000,0],[1709819991000,0],[1709819992000,0],[1709819993000,0],[1709819994000,0],[1709819995000,0],[1709819996000,0],[1709819997000,0],[1709819998000,0],[1709819999000,0],[1709820000000,0],[1709820001000,0],[1709820002000,0],[1709820003000,0],[1709820004000,0],[1709820005000,0],[1709820006000,0],[1709820007000,0],[1709820008000,0],[1709820009000,0],[1709820010000,0],[1709820011000,0],[1709820012000,0],[1709820013000,0],[1709820014000,0],[1709820015000,0],[1709820016000,0],[1709820017000,0],[1709820018000,0],[1709820019000,0],[1709820020000,0],[1709820021000,0],[1709820022000,0],[1709820023000,0],[1709820024000,0],[1709820025000,0],[1709820026000,0],[1709820027000,0],[1709820028000,0],[1709820029000,0],[1709820030000,0],[1709820031000,0],[1709820032000,0],[1709820033000,0],[1709820034000,0],[1709820035000,0],[1709820036000,0],[1709820037000,0],[1709820038000,0],[1709820039000,0],[1709820040000,0],[1709820041000,0],[1709820042000,0],[1709820043000,0],[1709820044000,0],[1709820045000,0],[1709820046000,0],[1709820047000,0],[1709820048000,0],[1709820049000,0],[1709820050000,0],[1709820051000,0],[1709820052000,0],[1709820053000,0],[1709820054000,0],[1709820055000,0],[1709820056000,0],[1709820057000,0],[1709820058000,0],[1709820059000,0],[1709820060000,0],[1709820061000,0],[1709820062000,0],[1709820063000,0],[1709820064000,0],[1709820065000,0],[1709820066000,0],[1709820067000,0],[1709820068000,0],[1709820069000,0],[1709820070000,0],[1709820071000,0],[1709820072000,0],[1709820073000,0],[1709820074000,0],[1709820075000,0],[1709820076000,0],[1709820077000,0],[1709820078000,0],[1709820079000,0],[1709820080000,0],[1709820081000,0],[1709820082000,0],[1709820083000,0],[1709820084000,0],[1709820085000,0],[1709820086000,0],[1709820087000,0],[1709820088000,0],[1709820089000,0],[1709820090000,0],[1709820091000,0],[1709820092000,0],[1709820093000,0],[1709820094000,0],[1709820095000,0],[1709820096000,0],[1709820097000,0],[1709820098000,0],[1709820099000,0],[1709820100000,0],[1709820101000,0],[1709820102000,0],[1709820103000,0],[1709820104000,0],[1709820105000,0],[1709820106000,0],[1709820107000,0],[1709820108000,0],[1709820109000,0],[1709820110000,0],[1709820111000,0],[1709820112000,0],[1709820113000,0],[1709820114000,0],[1709820115000,0],[1709820116000,0],[1709820117000,0],[1709820118000,0],[1709820119000,0],[1709820120000,0],[1709820121000,0],[1709820122000,0],[1709820123000,0],[1709820124000,0],[1709820125000,0],[1709820126000,0],[1709820127000,0],[1709820128000,0],[1709820129000,0],[1709820130000,0],[1709820131000,0],[1709820132000,0],[1709820133000,0],[1709820134000,0],[1709820135000,0],[1709820136000,0],[1709820137000,0],[1709820138000,0],[1709820139000,0],[1709820140000,0],[1709820141000,0],[1709820142000,0],[1709820143000,0],[1709820144000,0],[1709820145000,0],[1709820146000,0],[1709820147000,0],[1709820148000,0],[1709820149000,0],[1709820150000,0],[1709820151000,0],[1709820152000,0],[1709820153000,0],[1709820154000,0],[1709820155000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#AECAEB',
name: 'validação concorrência transações - d',
data: [
[1709819911000,25],[1709819912000,0],[1709819913000,0],[1709819914000,0],[1709819915000,0],[1709819916000,0],[1709819917000,0],[1709819918000,0],[1709819919000,0],[1709819920000,0],[1709819921000,0],[1709819922000,0],[1709819923000,0],[1709819924000,0],[1709819925000,0],[1709819926000,0],[1709819927000,0],[1709819928000,0],[1709819929000,0],[1709819930000,0],[1709819931000,0],[1709819932000,0],[1709819933000,0],[1709819934000,0],[1709819935000,0],[1709819936000,0],[1709819937000,0],[1709819938000,0],[1709819939000,0],[1709819940000,0],[1709819941000,0],[1709819942000,0],[1709819943000,0],[1709819944000,0],[1709819945000,0],[1709819946000,0],[1709819947000,0],[1709819948000,0],[1709819949000,0],[1709819950000,0],[1709819951000,0],[1709819952000,0],[1709819953000,0],[1709819954000,0],[1709819955000,0],[1709819956000,0],[1709819957000,0],[1709819958000,0],[1709819959000,0],[1709819960000,0],[1709819961000,0],[1709819962000,0],[1709819963000,0],[1709819964000,0],[1709819965000,0],[1709819966000,0],[1709819967000,0],[1709819968000,0],[1709819969000,0],[1709819970000,0],[1709819971000,0],[1709819972000,0],[1709819973000,0],[1709819974000,0],[1709819975000,0],[1709819976000,0],[1709819977000,0],[1709819978000,0],[1709819979000,0],[1709819980000,0],[1709819981000,0],[1709819982000,0],[1709819983000,0],[1709819984000,0],[1709819985000,0],[1709819986000,0],[1709819987000,0],[1709819988000,0],[1709819989000,0],[1709819990000,0],[1709819991000,0],[1709819992000,0],[1709819993000,0],[1709819994000,0],[1709819995000,0],[1709819996000,0],[1709819997000,0],[1709819998000,0],[1709819999000,0],[1709820000000,0],[1709820001000,0],[1709820002000,0],[1709820003000,0],[1709820004000,0],[1709820005000,0],[1709820006000,0],[1709820007000,0],[1709820008000,0],[1709820009000,0],[1709820010000,0],[1709820011000,0],[1709820012000,0],[1709820013000,0],[1709820014000,0],[1709820015000,0],[1709820016000,0],[1709820017000,0],[1709820018000,0],[1709820019000,0],[1709820020000,0],[1709820021000,0],[1709820022000,0],[1709820023000,0],[1709820024000,0],[1709820025000,0],[1709820026000,0],[1709820027000,0],[1709820028000,0],[1709820029000,0],[1709820030000,0],[1709820031000,0],[1709820032000,0],[1709820033000,0],[1709820034000,0],[1709820035000,0],[1709820036000,0],[1709820037000,0],[1709820038000,0],[1709820039000,0],[1709820040000,0],[1709820041000,0],[1709820042000,0],[1709820043000,0],[1709820044000,0],[1709820045000,0],[1709820046000,0],[1709820047000,0],[1709820048000,0],[1709820049000,0],[1709820050000,0],[1709820051000,0],[1709820052000,0],[1709820053000,0],[1709820054000,0],[1709820055000,0],[1709820056000,0],[1709820057000,0],[1709820058000,0],[1709820059000,0],[1709820060000,0],[1709820061000,0],[1709820062000,0],[1709820063000,0],[1709820064000,0],[1709820065000,0],[1709820066000,0],[1709820067000,0],[1709820068000,0],[1709820069000,0],[1709820070000,0],[1709820071000,0],[1709820072000,0],[1709820073000,0],[1709820074000,0],[1709820075000,0],[1709820076000,0],[1709820077000,0],[1709820078000,0],[1709820079000,0],[1709820080000,0],[1709820081000,0],[1709820082000,0],[1709820083000,0],[1709820084000,0],[1709820085000,0],[1709820086000,0],[1709820087000,0],[1709820088000,0],[1709820089000,0],[1709820090000,0],[1709820091000,0],[1709820092000,0],[1709820093000,0],[1709820094000,0],[1709820095000,0],[1709820096000,0],[1709820097000,0],[1709820098000,0],[1709820099000,0],[1709820100000,0],[1709820101000,0],[1709820102000,0],[1709820103000,0],[1709820104000,0],[1709820105000,0],[1709820106000,0],[1709820107000,0],[1709820108000,0],[1709820109000,0],[1709820110000,0],[1709820111000,0],[1709820112000,0],[1709820113000,0],[1709820114000,0],[1709820115000,0],[1709820116000,0],[1709820117000,0],[1709820118000,0],[1709820119000,0],[1709820120000,0],[1709820121000,0],[1709820122000,0],[1709820123000,0],[1709820124000,0],[1709820125000,0],[1709820126000,0],[1709820127000,0],[1709820128000,0],[1709820129000,0],[1709820130000,0],[1709820131000,0],[1709820132000,0],[1709820133000,0],[1709820134000,0],[1709820135000,0],[1709820136000,0],[1709820137000,0],[1709820138000,0],[1709820139000,0],[1709820140000,0],[1709820141000,0],[1709820142000,0],[1709820143000,0],[1709820144000,0],[1709820145000,0],[1709820146000,0],[1709820147000,0],[1709820148000,0],[1709820149000,0],[1709820150000,0],[1709820151000,0],[1709820152000,0],[1709820153000,0],[1709820154000,0],[1709820155000,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: ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '10', '11', '12', '13', '14', '15', '16', '17', '18', '19', '20', '21', '22', '24', '25', '26', '27', '29', '31', '32', '33', '35', '36', '38', '40', '41', '42', '43', '44', '46', '47', '48', '49', '51', '52', '53', '54', '55', '56', '58', '59', '60', '63', '65', '69', '71', '72'],
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: [
0.41,55.91,25.8,13.18,2.99,0.67,0.4,0.14,0.06,0.03,0.03,0.02,0.02,0.06,0.03,0.01,0.02,0.02,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
],
tooltip: { yDecimals: 0, ySuffix: 'ms' }
},
{
type: 'column',
color: '#f15b4f',
name: 'KO',
data: [
],
tooltip: { yDecimals: 0, ySuffix: 'ms' }
}
]
});
responsetimeDistributionChart.setTitle({
text: '<span class="chart_title">Response Time Distribution</span>',
useHTML: true
});
var responsetimepercentilesovertimeokPercentiles = unpack([[1709819911,[17,47,53,59,60,63,67,70,71,72]],[1709819912,[5,5,5,5,5,5,5,5,5,5]],[1709819913,[3,7,13,16,18,19,20,21,21,22]],[1709819914,[5,5,5,5,5,5,5,5,5,5]],[1709819915,[1,2,5,11,18,22,27,29,37,42]],[1709819916,[4,4,4,5,5,5,5,5,5,6]],[1709819917,[3,3,3,4,4,4,5,5,5,6]],[1709819918,[2,3,3,3,3,3,3,4,4,5]],[1709819919,[2,3,3,3,3,3,3,4,5,6]],[1709819920,[2,3,3,3,3,3,3,4,5,6]],[1709819921,[2,2,3,3,3,3,4,6,11,13]],[1709819922,[2,2,3,3,3,3,3,5,20,24]],[1709819923,[2,2,2,3,3,3,3,4,5,5]],[1709819924,[2,2,3,3,3,3,3,4,5,5]],[1709819925,[2,2,3,3,3,3,3,3,4,5]],[1709819926,[1,2,2,3,3,3,3,3,5,6]],[1709819927,[1,2,2,2,2,2,3,3,5,5]],[1709819928,[1,2,2,2,2,3,3,3,4,4]],[1709819929,[1,2,2,2,2,3,3,3,4,5]],[1709819930,[1,2,2,2,2,2,2,3,4,5]],[1709819931,[1,2,2,2,2,2,2,3,4,6]],[1709819932,[1,2,2,2,2,2,3,3,6,8]],[1709819933,[1,1,2,2,2,2,3,3,4,5]],[1709819934,[1,1,2,2,2,2,2,2,4,6]],[1709819935,[1,1,2,2,2,2,2,3,3,5]],[1709819936,[1,2,2,2,2,2,2,3,3,4]],[1709819937,[1,1,2,2,2,2,2,2,3,3]],[1709819938,[1,1,2,2,2,2,2,3,5,7]],[1709819939,[1,1,2,2,2,2,2,2,3,4]],[1709819940,[1,2,2,2,2,2,2,3,3,4]],[1709819941,[1,1,1,2,2,2,2,3,4,6]],[1709819942,[1,1,1,2,2,2,2,3,3,4]],[1709819943,[1,1,2,2,2,2,2,2,4,6]],[1709819944,[1,1,1,2,2,2,2,2,4,4]],[1709819945,[1,1,2,2,2,2,2,2,9,40]],[1709819946,[1,1,1,1,2,2,2,2,4,4]],[1709819947,[1,1,1,1,2,2,2,2,4,4]],[1709819948,[1,1,2,2,2,2,2,2,3,6]],[1709819949,[1,1,2,2,2,2,2,3,3,4]],[1709819950,[1,1,2,2,2,2,2,2,4,14]],[1709819951,[1,1,2,2,2,2,2,2,3,7]],[1709819952,[1,1,2,2,2,2,2,2,3,4]],[1709819953,[1,1,1,2,2,2,2,2,3,4]],[1709819954,[1,1,2,2,2,2,2,2,3,4]],[1709819955,[1,1,2,2,2,2,2,3,4,8]],[1709819956,[1,1,1,2,2,2,2,2,3,4]],[1709819957,[1,1,1,1,1,1,2,2,3,4]],[1709819958,[1,1,2,2,2,2,2,2,3,8]],[1709819959,[1,1,1,2,2,2,2,2,3,4]],[1709819960,[1,1,1,2,2,2,2,2,3,4]],[1709819961,[1,1,1,2,2,2,2,2,3,8]],[1709819962,[1,1,2,2,2,2,2,2,3,4]],[1709819963,[1,1,1,2,2,2,2,2,3,6]],[1709819964,[1,1,1,1,2,2,2,2,3,4]],[1709819965,[1,1,1,2,2,2,2,2,4,4]],[1709819966,[0,1,1,2,2,2,2,2,3,6]],[1709819967,[1,1,1,1,1,1,1,2,3,3]],[1709819968,[1,1,1,1,1,1,1,2,3,9]],[1709819969,[1,1,1,2,2,2,2,2,3,4]],[1709819970,[1,1,1,2,2,2,2,2,3,8]],[1709819971,[1,1,1,2,2,2,2,2,3,3]],[1709819972,[1,1,1,1,1,1,1,2,3,4]],[1709819973,[1,1,1,1,1,1,1,2,3,6]],[1709819974,[1,1,1,1,1,1,1,2,3,3]],[1709819975,[1,1,1,2,2,2,2,2,3,7]],[1709819976,[1,1,2,2,2,2,2,2,3,4]],[1709819977,[1,1,2,2,2,2,2,2,3,4]],[1709819978,[0,1,1,1,2,2,2,2,3,3]],[1709819979,[1,1,1,1,1,1,1,2,3,4]],[1709819980,[1,1,1,1,1,1,2,2,3,4]],[1709819981,[0,1,1,2,2,2,2,2,3,3]],[1709819982,[0,1,1,2,2,2,2,2,3,4]],[1709819983,[1,1,1,2,2,2,2,2,3,4]],[1709819984,[1,1,1,1,1,1,2,2,3,4]],[1709819985,[1,1,1,1,2,2,2,2,4,5]],[1709819986,[1,1,1,1,2,2,2,2,3,4]],[1709819987,[1,1,1,2,2,2,2,2,3,4]],[1709819988,[0,1,1,1,1,1,2,2,3,4]],[1709819989,[1,1,1,1,1,1,1,2,3,3]],[1709819990,[1,1,1,1,1,1,2,2,3,6]],[1709819991,[0,1,1,1,1,1,1,2,3,4]],[1709819992,[1,1,1,1,2,2,2,2,3,4]],[1709819993,[1,1,1,1,1,1,2,2,4,13]],[1709819994,[1,1,1,1,2,2,2,2,3,4]],[1709819995,[1,1,1,1,2,2,2,2,3,4]],[1709819996,[0,1,1,1,1,1,2,2,3,3]],[1709819997,[1,1,1,1,1,1,1,2,3,4]],[1709819998,[1,1,1,1,1,1,2,2,3,4]],[1709819999,[1,1,1,1,1,1,1,2,3,3]],[1709820000,[1,1,1,1,2,2,2,2,3,5]],[1709820001,[1,1,1,1,1,2,2,2,3,4]],[1709820002,[1,1,1,1,1,1,1,2,3,4]],[1709820003,[1,1,1,1,1,1,1,1,3,4]],[1709820004,[1,1,1,1,1,1,1,2,3,3]],[1709820005,[1,1,1,1,1,1,2,2,3,5]],[1709820006,[1,1,1,1,1,1,2,2,3,4]],[1709820007,[1,1,1,1,1,1,1,2,3,4]],[1709820008,[1,1,1,2,2,2,2,2,3,4]],[1709820009,[0,1,1,2,2,2,2,2,3,4]],[1709820010,[0,1,1,1,1,1,2,2,3,4]],[1709820011,[0,1,1,1,2,2,2,2,3,4]],[1709820012,[0,1,1,2,2,2,2,2,3,3]],[1709820013,[0,1,1,1,2,2,2,2,3,4]],[1709820014,[1,1,1,1,2,2,2,2,3,4]],[1709820015,[1,1,1,1,1,1,2,2,3,4]],[1709820016,[1,1,1,2,2,2,2,2,3,3]],[1709820017,[0,1,1,2,2,2,2,2,3,3]],[1709820018,[0,1,1,1,2,2,2,2,3,5]],[1709820019,[0,1,1,1,2,2,2,2,3,4]],[1709820020,[1,1,1,1,1,1,1,2,3,4]],[1709820021,[1,1,1,1,2,2,2,2,4,4]],[1709820022,[1,1,1,1,1,1,2,2,3,4]],[1709820023,[1,1,1,1,1,1,2,2,3,13]],[1709820024,[1,1,1,2,2,2,2,2,3,3]],[1709820025,[0,1,1,1,1,2,2,2,3,3]],[1709820026,[1,1,1,1,1,2,2,2,3,5]],[1709820027,[1,1,1,1,2,2,2,2,4,5]],[1709820028,[1,1,2,2,2,3,3,3,4,6]],[1709820029,[1,1,2,3,3,3,3,4,5,8]],[1709820030,[0,1,2,3,3,3,3,3,4,5]],[1709820031,[0,1,2,3,3,3,3,3,4,5]],[1709820032,[1,1,2,3,3,3,3,4,5,8]],[1709820033,[1,1,1,2,3,3,3,3,4,7]],[1709820034,[1,1,2,3,3,3,3,4,6,16]],[1709820035,[1,1,2,2,3,3,3,4,5,6]],[1709820036,[0,1,2,3,3,3,3,4,6,16]],[1709820037,[1,1,1,2,2,2,3,3,5,6]],[1709820038,[1,2,2,3,3,3,3,4,6,22]],[1709820039,[1,1,1,2,2,3,3,3,4,6]],[1709820040,[1,2,2,3,3,3,3,4,6,20]],[1709820041,[0,1,1,1,1,2,2,3,4,7]],[1709820042,[0,2,2,2,2,2,3,3,5,6]],[1709820043,[0,1,1,1,1,1,1,2,4,12]],[1709820044,[1,2,2,2,2,2,3,3,5,6]],[1709820045,[0,1,1,2,2,2,2,3,4,13]],[1709820046,[1,2,3,3,3,3,4,4,5,16]],[1709820047,[1,1,1,2,2,2,2,2,4,17]],[1709820048,[1,2,3,2,3,2,4,4,6,7]],[1709820049,[1,1,1,1,1,2,2,2,4,17]],[1709820050,[1,2,3,3,3,3,4,4,6,7]],[1709820051,[1,1,1,2,2,2,2,3,4,13]],[1709820052,[1,1,2,2,3,3,3,4,11,17]],[1709820053,[0,1,1,1,1,2,2,3,4,16]],[1709820054,[0,1,2,3,3,3,3,4,6,7]],[1709820055,[1,1,1,2,2,2,3,3,4,6]],[1709820056,[1,1,2,3,3,4,4,5,7,18]],[1709820057,[1,1,1,2,2,3,3,4,4,7]],[1709820058,[0,1,2,3,3,3,4,4,6,7]],[1709820059,[0,1,1,2,3,3,3,4,8,19]],[1709820060,[0,1,1,3,3,3,3,4,6,7]],[1709820061,[1,1,1,2,3,3,3,3,5,13]],[1709820062,[1,1,2,2,3,3,3,4,5,13]],[1709820063,[1,1,2,2,3,3,3,3,5,17]],[1709820064,[0,1,1,2,2,2,3,3,4,6]],[1709820065,[1,1,1,2,2,3,3,3,5,6]],[1709820066,[1,1,1,2,2,2,3,4,5,15]],[1709820067,[1,1,2,3,3,3,4,4,11,17]],[1709820068,[1,1,1,2,2,2,2,4,5,13]],[1709820069,[1,1,2,3,3,3,3,4,6,7]],[1709820070,[0,1,1,2,2,2,2,3,4,14]],[1709820071,[1,1,2,3,3,3,3,4,5,7]],[1709820072,[1,1,1,2,2,2,2,3,6,16]],[1709820073,[1,1,2,2,3,3,3,4,8,12]],[1709820074,[0,1,1,2,2,2,2,2,4,16]],[1709820075,[1,1,2,3,3,3,4,4,6,16]],[1709820076,[1,1,1,1,1,2,2,2,4,5]],[1709820077,[1,1,2,3,3,3,4,5,22,42]],[1709820078,[1,1,1,2,2,2,2,2,4,5]],[1709820079,[0,1,2,3,3,3,3,4,10,13]],[1709820080,[0,1,1,1,2,2,2,2,3,4]],[1709820081,[1,1,2,2,3,3,3,4,6,15]],[1709820082,[0,1,1,1,2,2,2,2,3,4]],[1709820083,[1,1,1,2,3,3,3,4,5,13]],[1709820084,[0,1,1,2,2,2,2,2,4,4]],[1709820085,[1,1,1,2,3,3,3,4,5,13]],[1709820086,[1,1,1,2,2,2,2,2,4,13]],[1709820087,[1,1,1,2,2,3,3,4,4,7]],[1709820088,[1,1,1,1,1,2,2,2,4,14]],[1709820089,[0,1,1,2,2,2,2,3,4,5]],[1709820090,[0,1,1,2,2,3,3,4,6,14]],[1709820091,[2,2,3,3,3,4,4,4,6,6]],[1709820092,[0,1,1,2,2,2,3,3,6,17]],[1709820093,[2,2,3,2,3,3,3,4,8,11]],[1709820094,[1,1,1,2,2,2,2,3,4,13]],[1709820095,[1,2,3,3,3,3,4,4,6,7]],[1709820096,[0,1,1,1,1,2,2,3,4,13]],[1709820097,[1,2,3,2,3,3,4,5,10,11]],[1709820098,[1,1,2,2,2,3,3,3,5,17]],[1709820099,[1,2,2,3,3,3,4,4,5,7]],[1709820100,[0,1,1,2,2,2,2,3,5,13]],[1709820101,[1,2,2,3,3,3,3,3,6,6]],[1709820102,[1,1,1,2,2,2,3,3,4,6]],[1709820103,[1,1,2,3,3,3,3,4,7,13]],[1709820104,[0,1,1,2,3,3,3,4,5,7]],[1709820105,[0,1,2,3,3,3,3,4,6,13]],[1709820106,[1,1,2,2,3,3,3,3,5,6]],[1709820107,[1,2,2,3,3,3,3,4,6,13]],[1709820108,[1,1,1,2,3,3,3,3,4,6]],[1709820109,[1,1,1,2,3,3,3,3,5,13]],[1709820110,[1,1,2,2,3,3,3,4,6,11]],[1709820111,[1,1,2,2,3,3,3,4,6,19]],[1709820112,[1,1,2,3,3,3,3,3,6,12]],[1709820113,[1,1,1,2,3,3,3,4,5,6]],[1709820114,[1,1,2,3,3,3,3,4,6,6]],[1709820115,[1,1,1,2,2,3,3,4,5,13]],[1709820116,[1,1,2,3,3,3,3,4,6,7]],[1709820117,[1,1,1,1,1,2,3,4,13,32]],[1709820118,[1,1,2,3,3,3,3,4,11,36]],[1709820119,[1,1,1,1,1,1,1,2,4,16]],[1709820120,[1,1,2,3,3,3,3,4,5,6]],[1709820121,[1,1,1,2,2,2,2,2,4,5]],[1709820122,[1,1,3,3,3,4,4,5,23,41]],[1709820123,[1,1,1,2,2,2,2,3,5,14]],[1709820124,[0,1,2,3,3,3,4,4,6,15]],[1709820125,[0,1,1,1,1,1,1,2,3,4]],[1709820126,[1,1,2,3,3,3,3,4,7,16]],[1709820127,[1,1,2,2,2,2,2,3,4,5]],[1709820128,[1,2,3,3,3,3,4,4,6,18]],[1709820129,[1,1,1,2,2,2,2,2,4,4]],[1709820130,[1,1,2,3,3,3,4,5,8,17]],[1709820131,[0,1,1,2,2,2,2,2,4,5]],[1709820132,[1,1,2,3,3,3,4,4,6,9]],[1709820133,[1,1,1,2,2,2,2,3,10,14]],[1709820134,[1,1,2,3,3,3,4,4,5,7]],[1709820135,[1,1,1,2,2,2,2,3,4,14]],[1709820136,[1,1,2,2,3,3,3,4,5,6]],[1709820137,[1,1,1,1,2,2,2,3,4,15]],[1709820138,[1,1,2,3,3,3,3,4,5,7]],[1709820139,[1,1,1,2,2,2,3,3,4,5]],[1709820140,[1,1,1,2,2,3,3,3,6,13]],[1709820141,[0,1,1,2,2,2,3,3,5,13]],[1709820142,[0,1,1,2,2,3,3,4,5,13]],[1709820143,[1,1,1,2,2,3,3,3,5,8]],[1709820144,[1,1,1,1,2,2,2,3,5,16]],[1709820145,[1,1,1,2,3,3,3,4,4,7]],[1709820146,[0,1,1,1,2,2,2,2,4,12]],[1709820147,[0,1,1,2,2,2,3,3,4,13]],[1709820148,[1,1,1,1,2,2,2,3,5,13]],[1709820149,[1,1,1,2,3,3,3,4,5,7]],[1709820150,[1,1,1,2,2,2,2,2,3,14]],[1709820151,[0,1,1,2,2,3,3,3,4,5]],[1709820152,[0,1,1,2,3,3,3,4,7,15]],[1709820153,[1,1,2,3,3,3,3,4,5,16]],[1709820154,[1,1,2,2,3,3,4,5,8,19]],[1709820155,[0,1,2,3,3,3,3,4,5,7]]]);
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([[1709819911,[25,25,0]],[1709819912,[1,1,0]],[1709819913,[25,25,0]],[1709819914,[1,1,0]],[1709819915,[71,71,0]],[1709819916,[3,3,0]],[1709819917,[6,6,0]],[1709819918,[9,9,0]],[1709819919,[11,11,0]],[1709819920,[13,13,0]],[1709819921,[18,18,0]],[1709819922,[19,19,0]],[1709819923,[24,24,0]],[1709819924,[26,26,0]],[1709819925,[27,27,0]],[1709819926,[32,32,0]],[1709819927,[34,34,0]],[1709819928,[37,37,0]],[1709819929,[39,39,0]],[1709819930,[43,43,0]],[1709819931,[45,45,0]],[1709819932,[48,48,0]],[1709819933,[50,50,0]],[1709819934,[54,54,0]],[1709819935,[56,56,0]],[1709819936,[60,60,0]],[1709819937,[61,61,0]],[1709819938,[65,65,0]],[1709819939,[67,67,0]],[1709819940,[70,70,0]],[1709819941,[74,74,0]],[1709819942,[76,76,0]],[1709819943,[80,80,0]],[1709819944,[81,81,0]],[1709819945,[84,84,0]],[1709819946,[89,89,0]],[1709819947,[89,89,0]],[1709819948,[93,93,0]],[1709819949,[96,96,0]],[1709819950,[98,98,0]],[1709819951,[102,102,0]],[1709819952,[104,104,0]],[1709819953,[107,107,0]],[1709819954,[109,109,0]],[1709819955,[114,114,0]],[1709819956,[115,115,0]],[1709819957,[118,118,0]],[1709819958,[122,122,0]],[1709819959,[123,123,0]],[1709819960,[126,126,0]],[1709819961,[129,129,0]],[1709819962,[133,133,0]],[1709819963,[134,134,0]],[1709819964,[139,139,0]],[1709819965,[140,140,0]],[1709819966,[144,144,0]],[1709819967,[146,146,0]],[1709819968,[149,149,0]],[1709819969,[151,151,0]],[1709819970,[155,155,0]],[1709819971,[157,157,0]],[1709819972,[160,160,0]],[1709819973,[165,165,0]],[1709819974,[165,165,0]],[1709819975,[171,171,0]],[1709819976,[170,170,0]],[1709819977,[174,174,0]],[1709819978,[177,177,0]],[1709819979,[180,180,0]],[1709819980,[183,183,0]],[1709819981,[186,186,0]],[1709819982,[188,188,0]],[1709819983,[192,192,0]],[1709819984,[194,194,0]],[1709819985,[197,197,0]],[1709819986,[198,198,0]],[1709819987,[204,204,0]],[1709819988,[204,204,0]],[1709819989,[209,209,0]],[1709819990,[210,210,0]],[1709819991,[214,214,0]],[1709819992,[217,217,0]],[1709819993,[219,219,0]],[1709819994,[222,222,0]],[1709819995,[225,225,0]],[1709819996,[228,228,0]],[1709819997,[229,229,0]],[1709819998,[234,234,0]],[1709819999,[236,236,0]],[1709820000,[239,239,0]],[1709820001,[243,243,0]],[1709820002,[244,244,0]],[1709820003,[248,248,0]],[1709820004,[251,251,0]],[1709820005,[251,251,0]],[1709820006,[256,256,0]],[1709820007,[260,260,0]],[1709820008,[262,262,0]],[1709820009,[263,263,0]],[1709820010,[267,267,0]],[1709820011,[269,269,0]],[1709820012,[273,273,0]],[1709820013,[275,275,0]],[1709820014,[279,279,0]],[1709820015,[281,281,0]],[1709820016,[284,284,0]],[1709820017,[286,286,0]],[1709820018,[290,290,0]],[1709820019,[292,292,0]],[1709820020,[295,295,0]],[1709820021,[299,299,0]],[1709820022,[300,300,0]],[1709820023,[304,304,0]],[1709820024,[306,306,0]],[1709820025,[309,309,0]],[1709820026,[312,312,0]],[1709820027,[315,315,0]],[1709820028,[317,317,0]],[1709820029,[320,320,0]],[1709820030,[323,323,0]],[1709820031,[328,328,0]],[1709820032,[329,329,0]],[1709820033,[331,331,0]],[1709820034,[334,334,0]],[1709820035,[338,338,0]],[1709820036,[340,340,0]],[1709820037,[341,341,0]],[1709820038,[340,340,0]],[1709820039,[340,340,0]],[1709820040,[339,339,0]],[1709820041,[340,340,0]],[1709820042,[340,340,0]],[1709820043,[340,340,0]],[1709820044,[340,340,0]],[1709820045,[340,340,0]],[1709820046,[340,340,0]],[1709820047,[341,341,0]],[1709820048,[340,340,0]],[1709820049,[340,340,0]],[1709820050,[340,340,0]],[1709820051,[339,339,0]],[1709820052,[340,340,0]],[1709820053,[340,340,0]],[1709820054,[341,341,0]],[1709820055,[340,340,0]],[1709820056,[340,340,0]],[1709820057,[339,339,0]],[1709820058,[341,341,0]],[1709820059,[339,339,0]],[1709820060,[341,341,0]],[1709820061,[340,340,0]],[1709820062,[340,340,0]],[1709820063,[339,339,0]],[1709820064,[341,341,0]],[1709820065,[340,340,0]],[1709820066,[340,340,0]],[1709820067,[340,340,0]],[1709820068,[340,340,0]],[1709820069,[339,339,0]],[1709820070,[340,340,0]],[1709820071,[340,340,0]],[1709820072,[341,341,0]],[1709820073,[340,340,0]],[1709820074,[339,339,0]],[1709820075,[341,341,0]],[1709820076,[340,340,0]],[1709820077,[340,340,0]],[1709820078,[340,340,0]],[1709820079,[339,339,0]],[1709820080,[341,341,0]],[1709820081,[339,339,0]],[1709820082,[341,341,0]],[1709820083,[339,339,0]],[1709820084,[341,341,0]],[1709820085,[339,339,0]],[1709820086,[341,341,0]],[1709820087,[340,340,0]],[1709820088,[340,340,0]],[1709820089,[339,339,0]],[1709820090,[341,341,0]],[1709820091,[339,339,0]],[1709820092,[341,341,0]],[1709820093,[340,340,0]],[1709820094,[340,340,0]],[1709820095,[338,338,0]],[1709820096,[342,342,0]],[1709820097,[340,340,0]],[1709820098,[340,340,0]],[1709820099,[339,339,0]],[1709820100,[340,340,0]],[1709820101,[341,341,0]],[1709820102,[340,340,0]],[1709820103,[340,340,0]],[1709820104,[338,338,0]],[1709820105,[342,342,0]],[1709820106,[340,340,0]],[1709820107,[340,340,0]],[1709820108,[339,339,0]],[1709820109,[341,341,0]],[1709820110,[339,339,0]],[1709820111,[341,341,0]],[1709820112,[340,340,0]],[1709820113,[340,340,0]],[1709820114,[340,340,0]],[1709820115,[340,340,0]],[1709820116,[340,340,0]],[1709820117,[340,340,0]],[1709820118,[340,340,0]],[1709820119,[340,340,0]],[1709820120,[340,340,0]],[1709820121,[340,340,0]],[1709820122,[340,340,0]],[1709820123,[340,340,0]],[1709820124,[338,338,0]],[1709820125,[341,341,0]],[1709820126,[341,341,0]],[1709820127,[340,340,0]],[1709820128,[340,340,0]],[1709820129,[340,340,0]],[1709820130,[340,340,0]],[1709820131,[339,339,0]],[1709820132,[341,341,0]],[1709820133,[340,340,0]],[1709820134,[340,340,0]],[1709820135,[340,340,0]],[1709820136,[339,339,0]],[1709820137,[341,341,0]],[1709820138,[340,340,0]],[1709820139,[340,340,0]],[1709820140,[340,340,0]],[1709820141,[339,339,0]],[1709820142,[341,341,0]],[1709820143,[340,340,0]],[1709820144,[340,340,0]],[1709820145,[340,340,0]],[1709820146,[338,338,0]],[1709820147,[342,342,0]],[1709820148,[340,340,0]],[1709820149,[340,340,0]],[1709820150,[339,339,0]],[1709820151,[340,340,0]],[1709820152,[341,341,0]],[1709820153,[340,340,0]],[1709820154,[340,340,0]],[1709820155,[501,501,0]]]);
var requestsChart = new Highcharts.StockChart({
chart: {
renderTo: 'requests',
zoomType: 'x',
marginBottom: 60
},
credits: { enabled: false },
legend: {
enabled: true,
floating: true,
y: -65,
borderWidth: 0,
itemStyle: { fontWeight: "normal" },
symbolRadius: 0
},
title: { text: 'A title to let highcharts reserve the place for the title set later' },
navigator: {
maskInside: false
},
rangeSelector: {
buttonSpacing: 0,
buttonTheme: {
fill: '#CFC9C6',
padding: 1,
stroke: '#000000',
'stroke-width': 0.25,
style: {
color: '#000000',
fontWeight: 'bold',
},
states: {
stroke: '#000000',
'stroke-width': 0.25,
hover: {
fill: '#92918C',
style: { color: 'black' }
},
select: {
fill: '#FFA900',
style: { color: 'white' }
}
}
},
buttons : [
{
type : 'minute',
count : 1,
text : '1m'
}, {
type : 'minute',
count : 10,
text : '10m'
}, {
type : 'hour',
count : 1,
text : '1h'
}, {
type : 'all',
count : 1,
text : 'All'
}
],
selected : 3,
inputEnabled : false
},
plotOptions: {
series: {
dataGrouping: { enabled: false }
},
area: {
stacking: 'normal'
}
},
xAxis: {
type: 'datetime',
ordinal: false,
maxZoom: 10000 // three days
},
yAxis:[