forked from zanfranceschi/rinha-de-backend-2024-q1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1173 lines (1104 loc) · 93.5 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-19 02:10:39 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 - brunolipe-a">
<span class="simulation-information-label">Description: </span>
<span>Rinha de Backend - 2024/Q1: Crébito - brunolipe-a</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: [
[1708308639000,0],[1708308640000,0],[1708308641000,0],[1708308642000,0],[1708308643000,1],[1708308644000,2],[1708308645000,2],[1708308646000,4],[1708308647000,4],[1708308648000,5],[1708308649000,6],[1708308650000,7],[1708308651000,8],[1708308652000,8],[1708308653000,10],[1708308654000,10],[1708308655000,12],[1708308656000,12],[1708308657000,14],[1708308658000,14],[1708308659000,15],[1708308660000,16],[1708308661000,17],[1708308662000,18],[1708308663000,19],[1708308664000,20],[1708308665000,20],[1708308666000,22],[1708308667000,22],[1708308668000,23],[1708308669000,25],[1708308670000,25],[1708308671000,26],[1708308672000,26],[1708308673000,28],[1708308674000,29],[1708308675000,30],[1708308676000,30],[1708308677000,32],[1708308678000,32],[1708308679000,33],[1708308680000,34],[1708308681000,35],[1708308682000,36],[1708308683000,37],[1708308684000,38],[1708308685000,39],[1708308686000,39],[1708308687000,41],[1708308688000,41],[1708308689000,43],[1708308690000,43],[1708308691000,44],[1708308692000,45],[1708308693000,46],[1708308694000,47],[1708308695000,48],[1708308696000,48],[1708308697000,50],[1708308698000,50],[1708308699000,52],[1708308700000,52],[1708308701000,53],[1708308702000,54],[1708308703000,56],[1708308704000,55],[1708308705000,57],[1708308706000,58],[1708308707000,59],[1708308708000,59],[1708308709000,61],[1708308710000,61],[1708308711000,63],[1708308712000,63],[1708308713000,64],[1708308714000,65],[1708308715000,66],[1708308716000,67],[1708308717000,68],[1708308718000,68],[1708308719000,70],[1708308720000,70],[1708308721000,72],[1708308722000,72],[1708308723000,73],[1708308724000,74],[1708308725000,76],[1708308726000,76],[1708308727000,77],[1708308728000,78],[1708308729000,79],[1708308730000,79],[1708308731000,81],[1708308732000,81],[1708308733000,82],[1708308734000,83],[1708308735000,86],[1708308736000,85],[1708308737000,87],[1708308738000,86],[1708308739000,89],[1708308740000,90],[1708308741000,90],[1708308742000,92],[1708308743000,92],[1708308744000,93],[1708308745000,95],[1708308746000,95],[1708308747000,96],[1708308748000,97],[1708308749000,98],[1708308750000,98],[1708308751000,100],[1708308752000,100],[1708308753000,102],[1708308754000,102],[1708308755000,104],[1708308756000,104],[1708308757000,105],[1708308758000,106],[1708308759000,107],[1708308760000,108],[1708308761000,108],[1708308762000,110],[1708308763000,111],[1708308764000,111],[1708308765000,111],[1708308766000,111],[1708308767000,111],[1708308768000,111],[1708308769000,111],[1708308770000,112],[1708308771000,111],[1708308772000,111],[1708308773000,111],[1708308774000,111],[1708308775000,111],[1708308776000,111],[1708308777000,111],[1708308778000,111],[1708308779000,111],[1708308780000,111],[1708308781000,111],[1708308782000,111],[1708308783000,111],[1708308784000,111],[1708308785000,110],[1708308786000,111],[1708308787000,111],[1708308788000,110],[1708308789000,111],[1708308790000,111],[1708308791000,111],[1708308792000,112],[1708308793000,111],[1708308794000,111],[1708308795000,111],[1708308796000,113],[1708308797000,111],[1708308798000,110],[1708308799000,111],[1708308800000,111],[1708308801000,111],[1708308802000,111],[1708308803000,111],[1708308804000,111],[1708308805000,112],[1708308806000,111],[1708308807000,111],[1708308808000,111],[1708308809000,111],[1708308810000,111],[1708308811000,111],[1708308812000,110],[1708308813000,111],[1708308814000,111],[1708308815000,111],[1708308816000,111],[1708308817000,111],[1708308818000,111],[1708308819000,110],[1708308820000,111],[1708308821000,110],[1708308822000,114],[1708308823000,111],[1708308824000,111],[1708308825000,110],[1708308826000,111],[1708308827000,110],[1708308828000,111],[1708308829000,111],[1708308830000,111],[1708308831000,111],[1708308832000,111],[1708308833000,111],[1708308834000,111],[1708308835000,111],[1708308836000,111],[1708308837000,111],[1708308838000,111],[1708308839000,111],[1708308840000,111],[1708308841000,111],[1708308842000,110],[1708308843000,111],[1708308844000,111],[1708308845000,111],[1708308846000,111],[1708308847000,111],[1708308848000,111],[1708308849000,111],[1708308850000,111],[1708308851000,111],[1708308852000,113],[1708308853000,111],[1708308854000,111],[1708308855000,111],[1708308856000,111],[1708308857000,111],[1708308858000,111],[1708308859000,111],[1708308860000,111],[1708308861000,111],[1708308862000,111],[1708308863000,111],[1708308864000,111],[1708308865000,111],[1708308866000,111],[1708308867000,110],[1708308868000,111],[1708308869000,111],[1708308870000,111],[1708308871000,111],[1708308872000,111],[1708308873000,111],[1708308874000,110],[1708308875000,111],[1708308876000,110],[1708308877000,111],[1708308878000,111],[1708308879000,111],[1708308880000,110],[1708308881000,111],[1708308882000,111],[1708308883000,110]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#68b65c',
name: 'débitos',
data: [
[1708308639000,0],[1708308640000,0],[1708308641000,0],[1708308642000,0],[1708308643000,1],[1708308644000,2],[1708308645000,5],[1708308646000,7],[1708308647000,7],[1708308648000,9],[1708308649000,11],[1708308650000,13],[1708308651000,15],[1708308652000,16],[1708308653000,19],[1708308654000,20],[1708308655000,22],[1708308656000,24],[1708308657000,25],[1708308658000,28],[1708308659000,29],[1708308660000,31],[1708308661000,33],[1708308662000,36],[1708308663000,37],[1708308664000,38],[1708308665000,40],[1708308666000,42],[1708308667000,44],[1708308668000,46],[1708308669000,47],[1708308670000,50],[1708308671000,51],[1708308672000,53],[1708308673000,55],[1708308674000,56],[1708308675000,59],[1708308676000,60],[1708308677000,62],[1708308678000,64],[1708308679000,66],[1708308680000,68],[1708308681000,69],[1708308682000,71],[1708308683000,74],[1708308684000,74],[1708308685000,77],[1708308686000,79],[1708308687000,80],[1708308688000,83],[1708308689000,85],[1708308690000,86],[1708308691000,89],[1708308692000,90],[1708308693000,93],[1708308694000,94],[1708308695000,96],[1708308696000,98],[1708308697000,99],[1708308698000,101],[1708308699000,103],[1708308700000,104],[1708308701000,106],[1708308702000,108],[1708308703000,110],[1708308704000,112],[1708308705000,113],[1708308706000,115],[1708308707000,117],[1708308708000,119],[1708308709000,120],[1708308710000,123],[1708308711000,124],[1708308712000,126],[1708308713000,128],[1708308714000,129],[1708308715000,132],[1708308716000,133],[1708308717000,135],[1708308718000,137],[1708308719000,139],[1708308720000,141],[1708308721000,142],[1708308722000,144],[1708308723000,147],[1708308724000,147],[1708308725000,153],[1708308726000,152],[1708308727000,153],[1708308728000,155],[1708308729000,157],[1708308730000,159],[1708308731000,161],[1708308732000,162],[1708308733000,165],[1708308734000,167],[1708308735000,169],[1708308736000,171],[1708308737000,172],[1708308738000,174],[1708308739000,175],[1708308740000,178],[1708308741000,180],[1708308742000,182],[1708308743000,184],[1708308744000,185],[1708308745000,187],[1708308746000,189],[1708308747000,191],[1708308748000,193],[1708308749000,194],[1708308750000,197],[1708308751000,198],[1708308752000,200],[1708308753000,202],[1708308754000,203],[1708308755000,206],[1708308756000,207],[1708308757000,209],[1708308758000,211],[1708308759000,213],[1708308760000,215],[1708308761000,216],[1708308762000,218],[1708308763000,221],[1708308764000,221],[1708308765000,221],[1708308766000,221],[1708308767000,221],[1708308768000,221],[1708308769000,221],[1708308770000,223],[1708308771000,221],[1708308772000,220],[1708308773000,221],[1708308774000,221],[1708308775000,221],[1708308776000,221],[1708308777000,221],[1708308778000,221],[1708308779000,221],[1708308780000,221],[1708308781000,221],[1708308782000,221],[1708308783000,221],[1708308784000,221],[1708308785000,221],[1708308786000,221],[1708308787000,222],[1708308788000,222],[1708308789000,220],[1708308790000,221],[1708308791000,221],[1708308792000,223],[1708308793000,221],[1708308794000,220],[1708308795000,221],[1708308796000,226],[1708308797000,221],[1708308798000,221],[1708308799000,221],[1708308800000,221],[1708308801000,220],[1708308802000,221],[1708308803000,220],[1708308804000,221],[1708308805000,225],[1708308806000,221],[1708308807000,220],[1708308808000,221],[1708308809000,223],[1708308810000,221],[1708308811000,221],[1708308812000,220],[1708308813000,221],[1708308814000,221],[1708308815000,221],[1708308816000,221],[1708308817000,220],[1708308818000,222],[1708308819000,221],[1708308820000,221],[1708308821000,220],[1708308822000,224],[1708308823000,221],[1708308824000,221],[1708308825000,221],[1708308826000,221],[1708308827000,221],[1708308828000,221],[1708308829000,221],[1708308830000,221],[1708308831000,221],[1708308832000,221],[1708308833000,221],[1708308834000,221],[1708308835000,221],[1708308836000,221],[1708308837000,221],[1708308838000,221],[1708308839000,221],[1708308840000,221],[1708308841000,221],[1708308842000,220],[1708308843000,221],[1708308844000,220],[1708308845000,221],[1708308846000,221],[1708308847000,221],[1708308848000,221],[1708308849000,221],[1708308850000,221],[1708308851000,221],[1708308852000,226],[1708308853000,221],[1708308854000,221],[1708308855000,221],[1708308856000,221],[1708308857000,221],[1708308858000,221],[1708308859000,221],[1708308860000,220],[1708308861000,221],[1708308862000,220],[1708308863000,220],[1708308864000,220],[1708308865000,221],[1708308866000,221],[1708308867000,220],[1708308868000,221],[1708308869000,221],[1708308870000,221],[1708308871000,221],[1708308872000,221],[1708308873000,221],[1708308874000,221],[1708308875000,220],[1708308876000,220],[1708308877000,221],[1708308878000,221],[1708308879000,221],[1708308880000,220],[1708308881000,221],[1708308882000,221],[1708308883000,219]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#f15b4f',
name: 'extratos',
data: [
[1708308639000,0],[1708308640000,0],[1708308641000,0],[1708308642000,0],[1708308643000,1],[1708308644000,2],[1708308645000,1],[1708308646000,2],[1708308647000,1],[1708308648000,1],[1708308649000,2],[1708308650000,1],[1708308651000,2],[1708308652000,2],[1708308653000,1],[1708308654000,2],[1708308655000,2],[1708308656000,2],[1708308657000,2],[1708308658000,2],[1708308659000,2],[1708308660000,2],[1708308661000,3],[1708308662000,3],[1708308663000,3],[1708308664000,2],[1708308665000,3],[1708308666000,2],[1708308667000,3],[1708308668000,3],[1708308669000,3],[1708308670000,3],[1708308671000,3],[1708308672000,3],[1708308673000,3],[1708308674000,4],[1708308675000,3],[1708308676000,3],[1708308677000,4],[1708308678000,3],[1708308679000,4],[1708308680000,4],[1708308681000,4],[1708308682000,4],[1708308683000,4],[1708308684000,4],[1708308685000,4],[1708308686000,4],[1708308687000,4],[1708308688000,4],[1708308689000,5],[1708308690000,4],[1708308691000,5],[1708308692000,5],[1708308693000,4],[1708308694000,5],[1708308695000,5],[1708308696000,5],[1708308697000,5],[1708308698000,5],[1708308699000,5],[1708308700000,5],[1708308701000,6],[1708308702000,5],[1708308703000,6],[1708308704000,5],[1708308705000,6],[1708308706000,5],[1708308707000,6],[1708308708000,6],[1708308709000,6],[1708308710000,6],[1708308711000,6],[1708308712000,6],[1708308713000,6],[1708308714000,7],[1708308715000,6],[1708308716000,6],[1708308717000,7],[1708308718000,6],[1708308719000,7],[1708308720000,7],[1708308721000,7],[1708308722000,7],[1708308723000,7],[1708308724000,7],[1708308725000,7],[1708308726000,7],[1708308727000,7],[1708308728000,7],[1708308729000,8],[1708308730000,7],[1708308731000,8],[1708308732000,8],[1708308733000,7],[1708308734000,8],[1708308735000,8],[1708308736000,8],[1708308737000,8],[1708308738000,8],[1708308739000,8],[1708308740000,8],[1708308741000,9],[1708308742000,8],[1708308743000,9],[1708308744000,8],[1708308745000,9],[1708308746000,8],[1708308747000,9],[1708308748000,9],[1708308749000,9],[1708308750000,9],[1708308751000,9],[1708308752000,9],[1708308753000,9],[1708308754000,10],[1708308755000,9],[1708308756000,9],[1708308757000,10],[1708308758000,9],[1708308759000,10],[1708308760000,10],[1708308761000,10],[1708308762000,10],[1708308763000,10],[1708308764000,10],[1708308765000,10],[1708308766000,10],[1708308767000,10],[1708308768000,10],[1708308769000,10],[1708308770000,11],[1708308771000,10],[1708308772000,10],[1708308773000,10],[1708308774000,10],[1708308775000,10],[1708308776000,10],[1708308777000,10],[1708308778000,10],[1708308779000,10],[1708308780000,10],[1708308781000,10],[1708308782000,10],[1708308783000,10],[1708308784000,10],[1708308785000,10],[1708308786000,10],[1708308787000,10],[1708308788000,10],[1708308789000,10],[1708308790000,10],[1708308791000,10],[1708308792000,10],[1708308793000,10],[1708308794000,10],[1708308795000,10],[1708308796000,11],[1708308797000,10],[1708308798000,10],[1708308799000,10],[1708308800000,10],[1708308801000,10],[1708308802000,10],[1708308803000,10],[1708308804000,10],[1708308805000,10],[1708308806000,10],[1708308807000,10],[1708308808000,10],[1708308809000,10],[1708308810000,10],[1708308811000,10],[1708308812000,10],[1708308813000,10],[1708308814000,10],[1708308815000,10],[1708308816000,10],[1708308817000,10],[1708308818000,10],[1708308819000,10],[1708308820000,10],[1708308821000,10],[1708308822000,10],[1708308823000,10],[1708308824000,10],[1708308825000,10],[1708308826000,10],[1708308827000,10],[1708308828000,10],[1708308829000,10],[1708308830000,10],[1708308831000,10],[1708308832000,10],[1708308833000,10],[1708308834000,10],[1708308835000,10],[1708308836000,10],[1708308837000,11],[1708308838000,10],[1708308839000,10],[1708308840000,10],[1708308841000,10],[1708308842000,10],[1708308843000,10],[1708308844000,10],[1708308845000,10],[1708308846000,10],[1708308847000,10],[1708308848000,10],[1708308849000,10],[1708308850000,10],[1708308851000,10],[1708308852000,10],[1708308853000,10],[1708308854000,10],[1708308855000,10],[1708308856000,10],[1708308857000,10],[1708308858000,10],[1708308859000,10],[1708308860000,10],[1708308861000,10],[1708308862000,10],[1708308863000,10],[1708308864000,10],[1708308865000,10],[1708308866000,10],[1708308867000,10],[1708308868000,10],[1708308869000,10],[1708308870000,10],[1708308871000,10],[1708308872000,10],[1708308873000,10],[1708308874000,10],[1708308875000,10],[1708308876000,10],[1708308877000,10],[1708308878000,10],[1708308879000,10],[1708308880000,10],[1708308881000,10],[1708308882000,10],[1708308883000,10]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FFDD00',
name: 'validações',
data: [
[1708308639000,0],[1708308640000,0],[1708308641000,0],[1708308642000,5],[1708308643000,5],[1708308644000,0],[1708308645000,0],[1708308646000,0],[1708308647000,0],[1708308648000,0],[1708308649000,0],[1708308650000,0],[1708308651000,0],[1708308652000,0],[1708308653000,0],[1708308654000,0],[1708308655000,0],[1708308656000,0],[1708308657000,0],[1708308658000,0],[1708308659000,0],[1708308660000,0],[1708308661000,0],[1708308662000,0],[1708308663000,0],[1708308664000,0],[1708308665000,0],[1708308666000,0],[1708308667000,0],[1708308668000,0],[1708308669000,0],[1708308670000,0],[1708308671000,0],[1708308672000,0],[1708308673000,0],[1708308674000,0],[1708308675000,0],[1708308676000,0],[1708308677000,0],[1708308678000,0],[1708308679000,0],[1708308680000,0],[1708308681000,0],[1708308682000,0],[1708308683000,0],[1708308684000,0],[1708308685000,0],[1708308686000,0],[1708308687000,0],[1708308688000,0],[1708308689000,0],[1708308690000,0],[1708308691000,0],[1708308692000,0],[1708308693000,0],[1708308694000,0],[1708308695000,0],[1708308696000,0],[1708308697000,0],[1708308698000,0],[1708308699000,0],[1708308700000,0],[1708308701000,0],[1708308702000,0],[1708308703000,0],[1708308704000,0],[1708308705000,0],[1708308706000,0],[1708308707000,0],[1708308708000,0],[1708308709000,0],[1708308710000,0],[1708308711000,0],[1708308712000,0],[1708308713000,0],[1708308714000,0],[1708308715000,0],[1708308716000,0],[1708308717000,0],[1708308718000,0],[1708308719000,0],[1708308720000,0],[1708308721000,0],[1708308722000,0],[1708308723000,0],[1708308724000,0],[1708308725000,0],[1708308726000,0],[1708308727000,0],[1708308728000,0],[1708308729000,0],[1708308730000,0],[1708308731000,0],[1708308732000,0],[1708308733000,0],[1708308734000,0],[1708308735000,0],[1708308736000,0],[1708308737000,0],[1708308738000,0],[1708308739000,0],[1708308740000,0],[1708308741000,0],[1708308742000,0],[1708308743000,0],[1708308744000,0],[1708308745000,0],[1708308746000,0],[1708308747000,0],[1708308748000,0],[1708308749000,0],[1708308750000,0],[1708308751000,0],[1708308752000,0],[1708308753000,0],[1708308754000,0],[1708308755000,0],[1708308756000,0],[1708308757000,0],[1708308758000,0],[1708308759000,0],[1708308760000,0],[1708308761000,0],[1708308762000,0],[1708308763000,0],[1708308764000,0],[1708308765000,0],[1708308766000,0],[1708308767000,0],[1708308768000,0],[1708308769000,0],[1708308770000,0],[1708308771000,0],[1708308772000,0],[1708308773000,0],[1708308774000,0],[1708308775000,0],[1708308776000,0],[1708308777000,0],[1708308778000,0],[1708308779000,0],[1708308780000,0],[1708308781000,0],[1708308782000,0],[1708308783000,0],[1708308784000,0],[1708308785000,0],[1708308786000,0],[1708308787000,0],[1708308788000,0],[1708308789000,0],[1708308790000,0],[1708308791000,0],[1708308792000,0],[1708308793000,0],[1708308794000,0],[1708308795000,0],[1708308796000,0],[1708308797000,0],[1708308798000,0],[1708308799000,0],[1708308800000,0],[1708308801000,0],[1708308802000,0],[1708308803000,0],[1708308804000,0],[1708308805000,0],[1708308806000,0],[1708308807000,0],[1708308808000,0],[1708308809000,0],[1708308810000,0],[1708308811000,0],[1708308812000,0],[1708308813000,0],[1708308814000,0],[1708308815000,0],[1708308816000,0],[1708308817000,0],[1708308818000,0],[1708308819000,0],[1708308820000,0],[1708308821000,0],[1708308822000,0],[1708308823000,0],[1708308824000,0],[1708308825000,0],[1708308826000,0],[1708308827000,0],[1708308828000,0],[1708308829000,0],[1708308830000,0],[1708308831000,0],[1708308832000,0],[1708308833000,0],[1708308834000,0],[1708308835000,0],[1708308836000,0],[1708308837000,0],[1708308838000,0],[1708308839000,0],[1708308840000,0],[1708308841000,0],[1708308842000,0],[1708308843000,0],[1708308844000,0],[1708308845000,0],[1708308846000,0],[1708308847000,0],[1708308848000,0],[1708308849000,0],[1708308850000,0],[1708308851000,0],[1708308852000,0],[1708308853000,0],[1708308854000,0],[1708308855000,0],[1708308856000,0],[1708308857000,0],[1708308858000,0],[1708308859000,0],[1708308860000,0],[1708308861000,0],[1708308862000,0],[1708308863000,0],[1708308864000,0],[1708308865000,0],[1708308866000,0],[1708308867000,0],[1708308868000,0],[1708308869000,0],[1708308870000,0],[1708308871000,0],[1708308872000,0],[1708308873000,0],[1708308874000,0],[1708308875000,0],[1708308876000,0],[1708308877000,0],[1708308878000,0],[1708308879000,0],[1708308880000,0],[1708308881000,0],[1708308882000,0],[1708308883000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00D5FF',
name: 'validação HTTP 404',
data: [
[1708308639000,0],[1708308640000,0],[1708308641000,0],[1708308642000,1],[1708308643000,0],[1708308644000,0],[1708308645000,0],[1708308646000,0],[1708308647000,0],[1708308648000,0],[1708308649000,0],[1708308650000,0],[1708308651000,0],[1708308652000,0],[1708308653000,0],[1708308654000,0],[1708308655000,0],[1708308656000,0],[1708308657000,0],[1708308658000,0],[1708308659000,0],[1708308660000,0],[1708308661000,0],[1708308662000,0],[1708308663000,0],[1708308664000,0],[1708308665000,0],[1708308666000,0],[1708308667000,0],[1708308668000,0],[1708308669000,0],[1708308670000,0],[1708308671000,0],[1708308672000,0],[1708308673000,0],[1708308674000,0],[1708308675000,0],[1708308676000,0],[1708308677000,0],[1708308678000,0],[1708308679000,0],[1708308680000,0],[1708308681000,0],[1708308682000,0],[1708308683000,0],[1708308684000,0],[1708308685000,0],[1708308686000,0],[1708308687000,0],[1708308688000,0],[1708308689000,0],[1708308690000,0],[1708308691000,0],[1708308692000,0],[1708308693000,0],[1708308694000,0],[1708308695000,0],[1708308696000,0],[1708308697000,0],[1708308698000,0],[1708308699000,0],[1708308700000,0],[1708308701000,0],[1708308702000,0],[1708308703000,0],[1708308704000,0],[1708308705000,0],[1708308706000,0],[1708308707000,0],[1708308708000,0],[1708308709000,0],[1708308710000,0],[1708308711000,0],[1708308712000,0],[1708308713000,0],[1708308714000,0],[1708308715000,0],[1708308716000,0],[1708308717000,0],[1708308718000,0],[1708308719000,0],[1708308720000,0],[1708308721000,0],[1708308722000,0],[1708308723000,0],[1708308724000,0],[1708308725000,0],[1708308726000,0],[1708308727000,0],[1708308728000,0],[1708308729000,0],[1708308730000,0],[1708308731000,0],[1708308732000,0],[1708308733000,0],[1708308734000,0],[1708308735000,0],[1708308736000,0],[1708308737000,0],[1708308738000,0],[1708308739000,0],[1708308740000,0],[1708308741000,0],[1708308742000,0],[1708308743000,0],[1708308744000,0],[1708308745000,0],[1708308746000,0],[1708308747000,0],[1708308748000,0],[1708308749000,0],[1708308750000,0],[1708308751000,0],[1708308752000,0],[1708308753000,0],[1708308754000,0],[1708308755000,0],[1708308756000,0],[1708308757000,0],[1708308758000,0],[1708308759000,0],[1708308760000,0],[1708308761000,0],[1708308762000,0],[1708308763000,0],[1708308764000,0],[1708308765000,0],[1708308766000,0],[1708308767000,0],[1708308768000,0],[1708308769000,0],[1708308770000,0],[1708308771000,0],[1708308772000,0],[1708308773000,0],[1708308774000,0],[1708308775000,0],[1708308776000,0],[1708308777000,0],[1708308778000,0],[1708308779000,0],[1708308780000,0],[1708308781000,0],[1708308782000,0],[1708308783000,0],[1708308784000,0],[1708308785000,0],[1708308786000,0],[1708308787000,0],[1708308788000,0],[1708308789000,0],[1708308790000,0],[1708308791000,0],[1708308792000,0],[1708308793000,0],[1708308794000,0],[1708308795000,0],[1708308796000,0],[1708308797000,0],[1708308798000,0],[1708308799000,0],[1708308800000,0],[1708308801000,0],[1708308802000,0],[1708308803000,0],[1708308804000,0],[1708308805000,0],[1708308806000,0],[1708308807000,0],[1708308808000,0],[1708308809000,0],[1708308810000,0],[1708308811000,0],[1708308812000,0],[1708308813000,0],[1708308814000,0],[1708308815000,0],[1708308816000,0],[1708308817000,0],[1708308818000,0],[1708308819000,0],[1708308820000,0],[1708308821000,0],[1708308822000,0],[1708308823000,0],[1708308824000,0],[1708308825000,0],[1708308826000,0],[1708308827000,0],[1708308828000,0],[1708308829000,0],[1708308830000,0],[1708308831000,0],[1708308832000,0],[1708308833000,0],[1708308834000,0],[1708308835000,0],[1708308836000,0],[1708308837000,0],[1708308838000,0],[1708308839000,0],[1708308840000,0],[1708308841000,0],[1708308842000,0],[1708308843000,0],[1708308844000,0],[1708308845000,0],[1708308846000,0],[1708308847000,0],[1708308848000,0],[1708308849000,0],[1708308850000,0],[1708308851000,0],[1708308852000,0],[1708308853000,0],[1708308854000,0],[1708308855000,0],[1708308856000,0],[1708308857000,0],[1708308858000,0],[1708308859000,0],[1708308860000,0],[1708308861000,0],[1708308862000,0],[1708308863000,0],[1708308864000,0],[1708308865000,0],[1708308866000,0],[1708308867000,0],[1708308868000,0],[1708308869000,0],[1708308870000,0],[1708308871000,0],[1708308872000,0],[1708308873000,0],[1708308874000,0],[1708308875000,0],[1708308876000,0],[1708308877000,0],[1708308878000,0],[1708308879000,0],[1708308880000,0],[1708308881000,0],[1708308882000,0],[1708308883000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00FF00',
name: 'validação concorrência saldo - 0',
data: [
[1708308639000,0],[1708308640000,0],[1708308641000,1],[1708308642000,0],[1708308643000,0],[1708308644000,0],[1708308645000,0],[1708308646000,0],[1708308647000,0],[1708308648000,0],[1708308649000,0],[1708308650000,0],[1708308651000,0],[1708308652000,0],[1708308653000,0],[1708308654000,0],[1708308655000,0],[1708308656000,0],[1708308657000,0],[1708308658000,0],[1708308659000,0],[1708308660000,0],[1708308661000,0],[1708308662000,0],[1708308663000,0],[1708308664000,0],[1708308665000,0],[1708308666000,0],[1708308667000,0],[1708308668000,0],[1708308669000,0],[1708308670000,0],[1708308671000,0],[1708308672000,0],[1708308673000,0],[1708308674000,0],[1708308675000,0],[1708308676000,0],[1708308677000,0],[1708308678000,0],[1708308679000,0],[1708308680000,0],[1708308681000,0],[1708308682000,0],[1708308683000,0],[1708308684000,0],[1708308685000,0],[1708308686000,0],[1708308687000,0],[1708308688000,0],[1708308689000,0],[1708308690000,0],[1708308691000,0],[1708308692000,0],[1708308693000,0],[1708308694000,0],[1708308695000,0],[1708308696000,0],[1708308697000,0],[1708308698000,0],[1708308699000,0],[1708308700000,0],[1708308701000,0],[1708308702000,0],[1708308703000,0],[1708308704000,0],[1708308705000,0],[1708308706000,0],[1708308707000,0],[1708308708000,0],[1708308709000,0],[1708308710000,0],[1708308711000,0],[1708308712000,0],[1708308713000,0],[1708308714000,0],[1708308715000,0],[1708308716000,0],[1708308717000,0],[1708308718000,0],[1708308719000,0],[1708308720000,0],[1708308721000,0],[1708308722000,0],[1708308723000,0],[1708308724000,0],[1708308725000,0],[1708308726000,0],[1708308727000,0],[1708308728000,0],[1708308729000,0],[1708308730000,0],[1708308731000,0],[1708308732000,0],[1708308733000,0],[1708308734000,0],[1708308735000,0],[1708308736000,0],[1708308737000,0],[1708308738000,0],[1708308739000,0],[1708308740000,0],[1708308741000,0],[1708308742000,0],[1708308743000,0],[1708308744000,0],[1708308745000,0],[1708308746000,0],[1708308747000,0],[1708308748000,0],[1708308749000,0],[1708308750000,0],[1708308751000,0],[1708308752000,0],[1708308753000,0],[1708308754000,0],[1708308755000,0],[1708308756000,0],[1708308757000,0],[1708308758000,0],[1708308759000,0],[1708308760000,0],[1708308761000,0],[1708308762000,0],[1708308763000,0],[1708308764000,0],[1708308765000,0],[1708308766000,0],[1708308767000,0],[1708308768000,0],[1708308769000,0],[1708308770000,0],[1708308771000,0],[1708308772000,0],[1708308773000,0],[1708308774000,0],[1708308775000,0],[1708308776000,0],[1708308777000,0],[1708308778000,0],[1708308779000,0],[1708308780000,0],[1708308781000,0],[1708308782000,0],[1708308783000,0],[1708308784000,0],[1708308785000,0],[1708308786000,0],[1708308787000,0],[1708308788000,0],[1708308789000,0],[1708308790000,0],[1708308791000,0],[1708308792000,0],[1708308793000,0],[1708308794000,0],[1708308795000,0],[1708308796000,0],[1708308797000,0],[1708308798000,0],[1708308799000,0],[1708308800000,0],[1708308801000,0],[1708308802000,0],[1708308803000,0],[1708308804000,0],[1708308805000,0],[1708308806000,0],[1708308807000,0],[1708308808000,0],[1708308809000,0],[1708308810000,0],[1708308811000,0],[1708308812000,0],[1708308813000,0],[1708308814000,0],[1708308815000,0],[1708308816000,0],[1708308817000,0],[1708308818000,0],[1708308819000,0],[1708308820000,0],[1708308821000,0],[1708308822000,0],[1708308823000,0],[1708308824000,0],[1708308825000,0],[1708308826000,0],[1708308827000,0],[1708308828000,0],[1708308829000,0],[1708308830000,0],[1708308831000,0],[1708308832000,0],[1708308833000,0],[1708308834000,0],[1708308835000,0],[1708308836000,0],[1708308837000,0],[1708308838000,0],[1708308839000,0],[1708308840000,0],[1708308841000,0],[1708308842000,0],[1708308843000,0],[1708308844000,0],[1708308845000,0],[1708308846000,0],[1708308847000,0],[1708308848000,0],[1708308849000,0],[1708308850000,0],[1708308851000,0],[1708308852000,0],[1708308853000,0],[1708308854000,0],[1708308855000,0],[1708308856000,0],[1708308857000,0],[1708308858000,0],[1708308859000,0],[1708308860000,0],[1708308861000,0],[1708308862000,0],[1708308863000,0],[1708308864000,0],[1708308865000,0],[1708308866000,0],[1708308867000,0],[1708308868000,0],[1708308869000,0],[1708308870000,0],[1708308871000,0],[1708308872000,0],[1708308873000,0],[1708308874000,0],[1708308875000,0],[1708308876000,0],[1708308877000,0],[1708308878000,0],[1708308879000,0],[1708308880000,0],[1708308881000,0],[1708308882000,0],[1708308883000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#9D00FF',
name: 'validação concorrência transações - c',
data: [
[1708308639000,0],[1708308640000,25],[1708308641000,25],[1708308642000,0],[1708308643000,0],[1708308644000,0],[1708308645000,0],[1708308646000,0],[1708308647000,0],[1708308648000,0],[1708308649000,0],[1708308650000,0],[1708308651000,0],[1708308652000,0],[1708308653000,0],[1708308654000,0],[1708308655000,0],[1708308656000,0],[1708308657000,0],[1708308658000,0],[1708308659000,0],[1708308660000,0],[1708308661000,0],[1708308662000,0],[1708308663000,0],[1708308664000,0],[1708308665000,0],[1708308666000,0],[1708308667000,0],[1708308668000,0],[1708308669000,0],[1708308670000,0],[1708308671000,0],[1708308672000,0],[1708308673000,0],[1708308674000,0],[1708308675000,0],[1708308676000,0],[1708308677000,0],[1708308678000,0],[1708308679000,0],[1708308680000,0],[1708308681000,0],[1708308682000,0],[1708308683000,0],[1708308684000,0],[1708308685000,0],[1708308686000,0],[1708308687000,0],[1708308688000,0],[1708308689000,0],[1708308690000,0],[1708308691000,0],[1708308692000,0],[1708308693000,0],[1708308694000,0],[1708308695000,0],[1708308696000,0],[1708308697000,0],[1708308698000,0],[1708308699000,0],[1708308700000,0],[1708308701000,0],[1708308702000,0],[1708308703000,0],[1708308704000,0],[1708308705000,0],[1708308706000,0],[1708308707000,0],[1708308708000,0],[1708308709000,0],[1708308710000,0],[1708308711000,0],[1708308712000,0],[1708308713000,0],[1708308714000,0],[1708308715000,0],[1708308716000,0],[1708308717000,0],[1708308718000,0],[1708308719000,0],[1708308720000,0],[1708308721000,0],[1708308722000,0],[1708308723000,0],[1708308724000,0],[1708308725000,0],[1708308726000,0],[1708308727000,0],[1708308728000,0],[1708308729000,0],[1708308730000,0],[1708308731000,0],[1708308732000,0],[1708308733000,0],[1708308734000,0],[1708308735000,0],[1708308736000,0],[1708308737000,0],[1708308738000,0],[1708308739000,0],[1708308740000,0],[1708308741000,0],[1708308742000,0],[1708308743000,0],[1708308744000,0],[1708308745000,0],[1708308746000,0],[1708308747000,0],[1708308748000,0],[1708308749000,0],[1708308750000,0],[1708308751000,0],[1708308752000,0],[1708308753000,0],[1708308754000,0],[1708308755000,0],[1708308756000,0],[1708308757000,0],[1708308758000,0],[1708308759000,0],[1708308760000,0],[1708308761000,0],[1708308762000,0],[1708308763000,0],[1708308764000,0],[1708308765000,0],[1708308766000,0],[1708308767000,0],[1708308768000,0],[1708308769000,0],[1708308770000,0],[1708308771000,0],[1708308772000,0],[1708308773000,0],[1708308774000,0],[1708308775000,0],[1708308776000,0],[1708308777000,0],[1708308778000,0],[1708308779000,0],[1708308780000,0],[1708308781000,0],[1708308782000,0],[1708308783000,0],[1708308784000,0],[1708308785000,0],[1708308786000,0],[1708308787000,0],[1708308788000,0],[1708308789000,0],[1708308790000,0],[1708308791000,0],[1708308792000,0],[1708308793000,0],[1708308794000,0],[1708308795000,0],[1708308796000,0],[1708308797000,0],[1708308798000,0],[1708308799000,0],[1708308800000,0],[1708308801000,0],[1708308802000,0],[1708308803000,0],[1708308804000,0],[1708308805000,0],[1708308806000,0],[1708308807000,0],[1708308808000,0],[1708308809000,0],[1708308810000,0],[1708308811000,0],[1708308812000,0],[1708308813000,0],[1708308814000,0],[1708308815000,0],[1708308816000,0],[1708308817000,0],[1708308818000,0],[1708308819000,0],[1708308820000,0],[1708308821000,0],[1708308822000,0],[1708308823000,0],[1708308824000,0],[1708308825000,0],[1708308826000,0],[1708308827000,0],[1708308828000,0],[1708308829000,0],[1708308830000,0],[1708308831000,0],[1708308832000,0],[1708308833000,0],[1708308834000,0],[1708308835000,0],[1708308836000,0],[1708308837000,0],[1708308838000,0],[1708308839000,0],[1708308840000,0],[1708308841000,0],[1708308842000,0],[1708308843000,0],[1708308844000,0],[1708308845000,0],[1708308846000,0],[1708308847000,0],[1708308848000,0],[1708308849000,0],[1708308850000,0],[1708308851000,0],[1708308852000,0],[1708308853000,0],[1708308854000,0],[1708308855000,0],[1708308856000,0],[1708308857000,0],[1708308858000,0],[1708308859000,0],[1708308860000,0],[1708308861000,0],[1708308862000,0],[1708308863000,0],[1708308864000,0],[1708308865000,0],[1708308866000,0],[1708308867000,0],[1708308868000,0],[1708308869000,0],[1708308870000,0],[1708308871000,0],[1708308872000,0],[1708308873000,0],[1708308874000,0],[1708308875000,0],[1708308876000,0],[1708308877000,0],[1708308878000,0],[1708308879000,0],[1708308880000,0],[1708308881000,0],[1708308882000,0],[1708308883000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FF00E1',
name: 'validação concorrência saldo - -25',
data: [
[1708308639000,1],[1708308640000,1],[1708308641000,0],[1708308642000,0],[1708308643000,0],[1708308644000,0],[1708308645000,0],[1708308646000,0],[1708308647000,0],[1708308648000,0],[1708308649000,0],[1708308650000,0],[1708308651000,0],[1708308652000,0],[1708308653000,0],[1708308654000,0],[1708308655000,0],[1708308656000,0],[1708308657000,0],[1708308658000,0],[1708308659000,0],[1708308660000,0],[1708308661000,0],[1708308662000,0],[1708308663000,0],[1708308664000,0],[1708308665000,0],[1708308666000,0],[1708308667000,0],[1708308668000,0],[1708308669000,0],[1708308670000,0],[1708308671000,0],[1708308672000,0],[1708308673000,0],[1708308674000,0],[1708308675000,0],[1708308676000,0],[1708308677000,0],[1708308678000,0],[1708308679000,0],[1708308680000,0],[1708308681000,0],[1708308682000,0],[1708308683000,0],[1708308684000,0],[1708308685000,0],[1708308686000,0],[1708308687000,0],[1708308688000,0],[1708308689000,0],[1708308690000,0],[1708308691000,0],[1708308692000,0],[1708308693000,0],[1708308694000,0],[1708308695000,0],[1708308696000,0],[1708308697000,0],[1708308698000,0],[1708308699000,0],[1708308700000,0],[1708308701000,0],[1708308702000,0],[1708308703000,0],[1708308704000,0],[1708308705000,0],[1708308706000,0],[1708308707000,0],[1708308708000,0],[1708308709000,0],[1708308710000,0],[1708308711000,0],[1708308712000,0],[1708308713000,0],[1708308714000,0],[1708308715000,0],[1708308716000,0],[1708308717000,0],[1708308718000,0],[1708308719000,0],[1708308720000,0],[1708308721000,0],[1708308722000,0],[1708308723000,0],[1708308724000,0],[1708308725000,0],[1708308726000,0],[1708308727000,0],[1708308728000,0],[1708308729000,0],[1708308730000,0],[1708308731000,0],[1708308732000,0],[1708308733000,0],[1708308734000,0],[1708308735000,0],[1708308736000,0],[1708308737000,0],[1708308738000,0],[1708308739000,0],[1708308740000,0],[1708308741000,0],[1708308742000,0],[1708308743000,0],[1708308744000,0],[1708308745000,0],[1708308746000,0],[1708308747000,0],[1708308748000,0],[1708308749000,0],[1708308750000,0],[1708308751000,0],[1708308752000,0],[1708308753000,0],[1708308754000,0],[1708308755000,0],[1708308756000,0],[1708308757000,0],[1708308758000,0],[1708308759000,0],[1708308760000,0],[1708308761000,0],[1708308762000,0],[1708308763000,0],[1708308764000,0],[1708308765000,0],[1708308766000,0],[1708308767000,0],[1708308768000,0],[1708308769000,0],[1708308770000,0],[1708308771000,0],[1708308772000,0],[1708308773000,0],[1708308774000,0],[1708308775000,0],[1708308776000,0],[1708308777000,0],[1708308778000,0],[1708308779000,0],[1708308780000,0],[1708308781000,0],[1708308782000,0],[1708308783000,0],[1708308784000,0],[1708308785000,0],[1708308786000,0],[1708308787000,0],[1708308788000,0],[1708308789000,0],[1708308790000,0],[1708308791000,0],[1708308792000,0],[1708308793000,0],[1708308794000,0],[1708308795000,0],[1708308796000,0],[1708308797000,0],[1708308798000,0],[1708308799000,0],[1708308800000,0],[1708308801000,0],[1708308802000,0],[1708308803000,0],[1708308804000,0],[1708308805000,0],[1708308806000,0],[1708308807000,0],[1708308808000,0],[1708308809000,0],[1708308810000,0],[1708308811000,0],[1708308812000,0],[1708308813000,0],[1708308814000,0],[1708308815000,0],[1708308816000,0],[1708308817000,0],[1708308818000,0],[1708308819000,0],[1708308820000,0],[1708308821000,0],[1708308822000,0],[1708308823000,0],[1708308824000,0],[1708308825000,0],[1708308826000,0],[1708308827000,0],[1708308828000,0],[1708308829000,0],[1708308830000,0],[1708308831000,0],[1708308832000,0],[1708308833000,0],[1708308834000,0],[1708308835000,0],[1708308836000,0],[1708308837000,0],[1708308838000,0],[1708308839000,0],[1708308840000,0],[1708308841000,0],[1708308842000,0],[1708308843000,0],[1708308844000,0],[1708308845000,0],[1708308846000,0],[1708308847000,0],[1708308848000,0],[1708308849000,0],[1708308850000,0],[1708308851000,0],[1708308852000,0],[1708308853000,0],[1708308854000,0],[1708308855000,0],[1708308856000,0],[1708308857000,0],[1708308858000,0],[1708308859000,0],[1708308860000,0],[1708308861000,0],[1708308862000,0],[1708308863000,0],[1708308864000,0],[1708308865000,0],[1708308866000,0],[1708308867000,0],[1708308868000,0],[1708308869000,0],[1708308870000,0],[1708308871000,0],[1708308872000,0],[1708308873000,0],[1708308874000,0],[1708308875000,0],[1708308876000,0],[1708308877000,0],[1708308878000,0],[1708308879000,0],[1708308880000,0],[1708308881000,0],[1708308882000,0],[1708308883000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#AECAEB',
name: 'validação concorrência transações - d',
data: [
[1708308639000,25],[1708308640000,0],[1708308641000,0],[1708308642000,0],[1708308643000,0],[1708308644000,0],[1708308645000,0],[1708308646000,0],[1708308647000,0],[1708308648000,0],[1708308649000,0],[1708308650000,0],[1708308651000,0],[1708308652000,0],[1708308653000,0],[1708308654000,0],[1708308655000,0],[1708308656000,0],[1708308657000,0],[1708308658000,0],[1708308659000,0],[1708308660000,0],[1708308661000,0],[1708308662000,0],[1708308663000,0],[1708308664000,0],[1708308665000,0],[1708308666000,0],[1708308667000,0],[1708308668000,0],[1708308669000,0],[1708308670000,0],[1708308671000,0],[1708308672000,0],[1708308673000,0],[1708308674000,0],[1708308675000,0],[1708308676000,0],[1708308677000,0],[1708308678000,0],[1708308679000,0],[1708308680000,0],[1708308681000,0],[1708308682000,0],[1708308683000,0],[1708308684000,0],[1708308685000,0],[1708308686000,0],[1708308687000,0],[1708308688000,0],[1708308689000,0],[1708308690000,0],[1708308691000,0],[1708308692000,0],[1708308693000,0],[1708308694000,0],[1708308695000,0],[1708308696000,0],[1708308697000,0],[1708308698000,0],[1708308699000,0],[1708308700000,0],[1708308701000,0],[1708308702000,0],[1708308703000,0],[1708308704000,0],[1708308705000,0],[1708308706000,0],[1708308707000,0],[1708308708000,0],[1708308709000,0],[1708308710000,0],[1708308711000,0],[1708308712000,0],[1708308713000,0],[1708308714000,0],[1708308715000,0],[1708308716000,0],[1708308717000,0],[1708308718000,0],[1708308719000,0],[1708308720000,0],[1708308721000,0],[1708308722000,0],[1708308723000,0],[1708308724000,0],[1708308725000,0],[1708308726000,0],[1708308727000,0],[1708308728000,0],[1708308729000,0],[1708308730000,0],[1708308731000,0],[1708308732000,0],[1708308733000,0],[1708308734000,0],[1708308735000,0],[1708308736000,0],[1708308737000,0],[1708308738000,0],[1708308739000,0],[1708308740000,0],[1708308741000,0],[1708308742000,0],[1708308743000,0],[1708308744000,0],[1708308745000,0],[1708308746000,0],[1708308747000,0],[1708308748000,0],[1708308749000,0],[1708308750000,0],[1708308751000,0],[1708308752000,0],[1708308753000,0],[1708308754000,0],[1708308755000,0],[1708308756000,0],[1708308757000,0],[1708308758000,0],[1708308759000,0],[1708308760000,0],[1708308761000,0],[1708308762000,0],[1708308763000,0],[1708308764000,0],[1708308765000,0],[1708308766000,0],[1708308767000,0],[1708308768000,0],[1708308769000,0],[1708308770000,0],[1708308771000,0],[1708308772000,0],[1708308773000,0],[1708308774000,0],[1708308775000,0],[1708308776000,0],[1708308777000,0],[1708308778000,0],[1708308779000,0],[1708308780000,0],[1708308781000,0],[1708308782000,0],[1708308783000,0],[1708308784000,0],[1708308785000,0],[1708308786000,0],[1708308787000,0],[1708308788000,0],[1708308789000,0],[1708308790000,0],[1708308791000,0],[1708308792000,0],[1708308793000,0],[1708308794000,0],[1708308795000,0],[1708308796000,0],[1708308797000,0],[1708308798000,0],[1708308799000,0],[1708308800000,0],[1708308801000,0],[1708308802000,0],[1708308803000,0],[1708308804000,0],[1708308805000,0],[1708308806000,0],[1708308807000,0],[1708308808000,0],[1708308809000,0],[1708308810000,0],[1708308811000,0],[1708308812000,0],[1708308813000,0],[1708308814000,0],[1708308815000,0],[1708308816000,0],[1708308817000,0],[1708308818000,0],[1708308819000,0],[1708308820000,0],[1708308821000,0],[1708308822000,0],[1708308823000,0],[1708308824000,0],[1708308825000,0],[1708308826000,0],[1708308827000,0],[1708308828000,0],[1708308829000,0],[1708308830000,0],[1708308831000,0],[1708308832000,0],[1708308833000,0],[1708308834000,0],[1708308835000,0],[1708308836000,0],[1708308837000,0],[1708308838000,0],[1708308839000,0],[1708308840000,0],[1708308841000,0],[1708308842000,0],[1708308843000,0],[1708308844000,0],[1708308845000,0],[1708308846000,0],[1708308847000,0],[1708308848000,0],[1708308849000,0],[1708308850000,0],[1708308851000,0],[1708308852000,0],[1708308853000,0],[1708308854000,0],[1708308855000,0],[1708308856000,0],[1708308857000,0],[1708308858000,0],[1708308859000,0],[1708308860000,0],[1708308861000,0],[1708308862000,0],[1708308863000,0],[1708308864000,0],[1708308865000,0],[1708308866000,0],[1708308867000,0],[1708308868000,0],[1708308869000,0],[1708308870000,0],[1708308871000,0],[1708308872000,0],[1708308873000,0],[1708308874000,0],[1708308875000,0],[1708308876000,0],[1708308877000,0],[1708308878000,0],[1708308879000,0],[1708308880000,0],[1708308881000,0],[1708308882000,0],[1708308883000,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: ['4', '11', '17', '24', '30', '37', '43', '50', '56', '63', '69', '76', '82', '89', '95', '102', '108', '115', '121', '128', '134', '141', '147', '154', '160', '167', '174', '180', '187', '193', '200', '206', '213', '219', '226', '232', '239', '245', '252', '258', '265', '271', '278', '284', '291', '297', '304', '310', '317', '323', '330', '336', '343', '349', '356', '362', '369', '375', '382', '388', '395', '401', '408', '414', '421', '427', '434', '440', '447', '453', '460', '466', '473', '479', '486', '493', '499', '506', '512', '519', '525', '532', '538', '545', '551', '558', '564', '571', '577', '584', '590', '597', '603', '610', '616', '623', '629', '636', '642', '649'],
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: [
91.76,1.6,0.91,0.98,0.77,0.87,0.62,0.6,0.46,0.4,0.36,0.25,0.12,0.09,0.03,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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([[1708308639,[356,470,543,562,563,564,605,635,648,652]],[1708308640,[5,5,5,5,5,5,5,5,5,5]],[1708308641,[14,39,74,83,84,87,88,92,96,97]],[1708308642,[5,5,5,5,5,5,5,5,5,5]],[1708308643,[2,7,14,85,89,94,97,171,184,199]],[1708308644,[3,5,7,9,9,9,9,9,9,10]],[1708308645,[6,6,7,7,7,7,7,7,7,8]],[1708308646,[5,6,6,7,8,9,10,10,10,10]],[1708308647,[5,5,6,6,6,6,7,7,7,8]],[1708308648,[4,5,5,6,6,6,8,9,9,9]],[1708308649,[4,5,5,5,6,6,6,6,7,8]],[1708308650,[4,4,5,5,6,6,6,7,7,7]],[1708308651,[4,4,5,5,5,5,5,8,9,9]],[1708308652,[4,4,5,6,6,7,7,7,7,8]],[1708308653,[3,4,5,5,5,6,6,6,6,7]],[1708308654,[4,4,5,6,6,6,7,7,7,8]],[1708308655,[3,4,4,5,5,5,5,6,7,7]],[1708308656,[4,4,5,5,5,6,7,7,8,8]],[1708308657,[3,4,5,5,5,6,6,6,6,6]],[1708308658,[3,4,4,5,5,5,6,6,7,8]],[1708308659,[3,4,4,5,5,5,5,5,6,6]],[1708308660,[3,4,4,5,5,5,5,5,6,7]],[1708308661,[3,3,4,4,5,5,5,5,6,6]],[1708308662,[3,4,4,4,4,5,5,5,11,11]],[1708308663,[2,4,4,4,4,4,4,5,5,7]],[1708308664,[2,3,4,4,4,5,5,5,16,30]],[1708308665,[2,3,4,4,5,5,5,5,6,6]],[1708308666,[3,3,4,4,4,5,5,5,6,7]],[1708308667,[2,3,3,4,4,4,4,5,6,7]],[1708308668,[2,3,4,4,4,5,5,5,6,6]],[1708308669,[2,3,3,4,4,4,4,4,5,5]],[1708308670,[2,3,3,4,4,4,4,4,5,5]],[1708308671,[2,3,4,4,4,4,5,5,7,12]],[1708308672,[2,3,3,4,4,4,4,6,14,33]],[1708308673,[2,3,3,4,4,4,4,4,5,5]],[1708308674,[2,3,3,4,4,4,4,4,5,5]],[1708308675,[2,3,3,4,4,4,4,4,5,6]],[1708308676,[2,3,3,4,4,4,4,4,5,5]],[1708308677,[2,3,3,4,4,4,5,6,34,46]],[1708308678,[2,3,3,4,4,4,4,4,6,6]],[1708308679,[2,3,3,4,4,4,4,4,6,6]],[1708308680,[2,3,4,4,4,4,4,5,6,7]],[1708308681,[2,3,3,4,4,4,5,6,42,66]],[1708308682,[2,3,3,3,4,4,4,4,59,69]],[1708308683,[2,3,3,4,4,4,4,30,66,86]],[1708308684,[2,3,3,3,3,3,4,4,4,5]],[1708308685,[2,3,3,3,4,4,4,5,41,57]],[1708308686,[2,3,3,4,4,4,4,5,28,41]],[1708308687,[2,3,3,3,4,4,4,20,69,81]],[1708308688,[2,3,3,3,3,3,4,4,26,46]],[1708308689,[2,2,3,3,3,3,3,4,4,5]],[1708308690,[2,3,3,3,4,4,4,4,5,11]],[1708308691,[2,3,3,3,3,4,4,4,47,62]],[1708308692,[2,2,3,3,3,3,3,4,7,18]],[1708308693,[2,2,3,3,3,3,3,4,4,5]],[1708308694,[2,2,2,3,3,3,3,3,4,4]],[1708308695,[2,2,3,3,3,3,4,20,62,75]],[1708308696,[1,3,3,3,3,3,3,3,4,5]],[1708308697,[1,2,3,3,3,3,3,3,4,4]],[1708308698,[2,2,3,3,3,3,3,4,7,27]],[1708308699,[2,2,3,3,3,3,3,4,4,5]],[1708308700,[1,2,3,3,3,4,4,4,32,45]],[1708308701,[2,2,3,3,3,3,3,4,4,5]],[1708308702,[1,2,3,3,3,3,3,4,41,65]],[1708308703,[1,2,3,3,3,3,4,20,66,80]],[1708308704,[2,2,2,3,3,3,3,3,5,6]],[1708308705,[1,2,2,3,3,3,3,4,18,37]],[1708308706,[1,2,2,3,3,3,3,3,22,36]],[1708308707,[1,2,2,3,3,3,3,3,3,3]],[1708308708,[2,2,2,3,3,3,3,4,30,34]],[1708308709,[1,2,3,3,3,3,3,3,4,4]],[1708308710,[1,2,3,3,3,3,3,4,21,33]],[1708308711,[1,2,3,3,3,3,3,4,5,15]],[1708308712,[1,2,2,3,3,3,3,3,4,4]],[1708308713,[1,2,3,3,3,3,3,5,69,81]],[1708308714,[2,2,2,3,3,3,3,3,26,39]],[1708308715,[1,2,2,3,3,3,3,4,24,44]],[1708308716,[2,2,3,3,3,3,3,3,4,60]],[1708308717,[1,2,2,3,3,3,3,5,34,51]],[1708308718,[1,2,2,3,3,3,3,3,3,4]],[1708308719,[1,2,2,3,3,3,4,32,73,82]],[1708308720,[1,2,2,3,3,3,3,3,4,9]],[1708308721,[1,2,2,3,3,3,3,3,12,27]],[1708308722,[1,2,2,3,3,3,3,10,83,95]],[1708308723,[1,2,2,3,3,3,3,3,14,29]],[1708308724,[1,2,2,3,3,3,3,3,38,54]],[1708308725,[1,2,3,3,3,3,4,12,69,77]],[1708308726,[1,2,3,3,3,3,3,4,46,61]],[1708308727,[1,2,2,2,3,3,3,3,4,11]],[1708308728,[1,2,2,3,3,3,3,3,4,4]],[1708308729,[1,2,3,3,3,4,14,41,65,77]],[1708308730,[1,2,2,3,3,3,3,3,71,82]],[1708308731,[1,2,2,3,3,3,3,16,44,60]],[1708308732,[1,2,3,3,3,3,3,4,57,75]],[1708308733,[1,2,2,3,3,3,4,4,58,75]],[1708308734,[1,2,2,3,3,3,3,4,29,46]],[1708308735,[1,2,2,3,3,3,3,3,8,23]],[1708308736,[1,2,3,3,3,3,3,4,27,38]],[1708308737,[1,2,3,3,3,3,3,4,59,73]],[1708308738,[1,2,2,3,3,3,3,9,60,78]],[1708308739,[1,2,2,3,3,3,3,3,9,22]],[1708308740,[1,2,2,3,3,3,3,3,51,68]],[1708308741,[1,2,2,3,3,3,3,22,73,84]],[1708308742,[1,2,3,3,3,3,3,4,37,52]],[1708308743,[1,2,2,3,3,3,3,3,4,4]],[1708308744,[1,2,2,3,3,3,3,15,37,45]],[1708308745,[1,2,2,2,2,2,3,3,26,42]],[1708308746,[1,2,2,3,3,3,3,4,58,73]],[1708308747,[1,2,2,3,3,3,3,4,54,60]],[1708308748,[1,2,3,3,3,4,5,26,62,77]],[1708308749,[1,2,3,3,3,3,3,4,18,33]],[1708308750,[1,2,2,3,3,3,3,4,25,43]],[1708308751,[1,2,2,3,3,4,13,43,81,89]],[1708308752,[1,2,2,3,3,3,3,3,13,24]],[1708308753,[1,2,2,2,3,3,6,31,63,76]],[1708308754,[2,2,2,3,3,3,3,14,55,70]],[1708308755,[1,2,3,3,3,3,3,4,45,59]],[1708308756,[1,3,4,4,4,5,6,24,63,77]],[1708308757,[2,3,3,4,5,5,9,29,67,77]],[1708308758,[2,3,3,4,4,4,5,8,44,54]],[1708308759,[1,2,3,4,4,4,4,5,18,32]],[1708308760,[1,2,3,5,5,6,23,49,72,76]],[1708308761,[1,3,4,4,5,5,6,37,76,93]],[1708308762,[1,2,3,4,4,4,6,29,73,85]],[1708308763,[2,3,4,4,4,5,5,25,55,63]],[1708308764,[1,3,3,4,4,5,6,25,63,74]],[1708308765,[1,3,4,5,5,5,11,29,71,86]],[1708308766,[1,2,3,4,4,6,7,31,70,87]],[1708308767,[2,3,4,5,5,5,6,20,46,53]],[1708308768,[1,2,3,4,5,7,23,49,70,76]],[1708308769,[1,3,3,4,4,5,5,19,39,52]],[1708308770,[1,2,2,4,5,8,25,48,72,82]],[1708308771,[2,3,4,4,4,5,5,6,69,87]],[1708308772,[1,2,2,3,3,4,6,29,43,57]],[1708308773,[2,3,4,5,5,6,12,37,69,81]],[1708308774,[2,2,3,3,3,4,6,34,85,99]],[1708308775,[2,4,4,5,5,6,7,20,37,45]],[1708308776,[1,2,3,3,3,3,4,6,45,53]],[1708308777,[1,3,4,5,7,22,38,51,83,91]],[1708308778,[1,2,3,3,3,7,23,48,69,80]],[1708308779,[2,3,4,4,4,5,5,6,35,49]],[1708308780,[1,2,2,4,4,13,32,55,88,101]],[1708308781,[1,3,4,4,5,5,6,16,45,56]],[1708308782,[2,2,3,3,4,5,11,27,51,54]],[1708308783,[2,3,4,5,5,5,7,21,43,47]],[1708308784,[2,3,3,3,4,4,4,5,30,42]],[1708308785,[1,3,3,4,4,4,5,17,62,74]],[1708308786,[1,2,2,3,4,4,9,34,61,76]],[1708308787,[1,2,3,4,5,5,6,9,51,59]],[1708308788,[1,2,3,5,5,9,30,47,60,67]],[1708308789,[1,2,3,4,4,4,5,5,7,61]],[1708308790,[2,3,3,25,36,48,60,71,106,251]],[1708308791,[1,2,3,4,4,4,9,29,45,51]],[1708308792,[1,3,3,4,4,4,5,21,59,68]],[1708308793,[1,2,3,4,5,10,31,55,73,83]],[1708308794,[1,2,3,4,4,4,5,10,38,51]],[1708308795,[1,2,3,3,3,4,4,10,36,47]],[1708308796,[1,2,3,5,7,17,37,57,90,123]],[1708308797,[1,2,3,3,3,3,4,8,31,47]],[1708308798,[1,2,3,4,5,5,6,18,54,67]],[1708308799,[1,2,2,3,3,4,7,27,41,45]],[1708308800,[2,2,3,4,5,5,5,7,27,36]],[1708308801,[1,2,2,3,3,4,9,28,48,59]],[1708308802,[1,2,3,4,4,4,5,23,67,82]],[1708308803,[1,2,2,3,3,3,3,6,29,38]],[1708308804,[2,3,3,5,5,6,14,35,73,83]],[1708308805,[1,2,3,3,3,4,6,41,73,90]],[1708308806,[1,2,3,5,6,8,21,38,78,91]],[1708308807,[1,2,3,3,3,3,3,4,4,8]],[1708308808,[2,3,3,5,6,7,20,50,76,88]],[1708308809,[1,2,2,3,3,7,24,47,69,79]],[1708308810,[1,2,2,4,4,4,6,29,73,90]],[1708308811,[1,2,3,3,3,4,4,29,67,77]],[1708308812,[1,2,3,4,4,5,6,28,51,58]],[1708308813,[1,2,3,3,3,5,19,42,69,75]],[1708308814,[2,2,3,4,7,24,41,61,83,95]],[1708308815,[2,2,3,3,3,3,4,4,32,46]],[1708308816,[1,2,3,4,4,4,4,6,40,51]],[1708308817,[1,2,2,3,3,4,7,31,62,75]],[1708308818,[1,3,4,4,5,6,14,32,51,64]],[1708308819,[1,2,2,4,4,6,21,42,66,78]],[1708308820,[3,3,4,4,5,5,5,5,6,6]],[1708308821,[1,2,3,3,4,5,6,29,62,72]],[1708308822,[3,4,4,5,6,7,16,48,73,83]],[1708308823,[1,2,3,3,3,4,7,21,40,50]],[1708308824,[2,4,4,5,5,6,15,40,58,66]],[1708308825,[1,2,3,3,4,4,6,23,66,78]],[1708308826,[1,3,4,5,5,8,23,41,61,70]],[1708308827,[1,2,3,4,4,5,7,31,63,77]],[1708308828,[2,3,3,4,4,4,5,6,17,66]],[1708308829,[1,2,2,2,4,4,12,34,52,60]],[1708308830,[1,3,4,5,5,5,6,20,60,69]],[1708308831,[1,2,3,5,10,27,41,59,78,88]],[1708308832,[1,3,4,5,5,6,8,38,69,80]],[1708308833,[1,3,3,4,4,5,5,7,39,54]],[1708308834,[2,3,3,4,4,6,19,42,71,82]],[1708308835,[1,2,3,4,4,4,5,23,57,64]],[1708308836,[2,2,3,5,9,35,65,89,129,166]],[1708308837,[1,2,3,5,7,18,37,54,69,86]],[1708308838,[1,2,3,4,4,5,5,6,32,44]],[1708308839,[2,3,3,4,4,5,10,25,48,52]],[1708308840,[2,3,3,5,6,8,20,39,69,81]],[1708308841,[1,2,3,4,4,5,5,5,6,18]],[1708308842,[1,2,2,4,4,5,14,38,68,80]],[1708308843,[2,3,3,4,5,5,9,37,85,100]],[1708308844,[2,2,3,4,4,4,5,10,35,38]],[1708308845,[2,3,4,4,5,5,6,27,78,92]],[1708308846,[1,2,3,3,3,4,5,15,44,59]],[1708308847,[1,2,3,4,5,5,8,37,66,81]],[1708308848,[1,2,2,3,3,3,8,37,71,83]],[1708308849,[2,3,4,5,5,6,16,42,74,88]],[1708308850,[2,2,3,3,3,4,4,27,71,82]],[1708308851,[1,3,4,4,5,6,18,47,83,92]],[1708308852,[1,2,2,3,4,14,33,54,79,99]],[1708308853,[2,3,4,6,7,12,27,52,68,74]],[1708308854,[1,2,3,3,3,3,4,6,42,56]],[1708308855,[1,3,4,5,5,6,21,38,69,77]],[1708308856,[1,2,3,3,3,3,4,21,53,66]],[1708308857,[2,3,4,5,5,6,13,33,59,68]],[1708308858,[1,2,3,3,3,3,4,29,75,82]],[1708308859,[1,3,4,4,5,5,8,34,54,64]],[1708308860,[1,2,3,3,4,5,14,33,56,67]],[1708308861,[2,3,3,4,5,5,6,25,54,65]],[1708308862,[1,2,2,3,3,3,3,5,23,33]],[1708308863,[1,2,3,5,5,6,16,42,69,86]],[1708308864,[1,2,2,3,3,3,3,4,21,38]],[1708308865,[1,2,3,4,5,5,9,32,59,68]],[1708308866,[1,2,3,3,3,4,4,28,70,79]],[1708308867,[1,2,3,4,4,4,5,23,54,66]],[1708308868,[1,2,3,3,4,5,12,30,62,74]],[1708308869,[1,2,3,4,4,4,5,6,42,59]],[1708308870,[1,2,3,4,4,5,11,34,59,69]],[1708308871,[1,2,2,3,3,3,4,5,73,85]],[1708308872,[1,2,3,4,5,10,27,43,65,68]],[1708308873,[1,2,3,3,4,4,5,11,33,37]],[1708308874,[2,2,3,4,4,4,5,5,45,61]],[1708308875,[2,2,3,3,3,4,4,30,59,71]],[1708308876,[1,2,3,5,6,18,44,65,80,87]],[1708308877,[1,2,3,3,4,4,9,32,66,76]],[1708308878,[1,2,3,4,5,5,13,34,56,64]],[1708308879,[1,2,3,2,3,3,3,4,69,81]],[1708308880,[1,2,3,4,4,5,6,24,46,59]],[1708308881,[1,3,4,5,5,6,19,40,54,65]],[1708308882,[1,2,3,4,4,5,5,18,52,64]],[1708308883,[1,3,4,4,5,5,17,43,65,80]]]);
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([[1708308639,[25,25,0]],[1708308640,[1,1,0]],[1708308641,[25,25,0]],[1708308642,[1,1,0]],[1708308643,[70,70,0]],[1708308644,[4,4,0]],[1708308645,[6,6,0]],[1708308646,[9,9,0]],[1708308647,[11,11,0]],[1708308648,[13,13,0]],[1708308649,[18,18,0]],[1708308650,[19,19,0]],[1708308651,[24,24,0]],[1708308652,[26,26,0]],[1708308653,[27,27,0]],[1708308654,[32,32,0]],[1708308655,[34,34,0]],[1708308656,[37,37,0]],[1708308657,[39,39,0]],[1708308658,[43,43,0]],[1708308659,[44,44,0]],[1708308660,[48,48,0]],[1708308661,[50,50,0]],[1708308662,[54,54,0]],[1708308663,[56,56,0]],[1708308664,[61,61,0]],[1708308665,[61,61,0]],[1708308666,[65,65,0]],[1708308667,[67,67,0]],[1708308668,[70,70,0]],[1708308669,[73,73,0]],[1708308670,[77,77,0]],[1708308671,[80,80,0]],[1708308672,[81,81,0]],[1708308673,[84,84,0]],[1708308674,[87,87,0]],[1708308675,[91,91,0]],[1708308676,[92,92,0]],[1708308677,[96,96,0]],[1708308678,[98,98,0]],[1708308679,[101,101,0]],[1708308680,[105,105,0]],[1708308681,[107,107,0]],[1708308682,[110,110,0]],[1708308683,[112,112,0]],[1708308684,[116,116,0]],[1708308685,[118,118,0]],[1708308686,[121,121,0]],[1708308687,[123,123,0]],[1708308688,[126,126,0]],[1708308689,[129,129,0]],[1708308690,[133,133,0]],[1708308691,[135,135,0]],[1708308692,[138,138,0]],[1708308693,[141,141,0]],[1708308694,[144,144,0]],[1708308695,[146,146,0]],[1708308696,[149,149,0]],[1708308697,[152,152,0]],[1708308698,[154,154,0]],[1708308699,[158,158,0]],[1708308700,[160,160,0]],[1708308701,[164,164,0]],[1708308702,[165,165,0]],[1708308703,[170,170,0]],[1708308704,[171,171,0]],[1708308705,[174,174,0]],[1708308706,[176,176,0]],[1708308707,[181,181,0]],[1708308708,[183,183,0]],[1708308709,[186,186,0]],[1708308710,[188,188,0]],[1708308711,[192,192,0]],[1708308712,[194,194,0]],[1708308713,[196,196,0]],[1708308714,[199,199,0]],[1708308715,[203,203,0]],[1708308716,[205,205,0]],[1708308717,[207,207,0]],[1708308718,[211,211,0]],[1708308719,[214,214,0]],[1708308720,[217,217,0]],[1708308721,[219,219,0]],[1708308722,[222,222,0]],[1708308723,[226,226,0]],[1708308724,[227,227,0]],[1708308725,[230,230,0]],[1708308726,[233,233,0]],[1708308727,[237,237,0]],[1708308728,[238,238,0]],[1708308729,[243,243,0]],[1708308730,[244,244,0]],[1708308731,[248,248,0]],[1708308732,[250,250,0]],[1708308733,[252,252,0]],[1708308734,[256,256,0]],[1708308735,[259,259,0]],[1708308736,[262,262,0]],[1708308737,[264,264,0]],[1708308738,[266,266,0]],[1708308739,[270,270,0]],[1708308740,[273,273,0]],[1708308741,[275,275,0]],[1708308742,[279,279,0]],[1708308743,[281,281,0]],[1708308744,[284,284,0]],[1708308745,[286,286,0]],[1708308746,[291,291,0]],[1708308747,[291,291,0]],[1708308748,[296,296,0]],[1708308749,[297,297,0]],[1708308750,[300,300,0]],[1708308751,[304,304,0]],[1708308752,[306,306,0]],[1708308753,[309,309,0]],[1708308754,[313,313,0]],[1708308755,[314,314,0]],[1708308756,[318,318,0]],[1708308757,[321,321,0]],[1708308758,[322,322,0]],[1708308759,[327,327,0]],[1708308760,[329,329,0]],[1708308761,[331,331,0]],[1708308762,[334,334,0]],[1708308763,[339,339,0]],[1708308764,[340,340,0]],[1708308765,[340,340,0]],[1708308766,[340,340,0]],[1708308767,[340,340,0]],[1708308768,[340,340,0]],[1708308769,[340,340,0]],[1708308770,[340,340,0]],[1708308771,[340,340,0]],[1708308772,[340,340,0]],[1708308773,[340,340,0]],[1708308774,[340,340,0]],[1708308775,[340,340,0]],[1708308776,[340,340,0]],[1708308777,[340,340,0]],[1708308778,[340,340,0]],[1708308779,[340,340,0]],[1708308780,[340,340,0]],[1708308781,[340,340,0]],[1708308782,[340,340,0]],[1708308783,[340,340,0]],[1708308784,[340,340,0]],[1708308785,[340,340,0]],[1708308786,[340,340,0]],[1708308787,[340,340,0]],[1708308788,[340,340,0]],[1708308789,[340,340,0]],[1708308790,[340,340,0]],[1708308791,[340,340,0]],[1708308792,[340,340,0]],[1708308793,[340,340,0]],[1708308794,[340,340,0]],[1708308795,[340,340,0]],[1708308796,[340,340,0]],[1708308797,[340,340,0]],[1708308798,[340,340,0]],[1708308799,[340,340,0]],[1708308800,[340,340,0]],[1708308801,[339,339,0]],[1708308802,[341,341,0]],[1708308803,[340,340,0]],[1708308804,[340,340,0]],[1708308805,[340,340,0]],[1708308806,[340,340,0]],[1708308807,[340,340,0]],[1708308808,[340,340,0]],[1708308809,[340,340,0]],[1708308810,[340,340,0]],[1708308811,[340,340,0]],[1708308812,[340,340,0]],[1708308813,[340,340,0]],[1708308814,[340,340,0]],[1708308815,[340,340,0]],[1708308816,[340,340,0]],[1708308817,[340,340,0]],[1708308818,[340,340,0]],[1708308819,[340,340,0]],[1708308820,[340,340,0]],[1708308821,[340,340,0]],[1708308822,[340,340,0]],[1708308823,[340,340,0]],[1708308824,[340,340,0]],[1708308825,[340,340,0]],[1708308826,[340,340,0]],[1708308827,[340,340,0]],[1708308828,[340,340,0]],[1708308829,[340,340,0]],[1708308830,[340,340,0]],[1708308831,[340,340,0]],[1708308832,[340,340,0]],[1708308833,[340,340,0]],[1708308834,[340,340,0]],[1708308835,[340,340,0]],[1708308836,[340,340,0]],[1708308837,[340,340,0]],[1708308838,[340,340,0]],[1708308839,[340,340,0]],[1708308840,[340,340,0]],[1708308841,[340,340,0]],[1708308842,[340,340,0]],[1708308843,[340,340,0]],[1708308844,[340,340,0]],[1708308845,[340,340,0]],[1708308846,[340,340,0]],[1708308847,[340,340,0]],[1708308848,[340,340,0]],[1708308849,[340,340,0]],[1708308850,[340,340,0]],[1708308851,[340,340,0]],[1708308852,[340,340,0]],[1708308853,[340,340,0]],[1708308854,[340,340,0]],[1708308855,[340,340,0]],[1708308856,[340,340,0]],[1708308857,[340,340,0]],[1708308858,[340,340,0]],[1708308859,[340,340,0]],[1708308860,[340,340,0]],[1708308861,[340,340,0]],[1708308862,[340,340,0]],[1708308863,[340,340,0]],[1708308864,[340,340,0]],[1708308865,[340,340,0]],[1708308866,[340,340,0]],[1708308867,[340,340,0]],[1708308868,[340,340,0]],[1708308869,[340,340,0]],[1708308870,[340,340,0]],[1708308871,[340,340,0]],[1708308872,[340,340,0]],[1708308873,[340,340,0]],[1708308874,[340,340,0]],[1708308875,[340,340,0]],[1708308876,[340,340,0]],[1708308877,[340,340,0]],[1708308878,[340,340,0]],[1708308879,[340,340,0]],[1708308880,[340,340,0]],[1708308881,[340,340,0]],[1708308882,[340,340,0]],[1708308883,[504,504,0]]]);
var requestsChart = new Highcharts.StockChart({
chart: {
renderTo: 'requests',
zoomType: 'x',
marginBottom: 60
},
credits: { enabled: false },
legend: {
enabled: true,
floating: true,
y: -65,
borderWidth: 0,
itemStyle: { fontWeight: "normal" },
symbolRadius: 0
},
title: { text: 'A title to let highcharts reserve the place for the title set later' },
navigator: {
maskInside: false
},
rangeSelector: {
buttonSpacing: 0,
buttonTheme: {
fill: '#CFC9C6',
padding: 1,
stroke: '#000000',
'stroke-width': 0.25,
style: {
color: '#000000',
fontWeight: 'bold',
},
states: {
stroke: '#000000',
'stroke-width': 0.25,
hover: {
fill: '#92918C',
style: { color: 'black' }
},
select: {
fill: '#FFA900',
style: { color: 'white' }
}
}
},
buttons : [
{
type : 'minute',
count : 1,
text : '1m'
}, {
type : 'minute',
count : 10,
text : '10m'
}, {
type : 'hour',
count : 1,
text : '1h'
}, {
type : 'all',
count : 1,
text : 'All'
}
],
selected : 3,
inputEnabled : false
},
plotOptions: {
series: {
dataGrouping: { enabled: false }
},
area: {
stacking: 'normal'
}
},
xAxis: {
type: 'datetime',
ordinal: false,
maxZoom: 10000 // three days
},
yAxis:[