-
Notifications
You must be signed in to change notification settings - Fork 923
/
Copy pathindex.html
1173 lines (1104 loc) · 94.3 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="shortcut icon" type="image/x-icon" href="style/favicon.ico"/>
<link href="style/style.css" rel="stylesheet" type="text/css" />
<link href="style/bootstrap.min.css" rel="stylesheet" type="text/css" />
<script src="js/jquery-3.5.1.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/gatling.js"></script>
<script src="js/menu.js"></script>
<script src="js/ellipsis.js"></script>
<script src="js/all_sessions.js"></script>
<script src="js/stats.js"></script>
<script src="js/highstock.js"></script>
<script src="js/highcharts-more.js"></script>
<script src="js/theme.js"></script>
<script src="js/unpack.js"></script>
<title>Gatling Stats - Global Information</title>
</head>
<body>
<script>
const storedTheme = localStorage.getItem('theme') || (window.matchMedia("(prefers-color-scheme: dark)").matches ? "dark" : "light");
if (storedTheme) document.documentElement.setAttribute('data-theme', storedTheme)
function toggleTheme() {
const currentTheme = document.documentElement.getAttribute("data-theme");
const targetTheme = currentTheme === "light" ? "dark" : "light";
document.documentElement.setAttribute('data-theme', targetTheme)
localStorage.setItem('theme', targetTheme);
};
</script>
<div class="app-container">
<div class="frise"></div>
<div class="head">
<div class="gatling-open-source">
<a class="gatling-logo gatling-logo-light" href="https://gatling.io" target="blank_" title="Gatling Home Page"><img alt="Gatling" src="style/logo-light.svg"/></a>
<a class="gatling-logo gatling-logo-dark" href="https://gatling.io" target="blank_" title="Gatling Home Page"><img alt="Gatling" src="style/logo-dark.svg"/></a>
<a class="gatling-documentation" href="https://gatling.io/docs/" target="_blank">Documentation</a>
</div>
<div class="nav spacer"></div>
<a class="enterprise" href="https://gatling.io/enterprise/next-step/" target="_blank"><strong>Try</strong>
<img class="logo-enterprise-light" alt="Gatling Enterprise" src="style/logo-enterprise-light.svg"/>
<img class="logo-enterprise-dark" alt="Gatling Enterprise" src="style/logo-enterprise-dark.svg"/>
</a>
<button id="theme-toggle" class="theme-toggle" type="button" onclick="toggleTheme()" aria-label="Toggle user interface mode">
<span class="toggle-dark"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-moon"><path d="M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z"></path></svg></span>
<span class="toggle-light"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-sun"><circle cx="12" cy="12" r="5"></circle><line x1="12" y1="1" x2="12" y2="3"></line><line x1="12" y1="21" x2="12" y2="23"></line><line x1="4.22" y1="4.22" x2="5.64" y2="5.64"></line><line x1="18.36" y1="18.36" x2="19.78" y2="19.78"></line><line x1="1" y1="12" x2="3" y2="12"></line><line x1="21" y1="12" x2="23" y2="12"></line><line x1="4.22" y1="19.78" x2="5.64" y2="18.36"></line><line x1="18.36" y1="5.64" x2="19.78" y2="4.22"></line></svg></span>
</button>
</div>
<div class="container details">
<div class="nav">
<ul></ul>
</div>
<div class="cadre">
<div class="content">
<div class="content-header">
<div class="onglet">
RinhaBackendCrebitosSimulation
</div>
<div class="sous-menu" id="sousMenu">
<div class="sous-menu-spacer">
<div class="item ouvert"><a href="index.html">Global</a></div>
<div class="item "><a id="details_link" href="#">Details</a></div>
</div>
</div>
</div>
<div class="content-in">
<div class="container-article">
<div class="article">
<div class="schema-container">
<div id="ranges" class="schema ranges">
</div>
<div class="schema polar">
<div id="container_number_of_requests"></div>
</div>
<div class="simulation-card">
<div class="simulation-version-information">
<span class="simulation-information-title">Gatling Version</span>
<span class="simulation-information-item">
<span class="simulation-information-label">Version: </span>
<span>3.10.3</span>
</span>
<span class="simulation-information-item">
<span class="simulation-information-label">Released: </span>
<span>2023-12-20</span>
</span>
</div>
<div id="simulation-information" class="simulation-version-information">
<span class="simulation-information-title">Run Information</span>
<div class="simulation-information-container">
<span class="simulation-information-item">
<span class="simulation-information-label">Date: </span>
<span>2024-03-07 17:38:57 GMT</span>
</span>
<span class="simulation-information-item">
<span class="simulation-information-label">Duration: </span>
<span>4m 5s </span>
</span>
<span class="simulation-tooltip simulation-information-item description" title="Description" data-content="Rinha de Backend - 2024/Q1: Crébito - mariofronza-kotlin">
<span class="simulation-information-label">Description: </span>
<span>Rinha de Backend - 2024/Q1: Crébito - mariofronza-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: [
[1709833138000,0],[1709833139000,0],[1709833140000,0],[1709833141000,0],[1709833142000,0],[1709833143000,0],[1709833144000,2],[1709833145000,3],[1709833146000,5],[1709833147000,4],[1709833148000,5],[1709833149000,6],[1709833150000,7],[1709833151000,9],[1709833152000,8],[1709833153000,10],[1709833154000,10],[1709833155000,12],[1709833156000,13],[1709833157000,14],[1709833158000,14],[1709833159000,15],[1709833160000,16],[1709833161000,17],[1709833162000,17],[1709833163000,19],[1709833164000,20],[1709833165000,20],[1709833166000,22],[1709833167000,22],[1709833168000,23],[1709833169000,25],[1709833170000,25],[1709833171000,26],[1709833172000,26],[1709833173000,28],[1709833174000,29],[1709833175000,30],[1709833176000,30],[1709833177000,32],[1709833178000,32],[1709833179000,33],[1709833180000,35],[1709833181000,35],[1709833182000,36],[1709833183000,37],[1709833184000,38],[1709833185000,39],[1709833186000,39],[1709833187000,41],[1709833188000,41],[1709833189000,43],[1709833190000,43],[1709833191000,44],[1709833192000,45],[1709833193000,46],[1709833194000,47],[1709833195000,48],[1709833196000,48],[1709833197000,50],[1709833198000,50],[1709833199000,52],[1709833200000,53],[1709833201000,53],[1709833202000,54],[1709833203000,56],[1709833204000,58],[1709833205000,59],[1709833206000,58],[1709833207000,61],[1709833208000,59],[1709833209000,61],[1709833210000,62],[1709833211000,70],[1709833212000,63],[1709833213000,64],[1709833214000,65],[1709833215000,75],[1709833216000,68],[1709833217000,68],[1709833218000,69],[1709833219000,70],[1709833220000,71],[1709833221000,73],[1709833222000,73],[1709833223000,74],[1709833224000,75],[1709833225000,76],[1709833226000,77],[1709833227000,78],[1709833228000,79],[1709833229000,83],[1709833230000,80],[1709833231000,82],[1709833232000,94],[1709833233000,94],[1709833234000,86],[1709833235000,88],[1709833236000,88],[1709833237000,87],[1709833238000,87],[1709833239000,88],[1709833240000,94],[1709833241000,90],[1709833242000,91],[1709833243000,93],[1709833244000,92],[1709833245000,99],[1709833246000,94],[1709833247000,102],[1709833248000,96],[1709833249000,97],[1709833250000,98],[1709833251000,99],[1709833252000,100],[1709833253000,102],[1709833254000,101],[1709833255000,103],[1709833256000,103],[1709833257000,104],[1709833258000,105],[1709833259000,107],[1709833260000,109],[1709833261000,108],[1709833262000,110],[1709833263000,110],[1709833264000,111],[1709833265000,110],[1709833266000,110],[1709833267000,110],[1709833268000,110],[1709833269000,110],[1709833270000,111],[1709833271000,111],[1709833272000,111],[1709833273000,110],[1709833274000,110],[1709833275000,110],[1709833276000,110],[1709833277000,110],[1709833278000,110],[1709833279000,110],[1709833280000,111],[1709833281000,112],[1709833282000,111],[1709833283000,110],[1709833284000,110],[1709833285000,110],[1709833286000,110],[1709833287000,111],[1709833288000,111],[1709833289000,110],[1709833290000,113],[1709833291000,110],[1709833292000,110],[1709833293000,110],[1709833294000,110],[1709833295000,110],[1709833296000,110],[1709833297000,110],[1709833298000,110],[1709833299000,110],[1709833300000,110],[1709833301000,110],[1709833302000,110],[1709833303000,111],[1709833304000,110],[1709833305000,111],[1709833306000,110],[1709833307000,110],[1709833308000,110],[1709833309000,110],[1709833310000,110],[1709833311000,110],[1709833312000,110],[1709833313000,110],[1709833314000,110],[1709833315000,113],[1709833316000,110],[1709833317000,110],[1709833318000,111],[1709833319000,111],[1709833320000,110],[1709833321000,110],[1709833322000,111],[1709833323000,111],[1709833324000,110],[1709833325000,110],[1709833326000,110],[1709833327000,111],[1709833328000,110],[1709833329000,110],[1709833330000,110],[1709833331000,110],[1709833332000,110],[1709833333000,111],[1709833334000,110],[1709833335000,111],[1709833336000,110],[1709833337000,110],[1709833338000,110],[1709833339000,110],[1709833340000,110],[1709833341000,110],[1709833342000,110],[1709833343000,112],[1709833344000,110],[1709833345000,110],[1709833346000,110],[1709833347000,110],[1709833348000,111],[1709833349000,110],[1709833350000,110],[1709833351000,110],[1709833352000,110],[1709833353000,110],[1709833354000,111],[1709833355000,110],[1709833356000,112],[1709833357000,110],[1709833358000,110],[1709833359000,110],[1709833360000,111],[1709833361000,110],[1709833362000,111],[1709833363000,110],[1709833364000,111],[1709833365000,110],[1709833366000,110],[1709833367000,110],[1709833368000,110],[1709833369000,110],[1709833370000,110],[1709833371000,110],[1709833372000,110],[1709833373000,110],[1709833374000,110],[1709833375000,110],[1709833376000,110],[1709833377000,110],[1709833378000,110],[1709833379000,110],[1709833380000,110],[1709833381000,110],[1709833382000,110],[1709833383000,108]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#68b65c',
name: 'débitos',
data: [
[1709833138000,0],[1709833139000,0],[1709833140000,0],[1709833141000,0],[1709833142000,0],[1709833143000,0],[1709833144000,2],[1709833145000,5],[1709833146000,7],[1709833147000,8],[1709833148000,9],[1709833149000,11],[1709833150000,14],[1709833151000,15],[1709833152000,16],[1709833153000,20],[1709833154000,20],[1709833155000,22],[1709833156000,24],[1709833157000,25],[1709833158000,28],[1709833159000,29],[1709833160000,31],[1709833161000,34],[1709833162000,35],[1709833163000,37],[1709833164000,38],[1709833165000,40],[1709833166000,43],[1709833167000,44],[1709833168000,46],[1709833169000,47],[1709833170000,50],[1709833171000,51],[1709833172000,53],[1709833173000,55],[1709833174000,56],[1709833175000,59],[1709833176000,60],[1709833177000,62],[1709833178000,64],[1709833179000,67],[1709833180000,68],[1709833181000,69],[1709833182000,72],[1709833183000,75],[1709833184000,75],[1709833185000,78],[1709833186000,80],[1709833187000,81],[1709833188000,83],[1709833189000,84],[1709833190000,87],[1709833191000,89],[1709833192000,89],[1709833193000,92],[1709833194000,93],[1709833195000,95],[1709833196000,98],[1709833197000,98],[1709833198000,101],[1709833199000,103],[1709833200000,105],[1709833201000,106],[1709833202000,108],[1709833203000,110],[1709833204000,116],[1709833205000,118],[1709833206000,115],[1709833207000,120],[1709833208000,119],[1709833209000,120],[1709833210000,126],[1709833211000,141],[1709833212000,126],[1709833213000,128],[1709833214000,130],[1709833215000,145],[1709833216000,135],[1709833217000,136],[1709833218000,138],[1709833219000,140],[1709833220000,142],[1709833221000,143],[1709833222000,145],[1709833223000,148],[1709833224000,148],[1709833225000,151],[1709833226000,153],[1709833227000,154],[1709833228000,156],[1709833229000,164],[1709833230000,160],[1709833231000,162],[1709833232000,187],[1709833233000,183],[1709833234000,173],[1709833235000,174],[1709833236000,176],[1709833237000,172],[1709833238000,174],[1709833239000,176],[1709833240000,188],[1709833241000,179],[1709833242000,182],[1709833243000,188],[1709833244000,184],[1709833245000,196],[1709833246000,188],[1709833247000,203],[1709833248000,192],[1709833249000,193],[1709833250000,203],[1709833251000,197],[1709833252000,200],[1709833253000,204],[1709833254000,203],[1709833255000,205],[1709833256000,207],[1709833257000,208],[1709833258000,211],[1709833259000,213],[1709833260000,222],[1709833261000,217],[1709833262000,218],[1709833263000,221],[1709833264000,222],[1709833265000,221],[1709833266000,221],[1709833267000,221],[1709833268000,222],[1709833269000,221],[1709833270000,221],[1709833271000,222],[1709833272000,221],[1709833273000,221],[1709833274000,222],[1709833275000,221],[1709833276000,222],[1709833277000,221],[1709833278000,222],[1709833279000,221],[1709833280000,221],[1709833281000,225],[1709833282000,221],[1709833283000,221],[1709833284000,222],[1709833285000,221],[1709833286000,225],[1709833287000,222],[1709833288000,223],[1709833289000,221],[1709833290000,225],[1709833291000,221],[1709833292000,221],[1709833293000,221],[1709833294000,221],[1709833295000,221],[1709833296000,221],[1709833297000,221],[1709833298000,221],[1709833299000,221],[1709833300000,221],[1709833301000,221],[1709833302000,221],[1709833303000,223],[1709833304000,221],[1709833305000,221],[1709833306000,221],[1709833307000,222],[1709833308000,221],[1709833309000,222],[1709833310000,221],[1709833311000,221],[1709833312000,221],[1709833313000,221],[1709833314000,221],[1709833315000,227],[1709833316000,221],[1709833317000,221],[1709833318000,222],[1709833319000,222],[1709833320000,221],[1709833321000,221],[1709833322000,221],[1709833323000,221],[1709833324000,221],[1709833325000,222],[1709833326000,221],[1709833327000,221],[1709833328000,221],[1709833329000,222],[1709833330000,221],[1709833331000,222],[1709833332000,221],[1709833333000,221],[1709833334000,221],[1709833335000,221],[1709833336000,221],[1709833337000,221],[1709833338000,222],[1709833339000,222],[1709833340000,221],[1709833341000,221],[1709833342000,221],[1709833343000,222],[1709833344000,221],[1709833345000,221],[1709833346000,221],[1709833347000,222],[1709833348000,221],[1709833349000,221],[1709833350000,221],[1709833351000,221],[1709833352000,222],[1709833353000,221],[1709833354000,221],[1709833355000,221],[1709833356000,227],[1709833357000,221],[1709833358000,222],[1709833359000,221],[1709833360000,221],[1709833361000,221],[1709833362000,221],[1709833363000,221],[1709833364000,222],[1709833365000,221],[1709833366000,221],[1709833367000,221],[1709833368000,221],[1709833369000,221],[1709833370000,221],[1709833371000,221],[1709833372000,221],[1709833373000,221],[1709833374000,221],[1709833375000,221],[1709833376000,221],[1709833377000,221],[1709833378000,221],[1709833379000,221],[1709833380000,221],[1709833381000,221],[1709833382000,221],[1709833383000,217]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#f15b4f',
name: 'extratos',
data: [
[1709833138000,0],[1709833139000,0],[1709833140000,0],[1709833141000,0],[1709833142000,0],[1709833143000,1],[1709833144000,2],[1709833145000,1],[1709833146000,2],[1709833147000,2],[1709833148000,1],[1709833149000,2],[1709833150000,1],[1709833151000,2],[1709833152000,2],[1709833153000,1],[1709833154000,2],[1709833155000,3],[1709833156000,2],[1709833157000,2],[1709833158000,2],[1709833159000,2],[1709833160000,2],[1709833161000,3],[1709833162000,2],[1709833163000,3],[1709833164000,2],[1709833165000,3],[1709833166000,2],[1709833167000,3],[1709833168000,3],[1709833169000,3],[1709833170000,3],[1709833171000,3],[1709833172000,3],[1709833173000,3],[1709833174000,4],[1709833175000,3],[1709833176000,3],[1709833177000,4],[1709833178000,3],[1709833179000,4],[1709833180000,4],[1709833181000,5],[1709833182000,5],[1709833183000,4],[1709833184000,4],[1709833185000,4],[1709833186000,4],[1709833187000,4],[1709833188000,4],[1709833189000,5],[1709833190000,4],[1709833191000,5],[1709833192000,5],[1709833193000,4],[1709833194000,5],[1709833195000,5],[1709833196000,5],[1709833197000,5],[1709833198000,5],[1709833199000,5],[1709833200000,5],[1709833201000,6],[1709833202000,5],[1709833203000,6],[1709833204000,6],[1709833205000,7],[1709833206000,5],[1709833207000,6],[1709833208000,6],[1709833209000,6],[1709833210000,6],[1709833211000,7],[1709833212000,6],[1709833213000,6],[1709833214000,8],[1709833215000,7],[1709833216000,6],[1709833217000,7],[1709833218000,6],[1709833219000,7],[1709833220000,7],[1709833221000,7],[1709833222000,7],[1709833223000,7],[1709833224000,7],[1709833225000,7],[1709833226000,7],[1709833227000,7],[1709833228000,7],[1709833229000,9],[1709833230000,7],[1709833231000,8],[1709833232000,9],[1709833233000,8],[1709833234000,9],[1709833235000,9],[1709833236000,9],[1709833237000,8],[1709833238000,8],[1709833239000,8],[1709833240000,9],[1709833241000,9],[1709833242000,8],[1709833243000,10],[1709833244000,8],[1709833245000,10],[1709833246000,8],[1709833247000,10],[1709833248000,9],[1709833249000,9],[1709833250000,10],[1709833251000,9],[1709833252000,9],[1709833253000,9],[1709833254000,10],[1709833255000,9],[1709833256000,9],[1709833257000,10],[1709833258000,9],[1709833259000,10],[1709833260000,11],[1709833261000,10],[1709833262000,10],[1709833263000,10],[1709833264000,10],[1709833265000,10],[1709833266000,10],[1709833267000,10],[1709833268000,10],[1709833269000,10],[1709833270000,10],[1709833271000,10],[1709833272000,10],[1709833273000,10],[1709833274000,10],[1709833275000,10],[1709833276000,10],[1709833277000,10],[1709833278000,10],[1709833279000,10],[1709833280000,10],[1709833281000,11],[1709833282000,10],[1709833283000,10],[1709833284000,10],[1709833285000,10],[1709833286000,11],[1709833287000,10],[1709833288000,10],[1709833289000,10],[1709833290000,11],[1709833291000,10],[1709833292000,10],[1709833293000,10],[1709833294000,10],[1709833295000,10],[1709833296000,10],[1709833297000,10],[1709833298000,10],[1709833299000,10],[1709833300000,10],[1709833301000,10],[1709833302000,10],[1709833303000,10],[1709833304000,10],[1709833305000,10],[1709833306000,10],[1709833307000,10],[1709833308000,10],[1709833309000,10],[1709833310000,10],[1709833311000,10],[1709833312000,10],[1709833313000,10],[1709833314000,10],[1709833315000,11],[1709833316000,10],[1709833317000,10],[1709833318000,10],[1709833319000,10],[1709833320000,10],[1709833321000,10],[1709833322000,10],[1709833323000,10],[1709833324000,10],[1709833325000,10],[1709833326000,10],[1709833327000,10],[1709833328000,10],[1709833329000,10],[1709833330000,10],[1709833331000,10],[1709833332000,10],[1709833333000,10],[1709833334000,10],[1709833335000,10],[1709833336000,10],[1709833337000,10],[1709833338000,10],[1709833339000,10],[1709833340000,10],[1709833341000,10],[1709833342000,10],[1709833343000,10],[1709833344000,10],[1709833345000,10],[1709833346000,10],[1709833347000,10],[1709833348000,10],[1709833349000,10],[1709833350000,10],[1709833351000,10],[1709833352000,10],[1709833353000,10],[1709833354000,10],[1709833355000,10],[1709833356000,11],[1709833357000,10],[1709833358000,10],[1709833359000,10],[1709833360000,10],[1709833361000,10],[1709833362000,10],[1709833363000,10],[1709833364000,10],[1709833365000,10],[1709833366000,10],[1709833367000,10],[1709833368000,10],[1709833369000,10],[1709833370000,10],[1709833371000,10],[1709833372000,10],[1709833373000,10],[1709833374000,10],[1709833375000,10],[1709833376000,10],[1709833377000,10],[1709833378000,10],[1709833379000,10],[1709833380000,10],[1709833381000,10],[1709833382000,10],[1709833383000,9]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FFDD00',
name: 'validações',
data: [
[1709833138000,0],[1709833139000,0],[1709833140000,0],[1709833141000,0],[1709833142000,5],[1709833143000,5],[1709833144000,3],[1709833145000,0],[1709833146000,0],[1709833147000,0],[1709833148000,0],[1709833149000,0],[1709833150000,0],[1709833151000,0],[1709833152000,0],[1709833153000,0],[1709833154000,0],[1709833155000,0],[1709833156000,0],[1709833157000,0],[1709833158000,0],[1709833159000,0],[1709833160000,0],[1709833161000,0],[1709833162000,0],[1709833163000,0],[1709833164000,0],[1709833165000,0],[1709833166000,0],[1709833167000,0],[1709833168000,0],[1709833169000,0],[1709833170000,0],[1709833171000,0],[1709833172000,0],[1709833173000,0],[1709833174000,0],[1709833175000,0],[1709833176000,0],[1709833177000,0],[1709833178000,0],[1709833179000,0],[1709833180000,0],[1709833181000,0],[1709833182000,0],[1709833183000,0],[1709833184000,0],[1709833185000,0],[1709833186000,0],[1709833187000,0],[1709833188000,0],[1709833189000,0],[1709833190000,0],[1709833191000,0],[1709833192000,0],[1709833193000,0],[1709833194000,0],[1709833195000,0],[1709833196000,0],[1709833197000,0],[1709833198000,0],[1709833199000,0],[1709833200000,0],[1709833201000,0],[1709833202000,0],[1709833203000,0],[1709833204000,0],[1709833205000,0],[1709833206000,0],[1709833207000,0],[1709833208000,0],[1709833209000,0],[1709833210000,0],[1709833211000,0],[1709833212000,0],[1709833213000,0],[1709833214000,0],[1709833215000,0],[1709833216000,0],[1709833217000,0],[1709833218000,0],[1709833219000,0],[1709833220000,0],[1709833221000,0],[1709833222000,0],[1709833223000,0],[1709833224000,0],[1709833225000,0],[1709833226000,0],[1709833227000,0],[1709833228000,0],[1709833229000,0],[1709833230000,0],[1709833231000,0],[1709833232000,0],[1709833233000,0],[1709833234000,0],[1709833235000,0],[1709833236000,0],[1709833237000,0],[1709833238000,0],[1709833239000,0],[1709833240000,0],[1709833241000,0],[1709833242000,0],[1709833243000,0],[1709833244000,0],[1709833245000,0],[1709833246000,0],[1709833247000,0],[1709833248000,0],[1709833249000,0],[1709833250000,0],[1709833251000,0],[1709833252000,0],[1709833253000,0],[1709833254000,0],[1709833255000,0],[1709833256000,0],[1709833257000,0],[1709833258000,0],[1709833259000,0],[1709833260000,0],[1709833261000,0],[1709833262000,0],[1709833263000,0],[1709833264000,0],[1709833265000,0],[1709833266000,0],[1709833267000,0],[1709833268000,0],[1709833269000,0],[1709833270000,0],[1709833271000,0],[1709833272000,0],[1709833273000,0],[1709833274000,0],[1709833275000,0],[1709833276000,0],[1709833277000,0],[1709833278000,0],[1709833279000,0],[1709833280000,0],[1709833281000,0],[1709833282000,0],[1709833283000,0],[1709833284000,0],[1709833285000,0],[1709833286000,0],[1709833287000,0],[1709833288000,0],[1709833289000,0],[1709833290000,0],[1709833291000,0],[1709833292000,0],[1709833293000,0],[1709833294000,0],[1709833295000,0],[1709833296000,0],[1709833297000,0],[1709833298000,0],[1709833299000,0],[1709833300000,0],[1709833301000,0],[1709833302000,0],[1709833303000,0],[1709833304000,0],[1709833305000,0],[1709833306000,0],[1709833307000,0],[1709833308000,0],[1709833309000,0],[1709833310000,0],[1709833311000,0],[1709833312000,0],[1709833313000,0],[1709833314000,0],[1709833315000,0],[1709833316000,0],[1709833317000,0],[1709833318000,0],[1709833319000,0],[1709833320000,0],[1709833321000,0],[1709833322000,0],[1709833323000,0],[1709833324000,0],[1709833325000,0],[1709833326000,0],[1709833327000,0],[1709833328000,0],[1709833329000,0],[1709833330000,0],[1709833331000,0],[1709833332000,0],[1709833333000,0],[1709833334000,0],[1709833335000,0],[1709833336000,0],[1709833337000,0],[1709833338000,0],[1709833339000,0],[1709833340000,0],[1709833341000,0],[1709833342000,0],[1709833343000,0],[1709833344000,0],[1709833345000,0],[1709833346000,0],[1709833347000,0],[1709833348000,0],[1709833349000,0],[1709833350000,0],[1709833351000,0],[1709833352000,0],[1709833353000,0],[1709833354000,0],[1709833355000,0],[1709833356000,0],[1709833357000,0],[1709833358000,0],[1709833359000,0],[1709833360000,0],[1709833361000,0],[1709833362000,0],[1709833363000,0],[1709833364000,0],[1709833365000,0],[1709833366000,0],[1709833367000,0],[1709833368000,0],[1709833369000,0],[1709833370000,0],[1709833371000,0],[1709833372000,0],[1709833373000,0],[1709833374000,0],[1709833375000,0],[1709833376000,0],[1709833377000,0],[1709833378000,0],[1709833379000,0],[1709833380000,0],[1709833381000,0],[1709833382000,0],[1709833383000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00D5FF',
name: 'validação HTTP 404',
data: [
[1709833138000,0],[1709833139000,0],[1709833140000,0],[1709833141000,0],[1709833142000,1],[1709833143000,1],[1709833144000,0],[1709833145000,0],[1709833146000,0],[1709833147000,0],[1709833148000,0],[1709833149000,0],[1709833150000,0],[1709833151000,0],[1709833152000,0],[1709833153000,0],[1709833154000,0],[1709833155000,0],[1709833156000,0],[1709833157000,0],[1709833158000,0],[1709833159000,0],[1709833160000,0],[1709833161000,0],[1709833162000,0],[1709833163000,0],[1709833164000,0],[1709833165000,0],[1709833166000,0],[1709833167000,0],[1709833168000,0],[1709833169000,0],[1709833170000,0],[1709833171000,0],[1709833172000,0],[1709833173000,0],[1709833174000,0],[1709833175000,0],[1709833176000,0],[1709833177000,0],[1709833178000,0],[1709833179000,0],[1709833180000,0],[1709833181000,0],[1709833182000,0],[1709833183000,0],[1709833184000,0],[1709833185000,0],[1709833186000,0],[1709833187000,0],[1709833188000,0],[1709833189000,0],[1709833190000,0],[1709833191000,0],[1709833192000,0],[1709833193000,0],[1709833194000,0],[1709833195000,0],[1709833196000,0],[1709833197000,0],[1709833198000,0],[1709833199000,0],[1709833200000,0],[1709833201000,0],[1709833202000,0],[1709833203000,0],[1709833204000,0],[1709833205000,0],[1709833206000,0],[1709833207000,0],[1709833208000,0],[1709833209000,0],[1709833210000,0],[1709833211000,0],[1709833212000,0],[1709833213000,0],[1709833214000,0],[1709833215000,0],[1709833216000,0],[1709833217000,0],[1709833218000,0],[1709833219000,0],[1709833220000,0],[1709833221000,0],[1709833222000,0],[1709833223000,0],[1709833224000,0],[1709833225000,0],[1709833226000,0],[1709833227000,0],[1709833228000,0],[1709833229000,0],[1709833230000,0],[1709833231000,0],[1709833232000,0],[1709833233000,0],[1709833234000,0],[1709833235000,0],[1709833236000,0],[1709833237000,0],[1709833238000,0],[1709833239000,0],[1709833240000,0],[1709833241000,0],[1709833242000,0],[1709833243000,0],[1709833244000,0],[1709833245000,0],[1709833246000,0],[1709833247000,0],[1709833248000,0],[1709833249000,0],[1709833250000,0],[1709833251000,0],[1709833252000,0],[1709833253000,0],[1709833254000,0],[1709833255000,0],[1709833256000,0],[1709833257000,0],[1709833258000,0],[1709833259000,0],[1709833260000,0],[1709833261000,0],[1709833262000,0],[1709833263000,0],[1709833264000,0],[1709833265000,0],[1709833266000,0],[1709833267000,0],[1709833268000,0],[1709833269000,0],[1709833270000,0],[1709833271000,0],[1709833272000,0],[1709833273000,0],[1709833274000,0],[1709833275000,0],[1709833276000,0],[1709833277000,0],[1709833278000,0],[1709833279000,0],[1709833280000,0],[1709833281000,0],[1709833282000,0],[1709833283000,0],[1709833284000,0],[1709833285000,0],[1709833286000,0],[1709833287000,0],[1709833288000,0],[1709833289000,0],[1709833290000,0],[1709833291000,0],[1709833292000,0],[1709833293000,0],[1709833294000,0],[1709833295000,0],[1709833296000,0],[1709833297000,0],[1709833298000,0],[1709833299000,0],[1709833300000,0],[1709833301000,0],[1709833302000,0],[1709833303000,0],[1709833304000,0],[1709833305000,0],[1709833306000,0],[1709833307000,0],[1709833308000,0],[1709833309000,0],[1709833310000,0],[1709833311000,0],[1709833312000,0],[1709833313000,0],[1709833314000,0],[1709833315000,0],[1709833316000,0],[1709833317000,0],[1709833318000,0],[1709833319000,0],[1709833320000,0],[1709833321000,0],[1709833322000,0],[1709833323000,0],[1709833324000,0],[1709833325000,0],[1709833326000,0],[1709833327000,0],[1709833328000,0],[1709833329000,0],[1709833330000,0],[1709833331000,0],[1709833332000,0],[1709833333000,0],[1709833334000,0],[1709833335000,0],[1709833336000,0],[1709833337000,0],[1709833338000,0],[1709833339000,0],[1709833340000,0],[1709833341000,0],[1709833342000,0],[1709833343000,0],[1709833344000,0],[1709833345000,0],[1709833346000,0],[1709833347000,0],[1709833348000,0],[1709833349000,0],[1709833350000,0],[1709833351000,0],[1709833352000,0],[1709833353000,0],[1709833354000,0],[1709833355000,0],[1709833356000,0],[1709833357000,0],[1709833358000,0],[1709833359000,0],[1709833360000,0],[1709833361000,0],[1709833362000,0],[1709833363000,0],[1709833364000,0],[1709833365000,0],[1709833366000,0],[1709833367000,0],[1709833368000,0],[1709833369000,0],[1709833370000,0],[1709833371000,0],[1709833372000,0],[1709833373000,0],[1709833374000,0],[1709833375000,0],[1709833376000,0],[1709833377000,0],[1709833378000,0],[1709833379000,0],[1709833380000,0],[1709833381000,0],[1709833382000,0],[1709833383000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00FF00',
name: 'validação concorrência saldo - 0',
data: [
[1709833138000,0],[1709833139000,0],[1709833140000,0],[1709833141000,1],[1709833142000,0],[1709833143000,0],[1709833144000,0],[1709833145000,0],[1709833146000,0],[1709833147000,0],[1709833148000,0],[1709833149000,0],[1709833150000,0],[1709833151000,0],[1709833152000,0],[1709833153000,0],[1709833154000,0],[1709833155000,0],[1709833156000,0],[1709833157000,0],[1709833158000,0],[1709833159000,0],[1709833160000,0],[1709833161000,0],[1709833162000,0],[1709833163000,0],[1709833164000,0],[1709833165000,0],[1709833166000,0],[1709833167000,0],[1709833168000,0],[1709833169000,0],[1709833170000,0],[1709833171000,0],[1709833172000,0],[1709833173000,0],[1709833174000,0],[1709833175000,0],[1709833176000,0],[1709833177000,0],[1709833178000,0],[1709833179000,0],[1709833180000,0],[1709833181000,0],[1709833182000,0],[1709833183000,0],[1709833184000,0],[1709833185000,0],[1709833186000,0],[1709833187000,0],[1709833188000,0],[1709833189000,0],[1709833190000,0],[1709833191000,0],[1709833192000,0],[1709833193000,0],[1709833194000,0],[1709833195000,0],[1709833196000,0],[1709833197000,0],[1709833198000,0],[1709833199000,0],[1709833200000,0],[1709833201000,0],[1709833202000,0],[1709833203000,0],[1709833204000,0],[1709833205000,0],[1709833206000,0],[1709833207000,0],[1709833208000,0],[1709833209000,0],[1709833210000,0],[1709833211000,0],[1709833212000,0],[1709833213000,0],[1709833214000,0],[1709833215000,0],[1709833216000,0],[1709833217000,0],[1709833218000,0],[1709833219000,0],[1709833220000,0],[1709833221000,0],[1709833222000,0],[1709833223000,0],[1709833224000,0],[1709833225000,0],[1709833226000,0],[1709833227000,0],[1709833228000,0],[1709833229000,0],[1709833230000,0],[1709833231000,0],[1709833232000,0],[1709833233000,0],[1709833234000,0],[1709833235000,0],[1709833236000,0],[1709833237000,0],[1709833238000,0],[1709833239000,0],[1709833240000,0],[1709833241000,0],[1709833242000,0],[1709833243000,0],[1709833244000,0],[1709833245000,0],[1709833246000,0],[1709833247000,0],[1709833248000,0],[1709833249000,0],[1709833250000,0],[1709833251000,0],[1709833252000,0],[1709833253000,0],[1709833254000,0],[1709833255000,0],[1709833256000,0],[1709833257000,0],[1709833258000,0],[1709833259000,0],[1709833260000,0],[1709833261000,0],[1709833262000,0],[1709833263000,0],[1709833264000,0],[1709833265000,0],[1709833266000,0],[1709833267000,0],[1709833268000,0],[1709833269000,0],[1709833270000,0],[1709833271000,0],[1709833272000,0],[1709833273000,0],[1709833274000,0],[1709833275000,0],[1709833276000,0],[1709833277000,0],[1709833278000,0],[1709833279000,0],[1709833280000,0],[1709833281000,0],[1709833282000,0],[1709833283000,0],[1709833284000,0],[1709833285000,0],[1709833286000,0],[1709833287000,0],[1709833288000,0],[1709833289000,0],[1709833290000,0],[1709833291000,0],[1709833292000,0],[1709833293000,0],[1709833294000,0],[1709833295000,0],[1709833296000,0],[1709833297000,0],[1709833298000,0],[1709833299000,0],[1709833300000,0],[1709833301000,0],[1709833302000,0],[1709833303000,0],[1709833304000,0],[1709833305000,0],[1709833306000,0],[1709833307000,0],[1709833308000,0],[1709833309000,0],[1709833310000,0],[1709833311000,0],[1709833312000,0],[1709833313000,0],[1709833314000,0],[1709833315000,0],[1709833316000,0],[1709833317000,0],[1709833318000,0],[1709833319000,0],[1709833320000,0],[1709833321000,0],[1709833322000,0],[1709833323000,0],[1709833324000,0],[1709833325000,0],[1709833326000,0],[1709833327000,0],[1709833328000,0],[1709833329000,0],[1709833330000,0],[1709833331000,0],[1709833332000,0],[1709833333000,0],[1709833334000,0],[1709833335000,0],[1709833336000,0],[1709833337000,0],[1709833338000,0],[1709833339000,0],[1709833340000,0],[1709833341000,0],[1709833342000,0],[1709833343000,0],[1709833344000,0],[1709833345000,0],[1709833346000,0],[1709833347000,0],[1709833348000,0],[1709833349000,0],[1709833350000,0],[1709833351000,0],[1709833352000,0],[1709833353000,0],[1709833354000,0],[1709833355000,0],[1709833356000,0],[1709833357000,0],[1709833358000,0],[1709833359000,0],[1709833360000,0],[1709833361000,0],[1709833362000,0],[1709833363000,0],[1709833364000,0],[1709833365000,0],[1709833366000,0],[1709833367000,0],[1709833368000,0],[1709833369000,0],[1709833370000,0],[1709833371000,0],[1709833372000,0],[1709833373000,0],[1709833374000,0],[1709833375000,0],[1709833376000,0],[1709833377000,0],[1709833378000,0],[1709833379000,0],[1709833380000,0],[1709833381000,0],[1709833382000,0],[1709833383000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#9D00FF',
name: 'validação concorrência transações - c',
data: [
[1709833138000,0],[1709833139000,0],[1709833140000,23],[1709833141000,25],[1709833142000,0],[1709833143000,0],[1709833144000,0],[1709833145000,0],[1709833146000,0],[1709833147000,0],[1709833148000,0],[1709833149000,0],[1709833150000,0],[1709833151000,0],[1709833152000,0],[1709833153000,0],[1709833154000,0],[1709833155000,0],[1709833156000,0],[1709833157000,0],[1709833158000,0],[1709833159000,0],[1709833160000,0],[1709833161000,0],[1709833162000,0],[1709833163000,0],[1709833164000,0],[1709833165000,0],[1709833166000,0],[1709833167000,0],[1709833168000,0],[1709833169000,0],[1709833170000,0],[1709833171000,0],[1709833172000,0],[1709833173000,0],[1709833174000,0],[1709833175000,0],[1709833176000,0],[1709833177000,0],[1709833178000,0],[1709833179000,0],[1709833180000,0],[1709833181000,0],[1709833182000,0],[1709833183000,0],[1709833184000,0],[1709833185000,0],[1709833186000,0],[1709833187000,0],[1709833188000,0],[1709833189000,0],[1709833190000,0],[1709833191000,0],[1709833192000,0],[1709833193000,0],[1709833194000,0],[1709833195000,0],[1709833196000,0],[1709833197000,0],[1709833198000,0],[1709833199000,0],[1709833200000,0],[1709833201000,0],[1709833202000,0],[1709833203000,0],[1709833204000,0],[1709833205000,0],[1709833206000,0],[1709833207000,0],[1709833208000,0],[1709833209000,0],[1709833210000,0],[1709833211000,0],[1709833212000,0],[1709833213000,0],[1709833214000,0],[1709833215000,0],[1709833216000,0],[1709833217000,0],[1709833218000,0],[1709833219000,0],[1709833220000,0],[1709833221000,0],[1709833222000,0],[1709833223000,0],[1709833224000,0],[1709833225000,0],[1709833226000,0],[1709833227000,0],[1709833228000,0],[1709833229000,0],[1709833230000,0],[1709833231000,0],[1709833232000,0],[1709833233000,0],[1709833234000,0],[1709833235000,0],[1709833236000,0],[1709833237000,0],[1709833238000,0],[1709833239000,0],[1709833240000,0],[1709833241000,0],[1709833242000,0],[1709833243000,0],[1709833244000,0],[1709833245000,0],[1709833246000,0],[1709833247000,0],[1709833248000,0],[1709833249000,0],[1709833250000,0],[1709833251000,0],[1709833252000,0],[1709833253000,0],[1709833254000,0],[1709833255000,0],[1709833256000,0],[1709833257000,0],[1709833258000,0],[1709833259000,0],[1709833260000,0],[1709833261000,0],[1709833262000,0],[1709833263000,0],[1709833264000,0],[1709833265000,0],[1709833266000,0],[1709833267000,0],[1709833268000,0],[1709833269000,0],[1709833270000,0],[1709833271000,0],[1709833272000,0],[1709833273000,0],[1709833274000,0],[1709833275000,0],[1709833276000,0],[1709833277000,0],[1709833278000,0],[1709833279000,0],[1709833280000,0],[1709833281000,0],[1709833282000,0],[1709833283000,0],[1709833284000,0],[1709833285000,0],[1709833286000,0],[1709833287000,0],[1709833288000,0],[1709833289000,0],[1709833290000,0],[1709833291000,0],[1709833292000,0],[1709833293000,0],[1709833294000,0],[1709833295000,0],[1709833296000,0],[1709833297000,0],[1709833298000,0],[1709833299000,0],[1709833300000,0],[1709833301000,0],[1709833302000,0],[1709833303000,0],[1709833304000,0],[1709833305000,0],[1709833306000,0],[1709833307000,0],[1709833308000,0],[1709833309000,0],[1709833310000,0],[1709833311000,0],[1709833312000,0],[1709833313000,0],[1709833314000,0],[1709833315000,0],[1709833316000,0],[1709833317000,0],[1709833318000,0],[1709833319000,0],[1709833320000,0],[1709833321000,0],[1709833322000,0],[1709833323000,0],[1709833324000,0],[1709833325000,0],[1709833326000,0],[1709833327000,0],[1709833328000,0],[1709833329000,0],[1709833330000,0],[1709833331000,0],[1709833332000,0],[1709833333000,0],[1709833334000,0],[1709833335000,0],[1709833336000,0],[1709833337000,0],[1709833338000,0],[1709833339000,0],[1709833340000,0],[1709833341000,0],[1709833342000,0],[1709833343000,0],[1709833344000,0],[1709833345000,0],[1709833346000,0],[1709833347000,0],[1709833348000,0],[1709833349000,0],[1709833350000,0],[1709833351000,0],[1709833352000,0],[1709833353000,0],[1709833354000,0],[1709833355000,0],[1709833356000,0],[1709833357000,0],[1709833358000,0],[1709833359000,0],[1709833360000,0],[1709833361000,0],[1709833362000,0],[1709833363000,0],[1709833364000,0],[1709833365000,0],[1709833366000,0],[1709833367000,0],[1709833368000,0],[1709833369000,0],[1709833370000,0],[1709833371000,0],[1709833372000,0],[1709833373000,0],[1709833374000,0],[1709833375000,0],[1709833376000,0],[1709833377000,0],[1709833378000,0],[1709833379000,0],[1709833380000,0],[1709833381000,0],[1709833382000,0],[1709833383000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FF00E1',
name: 'validação concorrência saldo - -25',
data: [
[1709833138000,0],[1709833139000,1],[1709833140000,1],[1709833141000,0],[1709833142000,0],[1709833143000,0],[1709833144000,0],[1709833145000,0],[1709833146000,0],[1709833147000,0],[1709833148000,0],[1709833149000,0],[1709833150000,0],[1709833151000,0],[1709833152000,0],[1709833153000,0],[1709833154000,0],[1709833155000,0],[1709833156000,0],[1709833157000,0],[1709833158000,0],[1709833159000,0],[1709833160000,0],[1709833161000,0],[1709833162000,0],[1709833163000,0],[1709833164000,0],[1709833165000,0],[1709833166000,0],[1709833167000,0],[1709833168000,0],[1709833169000,0],[1709833170000,0],[1709833171000,0],[1709833172000,0],[1709833173000,0],[1709833174000,0],[1709833175000,0],[1709833176000,0],[1709833177000,0],[1709833178000,0],[1709833179000,0],[1709833180000,0],[1709833181000,0],[1709833182000,0],[1709833183000,0],[1709833184000,0],[1709833185000,0],[1709833186000,0],[1709833187000,0],[1709833188000,0],[1709833189000,0],[1709833190000,0],[1709833191000,0],[1709833192000,0],[1709833193000,0],[1709833194000,0],[1709833195000,0],[1709833196000,0],[1709833197000,0],[1709833198000,0],[1709833199000,0],[1709833200000,0],[1709833201000,0],[1709833202000,0],[1709833203000,0],[1709833204000,0],[1709833205000,0],[1709833206000,0],[1709833207000,0],[1709833208000,0],[1709833209000,0],[1709833210000,0],[1709833211000,0],[1709833212000,0],[1709833213000,0],[1709833214000,0],[1709833215000,0],[1709833216000,0],[1709833217000,0],[1709833218000,0],[1709833219000,0],[1709833220000,0],[1709833221000,0],[1709833222000,0],[1709833223000,0],[1709833224000,0],[1709833225000,0],[1709833226000,0],[1709833227000,0],[1709833228000,0],[1709833229000,0],[1709833230000,0],[1709833231000,0],[1709833232000,0],[1709833233000,0],[1709833234000,0],[1709833235000,0],[1709833236000,0],[1709833237000,0],[1709833238000,0],[1709833239000,0],[1709833240000,0],[1709833241000,0],[1709833242000,0],[1709833243000,0],[1709833244000,0],[1709833245000,0],[1709833246000,0],[1709833247000,0],[1709833248000,0],[1709833249000,0],[1709833250000,0],[1709833251000,0],[1709833252000,0],[1709833253000,0],[1709833254000,0],[1709833255000,0],[1709833256000,0],[1709833257000,0],[1709833258000,0],[1709833259000,0],[1709833260000,0],[1709833261000,0],[1709833262000,0],[1709833263000,0],[1709833264000,0],[1709833265000,0],[1709833266000,0],[1709833267000,0],[1709833268000,0],[1709833269000,0],[1709833270000,0],[1709833271000,0],[1709833272000,0],[1709833273000,0],[1709833274000,0],[1709833275000,0],[1709833276000,0],[1709833277000,0],[1709833278000,0],[1709833279000,0],[1709833280000,0],[1709833281000,0],[1709833282000,0],[1709833283000,0],[1709833284000,0],[1709833285000,0],[1709833286000,0],[1709833287000,0],[1709833288000,0],[1709833289000,0],[1709833290000,0],[1709833291000,0],[1709833292000,0],[1709833293000,0],[1709833294000,0],[1709833295000,0],[1709833296000,0],[1709833297000,0],[1709833298000,0],[1709833299000,0],[1709833300000,0],[1709833301000,0],[1709833302000,0],[1709833303000,0],[1709833304000,0],[1709833305000,0],[1709833306000,0],[1709833307000,0],[1709833308000,0],[1709833309000,0],[1709833310000,0],[1709833311000,0],[1709833312000,0],[1709833313000,0],[1709833314000,0],[1709833315000,0],[1709833316000,0],[1709833317000,0],[1709833318000,0],[1709833319000,0],[1709833320000,0],[1709833321000,0],[1709833322000,0],[1709833323000,0],[1709833324000,0],[1709833325000,0],[1709833326000,0],[1709833327000,0],[1709833328000,0],[1709833329000,0],[1709833330000,0],[1709833331000,0],[1709833332000,0],[1709833333000,0],[1709833334000,0],[1709833335000,0],[1709833336000,0],[1709833337000,0],[1709833338000,0],[1709833339000,0],[1709833340000,0],[1709833341000,0],[1709833342000,0],[1709833343000,0],[1709833344000,0],[1709833345000,0],[1709833346000,0],[1709833347000,0],[1709833348000,0],[1709833349000,0],[1709833350000,0],[1709833351000,0],[1709833352000,0],[1709833353000,0],[1709833354000,0],[1709833355000,0],[1709833356000,0],[1709833357000,0],[1709833358000,0],[1709833359000,0],[1709833360000,0],[1709833361000,0],[1709833362000,0],[1709833363000,0],[1709833364000,0],[1709833365000,0],[1709833366000,0],[1709833367000,0],[1709833368000,0],[1709833369000,0],[1709833370000,0],[1709833371000,0],[1709833372000,0],[1709833373000,0],[1709833374000,0],[1709833375000,0],[1709833376000,0],[1709833377000,0],[1709833378000,0],[1709833379000,0],[1709833380000,0],[1709833381000,0],[1709833382000,0],[1709833383000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#AECAEB',
name: 'validação concorrência transações - d',
data: [
[1709833138000,25],[1709833139000,1],[1709833140000,0],[1709833141000,0],[1709833142000,0],[1709833143000,0],[1709833144000,0],[1709833145000,0],[1709833146000,0],[1709833147000,0],[1709833148000,0],[1709833149000,0],[1709833150000,0],[1709833151000,0],[1709833152000,0],[1709833153000,0],[1709833154000,0],[1709833155000,0],[1709833156000,0],[1709833157000,0],[1709833158000,0],[1709833159000,0],[1709833160000,0],[1709833161000,0],[1709833162000,0],[1709833163000,0],[1709833164000,0],[1709833165000,0],[1709833166000,0],[1709833167000,0],[1709833168000,0],[1709833169000,0],[1709833170000,0],[1709833171000,0],[1709833172000,0],[1709833173000,0],[1709833174000,0],[1709833175000,0],[1709833176000,0],[1709833177000,0],[1709833178000,0],[1709833179000,0],[1709833180000,0],[1709833181000,0],[1709833182000,0],[1709833183000,0],[1709833184000,0],[1709833185000,0],[1709833186000,0],[1709833187000,0],[1709833188000,0],[1709833189000,0],[1709833190000,0],[1709833191000,0],[1709833192000,0],[1709833193000,0],[1709833194000,0],[1709833195000,0],[1709833196000,0],[1709833197000,0],[1709833198000,0],[1709833199000,0],[1709833200000,0],[1709833201000,0],[1709833202000,0],[1709833203000,0],[1709833204000,0],[1709833205000,0],[1709833206000,0],[1709833207000,0],[1709833208000,0],[1709833209000,0],[1709833210000,0],[1709833211000,0],[1709833212000,0],[1709833213000,0],[1709833214000,0],[1709833215000,0],[1709833216000,0],[1709833217000,0],[1709833218000,0],[1709833219000,0],[1709833220000,0],[1709833221000,0],[1709833222000,0],[1709833223000,0],[1709833224000,0],[1709833225000,0],[1709833226000,0],[1709833227000,0],[1709833228000,0],[1709833229000,0],[1709833230000,0],[1709833231000,0],[1709833232000,0],[1709833233000,0],[1709833234000,0],[1709833235000,0],[1709833236000,0],[1709833237000,0],[1709833238000,0],[1709833239000,0],[1709833240000,0],[1709833241000,0],[1709833242000,0],[1709833243000,0],[1709833244000,0],[1709833245000,0],[1709833246000,0],[1709833247000,0],[1709833248000,0],[1709833249000,0],[1709833250000,0],[1709833251000,0],[1709833252000,0],[1709833253000,0],[1709833254000,0],[1709833255000,0],[1709833256000,0],[1709833257000,0],[1709833258000,0],[1709833259000,0],[1709833260000,0],[1709833261000,0],[1709833262000,0],[1709833263000,0],[1709833264000,0],[1709833265000,0],[1709833266000,0],[1709833267000,0],[1709833268000,0],[1709833269000,0],[1709833270000,0],[1709833271000,0],[1709833272000,0],[1709833273000,0],[1709833274000,0],[1709833275000,0],[1709833276000,0],[1709833277000,0],[1709833278000,0],[1709833279000,0],[1709833280000,0],[1709833281000,0],[1709833282000,0],[1709833283000,0],[1709833284000,0],[1709833285000,0],[1709833286000,0],[1709833287000,0],[1709833288000,0],[1709833289000,0],[1709833290000,0],[1709833291000,0],[1709833292000,0],[1709833293000,0],[1709833294000,0],[1709833295000,0],[1709833296000,0],[1709833297000,0],[1709833298000,0],[1709833299000,0],[1709833300000,0],[1709833301000,0],[1709833302000,0],[1709833303000,0],[1709833304000,0],[1709833305000,0],[1709833306000,0],[1709833307000,0],[1709833308000,0],[1709833309000,0],[1709833310000,0],[1709833311000,0],[1709833312000,0],[1709833313000,0],[1709833314000,0],[1709833315000,0],[1709833316000,0],[1709833317000,0],[1709833318000,0],[1709833319000,0],[1709833320000,0],[1709833321000,0],[1709833322000,0],[1709833323000,0],[1709833324000,0],[1709833325000,0],[1709833326000,0],[1709833327000,0],[1709833328000,0],[1709833329000,0],[1709833330000,0],[1709833331000,0],[1709833332000,0],[1709833333000,0],[1709833334000,0],[1709833335000,0],[1709833336000,0],[1709833337000,0],[1709833338000,0],[1709833339000,0],[1709833340000,0],[1709833341000,0],[1709833342000,0],[1709833343000,0],[1709833344000,0],[1709833345000,0],[1709833346000,0],[1709833347000,0],[1709833348000,0],[1709833349000,0],[1709833350000,0],[1709833351000,0],[1709833352000,0],[1709833353000,0],[1709833354000,0],[1709833355000,0],[1709833356000,0],[1709833357000,0],[1709833358000,0],[1709833359000,0],[1709833360000,0],[1709833361000,0],[1709833362000,0],[1709833363000,0],[1709833364000,0],[1709833365000,0],[1709833366000,0],[1709833367000,0],[1709833368000,0],[1709833369000,0],[1709833370000,0],[1709833371000,0],[1709833372000,0],[1709833373000,0],[1709833374000,0],[1709833375000,0],[1709833376000,0],[1709833377000,0],[1709833378000,0],[1709833379000,0],[1709833380000,0],[1709833381000,0],[1709833382000,0],[1709833383000,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: ['7', '20', '33', '46', '59', '72', '85', '98', '111', '124', '137', '150', '163', '176', '189', '202', '215', '228', '241', '254', '267', '280', '293', '306', '319', '332', '345', '358', '371', '384', '397', '410', '423', '436', '449', '462', '475', '488', '501', '514', '527', '540', '553', '566', '579', '592', '605', '618', '631', '644', '656', '669', '682', '695', '708', '721', '734', '747', '760', '773', '786', '799', '812', '825', '838', '851', '864', '877', '890', '903', '916', '929', '942', '955', '968', '981', '994', '1007', '1020', '1033', '1046', '1059', '1072', '1085', '1098', '1111', '1124', '1137', '1150', '1163', '1176', '1189', '1202', '1215', '1228', '1241', '1254', '1267', '1280', '1293'],
tickInterval: 20
},
yAxis: {
min: 0,
title: { text: 'Percentage of Requests' },
reversedStacks: false
},
tooltip: {
formatter: function() {
return '<b>'+ this.x +' ms</b><br/>'+
this.series.name +': '+ this.y +' %<br/>'+
'Total: '+ this.point.stackTotal + ' %';
}
},
plotOptions: {
series: {
groupPadding: 0,
stacking: 'normal',
shadow: true
}
},
series: [
{
type: 'column',
color: '#68b65c',
name: 'OK',
data: [
89.88,3.51,1.52,1.11,0.91,0.71,0.47,0.36,0.26,0.22,0.13,0.08,0.07,0.09,0.08,0.07,0.08,0.06,0.05,0.04,0.04,0.03,0.02,0.01,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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([[1709833138,[300,479,596,691,694,699,749,786,1176,1299]],[1709833139,null],[1709833140,[14,14,14,14,14,14,14,14,14,14]],[1709833141,[24,107,124,200,201,204,207,212,222,225]],[1709833142,[8,8,8,8,8,8,8,8,8,8]],[1709833143,[6,23,101,189,193,199,208,233,283,285]],[1709833144,[3,9,82,96,98,99,127,181,185,187]],[1709833145,[8,9,10,12,13,15,17,19,21,22]],[1709833146,[7,8,8,14,14,15,16,18,19,20]],[1709833147,[6,7,8,11,12,12,13,17,20,21]],[1709833148,[6,8,8,9,9,9,9,11,12,13]],[1709833149,[7,7,8,9,9,9,10,11,11,11]],[1709833150,[6,7,7,7,7,8,8,9,13,14]],[1709833151,[6,7,7,8,9,10,11,12,14,15]],[1709833152,[6,7,8,8,9,10,12,14,27,32]],[1709833153,[6,7,7,9,10,11,11,16,20,22]],[1709833154,[6,7,7,9,9,11,12,13,51,68]],[1709833155,[5,6,7,8,8,9,9,11,14,15]],[1709833156,[5,6,6,8,8,8,10,11,14,16]],[1709833157,[5,6,7,7,7,8,8,9,10,12]],[1709833158,[5,6,7,8,8,8,9,9,10,11]],[1709833159,[4,5,6,9,9,9,10,12,15,18]],[1709833160,[4,5,6,6,6,6,7,8,11,13]],[1709833161,[4,5,5,6,6,6,7,7,15,21]],[1709833162,[4,5,5,6,6,8,8,14,45,66]],[1709833163,[4,5,5,6,6,6,8,8,10,10]],[1709833164,[4,5,5,6,8,8,10,14,31,50]],[1709833165,[4,5,5,7,7,8,10,11,12,13]],[1709833166,[4,5,5,6,6,7,7,8,11,15]],[1709833167,[4,5,6,7,7,8,8,9,17,18]],[1709833168,[4,5,5,7,7,7,9,12,55,64]],[1709833169,[3,5,5,6,6,7,7,9,23,43]],[1709833170,[4,4,5,6,6,6,7,12,19,21]],[1709833171,[3,5,6,7,8,12,26,42,62,73]],[1709833172,[4,4,5,6,7,7,11,13,48,50]],[1709833173,[3,5,5,5,6,6,7,8,38,52]],[1709833174,[3,4,4,5,5,5,6,6,14,16]],[1709833175,[3,4,4,5,5,6,12,40,53,66]],[1709833176,[3,4,5,6,6,7,10,14,23,26]],[1709833177,[3,4,4,5,5,5,6,6,9,11]],[1709833178,[3,4,4,5,6,7,9,11,40,53]],[1709833179,[3,4,5,8,10,20,35,55,68,70]],[1709833180,[2,4,5,15,23,35,55,64,84,109]],[1709833181,[2,4,4,6,7,18,29,42,69,76]],[1709833182,[3,4,12,40,46,53,58,69,84,87]],[1709833183,[2,4,4,5,5,6,6,7,21,43]],[1709833184,[2,4,4,5,5,5,6,7,20,23]],[1709833185,[2,4,4,11,18,25,37,48,60,66]],[1709833186,[2,4,4,4,4,5,5,6,8,12]],[1709833187,[2,3,4,4,5,6,8,13,19,24]],[1709833188,[3,3,4,6,7,13,24,44,68,73]],[1709833189,[3,4,5,30,38,49,62,71,96,110]],[1709833190,[3,3,4,6,8,20,32,56,68,70]],[1709833191,[2,3,4,4,5,5,5,6,9,11]],[1709833192,[2,3,4,5,5,7,15,30,54,61]],[1709833193,[2,4,4,5,6,6,7,10,22,40]],[1709833194,[2,3,4,5,5,6,6,7,9,12]],[1709833195,[2,3,4,5,5,6,8,14,37,48]],[1709833196,[1,3,3,4,4,5,5,6,30,44]],[1709833197,[2,3,4,4,4,5,5,7,22,35]],[1709833198,[2,3,4,5,6,7,11,33,56,61]],[1709833199,[2,3,4,6,7,12,25,45,69,78]],[1709833200,[2,3,4,34,48,55,67,81,106,113]],[1709833201,[2,3,4,5,6,7,11,20,43,50]],[1709833202,[2,3,5,11,33,54,74,90,118,138]],[1709833203,[2,4,5,18,28,38,51,65,80,86]],[1709833204,[3,8,40,69,76,83,94,117,140,147]],[1709833205,[2,8,43,80,87,96,103,111,126,133]],[1709833206,[2,3,5,43,51,63,76,92,115,125]],[1709833207,[1,3,9,50,61,69,86,111,130,141]],[1709833208,[1,3,4,10,14,19,34,44,62,69]],[1709833209,[2,3,3,5,6,10,26,42,58,68]],[1709833210,[2,3,5,27,34,44,52,67,75,86]],[1709833211,[3,72,116,155,161,175,208,225,253,264]],[1709833212,[1,3,13,46,56,70,77,98,128,191]],[1709833213,[2,4,11,81,102,114,132,145,169,187]],[1709833214,[1,4,33,81,91,104,119,131,159,170]],[1709833215,[2,4,31,134,173,211,226,249,266,282]],[1709833216,[2,3,4,5,6,8,17,37,58,68]],[1709833217,[2,3,4,15,24,30,41,55,64,69]],[1709833218,[1,3,3,4,4,4,6,9,29,44]],[1709833219,[1,3,3,5,7,11,25,42,62,69]],[1709833220,[1,3,3,5,6,9,17,44,66,76]],[1709833221,[1,3,3,4,4,5,7,49,73,80]],[1709833222,[1,3,3,4,5,5,8,14,36,54]],[1709833223,[2,3,3,4,5,6,9,25,54,61]],[1709833224,[2,3,3,4,4,4,6,8,51,66]],[1709833225,[1,3,4,5,6,7,11,36,62,66]],[1709833226,[1,3,3,4,4,4,5,5,9,14]],[1709833227,[2,3,3,4,4,5,6,13,45,59]],[1709833228,[2,3,4,24,34,45,57,69,81,89]],[1709833229,[2,3,26,70,80,95,122,141,175,188]],[1709833230,[1,3,3,11,16,22,32,48,62,69]],[1709833231,[2,3,4,42,65,75,98,122,143,156]],[1709833232,[67,129,197,252,265,275,295,314,336,350]],[1709833233,[2,3,50,138,171,210,261,286,311,327]],[1709833234,[2,3,10,46,54,61,69,81,98,105]],[1709833235,[2,3,10,143,175,189,202,220,240,250]],[1709833236,[1,3,4,36,71,106,156,191,236,246]],[1709833237,[1,3,3,5,5,7,14,19,43,57]],[1709833238,[1,2,3,4,4,4,5,6,11,15]],[1709833239,[1,2,3,4,4,4,5,6,12,22]],[1709833240,[2,2,7,45,53,61,68,79,108,123]],[1709833241,[2,2,3,4,6,13,24,46,62,67]],[1709833242,[1,2,3,3,3,4,4,6,10,15]],[1709833243,[2,3,3,11,17,26,50,70,88,99]],[1709833244,[2,3,3,5,8,13,25,41,63,69]],[1709833245,[2,3,4,15,27,48,70,95,127,135]],[1709833246,[1,3,3,5,6,9,21,40,68,96]],[1709833247,[1,3,5,35,43,50,59,67,79,89]],[1709833248,[1,2,3,4,5,5,7,15,27,33]],[1709833249,[1,2,3,4,5,5,7,8,11,14]],[1709833250,[1,2,3,5,13,29,44,61,83,95]],[1709833251,[2,2,3,3,3,3,4,4,6,9]],[1709833252,[1,3,3,12,19,26,34,49,65,77]],[1709833253,[1,2,3,15,20,31,49,68,91,102]],[1709833254,[1,2,3,4,4,5,6,9,14,15]],[1709833255,[2,3,3,4,4,4,5,6,7,10]],[1709833256,[1,2,4,4,5,5,6,13,21,26]],[1709833257,[2,3,4,5,5,6,6,7,9,11]],[1709833258,[1,2,4,5,6,7,11,20,30,41]],[1709833259,[1,3,4,5,5,6,6,15,26,32]],[1709833260,[2,4,5,13,20,31,44,53,63,67]],[1709833261,[2,4,4,5,6,7,10,16,23,26]],[1709833262,[1,3,4,5,5,6,9,13,24,29]],[1709833263,[1,2,3,4,5,5,6,10,13,15]],[1709833264,[2,3,4,5,7,9,16,26,30,33]],[1709833265,[2,3,4,5,5,6,7,9,15,21]],[1709833266,[2,3,4,6,6,8,10,22,36,40]],[1709833267,[1,2,3,4,5,5,6,10,18,25]],[1709833268,[2,4,4,5,6,6,8,25,50,58]],[1709833269,[2,3,4,12,17,25,47,72,94,101]],[1709833270,[2,4,4,5,5,6,6,7,9,11]],[1709833271,[1,2,3,4,5,6,7,12,17,18]],[1709833272,[1,4,4,5,5,5,6,6,8,11]],[1709833273,[1,2,3,4,4,5,6,11,23,27]],[1709833274,[2,3,4,5,5,5,6,6,13,18]],[1709833275,[2,2,2,4,4,4,4,5,13,17]],[1709833276,[1,4,4,5,6,6,6,7,8,9]],[1709833277,[1,2,3,4,4,4,5,6,10,15]],[1709833278,[2,4,4,6,6,9,15,25,46,51]],[1709833279,[1,2,3,3,4,4,4,5,9,17]],[1709833280,[2,4,4,6,6,8,17,28,39,43]],[1709833281,[1,3,3,5,5,5,11,22,41,83]],[1709833282,[1,4,4,6,6,6,9,20,28,34]],[1709833283,[1,2,3,7,10,17,30,58,84,86]],[1709833284,[1,3,4,6,6,7,10,23,42,48]],[1709833285,[1,3,3,4,4,4,5,6,8,10]],[1709833286,[1,3,4,5,5,6,6,7,39,51]],[1709833287,[2,3,3,4,5,5,6,8,24,48]],[1709833288,[2,3,4,6,6,7,13,19,38,44]],[1709833289,[1,2,4,6,8,12,19,45,65,71]],[1709833290,[2,3,5,9,19,31,51,79,101,114]],[1709833291,[2,3,4,5,5,6,6,8,17,22]],[1709833292,[1,3,4,6,7,8,10,13,17,18]],[1709833293,[1,3,3,4,5,5,6,7,10,13]],[1709833294,[1,3,4,5,6,6,7,12,22,25]],[1709833295,[2,3,4,5,5,5,6,6,9,11]],[1709833296,[1,2,3,4,5,7,10,16,19,20]],[1709833297,[1,2,3,4,4,5,6,9,48,60]],[1709833298,[1,2,3,4,4,4,5,6,8,10]],[1709833299,[1,3,4,6,6,8,14,19,27,32]],[1709833300,[1,2,3,4,4,5,8,14,34,47]],[1709833301,[2,3,4,6,7,12,18,24,32,37]],[1709833302,[2,3,3,4,4,5,6,8,11,13]],[1709833303,[2,3,4,5,6,6,7,12,24,27]],[1709833304,[2,2,3,4,4,4,5,14,31,36]],[1709833305,[2,3,4,5,6,6,7,10,43,57]],[1709833306,[1,2,3,4,4,4,6,14,25,31]],[1709833307,[1,2,3,5,5,6,7,9,11,14]],[1709833308,[1,2,3,4,4,5,7,15,18,22]],[1709833309,[1,3,3,5,5,6,10,15,25,30]],[1709833310,[1,2,3,4,4,4,5,6,10,13]],[1709833311,[1,2,3,4,5,5,6,9,16,19]],[1709833312,[1,3,3,4,4,4,4,5,7,10]],[1709833313,[1,2,3,4,4,4,4,5,6,10]],[1709833314,[1,2,2,3,3,3,3,4,7,9]],[1709833315,[1,2,4,16,31,54,81,108,121,125]],[1709833316,[1,3,3,6,10,25,37,50,89,95]],[1709833317,[2,3,4,6,6,11,28,48,75,86]],[1709833318,[1,3,4,5,5,6,6,8,11,14]],[1709833319,[1,4,5,6,6,7,9,15,25,29]],[1709833320,[1,2,3,4,4,5,5,6,10,18]],[1709833321,[1,3,4,5,5,6,6,10,14,22]],[1709833322,[1,2,3,4,5,5,6,7,10,13]],[1709833323,[3,4,5,7,7,11,14,22,33,43]],[1709833324,[1,3,3,4,5,6,13,19,24,26]],[1709833325,[3,4,5,6,6,7,7,12,27,35]],[1709833326,[2,3,4,7,10,15,19,23,33,41]],[1709833327,[3,4,5,6,6,7,8,10,23,29]],[1709833328,[1,3,3,4,4,4,5,6,7,9]],[1709833329,[1,4,5,6,6,7,8,10,19,33]],[1709833330,[1,3,3,5,5,5,6,9,22,28]],[1709833331,[1,4,5,6,6,8,12,16,19,21]],[1709833332,[1,3,3,4,4,5,5,6,8,10]],[1709833333,[1,3,4,5,5,5,6,6,7,8]],[1709833334,[2,3,4,5,6,7,9,14,20,24]],[1709833335,[1,4,4,8,15,28,56,80,100,107]],[1709833336,[1,3,4,5,5,6,7,10,15,17]],[1709833337,[1,3,4,4,5,5,6,10,17,23]],[1709833338,[1,3,4,5,5,5,6,11,25,34]],[1709833339,[1,3,4,5,5,6,8,13,24,34]],[1709833340,[1,3,3,4,4,4,5,5,6,8]],[1709833341,[2,3,4,6,6,7,10,12,14,17]],[1709833342,[1,3,4,9,32,54,83,107,125,132]],[1709833343,[1,3,4,5,6,7,10,16,24,30]],[1709833344,[2,3,4,5,5,5,6,7,10,14]],[1709833345,[1,3,4,5,6,7,15,22,31,34]],[1709833346,[1,2,3,5,5,6,6,7,11,15]],[1709833347,[1,2,3,5,7,10,16,39,58,65]],[1709833348,[1,3,4,4,5,5,5,7,9,12]],[1709833349,[2,3,3,4,5,5,7,9,14,17]],[1709833350,[1,3,4,6,6,6,8,11,15,18]],[1709833351,[1,2,3,4,4,4,6,9,13,17]],[1709833352,[2,4,4,6,6,7,9,12,16,20]],[1709833353,[1,3,3,4,4,5,5,6,16,23]],[1709833354,[2,4,5,6,6,7,8,10,20,23]],[1709833355,[2,3,3,4,4,5,5,6,8,13]],[1709833356,[1,3,5,30,39,57,78,101,119,125]],[1709833357,[2,2,3,5,6,8,9,12,16,19]],[1709833358,[1,3,4,5,6,6,7,9,13,19]],[1709833359,[1,2,3,4,4,4,5,6,7,9]],[1709833360,[1,3,4,5,5,6,6,8,10,13]],[1709833361,[1,3,3,4,4,5,6,9,18,23]],[1709833362,[1,3,4,5,5,5,6,6,8,9]],[1709833363,[1,3,3,4,4,5,7,10,15,16]],[1709833364,[1,3,4,5,5,5,6,6,9,11]],[1709833365,[1,2,3,4,4,4,5,14,20,22]],[1709833366,[2,3,4,5,5,6,6,6,8,10]],[1709833367,[1,2,3,4,5,5,6,12,22,25]],[1709833368,[1,2,3,4,4,4,5,6,9,11]],[1709833369,[1,2,3,4,4,4,5,7,16,19]],[1709833370,[1,3,4,5,5,6,7,14,19,24]],[1709833371,[1,3,3,4,4,4,5,5,6,8]],[1709833372,[1,3,4,5,6,6,10,15,31,36]],[1709833373,[1,2,3,4,4,5,7,14,26,32]],[1709833374,[1,2,3,4,4,6,8,12,20,24]],[1709833375,[1,2,3,4,5,6,8,11,14,20]],[1709833376,[1,2,3,4,4,5,6,10,17,21]],[1709833377,[1,2,3,4,4,5,5,6,9,11]],[1709833378,[1,2,3,4,4,5,5,7,8,11]],[1709833379,[1,2,4,5,5,6,7,13,24,29]],[1709833380,[1,3,4,5,5,6,6,8,15,23]],[1709833381,[1,3,5,9,12,26,52,78,96,102]],[1709833382,[2,4,5,9,18,27,48,68,101,115]],[1709833383,[2,3,4,4,4,5,5,6,10,15]]]);
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([[1709833138,[25,25,0]],[1709833139,[0,0,0]],[1709833140,[1,1,0]],[1709833141,[25,25,0]],[1709833142,[1,1,0]],[1709833143,[35,35,0]],[1709833144,[39,39,0]],[1709833145,[6,6,0]],[1709833146,[9,9,0]],[1709833147,[11,11,0]],[1709833148,[13,13,0]],[1709833149,[18,18,0]],[1709833150,[19,19,0]],[1709833151,[24,24,0]],[1709833152,[26,26,0]],[1709833153,[27,27,0]],[1709833154,[32,32,0]],[1709833155,[34,34,0]],[1709833156,[37,37,0]],[1709833157,[39,39,0]],[1709833158,[43,43,0]],[1709833159,[44,44,0]],[1709833160,[48,48,0]],[1709833161,[50,50,0]],[1709833162,[54,54,0]],[1709833163,[56,56,0]],[1709833164,[61,61,0]],[1709833165,[61,61,0]],[1709833166,[65,65,0]],[1709833167,[67,67,0]],[1709833168,[70,70,0]],[1709833169,[74,74,0]],[1709833170,[76,76,0]],[1709833171,[80,80,0]],[1709833172,[81,81,0]],[1709833173,[84,84,0]],[1709833174,[87,87,0]],[1709833175,[91,91,0]],[1709833176,[92,92,0]],[1709833177,[96,96,0]],[1709833178,[98,98,0]],[1709833179,[101,101,0]],[1709833180,[105,105,0]],[1709833181,[107,107,0]],[1709833182,[110,110,0]],[1709833183,[113,113,0]],[1709833184,[116,116,0]],[1709833185,[118,118,0]],[1709833186,[121,121,0]],[1709833187,[124,124,0]],[1709833188,[126,126,0]],[1709833189,[129,129,0]],[1709833190,[133,133,0]],[1709833191,[134,134,0]],[1709833192,[138,138,0]],[1709833193,[141,141,0]],[1709833194,[143,143,0]],[1709833195,[146,146,0]],[1709833196,[149,149,0]],[1709833197,[152,152,0]],[1709833198,[154,154,0]],[1709833199,[158,158,0]],[1709833200,[160,160,0]],[1709833201,[164,164,0]],[1709833202,[165,165,0]],[1709833203,[170,170,0]],[1709833204,[172,172,0]],[1709833205,[174,174,0]],[1709833206,[176,176,0]],[1709833207,[181,181,0]],[1709833208,[183,183,0]],[1709833209,[185,185,0]],[1709833210,[189,189,0]],[1709833211,[191,191,0]],[1709833212,[194,194,0]],[1709833213,[196,196,0]],[1709833214,[200,200,0]],[1709833215,[202,202,0]],[1709833216,[206,206,0]],[1709833217,[207,207,0]],[1709833218,[211,211,0]],[1709833219,[213,213,0]],[1709833220,[217,217,0]],[1709833221,[219,219,0]],[1709833222,[222,222,0]],[1709833223,[226,226,0]],[1709833224,[228,228,0]],[1709833225,[230,230,0]],[1709833226,[233,233,0]],[1709833227,[236,236,0]],[1709833228,[239,239,0]],[1709833229,[242,242,0]],[1709833230,[244,244,0]],[1709833231,[248,248,0]],[1709833232,[251,251,0]],[1709833233,[252,252,0]],[1709833234,[256,256,0]],[1709833235,[259,259,0]],[1709833236,[262,262,0]],[1709833237,[264,264,0]],[1709833238,[267,267,0]],[1709833239,[269,269,0]],[1709833240,[272,272,0]],[1709833241,[276,276,0]],[1709833242,[278,278,0]],[1709833243,[282,282,0]],[1709833244,[284,284,0]],[1709833245,[286,286,0]],[1709833246,[290,290,0]],[1709833247,[291,291,0]],[1709833248,[296,296,0]],[1709833249,[298,298,0]],[1709833250,[300,300,0]],[1709833251,[304,304,0]],[1709833252,[306,306,0]],[1709833253,[309,309,0]],[1709833254,[312,312,0]],[1709833255,[315,315,0]],[1709833256,[317,317,0]],[1709833257,[321,321,0]],[1709833258,[322,322,0]],[1709833259,[327,327,0]],[1709833260,[329,329,0]],[1709833261,[332,332,0]],[1709833262,[335,335,0]],[1709833263,[337,337,0]],[1709833264,[341,341,0]],[1709833265,[340,340,0]],[1709833266,[339,339,0]],[1709833267,[341,341,0]],[1709833268,[340,340,0]],[1709833269,[340,340,0]],[1709833270,[340,340,0]],[1709833271,[340,340,0]],[1709833272,[340,340,0]],[1709833273,[340,340,0]],[1709833274,[340,340,0]],[1709833275,[340,340,0]],[1709833276,[340,340,0]],[1709833277,[340,340,0]],[1709833278,[339,339,0]],[1709833279,[341,341,0]],[1709833280,[340,340,0]],[1709833281,[340,340,0]],[1709833282,[340,340,0]],[1709833283,[339,339,0]],[1709833284,[341,341,0]],[1709833285,[340,340,0]],[1709833286,[340,340,0]],[1709833287,[340,340,0]],[1709833288,[340,340,0]],[1709833289,[340,340,0]],[1709833290,[340,340,0]],[1709833291,[340,340,0]],[1709833292,[340,340,0]],[1709833293,[340,340,0]],[1709833294,[340,340,0]],[1709833295,[340,340,0]],[1709833296,[339,339,0]],[1709833297,[340,340,0]],[1709833298,[341,341,0]],[1709833299,[339,339,0]],[1709833300,[341,341,0]],[1709833301,[340,340,0]],[1709833302,[340,340,0]],[1709833303,[340,340,0]],[1709833304,[340,340,0]],[1709833305,[340,340,0]],[1709833306,[340,340,0]],[1709833307,[340,340,0]],[1709833308,[340,340,0]],[1709833309,[339,339,0]],[1709833310,[341,341,0]],[1709833311,[340,340,0]],[1709833312,[340,340,0]],[1709833313,[339,339,0]],[1709833314,[340,340,0]],[1709833315,[341,341,0]],[1709833316,[340,340,0]],[1709833317,[340,340,0]],[1709833318,[340,340,0]],[1709833319,[340,340,0]],[1709833320,[339,339,0]],[1709833321,[340,340,0]],[1709833322,[341,341,0]],[1709833323,[340,340,0]],[1709833324,[340,340,0]],[1709833325,[340,340,0]],[1709833326,[340,340,0]],[1709833327,[340,340,0]],[1709833328,[340,340,0]],[1709833329,[340,340,0]],[1709833330,[340,340,0]],[1709833331,[340,340,0]],[1709833332,[340,340,0]],[1709833333,[340,340,0]],[1709833334,[340,340,0]],[1709833335,[340,340,0]],[1709833336,[340,340,0]],[1709833337,[339,339,0]],[1709833338,[341,341,0]],[1709833339,[339,339,0]],[1709833340,[341,341,0]],[1709833341,[340,340,0]],[1709833342,[340,340,0]],[1709833343,[339,339,0]],[1709833344,[341,341,0]],[1709833345,[340,340,0]],[1709833346,[339,339,0]],[1709833347,[340,340,0]],[1709833348,[341,341,0]],[1709833349,[340,340,0]],[1709833350,[339,339,0]],[1709833351,[341,341,0]],[1709833352,[339,339,0]],[1709833353,[341,341,0]],[1709833354,[340,340,0]],[1709833355,[340,340,0]],[1709833356,[340,340,0]],[1709833357,[340,340,0]],[1709833358,[340,340,0]],[1709833359,[340,340,0]],[1709833360,[340,340,0]],[1709833361,[340,340,0]],[1709833362,[340,340,0]],[1709833363,[340,340,0]],[1709833364,[340,340,0]],[1709833365,[340,340,0]],[1709833366,[340,340,0]],[1709833367,[339,339,0]],[1709833368,[340,340,0]],[1709833369,[341,341,0]],[1709833370,[340,340,0]],[1709833371,[340,340,0]],[1709833372,[340,340,0]],[1709833373,[340,340,0]],[1709833374,[340,340,0]],[1709833375,[340,340,0]],[1709833376,[340,340,0]],[1709833377,[340,340,0]],[1709833378,[340,340,0]],[1709833379,[340,340,0]],[1709833380,[340,340,0]],[1709833381,[340,340,0]],[1709833382,[339,339,0]],[1709833383,[504,504,0]]]);
var requestsChart = new Highcharts.StockChart({
chart: {
renderTo: 'requests',
zoomType: 'x',
marginBottom: 60
},
credits: { enabled: false },
legend: {
enabled: true,
floating: true,
y: -65,
borderWidth: 0,
itemStyle: { fontWeight: "normal" },
symbolRadius: 0
},
title: { text: 'A title to let highcharts reserve the place for the title set later' },
navigator: {
maskInside: false
},
rangeSelector: {
buttonSpacing: 0,
buttonTheme: {
fill: '#CFC9C6',
padding: 1,
stroke: '#000000',
'stroke-width': 0.25,
style: {
color: '#000000',
fontWeight: 'bold',
},
states: {
stroke: '#000000',
'stroke-width': 0.25,
hover: {
fill: '#92918C',
style: { color: 'black' }
},
select: {
fill: '#FFA900',
style: { color: 'white' }
}
}
},
buttons : [
{
type : 'minute',
count : 1,
text : '1m'
}, {
type : 'minute',
count : 10,
text : '10m'
}, {
type : 'hour',
count : 1,
text : '1h'
}, {
type : 'all',
count : 1,
text : 'All'
}
],
selected : 3,
inputEnabled : false
},
plotOptions: {
series: {
dataGrouping: { enabled: false }
},
area: {
stacking: 'normal'
}
},
xAxis: {
type: 'datetime',
ordinal: false,
maxZoom: 10000 // three days
},
yAxis:[