-
Notifications
You must be signed in to change notification settings - Fork 925
/
index.html
1173 lines (1104 loc) · 93.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-02-22 13:15:49 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 - gldmelo-cs-py-hibrid">
<span class="simulation-information-label">Description: </span>
<span>Rinha de Backend - 2024/Q1: Crébito - gldmelo-cs-py-hibrid</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: [
[1708607749000,0],[1708607750000,0],[1708607751000,0],[1708607752000,0],[1708607753000,1],[1708607754000,1],[1708607755000,2],[1708607756000,4],[1708607757000,4],[1708607758000,5],[1708607759000,6],[1708607760000,7],[1708607761000,8],[1708607762000,8],[1708607763000,10],[1708607764000,10],[1708607765000,12],[1708607766000,12],[1708607767000,14],[1708607768000,14],[1708607769000,15],[1708607770000,16],[1708607771000,17],[1708607772000,17],[1708607773000,19],[1708607774000,20],[1708607775000,20],[1708607776000,22],[1708607777000,22],[1708607778000,23],[1708607779000,25],[1708607780000,25],[1708607781000,26],[1708607782000,26],[1708607783000,28],[1708607784000,29],[1708607785000,30],[1708607786000,30],[1708607787000,32],[1708607788000,32],[1708607789000,33],[1708607790000,34],[1708607791000,35],[1708607792000,36],[1708607793000,37],[1708607794000,38],[1708607795000,39],[1708607796000,39],[1708607797000,41],[1708607798000,41],[1708607799000,43],[1708607800000,43],[1708607801000,44],[1708607802000,45],[1708607803000,46],[1708607804000,48],[1708607805000,48],[1708607806000,49],[1708607807000,50],[1708607808000,51],[1708607809000,53],[1708607810000,53],[1708607811000,54],[1708607812000,55],[1708607813000,57],[1708607814000,56],[1708607815000,58],[1708607816000,59],[1708607817000,59],[1708607818000,59],[1708607819000,61],[1708607820000,61],[1708607821000,63],[1708607822000,63],[1708607823000,64],[1708607824000,65],[1708607825000,66],[1708607826000,67],[1708607827000,68],[1708607828000,68],[1708607829000,70],[1708607830000,70],[1708607831000,72],[1708607832000,72],[1708607833000,73],[1708607834000,74],[1708607835000,75],[1708607836000,76],[1708607837000,77],[1708607838000,78],[1708607839000,79],[1708607840000,80],[1708607841000,81],[1708607842000,81],[1708607843000,82],[1708607844000,83],[1708607845000,85],[1708607846000,85],[1708607847000,86],[1708607848000,86],[1708607849000,88],[1708607850000,89],[1708607851000,89],[1708607852000,91],[1708607853000,91],[1708607854000,92],[1708607855000,94],[1708607856000,94],[1708607857000,96],[1708607858000,96],[1708607859000,98],[1708607860000,98],[1708607861000,100],[1708607862000,100],[1708607863000,102],[1708607864000,102],[1708607865000,104],[1708607866000,104],[1708607867000,105],[1708607868000,106],[1708607869000,107],[1708607870000,108],[1708607871000,108],[1708607872000,109],[1708607873000,111],[1708607874000,111],[1708607875000,111],[1708607876000,111],[1708607877000,111],[1708607878000,112],[1708607879000,111],[1708607880000,111],[1708607881000,111],[1708607882000,110],[1708607883000,111],[1708607884000,111],[1708607885000,111],[1708607886000,110],[1708607887000,110],[1708607888000,111],[1708607889000,111],[1708607890000,110],[1708607891000,111],[1708607892000,110],[1708607893000,110],[1708607894000,111],[1708607895000,111],[1708607896000,111],[1708607897000,110],[1708607898000,111],[1708607899000,111],[1708607900000,111],[1708607901000,111],[1708607902000,111],[1708607903000,111],[1708607904000,111],[1708607905000,111],[1708607906000,111],[1708607907000,111],[1708607908000,111],[1708607909000,111],[1708607910000,111],[1708607911000,110],[1708607912000,111],[1708607913000,111],[1708607914000,111],[1708607915000,111],[1708607916000,111],[1708607917000,111],[1708607918000,111],[1708607919000,111],[1708607920000,111],[1708607921000,111],[1708607922000,110],[1708607923000,111],[1708607924000,110],[1708607925000,111],[1708607926000,111],[1708607927000,111],[1708607928000,111],[1708607929000,110],[1708607930000,111],[1708607931000,111],[1708607932000,111],[1708607933000,111],[1708607934000,111],[1708607935000,111],[1708607936000,111],[1708607937000,111],[1708607938000,111],[1708607939000,111],[1708607940000,110],[1708607941000,111],[1708607942000,110],[1708607943000,111],[1708607944000,110],[1708607945000,111],[1708607946000,111],[1708607947000,111],[1708607948000,110],[1708607949000,111],[1708607950000,111],[1708607951000,111],[1708607952000,111],[1708607953000,111],[1708607954000,111],[1708607955000,111],[1708607956000,110],[1708607957000,111],[1708607958000,111],[1708607959000,111],[1708607960000,111],[1708607961000,111],[1708607962000,112],[1708607963000,110],[1708607964000,111],[1708607965000,111],[1708607966000,111],[1708607967000,111],[1708607968000,111],[1708607969000,110],[1708607970000,111],[1708607971000,111],[1708607972000,110],[1708607973000,110],[1708607974000,111],[1708607975000,111],[1708607976000,111],[1708607977000,111],[1708607978000,110],[1708607979000,111],[1708607980000,111],[1708607981000,111],[1708607982000,111],[1708607983000,110],[1708607984000,112],[1708607985000,110],[1708607986000,111],[1708607987000,110],[1708607988000,111],[1708607989000,111],[1708607990000,111],[1708607991000,111],[1708607992000,111],[1708607993000,108]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#68b65c',
name: 'débitos',
data: [
[1708607749000,0],[1708607750000,0],[1708607751000,0],[1708607752000,0],[1708607753000,1],[1708607754000,1],[1708607755000,4],[1708607756000,6],[1708607757000,7],[1708607758000,9],[1708607759000,11],[1708607760000,13],[1708607761000,15],[1708607762000,16],[1708607763000,19],[1708607764000,20],[1708607765000,22],[1708607766000,24],[1708607767000,25],[1708607768000,28],[1708607769000,29],[1708607770000,31],[1708607771000,33],[1708607772000,35],[1708607773000,37],[1708607774000,38],[1708607775000,40],[1708607776000,42],[1708607777000,44],[1708607778000,46],[1708607779000,47],[1708607780000,51],[1708607781000,52],[1708607782000,54],[1708607783000,55],[1708607784000,57],[1708607785000,59],[1708607786000,60],[1708607787000,63],[1708607788000,64],[1708607789000,66],[1708607790000,68],[1708607791000,69],[1708607792000,71],[1708607793000,74],[1708607794000,74],[1708607795000,77],[1708607796000,79],[1708607797000,80],[1708607798000,82],[1708607799000,84],[1708607800000,86],[1708607801000,88],[1708607802000,89],[1708607803000,92],[1708607804000,93],[1708607805000,95],[1708607806000,98],[1708607807000,99],[1708607808000,102],[1708607809000,103],[1708607810000,105],[1708607811000,107],[1708607812000,108],[1708607813000,111],[1708607814000,112],[1708607815000,113],[1708607816000,116],[1708607817000,117],[1708607818000,119],[1708607819000,120],[1708607820000,123],[1708607821000,124],[1708607822000,126],[1708607823000,128],[1708607824000,129],[1708607825000,132],[1708607826000,133],[1708607827000,135],[1708607828000,137],[1708607829000,139],[1708607830000,141],[1708607831000,142],[1708607832000,145],[1708607833000,148],[1708607834000,148],[1708607835000,151],[1708607836000,153],[1708607837000,154],[1708607838000,156],[1708607839000,158],[1708607840000,159],[1708607841000,161],[1708607842000,162],[1708607843000,165],[1708607844000,167],[1708607845000,168],[1708607846000,170],[1708607847000,171],[1708607848000,174],[1708607849000,175],[1708607850000,177],[1708607851000,179],[1708607852000,181],[1708607853000,183],[1708607854000,184],[1708607855000,186],[1708607856000,188],[1708607857000,191],[1708607858000,192],[1708607859000,193],[1708607860000,197],[1708607861000,198],[1708607862000,200],[1708607863000,202],[1708607864000,203],[1708607865000,205],[1708607866000,207],[1708607867000,209],[1708607868000,210],[1708607869000,213],[1708607870000,214],[1708607871000,216],[1708607872000,218],[1708607873000,221],[1708607874000,221],[1708607875000,221],[1708607876000,221],[1708607877000,221],[1708607878000,221],[1708607879000,221],[1708607880000,221],[1708607881000,221],[1708607882000,220],[1708607883000,221],[1708607884000,220],[1708607885000,221],[1708607886000,221],[1708607887000,220],[1708607888000,221],[1708607889000,221],[1708607890000,221],[1708607891000,221],[1708607892000,221],[1708607893000,221],[1708607894000,221],[1708607895000,221],[1708607896000,221],[1708607897000,220],[1708607898000,221],[1708607899000,220],[1708607900000,221],[1708607901000,220],[1708607902000,221],[1708607903000,221],[1708607904000,221],[1708607905000,221],[1708607906000,222],[1708607907000,222],[1708607908000,221],[1708607909000,220],[1708607910000,221],[1708607911000,220],[1708607912000,220],[1708607913000,221],[1708607914000,221],[1708607915000,220],[1708607916000,220],[1708607917000,221],[1708607918000,220],[1708607919000,221],[1708607920000,221],[1708607921000,221],[1708607922000,220],[1708607923000,221],[1708607924000,221],[1708607925000,221],[1708607926000,223],[1708607927000,221],[1708607928000,221],[1708607929000,220],[1708607930000,221],[1708607931000,220],[1708607932000,220],[1708607933000,220],[1708607934000,221],[1708607935000,221],[1708607936000,221],[1708607937000,220],[1708607938000,220],[1708607939000,221],[1708607940000,221],[1708607941000,221],[1708607942000,221],[1708607943000,221],[1708607944000,220],[1708607945000,221],[1708607946000,220],[1708607947000,221],[1708607948000,221],[1708607949000,221],[1708607950000,221],[1708607951000,222],[1708607952000,220],[1708607953000,221],[1708607954000,221],[1708607955000,221],[1708607956000,221],[1708607957000,221],[1708607958000,221],[1708607959000,221],[1708607960000,221],[1708607961000,221],[1708607962000,222],[1708607963000,221],[1708607964000,221],[1708607965000,220],[1708607966000,220],[1708607967000,221],[1708607968000,220],[1708607969000,221],[1708607970000,221],[1708607971000,221],[1708607972000,220],[1708607973000,220],[1708607974000,221],[1708607975000,220],[1708607976000,221],[1708607977000,220],[1708607978000,221],[1708607979000,221],[1708607980000,221],[1708607981000,221],[1708607982000,221],[1708607983000,221],[1708607984000,222],[1708607985000,220],[1708607986000,223],[1708607987000,221],[1708607988000,221],[1708607989000,221],[1708607990000,221],[1708607991000,220],[1708607992000,221],[1708607993000,216]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#f15b4f',
name: 'extratos',
data: [
[1708607749000,0],[1708607750000,0],[1708607751000,0],[1708607752000,0],[1708607753000,1],[1708607754000,1],[1708607755000,1],[1708607756000,1],[1708607757000,1],[1708607758000,1],[1708607759000,2],[1708607760000,1],[1708607761000,2],[1708607762000,2],[1708607763000,1],[1708607764000,2],[1708607765000,2],[1708607766000,2],[1708607767000,2],[1708607768000,2],[1708607769000,2],[1708607770000,2],[1708607771000,3],[1708607772000,2],[1708607773000,3],[1708607774000,2],[1708607775000,3],[1708607776000,2],[1708607777000,3],[1708607778000,3],[1708607779000,3],[1708607780000,3],[1708607781000,3],[1708607782000,3],[1708607783000,3],[1708607784000,4],[1708607785000,3],[1708607786000,3],[1708607787000,4],[1708607788000,3],[1708607789000,4],[1708607790000,4],[1708607791000,4],[1708607792000,4],[1708607793000,4],[1708607794000,4],[1708607795000,4],[1708607796000,4],[1708607797000,4],[1708607798000,4],[1708607799000,5],[1708607800000,4],[1708607801000,5],[1708607802000,5],[1708607803000,4],[1708607804000,5],[1708607805000,5],[1708607806000,5],[1708607807000,5],[1708607808000,5],[1708607809000,5],[1708607810000,5],[1708607811000,6],[1708607812000,5],[1708607813000,6],[1708607814000,5],[1708607815000,6],[1708607816000,5],[1708607817000,6],[1708607818000,6],[1708607819000,6],[1708607820000,6],[1708607821000,6],[1708607822000,6],[1708607823000,6],[1708607824000,7],[1708607825000,6],[1708607826000,6],[1708607827000,7],[1708607828000,6],[1708607829000,7],[1708607830000,7],[1708607831000,7],[1708607832000,7],[1708607833000,7],[1708607834000,7],[1708607835000,7],[1708607836000,7],[1708607837000,7],[1708607838000,7],[1708607839000,8],[1708607840000,7],[1708607841000,8],[1708607842000,8],[1708607843000,7],[1708607844000,8],[1708607845000,8],[1708607846000,8],[1708607847000,8],[1708607848000,8],[1708607849000,8],[1708607850000,8],[1708607851000,9],[1708607852000,8],[1708607853000,9],[1708607854000,8],[1708607855000,9],[1708607856000,8],[1708607857000,9],[1708607858000,9],[1708607859000,9],[1708607860000,9],[1708607861000,9],[1708607862000,9],[1708607863000,9],[1708607864000,10],[1708607865000,9],[1708607866000,9],[1708607867000,10],[1708607868000,9],[1708607869000,10],[1708607870000,10],[1708607871000,10],[1708607872000,10],[1708607873000,10],[1708607874000,10],[1708607875000,10],[1708607876000,10],[1708607877000,10],[1708607878000,10],[1708607879000,10],[1708607880000,10],[1708607881000,10],[1708607882000,10],[1708607883000,10],[1708607884000,10],[1708607885000,10],[1708607886000,10],[1708607887000,10],[1708607888000,10],[1708607889000,10],[1708607890000,10],[1708607891000,10],[1708607892000,10],[1708607893000,10],[1708607894000,10],[1708607895000,10],[1708607896000,10],[1708607897000,10],[1708607898000,10],[1708607899000,10],[1708607900000,10],[1708607901000,10],[1708607902000,10],[1708607903000,10],[1708607904000,10],[1708607905000,10],[1708607906000,10],[1708607907000,10],[1708607908000,10],[1708607909000,10],[1708607910000,10],[1708607911000,10],[1708607912000,10],[1708607913000,10],[1708607914000,10],[1708607915000,10],[1708607916000,10],[1708607917000,10],[1708607918000,10],[1708607919000,10],[1708607920000,10],[1708607921000,10],[1708607922000,10],[1708607923000,10],[1708607924000,10],[1708607925000,10],[1708607926000,10],[1708607927000,10],[1708607928000,10],[1708607929000,10],[1708607930000,10],[1708607931000,10],[1708607932000,10],[1708607933000,10],[1708607934000,10],[1708607935000,10],[1708607936000,10],[1708607937000,10],[1708607938000,10],[1708607939000,10],[1708607940000,10],[1708607941000,10],[1708607942000,10],[1708607943000,10],[1708607944000,10],[1708607945000,10],[1708607946000,10],[1708607947000,10],[1708607948000,10],[1708607949000,10],[1708607950000,10],[1708607951000,10],[1708607952000,10],[1708607953000,10],[1708607954000,10],[1708607955000,10],[1708607956000,10],[1708607957000,10],[1708607958000,10],[1708607959000,10],[1708607960000,10],[1708607961000,10],[1708607962000,10],[1708607963000,10],[1708607964000,10],[1708607965000,10],[1708607966000,10],[1708607967000,10],[1708607968000,10],[1708607969000,10],[1708607970000,10],[1708607971000,10],[1708607972000,10],[1708607973000,10],[1708607974000,10],[1708607975000,10],[1708607976000,10],[1708607977000,10],[1708607978000,10],[1708607979000,10],[1708607980000,10],[1708607981000,10],[1708607982000,10],[1708607983000,10],[1708607984000,10],[1708607985000,10],[1708607986000,10],[1708607987000,10],[1708607988000,10],[1708607989000,10],[1708607990000,10],[1708607991000,10],[1708607992000,10],[1708607993000,9]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FFDD00',
name: 'validações',
data: [
[1708607749000,0],[1708607750000,0],[1708607751000,0],[1708607752000,5],[1708607753000,5],[1708607754000,0],[1708607755000,0],[1708607756000,0],[1708607757000,0],[1708607758000,0],[1708607759000,0],[1708607760000,0],[1708607761000,0],[1708607762000,0],[1708607763000,0],[1708607764000,0],[1708607765000,0],[1708607766000,0],[1708607767000,0],[1708607768000,0],[1708607769000,0],[1708607770000,0],[1708607771000,0],[1708607772000,0],[1708607773000,0],[1708607774000,0],[1708607775000,0],[1708607776000,0],[1708607777000,0],[1708607778000,0],[1708607779000,0],[1708607780000,0],[1708607781000,0],[1708607782000,0],[1708607783000,0],[1708607784000,0],[1708607785000,0],[1708607786000,0],[1708607787000,0],[1708607788000,0],[1708607789000,0],[1708607790000,0],[1708607791000,0],[1708607792000,0],[1708607793000,0],[1708607794000,0],[1708607795000,0],[1708607796000,0],[1708607797000,0],[1708607798000,0],[1708607799000,0],[1708607800000,0],[1708607801000,0],[1708607802000,0],[1708607803000,0],[1708607804000,0],[1708607805000,0],[1708607806000,0],[1708607807000,0],[1708607808000,0],[1708607809000,0],[1708607810000,0],[1708607811000,0],[1708607812000,0],[1708607813000,0],[1708607814000,0],[1708607815000,0],[1708607816000,0],[1708607817000,0],[1708607818000,0],[1708607819000,0],[1708607820000,0],[1708607821000,0],[1708607822000,0],[1708607823000,0],[1708607824000,0],[1708607825000,0],[1708607826000,0],[1708607827000,0],[1708607828000,0],[1708607829000,0],[1708607830000,0],[1708607831000,0],[1708607832000,0],[1708607833000,0],[1708607834000,0],[1708607835000,0],[1708607836000,0],[1708607837000,0],[1708607838000,0],[1708607839000,0],[1708607840000,0],[1708607841000,0],[1708607842000,0],[1708607843000,0],[1708607844000,0],[1708607845000,0],[1708607846000,0],[1708607847000,0],[1708607848000,0],[1708607849000,0],[1708607850000,0],[1708607851000,0],[1708607852000,0],[1708607853000,0],[1708607854000,0],[1708607855000,0],[1708607856000,0],[1708607857000,0],[1708607858000,0],[1708607859000,0],[1708607860000,0],[1708607861000,0],[1708607862000,0],[1708607863000,0],[1708607864000,0],[1708607865000,0],[1708607866000,0],[1708607867000,0],[1708607868000,0],[1708607869000,0],[1708607870000,0],[1708607871000,0],[1708607872000,0],[1708607873000,0],[1708607874000,0],[1708607875000,0],[1708607876000,0],[1708607877000,0],[1708607878000,0],[1708607879000,0],[1708607880000,0],[1708607881000,0],[1708607882000,0],[1708607883000,0],[1708607884000,0],[1708607885000,0],[1708607886000,0],[1708607887000,0],[1708607888000,0],[1708607889000,0],[1708607890000,0],[1708607891000,0],[1708607892000,0],[1708607893000,0],[1708607894000,0],[1708607895000,0],[1708607896000,0],[1708607897000,0],[1708607898000,0],[1708607899000,0],[1708607900000,0],[1708607901000,0],[1708607902000,0],[1708607903000,0],[1708607904000,0],[1708607905000,0],[1708607906000,0],[1708607907000,0],[1708607908000,0],[1708607909000,0],[1708607910000,0],[1708607911000,0],[1708607912000,0],[1708607913000,0],[1708607914000,0],[1708607915000,0],[1708607916000,0],[1708607917000,0],[1708607918000,0],[1708607919000,0],[1708607920000,0],[1708607921000,0],[1708607922000,0],[1708607923000,0],[1708607924000,0],[1708607925000,0],[1708607926000,0],[1708607927000,0],[1708607928000,0],[1708607929000,0],[1708607930000,0],[1708607931000,0],[1708607932000,0],[1708607933000,0],[1708607934000,0],[1708607935000,0],[1708607936000,0],[1708607937000,0],[1708607938000,0],[1708607939000,0],[1708607940000,0],[1708607941000,0],[1708607942000,0],[1708607943000,0],[1708607944000,0],[1708607945000,0],[1708607946000,0],[1708607947000,0],[1708607948000,0],[1708607949000,0],[1708607950000,0],[1708607951000,0],[1708607952000,0],[1708607953000,0],[1708607954000,0],[1708607955000,0],[1708607956000,0],[1708607957000,0],[1708607958000,0],[1708607959000,0],[1708607960000,0],[1708607961000,0],[1708607962000,0],[1708607963000,0],[1708607964000,0],[1708607965000,0],[1708607966000,0],[1708607967000,0],[1708607968000,0],[1708607969000,0],[1708607970000,0],[1708607971000,0],[1708607972000,0],[1708607973000,0],[1708607974000,0],[1708607975000,0],[1708607976000,0],[1708607977000,0],[1708607978000,0],[1708607979000,0],[1708607980000,0],[1708607981000,0],[1708607982000,0],[1708607983000,0],[1708607984000,0],[1708607985000,0],[1708607986000,0],[1708607987000,0],[1708607988000,0],[1708607989000,0],[1708607990000,0],[1708607991000,0],[1708607992000,0],[1708607993000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00D5FF',
name: 'validação HTTP 404',
data: [
[1708607749000,0],[1708607750000,0],[1708607751000,0],[1708607752000,1],[1708607753000,0],[1708607754000,0],[1708607755000,0],[1708607756000,0],[1708607757000,0],[1708607758000,0],[1708607759000,0],[1708607760000,0],[1708607761000,0],[1708607762000,0],[1708607763000,0],[1708607764000,0],[1708607765000,0],[1708607766000,0],[1708607767000,0],[1708607768000,0],[1708607769000,0],[1708607770000,0],[1708607771000,0],[1708607772000,0],[1708607773000,0],[1708607774000,0],[1708607775000,0],[1708607776000,0],[1708607777000,0],[1708607778000,0],[1708607779000,0],[1708607780000,0],[1708607781000,0],[1708607782000,0],[1708607783000,0],[1708607784000,0],[1708607785000,0],[1708607786000,0],[1708607787000,0],[1708607788000,0],[1708607789000,0],[1708607790000,0],[1708607791000,0],[1708607792000,0],[1708607793000,0],[1708607794000,0],[1708607795000,0],[1708607796000,0],[1708607797000,0],[1708607798000,0],[1708607799000,0],[1708607800000,0],[1708607801000,0],[1708607802000,0],[1708607803000,0],[1708607804000,0],[1708607805000,0],[1708607806000,0],[1708607807000,0],[1708607808000,0],[1708607809000,0],[1708607810000,0],[1708607811000,0],[1708607812000,0],[1708607813000,0],[1708607814000,0],[1708607815000,0],[1708607816000,0],[1708607817000,0],[1708607818000,0],[1708607819000,0],[1708607820000,0],[1708607821000,0],[1708607822000,0],[1708607823000,0],[1708607824000,0],[1708607825000,0],[1708607826000,0],[1708607827000,0],[1708607828000,0],[1708607829000,0],[1708607830000,0],[1708607831000,0],[1708607832000,0],[1708607833000,0],[1708607834000,0],[1708607835000,0],[1708607836000,0],[1708607837000,0],[1708607838000,0],[1708607839000,0],[1708607840000,0],[1708607841000,0],[1708607842000,0],[1708607843000,0],[1708607844000,0],[1708607845000,0],[1708607846000,0],[1708607847000,0],[1708607848000,0],[1708607849000,0],[1708607850000,0],[1708607851000,0],[1708607852000,0],[1708607853000,0],[1708607854000,0],[1708607855000,0],[1708607856000,0],[1708607857000,0],[1708607858000,0],[1708607859000,0],[1708607860000,0],[1708607861000,0],[1708607862000,0],[1708607863000,0],[1708607864000,0],[1708607865000,0],[1708607866000,0],[1708607867000,0],[1708607868000,0],[1708607869000,0],[1708607870000,0],[1708607871000,0],[1708607872000,0],[1708607873000,0],[1708607874000,0],[1708607875000,0],[1708607876000,0],[1708607877000,0],[1708607878000,0],[1708607879000,0],[1708607880000,0],[1708607881000,0],[1708607882000,0],[1708607883000,0],[1708607884000,0],[1708607885000,0],[1708607886000,0],[1708607887000,0],[1708607888000,0],[1708607889000,0],[1708607890000,0],[1708607891000,0],[1708607892000,0],[1708607893000,0],[1708607894000,0],[1708607895000,0],[1708607896000,0],[1708607897000,0],[1708607898000,0],[1708607899000,0],[1708607900000,0],[1708607901000,0],[1708607902000,0],[1708607903000,0],[1708607904000,0],[1708607905000,0],[1708607906000,0],[1708607907000,0],[1708607908000,0],[1708607909000,0],[1708607910000,0],[1708607911000,0],[1708607912000,0],[1708607913000,0],[1708607914000,0],[1708607915000,0],[1708607916000,0],[1708607917000,0],[1708607918000,0],[1708607919000,0],[1708607920000,0],[1708607921000,0],[1708607922000,0],[1708607923000,0],[1708607924000,0],[1708607925000,0],[1708607926000,0],[1708607927000,0],[1708607928000,0],[1708607929000,0],[1708607930000,0],[1708607931000,0],[1708607932000,0],[1708607933000,0],[1708607934000,0],[1708607935000,0],[1708607936000,0],[1708607937000,0],[1708607938000,0],[1708607939000,0],[1708607940000,0],[1708607941000,0],[1708607942000,0],[1708607943000,0],[1708607944000,0],[1708607945000,0],[1708607946000,0],[1708607947000,0],[1708607948000,0],[1708607949000,0],[1708607950000,0],[1708607951000,0],[1708607952000,0],[1708607953000,0],[1708607954000,0],[1708607955000,0],[1708607956000,0],[1708607957000,0],[1708607958000,0],[1708607959000,0],[1708607960000,0],[1708607961000,0],[1708607962000,0],[1708607963000,0],[1708607964000,0],[1708607965000,0],[1708607966000,0],[1708607967000,0],[1708607968000,0],[1708607969000,0],[1708607970000,0],[1708607971000,0],[1708607972000,0],[1708607973000,0],[1708607974000,0],[1708607975000,0],[1708607976000,0],[1708607977000,0],[1708607978000,0],[1708607979000,0],[1708607980000,0],[1708607981000,0],[1708607982000,0],[1708607983000,0],[1708607984000,0],[1708607985000,0],[1708607986000,0],[1708607987000,0],[1708607988000,0],[1708607989000,0],[1708607990000,0],[1708607991000,0],[1708607992000,0],[1708607993000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00FF00',
name: 'validação concorrência saldo - 0',
data: [
[1708607749000,0],[1708607750000,0],[1708607751000,1],[1708607752000,0],[1708607753000,0],[1708607754000,0],[1708607755000,0],[1708607756000,0],[1708607757000,0],[1708607758000,0],[1708607759000,0],[1708607760000,0],[1708607761000,0],[1708607762000,0],[1708607763000,0],[1708607764000,0],[1708607765000,0],[1708607766000,0],[1708607767000,0],[1708607768000,0],[1708607769000,0],[1708607770000,0],[1708607771000,0],[1708607772000,0],[1708607773000,0],[1708607774000,0],[1708607775000,0],[1708607776000,0],[1708607777000,0],[1708607778000,0],[1708607779000,0],[1708607780000,0],[1708607781000,0],[1708607782000,0],[1708607783000,0],[1708607784000,0],[1708607785000,0],[1708607786000,0],[1708607787000,0],[1708607788000,0],[1708607789000,0],[1708607790000,0],[1708607791000,0],[1708607792000,0],[1708607793000,0],[1708607794000,0],[1708607795000,0],[1708607796000,0],[1708607797000,0],[1708607798000,0],[1708607799000,0],[1708607800000,0],[1708607801000,0],[1708607802000,0],[1708607803000,0],[1708607804000,0],[1708607805000,0],[1708607806000,0],[1708607807000,0],[1708607808000,0],[1708607809000,0],[1708607810000,0],[1708607811000,0],[1708607812000,0],[1708607813000,0],[1708607814000,0],[1708607815000,0],[1708607816000,0],[1708607817000,0],[1708607818000,0],[1708607819000,0],[1708607820000,0],[1708607821000,0],[1708607822000,0],[1708607823000,0],[1708607824000,0],[1708607825000,0],[1708607826000,0],[1708607827000,0],[1708607828000,0],[1708607829000,0],[1708607830000,0],[1708607831000,0],[1708607832000,0],[1708607833000,0],[1708607834000,0],[1708607835000,0],[1708607836000,0],[1708607837000,0],[1708607838000,0],[1708607839000,0],[1708607840000,0],[1708607841000,0],[1708607842000,0],[1708607843000,0],[1708607844000,0],[1708607845000,0],[1708607846000,0],[1708607847000,0],[1708607848000,0],[1708607849000,0],[1708607850000,0],[1708607851000,0],[1708607852000,0],[1708607853000,0],[1708607854000,0],[1708607855000,0],[1708607856000,0],[1708607857000,0],[1708607858000,0],[1708607859000,0],[1708607860000,0],[1708607861000,0],[1708607862000,0],[1708607863000,0],[1708607864000,0],[1708607865000,0],[1708607866000,0],[1708607867000,0],[1708607868000,0],[1708607869000,0],[1708607870000,0],[1708607871000,0],[1708607872000,0],[1708607873000,0],[1708607874000,0],[1708607875000,0],[1708607876000,0],[1708607877000,0],[1708607878000,0],[1708607879000,0],[1708607880000,0],[1708607881000,0],[1708607882000,0],[1708607883000,0],[1708607884000,0],[1708607885000,0],[1708607886000,0],[1708607887000,0],[1708607888000,0],[1708607889000,0],[1708607890000,0],[1708607891000,0],[1708607892000,0],[1708607893000,0],[1708607894000,0],[1708607895000,0],[1708607896000,0],[1708607897000,0],[1708607898000,0],[1708607899000,0],[1708607900000,0],[1708607901000,0],[1708607902000,0],[1708607903000,0],[1708607904000,0],[1708607905000,0],[1708607906000,0],[1708607907000,0],[1708607908000,0],[1708607909000,0],[1708607910000,0],[1708607911000,0],[1708607912000,0],[1708607913000,0],[1708607914000,0],[1708607915000,0],[1708607916000,0],[1708607917000,0],[1708607918000,0],[1708607919000,0],[1708607920000,0],[1708607921000,0],[1708607922000,0],[1708607923000,0],[1708607924000,0],[1708607925000,0],[1708607926000,0],[1708607927000,0],[1708607928000,0],[1708607929000,0],[1708607930000,0],[1708607931000,0],[1708607932000,0],[1708607933000,0],[1708607934000,0],[1708607935000,0],[1708607936000,0],[1708607937000,0],[1708607938000,0],[1708607939000,0],[1708607940000,0],[1708607941000,0],[1708607942000,0],[1708607943000,0],[1708607944000,0],[1708607945000,0],[1708607946000,0],[1708607947000,0],[1708607948000,0],[1708607949000,0],[1708607950000,0],[1708607951000,0],[1708607952000,0],[1708607953000,0],[1708607954000,0],[1708607955000,0],[1708607956000,0],[1708607957000,0],[1708607958000,0],[1708607959000,0],[1708607960000,0],[1708607961000,0],[1708607962000,0],[1708607963000,0],[1708607964000,0],[1708607965000,0],[1708607966000,0],[1708607967000,0],[1708607968000,0],[1708607969000,0],[1708607970000,0],[1708607971000,0],[1708607972000,0],[1708607973000,0],[1708607974000,0],[1708607975000,0],[1708607976000,0],[1708607977000,0],[1708607978000,0],[1708607979000,0],[1708607980000,0],[1708607981000,0],[1708607982000,0],[1708607983000,0],[1708607984000,0],[1708607985000,0],[1708607986000,0],[1708607987000,0],[1708607988000,0],[1708607989000,0],[1708607990000,0],[1708607991000,0],[1708607992000,0],[1708607993000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#9D00FF',
name: 'validação concorrência transações - c',
data: [
[1708607749000,0],[1708607750000,25],[1708607751000,20],[1708607752000,0],[1708607753000,0],[1708607754000,0],[1708607755000,0],[1708607756000,0],[1708607757000,0],[1708607758000,0],[1708607759000,0],[1708607760000,0],[1708607761000,0],[1708607762000,0],[1708607763000,0],[1708607764000,0],[1708607765000,0],[1708607766000,0],[1708607767000,0],[1708607768000,0],[1708607769000,0],[1708607770000,0],[1708607771000,0],[1708607772000,0],[1708607773000,0],[1708607774000,0],[1708607775000,0],[1708607776000,0],[1708607777000,0],[1708607778000,0],[1708607779000,0],[1708607780000,0],[1708607781000,0],[1708607782000,0],[1708607783000,0],[1708607784000,0],[1708607785000,0],[1708607786000,0],[1708607787000,0],[1708607788000,0],[1708607789000,0],[1708607790000,0],[1708607791000,0],[1708607792000,0],[1708607793000,0],[1708607794000,0],[1708607795000,0],[1708607796000,0],[1708607797000,0],[1708607798000,0],[1708607799000,0],[1708607800000,0],[1708607801000,0],[1708607802000,0],[1708607803000,0],[1708607804000,0],[1708607805000,0],[1708607806000,0],[1708607807000,0],[1708607808000,0],[1708607809000,0],[1708607810000,0],[1708607811000,0],[1708607812000,0],[1708607813000,0],[1708607814000,0],[1708607815000,0],[1708607816000,0],[1708607817000,0],[1708607818000,0],[1708607819000,0],[1708607820000,0],[1708607821000,0],[1708607822000,0],[1708607823000,0],[1708607824000,0],[1708607825000,0],[1708607826000,0],[1708607827000,0],[1708607828000,0],[1708607829000,0],[1708607830000,0],[1708607831000,0],[1708607832000,0],[1708607833000,0],[1708607834000,0],[1708607835000,0],[1708607836000,0],[1708607837000,0],[1708607838000,0],[1708607839000,0],[1708607840000,0],[1708607841000,0],[1708607842000,0],[1708607843000,0],[1708607844000,0],[1708607845000,0],[1708607846000,0],[1708607847000,0],[1708607848000,0],[1708607849000,0],[1708607850000,0],[1708607851000,0],[1708607852000,0],[1708607853000,0],[1708607854000,0],[1708607855000,0],[1708607856000,0],[1708607857000,0],[1708607858000,0],[1708607859000,0],[1708607860000,0],[1708607861000,0],[1708607862000,0],[1708607863000,0],[1708607864000,0],[1708607865000,0],[1708607866000,0],[1708607867000,0],[1708607868000,0],[1708607869000,0],[1708607870000,0],[1708607871000,0],[1708607872000,0],[1708607873000,0],[1708607874000,0],[1708607875000,0],[1708607876000,0],[1708607877000,0],[1708607878000,0],[1708607879000,0],[1708607880000,0],[1708607881000,0],[1708607882000,0],[1708607883000,0],[1708607884000,0],[1708607885000,0],[1708607886000,0],[1708607887000,0],[1708607888000,0],[1708607889000,0],[1708607890000,0],[1708607891000,0],[1708607892000,0],[1708607893000,0],[1708607894000,0],[1708607895000,0],[1708607896000,0],[1708607897000,0],[1708607898000,0],[1708607899000,0],[1708607900000,0],[1708607901000,0],[1708607902000,0],[1708607903000,0],[1708607904000,0],[1708607905000,0],[1708607906000,0],[1708607907000,0],[1708607908000,0],[1708607909000,0],[1708607910000,0],[1708607911000,0],[1708607912000,0],[1708607913000,0],[1708607914000,0],[1708607915000,0],[1708607916000,0],[1708607917000,0],[1708607918000,0],[1708607919000,0],[1708607920000,0],[1708607921000,0],[1708607922000,0],[1708607923000,0],[1708607924000,0],[1708607925000,0],[1708607926000,0],[1708607927000,0],[1708607928000,0],[1708607929000,0],[1708607930000,0],[1708607931000,0],[1708607932000,0],[1708607933000,0],[1708607934000,0],[1708607935000,0],[1708607936000,0],[1708607937000,0],[1708607938000,0],[1708607939000,0],[1708607940000,0],[1708607941000,0],[1708607942000,0],[1708607943000,0],[1708607944000,0],[1708607945000,0],[1708607946000,0],[1708607947000,0],[1708607948000,0],[1708607949000,0],[1708607950000,0],[1708607951000,0],[1708607952000,0],[1708607953000,0],[1708607954000,0],[1708607955000,0],[1708607956000,0],[1708607957000,0],[1708607958000,0],[1708607959000,0],[1708607960000,0],[1708607961000,0],[1708607962000,0],[1708607963000,0],[1708607964000,0],[1708607965000,0],[1708607966000,0],[1708607967000,0],[1708607968000,0],[1708607969000,0],[1708607970000,0],[1708607971000,0],[1708607972000,0],[1708607973000,0],[1708607974000,0],[1708607975000,0],[1708607976000,0],[1708607977000,0],[1708607978000,0],[1708607979000,0],[1708607980000,0],[1708607981000,0],[1708607982000,0],[1708607983000,0],[1708607984000,0],[1708607985000,0],[1708607986000,0],[1708607987000,0],[1708607988000,0],[1708607989000,0],[1708607990000,0],[1708607991000,0],[1708607992000,0],[1708607993000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FF00E1',
name: 'validação concorrência saldo - -25',
data: [
[1708607749000,1],[1708607750000,1],[1708607751000,0],[1708607752000,0],[1708607753000,0],[1708607754000,0],[1708607755000,0],[1708607756000,0],[1708607757000,0],[1708607758000,0],[1708607759000,0],[1708607760000,0],[1708607761000,0],[1708607762000,0],[1708607763000,0],[1708607764000,0],[1708607765000,0],[1708607766000,0],[1708607767000,0],[1708607768000,0],[1708607769000,0],[1708607770000,0],[1708607771000,0],[1708607772000,0],[1708607773000,0],[1708607774000,0],[1708607775000,0],[1708607776000,0],[1708607777000,0],[1708607778000,0],[1708607779000,0],[1708607780000,0],[1708607781000,0],[1708607782000,0],[1708607783000,0],[1708607784000,0],[1708607785000,0],[1708607786000,0],[1708607787000,0],[1708607788000,0],[1708607789000,0],[1708607790000,0],[1708607791000,0],[1708607792000,0],[1708607793000,0],[1708607794000,0],[1708607795000,0],[1708607796000,0],[1708607797000,0],[1708607798000,0],[1708607799000,0],[1708607800000,0],[1708607801000,0],[1708607802000,0],[1708607803000,0],[1708607804000,0],[1708607805000,0],[1708607806000,0],[1708607807000,0],[1708607808000,0],[1708607809000,0],[1708607810000,0],[1708607811000,0],[1708607812000,0],[1708607813000,0],[1708607814000,0],[1708607815000,0],[1708607816000,0],[1708607817000,0],[1708607818000,0],[1708607819000,0],[1708607820000,0],[1708607821000,0],[1708607822000,0],[1708607823000,0],[1708607824000,0],[1708607825000,0],[1708607826000,0],[1708607827000,0],[1708607828000,0],[1708607829000,0],[1708607830000,0],[1708607831000,0],[1708607832000,0],[1708607833000,0],[1708607834000,0],[1708607835000,0],[1708607836000,0],[1708607837000,0],[1708607838000,0],[1708607839000,0],[1708607840000,0],[1708607841000,0],[1708607842000,0],[1708607843000,0],[1708607844000,0],[1708607845000,0],[1708607846000,0],[1708607847000,0],[1708607848000,0],[1708607849000,0],[1708607850000,0],[1708607851000,0],[1708607852000,0],[1708607853000,0],[1708607854000,0],[1708607855000,0],[1708607856000,0],[1708607857000,0],[1708607858000,0],[1708607859000,0],[1708607860000,0],[1708607861000,0],[1708607862000,0],[1708607863000,0],[1708607864000,0],[1708607865000,0],[1708607866000,0],[1708607867000,0],[1708607868000,0],[1708607869000,0],[1708607870000,0],[1708607871000,0],[1708607872000,0],[1708607873000,0],[1708607874000,0],[1708607875000,0],[1708607876000,0],[1708607877000,0],[1708607878000,0],[1708607879000,0],[1708607880000,0],[1708607881000,0],[1708607882000,0],[1708607883000,0],[1708607884000,0],[1708607885000,0],[1708607886000,0],[1708607887000,0],[1708607888000,0],[1708607889000,0],[1708607890000,0],[1708607891000,0],[1708607892000,0],[1708607893000,0],[1708607894000,0],[1708607895000,0],[1708607896000,0],[1708607897000,0],[1708607898000,0],[1708607899000,0],[1708607900000,0],[1708607901000,0],[1708607902000,0],[1708607903000,0],[1708607904000,0],[1708607905000,0],[1708607906000,0],[1708607907000,0],[1708607908000,0],[1708607909000,0],[1708607910000,0],[1708607911000,0],[1708607912000,0],[1708607913000,0],[1708607914000,0],[1708607915000,0],[1708607916000,0],[1708607917000,0],[1708607918000,0],[1708607919000,0],[1708607920000,0],[1708607921000,0],[1708607922000,0],[1708607923000,0],[1708607924000,0],[1708607925000,0],[1708607926000,0],[1708607927000,0],[1708607928000,0],[1708607929000,0],[1708607930000,0],[1708607931000,0],[1708607932000,0],[1708607933000,0],[1708607934000,0],[1708607935000,0],[1708607936000,0],[1708607937000,0],[1708607938000,0],[1708607939000,0],[1708607940000,0],[1708607941000,0],[1708607942000,0],[1708607943000,0],[1708607944000,0],[1708607945000,0],[1708607946000,0],[1708607947000,0],[1708607948000,0],[1708607949000,0],[1708607950000,0],[1708607951000,0],[1708607952000,0],[1708607953000,0],[1708607954000,0],[1708607955000,0],[1708607956000,0],[1708607957000,0],[1708607958000,0],[1708607959000,0],[1708607960000,0],[1708607961000,0],[1708607962000,0],[1708607963000,0],[1708607964000,0],[1708607965000,0],[1708607966000,0],[1708607967000,0],[1708607968000,0],[1708607969000,0],[1708607970000,0],[1708607971000,0],[1708607972000,0],[1708607973000,0],[1708607974000,0],[1708607975000,0],[1708607976000,0],[1708607977000,0],[1708607978000,0],[1708607979000,0],[1708607980000,0],[1708607981000,0],[1708607982000,0],[1708607983000,0],[1708607984000,0],[1708607985000,0],[1708607986000,0],[1708607987000,0],[1708607988000,0],[1708607989000,0],[1708607990000,0],[1708607991000,0],[1708607992000,0],[1708607993000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#AECAEB',
name: 'validação concorrência transações - d',
data: [
[1708607749000,25],[1708607750000,0],[1708607751000,0],[1708607752000,0],[1708607753000,0],[1708607754000,0],[1708607755000,0],[1708607756000,0],[1708607757000,0],[1708607758000,0],[1708607759000,0],[1708607760000,0],[1708607761000,0],[1708607762000,0],[1708607763000,0],[1708607764000,0],[1708607765000,0],[1708607766000,0],[1708607767000,0],[1708607768000,0],[1708607769000,0],[1708607770000,0],[1708607771000,0],[1708607772000,0],[1708607773000,0],[1708607774000,0],[1708607775000,0],[1708607776000,0],[1708607777000,0],[1708607778000,0],[1708607779000,0],[1708607780000,0],[1708607781000,0],[1708607782000,0],[1708607783000,0],[1708607784000,0],[1708607785000,0],[1708607786000,0],[1708607787000,0],[1708607788000,0],[1708607789000,0],[1708607790000,0],[1708607791000,0],[1708607792000,0],[1708607793000,0],[1708607794000,0],[1708607795000,0],[1708607796000,0],[1708607797000,0],[1708607798000,0],[1708607799000,0],[1708607800000,0],[1708607801000,0],[1708607802000,0],[1708607803000,0],[1708607804000,0],[1708607805000,0],[1708607806000,0],[1708607807000,0],[1708607808000,0],[1708607809000,0],[1708607810000,0],[1708607811000,0],[1708607812000,0],[1708607813000,0],[1708607814000,0],[1708607815000,0],[1708607816000,0],[1708607817000,0],[1708607818000,0],[1708607819000,0],[1708607820000,0],[1708607821000,0],[1708607822000,0],[1708607823000,0],[1708607824000,0],[1708607825000,0],[1708607826000,0],[1708607827000,0],[1708607828000,0],[1708607829000,0],[1708607830000,0],[1708607831000,0],[1708607832000,0],[1708607833000,0],[1708607834000,0],[1708607835000,0],[1708607836000,0],[1708607837000,0],[1708607838000,0],[1708607839000,0],[1708607840000,0],[1708607841000,0],[1708607842000,0],[1708607843000,0],[1708607844000,0],[1708607845000,0],[1708607846000,0],[1708607847000,0],[1708607848000,0],[1708607849000,0],[1708607850000,0],[1708607851000,0],[1708607852000,0],[1708607853000,0],[1708607854000,0],[1708607855000,0],[1708607856000,0],[1708607857000,0],[1708607858000,0],[1708607859000,0],[1708607860000,0],[1708607861000,0],[1708607862000,0],[1708607863000,0],[1708607864000,0],[1708607865000,0],[1708607866000,0],[1708607867000,0],[1708607868000,0],[1708607869000,0],[1708607870000,0],[1708607871000,0],[1708607872000,0],[1708607873000,0],[1708607874000,0],[1708607875000,0],[1708607876000,0],[1708607877000,0],[1708607878000,0],[1708607879000,0],[1708607880000,0],[1708607881000,0],[1708607882000,0],[1708607883000,0],[1708607884000,0],[1708607885000,0],[1708607886000,0],[1708607887000,0],[1708607888000,0],[1708607889000,0],[1708607890000,0],[1708607891000,0],[1708607892000,0],[1708607893000,0],[1708607894000,0],[1708607895000,0],[1708607896000,0],[1708607897000,0],[1708607898000,0],[1708607899000,0],[1708607900000,0],[1708607901000,0],[1708607902000,0],[1708607903000,0],[1708607904000,0],[1708607905000,0],[1708607906000,0],[1708607907000,0],[1708607908000,0],[1708607909000,0],[1708607910000,0],[1708607911000,0],[1708607912000,0],[1708607913000,0],[1708607914000,0],[1708607915000,0],[1708607916000,0],[1708607917000,0],[1708607918000,0],[1708607919000,0],[1708607920000,0],[1708607921000,0],[1708607922000,0],[1708607923000,0],[1708607924000,0],[1708607925000,0],[1708607926000,0],[1708607927000,0],[1708607928000,0],[1708607929000,0],[1708607930000,0],[1708607931000,0],[1708607932000,0],[1708607933000,0],[1708607934000,0],[1708607935000,0],[1708607936000,0],[1708607937000,0],[1708607938000,0],[1708607939000,0],[1708607940000,0],[1708607941000,0],[1708607942000,0],[1708607943000,0],[1708607944000,0],[1708607945000,0],[1708607946000,0],[1708607947000,0],[1708607948000,0],[1708607949000,0],[1708607950000,0],[1708607951000,0],[1708607952000,0],[1708607953000,0],[1708607954000,0],[1708607955000,0],[1708607956000,0],[1708607957000,0],[1708607958000,0],[1708607959000,0],[1708607960000,0],[1708607961000,0],[1708607962000,0],[1708607963000,0],[1708607964000,0],[1708607965000,0],[1708607966000,0],[1708607967000,0],[1708607968000,0],[1708607969000,0],[1708607970000,0],[1708607971000,0],[1708607972000,0],[1708607973000,0],[1708607974000,0],[1708607975000,0],[1708607976000,0],[1708607977000,0],[1708607978000,0],[1708607979000,0],[1708607980000,0],[1708607981000,0],[1708607982000,0],[1708607983000,0],[1708607984000,0],[1708607985000,0],[1708607986000,0],[1708607987000,0],[1708607988000,0],[1708607989000,0],[1708607990000,0],[1708607991000,0],[1708607992000,0],[1708607993000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
allUsersData
]
});
allUsersChart.setTitle({
text: '<span class="chart_title">Active Users along the Simulation</span>',
useHTML: true
});
allUsersData.yAxis = 1;
var responsetimeDistributionChart = new Highcharts.Chart({
chart: {
renderTo: 'responsetimeDistributionContainer',
type: 'column',
marginBottom: 60
},
credits: { enabled: false },
legend: {
enabled: true,
floating: true,
y: 5,
borderWidth: 0,
itemStyle: { fontWeight: "normal" },
symbolRadius: 0
},
title: { text: 'A title to let highcharts reserve the place for the title set later' },
navigator: {
maskInside: false
},
xAxis: {
categories: ['2', '6', '10', '14', '17', '21', '25', '29', '33', '37', '41', '45', '48', '52', '56', '60', '64', '68', '72', '75', '79', '83', '87', '91', '95', '99', '103', '106', '110', '114', '118', '122', '126', '130', '134', '137', '141', '145', '149', '153', '157', '161', '164', '168', '172', '176', '180', '184', '188', '192', '195', '199', '203', '207', '211', '215', '219', '223', '226', '230', '234', '238', '242', '246', '250', '253', '257', '261', '265', '269', '273', '277', '281', '284', '288', '292', '296', '300', '304', '308', '312', '315', '319', '323', '327', '331', '335', '339', '342', '346', '350', '354', '358', '362', '366', '370', '373', '377', '381', '385'],
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: [
63.99,32.77,1.9,0.62,0.27,0.11,0.03,0.02,0.03,0.03,0.0,0.02,0.01,0.01,0.0,0.0,0.01,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,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([[1708607749,[25,43,51,67,68,70,74,78,85,87]],[1708607750,[3,3,3,3,3,3,3,3,3,3]],[1708607751,[12,18,27,32,34,34,38,44,46,47]],[1708607752,[3,3,3,3,3,3,3,3,3,3]],[1708607753,[0,2,4,6,8,9,12,13,16,17]],[1708607754,[4,4,5,5,5,5,5,5,5,6]],[1708607755,[3,4,4,5,6,6,7,8,8,9]],[1708607756,[4,5,6,6,6,7,8,8,8,9]],[1708607757,[4,4,5,7,8,8,9,9,9,9]],[1708607758,[2,4,5,5,5,6,6,6,6,6]],[1708607759,[4,4,4,5,6,7,9,10,11,12]],[1708607760,[3,4,4,5,5,5,6,6,9,10]],[1708607761,[2,4,4,5,5,5,5,6,12,14]],[1708607762,[2,4,4,5,6,6,6,7,13,16]],[1708607763,[3,4,4,5,5,6,6,7,7,7]],[1708607764,[3,4,5,6,6,7,7,12,15,16]],[1708607765,[3,4,4,4,5,5,5,6,6,6]],[1708607766,[3,3,4,5,5,5,6,9,9,9]],[1708607767,[3,3,4,5,5,6,7,7,13,15]],[1708607768,[1,3,4,11,19,248,298,349,374,387]],[1708607769,[1,3,4,5,6,11,29,144,173,182]],[1708607770,[1,3,3,4,4,5,5,5,7,8]],[1708607771,[1,3,4,4,5,5,5,6,8,10]],[1708607772,[1,3,3,3,3,4,4,4,5,5]],[1708607773,[1,2,3,4,4,4,4,5,6,7]],[1708607774,[1,3,3,4,4,4,4,4,9,15]],[1708607775,[1,3,3,4,4,5,5,6,6,7]],[1708607776,[1,3,4,4,5,5,5,5,6,7]],[1708607777,[1,3,4,5,5,5,6,8,11,13]],[1708607778,[1,3,3,4,5,5,5,5,6,9]],[1708607779,[1,3,3,4,4,5,5,9,43,46]],[1708607780,[1,3,3,4,4,4,5,6,7,8]],[1708607781,[1,3,3,4,4,4,5,5,6,6]],[1708607782,[1,2,3,4,4,4,5,7,12,13]],[1708607783,[1,3,3,4,4,4,4,4,5,10]],[1708607784,[1,3,3,4,4,4,5,5,7,9]],[1708607785,[1,3,3,4,4,4,4,5,7,9]],[1708607786,[1,2,3,4,4,5,5,7,10,11]],[1708607787,[1,2,3,4,4,4,4,4,5,7]],[1708607788,[1,2,3,4,4,4,5,5,6,10]],[1708607789,[1,2,3,4,4,4,4,5,5,6]],[1708607790,[1,2,3,4,4,5,5,7,8,8]],[1708607791,[1,2,3,4,4,4,5,6,11,13]],[1708607792,[0,2,3,4,4,4,4,4,5,6]],[1708607793,[1,2,3,4,4,4,4,5,7,9]],[1708607794,[1,2,3,4,4,4,5,5,8,8]],[1708607795,[1,3,3,4,4,4,4,6,8,8]],[1708607796,[1,2,3,4,4,4,4,5,7,10]],[1708607797,[1,2,3,4,4,4,5,6,9,12]],[1708607798,[1,2,3,3,3,4,4,4,5,7]],[1708607799,[0,2,3,3,4,4,5,5,7,12]],[1708607800,[1,2,3,4,4,5,7,36,78,83]],[1708607801,[1,3,3,4,4,5,5,6,9,12]],[1708607802,[1,2,3,3,4,4,5,6,12,16]],[1708607803,[1,2,3,3,4,4,4,5,7,8]],[1708607804,[1,2,3,4,4,4,5,5,8,11]],[1708607805,[1,2,3,3,3,4,4,4,12,13]],[1708607806,[1,2,3,3,4,4,5,7,8,9]],[1708607807,[1,2,3,4,4,5,6,8,12,14]],[1708607808,[0,2,3,3,3,4,4,4,6,8]],[1708607809,[0,2,3,3,3,4,4,5,11,13]],[1708607810,[0,2,3,3,3,3,4,4,5,7]],[1708607811,[1,2,3,3,4,4,4,5,6,7]],[1708607812,[1,2,3,4,4,5,5,6,9,13]],[1708607813,[1,2,3,3,4,4,5,5,10,13]],[1708607814,[1,2,3,3,4,4,5,6,13,16]],[1708607815,[1,2,3,4,4,4,4,5,10,11]],[1708607816,[1,2,3,3,4,4,4,5,9,15]],[1708607817,[1,2,3,3,4,4,4,5,6,8]],[1708607818,[1,2,3,3,4,4,4,5,8,13]],[1708607819,[0,2,3,3,4,4,4,5,8,15]],[1708607820,[1,2,3,3,4,4,4,4,8,9]],[1708607821,[1,2,3,3,3,4,4,6,9,14]],[1708607822,[1,3,3,4,4,5,6,10,13,19]],[1708607823,[1,2,3,4,4,4,5,5,8,14]],[1708607824,[0,2,3,4,4,5,6,8,14,16]],[1708607825,[0,2,2,3,3,4,4,5,7,9]],[1708607826,[0,2,2,3,4,4,5,6,18,33]],[1708607827,[1,2,2,3,3,4,4,5,7,9]],[1708607828,[1,2,2,3,3,3,4,4,12,14]],[1708607829,[1,2,3,3,3,4,4,5,7,12]],[1708607830,[1,2,3,4,4,4,5,7,10,11]],[1708607831,[1,2,3,3,4,4,4,5,8,9]],[1708607832,[0,2,2,3,3,3,4,4,7,8]],[1708607833,[0,2,3,3,3,3,4,5,6,10]],[1708607834,[1,2,3,3,3,4,4,4,8,12]],[1708607835,[1,2,3,4,4,4,5,6,11,14]],[1708607836,[1,2,3,3,4,4,5,5,8,15]],[1708607837,[1,2,3,3,4,4,4,5,6,9]],[1708607838,[1,2,3,3,3,3,4,4,7,11]],[1708607839,[1,2,3,3,3,3,4,5,10,16]],[1708607840,[1,2,3,3,3,4,4,5,8,11]],[1708607841,[1,2,2,3,3,3,4,4,6,6]],[1708607842,[1,2,3,3,4,4,4,5,7,10]],[1708607843,[0,2,3,3,3,3,4,4,6,8]],[1708607844,[0,2,3,3,4,5,6,11,25,35]],[1708607845,[0,2,3,3,3,4,4,5,7,9]],[1708607846,[0,2,3,3,3,4,4,5,7,11]],[1708607847,[0,2,3,3,3,3,4,5,10,15]],[1708607848,[1,2,3,3,4,4,5,5,9,11]],[1708607849,[1,2,3,4,4,4,5,5,9,16]],[1708607850,[1,2,3,3,4,4,4,5,7,8]],[1708607851,[0,2,3,3,3,4,4,5,9,11]],[1708607852,[1,2,3,3,3,4,4,5,8,9]],[1708607853,[1,2,3,3,3,4,4,5,9,10]],[1708607854,[0,2,3,3,3,4,4,5,8,9]],[1708607855,[0,2,2,3,3,3,3,4,7,14]],[1708607856,[1,2,2,3,4,4,4,5,11,12]],[1708607857,[1,2,3,4,4,4,4,5,10,18]],[1708607858,[1,2,3,4,4,4,5,6,9,10]],[1708607859,[1,2,3,3,4,4,4,5,6,11]],[1708607860,[0,2,2,3,3,3,4,4,9,16]],[1708607861,[0,2,2,3,3,3,4,4,5,11]],[1708607862,[1,2,3,3,4,4,5,7,17,23]],[1708607863,[0,2,2,3,3,3,3,4,9,13]],[1708607864,[0,2,2,3,4,4,4,5,8,10]],[1708607865,[0,2,3,4,4,4,5,6,10,12]],[1708607866,[1,2,3,4,5,5,5,7,9,17]],[1708607867,[0,3,4,5,5,5,6,7,13,22]],[1708607868,[0,2,2,3,4,4,4,5,6,7]],[1708607869,[1,3,4,5,5,6,6,7,10,16]],[1708607870,[1,2,3,4,4,5,5,6,10,14]],[1708607871,[1,3,4,5,6,6,7,7,8,11]],[1708607872,[1,2,3,3,3,4,4,5,9,15]],[1708607873,[2,3,4,5,6,6,7,9,15,31]],[1708607874,[1,2,2,3,4,4,4,5,6,11]],[1708607875,[2,4,4,6,6,7,13,22,56,65]],[1708607876,[0,2,3,4,4,5,8,13,17,21]],[1708607877,[1,4,4,6,6,6,7,12,19,22]],[1708607878,[1,2,3,4,4,4,5,6,12,20]],[1708607879,[1,3,4,5,5,6,7,7,10,12]],[1708607880,[0,2,2,4,4,4,4,5,8,14]],[1708607881,[1,3,4,5,6,6,6,7,11,13]],[1708607882,[1,2,3,4,4,5,6,6,8,11]],[1708607883,[1,3,4,5,5,5,6,6,9,16]],[1708607884,[1,2,3,4,4,5,5,6,8,9]],[1708607885,[1,3,4,5,5,6,6,12,134,149]],[1708607886,[0,2,4,6,9,16,35,65,100,112]],[1708607887,[0,2,4,5,5,6,6,7,9,11]],[1708607888,[0,2,3,4,5,5,6,7,9,16]],[1708607889,[0,2,3,4,4,5,5,6,9,13]],[1708607890,[0,2,3,5,5,5,6,7,8,10]],[1708607891,[0,2,2,4,4,4,5,7,9,12]],[1708607892,[0,2,3,4,4,4,5,5,9,15]],[1708607893,[1,2,3,4,4,5,6,7,14,20]],[1708607894,[1,2,3,5,5,5,6,6,8,13]],[1708607895,[1,2,3,4,4,5,5,7,10,15]],[1708607896,[1,3,4,5,5,6,6,7,12,19]],[1708607897,[0,2,3,4,4,4,5,5,9,12]],[1708607898,[1,3,4,5,5,6,6,7,12,15]],[1708607899,[1,2,3,4,4,4,5,6,7,13]],[1708607900,[1,3,4,5,6,6,7,8,10,16]],[1708607901,[1,2,3,4,4,4,5,6,8,15]],[1708607902,[0,3,4,5,5,6,6,7,16,20]],[1708607903,[0,2,3,2,3,4,4,6,8,13]],[1708607904,[0,3,3,5,5,5,6,9,20,23]],[1708607905,[1,2,3,3,3,4,4,5,9,14]],[1708607906,[0,2,3,4,4,4,5,6,10,19]],[1708607907,[0,2,2,3,3,4,4,5,11,16]],[1708607908,[0,2,3,4,5,5,6,6,8,15]],[1708607909,[0,2,2,3,4,4,4,5,10,16]],[1708607910,[1,2,3,4,5,5,6,6,11,18]],[1708607911,[1,2,2,3,4,4,4,5,11,17]],[1708607912,[1,2,3,4,4,5,5,7,10,17]],[1708607913,[1,2,3,3,4,4,4,4,5,7]],[1708607914,[1,3,4,5,5,6,6,7,11,22]],[1708607915,[0,2,2,3,3,4,4,5,13,20]],[1708607916,[0,2,3,4,5,6,8,35,72,99]],[1708607917,[1,2,3,4,4,4,5,5,7,9]],[1708607918,[1,2,3,4,5,5,6,7,9,12]],[1708607919,[0,2,3,3,3,4,4,5,6,8]],[1708607920,[1,2,3,4,4,5,5,6,8,11]],[1708607921,[1,2,3,4,4,5,5,6,10,18]],[1708607922,[0,2,3,4,4,5,5,6,10,16]],[1708607923,[1,2,3,4,4,5,6,6,11,20]],[1708607924,[0,2,2,4,4,4,5,6,13,17]],[1708607925,[0,2,3,4,4,4,5,5,6,7]],[1708607926,[1,2,3,3,4,4,5,6,37,47]],[1708607927,[1,2,3,4,4,5,5,6,8,11]],[1708607928,[1,3,4,5,5,5,6,6,9,15]],[1708607929,[0,2,3,4,4,5,5,6,11,17]],[1708607930,[0,3,4,5,5,5,6,7,9,13]],[1708607931,[1,2,4,5,5,5,6,8,27,29]],[1708607932,[1,3,4,5,5,6,6,7,9,13]],[1708607933,[1,2,3,4,4,5,5,6,7,9]],[1708607934,[1,3,4,5,5,6,6,10,19,27]],[1708607935,[1,2,3,4,4,5,5,6,7,8]],[1708607936,[0,2,3,4,5,5,6,7,12,18]],[1708607937,[1,3,4,4,5,5,6,6,7,12]],[1708607938,[0,2,3,4,4,4,4,5,6,9]],[1708607939,[0,2,3,4,4,5,6,7,12,21]],[1708607940,[0,2,3,4,5,5,6,7,11,15]],[1708607941,[1,3,4,4,5,5,6,6,8,11]],[1708607942,[1,2,3,4,4,5,5,6,8,15]],[1708607943,[1,3,4,5,6,6,7,9,16,20]],[1708607944,[1,2,3,4,4,5,6,8,14,20]],[1708607945,[1,3,4,5,5,6,6,7,16,29]],[1708607946,[0,2,3,4,4,4,5,6,15,23]],[1708607947,[0,2,3,4,4,5,6,11,44,52]],[1708607948,[1,2,2,4,4,4,5,7,11,15]],[1708607949,[1,3,4,5,5,5,6,6,8,11]],[1708607950,[0,2,3,4,4,4,5,6,11,17]],[1708607951,[0,3,4,6,6,6,7,8,14,18]],[1708607952,[0,2,2,3,4,4,4,5,8,16]],[1708607953,[1,3,4,5,5,6,6,7,10,13]],[1708607954,[0,2,2,3,3,4,4,5,6,10]],[1708607955,[1,3,4,5,5,6,6,7,10,16]],[1708607956,[0,2,2,3,4,4,4,5,11,16]],[1708607957,[0,2,3,4,5,5,6,6,9,17]],[1708607958,[0,2,2,3,4,4,4,5,7,11]],[1708607959,[1,3,4,5,6,6,7,9,16,19]],[1708607960,[0,2,3,4,4,4,5,7,11,16]],[1708607961,[0,3,4,5,5,5,6,6,10,15]],[1708607962,[1,2,3,4,4,5,6,10,16,20]],[1708607963,[1,3,4,5,5,5,6,7,9,15]],[1708607964,[0,2,3,4,4,5,6,8,13,18]],[1708607965,[1,2,3,4,5,5,6,7,8,12]],[1708607966,[1,2,3,4,5,5,5,6,7,13]],[1708607967,[1,2,3,4,5,5,6,7,10,17]],[1708607968,[1,2,3,4,4,4,5,6,7,11]],[1708607969,[1,2,3,4,4,4,5,5,6,13]],[1708607970,[1,2,3,4,5,5,6,7,13,20]],[1708607971,[1,2,3,4,4,5,5,7,11,16]],[1708607972,[1,2,3,4,4,5,5,6,7,13]],[1708607973,[1,2,3,4,4,5,6,7,9,12]],[1708607974,[1,2,3,4,5,5,6,7,8,11]],[1708607975,[1,2,3,4,4,4,5,6,8,14]],[1708607976,[1,2,3,4,4,5,6,8,13,19]],[1708607977,[0,2,2,3,3,4,4,5,7,11]],[1708607978,[0,2,3,4,4,4,5,6,11,19]],[1708607979,[0,2,2,4,4,4,5,6,8,13]],[1708607980,[0,2,3,4,4,4,5,5,8,12]],[1708607981,[1,2,3,4,4,4,5,5,9,16]],[1708607982,[1,2,3,5,5,6,6,8,16,29]],[1708607983,[1,2,2,3,3,4,4,4,5,10]],[1708607984,[1,2,3,4,5,5,6,8,16,23]],[1708607985,[1,2,2,3,4,4,4,5,14,21]],[1708607986,[1,2,3,4,4,4,5,6,10,17]],[1708607987,[1,2,2,3,4,4,5,7,22,35]],[1708607988,[1,2,3,4,4,5,6,6,12,23]],[1708607989,[1,2,3,4,4,4,4,5,8,15]],[1708607990,[1,3,4,5,5,5,6,7,12,23]],[1708607991,[0,2,3,4,4,4,4,5,6,8]],[1708607992,[1,3,4,5,5,5,6,8,14,23]],[1708607993,[0,2,4,5,6,6,7,11,24,33]]]);
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([[1708607749,[25,25,0]],[1708607750,[1,1,0]],[1708607751,[25,25,0]],[1708607752,[1,1,0]],[1708607753,[71,71,0]],[1708607754,[3,3,0]],[1708607755,[6,6,0]],[1708607756,[9,9,0]],[1708607757,[11,11,0]],[1708607758,[13,13,0]],[1708607759,[18,18,0]],[1708607760,[19,19,0]],[1708607761,[24,24,0]],[1708607762,[26,26,0]],[1708607763,[27,27,0]],[1708607764,[32,32,0]],[1708607765,[34,34,0]],[1708607766,[37,37,0]],[1708607767,[39,39,0]],[1708607768,[43,43,0]],[1708607769,[45,45,0]],[1708607770,[48,48,0]],[1708607771,[50,50,0]],[1708607772,[54,54,0]],[1708607773,[56,56,0]],[1708607774,[60,60,0]],[1708607775,[61,61,0]],[1708607776,[65,65,0]],[1708607777,[67,67,0]],[1708607778,[70,70,0]],[1708607779,[74,74,0]],[1708607780,[76,76,0]],[1708607781,[80,80,0]],[1708607782,[81,81,0]],[1708607783,[84,84,0]],[1708607784,[89,89,0]],[1708607785,[89,89,0]],[1708607786,[93,93,0]],[1708607787,[96,96,0]],[1708607788,[98,98,0]],[1708607789,[102,102,0]],[1708607790,[104,104,0]],[1708607791,[107,107,0]],[1708607792,[109,109,0]],[1708607793,[114,114,0]],[1708607794,[115,115,0]],[1708607795,[119,119,0]],[1708607796,[121,121,0]],[1708607797,[123,123,0]],[1708607798,[126,126,0]],[1708607799,[129,129,0]],[1708607800,[133,133,0]],[1708607801,[134,134,0]],[1708607802,[139,139,0]],[1708607803,[140,140,0]],[1708607804,[144,144,0]],[1708607805,[146,146,0]],[1708607806,[149,149,0]],[1708607807,[151,151,0]],[1708607808,[155,155,0]],[1708607809,[158,158,0]],[1708607810,[160,160,0]],[1708607811,[164,164,0]],[1708607812,[166,166,0]],[1708607813,[170,170,0]],[1708607814,[170,170,0]],[1708607815,[174,174,0]],[1708607816,[177,177,0]],[1708607817,[180,180,0]],[1708607818,[183,183,0]],[1708607819,[186,186,0]],[1708607820,[188,188,0]],[1708607821,[192,192,0]],[1708607822,[194,194,0]],[1708607823,[197,197,0]],[1708607824,[198,198,0]],[1708607825,[204,204,0]],[1708607826,[205,205,0]],[1708607827,[208,208,0]],[1708607828,[211,211,0]],[1708607829,[213,213,0]],[1708607830,[217,217,0]],[1708607831,[219,219,0]],[1708607832,[222,222,0]],[1708607833,[225,225,0]],[1708607834,[228,228,0]],[1708607835,[229,229,0]],[1708607836,[235,235,0]],[1708607837,[235,235,0]],[1708607838,[239,239,0]],[1708607839,[243,243,0]],[1708607840,[244,244,0]],[1708607841,[248,248,0]],[1708607842,[251,251,0]],[1708607843,[251,251,0]],[1708607844,[257,257,0]],[1708607845,[259,259,0]],[1708607846,[262,262,0]],[1708607847,[263,263,0]],[1708607848,[267,267,0]],[1708607849,[269,269,0]],[1708607850,[274,274,0]],[1708607851,[275,275,0]],[1708607852,[279,279,0]],[1708607853,[281,281,0]],[1708607854,[283,283,0]],[1708607855,[286,286,0]],[1708607856,[290,290,0]],[1708607857,[292,292,0]],[1708607858,[295,295,0]],[1708607859,[299,299,0]],[1708607860,[300,300,0]],[1708607861,[304,304,0]],[1708607862,[306,306,0]],[1708607863,[309,309,0]],[1708607864,[313,313,0]],[1708607865,[314,314,0]],[1708607866,[318,318,0]],[1708607867,[320,320,0]],[1708607868,[323,323,0]],[1708607869,[327,327,0]],[1708607870,[329,329,0]],[1708607871,[331,331,0]],[1708607872,[334,334,0]],[1708607873,[339,339,0]],[1708607874,[340,340,0]],[1708607875,[340,340,0]],[1708607876,[340,340,0]],[1708607877,[340,340,0]],[1708607878,[340,340,0]],[1708607879,[340,340,0]],[1708607880,[340,340,0]],[1708607881,[340,340,0]],[1708607882,[340,340,0]],[1708607883,[340,340,0]],[1708607884,[340,340,0]],[1708607885,[340,340,0]],[1708607886,[340,340,0]],[1708607887,[340,340,0]],[1708607888,[340,340,0]],[1708607889,[340,340,0]],[1708607890,[340,340,0]],[1708607891,[340,340,0]],[1708607892,[340,340,0]],[1708607893,[340,340,0]],[1708607894,[340,340,0]],[1708607895,[340,340,0]],[1708607896,[340,340,0]],[1708607897,[340,340,0]],[1708607898,[340,340,0]],[1708607899,[340,340,0]],[1708607900,[340,340,0]],[1708607901,[340,340,0]],[1708607902,[340,340,0]],[1708607903,[340,340,0]],[1708607904,[340,340,0]],[1708607905,[340,340,0]],[1708607906,[340,340,0]],[1708607907,[340,340,0]],[1708607908,[340,340,0]],[1708607909,[340,340,0]],[1708607910,[340,340,0]],[1708607911,[340,340,0]],[1708607912,[340,340,0]],[1708607913,[340,340,0]],[1708607914,[340,340,0]],[1708607915,[340,340,0]],[1708607916,[340,340,0]],[1708607917,[340,340,0]],[1708607918,[340,340,0]],[1708607919,[340,340,0]],[1708607920,[340,340,0]],[1708607921,[340,340,0]],[1708607922,[340,340,0]],[1708607923,[340,340,0]],[1708607924,[340,340,0]],[1708607925,[340,340,0]],[1708607926,[340,340,0]],[1708607927,[340,340,0]],[1708607928,[340,340,0]],[1708607929,[340,340,0]],[1708607930,[340,340,0]],[1708607931,[340,340,0]],[1708607932,[340,340,0]],[1708607933,[340,340,0]],[1708607934,[340,340,0]],[1708607935,[340,340,0]],[1708607936,[340,340,0]],[1708607937,[340,340,0]],[1708607938,[340,340,0]],[1708607939,[340,340,0]],[1708607940,[340,340,0]],[1708607941,[340,340,0]],[1708607942,[340,340,0]],[1708607943,[340,340,0]],[1708607944,[340,340,0]],[1708607945,[340,340,0]],[1708607946,[340,340,0]],[1708607947,[340,340,0]],[1708607948,[340,340,0]],[1708607949,[340,340,0]],[1708607950,[340,340,0]],[1708607951,[340,340,0]],[1708607952,[340,340,0]],[1708607953,[340,340,0]],[1708607954,[340,340,0]],[1708607955,[340,340,0]],[1708607956,[340,340,0]],[1708607957,[340,340,0]],[1708607958,[340,340,0]],[1708607959,[340,340,0]],[1708607960,[340,340,0]],[1708607961,[340,340,0]],[1708607962,[340,340,0]],[1708607963,[340,340,0]],[1708607964,[340,340,0]],[1708607965,[340,340,0]],[1708607966,[340,340,0]],[1708607967,[340,340,0]],[1708607968,[340,340,0]],[1708607969,[340,340,0]],[1708607970,[340,340,0]],[1708607971,[340,340,0]],[1708607972,[340,340,0]],[1708607973,[340,340,0]],[1708607974,[340,340,0]],[1708607975,[340,340,0]],[1708607976,[340,340,0]],[1708607977,[340,340,0]],[1708607978,[340,340,0]],[1708607979,[340,340,0]],[1708607980,[340,340,0]],[1708607981,[340,340,0]],[1708607982,[340,340,0]],[1708607983,[340,340,0]],[1708607984,[340,340,0]],[1708607985,[340,340,0]],[1708607986,[340,340,0]],[1708607987,[340,340,0]],[1708607988,[340,340,0]],[1708607989,[340,340,0]],[1708607990,[340,340,0]],[1708607991,[340,340,0]],[1708607992,[340,340,0]],[1708607993,[501,501,0]]]);
var requestsChart = new Highcharts.StockChart({
chart: {
renderTo: 'requests',
zoomType: 'x',
marginBottom: 60
},
credits: { enabled: false },
legend: {
enabled: true,
floating: true,
y: -65,
borderWidth: 0,
itemStyle: { fontWeight: "normal" },
symbolRadius: 0
},
title: { text: 'A title to let highcharts reserve the place for the title set later' },
navigator: {
maskInside: false
},
rangeSelector: {
buttonSpacing: 0,
buttonTheme: {
fill: '#CFC9C6',
padding: 1,
stroke: '#000000',
'stroke-width': 0.25,
style: {
color: '#000000',
fontWeight: 'bold',
},
states: {
stroke: '#000000',
'stroke-width': 0.25,
hover: {
fill: '#92918C',
style: { color: 'black' }
},
select: {
fill: '#FFA900',
style: { color: 'white' }
}
}
},
buttons : [
{
type : 'minute',
count : 1,
text : '1m'
}, {
type : 'minute',
count : 10,
text : '10m'
}, {
type : 'hour',
count : 1,
text : '1h'
}, {
type : 'all',
count : 1,
text : 'All'
}
],
selected : 3,
inputEnabled : false
},
plotOptions: {
series: {
dataGrouping: { enabled: false }
},
area: {
stacking: 'normal'
}
},
xAxis: {
type: 'datetime',
ordinal: false,
maxZoom: 10000 // three days
},
yAxis:[