-
Notifications
You must be signed in to change notification settings - Fork 925
/
index.html
1173 lines (1104 loc) · 93.2 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="shortcut icon" type="image/x-icon" href="style/favicon.ico"/>
<link href="style/style.css" rel="stylesheet" type="text/css" />
<link href="style/bootstrap.min.css" rel="stylesheet" type="text/css" />
<script src="js/jquery-3.5.1.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/gatling.js"></script>
<script src="js/menu.js"></script>
<script src="js/ellipsis.js"></script>
<script src="js/all_sessions.js"></script>
<script src="js/stats.js"></script>
<script src="js/highstock.js"></script>
<script src="js/highcharts-more.js"></script>
<script src="js/theme.js"></script>
<script src="js/unpack.js"></script>
<title>Gatling Stats - Global Information</title>
</head>
<body>
<script>
const storedTheme = localStorage.getItem('theme') || (window.matchMedia("(prefers-color-scheme: dark)").matches ? "dark" : "light");
if (storedTheme) document.documentElement.setAttribute('data-theme', storedTheme)
function toggleTheme() {
const currentTheme = document.documentElement.getAttribute("data-theme");
const targetTheme = currentTheme === "light" ? "dark" : "light";
document.documentElement.setAttribute('data-theme', targetTheme)
localStorage.setItem('theme', targetTheme);
};
</script>
<div class="app-container">
<div class="frise"></div>
<div class="head">
<div class="gatling-open-source">
<a class="gatling-logo gatling-logo-light" href="https://gatling.io" target="blank_" title="Gatling Home Page"><img alt="Gatling" src="style/logo-light.svg"/></a>
<a class="gatling-logo gatling-logo-dark" href="https://gatling.io" target="blank_" title="Gatling Home Page"><img alt="Gatling" src="style/logo-dark.svg"/></a>
<a class="gatling-documentation" href="https://gatling.io/docs/" target="_blank">Documentation</a>
</div>
<div class="nav spacer"></div>
<a class="enterprise" href="https://gatling.io/enterprise/next-step/" target="_blank"><strong>Try</strong>
<img class="logo-enterprise-light" alt="Gatling Enterprise" src="style/logo-enterprise-light.svg"/>
<img class="logo-enterprise-dark" alt="Gatling Enterprise" src="style/logo-enterprise-dark.svg"/>
</a>
<button id="theme-toggle" class="theme-toggle" type="button" onclick="toggleTheme()" aria-label="Toggle user interface mode">
<span class="toggle-dark"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-moon"><path d="M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z"></path></svg></span>
<span class="toggle-light"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-sun"><circle cx="12" cy="12" r="5"></circle><line x1="12" y1="1" x2="12" y2="3"></line><line x1="12" y1="21" x2="12" y2="23"></line><line x1="4.22" y1="4.22" x2="5.64" y2="5.64"></line><line x1="18.36" y1="18.36" x2="19.78" y2="19.78"></line><line x1="1" y1="12" x2="3" y2="12"></line><line x1="21" y1="12" x2="23" y2="12"></line><line x1="4.22" y1="19.78" x2="5.64" y2="18.36"></line><line x1="18.36" y1="5.64" x2="19.78" y2="4.22"></line></svg></span>
</button>
</div>
<div class="container details">
<div class="nav">
<ul></ul>
</div>
<div class="cadre">
<div class="content">
<div class="content-header">
<div class="onglet">
RinhaBackendCrebitosSimulation
</div>
<div class="sous-menu" id="sousMenu">
<div class="sous-menu-spacer">
<div class="item ouvert"><a href="index.html">Global</a></div>
<div class="item "><a id="details_link" href="#">Details</a></div>
</div>
</div>
</div>
<div class="content-in">
<div class="container-article">
<div class="article">
<div class="schema-container">
<div id="ranges" class="schema ranges">
</div>
<div class="schema polar">
<div id="container_number_of_requests"></div>
</div>
<div class="simulation-card">
<div class="simulation-version-information">
<span class="simulation-information-title">Gatling Version</span>
<span class="simulation-information-item">
<span class="simulation-information-label">Version: </span>
<span>3.10.3</span>
</span>
<span class="simulation-information-item">
<span class="simulation-information-label">Released: </span>
<span>2023-12-20</span>
</span>
</div>
<div id="simulation-information" class="simulation-version-information">
<span class="simulation-information-title">Run Information</span>
<div class="simulation-information-container">
<span class="simulation-information-item">
<span class="simulation-information-label">Date: </span>
<span>2024-03-10 23:00:23 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 - robertoseba">
<span class="simulation-information-label">Description: </span>
<span>Rinha de Backend - 2024/Q1: Crébito - robertoseba</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: [
[1710111623000,0],[1710111624000,0],[1710111625000,0],[1710111626000,0],[1710111627000,1],[1710111628000,1],[1710111629000,2],[1710111630000,4],[1710111631000,4],[1710111632000,6],[1710111633000,6],[1710111634000,7],[1710111635000,8],[1710111636000,8],[1710111637000,10],[1710111638000,10],[1710111639000,12],[1710111640000,12],[1710111641000,14],[1710111642000,14],[1710111643000,15],[1710111644000,16],[1710111645000,17],[1710111646000,17],[1710111647000,19],[1710111648000,20],[1710111649000,20],[1710111650000,22],[1710111651000,22],[1710111652000,23],[1710111653000,25],[1710111654000,25],[1710111655000,26],[1710111656000,26],[1710111657000,28],[1710111658000,29],[1710111659000,30],[1710111660000,30],[1710111661000,32],[1710111662000,32],[1710111663000,33],[1710111664000,34],[1710111665000,35],[1710111666000,36],[1710111667000,38],[1710111668000,38],[1710111669000,39],[1710111670000,39],[1710111671000,41],[1710111672000,41],[1710111673000,43],[1710111674000,43],[1710111675000,44],[1710111676000,45],[1710111677000,46],[1710111678000,48],[1710111679000,49],[1710111680000,49],[1710111681000,51],[1710111682000,51],[1710111683000,53],[1710111684000,52],[1710111685000,53],[1710111686000,54],[1710111687000,56],[1710111688000,55],[1710111689000,57],[1710111690000,58],[1710111691000,60],[1710111692000,59],[1710111693000,61],[1710111694000,61],[1710111695000,63],[1710111696000,63],[1710111697000,64],[1710111698000,65],[1710111699000,66],[1710111700000,67],[1710111701000,68],[1710111702000,68],[1710111703000,70],[1710111704000,70],[1710111705000,72],[1710111706000,72],[1710111707000,73],[1710111708000,74],[1710111709000,75],[1710111710000,76],[1710111711000,77],[1710111712000,78],[1710111713000,79],[1710111714000,79],[1710111715000,81],[1710111716000,81],[1710111717000,82],[1710111718000,83],[1710111719000,85],[1710111720000,85],[1710111721000,86],[1710111722000,86],[1710111723000,88],[1710111724000,89],[1710111725000,90],[1710111726000,91],[1710111727000,92],[1710111728000,93],[1710111729000,95],[1710111730000,94],[1710111731000,96],[1710111732000,97],[1710111733000,98],[1710111734000,98],[1710111735000,100],[1710111736000,100],[1710111737000,101],[1710111738000,101],[1710111739000,103],[1710111740000,103],[1710111741000,104],[1710111742000,105],[1710111743000,106],[1710111744000,107],[1710111745000,107],[1710111746000,109],[1710111747000,110],[1710111748000,110],[1710111749000,110],[1710111750000,110],[1710111751000,110],[1710111752000,110],[1710111753000,110],[1710111754000,110],[1710111755000,110],[1710111756000,110],[1710111757000,110],[1710111758000,110],[1710111759000,110],[1710111760000,110],[1710111761000,112],[1710111762000,110],[1710111763000,110],[1710111764000,110],[1710111765000,110],[1710111766000,110],[1710111767000,110],[1710111768000,110],[1710111769000,110],[1710111770000,110],[1710111771000,110],[1710111772000,110],[1710111773000,110],[1710111774000,110],[1710111775000,110],[1710111776000,110],[1710111777000,110],[1710111778000,110],[1710111779000,110],[1710111780000,110],[1710111781000,110],[1710111782000,110],[1710111783000,110],[1710111784000,110],[1710111785000,110],[1710111786000,110],[1710111787000,110],[1710111788000,110],[1710111789000,110],[1710111790000,110],[1710111791000,110],[1710111792000,110],[1710111793000,110],[1710111794000,110],[1710111795000,110],[1710111796000,110],[1710111797000,110],[1710111798000,110],[1710111799000,110],[1710111800000,110],[1710111801000,110],[1710111802000,110],[1710111803000,110],[1710111804000,110],[1710111805000,110],[1710111806000,110],[1710111807000,110],[1710111808000,110],[1710111809000,110],[1710111810000,110],[1710111811000,110],[1710111812000,111],[1710111813000,110],[1710111814000,110],[1710111815000,110],[1710111816000,110],[1710111817000,110],[1710111818000,110],[1710111819000,110],[1710111820000,110],[1710111821000,110],[1710111822000,111],[1710111823000,110],[1710111824000,110],[1710111825000,110],[1710111826000,110],[1710111827000,110],[1710111828000,110],[1710111829000,110],[1710111830000,110],[1710111831000,110],[1710111832000,111],[1710111833000,110],[1710111834000,110],[1710111835000,110],[1710111836000,110],[1710111837000,110],[1710111838000,110],[1710111839000,110],[1710111840000,110],[1710111841000,110],[1710111842000,110],[1710111843000,110],[1710111844000,110],[1710111845000,110],[1710111846000,110],[1710111847000,110],[1710111848000,110],[1710111849000,110],[1710111850000,110],[1710111851000,110],[1710111852000,110],[1710111853000,110],[1710111854000,110],[1710111855000,110],[1710111856000,110],[1710111857000,110],[1710111858000,110],[1710111859000,110],[1710111860000,110],[1710111861000,110],[1710111862000,110],[1710111863000,110],[1710111864000,110],[1710111865000,112],[1710111866000,110],[1710111867000,107]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#68b65c',
name: 'débitos',
data: [
[1710111623000,0],[1710111624000,0],[1710111625000,0],[1710111626000,0],[1710111627000,1],[1710111628000,1],[1710111629000,4],[1710111630000,6],[1710111631000,7],[1710111632000,9],[1710111633000,11],[1710111634000,13],[1710111635000,15],[1710111636000,16],[1710111637000,19],[1710111638000,20],[1710111639000,22],[1710111640000,24],[1710111641000,25],[1710111642000,28],[1710111643000,29],[1710111644000,31],[1710111645000,33],[1710111646000,35],[1710111647000,37],[1710111648000,38],[1710111649000,40],[1710111650000,42],[1710111651000,45],[1710111652000,47],[1710111653000,48],[1710111654000,51],[1710111655000,52],[1710111656000,53],[1710111657000,55],[1710111658000,56],[1710111659000,59],[1710111660000,60],[1710111661000,62],[1710111662000,64],[1710111663000,66],[1710111664000,68],[1710111665000,69],[1710111666000,71],[1710111667000,75],[1710111668000,74],[1710111669000,77],[1710111670000,79],[1710111671000,80],[1710111672000,82],[1710111673000,84],[1710111674000,86],[1710111675000,88],[1710111676000,90],[1710111677000,93],[1710111678000,93],[1710111679000,96],[1710111680000,98],[1710111681000,99],[1710111682000,101],[1710111683000,103],[1710111684000,104],[1710111685000,106],[1710111686000,108],[1710111687000,110],[1710111688000,111],[1710111689000,113],[1710111690000,115],[1710111691000,119],[1710111692000,119],[1710111693000,120],[1710111694000,123],[1710111695000,124],[1710111696000,126],[1710111697000,128],[1710111698000,129],[1710111699000,132],[1710111700000,133],[1710111701000,136],[1710111702000,138],[1710111703000,140],[1710111704000,142],[1710111705000,143],[1710111706000,145],[1710111707000,148],[1710111708000,148],[1710111709000,151],[1710111710000,152],[1710111711000,153],[1710111712000,155],[1710111713000,157],[1710111714000,159],[1710111715000,161],[1710111716000,163],[1710111717000,165],[1710111718000,166],[1710111719000,168],[1710111720000,170],[1710111721000,171],[1710111722000,174],[1710111723000,175],[1710111724000,177],[1710111725000,179],[1710111726000,182],[1710111727000,186],[1710111728000,184],[1710111729000,187],[1710111730000,189],[1710111731000,191],[1710111732000,193],[1710111733000,194],[1710111734000,197],[1710111735000,198],[1710111736000,200],[1710111737000,202],[1710111738000,202],[1710111739000,205],[1710111740000,206],[1710111741000,208],[1710111742000,210],[1710111743000,212],[1710111744000,214],[1710111745000,215],[1710111746000,217],[1710111747000,220],[1710111748000,220],[1710111749000,220],[1710111750000,220],[1710111751000,220],[1710111752000,220],[1710111753000,220],[1710111754000,220],[1710111755000,220],[1710111756000,220],[1710111757000,220],[1710111758000,220],[1710111759000,220],[1710111760000,220],[1710111761000,222],[1710111762000,220],[1710111763000,220],[1710111764000,220],[1710111765000,220],[1710111766000,220],[1710111767000,220],[1710111768000,220],[1710111769000,220],[1710111770000,220],[1710111771000,220],[1710111772000,220],[1710111773000,220],[1710111774000,220],[1710111775000,220],[1710111776000,220],[1710111777000,220],[1710111778000,220],[1710111779000,220],[1710111780000,220],[1710111781000,220],[1710111782000,220],[1710111783000,220],[1710111784000,220],[1710111785000,220],[1710111786000,220],[1710111787000,220],[1710111788000,220],[1710111789000,220],[1710111790000,220],[1710111791000,220],[1710111792000,220],[1710111793000,220],[1710111794000,220],[1710111795000,220],[1710111796000,220],[1710111797000,220],[1710111798000,220],[1710111799000,220],[1710111800000,220],[1710111801000,220],[1710111802000,220],[1710111803000,220],[1710111804000,220],[1710111805000,220],[1710111806000,220],[1710111807000,220],[1710111808000,220],[1710111809000,220],[1710111810000,220],[1710111811000,220],[1710111812000,222],[1710111813000,220],[1710111814000,220],[1710111815000,220],[1710111816000,220],[1710111817000,220],[1710111818000,220],[1710111819000,220],[1710111820000,220],[1710111821000,220],[1710111822000,221],[1710111823000,220],[1710111824000,220],[1710111825000,220],[1710111826000,220],[1710111827000,220],[1710111828000,220],[1710111829000,220],[1710111830000,220],[1710111831000,220],[1710111832000,223],[1710111833000,220],[1710111834000,220],[1710111835000,220],[1710111836000,220],[1710111837000,220],[1710111838000,220],[1710111839000,220],[1710111840000,220],[1710111841000,220],[1710111842000,220],[1710111843000,220],[1710111844000,220],[1710111845000,220],[1710111846000,220],[1710111847000,220],[1710111848000,220],[1710111849000,220],[1710111850000,220],[1710111851000,220],[1710111852000,220],[1710111853000,220],[1710111854000,220],[1710111855000,220],[1710111856000,220],[1710111857000,220],[1710111858000,220],[1710111859000,220],[1710111860000,220],[1710111861000,220],[1710111862000,220],[1710111863000,220],[1710111864000,220],[1710111865000,221],[1710111866000,220],[1710111867000,215]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#f15b4f',
name: 'extratos',
data: [
[1710111623000,0],[1710111624000,0],[1710111625000,0],[1710111626000,0],[1710111627000,1],[1710111628000,1],[1710111629000,1],[1710111630000,1],[1710111631000,1],[1710111632000,1],[1710111633000,2],[1710111634000,1],[1710111635000,2],[1710111636000,2],[1710111637000,1],[1710111638000,2],[1710111639000,2],[1710111640000,2],[1710111641000,2],[1710111642000,2],[1710111643000,2],[1710111644000,2],[1710111645000,3],[1710111646000,2],[1710111647000,3],[1710111648000,2],[1710111649000,3],[1710111650000,2],[1710111651000,3],[1710111652000,3],[1710111653000,3],[1710111654000,3],[1710111655000,3],[1710111656000,3],[1710111657000,3],[1710111658000,4],[1710111659000,3],[1710111660000,3],[1710111661000,4],[1710111662000,3],[1710111663000,4],[1710111664000,4],[1710111665000,4],[1710111666000,4],[1710111667000,4],[1710111668000,4],[1710111669000,4],[1710111670000,4],[1710111671000,4],[1710111672000,4],[1710111673000,5],[1710111674000,4],[1710111675000,5],[1710111676000,5],[1710111677000,4],[1710111678000,5],[1710111679000,5],[1710111680000,5],[1710111681000,5],[1710111682000,5],[1710111683000,5],[1710111684000,5],[1710111685000,6],[1710111686000,5],[1710111687000,6],[1710111688000,5],[1710111689000,6],[1710111690000,5],[1710111691000,6],[1710111692000,6],[1710111693000,6],[1710111694000,6],[1710111695000,6],[1710111696000,6],[1710111697000,6],[1710111698000,7],[1710111699000,6],[1710111700000,6],[1710111701000,7],[1710111702000,6],[1710111703000,7],[1710111704000,7],[1710111705000,7],[1710111706000,7],[1710111707000,7],[1710111708000,7],[1710111709000,7],[1710111710000,7],[1710111711000,7],[1710111712000,7],[1710111713000,8],[1710111714000,7],[1710111715000,8],[1710111716000,8],[1710111717000,7],[1710111718000,8],[1710111719000,8],[1710111720000,8],[1710111721000,8],[1710111722000,8],[1710111723000,8],[1710111724000,8],[1710111725000,9],[1710111726000,8],[1710111727000,9],[1710111728000,8],[1710111729000,9],[1710111730000,8],[1710111731000,9],[1710111732000,9],[1710111733000,9],[1710111734000,9],[1710111735000,9],[1710111736000,9],[1710111737000,9],[1710111738000,10],[1710111739000,9],[1710111740000,9],[1710111741000,10],[1710111742000,9],[1710111743000,10],[1710111744000,10],[1710111745000,10],[1710111746000,10],[1710111747000,10],[1710111748000,10],[1710111749000,10],[1710111750000,10],[1710111751000,10],[1710111752000,10],[1710111753000,10],[1710111754000,10],[1710111755000,10],[1710111756000,10],[1710111757000,10],[1710111758000,10],[1710111759000,10],[1710111760000,10],[1710111761000,10],[1710111762000,10],[1710111763000,10],[1710111764000,10],[1710111765000,10],[1710111766000,10],[1710111767000,10],[1710111768000,10],[1710111769000,10],[1710111770000,10],[1710111771000,10],[1710111772000,10],[1710111773000,10],[1710111774000,10],[1710111775000,10],[1710111776000,10],[1710111777000,10],[1710111778000,10],[1710111779000,10],[1710111780000,10],[1710111781000,10],[1710111782000,10],[1710111783000,10],[1710111784000,10],[1710111785000,10],[1710111786000,10],[1710111787000,10],[1710111788000,10],[1710111789000,10],[1710111790000,10],[1710111791000,10],[1710111792000,10],[1710111793000,10],[1710111794000,10],[1710111795000,10],[1710111796000,10],[1710111797000,10],[1710111798000,10],[1710111799000,10],[1710111800000,10],[1710111801000,10],[1710111802000,10],[1710111803000,10],[1710111804000,10],[1710111805000,10],[1710111806000,10],[1710111807000,10],[1710111808000,10],[1710111809000,10],[1710111810000,10],[1710111811000,10],[1710111812000,10],[1710111813000,10],[1710111814000,10],[1710111815000,10],[1710111816000,10],[1710111817000,10],[1710111818000,10],[1710111819000,10],[1710111820000,10],[1710111821000,10],[1710111822000,10],[1710111823000,10],[1710111824000,10],[1710111825000,10],[1710111826000,10],[1710111827000,10],[1710111828000,10],[1710111829000,10],[1710111830000,10],[1710111831000,10],[1710111832000,10],[1710111833000,10],[1710111834000,10],[1710111835000,10],[1710111836000,10],[1710111837000,10],[1710111838000,10],[1710111839000,10],[1710111840000,10],[1710111841000,10],[1710111842000,10],[1710111843000,10],[1710111844000,10],[1710111845000,10],[1710111846000,10],[1710111847000,10],[1710111848000,10],[1710111849000,10],[1710111850000,10],[1710111851000,10],[1710111852000,10],[1710111853000,10],[1710111854000,10],[1710111855000,10],[1710111856000,10],[1710111857000,10],[1710111858000,10],[1710111859000,10],[1710111860000,10],[1710111861000,10],[1710111862000,10],[1710111863000,10],[1710111864000,10],[1710111865000,10],[1710111866000,10],[1710111867000,9]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FFDD00',
name: 'validações',
data: [
[1710111623000,0],[1710111624000,0],[1710111625000,0],[1710111626000,5],[1710111627000,5],[1710111628000,0],[1710111629000,0],[1710111630000,0],[1710111631000,0],[1710111632000,0],[1710111633000,0],[1710111634000,0],[1710111635000,0],[1710111636000,0],[1710111637000,0],[1710111638000,0],[1710111639000,0],[1710111640000,0],[1710111641000,0],[1710111642000,0],[1710111643000,0],[1710111644000,0],[1710111645000,0],[1710111646000,0],[1710111647000,0],[1710111648000,0],[1710111649000,0],[1710111650000,0],[1710111651000,0],[1710111652000,0],[1710111653000,0],[1710111654000,0],[1710111655000,0],[1710111656000,0],[1710111657000,0],[1710111658000,0],[1710111659000,0],[1710111660000,0],[1710111661000,0],[1710111662000,0],[1710111663000,0],[1710111664000,0],[1710111665000,0],[1710111666000,0],[1710111667000,0],[1710111668000,0],[1710111669000,0],[1710111670000,0],[1710111671000,0],[1710111672000,0],[1710111673000,0],[1710111674000,0],[1710111675000,0],[1710111676000,0],[1710111677000,0],[1710111678000,0],[1710111679000,0],[1710111680000,0],[1710111681000,0],[1710111682000,0],[1710111683000,0],[1710111684000,0],[1710111685000,0],[1710111686000,0],[1710111687000,0],[1710111688000,0],[1710111689000,0],[1710111690000,0],[1710111691000,0],[1710111692000,0],[1710111693000,0],[1710111694000,0],[1710111695000,0],[1710111696000,0],[1710111697000,0],[1710111698000,0],[1710111699000,0],[1710111700000,0],[1710111701000,0],[1710111702000,0],[1710111703000,0],[1710111704000,0],[1710111705000,0],[1710111706000,0],[1710111707000,0],[1710111708000,0],[1710111709000,0],[1710111710000,0],[1710111711000,0],[1710111712000,0],[1710111713000,0],[1710111714000,0],[1710111715000,0],[1710111716000,0],[1710111717000,0],[1710111718000,0],[1710111719000,0],[1710111720000,0],[1710111721000,0],[1710111722000,0],[1710111723000,0],[1710111724000,0],[1710111725000,0],[1710111726000,0],[1710111727000,0],[1710111728000,0],[1710111729000,0],[1710111730000,0],[1710111731000,0],[1710111732000,0],[1710111733000,0],[1710111734000,0],[1710111735000,0],[1710111736000,0],[1710111737000,0],[1710111738000,0],[1710111739000,0],[1710111740000,0],[1710111741000,0],[1710111742000,0],[1710111743000,0],[1710111744000,0],[1710111745000,0],[1710111746000,0],[1710111747000,0],[1710111748000,0],[1710111749000,0],[1710111750000,0],[1710111751000,0],[1710111752000,0],[1710111753000,0],[1710111754000,0],[1710111755000,0],[1710111756000,0],[1710111757000,0],[1710111758000,0],[1710111759000,0],[1710111760000,0],[1710111761000,0],[1710111762000,0],[1710111763000,0],[1710111764000,0],[1710111765000,0],[1710111766000,0],[1710111767000,0],[1710111768000,0],[1710111769000,0],[1710111770000,0],[1710111771000,0],[1710111772000,0],[1710111773000,0],[1710111774000,0],[1710111775000,0],[1710111776000,0],[1710111777000,0],[1710111778000,0],[1710111779000,0],[1710111780000,0],[1710111781000,0],[1710111782000,0],[1710111783000,0],[1710111784000,0],[1710111785000,0],[1710111786000,0],[1710111787000,0],[1710111788000,0],[1710111789000,0],[1710111790000,0],[1710111791000,0],[1710111792000,0],[1710111793000,0],[1710111794000,0],[1710111795000,0],[1710111796000,0],[1710111797000,0],[1710111798000,0],[1710111799000,0],[1710111800000,0],[1710111801000,0],[1710111802000,0],[1710111803000,0],[1710111804000,0],[1710111805000,0],[1710111806000,0],[1710111807000,0],[1710111808000,0],[1710111809000,0],[1710111810000,0],[1710111811000,0],[1710111812000,0],[1710111813000,0],[1710111814000,0],[1710111815000,0],[1710111816000,0],[1710111817000,0],[1710111818000,0],[1710111819000,0],[1710111820000,0],[1710111821000,0],[1710111822000,0],[1710111823000,0],[1710111824000,0],[1710111825000,0],[1710111826000,0],[1710111827000,0],[1710111828000,0],[1710111829000,0],[1710111830000,0],[1710111831000,0],[1710111832000,0],[1710111833000,0],[1710111834000,0],[1710111835000,0],[1710111836000,0],[1710111837000,0],[1710111838000,0],[1710111839000,0],[1710111840000,0],[1710111841000,0],[1710111842000,0],[1710111843000,0],[1710111844000,0],[1710111845000,0],[1710111846000,0],[1710111847000,0],[1710111848000,0],[1710111849000,0],[1710111850000,0],[1710111851000,0],[1710111852000,0],[1710111853000,0],[1710111854000,0],[1710111855000,0],[1710111856000,0],[1710111857000,0],[1710111858000,0],[1710111859000,0],[1710111860000,0],[1710111861000,0],[1710111862000,0],[1710111863000,0],[1710111864000,0],[1710111865000,0],[1710111866000,0],[1710111867000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00D5FF',
name: 'validação HTTP 404',
data: [
[1710111623000,0],[1710111624000,0],[1710111625000,0],[1710111626000,1],[1710111627000,0],[1710111628000,0],[1710111629000,0],[1710111630000,0],[1710111631000,0],[1710111632000,0],[1710111633000,0],[1710111634000,0],[1710111635000,0],[1710111636000,0],[1710111637000,0],[1710111638000,0],[1710111639000,0],[1710111640000,0],[1710111641000,0],[1710111642000,0],[1710111643000,0],[1710111644000,0],[1710111645000,0],[1710111646000,0],[1710111647000,0],[1710111648000,0],[1710111649000,0],[1710111650000,0],[1710111651000,0],[1710111652000,0],[1710111653000,0],[1710111654000,0],[1710111655000,0],[1710111656000,0],[1710111657000,0],[1710111658000,0],[1710111659000,0],[1710111660000,0],[1710111661000,0],[1710111662000,0],[1710111663000,0],[1710111664000,0],[1710111665000,0],[1710111666000,0],[1710111667000,0],[1710111668000,0],[1710111669000,0],[1710111670000,0],[1710111671000,0],[1710111672000,0],[1710111673000,0],[1710111674000,0],[1710111675000,0],[1710111676000,0],[1710111677000,0],[1710111678000,0],[1710111679000,0],[1710111680000,0],[1710111681000,0],[1710111682000,0],[1710111683000,0],[1710111684000,0],[1710111685000,0],[1710111686000,0],[1710111687000,0],[1710111688000,0],[1710111689000,0],[1710111690000,0],[1710111691000,0],[1710111692000,0],[1710111693000,0],[1710111694000,0],[1710111695000,0],[1710111696000,0],[1710111697000,0],[1710111698000,0],[1710111699000,0],[1710111700000,0],[1710111701000,0],[1710111702000,0],[1710111703000,0],[1710111704000,0],[1710111705000,0],[1710111706000,0],[1710111707000,0],[1710111708000,0],[1710111709000,0],[1710111710000,0],[1710111711000,0],[1710111712000,0],[1710111713000,0],[1710111714000,0],[1710111715000,0],[1710111716000,0],[1710111717000,0],[1710111718000,0],[1710111719000,0],[1710111720000,0],[1710111721000,0],[1710111722000,0],[1710111723000,0],[1710111724000,0],[1710111725000,0],[1710111726000,0],[1710111727000,0],[1710111728000,0],[1710111729000,0],[1710111730000,0],[1710111731000,0],[1710111732000,0],[1710111733000,0],[1710111734000,0],[1710111735000,0],[1710111736000,0],[1710111737000,0],[1710111738000,0],[1710111739000,0],[1710111740000,0],[1710111741000,0],[1710111742000,0],[1710111743000,0],[1710111744000,0],[1710111745000,0],[1710111746000,0],[1710111747000,0],[1710111748000,0],[1710111749000,0],[1710111750000,0],[1710111751000,0],[1710111752000,0],[1710111753000,0],[1710111754000,0],[1710111755000,0],[1710111756000,0],[1710111757000,0],[1710111758000,0],[1710111759000,0],[1710111760000,0],[1710111761000,0],[1710111762000,0],[1710111763000,0],[1710111764000,0],[1710111765000,0],[1710111766000,0],[1710111767000,0],[1710111768000,0],[1710111769000,0],[1710111770000,0],[1710111771000,0],[1710111772000,0],[1710111773000,0],[1710111774000,0],[1710111775000,0],[1710111776000,0],[1710111777000,0],[1710111778000,0],[1710111779000,0],[1710111780000,0],[1710111781000,0],[1710111782000,0],[1710111783000,0],[1710111784000,0],[1710111785000,0],[1710111786000,0],[1710111787000,0],[1710111788000,0],[1710111789000,0],[1710111790000,0],[1710111791000,0],[1710111792000,0],[1710111793000,0],[1710111794000,0],[1710111795000,0],[1710111796000,0],[1710111797000,0],[1710111798000,0],[1710111799000,0],[1710111800000,0],[1710111801000,0],[1710111802000,0],[1710111803000,0],[1710111804000,0],[1710111805000,0],[1710111806000,0],[1710111807000,0],[1710111808000,0],[1710111809000,0],[1710111810000,0],[1710111811000,0],[1710111812000,0],[1710111813000,0],[1710111814000,0],[1710111815000,0],[1710111816000,0],[1710111817000,0],[1710111818000,0],[1710111819000,0],[1710111820000,0],[1710111821000,0],[1710111822000,0],[1710111823000,0],[1710111824000,0],[1710111825000,0],[1710111826000,0],[1710111827000,0],[1710111828000,0],[1710111829000,0],[1710111830000,0],[1710111831000,0],[1710111832000,0],[1710111833000,0],[1710111834000,0],[1710111835000,0],[1710111836000,0],[1710111837000,0],[1710111838000,0],[1710111839000,0],[1710111840000,0],[1710111841000,0],[1710111842000,0],[1710111843000,0],[1710111844000,0],[1710111845000,0],[1710111846000,0],[1710111847000,0],[1710111848000,0],[1710111849000,0],[1710111850000,0],[1710111851000,0],[1710111852000,0],[1710111853000,0],[1710111854000,0],[1710111855000,0],[1710111856000,0],[1710111857000,0],[1710111858000,0],[1710111859000,0],[1710111860000,0],[1710111861000,0],[1710111862000,0],[1710111863000,0],[1710111864000,0],[1710111865000,0],[1710111866000,0],[1710111867000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00FF00',
name: 'validação concorrência saldo - 0',
data: [
[1710111623000,0],[1710111624000,0],[1710111625000,1],[1710111626000,0],[1710111627000,0],[1710111628000,0],[1710111629000,0],[1710111630000,0],[1710111631000,0],[1710111632000,0],[1710111633000,0],[1710111634000,0],[1710111635000,0],[1710111636000,0],[1710111637000,0],[1710111638000,0],[1710111639000,0],[1710111640000,0],[1710111641000,0],[1710111642000,0],[1710111643000,0],[1710111644000,0],[1710111645000,0],[1710111646000,0],[1710111647000,0],[1710111648000,0],[1710111649000,0],[1710111650000,0],[1710111651000,0],[1710111652000,0],[1710111653000,0],[1710111654000,0],[1710111655000,0],[1710111656000,0],[1710111657000,0],[1710111658000,0],[1710111659000,0],[1710111660000,0],[1710111661000,0],[1710111662000,0],[1710111663000,0],[1710111664000,0],[1710111665000,0],[1710111666000,0],[1710111667000,0],[1710111668000,0],[1710111669000,0],[1710111670000,0],[1710111671000,0],[1710111672000,0],[1710111673000,0],[1710111674000,0],[1710111675000,0],[1710111676000,0],[1710111677000,0],[1710111678000,0],[1710111679000,0],[1710111680000,0],[1710111681000,0],[1710111682000,0],[1710111683000,0],[1710111684000,0],[1710111685000,0],[1710111686000,0],[1710111687000,0],[1710111688000,0],[1710111689000,0],[1710111690000,0],[1710111691000,0],[1710111692000,0],[1710111693000,0],[1710111694000,0],[1710111695000,0],[1710111696000,0],[1710111697000,0],[1710111698000,0],[1710111699000,0],[1710111700000,0],[1710111701000,0],[1710111702000,0],[1710111703000,0],[1710111704000,0],[1710111705000,0],[1710111706000,0],[1710111707000,0],[1710111708000,0],[1710111709000,0],[1710111710000,0],[1710111711000,0],[1710111712000,0],[1710111713000,0],[1710111714000,0],[1710111715000,0],[1710111716000,0],[1710111717000,0],[1710111718000,0],[1710111719000,0],[1710111720000,0],[1710111721000,0],[1710111722000,0],[1710111723000,0],[1710111724000,0],[1710111725000,0],[1710111726000,0],[1710111727000,0],[1710111728000,0],[1710111729000,0],[1710111730000,0],[1710111731000,0],[1710111732000,0],[1710111733000,0],[1710111734000,0],[1710111735000,0],[1710111736000,0],[1710111737000,0],[1710111738000,0],[1710111739000,0],[1710111740000,0],[1710111741000,0],[1710111742000,0],[1710111743000,0],[1710111744000,0],[1710111745000,0],[1710111746000,0],[1710111747000,0],[1710111748000,0],[1710111749000,0],[1710111750000,0],[1710111751000,0],[1710111752000,0],[1710111753000,0],[1710111754000,0],[1710111755000,0],[1710111756000,0],[1710111757000,0],[1710111758000,0],[1710111759000,0],[1710111760000,0],[1710111761000,0],[1710111762000,0],[1710111763000,0],[1710111764000,0],[1710111765000,0],[1710111766000,0],[1710111767000,0],[1710111768000,0],[1710111769000,0],[1710111770000,0],[1710111771000,0],[1710111772000,0],[1710111773000,0],[1710111774000,0],[1710111775000,0],[1710111776000,0],[1710111777000,0],[1710111778000,0],[1710111779000,0],[1710111780000,0],[1710111781000,0],[1710111782000,0],[1710111783000,0],[1710111784000,0],[1710111785000,0],[1710111786000,0],[1710111787000,0],[1710111788000,0],[1710111789000,0],[1710111790000,0],[1710111791000,0],[1710111792000,0],[1710111793000,0],[1710111794000,0],[1710111795000,0],[1710111796000,0],[1710111797000,0],[1710111798000,0],[1710111799000,0],[1710111800000,0],[1710111801000,0],[1710111802000,0],[1710111803000,0],[1710111804000,0],[1710111805000,0],[1710111806000,0],[1710111807000,0],[1710111808000,0],[1710111809000,0],[1710111810000,0],[1710111811000,0],[1710111812000,0],[1710111813000,0],[1710111814000,0],[1710111815000,0],[1710111816000,0],[1710111817000,0],[1710111818000,0],[1710111819000,0],[1710111820000,0],[1710111821000,0],[1710111822000,0],[1710111823000,0],[1710111824000,0],[1710111825000,0],[1710111826000,0],[1710111827000,0],[1710111828000,0],[1710111829000,0],[1710111830000,0],[1710111831000,0],[1710111832000,0],[1710111833000,0],[1710111834000,0],[1710111835000,0],[1710111836000,0],[1710111837000,0],[1710111838000,0],[1710111839000,0],[1710111840000,0],[1710111841000,0],[1710111842000,0],[1710111843000,0],[1710111844000,0],[1710111845000,0],[1710111846000,0],[1710111847000,0],[1710111848000,0],[1710111849000,0],[1710111850000,0],[1710111851000,0],[1710111852000,0],[1710111853000,0],[1710111854000,0],[1710111855000,0],[1710111856000,0],[1710111857000,0],[1710111858000,0],[1710111859000,0],[1710111860000,0],[1710111861000,0],[1710111862000,0],[1710111863000,0],[1710111864000,0],[1710111865000,0],[1710111866000,0],[1710111867000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#9D00FF',
name: 'validação concorrência transações - c',
data: [
[1710111623000,0],[1710111624000,25],[1710111625000,23],[1710111626000,0],[1710111627000,0],[1710111628000,0],[1710111629000,0],[1710111630000,0],[1710111631000,0],[1710111632000,0],[1710111633000,0],[1710111634000,0],[1710111635000,0],[1710111636000,0],[1710111637000,0],[1710111638000,0],[1710111639000,0],[1710111640000,0],[1710111641000,0],[1710111642000,0],[1710111643000,0],[1710111644000,0],[1710111645000,0],[1710111646000,0],[1710111647000,0],[1710111648000,0],[1710111649000,0],[1710111650000,0],[1710111651000,0],[1710111652000,0],[1710111653000,0],[1710111654000,0],[1710111655000,0],[1710111656000,0],[1710111657000,0],[1710111658000,0],[1710111659000,0],[1710111660000,0],[1710111661000,0],[1710111662000,0],[1710111663000,0],[1710111664000,0],[1710111665000,0],[1710111666000,0],[1710111667000,0],[1710111668000,0],[1710111669000,0],[1710111670000,0],[1710111671000,0],[1710111672000,0],[1710111673000,0],[1710111674000,0],[1710111675000,0],[1710111676000,0],[1710111677000,0],[1710111678000,0],[1710111679000,0],[1710111680000,0],[1710111681000,0],[1710111682000,0],[1710111683000,0],[1710111684000,0],[1710111685000,0],[1710111686000,0],[1710111687000,0],[1710111688000,0],[1710111689000,0],[1710111690000,0],[1710111691000,0],[1710111692000,0],[1710111693000,0],[1710111694000,0],[1710111695000,0],[1710111696000,0],[1710111697000,0],[1710111698000,0],[1710111699000,0],[1710111700000,0],[1710111701000,0],[1710111702000,0],[1710111703000,0],[1710111704000,0],[1710111705000,0],[1710111706000,0],[1710111707000,0],[1710111708000,0],[1710111709000,0],[1710111710000,0],[1710111711000,0],[1710111712000,0],[1710111713000,0],[1710111714000,0],[1710111715000,0],[1710111716000,0],[1710111717000,0],[1710111718000,0],[1710111719000,0],[1710111720000,0],[1710111721000,0],[1710111722000,0],[1710111723000,0],[1710111724000,0],[1710111725000,0],[1710111726000,0],[1710111727000,0],[1710111728000,0],[1710111729000,0],[1710111730000,0],[1710111731000,0],[1710111732000,0],[1710111733000,0],[1710111734000,0],[1710111735000,0],[1710111736000,0],[1710111737000,0],[1710111738000,0],[1710111739000,0],[1710111740000,0],[1710111741000,0],[1710111742000,0],[1710111743000,0],[1710111744000,0],[1710111745000,0],[1710111746000,0],[1710111747000,0],[1710111748000,0],[1710111749000,0],[1710111750000,0],[1710111751000,0],[1710111752000,0],[1710111753000,0],[1710111754000,0],[1710111755000,0],[1710111756000,0],[1710111757000,0],[1710111758000,0],[1710111759000,0],[1710111760000,0],[1710111761000,0],[1710111762000,0],[1710111763000,0],[1710111764000,0],[1710111765000,0],[1710111766000,0],[1710111767000,0],[1710111768000,0],[1710111769000,0],[1710111770000,0],[1710111771000,0],[1710111772000,0],[1710111773000,0],[1710111774000,0],[1710111775000,0],[1710111776000,0],[1710111777000,0],[1710111778000,0],[1710111779000,0],[1710111780000,0],[1710111781000,0],[1710111782000,0],[1710111783000,0],[1710111784000,0],[1710111785000,0],[1710111786000,0],[1710111787000,0],[1710111788000,0],[1710111789000,0],[1710111790000,0],[1710111791000,0],[1710111792000,0],[1710111793000,0],[1710111794000,0],[1710111795000,0],[1710111796000,0],[1710111797000,0],[1710111798000,0],[1710111799000,0],[1710111800000,0],[1710111801000,0],[1710111802000,0],[1710111803000,0],[1710111804000,0],[1710111805000,0],[1710111806000,0],[1710111807000,0],[1710111808000,0],[1710111809000,0],[1710111810000,0],[1710111811000,0],[1710111812000,0],[1710111813000,0],[1710111814000,0],[1710111815000,0],[1710111816000,0],[1710111817000,0],[1710111818000,0],[1710111819000,0],[1710111820000,0],[1710111821000,0],[1710111822000,0],[1710111823000,0],[1710111824000,0],[1710111825000,0],[1710111826000,0],[1710111827000,0],[1710111828000,0],[1710111829000,0],[1710111830000,0],[1710111831000,0],[1710111832000,0],[1710111833000,0],[1710111834000,0],[1710111835000,0],[1710111836000,0],[1710111837000,0],[1710111838000,0],[1710111839000,0],[1710111840000,0],[1710111841000,0],[1710111842000,0],[1710111843000,0],[1710111844000,0],[1710111845000,0],[1710111846000,0],[1710111847000,0],[1710111848000,0],[1710111849000,0],[1710111850000,0],[1710111851000,0],[1710111852000,0],[1710111853000,0],[1710111854000,0],[1710111855000,0],[1710111856000,0],[1710111857000,0],[1710111858000,0],[1710111859000,0],[1710111860000,0],[1710111861000,0],[1710111862000,0],[1710111863000,0],[1710111864000,0],[1710111865000,0],[1710111866000,0],[1710111867000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FF00E1',
name: 'validação concorrência saldo - -25',
data: [
[1710111623000,1],[1710111624000,1],[1710111625000,0],[1710111626000,0],[1710111627000,0],[1710111628000,0],[1710111629000,0],[1710111630000,0],[1710111631000,0],[1710111632000,0],[1710111633000,0],[1710111634000,0],[1710111635000,0],[1710111636000,0],[1710111637000,0],[1710111638000,0],[1710111639000,0],[1710111640000,0],[1710111641000,0],[1710111642000,0],[1710111643000,0],[1710111644000,0],[1710111645000,0],[1710111646000,0],[1710111647000,0],[1710111648000,0],[1710111649000,0],[1710111650000,0],[1710111651000,0],[1710111652000,0],[1710111653000,0],[1710111654000,0],[1710111655000,0],[1710111656000,0],[1710111657000,0],[1710111658000,0],[1710111659000,0],[1710111660000,0],[1710111661000,0],[1710111662000,0],[1710111663000,0],[1710111664000,0],[1710111665000,0],[1710111666000,0],[1710111667000,0],[1710111668000,0],[1710111669000,0],[1710111670000,0],[1710111671000,0],[1710111672000,0],[1710111673000,0],[1710111674000,0],[1710111675000,0],[1710111676000,0],[1710111677000,0],[1710111678000,0],[1710111679000,0],[1710111680000,0],[1710111681000,0],[1710111682000,0],[1710111683000,0],[1710111684000,0],[1710111685000,0],[1710111686000,0],[1710111687000,0],[1710111688000,0],[1710111689000,0],[1710111690000,0],[1710111691000,0],[1710111692000,0],[1710111693000,0],[1710111694000,0],[1710111695000,0],[1710111696000,0],[1710111697000,0],[1710111698000,0],[1710111699000,0],[1710111700000,0],[1710111701000,0],[1710111702000,0],[1710111703000,0],[1710111704000,0],[1710111705000,0],[1710111706000,0],[1710111707000,0],[1710111708000,0],[1710111709000,0],[1710111710000,0],[1710111711000,0],[1710111712000,0],[1710111713000,0],[1710111714000,0],[1710111715000,0],[1710111716000,0],[1710111717000,0],[1710111718000,0],[1710111719000,0],[1710111720000,0],[1710111721000,0],[1710111722000,0],[1710111723000,0],[1710111724000,0],[1710111725000,0],[1710111726000,0],[1710111727000,0],[1710111728000,0],[1710111729000,0],[1710111730000,0],[1710111731000,0],[1710111732000,0],[1710111733000,0],[1710111734000,0],[1710111735000,0],[1710111736000,0],[1710111737000,0],[1710111738000,0],[1710111739000,0],[1710111740000,0],[1710111741000,0],[1710111742000,0],[1710111743000,0],[1710111744000,0],[1710111745000,0],[1710111746000,0],[1710111747000,0],[1710111748000,0],[1710111749000,0],[1710111750000,0],[1710111751000,0],[1710111752000,0],[1710111753000,0],[1710111754000,0],[1710111755000,0],[1710111756000,0],[1710111757000,0],[1710111758000,0],[1710111759000,0],[1710111760000,0],[1710111761000,0],[1710111762000,0],[1710111763000,0],[1710111764000,0],[1710111765000,0],[1710111766000,0],[1710111767000,0],[1710111768000,0],[1710111769000,0],[1710111770000,0],[1710111771000,0],[1710111772000,0],[1710111773000,0],[1710111774000,0],[1710111775000,0],[1710111776000,0],[1710111777000,0],[1710111778000,0],[1710111779000,0],[1710111780000,0],[1710111781000,0],[1710111782000,0],[1710111783000,0],[1710111784000,0],[1710111785000,0],[1710111786000,0],[1710111787000,0],[1710111788000,0],[1710111789000,0],[1710111790000,0],[1710111791000,0],[1710111792000,0],[1710111793000,0],[1710111794000,0],[1710111795000,0],[1710111796000,0],[1710111797000,0],[1710111798000,0],[1710111799000,0],[1710111800000,0],[1710111801000,0],[1710111802000,0],[1710111803000,0],[1710111804000,0],[1710111805000,0],[1710111806000,0],[1710111807000,0],[1710111808000,0],[1710111809000,0],[1710111810000,0],[1710111811000,0],[1710111812000,0],[1710111813000,0],[1710111814000,0],[1710111815000,0],[1710111816000,0],[1710111817000,0],[1710111818000,0],[1710111819000,0],[1710111820000,0],[1710111821000,0],[1710111822000,0],[1710111823000,0],[1710111824000,0],[1710111825000,0],[1710111826000,0],[1710111827000,0],[1710111828000,0],[1710111829000,0],[1710111830000,0],[1710111831000,0],[1710111832000,0],[1710111833000,0],[1710111834000,0],[1710111835000,0],[1710111836000,0],[1710111837000,0],[1710111838000,0],[1710111839000,0],[1710111840000,0],[1710111841000,0],[1710111842000,0],[1710111843000,0],[1710111844000,0],[1710111845000,0],[1710111846000,0],[1710111847000,0],[1710111848000,0],[1710111849000,0],[1710111850000,0],[1710111851000,0],[1710111852000,0],[1710111853000,0],[1710111854000,0],[1710111855000,0],[1710111856000,0],[1710111857000,0],[1710111858000,0],[1710111859000,0],[1710111860000,0],[1710111861000,0],[1710111862000,0],[1710111863000,0],[1710111864000,0],[1710111865000,0],[1710111866000,0],[1710111867000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#AECAEB',
name: 'validação concorrência transações - d',
data: [
[1710111623000,25],[1710111624000,0],[1710111625000,0],[1710111626000,0],[1710111627000,0],[1710111628000,0],[1710111629000,0],[1710111630000,0],[1710111631000,0],[1710111632000,0],[1710111633000,0],[1710111634000,0],[1710111635000,0],[1710111636000,0],[1710111637000,0],[1710111638000,0],[1710111639000,0],[1710111640000,0],[1710111641000,0],[1710111642000,0],[1710111643000,0],[1710111644000,0],[1710111645000,0],[1710111646000,0],[1710111647000,0],[1710111648000,0],[1710111649000,0],[1710111650000,0],[1710111651000,0],[1710111652000,0],[1710111653000,0],[1710111654000,0],[1710111655000,0],[1710111656000,0],[1710111657000,0],[1710111658000,0],[1710111659000,0],[1710111660000,0],[1710111661000,0],[1710111662000,0],[1710111663000,0],[1710111664000,0],[1710111665000,0],[1710111666000,0],[1710111667000,0],[1710111668000,0],[1710111669000,0],[1710111670000,0],[1710111671000,0],[1710111672000,0],[1710111673000,0],[1710111674000,0],[1710111675000,0],[1710111676000,0],[1710111677000,0],[1710111678000,0],[1710111679000,0],[1710111680000,0],[1710111681000,0],[1710111682000,0],[1710111683000,0],[1710111684000,0],[1710111685000,0],[1710111686000,0],[1710111687000,0],[1710111688000,0],[1710111689000,0],[1710111690000,0],[1710111691000,0],[1710111692000,0],[1710111693000,0],[1710111694000,0],[1710111695000,0],[1710111696000,0],[1710111697000,0],[1710111698000,0],[1710111699000,0],[1710111700000,0],[1710111701000,0],[1710111702000,0],[1710111703000,0],[1710111704000,0],[1710111705000,0],[1710111706000,0],[1710111707000,0],[1710111708000,0],[1710111709000,0],[1710111710000,0],[1710111711000,0],[1710111712000,0],[1710111713000,0],[1710111714000,0],[1710111715000,0],[1710111716000,0],[1710111717000,0],[1710111718000,0],[1710111719000,0],[1710111720000,0],[1710111721000,0],[1710111722000,0],[1710111723000,0],[1710111724000,0],[1710111725000,0],[1710111726000,0],[1710111727000,0],[1710111728000,0],[1710111729000,0],[1710111730000,0],[1710111731000,0],[1710111732000,0],[1710111733000,0],[1710111734000,0],[1710111735000,0],[1710111736000,0],[1710111737000,0],[1710111738000,0],[1710111739000,0],[1710111740000,0],[1710111741000,0],[1710111742000,0],[1710111743000,0],[1710111744000,0],[1710111745000,0],[1710111746000,0],[1710111747000,0],[1710111748000,0],[1710111749000,0],[1710111750000,0],[1710111751000,0],[1710111752000,0],[1710111753000,0],[1710111754000,0],[1710111755000,0],[1710111756000,0],[1710111757000,0],[1710111758000,0],[1710111759000,0],[1710111760000,0],[1710111761000,0],[1710111762000,0],[1710111763000,0],[1710111764000,0],[1710111765000,0],[1710111766000,0],[1710111767000,0],[1710111768000,0],[1710111769000,0],[1710111770000,0],[1710111771000,0],[1710111772000,0],[1710111773000,0],[1710111774000,0],[1710111775000,0],[1710111776000,0],[1710111777000,0],[1710111778000,0],[1710111779000,0],[1710111780000,0],[1710111781000,0],[1710111782000,0],[1710111783000,0],[1710111784000,0],[1710111785000,0],[1710111786000,0],[1710111787000,0],[1710111788000,0],[1710111789000,0],[1710111790000,0],[1710111791000,0],[1710111792000,0],[1710111793000,0],[1710111794000,0],[1710111795000,0],[1710111796000,0],[1710111797000,0],[1710111798000,0],[1710111799000,0],[1710111800000,0],[1710111801000,0],[1710111802000,0],[1710111803000,0],[1710111804000,0],[1710111805000,0],[1710111806000,0],[1710111807000,0],[1710111808000,0],[1710111809000,0],[1710111810000,0],[1710111811000,0],[1710111812000,0],[1710111813000,0],[1710111814000,0],[1710111815000,0],[1710111816000,0],[1710111817000,0],[1710111818000,0],[1710111819000,0],[1710111820000,0],[1710111821000,0],[1710111822000,0],[1710111823000,0],[1710111824000,0],[1710111825000,0],[1710111826000,0],[1710111827000,0],[1710111828000,0],[1710111829000,0],[1710111830000,0],[1710111831000,0],[1710111832000,0],[1710111833000,0],[1710111834000,0],[1710111835000,0],[1710111836000,0],[1710111837000,0],[1710111838000,0],[1710111839000,0],[1710111840000,0],[1710111841000,0],[1710111842000,0],[1710111843000,0],[1710111844000,0],[1710111845000,0],[1710111846000,0],[1710111847000,0],[1710111848000,0],[1710111849000,0],[1710111850000,0],[1710111851000,0],[1710111852000,0],[1710111853000,0],[1710111854000,0],[1710111855000,0],[1710111856000,0],[1710111857000,0],[1710111858000,0],[1710111859000,0],[1710111860000,0],[1710111861000,0],[1710111862000,0],[1710111863000,0],[1710111864000,0],[1710111865000,0],[1710111866000,0],[1710111867000,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', '6', '9', '13', '16', '19', '23', '26', '29', '33', '36', '39', '43', '46', '49', '53', '56', '59', '63', '66', '69', '73', '76', '79', '83', '86', '89', '93', '96', '99', '103', '106', '109', '113', '116', '119', '123', '126', '129', '133', '136', '139', '143', '146', '149', '153', '156', '159', '163', '166', '169', '172', '176', '179', '182', '186', '189', '192', '196', '199', '202', '206', '209', '212', '216', '219', '222', '226', '229', '232', '236', '239', '242', '246', '249', '252', '256', '259', '262', '266', '269', '272', '276', '279', '282', '286', '289', '292', '296', '299', '302', '306', '309', '312', '316', '319', '322', '326', '329', '332'],
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: [
97.31,0.46,0.13,0.14,0.13,0.09,0.09,0.1,0.09,0.11,0.07,0.06,0.12,0.07,0.09,0.08,0.06,0.07,0.1,0.05,0.04,0.07,0.07,0.04,0.02,0.03,0.02,0.01,0.01,0.0,0.01,0.0,0.0,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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([[1710111623,[43,174,265,279,279,279,284,291,324,334]],[1710111624,[4,4,4,4,4,4,4,4,4,4]],[1710111625,[11,33,101,113,181,185,188,195,198,199]],[1710111626,[3,3,3,3,3,3,3,3,3,3]],[1710111627,[1,3,10,18,19,31,48,56,60,63]],[1710111628,[4,5,6,6,6,6,6,6,6,6]],[1710111629,[4,5,5,6,7,7,7,7,7,8]],[1710111630,[4,4,5,6,7,8,9,9,9,10]],[1710111631,[4,4,5,5,5,6,7,9,10,11]],[1710111632,[4,4,4,5,5,5,8,42,83,94]],[1710111633,[3,4,4,5,5,5,5,6,7,8]],[1710111634,[3,4,4,5,5,5,5,5,5,5]],[1710111635,[3,4,4,4,4,5,5,5,6,7]],[1710111636,[3,4,4,5,5,5,5,6,7,7]],[1710111637,[3,4,4,4,4,5,5,5,6,6]],[1710111638,[3,3,4,4,4,5,5,6,7,7]],[1710111639,[3,3,4,4,5,5,5,5,6,6]],[1710111640,[2,3,4,4,4,5,5,6,7,7]],[1710111641,[3,3,4,4,4,5,5,5,5,5]],[1710111642,[3,3,4,4,4,4,5,5,5,6]],[1710111643,[2,3,3,4,4,4,4,5,6,7]],[1710111644,[2,3,3,4,4,4,4,4,5,6]],[1710111645,[2,3,3,3,3,4,4,4,4,4]],[1710111646,[2,3,3,3,4,4,4,4,4,6]],[1710111647,[2,3,3,4,4,4,4,4,5,5]],[1710111648,[2,3,3,3,4,4,4,4,5,6]],[1710111649,[2,3,3,3,4,4,4,5,25,41]],[1710111650,[2,3,3,3,4,4,4,5,7,10]],[1710111651,[2,3,3,3,3,4,4,4,4,4]],[1710111652,[2,3,3,3,4,4,4,4,6,8]],[1710111653,[2,3,3,3,3,3,3,4,5,5]],[1710111654,[2,2,3,3,3,3,4,4,4,7]],[1710111655,[2,2,3,3,3,3,3,4,6,10]],[1710111656,[1,2,3,3,3,3,3,4,4,8]],[1710111657,[1,2,2,3,3,3,3,3,3,4]],[1710111658,[1,2,3,3,3,3,3,4,5,5]],[1710111659,[1,2,3,3,3,3,3,3,4,4]],[1710111660,[1,2,2,3,3,3,3,4,6,7]],[1710111661,[2,2,3,3,3,3,3,4,5,5]],[1710111662,[2,2,3,3,3,3,3,4,6,9]],[1710111663,[2,2,3,3,3,3,4,4,5,6]],[1710111664,[2,2,2,3,3,3,3,4,5,17]],[1710111665,[1,2,2,3,3,3,3,3,4,4]],[1710111666,[1,2,2,2,3,3,3,3,3,5]],[1710111667,[1,2,2,3,3,3,4,41,78,87]],[1710111668,[1,2,2,3,3,3,3,3,3,4]],[1710111669,[1,2,2,2,2,3,3,3,4,5]],[1710111670,[1,2,2,3,3,3,3,3,4,4]],[1710111671,[1,2,2,2,3,3,3,3,4,4]],[1710111672,[1,2,2,2,2,2,3,3,3,4]],[1710111673,[1,2,2,2,2,2,3,3,3,6]],[1710111674,[1,2,2,2,2,2,3,3,13,30]],[1710111675,[2,2,2,3,3,3,3,3,4,7]],[1710111676,[1,2,2,3,3,3,3,3,3,4]],[1710111677,[1,2,2,3,3,3,3,3,3,5]],[1710111678,[1,2,2,2,3,3,6,38,74,79]],[1710111679,[1,1,2,2,2,2,3,3,3,4]],[1710111680,[1,1,2,2,2,2,2,2,3,3]],[1710111681,[1,2,2,2,2,2,2,3,3,4]],[1710111682,[1,2,2,2,2,2,2,3,3,3]],[1710111683,[1,2,2,2,2,3,3,4,37,51]],[1710111684,[1,2,2,2,2,2,2,3,3,4]],[1710111685,[1,2,2,2,2,3,3,3,3,4]],[1710111686,[1,2,2,2,3,3,3,3,3,4]],[1710111687,[1,1,2,2,2,2,3,3,44,60]],[1710111688,[1,2,2,2,2,3,3,3,3,4]],[1710111689,[1,2,2,2,2,3,3,3,5,9]],[1710111690,[1,1,2,2,2,2,2,2,3,3]],[1710111691,[1,1,2,2,2,2,2,11,76,88]],[1710111692,[1,1,2,2,2,2,2,2,3,3]],[1710111693,[1,1,2,2,2,2,2,3,4,5]],[1710111694,[1,1,2,2,2,2,2,2,3,3]],[1710111695,[1,1,2,2,2,2,2,3,22,44]],[1710111696,[1,2,2,2,3,3,3,23,53,68]],[1710111697,[1,2,2,2,3,3,3,3,4,4]],[1710111698,[1,1,2,2,2,2,2,3,3,3]],[1710111699,[1,2,2,2,2,2,3,3,3,7]],[1710111700,[1,1,2,2,2,2,2,3,3,4]],[1710111701,[1,1,2,2,2,2,2,3,3,4]],[1710111702,[1,2,2,2,2,2,2,3,3,3]],[1710111703,[1,2,2,2,2,2,2,3,25,44]],[1710111704,[1,1,2,2,2,2,2,3,3,4]],[1710111705,[1,1,2,2,2,2,2,2,3,3]],[1710111706,[1,1,2,2,2,2,2,2,3,3]],[1710111707,[1,1,2,2,2,2,2,2,3,3]],[1710111708,[1,1,2,2,2,2,2,2,3,4]],[1710111709,[1,1,2,2,2,3,3,10,53,65]],[1710111710,[1,2,2,2,2,2,3,3,3,4]],[1710111711,[1,1,2,2,2,2,2,3,3,3]],[1710111712,[1,1,1,2,2,2,2,2,3,4]],[1710111713,[1,1,2,2,2,2,2,2,3,4]],[1710111714,[1,1,2,2,2,2,3,25,92,117]],[1710111715,[1,1,2,2,2,2,2,2,3,3]],[1710111716,[1,1,2,2,2,5,34,72,134,153]],[1710111717,[1,1,2,2,2,2,2,2,3,3]],[1710111718,[1,1,2,2,2,2,2,2,2,4]],[1710111719,[1,1,2,2,2,2,2,2,2,3]],[1710111720,[1,1,2,2,2,2,2,2,3,3]],[1710111721,[1,2,2,2,2,2,2,2,3,3]],[1710111722,[1,1,2,2,2,2,3,20,54,67]],[1710111723,[1,1,1,2,2,2,2,2,3,5]],[1710111724,[1,1,2,2,2,2,2,2,3,4]],[1710111725,[1,2,2,2,2,2,2,2,3,3]],[1710111726,[1,2,2,2,2,2,2,3,3,3]],[1710111727,[1,2,2,2,2,2,3,38,73,80]],[1710111728,[1,2,2,2,2,2,3,3,3,4]],[1710111729,[1,1,2,2,2,2,2,3,3,4]],[1710111730,[1,1,2,2,2,2,2,3,3,4]],[1710111731,[1,2,2,2,2,2,2,3,3,4]],[1710111732,[1,2,2,2,2,2,2,3,3,4]],[1710111733,[1,2,2,2,2,3,3,8,58,76]],[1710111734,[1,2,2,2,2,2,3,4,33,49]],[1710111735,[1,2,2,2,2,2,2,3,3,4]],[1710111736,[1,2,2,2,2,2,2,3,3,3]],[1710111737,[1,1,1,2,2,2,2,2,3,3]],[1710111738,[1,1,2,2,2,2,3,32,68,83]],[1710111739,[1,2,2,2,2,2,2,3,3,3]],[1710111740,[1,1,1,2,2,2,2,2,3,3]],[1710111741,[1,1,1,2,2,2,2,2,2,3]],[1710111742,[1,1,2,2,2,2,2,2,3,3]],[1710111743,[1,2,2,2,2,2,4,35,66,81]],[1710111744,[1,2,2,2,2,2,2,2,3,3]],[1710111745,[1,1,2,2,2,2,2,3,3,4]],[1710111746,[1,1,1,1,2,2,2,2,2,2]],[1710111747,[1,1,2,2,2,2,2,2,3,6]],[1710111748,[1,1,2,2,2,2,3,17,56,72]],[1710111749,[1,2,2,2,2,2,2,3,3,4]],[1710111750,[1,1,2,2,2,2,2,2,3,3]],[1710111751,[1,2,2,2,2,3,3,21,54,66]],[1710111752,[1,1,2,2,2,2,2,2,3,3]],[1710111753,[1,1,2,2,3,17,55,91,147,166]],[1710111754,[1,1,2,2,2,2,2,3,3,4]],[1710111755,[1,1,2,2,2,2,2,3,3,5]],[1710111756,[1,2,2,2,2,2,2,3,3,3]],[1710111757,[1,1,2,2,2,2,2,3,3,4]],[1710111758,[1,1,2,2,3,9,37,63,103,119]],[1710111759,[1,2,2,2,2,2,3,3,4,5]],[1710111760,[1,2,2,2,2,2,3,3,3,3]],[1710111761,[1,2,2,2,3,3,5,35,72,88]],[1710111762,[1,2,2,2,2,2,3,3,3,4]],[1710111763,[1,1,2,2,2,2,4,40,67,79]],[1710111764,[1,1,1,2,2,2,2,2,3,3]],[1710111765,[1,1,2,2,2,2,2,3,45,58]],[1710111766,[1,1,2,2,2,2,2,3,3,3]],[1710111767,[1,2,2,2,2,3,3,17,78,89]],[1710111768,[1,1,2,2,2,2,2,3,3,4]],[1710111769,[1,1,2,2,2,2,3,3,3,4]],[1710111770,[1,2,2,2,2,3,3,3,3,3]],[1710111771,[1,2,2,2,2,2,2,3,3,3]],[1710111772,[1,1,2,2,2,2,3,20,75,88]],[1710111773,[1,1,2,2,2,2,2,3,3,3]],[1710111774,[1,1,1,2,2,2,2,2,3,3]],[1710111775,[1,1,2,2,2,2,2,3,3,3]],[1710111776,[1,2,2,2,2,2,2,3,3,3]],[1710111777,[1,1,2,2,2,3,5,31,75,86]],[1710111778,[1,1,1,2,2,3,27,61,107,126]],[1710111779,[1,1,2,2,2,2,3,3,3,4]],[1710111780,[1,2,2,2,2,2,3,3,3,4]],[1710111781,[1,1,2,2,2,2,2,3,3,3]],[1710111782,[1,2,2,2,3,3,4,41,68,85]],[1710111783,[1,2,2,2,2,2,2,3,3,4]],[1710111784,[1,1,2,2,2,2,2,3,3,4]],[1710111785,[1,2,2,2,2,2,3,3,3,4]],[1710111786,[1,2,2,2,2,3,3,3,4,6]],[1710111787,[1,2,2,2,2,3,3,19,77,87]],[1710111788,[1,1,2,2,2,2,3,3,49,65]],[1710111789,[1,2,2,2,2,2,2,3,3,4]],[1710111790,[1,2,2,2,2,2,2,3,3,4]],[1710111791,[1,2,2,2,2,2,2,3,3,4]],[1710111792,[1,1,2,2,2,2,3,9,82,101]],[1710111793,[1,2,2,2,2,2,3,6,51,66]],[1710111794,[1,2,2,2,2,2,3,3,49,90]],[1710111795,[1,2,2,2,3,3,3,27,61,73]],[1710111796,[1,1,2,2,2,2,2,3,3,3]],[1710111797,[1,1,2,2,2,3,3,30,76,88]],[1710111798,[1,1,2,2,2,2,2,3,3,12]],[1710111799,[1,1,2,2,2,2,2,3,3,4]],[1710111800,[1,2,2,2,2,2,2,3,3,5]],[1710111801,[1,2,2,2,2,2,2,3,3,4]],[1710111802,[1,2,2,2,2,3,4,45,82,99]],[1710111803,[1,2,2,2,2,2,2,3,3,3]],[1710111804,[1,1,2,2,2,2,2,2,3,3]],[1710111805,[1,1,2,2,2,2,2,3,3,4]],[1710111806,[1,2,2,2,2,2,2,3,3,5]],[1710111807,[1,2,2,2,2,3,8,36,68,76]],[1710111808,[1,1,2,2,2,2,2,3,3,4]],[1710111809,[1,1,1,2,2,2,2,2,3,3]],[1710111810,[1,2,2,2,2,2,2,3,3,4]],[1710111811,[1,2,2,2,2,3,3,37,67,83]],[1710111812,[1,1,2,2,2,2,3,13,62,78]],[1710111813,[1,2,2,2,2,2,3,3,4,5]],[1710111814,[1,2,2,2,2,2,2,3,3,3]],[1710111815,[1,2,2,2,2,2,2,3,3,4]],[1710111816,[1,2,2,2,2,2,2,3,3,4]],[1710111817,[1,2,2,2,2,3,3,28,69,78]],[1710111818,[1,1,1,2,2,2,2,3,3,3]],[1710111819,[1,1,1,2,2,2,2,2,3,3]],[1710111820,[1,2,2,2,2,2,2,3,3,3]],[1710111821,[1,2,2,2,2,2,3,3,3,3]],[1710111822,[1,2,2,2,3,3,3,25,59,75]],[1710111823,[1,2,2,2,2,2,3,3,3,4]],[1710111824,[1,1,2,2,2,2,2,3,3,3]],[1710111825,[1,2,2,2,2,2,3,3,3,4]],[1710111826,[1,2,2,2,2,3,3,3,3,5]],[1710111827,[1,2,2,3,3,3,4,35,80,92]],[1710111828,[1,1,2,2,2,3,4,41,69,77]],[1710111829,[1,1,2,2,2,2,2,2,3,3]],[1710111830,[1,2,2,2,2,2,3,3,3,3]],[1710111831,[1,1,2,2,2,2,2,3,3,4]],[1710111832,[1,1,2,2,2,2,3,33,68,97]],[1710111833,[1,1,2,2,2,2,2,2,3,3]],[1710111834,[1,1,1,2,2,2,2,2,3,3]],[1710111835,[1,1,2,2,2,2,2,3,3,4]],[1710111836,[1,1,2,2,2,2,2,3,3,3]],[1710111837,[1,1,1,2,2,2,2,26,60,73]],[1710111838,[1,1,2,2,2,2,2,3,3,3]],[1710111839,[1,2,2,2,2,2,2,3,3,3]],[1710111840,[1,1,1,2,2,2,2,2,3,5]],[1710111841,[1,1,2,2,2,2,2,3,3,4]],[1710111842,[1,1,2,2,2,2,3,12,76,88]],[1710111843,[1,1,2,2,2,2,2,3,3,4]],[1710111844,[1,2,2,2,2,3,3,3,3,4]],[1710111845,[1,2,2,2,2,3,8,47,77,88]],[1710111846,[1,1,2,2,2,2,2,3,3,5]],[1710111847,[1,2,2,2,3,3,4,45,77,117]],[1710111848,[1,1,2,2,2,2,2,3,3,5]],[1710111849,[1,1,2,2,2,2,2,2,3,3]],[1710111850,[1,2,2,2,2,3,3,3,3,4]],[1710111851,[1,2,2,2,2,2,3,3,3,4]],[1710111852,[1,1,2,2,2,3,3,43,75,103]],[1710111853,[1,2,2,2,2,3,3,3,4,5]],[1710111854,[1,2,2,2,2,2,2,3,3,4]],[1710111855,[1,2,2,2,2,2,3,3,46,60]],[1710111856,[1,2,2,2,2,2,3,5,62,78]],[1710111857,[1,1,2,2,2,2,2,2,3,3]],[1710111858,[1,2,2,2,2,3,3,3,3,4]],[1710111859,[1,2,2,2,3,3,3,3,3,4]],[1710111860,[1,2,2,2,2,3,3,3,3,4]],[1710111861,[1,1,2,2,2,2,3,19,68,85]],[1710111862,[1,1,2,2,2,2,2,3,3,4]],[1710111863,[1,1,1,2,2,2,2,2,3,3]],[1710111864,[1,1,2,2,2,3,3,3,26,40]],[1710111865,[1,2,2,2,2,3,4,21,70,76]],[1710111866,[1,1,2,2,2,2,2,3,45,62]],[1710111867,[1,1,2,2,2,2,2,3,3,5]]]);
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([[1710111623,[25,25,0]],[1710111624,[1,1,0]],[1710111625,[25,25,0]],[1710111626,[1,1,0]],[1710111627,[71,71,0]],[1710111628,[3,3,0]],[1710111629,[6,6,0]],[1710111630,[9,9,0]],[1710111631,[11,11,0]],[1710111632,[13,13,0]],[1710111633,[18,18,0]],[1710111634,[19,19,0]],[1710111635,[24,24,0]],[1710111636,[26,26,0]],[1710111637,[27,27,0]],[1710111638,[32,32,0]],[1710111639,[34,34,0]],[1710111640,[37,37,0]],[1710111641,[39,39,0]],[1710111642,[43,43,0]],[1710111643,[45,45,0]],[1710111644,[48,48,0]],[1710111645,[50,50,0]],[1710111646,[54,54,0]],[1710111647,[56,56,0]],[1710111648,[60,60,0]],[1710111649,[61,61,0]],[1710111650,[65,65,0]],[1710111651,[67,67,0]],[1710111652,[70,70,0]],[1710111653,[75,75,0]],[1710111654,[75,75,0]],[1710111655,[80,80,0]],[1710111656,[81,81,0]],[1710111657,[84,84,0]],[1710111658,[89,89,0]],[1710111659,[89,89,0]],[1710111660,[93,93,0]],[1710111661,[96,96,0]],[1710111662,[98,98,0]],[1710111663,[102,102,0]],[1710111664,[104,104,0]],[1710111665,[107,107,0]],[1710111666,[109,109,0]],[1710111667,[114,114,0]],[1710111668,[115,115,0]],[1710111669,[119,119,0]],[1710111670,[121,121,0]],[1710111671,[123,123,0]],[1710111672,[126,126,0]],[1710111673,[129,129,0]],[1710111674,[133,133,0]],[1710111675,[134,134,0]],[1710111676,[139,139,0]],[1710111677,[140,140,0]],[1710111678,[144,144,0]],[1710111679,[146,146,0]],[1710111680,[150,150,0]],[1710111681,[151,151,0]],[1710111682,[155,155,0]],[1710111683,[158,158,0]],[1710111684,[160,160,0]],[1710111685,[163,163,0]],[1710111686,[166,166,0]],[1710111687,[170,170,0]],[1710111688,[170,170,0]],[1710111689,[174,174,0]],[1710111690,[177,177,0]],[1710111691,[180,180,0]],[1710111692,[183,183,0]],[1710111693,[186,186,0]],[1710111694,[188,188,0]],[1710111695,[192,192,0]],[1710111696,[194,194,0]],[1710111697,[197,197,0]],[1710111698,[199,199,0]],[1710111699,[203,203,0]],[1710111700,[205,205,0]],[1710111701,[208,208,0]],[1710111702,[211,211,0]],[1710111703,[213,213,0]],[1710111704,[217,217,0]],[1710111705,[219,219,0]],[1710111706,[222,222,0]],[1710111707,[226,226,0]],[1710111708,[227,227,0]],[1710111709,[230,230,0]],[1710111710,[234,234,0]],[1710111711,[236,236,0]],[1710111712,[238,238,0]],[1710111713,[243,243,0]],[1710111714,[244,244,0]],[1710111715,[248,248,0]],[1710111716,[251,251,0]],[1710111717,[251,251,0]],[1710111718,[257,257,0]],[1710111719,[259,259,0]],[1710111720,[262,262,0]],[1710111721,[264,264,0]],[1710111722,[266,266,0]],[1710111723,[269,269,0]],[1710111724,[274,274,0]],[1710111725,[275,275,0]],[1710111726,[279,279,0]],[1710111727,[281,281,0]],[1710111728,[283,283,0]],[1710111729,[286,286,0]],[1710111730,[290,290,0]],[1710111731,[292,292,0]],[1710111732,[297,297,0]],[1710111733,[297,297,0]],[1710111734,[301,301,0]],[1710111735,[303,303,0]],[1710111736,[306,306,0]],[1710111737,[309,309,0]],[1710111738,[313,313,0]],[1710111739,[314,314,0]],[1710111740,[318,318,0]],[1710111741,[321,321,0]],[1710111742,[322,322,0]],[1710111743,[327,327,0]],[1710111744,[329,329,0]],[1710111745,[331,331,0]],[1710111746,[335,335,0]],[1710111747,[338,338,0]],[1710111748,[340,340,0]],[1710111749,[340,340,0]],[1710111750,[340,340,0]],[1710111751,[340,340,0]],[1710111752,[340,340,0]],[1710111753,[340,340,0]],[1710111754,[340,340,0]],[1710111755,[340,340,0]],[1710111756,[340,340,0]],[1710111757,[340,340,0]],[1710111758,[340,340,0]],[1710111759,[340,340,0]],[1710111760,[340,340,0]],[1710111761,[340,340,0]],[1710111762,[340,340,0]],[1710111763,[340,340,0]],[1710111764,[340,340,0]],[1710111765,[340,340,0]],[1710111766,[340,340,0]],[1710111767,[340,340,0]],[1710111768,[340,340,0]],[1710111769,[340,340,0]],[1710111770,[340,340,0]],[1710111771,[340,340,0]],[1710111772,[340,340,0]],[1710111773,[340,340,0]],[1710111774,[340,340,0]],[1710111775,[340,340,0]],[1710111776,[340,340,0]],[1710111777,[340,340,0]],[1710111778,[340,340,0]],[1710111779,[340,340,0]],[1710111780,[340,340,0]],[1710111781,[340,340,0]],[1710111782,[340,340,0]],[1710111783,[340,340,0]],[1710111784,[340,340,0]],[1710111785,[340,340,0]],[1710111786,[340,340,0]],[1710111787,[340,340,0]],[1710111788,[340,340,0]],[1710111789,[340,340,0]],[1710111790,[340,340,0]],[1710111791,[340,340,0]],[1710111792,[340,340,0]],[1710111793,[340,340,0]],[1710111794,[340,340,0]],[1710111795,[340,340,0]],[1710111796,[340,340,0]],[1710111797,[340,340,0]],[1710111798,[340,340,0]],[1710111799,[340,340,0]],[1710111800,[340,340,0]],[1710111801,[340,340,0]],[1710111802,[340,340,0]],[1710111803,[340,340,0]],[1710111804,[340,340,0]],[1710111805,[340,340,0]],[1710111806,[340,340,0]],[1710111807,[340,340,0]],[1710111808,[340,340,0]],[1710111809,[340,340,0]],[1710111810,[340,340,0]],[1710111811,[340,340,0]],[1710111812,[340,340,0]],[1710111813,[340,340,0]],[1710111814,[340,340,0]],[1710111815,[340,340,0]],[1710111816,[340,340,0]],[1710111817,[340,340,0]],[1710111818,[340,340,0]],[1710111819,[340,340,0]],[1710111820,[340,340,0]],[1710111821,[340,340,0]],[1710111822,[340,340,0]],[1710111823,[340,340,0]],[1710111824,[340,340,0]],[1710111825,[340,340,0]],[1710111826,[340,340,0]],[1710111827,[340,340,0]],[1710111828,[340,340,0]],[1710111829,[340,340,0]],[1710111830,[340,340,0]],[1710111831,[340,340,0]],[1710111832,[340,340,0]],[1710111833,[340,340,0]],[1710111834,[340,340,0]],[1710111835,[340,340,0]],[1710111836,[340,340,0]],[1710111837,[340,340,0]],[1710111838,[340,340,0]],[1710111839,[340,340,0]],[1710111840,[340,340,0]],[1710111841,[340,340,0]],[1710111842,[340,340,0]],[1710111843,[340,340,0]],[1710111844,[340,340,0]],[1710111845,[340,340,0]],[1710111846,[340,340,0]],[1710111847,[340,340,0]],[1710111848,[340,340,0]],[1710111849,[340,340,0]],[1710111850,[340,340,0]],[1710111851,[340,340,0]],[1710111852,[340,340,0]],[1710111853,[340,340,0]],[1710111854,[340,340,0]],[1710111855,[340,340,0]],[1710111856,[340,340,0]],[1710111857,[340,340,0]],[1710111858,[340,340,0]],[1710111859,[340,340,0]],[1710111860,[340,340,0]],[1710111861,[340,340,0]],[1710111862,[340,340,0]],[1710111863,[340,340,0]],[1710111864,[340,340,0]],[1710111865,[340,340,0]],[1710111866,[340,340,0]],[1710111867,[501,501,0]]]);
var requestsChart = new Highcharts.StockChart({
chart: {
renderTo: 'requests',
zoomType: 'x',
marginBottom: 60
},
credits: { enabled: false },
legend: {
enabled: true,
floating: true,
y: -65,
borderWidth: 0,
itemStyle: { fontWeight: "normal" },
symbolRadius: 0
},
title: { text: 'A title to let highcharts reserve the place for the title set later' },
navigator: {
maskInside: false
},
rangeSelector: {
buttonSpacing: 0,
buttonTheme: {
fill: '#CFC9C6',
padding: 1,
stroke: '#000000',
'stroke-width': 0.25,
style: {
color: '#000000',
fontWeight: 'bold',
},
states: {
stroke: '#000000',
'stroke-width': 0.25,
hover: {
fill: '#92918C',
style: { color: 'black' }
},
select: {
fill: '#FFA900',
style: { color: 'white' }
}
}
},
buttons : [
{
type : 'minute',
count : 1,
text : '1m'
}, {
type : 'minute',
count : 10,
text : '10m'
}, {
type : 'hour',
count : 1,
text : '1h'
}, {
type : 'all',
count : 1,
text : 'All'
}
],
selected : 3,
inputEnabled : false
},
plotOptions: {
series: {
dataGrouping: { enabled: false }
},
area: {
stacking: 'normal'
}
},
xAxis: {
type: 'datetime',
ordinal: false,
maxZoom: 10000 // three days
},
yAxis:[