-
Notifications
You must be signed in to change notification settings - Fork 923
/
Copy pathindex.html
1173 lines (1104 loc) · 93.6 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 11:50:18 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 - mateuscolvr">
<span class="simulation-information-label">Description: </span>
<span>Rinha de Backend - 2024/Q1: Crébito - mateuscolvr</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: [
[1708343419000,0],[1708343420000,0],[1708343421000,0],[1708343422000,0],[1708343423000,1],[1708343424000,2],[1708343425000,2],[1708343426000,4],[1708343427000,4],[1708343428000,5],[1708343429000,6],[1708343430000,7],[1708343431000,8],[1708343432000,8],[1708343433000,10],[1708343434000,10],[1708343435000,12],[1708343436000,12],[1708343437000,14],[1708343438000,14],[1708343439000,15],[1708343440000,16],[1708343441000,17],[1708343442000,17],[1708343443000,19],[1708343444000,20],[1708343445000,20],[1708343446000,22],[1708343447000,22],[1708343448000,23],[1708343449000,25],[1708343450000,25],[1708343451000,26],[1708343452000,26],[1708343453000,28],[1708343454000,29],[1708343455000,30],[1708343456000,30],[1708343457000,32],[1708343458000,32],[1708343459000,34],[1708343460000,34],[1708343461000,35],[1708343462000,36],[1708343463000,37],[1708343464000,39],[1708343465000,39],[1708343466000,39],[1708343467000,41],[1708343468000,41],[1708343469000,43],[1708343470000,43],[1708343471000,44],[1708343472000,45],[1708343473000,46],[1708343474000,47],[1708343475000,48],[1708343476000,48],[1708343477000,50],[1708343478000,50],[1708343479000,52],[1708343480000,52],[1708343481000,54],[1708343482000,55],[1708343483000,57],[1708343484000,56],[1708343485000,58],[1708343486000,59],[1708343487000,60],[1708343488000,60],[1708343489000,62],[1708343490000,62],[1708343491000,64],[1708343492000,63],[1708343493000,65],[1708343494000,66],[1708343495000,67],[1708343496000,67],[1708343497000,69],[1708343498000,69],[1708343499000,70],[1708343500000,70],[1708343501000,72],[1708343502000,72],[1708343503000,73],[1708343504000,74],[1708343505000,75],[1708343506000,76],[1708343507000,77],[1708343508000,78],[1708343509000,79],[1708343510000,79],[1708343511000,81],[1708343512000,81],[1708343513000,82],[1708343514000,83],[1708343515000,85],[1708343516000,85],[1708343517000,86],[1708343518000,87],[1708343519000,88],[1708343520000,89],[1708343521000,89],[1708343522000,91],[1708343523000,91],[1708343524000,92],[1708343525000,94],[1708343526000,94],[1708343527000,95],[1708343528000,96],[1708343529000,97],[1708343530000,97],[1708343531000,99],[1708343532000,99],[1708343533000,101],[1708343534000,101],[1708343535000,103],[1708343536000,109],[1708343537000,104],[1708343538000,106],[1708343539000,107],[1708343540000,108],[1708343541000,118],[1708343542000,109],[1708343543000,111],[1708343544000,112],[1708343545000,111],[1708343546000,110],[1708343547000,111],[1708343548000,110],[1708343549000,111],[1708343550000,111],[1708343551000,111],[1708343552000,111],[1708343553000,110],[1708343554000,111],[1708343555000,122],[1708343556000,111],[1708343557000,111],[1708343558000,111],[1708343559000,112],[1708343560000,111],[1708343561000,111],[1708343562000,111],[1708343563000,111],[1708343564000,111],[1708343565000,111],[1708343566000,111],[1708343567000,111],[1708343568000,110],[1708343569000,114],[1708343570000,111],[1708343571000,111],[1708343572000,111],[1708343573000,111],[1708343574000,111],[1708343575000,111],[1708343576000,111],[1708343577000,111],[1708343578000,111],[1708343579000,110],[1708343580000,111],[1708343581000,110],[1708343582000,111],[1708343583000,111],[1708343584000,111],[1708343585000,111],[1708343586000,111],[1708343587000,111],[1708343588000,119],[1708343589000,111],[1708343590000,111],[1708343591000,111],[1708343592000,111],[1708343593000,110],[1708343594000,111],[1708343595000,111],[1708343596000,110],[1708343597000,111],[1708343598000,111],[1708343599000,111],[1708343600000,111],[1708343601000,111],[1708343602000,121],[1708343603000,111],[1708343604000,111],[1708343605000,111],[1708343606000,111],[1708343607000,111],[1708343608000,111],[1708343609000,110],[1708343610000,111],[1708343611000,111],[1708343612000,111],[1708343613000,111],[1708343614000,111],[1708343615000,111],[1708343616000,111],[1708343617000,110],[1708343618000,111],[1708343619000,111],[1708343620000,111],[1708343621000,114],[1708343622000,111],[1708343623000,111],[1708343624000,111],[1708343625000,111],[1708343626000,111],[1708343627000,111],[1708343628000,111],[1708343629000,111],[1708343630000,111],[1708343631000,111],[1708343632000,111],[1708343633000,111],[1708343634000,111],[1708343635000,122],[1708343636000,111],[1708343637000,111],[1708343638000,111],[1708343639000,111],[1708343640000,111],[1708343641000,111],[1708343642000,111],[1708343643000,111],[1708343644000,110],[1708343645000,111],[1708343646000,111],[1708343647000,111],[1708343648000,111],[1708343649000,115],[1708343650000,111],[1708343651000,111],[1708343652000,111],[1708343653000,111],[1708343654000,115],[1708343655000,111],[1708343656000,111],[1708343657000,111],[1708343658000,111],[1708343659000,111],[1708343660000,111],[1708343661000,111],[1708343662000,110],[1708343663000,108]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#68b65c',
name: 'débitos',
data: [
[1708343419000,0],[1708343420000,0],[1708343421000,0],[1708343422000,0],[1708343423000,1],[1708343424000,2],[1708343425000,4],[1708343426000,6],[1708343427000,7],[1708343428000,9],[1708343429000,11],[1708343430000,13],[1708343431000,15],[1708343432000,16],[1708343433000,19],[1708343434000,20],[1708343435000,22],[1708343436000,24],[1708343437000,25],[1708343438000,28],[1708343439000,29],[1708343440000,31],[1708343441000,33],[1708343442000,35],[1708343443000,37],[1708343444000,38],[1708343445000,40],[1708343446000,42],[1708343447000,44],[1708343448000,46],[1708343449000,47],[1708343450000,50],[1708343451000,51],[1708343452000,54],[1708343453000,56],[1708343454000,57],[1708343455000,60],[1708343456000,61],[1708343457000,62],[1708343458000,64],[1708343459000,67],[1708343460000,68],[1708343461000,69],[1708343462000,71],[1708343463000,74],[1708343464000,74],[1708343465000,77],[1708343466000,79],[1708343467000,80],[1708343468000,82],[1708343469000,84],[1708343470000,86],[1708343471000,88],[1708343472000,89],[1708343473000,92],[1708343474000,93],[1708343475000,95],[1708343476000,97],[1708343477000,98],[1708343478000,101],[1708343479000,103],[1708343480000,104],[1708343481000,106],[1708343482000,109],[1708343483000,111],[1708343484000,112],[1708343485000,114],[1708343486000,115],[1708343487000,117],[1708343488000,120],[1708343489000,121],[1708343490000,123],[1708343491000,125],[1708343492000,126],[1708343493000,129],[1708343494000,130],[1708343495000,132],[1708343496000,133],[1708343497000,135],[1708343498000,137],[1708343499000,139],[1708343500000,141],[1708343501000,142],[1708343502000,144],[1708343503000,147],[1708343504000,147],[1708343505000,150],[1708343506000,152],[1708343507000,153],[1708343508000,155],[1708343509000,158],[1708343510000,160],[1708343511000,162],[1708343512000,162],[1708343513000,166],[1708343514000,167],[1708343515000,168],[1708343516000,170],[1708343517000,171],[1708343518000,175],[1708343519000,176],[1708343520000,177],[1708343521000,180],[1708343522000,181],[1708343523000,183],[1708343524000,185],[1708343525000,187],[1708343526000,188],[1708343527000,190],[1708343528000,192],[1708343529000,193],[1708343530000,196],[1708343531000,197],[1708343532000,199],[1708343533000,201],[1708343534000,202],[1708343535000,205],[1708343536000,226],[1708343537000,208],[1708343538000,211],[1708343539000,212],[1708343540000,217],[1708343541000,230],[1708343542000,218],[1708343543000,221],[1708343544000,220],[1708343545000,220],[1708343546000,222],[1708343547000,221],[1708343548000,221],[1708343549000,221],[1708343550000,221],[1708343551000,221],[1708343552000,221],[1708343553000,221],[1708343554000,221],[1708343555000,246],[1708343556000,220],[1708343557000,221],[1708343558000,221],[1708343559000,222],[1708343560000,220],[1708343561000,221],[1708343562000,221],[1708343563000,220],[1708343564000,221],[1708343565000,221],[1708343566000,221],[1708343567000,221],[1708343568000,221],[1708343569000,229],[1708343570000,221],[1708343571000,221],[1708343572000,221],[1708343573000,221],[1708343574000,220],[1708343575000,221],[1708343576000,220],[1708343577000,221],[1708343578000,220],[1708343579000,221],[1708343580000,221],[1708343581000,221],[1708343582000,221],[1708343583000,221],[1708343584000,221],[1708343585000,221],[1708343586000,221],[1708343587000,221],[1708343588000,235],[1708343589000,221],[1708343590000,221],[1708343591000,221],[1708343592000,221],[1708343593000,221],[1708343594000,221],[1708343595000,220],[1708343596000,221],[1708343597000,221],[1708343598000,221],[1708343599000,220],[1708343600000,221],[1708343601000,220],[1708343602000,242],[1708343603000,221],[1708343604000,221],[1708343605000,221],[1708343606000,221],[1708343607000,221],[1708343608000,221],[1708343609000,221],[1708343610000,221],[1708343611000,220],[1708343612000,221],[1708343613000,220],[1708343614000,222],[1708343615000,221],[1708343616000,221],[1708343617000,221],[1708343618000,221],[1708343619000,221],[1708343620000,221],[1708343621000,222],[1708343622000,221],[1708343623000,221],[1708343624000,221],[1708343625000,221],[1708343626000,221],[1708343627000,221],[1708343628000,221],[1708343629000,221],[1708343630000,220],[1708343631000,221],[1708343632000,221],[1708343633000,221],[1708343634000,220],[1708343635000,240],[1708343636000,221],[1708343637000,221],[1708343638000,221],[1708343639000,221],[1708343640000,221],[1708343641000,221],[1708343642000,221],[1708343643000,222],[1708343644000,221],[1708343645000,221],[1708343646000,221],[1708343647000,222],[1708343648000,221],[1708343649000,228],[1708343650000,221],[1708343651000,221],[1708343652000,221],[1708343653000,221],[1708343654000,238],[1708343655000,221],[1708343656000,221],[1708343657000,221],[1708343658000,221],[1708343659000,221],[1708343660000,221],[1708343661000,221],[1708343662000,221],[1708343663000,216]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#f15b4f',
name: 'extratos',
data: [
[1708343419000,0],[1708343420000,0],[1708343421000,0],[1708343422000,0],[1708343423000,1],[1708343424000,1],[1708343425000,1],[1708343426000,1],[1708343427000,1],[1708343428000,1],[1708343429000,2],[1708343430000,1],[1708343431000,2],[1708343432000,2],[1708343433000,1],[1708343434000,2],[1708343435000,2],[1708343436000,2],[1708343437000,2],[1708343438000,2],[1708343439000,2],[1708343440000,2],[1708343441000,3],[1708343442000,2],[1708343443000,3],[1708343444000,2],[1708343445000,3],[1708343446000,2],[1708343447000,3],[1708343448000,3],[1708343449000,3],[1708343450000,3],[1708343451000,3],[1708343452000,3],[1708343453000,3],[1708343454000,4],[1708343455000,3],[1708343456000,3],[1708343457000,4],[1708343458000,3],[1708343459000,4],[1708343460000,4],[1708343461000,4],[1708343462000,4],[1708343463000,4],[1708343464000,4],[1708343465000,4],[1708343466000,4],[1708343467000,4],[1708343468000,4],[1708343469000,5],[1708343470000,4],[1708343471000,5],[1708343472000,5],[1708343473000,4],[1708343474000,5],[1708343475000,5],[1708343476000,5],[1708343477000,5],[1708343478000,5],[1708343479000,5],[1708343480000,5],[1708343481000,6],[1708343482000,5],[1708343483000,6],[1708343484000,5],[1708343485000,6],[1708343486000,5],[1708343487000,6],[1708343488000,6],[1708343489000,6],[1708343490000,6],[1708343491000,6],[1708343492000,6],[1708343493000,6],[1708343494000,7],[1708343495000,6],[1708343496000,6],[1708343497000,7],[1708343498000,6],[1708343499000,7],[1708343500000,7],[1708343501000,7],[1708343502000,7],[1708343503000,7],[1708343504000,7],[1708343505000,7],[1708343506000,7],[1708343507000,7],[1708343508000,7],[1708343509000,8],[1708343510000,7],[1708343511000,8],[1708343512000,8],[1708343513000,7],[1708343514000,8],[1708343515000,8],[1708343516000,8],[1708343517000,8],[1708343518000,8],[1708343519000,8],[1708343520000,8],[1708343521000,9],[1708343522000,8],[1708343523000,9],[1708343524000,8],[1708343525000,9],[1708343526000,8],[1708343527000,9],[1708343528000,9],[1708343529000,9],[1708343530000,9],[1708343531000,9],[1708343532000,9],[1708343533000,9],[1708343534000,10],[1708343535000,9],[1708343536000,9],[1708343537000,10],[1708343538000,9],[1708343539000,10],[1708343540000,10],[1708343541000,10],[1708343542000,10],[1708343543000,10],[1708343544000,10],[1708343545000,10],[1708343546000,10],[1708343547000,10],[1708343548000,10],[1708343549000,10],[1708343550000,10],[1708343551000,10],[1708343552000,10],[1708343553000,10],[1708343554000,10],[1708343555000,11],[1708343556000,10],[1708343557000,10],[1708343558000,10],[1708343559000,10],[1708343560000,10],[1708343561000,10],[1708343562000,10],[1708343563000,10],[1708343564000,10],[1708343565000,10],[1708343566000,10],[1708343567000,10],[1708343568000,10],[1708343569000,11],[1708343570000,10],[1708343571000,10],[1708343572000,10],[1708343573000,10],[1708343574000,10],[1708343575000,10],[1708343576000,10],[1708343577000,10],[1708343578000,10],[1708343579000,10],[1708343580000,10],[1708343581000,10],[1708343582000,10],[1708343583000,10],[1708343584000,10],[1708343585000,10],[1708343586000,10],[1708343587000,10],[1708343588000,10],[1708343589000,10],[1708343590000,10],[1708343591000,10],[1708343592000,10],[1708343593000,10],[1708343594000,10],[1708343595000,10],[1708343596000,10],[1708343597000,10],[1708343598000,10],[1708343599000,10],[1708343600000,10],[1708343601000,10],[1708343602000,11],[1708343603000,10],[1708343604000,10],[1708343605000,10],[1708343606000,10],[1708343607000,10],[1708343608000,10],[1708343609000,10],[1708343610000,10],[1708343611000,10],[1708343612000,10],[1708343613000,10],[1708343614000,10],[1708343615000,10],[1708343616000,10],[1708343617000,10],[1708343618000,10],[1708343619000,10],[1708343620000,10],[1708343621000,10],[1708343622000,10],[1708343623000,10],[1708343624000,10],[1708343625000,10],[1708343626000,10],[1708343627000,10],[1708343628000,10],[1708343629000,10],[1708343630000,10],[1708343631000,10],[1708343632000,10],[1708343633000,10],[1708343634000,10],[1708343635000,11],[1708343636000,10],[1708343637000,10],[1708343638000,10],[1708343639000,10],[1708343640000,10],[1708343641000,10],[1708343642000,10],[1708343643000,10],[1708343644000,10],[1708343645000,10],[1708343646000,10],[1708343647000,10],[1708343648000,10],[1708343649000,11],[1708343650000,10],[1708343651000,10],[1708343652000,10],[1708343653000,10],[1708343654000,10],[1708343655000,10],[1708343656000,10],[1708343657000,10],[1708343658000,10],[1708343659000,10],[1708343660000,10],[1708343661000,10],[1708343662000,10],[1708343663000,9]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FFDD00',
name: 'validações',
data: [
[1708343419000,0],[1708343420000,0],[1708343421000,0],[1708343422000,5],[1708343423000,5],[1708343424000,0],[1708343425000,0],[1708343426000,0],[1708343427000,0],[1708343428000,0],[1708343429000,0],[1708343430000,0],[1708343431000,0],[1708343432000,0],[1708343433000,0],[1708343434000,0],[1708343435000,0],[1708343436000,0],[1708343437000,0],[1708343438000,0],[1708343439000,0],[1708343440000,0],[1708343441000,0],[1708343442000,0],[1708343443000,0],[1708343444000,0],[1708343445000,0],[1708343446000,0],[1708343447000,0],[1708343448000,0],[1708343449000,0],[1708343450000,0],[1708343451000,0],[1708343452000,0],[1708343453000,0],[1708343454000,0],[1708343455000,0],[1708343456000,0],[1708343457000,0],[1708343458000,0],[1708343459000,0],[1708343460000,0],[1708343461000,0],[1708343462000,0],[1708343463000,0],[1708343464000,0],[1708343465000,0],[1708343466000,0],[1708343467000,0],[1708343468000,0],[1708343469000,0],[1708343470000,0],[1708343471000,0],[1708343472000,0],[1708343473000,0],[1708343474000,0],[1708343475000,0],[1708343476000,0],[1708343477000,0],[1708343478000,0],[1708343479000,0],[1708343480000,0],[1708343481000,0],[1708343482000,0],[1708343483000,0],[1708343484000,0],[1708343485000,0],[1708343486000,0],[1708343487000,0],[1708343488000,0],[1708343489000,0],[1708343490000,0],[1708343491000,0],[1708343492000,0],[1708343493000,0],[1708343494000,0],[1708343495000,0],[1708343496000,0],[1708343497000,0],[1708343498000,0],[1708343499000,0],[1708343500000,0],[1708343501000,0],[1708343502000,0],[1708343503000,0],[1708343504000,0],[1708343505000,0],[1708343506000,0],[1708343507000,0],[1708343508000,0],[1708343509000,0],[1708343510000,0],[1708343511000,0],[1708343512000,0],[1708343513000,0],[1708343514000,0],[1708343515000,0],[1708343516000,0],[1708343517000,0],[1708343518000,0],[1708343519000,0],[1708343520000,0],[1708343521000,0],[1708343522000,0],[1708343523000,0],[1708343524000,0],[1708343525000,0],[1708343526000,0],[1708343527000,0],[1708343528000,0],[1708343529000,0],[1708343530000,0],[1708343531000,0],[1708343532000,0],[1708343533000,0],[1708343534000,0],[1708343535000,0],[1708343536000,0],[1708343537000,0],[1708343538000,0],[1708343539000,0],[1708343540000,0],[1708343541000,0],[1708343542000,0],[1708343543000,0],[1708343544000,0],[1708343545000,0],[1708343546000,0],[1708343547000,0],[1708343548000,0],[1708343549000,0],[1708343550000,0],[1708343551000,0],[1708343552000,0],[1708343553000,0],[1708343554000,0],[1708343555000,0],[1708343556000,0],[1708343557000,0],[1708343558000,0],[1708343559000,0],[1708343560000,0],[1708343561000,0],[1708343562000,0],[1708343563000,0],[1708343564000,0],[1708343565000,0],[1708343566000,0],[1708343567000,0],[1708343568000,0],[1708343569000,0],[1708343570000,0],[1708343571000,0],[1708343572000,0],[1708343573000,0],[1708343574000,0],[1708343575000,0],[1708343576000,0],[1708343577000,0],[1708343578000,0],[1708343579000,0],[1708343580000,0],[1708343581000,0],[1708343582000,0],[1708343583000,0],[1708343584000,0],[1708343585000,0],[1708343586000,0],[1708343587000,0],[1708343588000,0],[1708343589000,0],[1708343590000,0],[1708343591000,0],[1708343592000,0],[1708343593000,0],[1708343594000,0],[1708343595000,0],[1708343596000,0],[1708343597000,0],[1708343598000,0],[1708343599000,0],[1708343600000,0],[1708343601000,0],[1708343602000,0],[1708343603000,0],[1708343604000,0],[1708343605000,0],[1708343606000,0],[1708343607000,0],[1708343608000,0],[1708343609000,0],[1708343610000,0],[1708343611000,0],[1708343612000,0],[1708343613000,0],[1708343614000,0],[1708343615000,0],[1708343616000,0],[1708343617000,0],[1708343618000,0],[1708343619000,0],[1708343620000,0],[1708343621000,0],[1708343622000,0],[1708343623000,0],[1708343624000,0],[1708343625000,0],[1708343626000,0],[1708343627000,0],[1708343628000,0],[1708343629000,0],[1708343630000,0],[1708343631000,0],[1708343632000,0],[1708343633000,0],[1708343634000,0],[1708343635000,0],[1708343636000,0],[1708343637000,0],[1708343638000,0],[1708343639000,0],[1708343640000,0],[1708343641000,0],[1708343642000,0],[1708343643000,0],[1708343644000,0],[1708343645000,0],[1708343646000,0],[1708343647000,0],[1708343648000,0],[1708343649000,0],[1708343650000,0],[1708343651000,0],[1708343652000,0],[1708343653000,0],[1708343654000,0],[1708343655000,0],[1708343656000,0],[1708343657000,0],[1708343658000,0],[1708343659000,0],[1708343660000,0],[1708343661000,0],[1708343662000,0],[1708343663000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00D5FF',
name: 'validação HTTP 404',
data: [
[1708343419000,0],[1708343420000,0],[1708343421000,0],[1708343422000,1],[1708343423000,0],[1708343424000,0],[1708343425000,0],[1708343426000,0],[1708343427000,0],[1708343428000,0],[1708343429000,0],[1708343430000,0],[1708343431000,0],[1708343432000,0],[1708343433000,0],[1708343434000,0],[1708343435000,0],[1708343436000,0],[1708343437000,0],[1708343438000,0],[1708343439000,0],[1708343440000,0],[1708343441000,0],[1708343442000,0],[1708343443000,0],[1708343444000,0],[1708343445000,0],[1708343446000,0],[1708343447000,0],[1708343448000,0],[1708343449000,0],[1708343450000,0],[1708343451000,0],[1708343452000,0],[1708343453000,0],[1708343454000,0],[1708343455000,0],[1708343456000,0],[1708343457000,0],[1708343458000,0],[1708343459000,0],[1708343460000,0],[1708343461000,0],[1708343462000,0],[1708343463000,0],[1708343464000,0],[1708343465000,0],[1708343466000,0],[1708343467000,0],[1708343468000,0],[1708343469000,0],[1708343470000,0],[1708343471000,0],[1708343472000,0],[1708343473000,0],[1708343474000,0],[1708343475000,0],[1708343476000,0],[1708343477000,0],[1708343478000,0],[1708343479000,0],[1708343480000,0],[1708343481000,0],[1708343482000,0],[1708343483000,0],[1708343484000,0],[1708343485000,0],[1708343486000,0],[1708343487000,0],[1708343488000,0],[1708343489000,0],[1708343490000,0],[1708343491000,0],[1708343492000,0],[1708343493000,0],[1708343494000,0],[1708343495000,0],[1708343496000,0],[1708343497000,0],[1708343498000,0],[1708343499000,0],[1708343500000,0],[1708343501000,0],[1708343502000,0],[1708343503000,0],[1708343504000,0],[1708343505000,0],[1708343506000,0],[1708343507000,0],[1708343508000,0],[1708343509000,0],[1708343510000,0],[1708343511000,0],[1708343512000,0],[1708343513000,0],[1708343514000,0],[1708343515000,0],[1708343516000,0],[1708343517000,0],[1708343518000,0],[1708343519000,0],[1708343520000,0],[1708343521000,0],[1708343522000,0],[1708343523000,0],[1708343524000,0],[1708343525000,0],[1708343526000,0],[1708343527000,0],[1708343528000,0],[1708343529000,0],[1708343530000,0],[1708343531000,0],[1708343532000,0],[1708343533000,0],[1708343534000,0],[1708343535000,0],[1708343536000,0],[1708343537000,0],[1708343538000,0],[1708343539000,0],[1708343540000,0],[1708343541000,0],[1708343542000,0],[1708343543000,0],[1708343544000,0],[1708343545000,0],[1708343546000,0],[1708343547000,0],[1708343548000,0],[1708343549000,0],[1708343550000,0],[1708343551000,0],[1708343552000,0],[1708343553000,0],[1708343554000,0],[1708343555000,0],[1708343556000,0],[1708343557000,0],[1708343558000,0],[1708343559000,0],[1708343560000,0],[1708343561000,0],[1708343562000,0],[1708343563000,0],[1708343564000,0],[1708343565000,0],[1708343566000,0],[1708343567000,0],[1708343568000,0],[1708343569000,0],[1708343570000,0],[1708343571000,0],[1708343572000,0],[1708343573000,0],[1708343574000,0],[1708343575000,0],[1708343576000,0],[1708343577000,0],[1708343578000,0],[1708343579000,0],[1708343580000,0],[1708343581000,0],[1708343582000,0],[1708343583000,0],[1708343584000,0],[1708343585000,0],[1708343586000,0],[1708343587000,0],[1708343588000,0],[1708343589000,0],[1708343590000,0],[1708343591000,0],[1708343592000,0],[1708343593000,0],[1708343594000,0],[1708343595000,0],[1708343596000,0],[1708343597000,0],[1708343598000,0],[1708343599000,0],[1708343600000,0],[1708343601000,0],[1708343602000,0],[1708343603000,0],[1708343604000,0],[1708343605000,0],[1708343606000,0],[1708343607000,0],[1708343608000,0],[1708343609000,0],[1708343610000,0],[1708343611000,0],[1708343612000,0],[1708343613000,0],[1708343614000,0],[1708343615000,0],[1708343616000,0],[1708343617000,0],[1708343618000,0],[1708343619000,0],[1708343620000,0],[1708343621000,0],[1708343622000,0],[1708343623000,0],[1708343624000,0],[1708343625000,0],[1708343626000,0],[1708343627000,0],[1708343628000,0],[1708343629000,0],[1708343630000,0],[1708343631000,0],[1708343632000,0],[1708343633000,0],[1708343634000,0],[1708343635000,0],[1708343636000,0],[1708343637000,0],[1708343638000,0],[1708343639000,0],[1708343640000,0],[1708343641000,0],[1708343642000,0],[1708343643000,0],[1708343644000,0],[1708343645000,0],[1708343646000,0],[1708343647000,0],[1708343648000,0],[1708343649000,0],[1708343650000,0],[1708343651000,0],[1708343652000,0],[1708343653000,0],[1708343654000,0],[1708343655000,0],[1708343656000,0],[1708343657000,0],[1708343658000,0],[1708343659000,0],[1708343660000,0],[1708343661000,0],[1708343662000,0],[1708343663000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00FF00',
name: 'validação concorrência saldo - 0',
data: [
[1708343419000,0],[1708343420000,0],[1708343421000,1],[1708343422000,0],[1708343423000,0],[1708343424000,0],[1708343425000,0],[1708343426000,0],[1708343427000,0],[1708343428000,0],[1708343429000,0],[1708343430000,0],[1708343431000,0],[1708343432000,0],[1708343433000,0],[1708343434000,0],[1708343435000,0],[1708343436000,0],[1708343437000,0],[1708343438000,0],[1708343439000,0],[1708343440000,0],[1708343441000,0],[1708343442000,0],[1708343443000,0],[1708343444000,0],[1708343445000,0],[1708343446000,0],[1708343447000,0],[1708343448000,0],[1708343449000,0],[1708343450000,0],[1708343451000,0],[1708343452000,0],[1708343453000,0],[1708343454000,0],[1708343455000,0],[1708343456000,0],[1708343457000,0],[1708343458000,0],[1708343459000,0],[1708343460000,0],[1708343461000,0],[1708343462000,0],[1708343463000,0],[1708343464000,0],[1708343465000,0],[1708343466000,0],[1708343467000,0],[1708343468000,0],[1708343469000,0],[1708343470000,0],[1708343471000,0],[1708343472000,0],[1708343473000,0],[1708343474000,0],[1708343475000,0],[1708343476000,0],[1708343477000,0],[1708343478000,0],[1708343479000,0],[1708343480000,0],[1708343481000,0],[1708343482000,0],[1708343483000,0],[1708343484000,0],[1708343485000,0],[1708343486000,0],[1708343487000,0],[1708343488000,0],[1708343489000,0],[1708343490000,0],[1708343491000,0],[1708343492000,0],[1708343493000,0],[1708343494000,0],[1708343495000,0],[1708343496000,0],[1708343497000,0],[1708343498000,0],[1708343499000,0],[1708343500000,0],[1708343501000,0],[1708343502000,0],[1708343503000,0],[1708343504000,0],[1708343505000,0],[1708343506000,0],[1708343507000,0],[1708343508000,0],[1708343509000,0],[1708343510000,0],[1708343511000,0],[1708343512000,0],[1708343513000,0],[1708343514000,0],[1708343515000,0],[1708343516000,0],[1708343517000,0],[1708343518000,0],[1708343519000,0],[1708343520000,0],[1708343521000,0],[1708343522000,0],[1708343523000,0],[1708343524000,0],[1708343525000,0],[1708343526000,0],[1708343527000,0],[1708343528000,0],[1708343529000,0],[1708343530000,0],[1708343531000,0],[1708343532000,0],[1708343533000,0],[1708343534000,0],[1708343535000,0],[1708343536000,0],[1708343537000,0],[1708343538000,0],[1708343539000,0],[1708343540000,0],[1708343541000,0],[1708343542000,0],[1708343543000,0],[1708343544000,0],[1708343545000,0],[1708343546000,0],[1708343547000,0],[1708343548000,0],[1708343549000,0],[1708343550000,0],[1708343551000,0],[1708343552000,0],[1708343553000,0],[1708343554000,0],[1708343555000,0],[1708343556000,0],[1708343557000,0],[1708343558000,0],[1708343559000,0],[1708343560000,0],[1708343561000,0],[1708343562000,0],[1708343563000,0],[1708343564000,0],[1708343565000,0],[1708343566000,0],[1708343567000,0],[1708343568000,0],[1708343569000,0],[1708343570000,0],[1708343571000,0],[1708343572000,0],[1708343573000,0],[1708343574000,0],[1708343575000,0],[1708343576000,0],[1708343577000,0],[1708343578000,0],[1708343579000,0],[1708343580000,0],[1708343581000,0],[1708343582000,0],[1708343583000,0],[1708343584000,0],[1708343585000,0],[1708343586000,0],[1708343587000,0],[1708343588000,0],[1708343589000,0],[1708343590000,0],[1708343591000,0],[1708343592000,0],[1708343593000,0],[1708343594000,0],[1708343595000,0],[1708343596000,0],[1708343597000,0],[1708343598000,0],[1708343599000,0],[1708343600000,0],[1708343601000,0],[1708343602000,0],[1708343603000,0],[1708343604000,0],[1708343605000,0],[1708343606000,0],[1708343607000,0],[1708343608000,0],[1708343609000,0],[1708343610000,0],[1708343611000,0],[1708343612000,0],[1708343613000,0],[1708343614000,0],[1708343615000,0],[1708343616000,0],[1708343617000,0],[1708343618000,0],[1708343619000,0],[1708343620000,0],[1708343621000,0],[1708343622000,0],[1708343623000,0],[1708343624000,0],[1708343625000,0],[1708343626000,0],[1708343627000,0],[1708343628000,0],[1708343629000,0],[1708343630000,0],[1708343631000,0],[1708343632000,0],[1708343633000,0],[1708343634000,0],[1708343635000,0],[1708343636000,0],[1708343637000,0],[1708343638000,0],[1708343639000,0],[1708343640000,0],[1708343641000,0],[1708343642000,0],[1708343643000,0],[1708343644000,0],[1708343645000,0],[1708343646000,0],[1708343647000,0],[1708343648000,0],[1708343649000,0],[1708343650000,0],[1708343651000,0],[1708343652000,0],[1708343653000,0],[1708343654000,0],[1708343655000,0],[1708343656000,0],[1708343657000,0],[1708343658000,0],[1708343659000,0],[1708343660000,0],[1708343661000,0],[1708343662000,0],[1708343663000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#9D00FF',
name: 'validação concorrência transações - c',
data: [
[1708343419000,0],[1708343420000,25],[1708343421000,23],[1708343422000,0],[1708343423000,0],[1708343424000,0],[1708343425000,0],[1708343426000,0],[1708343427000,0],[1708343428000,0],[1708343429000,0],[1708343430000,0],[1708343431000,0],[1708343432000,0],[1708343433000,0],[1708343434000,0],[1708343435000,0],[1708343436000,0],[1708343437000,0],[1708343438000,0],[1708343439000,0],[1708343440000,0],[1708343441000,0],[1708343442000,0],[1708343443000,0],[1708343444000,0],[1708343445000,0],[1708343446000,0],[1708343447000,0],[1708343448000,0],[1708343449000,0],[1708343450000,0],[1708343451000,0],[1708343452000,0],[1708343453000,0],[1708343454000,0],[1708343455000,0],[1708343456000,0],[1708343457000,0],[1708343458000,0],[1708343459000,0],[1708343460000,0],[1708343461000,0],[1708343462000,0],[1708343463000,0],[1708343464000,0],[1708343465000,0],[1708343466000,0],[1708343467000,0],[1708343468000,0],[1708343469000,0],[1708343470000,0],[1708343471000,0],[1708343472000,0],[1708343473000,0],[1708343474000,0],[1708343475000,0],[1708343476000,0],[1708343477000,0],[1708343478000,0],[1708343479000,0],[1708343480000,0],[1708343481000,0],[1708343482000,0],[1708343483000,0],[1708343484000,0],[1708343485000,0],[1708343486000,0],[1708343487000,0],[1708343488000,0],[1708343489000,0],[1708343490000,0],[1708343491000,0],[1708343492000,0],[1708343493000,0],[1708343494000,0],[1708343495000,0],[1708343496000,0],[1708343497000,0],[1708343498000,0],[1708343499000,0],[1708343500000,0],[1708343501000,0],[1708343502000,0],[1708343503000,0],[1708343504000,0],[1708343505000,0],[1708343506000,0],[1708343507000,0],[1708343508000,0],[1708343509000,0],[1708343510000,0],[1708343511000,0],[1708343512000,0],[1708343513000,0],[1708343514000,0],[1708343515000,0],[1708343516000,0],[1708343517000,0],[1708343518000,0],[1708343519000,0],[1708343520000,0],[1708343521000,0],[1708343522000,0],[1708343523000,0],[1708343524000,0],[1708343525000,0],[1708343526000,0],[1708343527000,0],[1708343528000,0],[1708343529000,0],[1708343530000,0],[1708343531000,0],[1708343532000,0],[1708343533000,0],[1708343534000,0],[1708343535000,0],[1708343536000,0],[1708343537000,0],[1708343538000,0],[1708343539000,0],[1708343540000,0],[1708343541000,0],[1708343542000,0],[1708343543000,0],[1708343544000,0],[1708343545000,0],[1708343546000,0],[1708343547000,0],[1708343548000,0],[1708343549000,0],[1708343550000,0],[1708343551000,0],[1708343552000,0],[1708343553000,0],[1708343554000,0],[1708343555000,0],[1708343556000,0],[1708343557000,0],[1708343558000,0],[1708343559000,0],[1708343560000,0],[1708343561000,0],[1708343562000,0],[1708343563000,0],[1708343564000,0],[1708343565000,0],[1708343566000,0],[1708343567000,0],[1708343568000,0],[1708343569000,0],[1708343570000,0],[1708343571000,0],[1708343572000,0],[1708343573000,0],[1708343574000,0],[1708343575000,0],[1708343576000,0],[1708343577000,0],[1708343578000,0],[1708343579000,0],[1708343580000,0],[1708343581000,0],[1708343582000,0],[1708343583000,0],[1708343584000,0],[1708343585000,0],[1708343586000,0],[1708343587000,0],[1708343588000,0],[1708343589000,0],[1708343590000,0],[1708343591000,0],[1708343592000,0],[1708343593000,0],[1708343594000,0],[1708343595000,0],[1708343596000,0],[1708343597000,0],[1708343598000,0],[1708343599000,0],[1708343600000,0],[1708343601000,0],[1708343602000,0],[1708343603000,0],[1708343604000,0],[1708343605000,0],[1708343606000,0],[1708343607000,0],[1708343608000,0],[1708343609000,0],[1708343610000,0],[1708343611000,0],[1708343612000,0],[1708343613000,0],[1708343614000,0],[1708343615000,0],[1708343616000,0],[1708343617000,0],[1708343618000,0],[1708343619000,0],[1708343620000,0],[1708343621000,0],[1708343622000,0],[1708343623000,0],[1708343624000,0],[1708343625000,0],[1708343626000,0],[1708343627000,0],[1708343628000,0],[1708343629000,0],[1708343630000,0],[1708343631000,0],[1708343632000,0],[1708343633000,0],[1708343634000,0],[1708343635000,0],[1708343636000,0],[1708343637000,0],[1708343638000,0],[1708343639000,0],[1708343640000,0],[1708343641000,0],[1708343642000,0],[1708343643000,0],[1708343644000,0],[1708343645000,0],[1708343646000,0],[1708343647000,0],[1708343648000,0],[1708343649000,0],[1708343650000,0],[1708343651000,0],[1708343652000,0],[1708343653000,0],[1708343654000,0],[1708343655000,0],[1708343656000,0],[1708343657000,0],[1708343658000,0],[1708343659000,0],[1708343660000,0],[1708343661000,0],[1708343662000,0],[1708343663000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FF00E1',
name: 'validação concorrência saldo - -25',
data: [
[1708343419000,1],[1708343420000,1],[1708343421000,0],[1708343422000,0],[1708343423000,0],[1708343424000,0],[1708343425000,0],[1708343426000,0],[1708343427000,0],[1708343428000,0],[1708343429000,0],[1708343430000,0],[1708343431000,0],[1708343432000,0],[1708343433000,0],[1708343434000,0],[1708343435000,0],[1708343436000,0],[1708343437000,0],[1708343438000,0],[1708343439000,0],[1708343440000,0],[1708343441000,0],[1708343442000,0],[1708343443000,0],[1708343444000,0],[1708343445000,0],[1708343446000,0],[1708343447000,0],[1708343448000,0],[1708343449000,0],[1708343450000,0],[1708343451000,0],[1708343452000,0],[1708343453000,0],[1708343454000,0],[1708343455000,0],[1708343456000,0],[1708343457000,0],[1708343458000,0],[1708343459000,0],[1708343460000,0],[1708343461000,0],[1708343462000,0],[1708343463000,0],[1708343464000,0],[1708343465000,0],[1708343466000,0],[1708343467000,0],[1708343468000,0],[1708343469000,0],[1708343470000,0],[1708343471000,0],[1708343472000,0],[1708343473000,0],[1708343474000,0],[1708343475000,0],[1708343476000,0],[1708343477000,0],[1708343478000,0],[1708343479000,0],[1708343480000,0],[1708343481000,0],[1708343482000,0],[1708343483000,0],[1708343484000,0],[1708343485000,0],[1708343486000,0],[1708343487000,0],[1708343488000,0],[1708343489000,0],[1708343490000,0],[1708343491000,0],[1708343492000,0],[1708343493000,0],[1708343494000,0],[1708343495000,0],[1708343496000,0],[1708343497000,0],[1708343498000,0],[1708343499000,0],[1708343500000,0],[1708343501000,0],[1708343502000,0],[1708343503000,0],[1708343504000,0],[1708343505000,0],[1708343506000,0],[1708343507000,0],[1708343508000,0],[1708343509000,0],[1708343510000,0],[1708343511000,0],[1708343512000,0],[1708343513000,0],[1708343514000,0],[1708343515000,0],[1708343516000,0],[1708343517000,0],[1708343518000,0],[1708343519000,0],[1708343520000,0],[1708343521000,0],[1708343522000,0],[1708343523000,0],[1708343524000,0],[1708343525000,0],[1708343526000,0],[1708343527000,0],[1708343528000,0],[1708343529000,0],[1708343530000,0],[1708343531000,0],[1708343532000,0],[1708343533000,0],[1708343534000,0],[1708343535000,0],[1708343536000,0],[1708343537000,0],[1708343538000,0],[1708343539000,0],[1708343540000,0],[1708343541000,0],[1708343542000,0],[1708343543000,0],[1708343544000,0],[1708343545000,0],[1708343546000,0],[1708343547000,0],[1708343548000,0],[1708343549000,0],[1708343550000,0],[1708343551000,0],[1708343552000,0],[1708343553000,0],[1708343554000,0],[1708343555000,0],[1708343556000,0],[1708343557000,0],[1708343558000,0],[1708343559000,0],[1708343560000,0],[1708343561000,0],[1708343562000,0],[1708343563000,0],[1708343564000,0],[1708343565000,0],[1708343566000,0],[1708343567000,0],[1708343568000,0],[1708343569000,0],[1708343570000,0],[1708343571000,0],[1708343572000,0],[1708343573000,0],[1708343574000,0],[1708343575000,0],[1708343576000,0],[1708343577000,0],[1708343578000,0],[1708343579000,0],[1708343580000,0],[1708343581000,0],[1708343582000,0],[1708343583000,0],[1708343584000,0],[1708343585000,0],[1708343586000,0],[1708343587000,0],[1708343588000,0],[1708343589000,0],[1708343590000,0],[1708343591000,0],[1708343592000,0],[1708343593000,0],[1708343594000,0],[1708343595000,0],[1708343596000,0],[1708343597000,0],[1708343598000,0],[1708343599000,0],[1708343600000,0],[1708343601000,0],[1708343602000,0],[1708343603000,0],[1708343604000,0],[1708343605000,0],[1708343606000,0],[1708343607000,0],[1708343608000,0],[1708343609000,0],[1708343610000,0],[1708343611000,0],[1708343612000,0],[1708343613000,0],[1708343614000,0],[1708343615000,0],[1708343616000,0],[1708343617000,0],[1708343618000,0],[1708343619000,0],[1708343620000,0],[1708343621000,0],[1708343622000,0],[1708343623000,0],[1708343624000,0],[1708343625000,0],[1708343626000,0],[1708343627000,0],[1708343628000,0],[1708343629000,0],[1708343630000,0],[1708343631000,0],[1708343632000,0],[1708343633000,0],[1708343634000,0],[1708343635000,0],[1708343636000,0],[1708343637000,0],[1708343638000,0],[1708343639000,0],[1708343640000,0],[1708343641000,0],[1708343642000,0],[1708343643000,0],[1708343644000,0],[1708343645000,0],[1708343646000,0],[1708343647000,0],[1708343648000,0],[1708343649000,0],[1708343650000,0],[1708343651000,0],[1708343652000,0],[1708343653000,0],[1708343654000,0],[1708343655000,0],[1708343656000,0],[1708343657000,0],[1708343658000,0],[1708343659000,0],[1708343660000,0],[1708343661000,0],[1708343662000,0],[1708343663000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#AECAEB',
name: 'validação concorrência transações - d',
data: [
[1708343419000,25],[1708343420000,0],[1708343421000,0],[1708343422000,0],[1708343423000,0],[1708343424000,0],[1708343425000,0],[1708343426000,0],[1708343427000,0],[1708343428000,0],[1708343429000,0],[1708343430000,0],[1708343431000,0],[1708343432000,0],[1708343433000,0],[1708343434000,0],[1708343435000,0],[1708343436000,0],[1708343437000,0],[1708343438000,0],[1708343439000,0],[1708343440000,0],[1708343441000,0],[1708343442000,0],[1708343443000,0],[1708343444000,0],[1708343445000,0],[1708343446000,0],[1708343447000,0],[1708343448000,0],[1708343449000,0],[1708343450000,0],[1708343451000,0],[1708343452000,0],[1708343453000,0],[1708343454000,0],[1708343455000,0],[1708343456000,0],[1708343457000,0],[1708343458000,0],[1708343459000,0],[1708343460000,0],[1708343461000,0],[1708343462000,0],[1708343463000,0],[1708343464000,0],[1708343465000,0],[1708343466000,0],[1708343467000,0],[1708343468000,0],[1708343469000,0],[1708343470000,0],[1708343471000,0],[1708343472000,0],[1708343473000,0],[1708343474000,0],[1708343475000,0],[1708343476000,0],[1708343477000,0],[1708343478000,0],[1708343479000,0],[1708343480000,0],[1708343481000,0],[1708343482000,0],[1708343483000,0],[1708343484000,0],[1708343485000,0],[1708343486000,0],[1708343487000,0],[1708343488000,0],[1708343489000,0],[1708343490000,0],[1708343491000,0],[1708343492000,0],[1708343493000,0],[1708343494000,0],[1708343495000,0],[1708343496000,0],[1708343497000,0],[1708343498000,0],[1708343499000,0],[1708343500000,0],[1708343501000,0],[1708343502000,0],[1708343503000,0],[1708343504000,0],[1708343505000,0],[1708343506000,0],[1708343507000,0],[1708343508000,0],[1708343509000,0],[1708343510000,0],[1708343511000,0],[1708343512000,0],[1708343513000,0],[1708343514000,0],[1708343515000,0],[1708343516000,0],[1708343517000,0],[1708343518000,0],[1708343519000,0],[1708343520000,0],[1708343521000,0],[1708343522000,0],[1708343523000,0],[1708343524000,0],[1708343525000,0],[1708343526000,0],[1708343527000,0],[1708343528000,0],[1708343529000,0],[1708343530000,0],[1708343531000,0],[1708343532000,0],[1708343533000,0],[1708343534000,0],[1708343535000,0],[1708343536000,0],[1708343537000,0],[1708343538000,0],[1708343539000,0],[1708343540000,0],[1708343541000,0],[1708343542000,0],[1708343543000,0],[1708343544000,0],[1708343545000,0],[1708343546000,0],[1708343547000,0],[1708343548000,0],[1708343549000,0],[1708343550000,0],[1708343551000,0],[1708343552000,0],[1708343553000,0],[1708343554000,0],[1708343555000,0],[1708343556000,0],[1708343557000,0],[1708343558000,0],[1708343559000,0],[1708343560000,0],[1708343561000,0],[1708343562000,0],[1708343563000,0],[1708343564000,0],[1708343565000,0],[1708343566000,0],[1708343567000,0],[1708343568000,0],[1708343569000,0],[1708343570000,0],[1708343571000,0],[1708343572000,0],[1708343573000,0],[1708343574000,0],[1708343575000,0],[1708343576000,0],[1708343577000,0],[1708343578000,0],[1708343579000,0],[1708343580000,0],[1708343581000,0],[1708343582000,0],[1708343583000,0],[1708343584000,0],[1708343585000,0],[1708343586000,0],[1708343587000,0],[1708343588000,0],[1708343589000,0],[1708343590000,0],[1708343591000,0],[1708343592000,0],[1708343593000,0],[1708343594000,0],[1708343595000,0],[1708343596000,0],[1708343597000,0],[1708343598000,0],[1708343599000,0],[1708343600000,0],[1708343601000,0],[1708343602000,0],[1708343603000,0],[1708343604000,0],[1708343605000,0],[1708343606000,0],[1708343607000,0],[1708343608000,0],[1708343609000,0],[1708343610000,0],[1708343611000,0],[1708343612000,0],[1708343613000,0],[1708343614000,0],[1708343615000,0],[1708343616000,0],[1708343617000,0],[1708343618000,0],[1708343619000,0],[1708343620000,0],[1708343621000,0],[1708343622000,0],[1708343623000,0],[1708343624000,0],[1708343625000,0],[1708343626000,0],[1708343627000,0],[1708343628000,0],[1708343629000,0],[1708343630000,0],[1708343631000,0],[1708343632000,0],[1708343633000,0],[1708343634000,0],[1708343635000,0],[1708343636000,0],[1708343637000,0],[1708343638000,0],[1708343639000,0],[1708343640000,0],[1708343641000,0],[1708343642000,0],[1708343643000,0],[1708343644000,0],[1708343645000,0],[1708343646000,0],[1708343647000,0],[1708343648000,0],[1708343649000,0],[1708343650000,0],[1708343651000,0],[1708343652000,0],[1708343653000,0],[1708343654000,0],[1708343655000,0],[1708343656000,0],[1708343657000,0],[1708343658000,0],[1708343659000,0],[1708343660000,0],[1708343661000,0],[1708343662000,0],[1708343663000,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: ['3', '8', '14', '20', '25', '31', '37', '42', '48', '54', '59', '65', '70', '76', '82', '87', '93', '99', '104', '110', '116', '121', '127', '133', '138', '144', '149', '155', '161', '166', '172', '178', '183', '189', '195', '200', '206', '211', '217', '223', '228', '234', '240', '245', '251', '257', '262', '268', '274', '279', '285', '290', '296', '302', '307', '313', '319', '324', '330', '336', '341', '347', '353', '358', '364', '369', '375', '381', '386', '392', '398', '403', '409', '415', '420', '426', '431', '437', '443', '448', '454', '460', '465', '471', '477', '482', '488', '493', '499', '505', '510', '516', '522', '527', '533', '539', '544', '550', '556', '561'],
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: [
84.23,9.56,0.73,0.39,0.25,0.19,0.22,0.2,0.18,0.22,0.22,0.18,0.26,0.18,0.22,0.2,0.15,0.17,0.17,0.13,0.14,0.15,0.11,0.11,0.12,0.13,0.11,0.1,0.08,0.08,0.07,0.08,0.06,0.04,0.06,0.05,0.04,0.04,0.03,0.02,0.01,0.02,0.02,0.01,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
],
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([[1708343419,[116,148,184,198,199,202,205,207,215,218]],[1708343420,[4,4,4,4,4,4,4,4,4,4]],[1708343421,[10,25,35,53,55,56,57,57,67,71]],[1708343422,[2,2,2,2,2,2,2,2,2,2]],[1708343423,[1,2,4,7,9,10,13,15,22,23]],[1708343424,[5,262,520,542,546,550,555,559,563,564]],[1708343425,[2,4,5,5,5,5,5,5,5,6]],[1708343426,[4,5,5,5,5,5,6,6,6,6]],[1708343427,[2,4,4,5,5,5,5,5,5,5]],[1708343428,[2,4,4,5,5,6,6,7,7,7]],[1708343429,[2,4,4,4,5,5,5,5,6,7]],[1708343430,[2,4,4,4,4,5,5,7,11,13]],[1708343431,[1,3,4,4,4,4,4,4,5,5]],[1708343432,[2,4,4,5,5,5,5,5,5,6]],[1708343433,[2,3,4,5,6,6,6,8,11,12]],[1708343434,[2,3,4,5,5,5,5,5,8,9]],[1708343435,[2,3,4,4,4,5,5,6,8,9]],[1708343436,[2,3,4,4,5,5,5,6,7,7]],[1708343437,[2,3,4,4,5,5,5,6,8,9]],[1708343438,[2,3,4,4,4,4,4,5,8,9]],[1708343439,[1,3,4,4,4,5,6,8,10,11]],[1708343440,[1,3,3,4,4,4,4,4,5,5]],[1708343441,[1,3,4,4,4,4,4,4,6,6]],[1708343442,[1,3,3,4,4,4,4,5,6,7]],[1708343443,[1,3,3,3,3,3,4,4,5,5]],[1708343444,[1,3,3,4,4,4,4,4,5,5]],[1708343445,[1,3,3,4,4,4,5,5,6,6]],[1708343446,[1,3,3,4,4,4,6,19,45,60]],[1708343447,[1,3,3,4,4,4,4,4,5,5]],[1708343448,[1,3,3,4,4,4,4,4,5,5]],[1708343449,[1,3,3,4,4,4,4,5,9,14]],[1708343450,[1,3,3,4,4,4,4,5,8,11]],[1708343451,[1,3,3,4,4,4,4,5,5,6]],[1708343452,[1,3,3,3,3,4,4,5,12,12]],[1708343453,[1,3,3,3,4,4,4,4,7,12]],[1708343454,[1,3,3,3,3,4,4,4,6,6]],[1708343455,[1,3,3,4,4,4,4,5,13,13]],[1708343456,[1,3,3,4,4,4,5,9,14,14]],[1708343457,[1,3,3,3,3,4,4,4,6,6]],[1708343458,[1,2,3,4,4,4,5,5,8,8]],[1708343459,[1,3,4,4,5,5,5,6,13,19]],[1708343460,[1,3,3,4,4,5,6,10,14,16]],[1708343461,[1,2,3,4,4,4,4,5,6,7]],[1708343462,[1,3,3,3,3,4,4,4,6,7]],[1708343463,[1,3,3,4,4,4,4,5,13,23]],[1708343464,[1,2,3,3,4,4,6,32,68,91]],[1708343465,[1,3,3,3,3,4,5,6,6,9]],[1708343466,[1,2,3,3,3,4,4,4,5,7]],[1708343467,[1,3,3,4,4,4,4,4,6,8]],[1708343468,[1,3,3,4,4,4,4,5,6,7]],[1708343469,[1,2,3,3,4,4,4,5,5,6]],[1708343470,[1,2,3,3,4,4,4,8,15,21]],[1708343471,[1,2,3,4,4,4,5,5,10,24]],[1708343472,[1,2,3,3,3,4,4,5,6,6]],[1708343473,[1,2,3,3,4,4,4,5,11,13]],[1708343474,[1,2,3,3,4,4,4,5,6,12]],[1708343475,[1,2,3,3,3,4,4,6,13,25]],[1708343476,[0,2,3,3,3,3,4,4,8,11]],[1708343477,[0,1,2,3,3,3,4,5,6,8]],[1708343478,[1,1,3,3,3,3,3,4,13,13]],[1708343479,[0,2,3,3,3,4,4,5,10,19]],[1708343480,[0,2,3,3,4,4,5,5,6,9]],[1708343481,[1,3,3,4,4,4,5,5,23,35]],[1708343482,[0,2,3,3,3,4,4,5,7,12]],[1708343483,[0,2,3,3,3,3,3,4,9,22]],[1708343484,[1,2,3,3,3,4,4,7,22,33]],[1708343485,[0,2,3,3,3,3,4,5,6,13]],[1708343486,[0,2,3,3,3,3,4,5,9,22]],[1708343487,[1,2,3,3,3,3,3,4,5,14]],[1708343488,[0,2,2,3,3,3,4,6,12,21]],[1708343489,[1,2,3,3,3,3,3,4,11,13]],[1708343490,[1,2,3,3,3,3,4,5,17,34]],[1708343491,[0,2,3,3,3,3,4,4,6,22]],[1708343492,[1,2,3,3,4,4,4,5,10,12]],[1708343493,[1,2,3,4,4,4,4,5,34,41]],[1708343494,[0,2,2,3,3,3,4,5,8,16]],[1708343495,[1,2,2,3,3,4,4,5,14,30]],[1708343496,[1,2,3,3,3,4,4,5,6,7]],[1708343497,[1,2,3,3,3,3,4,5,14,27]],[1708343498,[1,2,3,3,3,3,4,5,9,22]],[1708343499,[0,2,2,3,3,3,3,4,6,8]],[1708343500,[1,2,3,4,7,30,67,98,124,139]],[1708343501,[1,2,3,3,3,3,4,4,7,9]],[1708343502,[1,2,2,3,3,3,4,4,6,12]],[1708343503,[1,2,3,3,3,4,4,4,6,12]],[1708343504,[0,2,2,3,3,3,3,4,5,8]],[1708343505,[1,2,3,3,4,4,4,5,9,12]],[1708343506,[0,1,3,3,4,4,5,6,8,10]],[1708343507,[0,2,3,4,7,20,53,83,124,139]],[1708343508,[1,2,3,3,3,3,3,4,7,12]],[1708343509,[0,2,2,3,3,3,3,4,8,9]],[1708343510,[1,2,3,3,3,3,4,4,7,10]],[1708343511,[0,2,3,3,3,4,4,6,17,19]],[1708343512,[0,2,2,3,3,4,4,5,6,6]],[1708343513,[0,2,3,4,5,22,61,96,137,145]],[1708343514,[0,2,3,4,4,5,7,12,38,50]],[1708343515,[1,2,3,3,3,4,4,5,7,14]],[1708343516,[1,2,3,4,4,4,5,6,9,12]],[1708343517,[0,2,3,3,3,4,4,5,7,10]],[1708343518,[0,2,2,3,3,3,3,4,7,8]],[1708343519,[1,2,3,3,4,4,8,79,131,155]],[1708343520,[1,2,3,3,4,5,14,34,76,89]],[1708343521,[0,2,2,3,3,3,4,4,6,8]],[1708343522,[0,2,2,3,3,3,3,5,8,12]],[1708343523,[1,2,2,3,3,3,3,4,7,14]],[1708343524,[1,2,3,3,3,3,4,5,6,10]],[1708343525,[0,2,3,4,27,50,70,97,129,184]],[1708343526,[0,2,2,3,3,4,4,4,8,15]],[1708343527,[1,2,2,3,4,4,4,4,5,6]],[1708343528,[1,2,3,3,4,4,4,5,7,8]],[1708343529,[0,2,2,3,3,3,4,5,7,11]],[1708343530,[0,2,2,3,3,3,3,4,4,8]],[1708343531,[1,2,3,7,29,62,89,112,148,177]],[1708343532,[0,2,2,3,3,3,3,4,5,10]],[1708343533,[0,2,2,3,3,3,4,5,15,23]],[1708343534,[0,2,2,3,3,3,3,4,7,12]],[1708343535,[0,2,2,3,3,3,3,4,5,7]],[1708343536,[1,3,4,35,62,88,115,149,191,210]],[1708343537,[0,2,3,4,4,5,5,7,12,18]],[1708343538,[1,3,4,5,5,6,6,7,8,12]],[1708343539,[0,2,3,4,4,4,4,5,8,13]],[1708343540,[1,3,4,5,6,6,7,7,13,17]],[1708343541,[1,2,4,41,63,78,111,150,198,273]],[1708343542,[1,3,4,5,5,6,6,6,8,8]],[1708343543,[0,2,3,4,4,5,5,6,9,11]],[1708343544,[0,3,4,6,6,7,7,8,10,17]],[1708343545,[0,2,3,6,7,7,8,104,177,208]],[1708343546,[0,4,5,11,26,50,82,140,186,200]],[1708343547,[1,2,3,8,21,66,113,153,186,197]],[1708343548,[1,3,4,6,6,7,8,8,11,14]],[1708343549,[1,3,4,5,5,6,6,7,11,16]],[1708343550,[1,3,4,63,83,104,136,188,262,289]],[1708343551,[1,3,5,7,7,8,8,9,17,34]],[1708343552,[1,3,4,5,6,7,8,10,17,23]],[1708343553,[1,3,4,6,6,7,7,8,9,11]],[1708343554,[1,2,3,4,5,5,6,7,10,12]],[1708343555,[1,3,5,43,69,90,128,179,239,260]],[1708343556,[1,2,3,4,4,5,5,6,10,13]],[1708343557,[0,3,5,6,6,7,7,8,13,21]],[1708343558,[0,2,3,4,4,4,5,6,7,9]],[1708343559,[1,4,5,6,7,7,8,8,13,22]],[1708343560,[1,3,4,37,66,87,121,151,202,243]],[1708343561,[0,2,4,5,6,6,7,8,13,15]],[1708343562,[0,2,3,3,3,4,4,5,6,9]],[1708343563,[1,3,4,5,6,6,6,7,8,10]],[1708343564,[0,2,3,8,50,85,124,168,243,268]],[1708343565,[0,3,4,6,6,7,8,40,81,103]],[1708343566,[1,2,3,3,4,4,4,5,5,9]],[1708343567,[1,3,4,5,5,6,6,7,8,11]],[1708343568,[1,2,3,4,4,4,5,7,10,20]],[1708343569,[1,3,5,23,55,72,107,165,217,240]],[1708343570,[1,2,3,3,3,4,4,5,12,18]],[1708343571,[1,3,4,5,5,6,6,7,8,12]],[1708343572,[1,2,3,4,4,6,14,34,74,86]],[1708343573,[1,2,3,4,4,4,5,5,6,10]],[1708343574,[0,2,3,27,51,71,99,131,171,195]],[1708343575,[1,2,3,4,4,4,5,5,6,7]],[1708343576,[0,1,2,3,3,4,4,4,5,7]],[1708343577,[0,2,3,4,4,4,5,6,7,9]],[1708343578,[0,2,2,4,4,5,84,137,190,219]],[1708343579,[0,2,4,6,8,15,35,65,89,125]],[1708343580,[0,2,2,2,4,4,5,5,6,8]],[1708343581,[0,2,3,4,4,5,6,7,8,8]],[1708343582,[1,3,3,5,5,6,7,8,9,11]],[1708343583,[1,3,4,57,79,106,166,196,244,262]],[1708343584,[1,3,3,5,5,6,7,7,8,11]],[1708343585,[1,2,3,3,4,4,5,5,7,10]],[1708343586,[1,3,3,5,6,6,7,8,9,13]],[1708343587,[1,2,3,3,4,4,4,5,5,7]],[1708343588,[1,3,5,27,57,80,106,140,186,218]],[1708343589,[1,1,3,3,3,4,4,5,6,6]],[1708343590,[1,2,3,5,6,6,7,9,14,16]],[1708343591,[0,1,3,3,3,4,4,5,7,13]],[1708343592,[0,2,3,4,4,5,5,6,8,199]],[1708343593,[1,2,3,12,32,57,78,126,163,187]],[1708343594,[1,2,3,4,5,5,6,7,8,13]],[1708343595,[0,1,2,3,3,3,4,4,6,9]],[1708343596,[0,2,2,4,4,5,6,7,9,13]],[1708343597,[0,2,3,21,52,107,144,176,219,236]],[1708343598,[1,3,4,6,6,6,7,8,25,41]],[1708343599,[1,3,4,5,6,6,7,8,11,20]],[1708343600,[0,2,4,5,5,6,6,8,14,22]],[1708343601,[0,2,3,4,5,5,6,6,8,10]],[1708343602,[0,3,6,33,65,91,143,165,211,232]],[1708343603,[0,2,3,5,5,6,6,7,10,13]],[1708343604,[0,3,4,5,5,6,6,7,8,15]],[1708343605,[0,2,3,5,5,6,7,8,11,19]],[1708343606,[1,3,5,6,6,6,7,7,9,11]],[1708343607,[1,2,4,31,58,75,105,146,202,228]],[1708343608,[1,4,5,6,6,7,7,8,9,14]],[1708343609,[1,2,3,3,4,4,4,5,6,8]],[1708343610,[0,4,5,6,6,7,7,9,14,21]],[1708343611,[0,2,3,4,5,23,59,103,165,208]],[1708343612,[0,3,4,6,7,8,10,44,73,83]],[1708343613,[0,2,2,3,3,4,4,5,7,11]],[1708343614,[1,3,4,5,5,6,6,7,7,8]],[1708343615,[0,2,2,3,3,4,4,5,9,12]],[1708343616,[1,4,6,70,90,117,142,180,247,276]],[1708343617,[0,2,3,3,4,4,5,5,9,13]],[1708343618,[0,3,4,5,5,6,6,7,8,12]],[1708343619,[0,2,3,4,4,4,5,6,13,18]],[1708343620,[1,3,4,5,6,6,7,9,13,17]],[1708343621,[0,2,3,9,42,65,87,120,144,181]],[1708343622,[0,2,4,6,6,6,7,8,9,9]],[1708343623,[1,2,3,4,5,5,6,6,8,10]],[1708343624,[1,3,4,5,5,6,6,7,8,11]],[1708343625,[0,2,3,5,5,6,7,84,147,210]],[1708343626,[0,3,5,7,10,34,71,114,161,177]],[1708343627,[1,2,3,5,5,6,7,8,10,13]],[1708343628,[0,2,3,4,5,5,6,7,8,13]],[1708343629,[1,2,3,4,5,5,5,6,7,13]],[1708343630,[0,2,3,27,49,75,101,133,176,189]],[1708343631,[0,2,3,5,5,5,6,7,9,13]],[1708343632,[0,2,3,5,6,8,21,43,65,70]],[1708343633,[0,2,3,5,5,6,6,7,8,10]],[1708343634,[0,2,3,4,4,4,5,6,7,15]],[1708343635,[0,3,5,47,75,98,133,154,212,229]],[1708343636,[0,1,3,3,4,4,5,6,8,11]],[1708343637,[0,2,4,5,5,6,6,7,8,9]],[1708343638,[0,1,2,3,3,4,4,5,7,11]],[1708343639,[1,3,4,5,5,6,6,7,8,8]],[1708343640,[1,3,3,23,54,84,106,126,181,215]],[1708343641,[0,3,4,6,6,6,7,8,9,11]],[1708343642,[0,1,3,3,3,4,4,5,7,10]],[1708343643,[1,3,4,6,6,6,7,7,9,11]],[1708343644,[1,2,3,12,70,103,127,179,241,256]],[1708343645,[1,3,4,6,7,7,8,46,75,98]],[1708343646,[1,2,3,3,4,4,4,4,5,6]],[1708343647,[1,3,3,5,5,6,6,7,9,11]],[1708343648,[1,1,3,3,4,4,5,6,10,14]],[1708343649,[1,3,4,66,81,116,151,188,236,265]],[1708343650,[0,2,3,3,4,4,4,5,10,14]],[1708343651,[1,2,3,4,5,5,5,6,7,9]],[1708343652,[1,1,3,3,3,4,4,4,5,6]],[1708343653,[1,2,3,4,5,5,6,6,8,8]],[1708343654,[1,2,4,53,79,99,141,176,235,256]],[1708343655,[1,2,3,4,4,5,5,6,7,9]],[1708343656,[1,1,3,3,4,4,4,5,6,14]],[1708343657,[0,2,3,4,4,4,5,5,7,15]],[1708343658,[0,2,3,5,6,8,92,153,220,247]],[1708343659,[0,2,3,6,10,37,62,85,157,185]],[1708343660,[0,2,3,4,4,4,4,5,7,10]],[1708343661,[1,3,5,6,6,7,7,8,12,14]],[1708343662,[0,2,3,3,4,4,5,5,7,8]],[1708343663,[0,3,5,14,41,74,111,170,248,278]]]);
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([[1708343419,[25,25,0]],[1708343420,[1,1,0]],[1708343421,[25,25,0]],[1708343422,[1,1,0]],[1708343423,[71,71,0]],[1708343424,[3,3,0]],[1708343425,[6,6,0]],[1708343426,[9,9,0]],[1708343427,[11,11,0]],[1708343428,[13,13,0]],[1708343429,[18,18,0]],[1708343430,[19,19,0]],[1708343431,[24,24,0]],[1708343432,[26,26,0]],[1708343433,[27,27,0]],[1708343434,[32,32,0]],[1708343435,[34,34,0]],[1708343436,[37,37,0]],[1708343437,[39,39,0]],[1708343438,[43,43,0]],[1708343439,[44,44,0]],[1708343440,[49,49,0]],[1708343441,[50,50,0]],[1708343442,[54,54,0]],[1708343443,[56,56,0]],[1708343444,[60,60,0]],[1708343445,[61,61,0]],[1708343446,[65,65,0]],[1708343447,[67,67,0]],[1708343448,[70,70,0]],[1708343449,[74,74,0]],[1708343450,[76,76,0]],[1708343451,[80,80,0]],[1708343452,[81,81,0]],[1708343453,[84,84,0]],[1708343454,[88,88,0]],[1708343455,[90,90,0]],[1708343456,[93,93,0]],[1708343457,[96,96,0]],[1708343458,[98,98,0]],[1708343459,[102,102,0]],[1708343460,[104,104,0]],[1708343461,[107,107,0]],[1708343462,[109,109,0]],[1708343463,[114,114,0]],[1708343464,[115,115,0]],[1708343465,[118,118,0]],[1708343466,[121,121,0]],[1708343467,[124,124,0]],[1708343468,[126,126,0]],[1708343469,[129,129,0]],[1708343470,[133,133,0]],[1708343471,[134,134,0]],[1708343472,[139,139,0]],[1708343473,[140,140,0]],[1708343474,[144,144,0]],[1708343475,[146,146,0]],[1708343476,[149,149,0]],[1708343477,[151,151,0]],[1708343478,[155,155,0]],[1708343479,[157,157,0]],[1708343480,[160,160,0]],[1708343481,[164,164,0]],[1708343482,[165,165,0]],[1708343483,[171,171,0]],[1708343484,[171,171,0]],[1708343485,[174,174,0]],[1708343486,[177,177,0]],[1708343487,[180,180,0]],[1708343488,[183,183,0]],[1708343489,[186,186,0]],[1708343490,[188,188,0]],[1708343491,[192,192,0]],[1708343492,[194,194,0]],[1708343493,[197,197,0]],[1708343494,[198,198,0]],[1708343495,[204,204,0]],[1708343496,[204,204,0]],[1708343497,[208,208,0]],[1708343498,[211,211,0]],[1708343499,[214,214,0]],[1708343500,[217,217,0]],[1708343501,[219,219,0]],[1708343502,[222,222,0]],[1708343503,[225,225,0]],[1708343504,[228,228,0]],[1708343505,[229,229,0]],[1708343506,[234,234,0]],[1708343507,[236,236,0]],[1708343508,[239,239,0]],[1708343509,[242,242,0]],[1708343510,[244,244,0]],[1708343511,[248,248,0]],[1708343512,[250,250,0]],[1708343513,[253,253,0]],[1708343514,[255,255,0]],[1708343515,[260,260,0]],[1708343516,[263,263,0]],[1708343517,[263,263,0]],[1708343518,[267,267,0]],[1708343519,[269,269,0]],[1708343520,[273,273,0]],[1708343521,[275,275,0]],[1708343522,[279,279,0]],[1708343523,[281,281,0]],[1708343524,[284,284,0]],[1708343525,[286,286,0]],[1708343526,[290,290,0]],[1708343527,[292,292,0]],[1708343528,[295,295,0]],[1708343529,[298,298,0]],[1708343530,[301,301,0]],[1708343531,[304,304,0]],[1708343532,[305,305,0]],[1708343533,[310,310,0]],[1708343534,[312,312,0]],[1708343535,[315,315,0]],[1708343536,[317,317,0]],[1708343537,[320,320,0]],[1708343538,[323,323,0]],[1708343539,[326,326,0]],[1708343540,[330,330,0]],[1708343541,[332,332,0]],[1708343542,[334,334,0]],[1708343543,[337,337,0]],[1708343544,[340,340,0]],[1708343545,[340,340,0]],[1708343546,[340,340,0]],[1708343547,[340,340,0]],[1708343548,[340,340,0]],[1708343549,[340,340,0]],[1708343550,[340,340,0]],[1708343551,[340,340,0]],[1708343552,[340,340,0]],[1708343553,[340,340,0]],[1708343554,[340,340,0]],[1708343555,[340,340,0]],[1708343556,[340,340,0]],[1708343557,[340,340,0]],[1708343558,[340,340,0]],[1708343559,[340,340,0]],[1708343560,[340,340,0]],[1708343561,[340,340,0]],[1708343562,[340,340,0]],[1708343563,[340,340,0]],[1708343564,[340,340,0]],[1708343565,[340,340,0]],[1708343566,[340,340,0]],[1708343567,[340,340,0]],[1708343568,[340,340,0]],[1708343569,[340,340,0]],[1708343570,[340,340,0]],[1708343571,[340,340,0]],[1708343572,[340,340,0]],[1708343573,[340,340,0]],[1708343574,[340,340,0]],[1708343575,[340,340,0]],[1708343576,[340,340,0]],[1708343577,[340,340,0]],[1708343578,[340,340,0]],[1708343579,[340,340,0]],[1708343580,[340,340,0]],[1708343581,[340,340,0]],[1708343582,[340,340,0]],[1708343583,[340,340,0]],[1708343584,[340,340,0]],[1708343585,[340,340,0]],[1708343586,[340,340,0]],[1708343587,[340,340,0]],[1708343588,[340,340,0]],[1708343589,[340,340,0]],[1708343590,[340,340,0]],[1708343591,[340,340,0]],[1708343592,[340,340,0]],[1708343593,[340,340,0]],[1708343594,[340,340,0]],[1708343595,[340,340,0]],[1708343596,[340,340,0]],[1708343597,[340,340,0]],[1708343598,[340,340,0]],[1708343599,[340,340,0]],[1708343600,[340,340,0]],[1708343601,[340,340,0]],[1708343602,[340,340,0]],[1708343603,[340,340,0]],[1708343604,[340,340,0]],[1708343605,[340,340,0]],[1708343606,[340,340,0]],[1708343607,[340,340,0]],[1708343608,[340,340,0]],[1708343609,[340,340,0]],[1708343610,[340,340,0]],[1708343611,[340,340,0]],[1708343612,[340,340,0]],[1708343613,[340,340,0]],[1708343614,[340,340,0]],[1708343615,[340,340,0]],[1708343616,[340,340,0]],[1708343617,[340,340,0]],[1708343618,[340,340,0]],[1708343619,[340,340,0]],[1708343620,[340,340,0]],[1708343621,[340,340,0]],[1708343622,[340,340,0]],[1708343623,[340,340,0]],[1708343624,[340,340,0]],[1708343625,[340,340,0]],[1708343626,[340,340,0]],[1708343627,[340,340,0]],[1708343628,[340,340,0]],[1708343629,[340,340,0]],[1708343630,[340,340,0]],[1708343631,[340,340,0]],[1708343632,[340,340,0]],[1708343633,[340,340,0]],[1708343634,[340,340,0]],[1708343635,[340,340,0]],[1708343636,[340,340,0]],[1708343637,[340,340,0]],[1708343638,[340,340,0]],[1708343639,[340,340,0]],[1708343640,[340,340,0]],[1708343641,[340,340,0]],[1708343642,[340,340,0]],[1708343643,[340,340,0]],[1708343644,[340,340,0]],[1708343645,[340,340,0]],[1708343646,[340,340,0]],[1708343647,[340,340,0]],[1708343648,[340,340,0]],[1708343649,[340,340,0]],[1708343650,[340,340,0]],[1708343651,[340,340,0]],[1708343652,[340,340,0]],[1708343653,[340,340,0]],[1708343654,[340,340,0]],[1708343655,[340,340,0]],[1708343656,[340,340,0]],[1708343657,[340,340,0]],[1708343658,[340,340,0]],[1708343659,[340,340,0]],[1708343660,[340,340,0]],[1708343661,[340,340,0]],[1708343662,[340,340,0]],[1708343663,[503,503,0]]]);
var requestsChart = new Highcharts.StockChart({
chart: {
renderTo: 'requests',
zoomType: 'x',
marginBottom: 60
},
credits: { enabled: false },
legend: {
enabled: true,
floating: true,
y: -65,
borderWidth: 0,
itemStyle: { fontWeight: "normal" },
symbolRadius: 0
},
title: { text: 'A title to let highcharts reserve the place for the title set later' },
navigator: {
maskInside: false
},
rangeSelector: {
buttonSpacing: 0,
buttonTheme: {
fill: '#CFC9C6',
padding: 1,
stroke: '#000000',
'stroke-width': 0.25,
style: {
color: '#000000',
fontWeight: 'bold',
},
states: {
stroke: '#000000',
'stroke-width': 0.25,
hover: {
fill: '#92918C',
style: { color: 'black' }
},
select: {
fill: '#FFA900',
style: { color: 'white' }
}
}
},
buttons : [
{
type : 'minute',
count : 1,
text : '1m'
}, {
type : 'minute',
count : 10,
text : '10m'
}, {
type : 'hour',
count : 1,
text : '1h'
}, {
type : 'all',
count : 1,
text : 'All'
}
],
selected : 3,
inputEnabled : false
},
plotOptions: {
series: {
dataGrouping: { enabled: false }
},
area: {
stacking: 'normal'
}
},
xAxis: {
type: 'datetime',
ordinal: false,
maxZoom: 10000 // three days
},
yAxis:[