-
Notifications
You must be signed in to change notification settings - Fork 923
/
Copy pathindex.html
1173 lines (1104 loc) · 93.2 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-02 01:59:38 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 - hallexcosta-hyperf">
<span class="simulation-information-label">Description: </span>
<span>Rinha de Backend - 2024/Q1: Crébito - hallexcosta-hyperf</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: [
[1709344779000,0],[1709344780000,0],[1709344781000,0],[1709344782000,0],[1709344783000,1],[1709344784000,2],[1709344785000,2],[1709344786000,4],[1709344787000,4],[1709344788000,5],[1709344789000,6],[1709344790000,7],[1709344791000,8],[1709344792000,8],[1709344793000,10],[1709344794000,10],[1709344795000,12],[1709344796000,12],[1709344797000,14],[1709344798000,14],[1709344799000,15],[1709344800000,16],[1709344801000,17],[1709344802000,17],[1709344803000,19],[1709344804000,20],[1709344805000,20],[1709344806000,22],[1709344807000,22],[1709344808000,23],[1709344809000,25],[1709344810000,25],[1709344811000,26],[1709344812000,26],[1709344813000,28],[1709344814000,29],[1709344815000,30],[1709344816000,30],[1709344817000,32],[1709344818000,32],[1709344819000,33],[1709344820000,34],[1709344821000,35],[1709344822000,36],[1709344823000,37],[1709344824000,38],[1709344825000,39],[1709344826000,39],[1709344827000,41],[1709344828000,41],[1709344829000,43],[1709344830000,43],[1709344831000,44],[1709344832000,45],[1709344833000,46],[1709344834000,47],[1709344835000,48],[1709344836000,48],[1709344837000,50],[1709344838000,50],[1709344839000,52],[1709344840000,52],[1709344841000,53],[1709344842000,55],[1709344843000,57],[1709344844000,56],[1709344845000,58],[1709344846000,59],[1709344847000,60],[1709344848000,60],[1709344849000,62],[1709344850000,61],[1709344851000,63],[1709344852000,63],[1709344853000,64],[1709344854000,65],[1709344855000,66],[1709344856000,67],[1709344857000,68],[1709344858000,68],[1709344859000,70],[1709344860000,70],[1709344861000,72],[1709344862000,72],[1709344863000,73],[1709344864000,74],[1709344865000,75],[1709344866000,76],[1709344867000,77],[1709344868000,78],[1709344869000,79],[1709344870000,79],[1709344871000,81],[1709344872000,81],[1709344873000,82],[1709344874000,83],[1709344875000,85],[1709344876000,85],[1709344877000,86],[1709344878000,86],[1709344879000,88],[1709344880000,89],[1709344881000,89],[1709344882000,91],[1709344883000,92],[1709344884000,92],[1709344885000,94],[1709344886000,94],[1709344887000,95],[1709344888000,96],[1709344889000,97],[1709344890000,97],[1709344891000,99],[1709344892000,99],[1709344893000,101],[1709344894000,101],[1709344895000,103],[1709344896000,104],[1709344897000,104],[1709344898000,106],[1709344899000,107],[1709344900000,108],[1709344901000,108],[1709344902000,110],[1709344903000,111],[1709344904000,111],[1709344905000,111],[1709344906000,111],[1709344907000,111],[1709344908000,111],[1709344909000,111],[1709344910000,111],[1709344911000,111],[1709344912000,111],[1709344913000,111],[1709344914000,111],[1709344915000,111],[1709344916000,111],[1709344917000,111],[1709344918000,113],[1709344919000,111],[1709344920000,113],[1709344921000,110],[1709344922000,111],[1709344923000,111],[1709344924000,111],[1709344925000,111],[1709344926000,111],[1709344927000,111],[1709344928000,111],[1709344929000,111],[1709344930000,111],[1709344931000,110],[1709344932000,111],[1709344933000,153],[1709344934000,196],[1709344935000,111],[1709344936000,111],[1709344937000,110],[1709344938000,111],[1709344939000,111],[1709344940000,111],[1709344941000,111],[1709344942000,111],[1709344943000,111],[1709344944000,111],[1709344945000,113],[1709344946000,111],[1709344947000,111],[1709344948000,111],[1709344949000,111],[1709344950000,111],[1709344951000,111],[1709344952000,111],[1709344953000,111],[1709344954000,111],[1709344955000,111],[1709344956000,111],[1709344957000,111],[1709344958000,111],[1709344959000,111],[1709344960000,111],[1709344961000,110],[1709344962000,110],[1709344963000,111],[1709344964000,111],[1709344965000,111],[1709344966000,111],[1709344967000,111],[1709344968000,111],[1709344969000,110],[1709344970000,111],[1709344971000,111],[1709344972000,111],[1709344973000,113],[1709344974000,110],[1709344975000,111],[1709344976000,111],[1709344977000,111],[1709344978000,111],[1709344979000,112],[1709344980000,110],[1709344981000,111],[1709344982000,111],[1709344983000,110],[1709344984000,111],[1709344985000,110],[1709344986000,110],[1709344987000,111],[1709344988000,110],[1709344989000,111],[1709344990000,111],[1709344991000,111],[1709344992000,111],[1709344993000,111],[1709344994000,112],[1709344995000,111],[1709344996000,111],[1709344997000,111],[1709344998000,111],[1709344999000,110],[1709345000000,111],[1709345001000,111],[1709345002000,111],[1709345003000,111],[1709345004000,110],[1709345005000,111],[1709345006000,111],[1709345007000,111],[1709345008000,111],[1709345009000,111],[1709345010000,111],[1709345011000,111],[1709345012000,111],[1709345013000,111],[1709345014000,111],[1709345015000,110],[1709345016000,111],[1709345017000,111],[1709345018000,111],[1709345019000,111],[1709345020000,110],[1709345021000,111],[1709345022000,111],[1709345023000,108]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#68b65c',
name: 'débitos',
data: [
[1709344779000,0],[1709344780000,0],[1709344781000,0],[1709344782000,0],[1709344783000,1],[1709344784000,2],[1709344785000,4],[1709344786000,6],[1709344787000,7],[1709344788000,9],[1709344789000,11],[1709344790000,13],[1709344791000,15],[1709344792000,16],[1709344793000,19],[1709344794000,20],[1709344795000,22],[1709344796000,24],[1709344797000,25],[1709344798000,28],[1709344799000,29],[1709344800000,31],[1709344801000,33],[1709344802000,35],[1709344803000,37],[1709344804000,38],[1709344805000,40],[1709344806000,42],[1709344807000,44],[1709344808000,46],[1709344809000,47],[1709344810000,50],[1709344811000,52],[1709344812000,54],[1709344813000,56],[1709344814000,57],[1709344815000,60],[1709344816000,61],[1709344817000,62],[1709344818000,64],[1709344819000,66],[1709344820000,68],[1709344821000,69],[1709344822000,71],[1709344823000,74],[1709344824000,74],[1709344825000,77],[1709344826000,79],[1709344827000,80],[1709344828000,82],[1709344829000,84],[1709344830000,86],[1709344831000,88],[1709344832000,89],[1709344833000,92],[1709344834000,93],[1709344835000,95],[1709344836000,97],[1709344837000,98],[1709344838000,101],[1709344839000,102],[1709344840000,105],[1709344841000,107],[1709344842000,109],[1709344843000,111],[1709344844000,112],[1709344845000,114],[1709344846000,116],[1709344847000,118],[1709344848000,120],[1709344849000,121],[1709344850000,123],[1709344851000,125],[1709344852000,126],[1709344853000,128],[1709344854000,129],[1709344855000,132],[1709344856000,133],[1709344857000,135],[1709344858000,137],[1709344859000,139],[1709344860000,141],[1709344861000,142],[1709344862000,144],[1709344863000,147],[1709344864000,147],[1709344865000,150],[1709344866000,152],[1709344867000,153],[1709344868000,155],[1709344869000,158],[1709344870000,160],[1709344871000,162],[1709344872000,163],[1709344873000,166],[1709344874000,167],[1709344875000,168],[1709344876000,171],[1709344877000,172],[1709344878000,174],[1709344879000,176],[1709344880000,178],[1709344881000,179],[1709344882000,181],[1709344883000,184],[1709344884000,184],[1709344885000,186],[1709344886000,188],[1709344887000,190],[1709344888000,192],[1709344889000,193],[1709344890000,196],[1709344891000,197],[1709344892000,199],[1709344893000,201],[1709344894000,202],[1709344895000,205],[1709344896000,207],[1709344897000,208],[1709344898000,211],[1709344899000,212],[1709344900000,218],[1709344901000,216],[1709344902000,218],[1709344903000,221],[1709344904000,221],[1709344905000,221],[1709344906000,221],[1709344907000,221],[1709344908000,222],[1709344909000,220],[1709344910000,221],[1709344911000,221],[1709344912000,221],[1709344913000,221],[1709344914000,221],[1709344915000,221],[1709344916000,221],[1709344917000,221],[1709344918000,223],[1709344919000,221],[1709344920000,225],[1709344921000,221],[1709344922000,221],[1709344923000,221],[1709344924000,221],[1709344925000,221],[1709344926000,220],[1709344927000,221],[1709344928000,221],[1709344929000,221],[1709344930000,221],[1709344931000,221],[1709344932000,221],[1709344933000,309],[1709344934000,389],[1709344935000,220],[1709344936000,221],[1709344937000,220],[1709344938000,221],[1709344939000,224],[1709344940000,221],[1709344941000,222],[1709344942000,221],[1709344943000,221],[1709344944000,220],[1709344945000,222],[1709344946000,221],[1709344947000,221],[1709344948000,221],[1709344949000,221],[1709344950000,220],[1709344951000,221],[1709344952000,220],[1709344953000,221],[1709344954000,221],[1709344955000,221],[1709344956000,221],[1709344957000,221],[1709344958000,221],[1709344959000,221],[1709344960000,221],[1709344961000,221],[1709344962000,220],[1709344963000,221],[1709344964000,221],[1709344965000,221],[1709344966000,221],[1709344967000,221],[1709344968000,221],[1709344969000,221],[1709344970000,221],[1709344971000,220],[1709344972000,220],[1709344973000,222],[1709344974000,220],[1709344975000,221],[1709344976000,221],[1709344977000,221],[1709344978000,221],[1709344979000,223],[1709344980000,221],[1709344981000,221],[1709344982000,221],[1709344983000,221],[1709344984000,220],[1709344985000,221],[1709344986000,221],[1709344987000,221],[1709344988000,221],[1709344989000,221],[1709344990000,221],[1709344991000,221],[1709344992000,221],[1709344993000,221],[1709344994000,222],[1709344995000,221],[1709344996000,221],[1709344997000,221],[1709344998000,221],[1709344999000,221],[1709345000000,221],[1709345001000,221],[1709345002000,220],[1709345003000,221],[1709345004000,221],[1709345005000,221],[1709345006000,221],[1709345007000,221],[1709345008000,220],[1709345009000,221],[1709345010000,220],[1709345011000,221],[1709345012000,221],[1709345013000,221],[1709345014000,221],[1709345015000,220],[1709345016000,221],[1709345017000,221],[1709345018000,221],[1709345019000,221],[1709345020000,221],[1709345021000,221],[1709345022000,221],[1709345023000,216]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#f15b4f',
name: 'extratos',
data: [
[1709344779000,0],[1709344780000,0],[1709344781000,0],[1709344782000,0],[1709344783000,1],[1709344784000,2],[1709344785000,1],[1709344786000,1],[1709344787000,1],[1709344788000,1],[1709344789000,2],[1709344790000,1],[1709344791000,2],[1709344792000,2],[1709344793000,1],[1709344794000,2],[1709344795000,2],[1709344796000,2],[1709344797000,2],[1709344798000,2],[1709344799000,2],[1709344800000,2],[1709344801000,3],[1709344802000,2],[1709344803000,3],[1709344804000,2],[1709344805000,3],[1709344806000,2],[1709344807000,3],[1709344808000,3],[1709344809000,3],[1709344810000,3],[1709344811000,3],[1709344812000,3],[1709344813000,3],[1709344814000,4],[1709344815000,3],[1709344816000,3],[1709344817000,4],[1709344818000,3],[1709344819000,4],[1709344820000,4],[1709344821000,4],[1709344822000,4],[1709344823000,4],[1709344824000,4],[1709344825000,4],[1709344826000,4],[1709344827000,4],[1709344828000,4],[1709344829000,5],[1709344830000,4],[1709344831000,5],[1709344832000,5],[1709344833000,4],[1709344834000,5],[1709344835000,5],[1709344836000,5],[1709344837000,5],[1709344838000,5],[1709344839000,5],[1709344840000,5],[1709344841000,6],[1709344842000,5],[1709344843000,6],[1709344844000,5],[1709344845000,6],[1709344846000,5],[1709344847000,6],[1709344848000,6],[1709344849000,6],[1709344850000,6],[1709344851000,6],[1709344852000,6],[1709344853000,6],[1709344854000,7],[1709344855000,6],[1709344856000,6],[1709344857000,7],[1709344858000,6],[1709344859000,7],[1709344860000,7],[1709344861000,7],[1709344862000,7],[1709344863000,7],[1709344864000,7],[1709344865000,7],[1709344866000,7],[1709344867000,7],[1709344868000,7],[1709344869000,8],[1709344870000,7],[1709344871000,8],[1709344872000,8],[1709344873000,7],[1709344874000,8],[1709344875000,8],[1709344876000,8],[1709344877000,8],[1709344878000,8],[1709344879000,8],[1709344880000,8],[1709344881000,9],[1709344882000,8],[1709344883000,9],[1709344884000,8],[1709344885000,9],[1709344886000,8],[1709344887000,9],[1709344888000,9],[1709344889000,9],[1709344890000,9],[1709344891000,9],[1709344892000,9],[1709344893000,9],[1709344894000,10],[1709344895000,9],[1709344896000,10],[1709344897000,10],[1709344898000,9],[1709344899000,10],[1709344900000,10],[1709344901000,10],[1709344902000,10],[1709344903000,10],[1709344904000,10],[1709344905000,10],[1709344906000,10],[1709344907000,10],[1709344908000,11],[1709344909000,10],[1709344910000,10],[1709344911000,11],[1709344912000,10],[1709344913000,10],[1709344914000,10],[1709344915000,10],[1709344916000,10],[1709344917000,10],[1709344918000,11],[1709344919000,10],[1709344920000,11],[1709344921000,10],[1709344922000,10],[1709344923000,10],[1709344924000,10],[1709344925000,10],[1709344926000,10],[1709344927000,10],[1709344928000,10],[1709344929000,10],[1709344930000,10],[1709344931000,10],[1709344932000,10],[1709344933000,12],[1709344934000,16],[1709344935000,10],[1709344936000,10],[1709344937000,10],[1709344938000,10],[1709344939000,11],[1709344940000,10],[1709344941000,11],[1709344942000,10],[1709344943000,10],[1709344944000,10],[1709344945000,11],[1709344946000,10],[1709344947000,10],[1709344948000,10],[1709344949000,10],[1709344950000,10],[1709344951000,10],[1709344952000,10],[1709344953000,10],[1709344954000,10],[1709344955000,10],[1709344956000,10],[1709344957000,10],[1709344958000,10],[1709344959000,10],[1709344960000,10],[1709344961000,10],[1709344962000,10],[1709344963000,10],[1709344964000,10],[1709344965000,10],[1709344966000,10],[1709344967000,10],[1709344968000,11],[1709344969000,10],[1709344970000,10],[1709344971000,10],[1709344972000,10],[1709344973000,11],[1709344974000,10],[1709344975000,10],[1709344976000,10],[1709344977000,10],[1709344978000,10],[1709344979000,11],[1709344980000,10],[1709344981000,10],[1709344982000,10],[1709344983000,10],[1709344984000,10],[1709344985000,10],[1709344986000,10],[1709344987000,10],[1709344988000,10],[1709344989000,10],[1709344990000,10],[1709344991000,10],[1709344992000,10],[1709344993000,10],[1709344994000,11],[1709344995000,10],[1709344996000,11],[1709344997000,10],[1709344998000,10],[1709344999000,11],[1709345000000,10],[1709345001000,10],[1709345002000,10],[1709345003000,10],[1709345004000,10],[1709345005000,10],[1709345006000,10],[1709345007000,10],[1709345008000,10],[1709345009000,10],[1709345010000,10],[1709345011000,10],[1709345012000,10],[1709345013000,10],[1709345014000,10],[1709345015000,10],[1709345016000,10],[1709345017000,10],[1709345018000,10],[1709345019000,11],[1709345020000,10],[1709345021000,10],[1709345022000,10],[1709345023000,9]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FFDD00',
name: 'validação HTTP 404',
data: [
[1709344779000,0],[1709344780000,0],[1709344781000,0],[1709344782000,1],[1709344783000,0],[1709344784000,0],[1709344785000,0],[1709344786000,0],[1709344787000,0],[1709344788000,0],[1709344789000,0],[1709344790000,0],[1709344791000,0],[1709344792000,0],[1709344793000,0],[1709344794000,0],[1709344795000,0],[1709344796000,0],[1709344797000,0],[1709344798000,0],[1709344799000,0],[1709344800000,0],[1709344801000,0],[1709344802000,0],[1709344803000,0],[1709344804000,0],[1709344805000,0],[1709344806000,0],[1709344807000,0],[1709344808000,0],[1709344809000,0],[1709344810000,0],[1709344811000,0],[1709344812000,0],[1709344813000,0],[1709344814000,0],[1709344815000,0],[1709344816000,0],[1709344817000,0],[1709344818000,0],[1709344819000,0],[1709344820000,0],[1709344821000,0],[1709344822000,0],[1709344823000,0],[1709344824000,0],[1709344825000,0],[1709344826000,0],[1709344827000,0],[1709344828000,0],[1709344829000,0],[1709344830000,0],[1709344831000,0],[1709344832000,0],[1709344833000,0],[1709344834000,0],[1709344835000,0],[1709344836000,0],[1709344837000,0],[1709344838000,0],[1709344839000,0],[1709344840000,0],[1709344841000,0],[1709344842000,0],[1709344843000,0],[1709344844000,0],[1709344845000,0],[1709344846000,0],[1709344847000,0],[1709344848000,0],[1709344849000,0],[1709344850000,0],[1709344851000,0],[1709344852000,0],[1709344853000,0],[1709344854000,0],[1709344855000,0],[1709344856000,0],[1709344857000,0],[1709344858000,0],[1709344859000,0],[1709344860000,0],[1709344861000,0],[1709344862000,0],[1709344863000,0],[1709344864000,0],[1709344865000,0],[1709344866000,0],[1709344867000,0],[1709344868000,0],[1709344869000,0],[1709344870000,0],[1709344871000,0],[1709344872000,0],[1709344873000,0],[1709344874000,0],[1709344875000,0],[1709344876000,0],[1709344877000,0],[1709344878000,0],[1709344879000,0],[1709344880000,0],[1709344881000,0],[1709344882000,0],[1709344883000,0],[1709344884000,0],[1709344885000,0],[1709344886000,0],[1709344887000,0],[1709344888000,0],[1709344889000,0],[1709344890000,0],[1709344891000,0],[1709344892000,0],[1709344893000,0],[1709344894000,0],[1709344895000,0],[1709344896000,0],[1709344897000,0],[1709344898000,0],[1709344899000,0],[1709344900000,0],[1709344901000,0],[1709344902000,0],[1709344903000,0],[1709344904000,0],[1709344905000,0],[1709344906000,0],[1709344907000,0],[1709344908000,0],[1709344909000,0],[1709344910000,0],[1709344911000,0],[1709344912000,0],[1709344913000,0],[1709344914000,0],[1709344915000,0],[1709344916000,0],[1709344917000,0],[1709344918000,0],[1709344919000,0],[1709344920000,0],[1709344921000,0],[1709344922000,0],[1709344923000,0],[1709344924000,0],[1709344925000,0],[1709344926000,0],[1709344927000,0],[1709344928000,0],[1709344929000,0],[1709344930000,0],[1709344931000,0],[1709344932000,0],[1709344933000,0],[1709344934000,0],[1709344935000,0],[1709344936000,0],[1709344937000,0],[1709344938000,0],[1709344939000,0],[1709344940000,0],[1709344941000,0],[1709344942000,0],[1709344943000,0],[1709344944000,0],[1709344945000,0],[1709344946000,0],[1709344947000,0],[1709344948000,0],[1709344949000,0],[1709344950000,0],[1709344951000,0],[1709344952000,0],[1709344953000,0],[1709344954000,0],[1709344955000,0],[1709344956000,0],[1709344957000,0],[1709344958000,0],[1709344959000,0],[1709344960000,0],[1709344961000,0],[1709344962000,0],[1709344963000,0],[1709344964000,0],[1709344965000,0],[1709344966000,0],[1709344967000,0],[1709344968000,0],[1709344969000,0],[1709344970000,0],[1709344971000,0],[1709344972000,0],[1709344973000,0],[1709344974000,0],[1709344975000,0],[1709344976000,0],[1709344977000,0],[1709344978000,0],[1709344979000,0],[1709344980000,0],[1709344981000,0],[1709344982000,0],[1709344983000,0],[1709344984000,0],[1709344985000,0],[1709344986000,0],[1709344987000,0],[1709344988000,0],[1709344989000,0],[1709344990000,0],[1709344991000,0],[1709344992000,0],[1709344993000,0],[1709344994000,0],[1709344995000,0],[1709344996000,0],[1709344997000,0],[1709344998000,0],[1709344999000,0],[1709345000000,0],[1709345001000,0],[1709345002000,0],[1709345003000,0],[1709345004000,0],[1709345005000,0],[1709345006000,0],[1709345007000,0],[1709345008000,0],[1709345009000,0],[1709345010000,0],[1709345011000,0],[1709345012000,0],[1709345013000,0],[1709345014000,0],[1709345015000,0],[1709345016000,0],[1709345017000,0],[1709345018000,0],[1709345019000,0],[1709345020000,0],[1709345021000,0],[1709345022000,0],[1709345023000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00D5FF',
name: 'validações',
data: [
[1709344779000,0],[1709344780000,0],[1709344781000,0],[1709344782000,5],[1709344783000,5],[1709344784000,0],[1709344785000,0],[1709344786000,0],[1709344787000,0],[1709344788000,0],[1709344789000,0],[1709344790000,0],[1709344791000,0],[1709344792000,0],[1709344793000,0],[1709344794000,0],[1709344795000,0],[1709344796000,0],[1709344797000,0],[1709344798000,0],[1709344799000,0],[1709344800000,0],[1709344801000,0],[1709344802000,0],[1709344803000,0],[1709344804000,0],[1709344805000,0],[1709344806000,0],[1709344807000,0],[1709344808000,0],[1709344809000,0],[1709344810000,0],[1709344811000,0],[1709344812000,0],[1709344813000,0],[1709344814000,0],[1709344815000,0],[1709344816000,0],[1709344817000,0],[1709344818000,0],[1709344819000,0],[1709344820000,0],[1709344821000,0],[1709344822000,0],[1709344823000,0],[1709344824000,0],[1709344825000,0],[1709344826000,0],[1709344827000,0],[1709344828000,0],[1709344829000,0],[1709344830000,0],[1709344831000,0],[1709344832000,0],[1709344833000,0],[1709344834000,0],[1709344835000,0],[1709344836000,0],[1709344837000,0],[1709344838000,0],[1709344839000,0],[1709344840000,0],[1709344841000,0],[1709344842000,0],[1709344843000,0],[1709344844000,0],[1709344845000,0],[1709344846000,0],[1709344847000,0],[1709344848000,0],[1709344849000,0],[1709344850000,0],[1709344851000,0],[1709344852000,0],[1709344853000,0],[1709344854000,0],[1709344855000,0],[1709344856000,0],[1709344857000,0],[1709344858000,0],[1709344859000,0],[1709344860000,0],[1709344861000,0],[1709344862000,0],[1709344863000,0],[1709344864000,0],[1709344865000,0],[1709344866000,0],[1709344867000,0],[1709344868000,0],[1709344869000,0],[1709344870000,0],[1709344871000,0],[1709344872000,0],[1709344873000,0],[1709344874000,0],[1709344875000,0],[1709344876000,0],[1709344877000,0],[1709344878000,0],[1709344879000,0],[1709344880000,0],[1709344881000,0],[1709344882000,0],[1709344883000,0],[1709344884000,0],[1709344885000,0],[1709344886000,0],[1709344887000,0],[1709344888000,0],[1709344889000,0],[1709344890000,0],[1709344891000,0],[1709344892000,0],[1709344893000,0],[1709344894000,0],[1709344895000,0],[1709344896000,0],[1709344897000,0],[1709344898000,0],[1709344899000,0],[1709344900000,0],[1709344901000,0],[1709344902000,0],[1709344903000,0],[1709344904000,0],[1709344905000,0],[1709344906000,0],[1709344907000,0],[1709344908000,0],[1709344909000,0],[1709344910000,0],[1709344911000,0],[1709344912000,0],[1709344913000,0],[1709344914000,0],[1709344915000,0],[1709344916000,0],[1709344917000,0],[1709344918000,0],[1709344919000,0],[1709344920000,0],[1709344921000,0],[1709344922000,0],[1709344923000,0],[1709344924000,0],[1709344925000,0],[1709344926000,0],[1709344927000,0],[1709344928000,0],[1709344929000,0],[1709344930000,0],[1709344931000,0],[1709344932000,0],[1709344933000,0],[1709344934000,0],[1709344935000,0],[1709344936000,0],[1709344937000,0],[1709344938000,0],[1709344939000,0],[1709344940000,0],[1709344941000,0],[1709344942000,0],[1709344943000,0],[1709344944000,0],[1709344945000,0],[1709344946000,0],[1709344947000,0],[1709344948000,0],[1709344949000,0],[1709344950000,0],[1709344951000,0],[1709344952000,0],[1709344953000,0],[1709344954000,0],[1709344955000,0],[1709344956000,0],[1709344957000,0],[1709344958000,0],[1709344959000,0],[1709344960000,0],[1709344961000,0],[1709344962000,0],[1709344963000,0],[1709344964000,0],[1709344965000,0],[1709344966000,0],[1709344967000,0],[1709344968000,0],[1709344969000,0],[1709344970000,0],[1709344971000,0],[1709344972000,0],[1709344973000,0],[1709344974000,0],[1709344975000,0],[1709344976000,0],[1709344977000,0],[1709344978000,0],[1709344979000,0],[1709344980000,0],[1709344981000,0],[1709344982000,0],[1709344983000,0],[1709344984000,0],[1709344985000,0],[1709344986000,0],[1709344987000,0],[1709344988000,0],[1709344989000,0],[1709344990000,0],[1709344991000,0],[1709344992000,0],[1709344993000,0],[1709344994000,0],[1709344995000,0],[1709344996000,0],[1709344997000,0],[1709344998000,0],[1709344999000,0],[1709345000000,0],[1709345001000,0],[1709345002000,0],[1709345003000,0],[1709345004000,0],[1709345005000,0],[1709345006000,0],[1709345007000,0],[1709345008000,0],[1709345009000,0],[1709345010000,0],[1709345011000,0],[1709345012000,0],[1709345013000,0],[1709345014000,0],[1709345015000,0],[1709345016000,0],[1709345017000,0],[1709345018000,0],[1709345019000,0],[1709345020000,0],[1709345021000,0],[1709345022000,0],[1709345023000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00FF00',
name: 'validação concorrência saldo - 0',
data: [
[1709344779000,0],[1709344780000,0],[1709344781000,1],[1709344782000,0],[1709344783000,0],[1709344784000,0],[1709344785000,0],[1709344786000,0],[1709344787000,0],[1709344788000,0],[1709344789000,0],[1709344790000,0],[1709344791000,0],[1709344792000,0],[1709344793000,0],[1709344794000,0],[1709344795000,0],[1709344796000,0],[1709344797000,0],[1709344798000,0],[1709344799000,0],[1709344800000,0],[1709344801000,0],[1709344802000,0],[1709344803000,0],[1709344804000,0],[1709344805000,0],[1709344806000,0],[1709344807000,0],[1709344808000,0],[1709344809000,0],[1709344810000,0],[1709344811000,0],[1709344812000,0],[1709344813000,0],[1709344814000,0],[1709344815000,0],[1709344816000,0],[1709344817000,0],[1709344818000,0],[1709344819000,0],[1709344820000,0],[1709344821000,0],[1709344822000,0],[1709344823000,0],[1709344824000,0],[1709344825000,0],[1709344826000,0],[1709344827000,0],[1709344828000,0],[1709344829000,0],[1709344830000,0],[1709344831000,0],[1709344832000,0],[1709344833000,0],[1709344834000,0],[1709344835000,0],[1709344836000,0],[1709344837000,0],[1709344838000,0],[1709344839000,0],[1709344840000,0],[1709344841000,0],[1709344842000,0],[1709344843000,0],[1709344844000,0],[1709344845000,0],[1709344846000,0],[1709344847000,0],[1709344848000,0],[1709344849000,0],[1709344850000,0],[1709344851000,0],[1709344852000,0],[1709344853000,0],[1709344854000,0],[1709344855000,0],[1709344856000,0],[1709344857000,0],[1709344858000,0],[1709344859000,0],[1709344860000,0],[1709344861000,0],[1709344862000,0],[1709344863000,0],[1709344864000,0],[1709344865000,0],[1709344866000,0],[1709344867000,0],[1709344868000,0],[1709344869000,0],[1709344870000,0],[1709344871000,0],[1709344872000,0],[1709344873000,0],[1709344874000,0],[1709344875000,0],[1709344876000,0],[1709344877000,0],[1709344878000,0],[1709344879000,0],[1709344880000,0],[1709344881000,0],[1709344882000,0],[1709344883000,0],[1709344884000,0],[1709344885000,0],[1709344886000,0],[1709344887000,0],[1709344888000,0],[1709344889000,0],[1709344890000,0],[1709344891000,0],[1709344892000,0],[1709344893000,0],[1709344894000,0],[1709344895000,0],[1709344896000,0],[1709344897000,0],[1709344898000,0],[1709344899000,0],[1709344900000,0],[1709344901000,0],[1709344902000,0],[1709344903000,0],[1709344904000,0],[1709344905000,0],[1709344906000,0],[1709344907000,0],[1709344908000,0],[1709344909000,0],[1709344910000,0],[1709344911000,0],[1709344912000,0],[1709344913000,0],[1709344914000,0],[1709344915000,0],[1709344916000,0],[1709344917000,0],[1709344918000,0],[1709344919000,0],[1709344920000,0],[1709344921000,0],[1709344922000,0],[1709344923000,0],[1709344924000,0],[1709344925000,0],[1709344926000,0],[1709344927000,0],[1709344928000,0],[1709344929000,0],[1709344930000,0],[1709344931000,0],[1709344932000,0],[1709344933000,0],[1709344934000,0],[1709344935000,0],[1709344936000,0],[1709344937000,0],[1709344938000,0],[1709344939000,0],[1709344940000,0],[1709344941000,0],[1709344942000,0],[1709344943000,0],[1709344944000,0],[1709344945000,0],[1709344946000,0],[1709344947000,0],[1709344948000,0],[1709344949000,0],[1709344950000,0],[1709344951000,0],[1709344952000,0],[1709344953000,0],[1709344954000,0],[1709344955000,0],[1709344956000,0],[1709344957000,0],[1709344958000,0],[1709344959000,0],[1709344960000,0],[1709344961000,0],[1709344962000,0],[1709344963000,0],[1709344964000,0],[1709344965000,0],[1709344966000,0],[1709344967000,0],[1709344968000,0],[1709344969000,0],[1709344970000,0],[1709344971000,0],[1709344972000,0],[1709344973000,0],[1709344974000,0],[1709344975000,0],[1709344976000,0],[1709344977000,0],[1709344978000,0],[1709344979000,0],[1709344980000,0],[1709344981000,0],[1709344982000,0],[1709344983000,0],[1709344984000,0],[1709344985000,0],[1709344986000,0],[1709344987000,0],[1709344988000,0],[1709344989000,0],[1709344990000,0],[1709344991000,0],[1709344992000,0],[1709344993000,0],[1709344994000,0],[1709344995000,0],[1709344996000,0],[1709344997000,0],[1709344998000,0],[1709344999000,0],[1709345000000,0],[1709345001000,0],[1709345002000,0],[1709345003000,0],[1709345004000,0],[1709345005000,0],[1709345006000,0],[1709345007000,0],[1709345008000,0],[1709345009000,0],[1709345010000,0],[1709345011000,0],[1709345012000,0],[1709345013000,0],[1709345014000,0],[1709345015000,0],[1709345016000,0],[1709345017000,0],[1709345018000,0],[1709345019000,0],[1709345020000,0],[1709345021000,0],[1709345022000,0],[1709345023000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#9D00FF',
name: 'validação concorrência transações - c',
data: [
[1709344779000,0],[1709344780000,25],[1709344781000,24],[1709344782000,0],[1709344783000,0],[1709344784000,0],[1709344785000,0],[1709344786000,0],[1709344787000,0],[1709344788000,0],[1709344789000,0],[1709344790000,0],[1709344791000,0],[1709344792000,0],[1709344793000,0],[1709344794000,0],[1709344795000,0],[1709344796000,0],[1709344797000,0],[1709344798000,0],[1709344799000,0],[1709344800000,0],[1709344801000,0],[1709344802000,0],[1709344803000,0],[1709344804000,0],[1709344805000,0],[1709344806000,0],[1709344807000,0],[1709344808000,0],[1709344809000,0],[1709344810000,0],[1709344811000,0],[1709344812000,0],[1709344813000,0],[1709344814000,0],[1709344815000,0],[1709344816000,0],[1709344817000,0],[1709344818000,0],[1709344819000,0],[1709344820000,0],[1709344821000,0],[1709344822000,0],[1709344823000,0],[1709344824000,0],[1709344825000,0],[1709344826000,0],[1709344827000,0],[1709344828000,0],[1709344829000,0],[1709344830000,0],[1709344831000,0],[1709344832000,0],[1709344833000,0],[1709344834000,0],[1709344835000,0],[1709344836000,0],[1709344837000,0],[1709344838000,0],[1709344839000,0],[1709344840000,0],[1709344841000,0],[1709344842000,0],[1709344843000,0],[1709344844000,0],[1709344845000,0],[1709344846000,0],[1709344847000,0],[1709344848000,0],[1709344849000,0],[1709344850000,0],[1709344851000,0],[1709344852000,0],[1709344853000,0],[1709344854000,0],[1709344855000,0],[1709344856000,0],[1709344857000,0],[1709344858000,0],[1709344859000,0],[1709344860000,0],[1709344861000,0],[1709344862000,0],[1709344863000,0],[1709344864000,0],[1709344865000,0],[1709344866000,0],[1709344867000,0],[1709344868000,0],[1709344869000,0],[1709344870000,0],[1709344871000,0],[1709344872000,0],[1709344873000,0],[1709344874000,0],[1709344875000,0],[1709344876000,0],[1709344877000,0],[1709344878000,0],[1709344879000,0],[1709344880000,0],[1709344881000,0],[1709344882000,0],[1709344883000,0],[1709344884000,0],[1709344885000,0],[1709344886000,0],[1709344887000,0],[1709344888000,0],[1709344889000,0],[1709344890000,0],[1709344891000,0],[1709344892000,0],[1709344893000,0],[1709344894000,0],[1709344895000,0],[1709344896000,0],[1709344897000,0],[1709344898000,0],[1709344899000,0],[1709344900000,0],[1709344901000,0],[1709344902000,0],[1709344903000,0],[1709344904000,0],[1709344905000,0],[1709344906000,0],[1709344907000,0],[1709344908000,0],[1709344909000,0],[1709344910000,0],[1709344911000,0],[1709344912000,0],[1709344913000,0],[1709344914000,0],[1709344915000,0],[1709344916000,0],[1709344917000,0],[1709344918000,0],[1709344919000,0],[1709344920000,0],[1709344921000,0],[1709344922000,0],[1709344923000,0],[1709344924000,0],[1709344925000,0],[1709344926000,0],[1709344927000,0],[1709344928000,0],[1709344929000,0],[1709344930000,0],[1709344931000,0],[1709344932000,0],[1709344933000,0],[1709344934000,0],[1709344935000,0],[1709344936000,0],[1709344937000,0],[1709344938000,0],[1709344939000,0],[1709344940000,0],[1709344941000,0],[1709344942000,0],[1709344943000,0],[1709344944000,0],[1709344945000,0],[1709344946000,0],[1709344947000,0],[1709344948000,0],[1709344949000,0],[1709344950000,0],[1709344951000,0],[1709344952000,0],[1709344953000,0],[1709344954000,0],[1709344955000,0],[1709344956000,0],[1709344957000,0],[1709344958000,0],[1709344959000,0],[1709344960000,0],[1709344961000,0],[1709344962000,0],[1709344963000,0],[1709344964000,0],[1709344965000,0],[1709344966000,0],[1709344967000,0],[1709344968000,0],[1709344969000,0],[1709344970000,0],[1709344971000,0],[1709344972000,0],[1709344973000,0],[1709344974000,0],[1709344975000,0],[1709344976000,0],[1709344977000,0],[1709344978000,0],[1709344979000,0],[1709344980000,0],[1709344981000,0],[1709344982000,0],[1709344983000,0],[1709344984000,0],[1709344985000,0],[1709344986000,0],[1709344987000,0],[1709344988000,0],[1709344989000,0],[1709344990000,0],[1709344991000,0],[1709344992000,0],[1709344993000,0],[1709344994000,0],[1709344995000,0],[1709344996000,0],[1709344997000,0],[1709344998000,0],[1709344999000,0],[1709345000000,0],[1709345001000,0],[1709345002000,0],[1709345003000,0],[1709345004000,0],[1709345005000,0],[1709345006000,0],[1709345007000,0],[1709345008000,0],[1709345009000,0],[1709345010000,0],[1709345011000,0],[1709345012000,0],[1709345013000,0],[1709345014000,0],[1709345015000,0],[1709345016000,0],[1709345017000,0],[1709345018000,0],[1709345019000,0],[1709345020000,0],[1709345021000,0],[1709345022000,0],[1709345023000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FF00E1',
name: 'validação concorrência saldo - -25',
data: [
[1709344779000,1],[1709344780000,1],[1709344781000,0],[1709344782000,0],[1709344783000,0],[1709344784000,0],[1709344785000,0],[1709344786000,0],[1709344787000,0],[1709344788000,0],[1709344789000,0],[1709344790000,0],[1709344791000,0],[1709344792000,0],[1709344793000,0],[1709344794000,0],[1709344795000,0],[1709344796000,0],[1709344797000,0],[1709344798000,0],[1709344799000,0],[1709344800000,0],[1709344801000,0],[1709344802000,0],[1709344803000,0],[1709344804000,0],[1709344805000,0],[1709344806000,0],[1709344807000,0],[1709344808000,0],[1709344809000,0],[1709344810000,0],[1709344811000,0],[1709344812000,0],[1709344813000,0],[1709344814000,0],[1709344815000,0],[1709344816000,0],[1709344817000,0],[1709344818000,0],[1709344819000,0],[1709344820000,0],[1709344821000,0],[1709344822000,0],[1709344823000,0],[1709344824000,0],[1709344825000,0],[1709344826000,0],[1709344827000,0],[1709344828000,0],[1709344829000,0],[1709344830000,0],[1709344831000,0],[1709344832000,0],[1709344833000,0],[1709344834000,0],[1709344835000,0],[1709344836000,0],[1709344837000,0],[1709344838000,0],[1709344839000,0],[1709344840000,0],[1709344841000,0],[1709344842000,0],[1709344843000,0],[1709344844000,0],[1709344845000,0],[1709344846000,0],[1709344847000,0],[1709344848000,0],[1709344849000,0],[1709344850000,0],[1709344851000,0],[1709344852000,0],[1709344853000,0],[1709344854000,0],[1709344855000,0],[1709344856000,0],[1709344857000,0],[1709344858000,0],[1709344859000,0],[1709344860000,0],[1709344861000,0],[1709344862000,0],[1709344863000,0],[1709344864000,0],[1709344865000,0],[1709344866000,0],[1709344867000,0],[1709344868000,0],[1709344869000,0],[1709344870000,0],[1709344871000,0],[1709344872000,0],[1709344873000,0],[1709344874000,0],[1709344875000,0],[1709344876000,0],[1709344877000,0],[1709344878000,0],[1709344879000,0],[1709344880000,0],[1709344881000,0],[1709344882000,0],[1709344883000,0],[1709344884000,0],[1709344885000,0],[1709344886000,0],[1709344887000,0],[1709344888000,0],[1709344889000,0],[1709344890000,0],[1709344891000,0],[1709344892000,0],[1709344893000,0],[1709344894000,0],[1709344895000,0],[1709344896000,0],[1709344897000,0],[1709344898000,0],[1709344899000,0],[1709344900000,0],[1709344901000,0],[1709344902000,0],[1709344903000,0],[1709344904000,0],[1709344905000,0],[1709344906000,0],[1709344907000,0],[1709344908000,0],[1709344909000,0],[1709344910000,0],[1709344911000,0],[1709344912000,0],[1709344913000,0],[1709344914000,0],[1709344915000,0],[1709344916000,0],[1709344917000,0],[1709344918000,0],[1709344919000,0],[1709344920000,0],[1709344921000,0],[1709344922000,0],[1709344923000,0],[1709344924000,0],[1709344925000,0],[1709344926000,0],[1709344927000,0],[1709344928000,0],[1709344929000,0],[1709344930000,0],[1709344931000,0],[1709344932000,0],[1709344933000,0],[1709344934000,0],[1709344935000,0],[1709344936000,0],[1709344937000,0],[1709344938000,0],[1709344939000,0],[1709344940000,0],[1709344941000,0],[1709344942000,0],[1709344943000,0],[1709344944000,0],[1709344945000,0],[1709344946000,0],[1709344947000,0],[1709344948000,0],[1709344949000,0],[1709344950000,0],[1709344951000,0],[1709344952000,0],[1709344953000,0],[1709344954000,0],[1709344955000,0],[1709344956000,0],[1709344957000,0],[1709344958000,0],[1709344959000,0],[1709344960000,0],[1709344961000,0],[1709344962000,0],[1709344963000,0],[1709344964000,0],[1709344965000,0],[1709344966000,0],[1709344967000,0],[1709344968000,0],[1709344969000,0],[1709344970000,0],[1709344971000,0],[1709344972000,0],[1709344973000,0],[1709344974000,0],[1709344975000,0],[1709344976000,0],[1709344977000,0],[1709344978000,0],[1709344979000,0],[1709344980000,0],[1709344981000,0],[1709344982000,0],[1709344983000,0],[1709344984000,0],[1709344985000,0],[1709344986000,0],[1709344987000,0],[1709344988000,0],[1709344989000,0],[1709344990000,0],[1709344991000,0],[1709344992000,0],[1709344993000,0],[1709344994000,0],[1709344995000,0],[1709344996000,0],[1709344997000,0],[1709344998000,0],[1709344999000,0],[1709345000000,0],[1709345001000,0],[1709345002000,0],[1709345003000,0],[1709345004000,0],[1709345005000,0],[1709345006000,0],[1709345007000,0],[1709345008000,0],[1709345009000,0],[1709345010000,0],[1709345011000,0],[1709345012000,0],[1709345013000,0],[1709345014000,0],[1709345015000,0],[1709345016000,0],[1709345017000,0],[1709345018000,0],[1709345019000,0],[1709345020000,0],[1709345021000,0],[1709345022000,0],[1709345023000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#AECAEB',
name: 'validação concorrência transações - d',
data: [
[1709344779000,25],[1709344780000,0],[1709344781000,0],[1709344782000,0],[1709344783000,0],[1709344784000,0],[1709344785000,0],[1709344786000,0],[1709344787000,0],[1709344788000,0],[1709344789000,0],[1709344790000,0],[1709344791000,0],[1709344792000,0],[1709344793000,0],[1709344794000,0],[1709344795000,0],[1709344796000,0],[1709344797000,0],[1709344798000,0],[1709344799000,0],[1709344800000,0],[1709344801000,0],[1709344802000,0],[1709344803000,0],[1709344804000,0],[1709344805000,0],[1709344806000,0],[1709344807000,0],[1709344808000,0],[1709344809000,0],[1709344810000,0],[1709344811000,0],[1709344812000,0],[1709344813000,0],[1709344814000,0],[1709344815000,0],[1709344816000,0],[1709344817000,0],[1709344818000,0],[1709344819000,0],[1709344820000,0],[1709344821000,0],[1709344822000,0],[1709344823000,0],[1709344824000,0],[1709344825000,0],[1709344826000,0],[1709344827000,0],[1709344828000,0],[1709344829000,0],[1709344830000,0],[1709344831000,0],[1709344832000,0],[1709344833000,0],[1709344834000,0],[1709344835000,0],[1709344836000,0],[1709344837000,0],[1709344838000,0],[1709344839000,0],[1709344840000,0],[1709344841000,0],[1709344842000,0],[1709344843000,0],[1709344844000,0],[1709344845000,0],[1709344846000,0],[1709344847000,0],[1709344848000,0],[1709344849000,0],[1709344850000,0],[1709344851000,0],[1709344852000,0],[1709344853000,0],[1709344854000,0],[1709344855000,0],[1709344856000,0],[1709344857000,0],[1709344858000,0],[1709344859000,0],[1709344860000,0],[1709344861000,0],[1709344862000,0],[1709344863000,0],[1709344864000,0],[1709344865000,0],[1709344866000,0],[1709344867000,0],[1709344868000,0],[1709344869000,0],[1709344870000,0],[1709344871000,0],[1709344872000,0],[1709344873000,0],[1709344874000,0],[1709344875000,0],[1709344876000,0],[1709344877000,0],[1709344878000,0],[1709344879000,0],[1709344880000,0],[1709344881000,0],[1709344882000,0],[1709344883000,0],[1709344884000,0],[1709344885000,0],[1709344886000,0],[1709344887000,0],[1709344888000,0],[1709344889000,0],[1709344890000,0],[1709344891000,0],[1709344892000,0],[1709344893000,0],[1709344894000,0],[1709344895000,0],[1709344896000,0],[1709344897000,0],[1709344898000,0],[1709344899000,0],[1709344900000,0],[1709344901000,0],[1709344902000,0],[1709344903000,0],[1709344904000,0],[1709344905000,0],[1709344906000,0],[1709344907000,0],[1709344908000,0],[1709344909000,0],[1709344910000,0],[1709344911000,0],[1709344912000,0],[1709344913000,0],[1709344914000,0],[1709344915000,0],[1709344916000,0],[1709344917000,0],[1709344918000,0],[1709344919000,0],[1709344920000,0],[1709344921000,0],[1709344922000,0],[1709344923000,0],[1709344924000,0],[1709344925000,0],[1709344926000,0],[1709344927000,0],[1709344928000,0],[1709344929000,0],[1709344930000,0],[1709344931000,0],[1709344932000,0],[1709344933000,0],[1709344934000,0],[1709344935000,0],[1709344936000,0],[1709344937000,0],[1709344938000,0],[1709344939000,0],[1709344940000,0],[1709344941000,0],[1709344942000,0],[1709344943000,0],[1709344944000,0],[1709344945000,0],[1709344946000,0],[1709344947000,0],[1709344948000,0],[1709344949000,0],[1709344950000,0],[1709344951000,0],[1709344952000,0],[1709344953000,0],[1709344954000,0],[1709344955000,0],[1709344956000,0],[1709344957000,0],[1709344958000,0],[1709344959000,0],[1709344960000,0],[1709344961000,0],[1709344962000,0],[1709344963000,0],[1709344964000,0],[1709344965000,0],[1709344966000,0],[1709344967000,0],[1709344968000,0],[1709344969000,0],[1709344970000,0],[1709344971000,0],[1709344972000,0],[1709344973000,0],[1709344974000,0],[1709344975000,0],[1709344976000,0],[1709344977000,0],[1709344978000,0],[1709344979000,0],[1709344980000,0],[1709344981000,0],[1709344982000,0],[1709344983000,0],[1709344984000,0],[1709344985000,0],[1709344986000,0],[1709344987000,0],[1709344988000,0],[1709344989000,0],[1709344990000,0],[1709344991000,0],[1709344992000,0],[1709344993000,0],[1709344994000,0],[1709344995000,0],[1709344996000,0],[1709344997000,0],[1709344998000,0],[1709344999000,0],[1709345000000,0],[1709345001000,0],[1709345002000,0],[1709345003000,0],[1709345004000,0],[1709345005000,0],[1709345006000,0],[1709345007000,0],[1709345008000,0],[1709345009000,0],[1709345010000,0],[1709345011000,0],[1709345012000,0],[1709345013000,0],[1709345014000,0],[1709345015000,0],[1709345016000,0],[1709345017000,0],[1709345018000,0],[1709345019000,0],[1709345020000,0],[1709345021000,0],[1709345022000,0],[1709345023000,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: ['11', '30', '49', '69', '88', '107', '126', '146', '165', '184', '204', '223', '242', '262', '281', '300', '319', '339', '358', '377', '397', '416', '435', '455', '474', '493', '512', '532', '551', '570', '590', '609', '628', '648', '667', '686', '705', '725', '744', '763', '783', '802', '821', '841', '860', '879', '898', '918', '937', '956', '976', '995', '1014', '1034', '1053', '1072', '1091', '1111', '1130', '1149', '1169', '1188', '1207', '1227', '1246', '1265', '1284', '1304', '1323', '1342', '1362', '1381', '1400', '1420', '1439', '1458', '1477', '1497', '1516', '1535', '1555', '1574', '1593', '1613', '1632', '1651', '1670', '1690', '1709', '1728', '1748', '1767', '1786', '1806', '1825', '1844', '1863', '1883', '1902', '1921'],
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: [
98.29,0.14,0.1,0.09,0.08,0.03,0.02,0.02,0.02,0.01,0.03,0.02,0.02,0.03,0.03,0.02,0.04,0.03,0.03,0.03,0.03,0.03,0.02,0.03,0.03,0.04,0.03,0.04,0.03,0.03,0.03,0.03,0.01,0.01,0.01,0.01,0.02,0.01,0.02,0.01,0.0,0.01,0.0,0.01,0.0,0.01,0.0,0.0,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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([[1709344779,[41,357,384,393,394,395,395,397,439,453]],[1709344780,[3,3,3,3,3,3,3,3,3,3]],[1709344781,[15,21,27,31,32,33,34,35,39,41]],[1709344782,[4,4,4,4,4,4,4,4,4,4]],[1709344783,[1,2,6,12,14,16,23,25,33,37]],[1709344784,[5,5,5,5,5,5,5,5,5,6]],[1709344785,[3,4,4,5,5,5,5,5,5,5]],[1709344786,[4,4,4,5,5,5,6,6,6,6]],[1709344787,[3,4,4,4,4,4,5,5,5,5]],[1709344788,[3,4,4,4,4,5,5,5,5,5]],[1709344789,[3,3,3,4,4,4,4,5,5,5]],[1709344790,[3,3,3,4,4,4,4,4,4,4]],[1709344791,[2,3,3,4,4,4,4,4,4,4]],[1709344792,[2,3,3,4,4,4,4,4,4,5]],[1709344793,[2,3,3,3,4,4,4,4,5,6]],[1709344794,[3,3,3,4,4,4,4,4,4,5]],[1709344795,[2,3,3,3,3,3,3,3,4,4]],[1709344796,[2,3,3,3,3,4,4,4,4,5]],[1709344797,[2,3,3,3,3,4,4,4,4,4]],[1709344798,[2,3,3,3,3,4,4,4,4,4]],[1709344799,[2,2,3,3,3,3,4,4,4,4]],[1709344800,[2,2,3,3,3,3,3,3,4,4]],[1709344801,[2,2,3,3,3,3,3,3,5,6]],[1709344802,[1,3,3,3,3,3,3,3,3,4]],[1709344803,[2,3,3,3,3,3,3,4,4,4]],[1709344804,[2,2,3,3,3,3,3,4,4,5]],[1709344805,[1,2,3,3,3,3,3,4,4,4]],[1709344806,[1,2,3,3,3,3,3,4,4,4]],[1709344807,[2,2,2,3,3,3,3,3,3,4]],[1709344808,[1,2,3,3,3,3,3,3,4,5]],[1709344809,[1,2,2,3,3,3,3,3,3,3]],[1709344810,[1,2,2,3,3,3,3,3,4,6]],[1709344811,[1,2,2,3,3,3,3,3,3,3]],[1709344812,[1,2,2,3,3,3,3,4,4,5]],[1709344813,[2,2,3,3,3,3,3,3,4,4]],[1709344814,[2,2,2,3,3,3,3,3,4,4]],[1709344815,[1,2,2,2,2,3,3,3,3,4]],[1709344816,[2,2,2,3,3,3,3,3,4,4]],[1709344817,[1,2,2,3,3,3,3,3,4,4]],[1709344818,[1,2,2,3,3,3,3,3,3,4]],[1709344819,[2,2,2,3,3,3,3,3,4,4]],[1709344820,[1,2,3,3,3,3,3,3,4,4]],[1709344821,[1,2,2,3,3,3,3,3,3,3]],[1709344822,[1,2,2,3,3,3,3,3,3,5]],[1709344823,[1,2,2,3,3,3,3,3,3,4]],[1709344824,[1,2,2,3,3,3,3,3,3,5]],[1709344825,[1,2,2,2,2,2,3,3,3,3]],[1709344826,[1,2,2,3,3,3,3,3,3,4]],[1709344827,[2,2,2,3,3,3,3,3,3,4]],[1709344828,[1,2,2,3,3,3,3,3,3,3]],[1709344829,[1,2,2,3,3,3,3,3,3,4]],[1709344830,[1,2,2,3,3,3,3,3,3,3]],[1709344831,[2,2,3,3,3,3,3,3,3,4]],[1709344832,[2,2,3,3,3,3,3,3,3,3]],[1709344833,[1,2,2,2,3,3,3,3,3,4]],[1709344834,[1,2,2,2,3,3,3,3,3,4]],[1709344835,[1,2,2,2,2,3,3,3,3,4]],[1709344836,[1,2,2,2,2,2,3,3,3,3]],[1709344837,[1,2,2,2,3,3,3,3,4,4]],[1709344838,[1,2,2,2,3,3,3,3,3,3]],[1709344839,[1,2,2,2,2,2,3,3,3,5]],[1709344840,[1,2,2,2,2,2,3,3,5,7]],[1709344841,[1,2,2,2,2,3,3,3,3,4]],[1709344842,[2,2,2,3,3,3,3,3,3,3]],[1709344843,[1,2,2,2,3,3,3,3,4,5]],[1709344844,[1,2,2,2,3,3,3,3,3,4]],[1709344845,[1,2,2,3,3,3,3,3,4,4]],[1709344846,[1,2,2,2,2,3,3,3,3,4]],[1709344847,[1,2,2,2,2,2,3,3,4,4]],[1709344848,[1,2,2,2,2,2,3,3,3,4]],[1709344849,[1,2,2,2,2,3,3,3,3,3]],[1709344850,[1,2,2,2,2,2,3,3,4,4]],[1709344851,[1,2,2,2,2,3,3,3,3,4]],[1709344852,[1,2,2,2,2,2,3,3,3,3]],[1709344853,[1,2,2,2,2,2,2,3,3,3]],[1709344854,[1,2,2,2,2,3,3,3,3,4]],[1709344855,[1,2,2,3,3,3,3,3,3,4]],[1709344856,[1,2,2,3,3,3,3,3,3,3]],[1709344857,[1,2,2,2,2,3,3,3,3,3]],[1709344858,[1,2,2,2,2,3,3,3,3,3]],[1709344859,[1,2,2,2,2,2,2,3,3,4]],[1709344860,[1,2,2,2,2,3,3,3,3,3]],[1709344861,[1,2,2,2,2,3,3,3,3,4]],[1709344862,[1,2,2,2,3,3,3,3,3,3]],[1709344863,[1,2,2,3,3,3,3,3,4,6]],[1709344864,[1,2,2,2,2,3,3,3,3,4]],[1709344865,[1,2,2,3,3,3,3,3,3,5]],[1709344866,[1,2,2,3,3,3,3,3,3,4]],[1709344867,[1,1,2,2,2,2,2,3,3,4]],[1709344868,[1,2,2,2,2,2,2,3,3,4]],[1709344869,[1,2,2,2,2,2,3,3,4,6]],[1709344870,[1,2,2,2,2,2,2,3,3,4]],[1709344871,[1,2,2,2,2,2,3,3,3,4]],[1709344872,[1,2,2,2,3,3,3,3,4,4]],[1709344873,[1,2,2,2,2,3,3,3,4,4]],[1709344874,[1,2,2,2,3,3,3,3,3,3]],[1709344875,[1,2,2,2,2,3,3,3,4,5]],[1709344876,[1,2,2,3,3,3,3,3,3,4]],[1709344877,[1,1,2,2,3,3,3,3,3,3]],[1709344878,[1,1,2,2,2,2,2,2,3,4]],[1709344879,[1,1,2,2,2,2,2,2,4,4]],[1709344880,[1,1,2,2,2,2,2,3,3,4]],[1709344881,[1,1,2,2,2,2,2,3,4,5]],[1709344882,[1,2,2,2,2,3,3,3,4,4]],[1709344883,[1,2,2,2,2,2,3,3,4,19]],[1709344884,[1,2,2,2,3,3,3,3,4,6]],[1709344885,[1,2,2,2,2,3,3,3,3,4]],[1709344886,[1,2,2,2,2,2,3,3,3,4]],[1709344887,[1,2,2,2,2,2,2,3,3,4]],[1709344888,[1,2,2,2,2,2,2,3,4,4]],[1709344889,[1,2,2,2,2,3,3,3,4,5]],[1709344890,[1,1,2,2,2,2,3,3,4,5]],[1709344891,[1,1,2,2,2,2,2,3,4,5]],[1709344892,[1,2,2,2,2,2,2,3,4,4]],[1709344893,[1,1,2,2,2,2,2,3,4,5]],[1709344894,[1,2,2,2,2,2,2,3,3,4]],[1709344895,[1,2,2,2,2,3,3,3,4,6]],[1709344896,[1,2,3,3,3,4,4,4,6,9]],[1709344897,[1,2,3,3,3,4,4,4,6,7]],[1709344898,[1,2,3,3,4,4,4,4,6,7]],[1709344899,[1,2,3,4,4,4,4,5,6,6]],[1709344900,[1,2,3,4,4,4,4,5,8,24]],[1709344901,[1,2,2,3,3,3,3,4,5,6]],[1709344902,[1,2,3,3,4,4,4,4,6,7]],[1709344903,[1,2,2,3,4,4,4,5,6,8]],[1709344904,[1,2,3,4,4,4,4,5,6,7]],[1709344905,[1,2,2,3,3,4,4,5,6,7]],[1709344906,[1,2,3,4,4,4,4,5,6,7]],[1709344907,[1,2,2,3,3,3,4,5,6,7]],[1709344908,[1,3,3,4,4,4,5,5,7,12]],[1709344909,[1,1,2,2,2,2,3,4,5,7]],[1709344910,[1,2,3,3,3,4,4,4,6,7]],[1709344911,[1,1,2,2,2,2,2,4,7,10]],[1709344912,[1,3,3,4,4,4,4,4,7,7]],[1709344913,[1,2,2,2,2,2,2,2,4,5]],[1709344914,[1,3,3,4,4,4,4,5,7,7]],[1709344915,[1,2,2,2,2,2,2,3,5,5]],[1709344916,[1,3,3,4,4,4,4,5,6,35]],[1709344917,[1,2,2,2,2,3,3,3,5,5]],[1709344918,[1,3,3,4,4,4,5,6,8,12]],[1709344919,[1,2,2,2,2,3,3,4,5,5]],[1709344920,[1,2,3,4,4,4,5,6,15,28]],[1709344921,[1,2,2,3,3,3,4,4,5,7]],[1709344922,[2,3,3,4,4,4,4,5,6,8]],[1709344923,[1,2,2,2,3,3,3,4,5,6]],[1709344924,[1,2,3,4,4,4,4,5,7,9]],[1709344925,[1,2,2,3,3,3,4,4,5,7]],[1709344926,[1,2,2,4,4,4,4,5,7,8]],[1709344927,[1,2,2,3,3,4,4,4,5,8]],[1709344928,[1,2,2,3,3,3,3,4,6,7]],[1709344929,[1,2,3,3,3,3,3,4,6,7]],[1709344930,[1,2,2,3,3,3,4,4,6,8]],[1709344931,[1,2,2,3,3,4,4,5,6,7]],[1709344932,[1,2,3,14,45,66,90,237,1287,1541]],[1709344933,[6,453,680,935,1038,1139,1261,1379,1693,1931]],[1709344934,[94,331,445,531,553,580,637,754,1018,1266]],[1709344935,[1,2,3,64,82,120,161,215,298,361]],[1709344936,[1,1,2,2,2,2,2,3,6,10]],[1709344937,[1,2,2,3,3,3,3,4,7,8]],[1709344938,[1,2,2,2,2,3,3,3,6,7]],[1709344939,[1,2,3,3,3,4,4,5,9,13]],[1709344940,[1,2,2,3,3,3,3,3,6,6]],[1709344941,[1,2,2,3,3,4,4,5,8,12]],[1709344942,[1,2,2,2,2,3,3,3,6,6]],[1709344943,[1,2,2,3,3,3,4,4,6,7]],[1709344944,[1,2,2,2,3,3,3,3,6,6]],[1709344945,[1,2,2,3,3,4,4,5,8,13]],[1709344946,[1,1,2,2,2,2,2,3,6,7]],[1709344947,[1,2,2,2,4,4,4,5,6,8]],[1709344948,[1,2,2,2,3,3,3,3,5,7]],[1709344949,[1,2,2,3,3,3,4,4,7,10]],[1709344950,[1,2,2,2,2,2,3,3,5,6]],[1709344951,[1,2,2,3,3,3,3,4,7,7]],[1709344952,[1,2,2,2,2,3,3,3,5,6]],[1709344953,[1,2,2,3,3,3,4,5,7,9]],[1709344954,[1,2,2,2,2,3,3,3,6,6]],[1709344955,[1,2,2,3,3,4,4,5,7,8]],[1709344956,[1,2,2,3,3,3,3,3,6,6]],[1709344957,[1,2,2,3,3,3,4,5,6,8]],[1709344958,[1,2,2,3,3,3,4,4,6,8]],[1709344959,[2,3,4,4,4,4,5,5,8,9]],[1709344960,[1,2,2,3,3,3,3,4,6,8]],[1709344961,[2,3,3,4,4,4,4,5,8,9]],[1709344962,[1,2,2,3,3,3,3,4,6,7]],[1709344963,[2,3,3,4,4,4,4,5,8,9]],[1709344964,[1,1,2,2,2,3,3,4,6,7]],[1709344965,[1,3,3,3,4,4,4,4,8,8]],[1709344966,[1,2,2,3,3,3,3,4,6,8]],[1709344967,[1,3,3,4,4,4,5,5,8,10]],[1709344968,[1,2,2,3,3,4,4,5,6,10]],[1709344969,[1,2,3,4,4,4,4,5,8,10]],[1709344970,[1,2,2,3,3,4,4,5,6,9]],[1709344971,[1,2,3,3,4,4,4,5,8,9]],[1709344972,[1,2,2,3,3,4,4,4,7,8]],[1709344973,[1,2,3,3,3,3,4,4,8,12]],[1709344974,[1,2,2,3,3,3,3,3,6,8]],[1709344975,[1,2,2,3,3,3,4,4,7,8]],[1709344976,[1,2,2,3,3,3,4,4,7,10]],[1709344977,[1,2,2,3,4,4,4,5,7,9]],[1709344978,[1,2,3,3,4,4,4,5,7,9]],[1709344979,[1,2,3,4,4,5,5,6,9,15]],[1709344980,[2,2,3,4,4,4,4,5,7,10]],[1709344981,[1,2,3,3,3,2,4,5,7,8]],[1709344982,[2,2,3,4,4,4,4,5,8,9]],[1709344983,[1,2,2,3,3,3,4,5,7,9]],[1709344984,[1,2,3,4,4,4,4,5,8,9]],[1709344985,[1,2,2,2,3,3,3,3,6,8]],[1709344986,[1,2,3,3,3,3,4,4,8,9]],[1709344987,[1,2,2,2,2,2,3,3,6,7]],[1709344988,[2,3,3,4,4,4,4,5,8,10]],[1709344989,[1,2,2,3,3,3,3,3,7,7]],[1709344990,[1,2,3,4,4,4,4,5,8,9]],[1709344991,[1,2,2,3,3,3,3,3,7,7]],[1709344992,[2,3,4,9,23,41,62,88,123,196]],[1709344993,[1,2,3,3,3,7,29,55,80,158]],[1709344994,[1,3,3,4,4,4,5,6,9,13]],[1709344995,[1,2,2,3,3,4,4,5,7,10]],[1709344996,[1,3,3,4,4,4,4,5,9,14]],[1709344997,[1,2,2,2,2,3,3,3,6,7]],[1709344998,[1,2,2,2,3,3,3,3,7,8]],[1709344999,[1,2,2,2,2,3,3,3,7,9]],[1709345000,[1,2,3,4,4,4,4,5,8,10]],[1709345001,[1,2,2,3,3,3,3,3,7,8]],[1709345002,[1,2,3,4,4,4,4,5,8,9]],[1709345003,[1,2,2,2,2,3,3,3,7,7]],[1709345004,[1,2,2,3,4,4,4,5,8,9]],[1709345005,[1,2,2,2,3,3,3,4,6,7]],[1709345006,[1,2,2,3,3,3,4,4,6,9]],[1709345007,[1,2,2,2,3,3,3,4,7,8]],[1709345008,[1,2,2,3,3,3,4,5,7,10]],[1709345009,[1,2,2,3,3,3,4,4,7,10]],[1709345010,[1,2,2,2,3,3,4,5,7,10]],[1709345011,[1,2,2,3,3,4,4,5,7,10]],[1709345012,[1,2,2,2,2,2,3,4,7,9]],[1709345013,[1,2,2,3,3,4,4,4,7,10]],[1709345014,[1,2,2,2,2,3,3,4,7,8]],[1709345015,[1,2,2,3,3,3,4,4,7,9]],[1709345016,[1,2,2,2,2,2,3,3,7,8]],[1709345017,[1,2,2,2,3,3,4,4,7,9]],[1709345018,[1,2,2,2,2,2,3,3,7,7]],[1709345019,[1,2,2,3,3,3,4,4,7,11]],[1709345020,[1,2,2,3,3,4,4,5,7,10]],[1709345021,[1,2,3,4,4,4,4,5,8,12]],[1709345022,[1,2,3,4,4,4,4,5,9,10]],[1709345023,[1,2,2,3,3,4,4,4,7,10]]]);
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([[1709344779,[25,25,0]],[1709344780,[1,1,0]],[1709344781,[25,25,0]],[1709344782,[1,1,0]],[1709344783,[71,71,0]],[1709344784,[3,3,0]],[1709344785,[6,6,0]],[1709344786,[9,9,0]],[1709344787,[11,11,0]],[1709344788,[13,13,0]],[1709344789,[18,18,0]],[1709344790,[19,19,0]],[1709344791,[24,24,0]],[1709344792,[26,26,0]],[1709344793,[27,27,0]],[1709344794,[32,32,0]],[1709344795,[34,34,0]],[1709344796,[37,37,0]],[1709344797,[39,39,0]],[1709344798,[43,43,0]],[1709344799,[44,44,0]],[1709344800,[49,49,0]],[1709344801,[50,50,0]],[1709344802,[54,54,0]],[1709344803,[56,56,0]],[1709344804,[60,60,0]],[1709344805,[61,61,0]],[1709344806,[65,65,0]],[1709344807,[67,67,0]],[1709344808,[70,70,0]],[1709344809,[74,74,0]],[1709344810,[76,76,0]],[1709344811,[80,80,0]],[1709344812,[81,81,0]],[1709344813,[84,84,0]],[1709344814,[89,89,0]],[1709344815,[89,89,0]],[1709344816,[93,93,0]],[1709344817,[96,96,0]],[1709344818,[98,98,0]],[1709344819,[102,102,0]],[1709344820,[104,104,0]],[1709344821,[107,107,0]],[1709344822,[109,109,0]],[1709344823,[114,114,0]],[1709344824,[115,115,0]],[1709344825,[118,118,0]],[1709344826,[121,121,0]],[1709344827,[124,124,0]],[1709344828,[126,126,0]],[1709344829,[129,129,0]],[1709344830,[133,133,0]],[1709344831,[134,134,0]],[1709344832,[139,139,0]],[1709344833,[140,140,0]],[1709344834,[144,144,0]],[1709344835,[146,146,0]],[1709344836,[149,149,0]],[1709344837,[151,151,0]],[1709344838,[155,155,0]],[1709344839,[157,157,0]],[1709344840,[160,160,0]],[1709344841,[164,164,0]],[1709344842,[165,165,0]],[1709344843,[171,171,0]],[1709344844,[171,171,0]],[1709344845,[174,174,0]],[1709344846,[177,177,0]],[1709344847,[180,180,0]],[1709344848,[183,183,0]],[1709344849,[186,186,0]],[1709344850,[188,188,0]],[1709344851,[192,192,0]],[1709344852,[194,194,0]],[1709344853,[197,197,0]],[1709344854,[198,198,0]],[1709344855,[204,204,0]],[1709344856,[204,204,0]],[1709344857,[208,208,0]],[1709344858,[211,211,0]],[1709344859,[214,214,0]],[1709344860,[217,217,0]],[1709344861,[219,219,0]],[1709344862,[222,222,0]],[1709344863,[225,225,0]],[1709344864,[228,228,0]],[1709344865,[229,229,0]],[1709344866,[234,234,0]],[1709344867,[236,236,0]],[1709344868,[239,239,0]],[1709344869,[242,242,0]],[1709344870,[244,244,0]],[1709344871,[248,248,0]],[1709344872,[250,250,0]],[1709344873,[253,253,0]],[1709344874,[255,255,0]],[1709344875,[261,261,0]],[1709344876,[262,262,0]],[1709344877,[263,263,0]],[1709344878,[267,267,0]],[1709344879,[269,269,0]],[1709344880,[273,273,0]],[1709344881,[275,275,0]],[1709344882,[279,279,0]],[1709344883,[281,281,0]],[1709344884,[284,284,0]],[1709344885,[286,286,0]],[1709344886,[290,290,0]],[1709344887,[292,292,0]],[1709344888,[295,295,0]],[1709344889,[298,298,0]],[1709344890,[301,301,0]],[1709344891,[304,304,0]],[1709344892,[306,306,0]],[1709344893,[308,308,0]],[1709344894,[313,313,0]],[1709344895,[315,315,0]],[1709344896,[317,317,0]],[1709344897,[320,320,0]],[1709344898,[323,323,0]],[1709344899,[326,326,0]],[1709344900,[330,330,0]],[1709344901,[332,332,0]],[1709344902,[334,334,0]],[1709344903,[337,337,0]],[1709344904,[340,340,0]],[1709344905,[340,340,0]],[1709344906,[340,340,0]],[1709344907,[340,340,0]],[1709344908,[340,340,0]],[1709344909,[340,340,0]],[1709344910,[340,340,0]],[1709344911,[340,340,0]],[1709344912,[340,340,0]],[1709344913,[340,340,0]],[1709344914,[340,340,0]],[1709344915,[340,340,0]],[1709344916,[340,340,0]],[1709344917,[340,340,0]],[1709344918,[340,340,0]],[1709344919,[340,340,0]],[1709344920,[340,340,0]],[1709344921,[340,340,0]],[1709344922,[340,340,0]],[1709344923,[340,340,0]],[1709344924,[340,340,0]],[1709344925,[340,340,0]],[1709344926,[340,340,0]],[1709344927,[340,340,0]],[1709344928,[340,340,0]],[1709344929,[340,340,0]],[1709344930,[340,340,0]],[1709344931,[340,340,0]],[1709344932,[340,340,0]],[1709344933,[340,340,0]],[1709344934,[340,340,0]],[1709344935,[340,340,0]],[1709344936,[340,340,0]],[1709344937,[340,340,0]],[1709344938,[340,340,0]],[1709344939,[340,340,0]],[1709344940,[340,340,0]],[1709344941,[340,340,0]],[1709344942,[340,340,0]],[1709344943,[340,340,0]],[1709344944,[340,340,0]],[1709344945,[340,340,0]],[1709344946,[340,340,0]],[1709344947,[340,340,0]],[1709344948,[340,340,0]],[1709344949,[340,340,0]],[1709344950,[340,340,0]],[1709344951,[340,340,0]],[1709344952,[340,340,0]],[1709344953,[340,340,0]],[1709344954,[340,340,0]],[1709344955,[340,340,0]],[1709344956,[340,340,0]],[1709344957,[340,340,0]],[1709344958,[340,340,0]],[1709344959,[340,340,0]],[1709344960,[340,340,0]],[1709344961,[340,340,0]],[1709344962,[340,340,0]],[1709344963,[340,340,0]],[1709344964,[340,340,0]],[1709344965,[340,340,0]],[1709344966,[340,340,0]],[1709344967,[340,340,0]],[1709344968,[340,340,0]],[1709344969,[340,340,0]],[1709344970,[340,340,0]],[1709344971,[340,340,0]],[1709344972,[340,340,0]],[1709344973,[340,340,0]],[1709344974,[340,340,0]],[1709344975,[340,340,0]],[1709344976,[340,340,0]],[1709344977,[340,340,0]],[1709344978,[340,340,0]],[1709344979,[340,340,0]],[1709344980,[340,340,0]],[1709344981,[340,340,0]],[1709344982,[340,340,0]],[1709344983,[340,340,0]],[1709344984,[340,340,0]],[1709344985,[340,340,0]],[1709344986,[340,340,0]],[1709344987,[340,340,0]],[1709344988,[340,340,0]],[1709344989,[340,340,0]],[1709344990,[340,340,0]],[1709344991,[340,340,0]],[1709344992,[340,340,0]],[1709344993,[340,340,0]],[1709344994,[340,340,0]],[1709344995,[340,340,0]],[1709344996,[340,340,0]],[1709344997,[340,340,0]],[1709344998,[340,340,0]],[1709344999,[340,340,0]],[1709345000,[340,340,0]],[1709345001,[340,340,0]],[1709345002,[340,340,0]],[1709345003,[340,340,0]],[1709345004,[340,340,0]],[1709345005,[340,340,0]],[1709345006,[340,340,0]],[1709345007,[340,340,0]],[1709345008,[340,340,0]],[1709345009,[340,340,0]],[1709345010,[340,340,0]],[1709345011,[340,340,0]],[1709345012,[340,340,0]],[1709345013,[340,340,0]],[1709345014,[340,340,0]],[1709345015,[340,340,0]],[1709345016,[340,340,0]],[1709345017,[340,340,0]],[1709345018,[340,340,0]],[1709345019,[340,340,0]],[1709345020,[340,340,0]],[1709345021,[340,340,0]],[1709345022,[340,340,0]],[1709345023,[503,503,0]]]);
var requestsChart = new Highcharts.StockChart({
chart: {
renderTo: 'requests',
zoomType: 'x',
marginBottom: 60
},
credits: { enabled: false },
legend: {
enabled: true,
floating: true,
y: -65,
borderWidth: 0,
itemStyle: { fontWeight: "normal" },
symbolRadius: 0
},
title: { text: 'A title to let highcharts reserve the place for the title set later' },
navigator: {
maskInside: false
},
rangeSelector: {
buttonSpacing: 0,
buttonTheme: {
fill: '#CFC9C6',
padding: 1,
stroke: '#000000',
'stroke-width': 0.25,
style: {
color: '#000000',
fontWeight: 'bold',
},
states: {
stroke: '#000000',
'stroke-width': 0.25,
hover: {
fill: '#92918C',
style: { color: 'black' }
},
select: {
fill: '#FFA900',
style: { color: 'white' }
}
}
},
buttons : [
{
type : 'minute',
count : 1,
text : '1m'
}, {
type : 'minute',
count : 10,
text : '10m'
}, {
type : 'hour',
count : 1,
text : '1h'
}, {
type : 'all',
count : 1,
text : 'All'
}
],
selected : 3,
inputEnabled : false
},
plotOptions: {
series: {
dataGrouping: { enabled: false }
},
area: {
stacking: 'normal'
}
},
xAxis: {
type: 'datetime',
ordinal: false,
maxZoom: 10000 // three days
},
yAxis:[