-
Notifications
You must be signed in to change notification settings - Fork 923
/
Copy pathindex.html
1173 lines (1103 loc) · 91.8 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:14:03 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 - andretpc">
<span class="simulation-information-label">Description: </span>
<span>Rinha de Backend - 2024/Q1: Crébito - andretpc</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: 'débitos',
data: [
[1710112444000,0],[1710112445000,0],[1710112446000,0],[1710112447000,0],[1710112448000,0],[1710112449000,2],[1710112450000,4],[1710112451000,6],[1710112452000,7],[1710112453000,9],[1710112454000,11],[1710112455000,13],[1710112456000,15],[1710112457000,16],[1710112458000,19],[1710112459000,20],[1710112460000,22],[1710112461000,24],[1710112462000,25],[1710112463000,28],[1710112464000,29],[1710112465000,31],[1710112466000,33],[1710112467000,35],[1710112468000,37],[1710112469000,38],[1710112470000,40],[1710112471000,42],[1710112472000,44],[1710112473000,46],[1710112474000,47],[1710112475000,50],[1710112476000,51],[1710112477000,53],[1710112478000,55],[1710112479000,56],[1710112480000,59],[1710112481000,60],[1710112482000,62],[1710112483000,64],[1710112484000,66],[1710112485000,68],[1710112486000,69],[1710112487000,71],[1710112488000,74],[1710112489000,74],[1710112490000,77],[1710112491000,79],[1710112492000,80],[1710112493000,83],[1710112494000,84],[1710112495000,87],[1710112496000,89],[1710112497000,89],[1710112498000,92],[1710112499000,93],[1710112500000,95],[1710112501000,97],[1710112502000,98],[1710112503000,101],[1710112504000,102],[1710112505000,104],[1710112506000,106],[1710112507000,108],[1710112508000,110],[1710112509000,111],[1710112510000,113],[1710112511000,115],[1710112512000,117],[1710112513000,119],[1710112514000,120],[1710112515000,123],[1710112516000,124],[1710112517000,126],[1710112518000,128],[1710112519000,129],[1710112520000,132],[1710112521000,133],[1710112522000,135],[1710112523000,137],[1710112524000,139],[1710112525000,141],[1710112526000,142],[1710112527000,144],[1710112528000,147],[1710112529000,147],[1710112530000,150],[1710112531000,152],[1710112532000,153],[1710112533000,155],[1710112534000,157],[1710112535000,159],[1710112536000,161],[1710112537000,162],[1710112538000,165],[1710112539000,167],[1710112540000,168],[1710112541000,169],[1710112542000,172],[1710112543000,173],[1710112544000,176],[1710112545000,177],[1710112546000,180],[1710112547000,182],[1710112548000,183],[1710112549000,184],[1710112550000,186],[1710112551000,188],[1710112552000,190],[1710112553000,192],[1710112554000,193],[1710112555000,196],[1710112556000,197],[1710112557000,199],[1710112558000,201],[1710112559000,202],[1710112560000,205],[1710112561000,206],[1710112562000,208],[1710112563000,210],[1710112564000,212],[1710112565000,214],[1710112566000,215],[1710112567000,217],[1710112568000,220],[1710112569000,220],[1710112570000,220],[1710112571000,220],[1710112572000,220],[1710112573000,220],[1710112574000,220],[1710112575000,220],[1710112576000,220],[1710112577000,220],[1710112578000,220],[1710112579000,220],[1710112580000,220],[1710112581000,220],[1710112582000,220],[1710112583000,220],[1710112584000,220],[1710112585000,220],[1710112586000,220],[1710112587000,220],[1710112588000,220],[1710112589000,220],[1710112590000,220],[1710112591000,220],[1710112592000,220],[1710112593000,220],[1710112594000,220],[1710112595000,220],[1710112596000,220],[1710112597000,220],[1710112598000,220],[1710112599000,220],[1710112600000,220],[1710112601000,220],[1710112602000,220],[1710112603000,220],[1710112604000,220],[1710112605000,220],[1710112606000,220],[1710112607000,220],[1710112608000,220],[1710112609000,220],[1710112610000,220],[1710112611000,220],[1710112612000,220],[1710112613000,220],[1710112614000,220],[1710112615000,220],[1710112616000,220],[1710112617000,220],[1710112618000,220],[1710112619000,220],[1710112620000,220],[1710112621000,220],[1710112622000,220],[1710112623000,220],[1710112624000,221],[1710112625000,220],[1710112626000,220],[1710112627000,220],[1710112628000,220],[1710112629000,220],[1710112630000,220],[1710112631000,220],[1710112632000,220],[1710112633000,220],[1710112634000,220],[1710112635000,220],[1710112636000,220],[1710112637000,220],[1710112638000,220],[1710112639000,220],[1710112640000,220],[1710112641000,220],[1710112642000,220],[1710112643000,220],[1710112644000,220],[1710112645000,220],[1710112646000,220],[1710112647000,220],[1710112648000,220],[1710112649000,220],[1710112650000,220],[1710112651000,220],[1710112652000,220],[1710112653000,220],[1710112654000,220],[1710112655000,220],[1710112656000,220],[1710112657000,220],[1710112658000,220],[1710112659000,220],[1710112660000,220],[1710112661000,220],[1710112662000,220],[1710112663000,220],[1710112664000,220],[1710112665000,220],[1710112666000,220],[1710112667000,220],[1710112668000,220],[1710112669000,220],[1710112670000,220],[1710112671000,220],[1710112672000,220],[1710112673000,220],[1710112674000,220],[1710112675000,220],[1710112676000,220],[1710112677000,220],[1710112678000,220],[1710112679000,220],[1710112680000,220],[1710112681000,220],[1710112682000,220],[1710112683000,220],[1710112684000,220],[1710112685000,220],[1710112686000,220],[1710112687000,220],[1710112688000,217]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#68b65c',
name: 'créditos',
data: [
[1710112444000,0],[1710112445000,0],[1710112446000,0],[1710112447000,0],[1710112448000,0],[1710112449000,2],[1710112450000,2],[1710112451000,4],[1710112452000,4],[1710112453000,5],[1710112454000,6],[1710112455000,7],[1710112456000,8],[1710112457000,8],[1710112458000,10],[1710112459000,10],[1710112460000,12],[1710112461000,12],[1710112462000,14],[1710112463000,14],[1710112464000,15],[1710112465000,16],[1710112466000,17],[1710112467000,17],[1710112468000,19],[1710112469000,20],[1710112470000,20],[1710112471000,22],[1710112472000,22],[1710112473000,23],[1710112474000,25],[1710112475000,25],[1710112476000,26],[1710112477000,26],[1710112478000,28],[1710112479000,29],[1710112480000,30],[1710112481000,30],[1710112482000,32],[1710112483000,32],[1710112484000,33],[1710112485000,34],[1710112486000,35],[1710112487000,36],[1710112488000,37],[1710112489000,38],[1710112490000,39],[1710112491000,39],[1710112492000,41],[1710112493000,41],[1710112494000,43],[1710112495000,43],[1710112496000,44],[1710112497000,45],[1710112498000,46],[1710112499000,47],[1710112500000,48],[1710112501000,48],[1710112502000,50],[1710112503000,50],[1710112504000,52],[1710112505000,52],[1710112506000,53],[1710112507000,54],[1710112508000,56],[1710112509000,55],[1710112510000,57],[1710112511000,58],[1710112512000,59],[1710112513000,59],[1710112514000,61],[1710112515000,61],[1710112516000,63],[1710112517000,63],[1710112518000,64],[1710112519000,65],[1710112520000,66],[1710112521000,67],[1710112522000,68],[1710112523000,68],[1710112524000,70],[1710112525000,70],[1710112526000,72],[1710112527000,72],[1710112528000,73],[1710112529000,74],[1710112530000,75],[1710112531000,76],[1710112532000,77],[1710112533000,78],[1710112534000,79],[1710112535000,79],[1710112536000,81],[1710112537000,81],[1710112538000,82],[1710112539000,84],[1710112540000,86],[1710112541000,85],[1710112542000,86],[1710112543000,87],[1710112544000,88],[1710112545000,90],[1710112546000,89],[1710112547000,91],[1710112548000,91],[1710112549000,92],[1710112550000,94],[1710112551000,94],[1710112552000,95],[1710112553000,96],[1710112554000,97],[1710112555000,97],[1710112556000,99],[1710112557000,99],[1710112558000,101],[1710112559000,101],[1710112560000,103],[1710112561000,103],[1710112562000,104],[1710112563000,105],[1710112564000,106],[1710112565000,107],[1710112566000,107],[1710112567000,109],[1710112568000,110],[1710112569000,110],[1710112570000,110],[1710112571000,110],[1710112572000,110],[1710112573000,110],[1710112574000,110],[1710112575000,110],[1710112576000,110],[1710112577000,110],[1710112578000,110],[1710112579000,110],[1710112580000,110],[1710112581000,110],[1710112582000,110],[1710112583000,110],[1710112584000,110],[1710112585000,110],[1710112586000,110],[1710112587000,110],[1710112588000,110],[1710112589000,110],[1710112590000,110],[1710112591000,110],[1710112592000,110],[1710112593000,110],[1710112594000,110],[1710112595000,110],[1710112596000,110],[1710112597000,110],[1710112598000,110],[1710112599000,110],[1710112600000,110],[1710112601000,110],[1710112602000,110],[1710112603000,110],[1710112604000,110],[1710112605000,110],[1710112606000,110],[1710112607000,110],[1710112608000,110],[1710112609000,110],[1710112610000,110],[1710112611000,110],[1710112612000,110],[1710112613000,110],[1710112614000,110],[1710112615000,110],[1710112616000,110],[1710112617000,110],[1710112618000,110],[1710112619000,110],[1710112620000,110],[1710112621000,110],[1710112622000,110],[1710112623000,110],[1710112624000,111],[1710112625000,110],[1710112626000,110],[1710112627000,110],[1710112628000,110],[1710112629000,110],[1710112630000,110],[1710112631000,110],[1710112632000,110],[1710112633000,110],[1710112634000,110],[1710112635000,110],[1710112636000,110],[1710112637000,110],[1710112638000,110],[1710112639000,110],[1710112640000,110],[1710112641000,110],[1710112642000,110],[1710112643000,110],[1710112644000,110],[1710112645000,110],[1710112646000,110],[1710112647000,110],[1710112648000,110],[1710112649000,110],[1710112650000,110],[1710112651000,110],[1710112652000,110],[1710112653000,110],[1710112654000,110],[1710112655000,110],[1710112656000,110],[1710112657000,110],[1710112658000,110],[1710112659000,110],[1710112660000,110],[1710112661000,110],[1710112662000,110],[1710112663000,110],[1710112664000,110],[1710112665000,110],[1710112666000,110],[1710112667000,110],[1710112668000,110],[1710112669000,110],[1710112670000,110],[1710112671000,110],[1710112672000,110],[1710112673000,110],[1710112674000,110],[1710112675000,110],[1710112676000,110],[1710112677000,110],[1710112678000,110],[1710112679000,110],[1710112680000,110],[1710112681000,110],[1710112682000,110],[1710112683000,110],[1710112684000,110],[1710112685000,110],[1710112686000,110],[1710112687000,110],[1710112688000,108]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#f15b4f',
name: 'extratos',
data: [
[1710112444000,0],[1710112445000,0],[1710112446000,0],[1710112447000,0],[1710112448000,1],[1710112449000,2],[1710112450000,1],[1710112451000,1],[1710112452000,1],[1710112453000,1],[1710112454000,2],[1710112455000,1],[1710112456000,2],[1710112457000,2],[1710112458000,1],[1710112459000,2],[1710112460000,2],[1710112461000,2],[1710112462000,2],[1710112463000,2],[1710112464000,2],[1710112465000,2],[1710112466000,3],[1710112467000,2],[1710112468000,3],[1710112469000,2],[1710112470000,3],[1710112471000,2],[1710112472000,3],[1710112473000,3],[1710112474000,3],[1710112475000,3],[1710112476000,3],[1710112477000,3],[1710112478000,3],[1710112479000,4],[1710112480000,3],[1710112481000,3],[1710112482000,4],[1710112483000,3],[1710112484000,4],[1710112485000,4],[1710112486000,4],[1710112487000,4],[1710112488000,4],[1710112489000,4],[1710112490000,4],[1710112491000,4],[1710112492000,4],[1710112493000,4],[1710112494000,5],[1710112495000,4],[1710112496000,5],[1710112497000,5],[1710112498000,4],[1710112499000,5],[1710112500000,5],[1710112501000,5],[1710112502000,5],[1710112503000,5],[1710112504000,5],[1710112505000,5],[1710112506000,6],[1710112507000,5],[1710112508000,6],[1710112509000,5],[1710112510000,6],[1710112511000,5],[1710112512000,6],[1710112513000,6],[1710112514000,6],[1710112515000,6],[1710112516000,6],[1710112517000,6],[1710112518000,6],[1710112519000,7],[1710112520000,6],[1710112521000,6],[1710112522000,7],[1710112523000,6],[1710112524000,7],[1710112525000,7],[1710112526000,7],[1710112527000,7],[1710112528000,7],[1710112529000,7],[1710112530000,7],[1710112531000,7],[1710112532000,7],[1710112533000,7],[1710112534000,8],[1710112535000,7],[1710112536000,8],[1710112537000,8],[1710112538000,7],[1710112539000,8],[1710112540000,8],[1710112541000,8],[1710112542000,8],[1710112543000,8],[1710112544000,8],[1710112545000,8],[1710112546000,9],[1710112547000,8],[1710112548000,9],[1710112549000,8],[1710112550000,9],[1710112551000,8],[1710112552000,9],[1710112553000,9],[1710112554000,9],[1710112555000,9],[1710112556000,9],[1710112557000,9],[1710112558000,9],[1710112559000,10],[1710112560000,9],[1710112561000,9],[1710112562000,10],[1710112563000,9],[1710112564000,10],[1710112565000,10],[1710112566000,10],[1710112567000,10],[1710112568000,10],[1710112569000,10],[1710112570000,10],[1710112571000,10],[1710112572000,10],[1710112573000,10],[1710112574000,10],[1710112575000,10],[1710112576000,10],[1710112577000,10],[1710112578000,10],[1710112579000,10],[1710112580000,10],[1710112581000,10],[1710112582000,10],[1710112583000,10],[1710112584000,10],[1710112585000,10],[1710112586000,10],[1710112587000,10],[1710112588000,10],[1710112589000,10],[1710112590000,10],[1710112591000,10],[1710112592000,10],[1710112593000,10],[1710112594000,10],[1710112595000,10],[1710112596000,10],[1710112597000,10],[1710112598000,10],[1710112599000,10],[1710112600000,10],[1710112601000,10],[1710112602000,10],[1710112603000,10],[1710112604000,10],[1710112605000,10],[1710112606000,10],[1710112607000,10],[1710112608000,10],[1710112609000,10],[1710112610000,10],[1710112611000,10],[1710112612000,10],[1710112613000,10],[1710112614000,10],[1710112615000,10],[1710112616000,10],[1710112617000,10],[1710112618000,10],[1710112619000,10],[1710112620000,10],[1710112621000,10],[1710112622000,10],[1710112623000,10],[1710112624000,10],[1710112625000,10],[1710112626000,10],[1710112627000,10],[1710112628000,10],[1710112629000,10],[1710112630000,10],[1710112631000,10],[1710112632000,10],[1710112633000,10],[1710112634000,10],[1710112635000,10],[1710112636000,10],[1710112637000,10],[1710112638000,10],[1710112639000,10],[1710112640000,10],[1710112641000,10],[1710112642000,10],[1710112643000,10],[1710112644000,10],[1710112645000,10],[1710112646000,10],[1710112647000,10],[1710112648000,10],[1710112649000,10],[1710112650000,10],[1710112651000,10],[1710112652000,10],[1710112653000,10],[1710112654000,10],[1710112655000,10],[1710112656000,10],[1710112657000,10],[1710112658000,10],[1710112659000,10],[1710112660000,10],[1710112661000,10],[1710112662000,10],[1710112663000,10],[1710112664000,10],[1710112665000,10],[1710112666000,10],[1710112667000,10],[1710112668000,10],[1710112669000,10],[1710112670000,10],[1710112671000,10],[1710112672000,10],[1710112673000,10],[1710112674000,10],[1710112675000,10],[1710112676000,10],[1710112677000,10],[1710112678000,10],[1710112679000,10],[1710112680000,10],[1710112681000,10],[1710112682000,10],[1710112683000,10],[1710112684000,10],[1710112685000,10],[1710112686000,10],[1710112687000,10],[1710112688000,9]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FFDD00',
name: 'validação HTTP 404',
data: [
[1710112444000,0],[1710112445000,0],[1710112446000,0],[1710112447000,1],[1710112448000,0],[1710112449000,0],[1710112450000,0],[1710112451000,0],[1710112452000,0],[1710112453000,0],[1710112454000,0],[1710112455000,0],[1710112456000,0],[1710112457000,0],[1710112458000,0],[1710112459000,0],[1710112460000,0],[1710112461000,0],[1710112462000,0],[1710112463000,0],[1710112464000,0],[1710112465000,0],[1710112466000,0],[1710112467000,0],[1710112468000,0],[1710112469000,0],[1710112470000,0],[1710112471000,0],[1710112472000,0],[1710112473000,0],[1710112474000,0],[1710112475000,0],[1710112476000,0],[1710112477000,0],[1710112478000,0],[1710112479000,0],[1710112480000,0],[1710112481000,0],[1710112482000,0],[1710112483000,0],[1710112484000,0],[1710112485000,0],[1710112486000,0],[1710112487000,0],[1710112488000,0],[1710112489000,0],[1710112490000,0],[1710112491000,0],[1710112492000,0],[1710112493000,0],[1710112494000,0],[1710112495000,0],[1710112496000,0],[1710112497000,0],[1710112498000,0],[1710112499000,0],[1710112500000,0],[1710112501000,0],[1710112502000,0],[1710112503000,0],[1710112504000,0],[1710112505000,0],[1710112506000,0],[1710112507000,0],[1710112508000,0],[1710112509000,0],[1710112510000,0],[1710112511000,0],[1710112512000,0],[1710112513000,0],[1710112514000,0],[1710112515000,0],[1710112516000,0],[1710112517000,0],[1710112518000,0],[1710112519000,0],[1710112520000,0],[1710112521000,0],[1710112522000,0],[1710112523000,0],[1710112524000,0],[1710112525000,0],[1710112526000,0],[1710112527000,0],[1710112528000,0],[1710112529000,0],[1710112530000,0],[1710112531000,0],[1710112532000,0],[1710112533000,0],[1710112534000,0],[1710112535000,0],[1710112536000,0],[1710112537000,0],[1710112538000,0],[1710112539000,0],[1710112540000,0],[1710112541000,0],[1710112542000,0],[1710112543000,0],[1710112544000,0],[1710112545000,0],[1710112546000,0],[1710112547000,0],[1710112548000,0],[1710112549000,0],[1710112550000,0],[1710112551000,0],[1710112552000,0],[1710112553000,0],[1710112554000,0],[1710112555000,0],[1710112556000,0],[1710112557000,0],[1710112558000,0],[1710112559000,0],[1710112560000,0],[1710112561000,0],[1710112562000,0],[1710112563000,0],[1710112564000,0],[1710112565000,0],[1710112566000,0],[1710112567000,0],[1710112568000,0],[1710112569000,0],[1710112570000,0],[1710112571000,0],[1710112572000,0],[1710112573000,0],[1710112574000,0],[1710112575000,0],[1710112576000,0],[1710112577000,0],[1710112578000,0],[1710112579000,0],[1710112580000,0],[1710112581000,0],[1710112582000,0],[1710112583000,0],[1710112584000,0],[1710112585000,0],[1710112586000,0],[1710112587000,0],[1710112588000,0],[1710112589000,0],[1710112590000,0],[1710112591000,0],[1710112592000,0],[1710112593000,0],[1710112594000,0],[1710112595000,0],[1710112596000,0],[1710112597000,0],[1710112598000,0],[1710112599000,0],[1710112600000,0],[1710112601000,0],[1710112602000,0],[1710112603000,0],[1710112604000,0],[1710112605000,0],[1710112606000,0],[1710112607000,0],[1710112608000,0],[1710112609000,0],[1710112610000,0],[1710112611000,0],[1710112612000,0],[1710112613000,0],[1710112614000,0],[1710112615000,0],[1710112616000,0],[1710112617000,0],[1710112618000,0],[1710112619000,0],[1710112620000,0],[1710112621000,0],[1710112622000,0],[1710112623000,0],[1710112624000,0],[1710112625000,0],[1710112626000,0],[1710112627000,0],[1710112628000,0],[1710112629000,0],[1710112630000,0],[1710112631000,0],[1710112632000,0],[1710112633000,0],[1710112634000,0],[1710112635000,0],[1710112636000,0],[1710112637000,0],[1710112638000,0],[1710112639000,0],[1710112640000,0],[1710112641000,0],[1710112642000,0],[1710112643000,0],[1710112644000,0],[1710112645000,0],[1710112646000,0],[1710112647000,0],[1710112648000,0],[1710112649000,0],[1710112650000,0],[1710112651000,0],[1710112652000,0],[1710112653000,0],[1710112654000,0],[1710112655000,0],[1710112656000,0],[1710112657000,0],[1710112658000,0],[1710112659000,0],[1710112660000,0],[1710112661000,0],[1710112662000,0],[1710112663000,0],[1710112664000,0],[1710112665000,0],[1710112666000,0],[1710112667000,0],[1710112668000,0],[1710112669000,0],[1710112670000,0],[1710112671000,0],[1710112672000,0],[1710112673000,0],[1710112674000,0],[1710112675000,0],[1710112676000,0],[1710112677000,0],[1710112678000,0],[1710112679000,0],[1710112680000,0],[1710112681000,0],[1710112682000,0],[1710112683000,0],[1710112684000,0],[1710112685000,0],[1710112686000,0],[1710112687000,0],[1710112688000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00D5FF',
name: 'validações',
data: [
[1710112444000,0],[1710112445000,0],[1710112446000,0],[1710112447000,5],[1710112448000,5],[1710112449000,0],[1710112450000,0],[1710112451000,0],[1710112452000,0],[1710112453000,0],[1710112454000,0],[1710112455000,0],[1710112456000,0],[1710112457000,0],[1710112458000,0],[1710112459000,0],[1710112460000,0],[1710112461000,0],[1710112462000,0],[1710112463000,0],[1710112464000,0],[1710112465000,0],[1710112466000,0],[1710112467000,0],[1710112468000,0],[1710112469000,0],[1710112470000,0],[1710112471000,0],[1710112472000,0],[1710112473000,0],[1710112474000,0],[1710112475000,0],[1710112476000,0],[1710112477000,0],[1710112478000,0],[1710112479000,0],[1710112480000,0],[1710112481000,0],[1710112482000,0],[1710112483000,0],[1710112484000,0],[1710112485000,0],[1710112486000,0],[1710112487000,0],[1710112488000,0],[1710112489000,0],[1710112490000,0],[1710112491000,0],[1710112492000,0],[1710112493000,0],[1710112494000,0],[1710112495000,0],[1710112496000,0],[1710112497000,0],[1710112498000,0],[1710112499000,0],[1710112500000,0],[1710112501000,0],[1710112502000,0],[1710112503000,0],[1710112504000,0],[1710112505000,0],[1710112506000,0],[1710112507000,0],[1710112508000,0],[1710112509000,0],[1710112510000,0],[1710112511000,0],[1710112512000,0],[1710112513000,0],[1710112514000,0],[1710112515000,0],[1710112516000,0],[1710112517000,0],[1710112518000,0],[1710112519000,0],[1710112520000,0],[1710112521000,0],[1710112522000,0],[1710112523000,0],[1710112524000,0],[1710112525000,0],[1710112526000,0],[1710112527000,0],[1710112528000,0],[1710112529000,0],[1710112530000,0],[1710112531000,0],[1710112532000,0],[1710112533000,0],[1710112534000,0],[1710112535000,0],[1710112536000,0],[1710112537000,0],[1710112538000,0],[1710112539000,0],[1710112540000,0],[1710112541000,0],[1710112542000,0],[1710112543000,0],[1710112544000,0],[1710112545000,0],[1710112546000,0],[1710112547000,0],[1710112548000,0],[1710112549000,0],[1710112550000,0],[1710112551000,0],[1710112552000,0],[1710112553000,0],[1710112554000,0],[1710112555000,0],[1710112556000,0],[1710112557000,0],[1710112558000,0],[1710112559000,0],[1710112560000,0],[1710112561000,0],[1710112562000,0],[1710112563000,0],[1710112564000,0],[1710112565000,0],[1710112566000,0],[1710112567000,0],[1710112568000,0],[1710112569000,0],[1710112570000,0],[1710112571000,0],[1710112572000,0],[1710112573000,0],[1710112574000,0],[1710112575000,0],[1710112576000,0],[1710112577000,0],[1710112578000,0],[1710112579000,0],[1710112580000,0],[1710112581000,0],[1710112582000,0],[1710112583000,0],[1710112584000,0],[1710112585000,0],[1710112586000,0],[1710112587000,0],[1710112588000,0],[1710112589000,0],[1710112590000,0],[1710112591000,0],[1710112592000,0],[1710112593000,0],[1710112594000,0],[1710112595000,0],[1710112596000,0],[1710112597000,0],[1710112598000,0],[1710112599000,0],[1710112600000,0],[1710112601000,0],[1710112602000,0],[1710112603000,0],[1710112604000,0],[1710112605000,0],[1710112606000,0],[1710112607000,0],[1710112608000,0],[1710112609000,0],[1710112610000,0],[1710112611000,0],[1710112612000,0],[1710112613000,0],[1710112614000,0],[1710112615000,0],[1710112616000,0],[1710112617000,0],[1710112618000,0],[1710112619000,0],[1710112620000,0],[1710112621000,0],[1710112622000,0],[1710112623000,0],[1710112624000,0],[1710112625000,0],[1710112626000,0],[1710112627000,0],[1710112628000,0],[1710112629000,0],[1710112630000,0],[1710112631000,0],[1710112632000,0],[1710112633000,0],[1710112634000,0],[1710112635000,0],[1710112636000,0],[1710112637000,0],[1710112638000,0],[1710112639000,0],[1710112640000,0],[1710112641000,0],[1710112642000,0],[1710112643000,0],[1710112644000,0],[1710112645000,0],[1710112646000,0],[1710112647000,0],[1710112648000,0],[1710112649000,0],[1710112650000,0],[1710112651000,0],[1710112652000,0],[1710112653000,0],[1710112654000,0],[1710112655000,0],[1710112656000,0],[1710112657000,0],[1710112658000,0],[1710112659000,0],[1710112660000,0],[1710112661000,0],[1710112662000,0],[1710112663000,0],[1710112664000,0],[1710112665000,0],[1710112666000,0],[1710112667000,0],[1710112668000,0],[1710112669000,0],[1710112670000,0],[1710112671000,0],[1710112672000,0],[1710112673000,0],[1710112674000,0],[1710112675000,0],[1710112676000,0],[1710112677000,0],[1710112678000,0],[1710112679000,0],[1710112680000,0],[1710112681000,0],[1710112682000,0],[1710112683000,0],[1710112684000,0],[1710112685000,0],[1710112686000,0],[1710112687000,0],[1710112688000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00FF00',
name: 'validação concorrência saldo - 0',
data: [
[1710112444000,0],[1710112445000,0],[1710112446000,1],[1710112447000,0],[1710112448000,0],[1710112449000,0],[1710112450000,0],[1710112451000,0],[1710112452000,0],[1710112453000,0],[1710112454000,0],[1710112455000,0],[1710112456000,0],[1710112457000,0],[1710112458000,0],[1710112459000,0],[1710112460000,0],[1710112461000,0],[1710112462000,0],[1710112463000,0],[1710112464000,0],[1710112465000,0],[1710112466000,0],[1710112467000,0],[1710112468000,0],[1710112469000,0],[1710112470000,0],[1710112471000,0],[1710112472000,0],[1710112473000,0],[1710112474000,0],[1710112475000,0],[1710112476000,0],[1710112477000,0],[1710112478000,0],[1710112479000,0],[1710112480000,0],[1710112481000,0],[1710112482000,0],[1710112483000,0],[1710112484000,0],[1710112485000,0],[1710112486000,0],[1710112487000,0],[1710112488000,0],[1710112489000,0],[1710112490000,0],[1710112491000,0],[1710112492000,0],[1710112493000,0],[1710112494000,0],[1710112495000,0],[1710112496000,0],[1710112497000,0],[1710112498000,0],[1710112499000,0],[1710112500000,0],[1710112501000,0],[1710112502000,0],[1710112503000,0],[1710112504000,0],[1710112505000,0],[1710112506000,0],[1710112507000,0],[1710112508000,0],[1710112509000,0],[1710112510000,0],[1710112511000,0],[1710112512000,0],[1710112513000,0],[1710112514000,0],[1710112515000,0],[1710112516000,0],[1710112517000,0],[1710112518000,0],[1710112519000,0],[1710112520000,0],[1710112521000,0],[1710112522000,0],[1710112523000,0],[1710112524000,0],[1710112525000,0],[1710112526000,0],[1710112527000,0],[1710112528000,0],[1710112529000,0],[1710112530000,0],[1710112531000,0],[1710112532000,0],[1710112533000,0],[1710112534000,0],[1710112535000,0],[1710112536000,0],[1710112537000,0],[1710112538000,0],[1710112539000,0],[1710112540000,0],[1710112541000,0],[1710112542000,0],[1710112543000,0],[1710112544000,0],[1710112545000,0],[1710112546000,0],[1710112547000,0],[1710112548000,0],[1710112549000,0],[1710112550000,0],[1710112551000,0],[1710112552000,0],[1710112553000,0],[1710112554000,0],[1710112555000,0],[1710112556000,0],[1710112557000,0],[1710112558000,0],[1710112559000,0],[1710112560000,0],[1710112561000,0],[1710112562000,0],[1710112563000,0],[1710112564000,0],[1710112565000,0],[1710112566000,0],[1710112567000,0],[1710112568000,0],[1710112569000,0],[1710112570000,0],[1710112571000,0],[1710112572000,0],[1710112573000,0],[1710112574000,0],[1710112575000,0],[1710112576000,0],[1710112577000,0],[1710112578000,0],[1710112579000,0],[1710112580000,0],[1710112581000,0],[1710112582000,0],[1710112583000,0],[1710112584000,0],[1710112585000,0],[1710112586000,0],[1710112587000,0],[1710112588000,0],[1710112589000,0],[1710112590000,0],[1710112591000,0],[1710112592000,0],[1710112593000,0],[1710112594000,0],[1710112595000,0],[1710112596000,0],[1710112597000,0],[1710112598000,0],[1710112599000,0],[1710112600000,0],[1710112601000,0],[1710112602000,0],[1710112603000,0],[1710112604000,0],[1710112605000,0],[1710112606000,0],[1710112607000,0],[1710112608000,0],[1710112609000,0],[1710112610000,0],[1710112611000,0],[1710112612000,0],[1710112613000,0],[1710112614000,0],[1710112615000,0],[1710112616000,0],[1710112617000,0],[1710112618000,0],[1710112619000,0],[1710112620000,0],[1710112621000,0],[1710112622000,0],[1710112623000,0],[1710112624000,0],[1710112625000,0],[1710112626000,0],[1710112627000,0],[1710112628000,0],[1710112629000,0],[1710112630000,0],[1710112631000,0],[1710112632000,0],[1710112633000,0],[1710112634000,0],[1710112635000,0],[1710112636000,0],[1710112637000,0],[1710112638000,0],[1710112639000,0],[1710112640000,0],[1710112641000,0],[1710112642000,0],[1710112643000,0],[1710112644000,0],[1710112645000,0],[1710112646000,0],[1710112647000,0],[1710112648000,0],[1710112649000,0],[1710112650000,0],[1710112651000,0],[1710112652000,0],[1710112653000,0],[1710112654000,0],[1710112655000,0],[1710112656000,0],[1710112657000,0],[1710112658000,0],[1710112659000,0],[1710112660000,0],[1710112661000,0],[1710112662000,0],[1710112663000,0],[1710112664000,0],[1710112665000,0],[1710112666000,0],[1710112667000,0],[1710112668000,0],[1710112669000,0],[1710112670000,0],[1710112671000,0],[1710112672000,0],[1710112673000,0],[1710112674000,0],[1710112675000,0],[1710112676000,0],[1710112677000,0],[1710112678000,0],[1710112679000,0],[1710112680000,0],[1710112681000,0],[1710112682000,0],[1710112683000,0],[1710112684000,0],[1710112685000,0],[1710112686000,0],[1710112687000,0],[1710112688000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#9D00FF',
name: 'validação concorrência transações - c',
data: [
[1710112444000,0],[1710112445000,25],[1710112446000,23],[1710112447000,0],[1710112448000,0],[1710112449000,0],[1710112450000,0],[1710112451000,0],[1710112452000,0],[1710112453000,0],[1710112454000,0],[1710112455000,0],[1710112456000,0],[1710112457000,0],[1710112458000,0],[1710112459000,0],[1710112460000,0],[1710112461000,0],[1710112462000,0],[1710112463000,0],[1710112464000,0],[1710112465000,0],[1710112466000,0],[1710112467000,0],[1710112468000,0],[1710112469000,0],[1710112470000,0],[1710112471000,0],[1710112472000,0],[1710112473000,0],[1710112474000,0],[1710112475000,0],[1710112476000,0],[1710112477000,0],[1710112478000,0],[1710112479000,0],[1710112480000,0],[1710112481000,0],[1710112482000,0],[1710112483000,0],[1710112484000,0],[1710112485000,0],[1710112486000,0],[1710112487000,0],[1710112488000,0],[1710112489000,0],[1710112490000,0],[1710112491000,0],[1710112492000,0],[1710112493000,0],[1710112494000,0],[1710112495000,0],[1710112496000,0],[1710112497000,0],[1710112498000,0],[1710112499000,0],[1710112500000,0],[1710112501000,0],[1710112502000,0],[1710112503000,0],[1710112504000,0],[1710112505000,0],[1710112506000,0],[1710112507000,0],[1710112508000,0],[1710112509000,0],[1710112510000,0],[1710112511000,0],[1710112512000,0],[1710112513000,0],[1710112514000,0],[1710112515000,0],[1710112516000,0],[1710112517000,0],[1710112518000,0],[1710112519000,0],[1710112520000,0],[1710112521000,0],[1710112522000,0],[1710112523000,0],[1710112524000,0],[1710112525000,0],[1710112526000,0],[1710112527000,0],[1710112528000,0],[1710112529000,0],[1710112530000,0],[1710112531000,0],[1710112532000,0],[1710112533000,0],[1710112534000,0],[1710112535000,0],[1710112536000,0],[1710112537000,0],[1710112538000,0],[1710112539000,0],[1710112540000,0],[1710112541000,0],[1710112542000,0],[1710112543000,0],[1710112544000,0],[1710112545000,0],[1710112546000,0],[1710112547000,0],[1710112548000,0],[1710112549000,0],[1710112550000,0],[1710112551000,0],[1710112552000,0],[1710112553000,0],[1710112554000,0],[1710112555000,0],[1710112556000,0],[1710112557000,0],[1710112558000,0],[1710112559000,0],[1710112560000,0],[1710112561000,0],[1710112562000,0],[1710112563000,0],[1710112564000,0],[1710112565000,0],[1710112566000,0],[1710112567000,0],[1710112568000,0],[1710112569000,0],[1710112570000,0],[1710112571000,0],[1710112572000,0],[1710112573000,0],[1710112574000,0],[1710112575000,0],[1710112576000,0],[1710112577000,0],[1710112578000,0],[1710112579000,0],[1710112580000,0],[1710112581000,0],[1710112582000,0],[1710112583000,0],[1710112584000,0],[1710112585000,0],[1710112586000,0],[1710112587000,0],[1710112588000,0],[1710112589000,0],[1710112590000,0],[1710112591000,0],[1710112592000,0],[1710112593000,0],[1710112594000,0],[1710112595000,0],[1710112596000,0],[1710112597000,0],[1710112598000,0],[1710112599000,0],[1710112600000,0],[1710112601000,0],[1710112602000,0],[1710112603000,0],[1710112604000,0],[1710112605000,0],[1710112606000,0],[1710112607000,0],[1710112608000,0],[1710112609000,0],[1710112610000,0],[1710112611000,0],[1710112612000,0],[1710112613000,0],[1710112614000,0],[1710112615000,0],[1710112616000,0],[1710112617000,0],[1710112618000,0],[1710112619000,0],[1710112620000,0],[1710112621000,0],[1710112622000,0],[1710112623000,0],[1710112624000,0],[1710112625000,0],[1710112626000,0],[1710112627000,0],[1710112628000,0],[1710112629000,0],[1710112630000,0],[1710112631000,0],[1710112632000,0],[1710112633000,0],[1710112634000,0],[1710112635000,0],[1710112636000,0],[1710112637000,0],[1710112638000,0],[1710112639000,0],[1710112640000,0],[1710112641000,0],[1710112642000,0],[1710112643000,0],[1710112644000,0],[1710112645000,0],[1710112646000,0],[1710112647000,0],[1710112648000,0],[1710112649000,0],[1710112650000,0],[1710112651000,0],[1710112652000,0],[1710112653000,0],[1710112654000,0],[1710112655000,0],[1710112656000,0],[1710112657000,0],[1710112658000,0],[1710112659000,0],[1710112660000,0],[1710112661000,0],[1710112662000,0],[1710112663000,0],[1710112664000,0],[1710112665000,0],[1710112666000,0],[1710112667000,0],[1710112668000,0],[1710112669000,0],[1710112670000,0],[1710112671000,0],[1710112672000,0],[1710112673000,0],[1710112674000,0],[1710112675000,0],[1710112676000,0],[1710112677000,0],[1710112678000,0],[1710112679000,0],[1710112680000,0],[1710112681000,0],[1710112682000,0],[1710112683000,0],[1710112684000,0],[1710112685000,0],[1710112686000,0],[1710112687000,0],[1710112688000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FF00E1',
name: 'validação concorrência saldo - -25',
data: [
[1710112444000,1],[1710112445000,1],[1710112446000,0],[1710112447000,0],[1710112448000,0],[1710112449000,0],[1710112450000,0],[1710112451000,0],[1710112452000,0],[1710112453000,0],[1710112454000,0],[1710112455000,0],[1710112456000,0],[1710112457000,0],[1710112458000,0],[1710112459000,0],[1710112460000,0],[1710112461000,0],[1710112462000,0],[1710112463000,0],[1710112464000,0],[1710112465000,0],[1710112466000,0],[1710112467000,0],[1710112468000,0],[1710112469000,0],[1710112470000,0],[1710112471000,0],[1710112472000,0],[1710112473000,0],[1710112474000,0],[1710112475000,0],[1710112476000,0],[1710112477000,0],[1710112478000,0],[1710112479000,0],[1710112480000,0],[1710112481000,0],[1710112482000,0],[1710112483000,0],[1710112484000,0],[1710112485000,0],[1710112486000,0],[1710112487000,0],[1710112488000,0],[1710112489000,0],[1710112490000,0],[1710112491000,0],[1710112492000,0],[1710112493000,0],[1710112494000,0],[1710112495000,0],[1710112496000,0],[1710112497000,0],[1710112498000,0],[1710112499000,0],[1710112500000,0],[1710112501000,0],[1710112502000,0],[1710112503000,0],[1710112504000,0],[1710112505000,0],[1710112506000,0],[1710112507000,0],[1710112508000,0],[1710112509000,0],[1710112510000,0],[1710112511000,0],[1710112512000,0],[1710112513000,0],[1710112514000,0],[1710112515000,0],[1710112516000,0],[1710112517000,0],[1710112518000,0],[1710112519000,0],[1710112520000,0],[1710112521000,0],[1710112522000,0],[1710112523000,0],[1710112524000,0],[1710112525000,0],[1710112526000,0],[1710112527000,0],[1710112528000,0],[1710112529000,0],[1710112530000,0],[1710112531000,0],[1710112532000,0],[1710112533000,0],[1710112534000,0],[1710112535000,0],[1710112536000,0],[1710112537000,0],[1710112538000,0],[1710112539000,0],[1710112540000,0],[1710112541000,0],[1710112542000,0],[1710112543000,0],[1710112544000,0],[1710112545000,0],[1710112546000,0],[1710112547000,0],[1710112548000,0],[1710112549000,0],[1710112550000,0],[1710112551000,0],[1710112552000,0],[1710112553000,0],[1710112554000,0],[1710112555000,0],[1710112556000,0],[1710112557000,0],[1710112558000,0],[1710112559000,0],[1710112560000,0],[1710112561000,0],[1710112562000,0],[1710112563000,0],[1710112564000,0],[1710112565000,0],[1710112566000,0],[1710112567000,0],[1710112568000,0],[1710112569000,0],[1710112570000,0],[1710112571000,0],[1710112572000,0],[1710112573000,0],[1710112574000,0],[1710112575000,0],[1710112576000,0],[1710112577000,0],[1710112578000,0],[1710112579000,0],[1710112580000,0],[1710112581000,0],[1710112582000,0],[1710112583000,0],[1710112584000,0],[1710112585000,0],[1710112586000,0],[1710112587000,0],[1710112588000,0],[1710112589000,0],[1710112590000,0],[1710112591000,0],[1710112592000,0],[1710112593000,0],[1710112594000,0],[1710112595000,0],[1710112596000,0],[1710112597000,0],[1710112598000,0],[1710112599000,0],[1710112600000,0],[1710112601000,0],[1710112602000,0],[1710112603000,0],[1710112604000,0],[1710112605000,0],[1710112606000,0],[1710112607000,0],[1710112608000,0],[1710112609000,0],[1710112610000,0],[1710112611000,0],[1710112612000,0],[1710112613000,0],[1710112614000,0],[1710112615000,0],[1710112616000,0],[1710112617000,0],[1710112618000,0],[1710112619000,0],[1710112620000,0],[1710112621000,0],[1710112622000,0],[1710112623000,0],[1710112624000,0],[1710112625000,0],[1710112626000,0],[1710112627000,0],[1710112628000,0],[1710112629000,0],[1710112630000,0],[1710112631000,0],[1710112632000,0],[1710112633000,0],[1710112634000,0],[1710112635000,0],[1710112636000,0],[1710112637000,0],[1710112638000,0],[1710112639000,0],[1710112640000,0],[1710112641000,0],[1710112642000,0],[1710112643000,0],[1710112644000,0],[1710112645000,0],[1710112646000,0],[1710112647000,0],[1710112648000,0],[1710112649000,0],[1710112650000,0],[1710112651000,0],[1710112652000,0],[1710112653000,0],[1710112654000,0],[1710112655000,0],[1710112656000,0],[1710112657000,0],[1710112658000,0],[1710112659000,0],[1710112660000,0],[1710112661000,0],[1710112662000,0],[1710112663000,0],[1710112664000,0],[1710112665000,0],[1710112666000,0],[1710112667000,0],[1710112668000,0],[1710112669000,0],[1710112670000,0],[1710112671000,0],[1710112672000,0],[1710112673000,0],[1710112674000,0],[1710112675000,0],[1710112676000,0],[1710112677000,0],[1710112678000,0],[1710112679000,0],[1710112680000,0],[1710112681000,0],[1710112682000,0],[1710112683000,0],[1710112684000,0],[1710112685000,0],[1710112686000,0],[1710112687000,0],[1710112688000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#AECAEB',
name: 'validação concorrência transações - d',
data: [
[1710112444000,25],[1710112445000,0],[1710112446000,0],[1710112447000,0],[1710112448000,0],[1710112449000,0],[1710112450000,0],[1710112451000,0],[1710112452000,0],[1710112453000,0],[1710112454000,0],[1710112455000,0],[1710112456000,0],[1710112457000,0],[1710112458000,0],[1710112459000,0],[1710112460000,0],[1710112461000,0],[1710112462000,0],[1710112463000,0],[1710112464000,0],[1710112465000,0],[1710112466000,0],[1710112467000,0],[1710112468000,0],[1710112469000,0],[1710112470000,0],[1710112471000,0],[1710112472000,0],[1710112473000,0],[1710112474000,0],[1710112475000,0],[1710112476000,0],[1710112477000,0],[1710112478000,0],[1710112479000,0],[1710112480000,0],[1710112481000,0],[1710112482000,0],[1710112483000,0],[1710112484000,0],[1710112485000,0],[1710112486000,0],[1710112487000,0],[1710112488000,0],[1710112489000,0],[1710112490000,0],[1710112491000,0],[1710112492000,0],[1710112493000,0],[1710112494000,0],[1710112495000,0],[1710112496000,0],[1710112497000,0],[1710112498000,0],[1710112499000,0],[1710112500000,0],[1710112501000,0],[1710112502000,0],[1710112503000,0],[1710112504000,0],[1710112505000,0],[1710112506000,0],[1710112507000,0],[1710112508000,0],[1710112509000,0],[1710112510000,0],[1710112511000,0],[1710112512000,0],[1710112513000,0],[1710112514000,0],[1710112515000,0],[1710112516000,0],[1710112517000,0],[1710112518000,0],[1710112519000,0],[1710112520000,0],[1710112521000,0],[1710112522000,0],[1710112523000,0],[1710112524000,0],[1710112525000,0],[1710112526000,0],[1710112527000,0],[1710112528000,0],[1710112529000,0],[1710112530000,0],[1710112531000,0],[1710112532000,0],[1710112533000,0],[1710112534000,0],[1710112535000,0],[1710112536000,0],[1710112537000,0],[1710112538000,0],[1710112539000,0],[1710112540000,0],[1710112541000,0],[1710112542000,0],[1710112543000,0],[1710112544000,0],[1710112545000,0],[1710112546000,0],[1710112547000,0],[1710112548000,0],[1710112549000,0],[1710112550000,0],[1710112551000,0],[1710112552000,0],[1710112553000,0],[1710112554000,0],[1710112555000,0],[1710112556000,0],[1710112557000,0],[1710112558000,0],[1710112559000,0],[1710112560000,0],[1710112561000,0],[1710112562000,0],[1710112563000,0],[1710112564000,0],[1710112565000,0],[1710112566000,0],[1710112567000,0],[1710112568000,0],[1710112569000,0],[1710112570000,0],[1710112571000,0],[1710112572000,0],[1710112573000,0],[1710112574000,0],[1710112575000,0],[1710112576000,0],[1710112577000,0],[1710112578000,0],[1710112579000,0],[1710112580000,0],[1710112581000,0],[1710112582000,0],[1710112583000,0],[1710112584000,0],[1710112585000,0],[1710112586000,0],[1710112587000,0],[1710112588000,0],[1710112589000,0],[1710112590000,0],[1710112591000,0],[1710112592000,0],[1710112593000,0],[1710112594000,0],[1710112595000,0],[1710112596000,0],[1710112597000,0],[1710112598000,0],[1710112599000,0],[1710112600000,0],[1710112601000,0],[1710112602000,0],[1710112603000,0],[1710112604000,0],[1710112605000,0],[1710112606000,0],[1710112607000,0],[1710112608000,0],[1710112609000,0],[1710112610000,0],[1710112611000,0],[1710112612000,0],[1710112613000,0],[1710112614000,0],[1710112615000,0],[1710112616000,0],[1710112617000,0],[1710112618000,0],[1710112619000,0],[1710112620000,0],[1710112621000,0],[1710112622000,0],[1710112623000,0],[1710112624000,0],[1710112625000,0],[1710112626000,0],[1710112627000,0],[1710112628000,0],[1710112629000,0],[1710112630000,0],[1710112631000,0],[1710112632000,0],[1710112633000,0],[1710112634000,0],[1710112635000,0],[1710112636000,0],[1710112637000,0],[1710112638000,0],[1710112639000,0],[1710112640000,0],[1710112641000,0],[1710112642000,0],[1710112643000,0],[1710112644000,0],[1710112645000,0],[1710112646000,0],[1710112647000,0],[1710112648000,0],[1710112649000,0],[1710112650000,0],[1710112651000,0],[1710112652000,0],[1710112653000,0],[1710112654000,0],[1710112655000,0],[1710112656000,0],[1710112657000,0],[1710112658000,0],[1710112659000,0],[1710112660000,0],[1710112661000,0],[1710112662000,0],[1710112663000,0],[1710112664000,0],[1710112665000,0],[1710112666000,0],[1710112667000,0],[1710112668000,0],[1710112669000,0],[1710112670000,0],[1710112671000,0],[1710112672000,0],[1710112673000,0],[1710112674000,0],[1710112675000,0],[1710112676000,0],[1710112677000,0],[1710112678000,0],[1710112679000,0],[1710112680000,0],[1710112681000,0],[1710112682000,0],[1710112683000,0],[1710112684000,0],[1710112685000,0],[1710112686000,0],[1710112687000,0],[1710112688000,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: ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '10', '11', '12', '14', '15', '16', '17', '18', '20', '21', '25', '35', '36', '37', '38', '39', '43', '44', '45', '47', '49', '50', '51'],
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: [
57.52,42.05,0.25,0.03,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
],
tooltip: { yDecimals: 0, ySuffix: 'ms' }
},
{
type: 'column',
color: '#f15b4f',
name: 'KO',
data: [
],
tooltip: { yDecimals: 0, ySuffix: 'ms' }
}
]
});
responsetimeDistributionChart.setTitle({
text: '<span class="chart_title">Response Time Distribution</span>',
useHTML: true
});
var responsetimepercentilesovertimeokPercentiles = unpack([[1710112444,[12,35,38,44,45,47,48,49,50,51]],[1710112445,[2,2,2,2,2,2,2,2,2,2]],[1710112446,[7,9,11,15,15,15,16,17,18,18]],[1710112447,[1,1,1,1,1,1,1,1,1,1]],[1710112448,[0,1,2,4,6,7,10,14,18,18]],[1710112449,[2,2,3,3,3,3,3,3,3,3]],[1710112450,[1,2,2,2,2,2,2,2,2,3]],[1710112451,[1,1,2,2,2,2,2,2,2,3]],[1710112452,[1,1,2,2,2,2,3,3,3,3]],[1710112453,[1,1,2,2,2,2,2,2,2,2]],[1710112454,[1,1,1,2,2,2,2,2,2,2]],[1710112455,[1,1,1,1,2,2,2,2,2,3]],[1710112456,[1,1,1,2,2,2,2,2,2,3]],[1710112457,[1,1,1,2,2,2,2,2,2,2]],[1710112458,[1,1,1,2,2,2,2,2,2,3]],[1710112459,[1,1,1,1,1,2,2,2,2,2]],[1710112460,[0,1,1,1,1,1,2,2,2,2]],[1710112461,[0,1,1,1,1,2,2,2,2,2]],[1710112462,[0,1,1,1,1,1,2,2,2,3]],[1710112463,[0,1,1,1,1,1,1,2,4,6]],[1710112464,[0,1,1,1,1,1,1,2,2,2]],[1710112465,[0,0,1,1,1,1,1,1,1,2]],[1710112466,[0,0,1,1,1,1,1,1,1,1]],[1710112467,[0,0,1,1,1,1,1,1,2,2]],[1710112468,[0,0,1,1,1,1,1,1,1,2]],[1710112469,[0,0,0,1,1,1,1,1,1,1]],[1710112470,[0,0,1,1,1,1,1,1,1,1]],[1710112471,[0,1,1,1,1,1,1,1,1,1]],[1710112472,[0,0,0,1,1,1,1,1,1,1]],[1710112473,[0,0,1,1,1,1,1,1,2,2]],[1710112474,[0,0,1,1,1,1,1,1,1,1]],[1710112475,[0,0,0,1,1,1,1,1,1,2]],[1710112476,[0,0,0,1,1,1,1,1,1,1]],[1710112477,[0,0,1,1,1,1,1,1,5,9]],[1710112478,[0,0,1,1,1,1,1,1,1,1]],[1710112479,[0,0,0,1,1,1,1,1,1,1]],[1710112480,[0,0,0,1,1,1,1,1,1,1]],[1710112481,[0,0,0,1,1,1,1,1,1,2]],[1710112482,[0,0,0,0,1,1,1,1,1,1]],[1710112483,[0,0,1,1,1,1,1,1,2,2]],[1710112484,[0,0,0,1,1,1,1,1,1,2]],[1710112485,[0,0,0,1,1,1,1,1,1,2]],[1710112486,[0,0,0,1,1,1,1,1,1,1]],[1710112487,[0,0,0,1,1,1,1,1,1,3]],[1710112488,[0,0,0,1,1,1,1,1,1,1]],[1710112489,[0,0,0,1,1,1,1,1,1,1]],[1710112490,[0,0,0,1,1,1,1,1,1,1]],[1710112491,[0,0,0,1,1,1,1,1,1,1]],[1710112492,[0,0,0,1,1,1,1,1,1,1]],[1710112493,[0,0,0,1,1,1,1,1,1,1]],[1710112494,[0,0,1,1,1,1,1,1,1,1]],[1710112495,[0,0,0,1,1,1,1,1,1,1]],[1710112496,[0,0,0,1,1,1,1,1,1,1]],[1710112497,[0,0,0,1,1,1,1,1,1,1]],[1710112498,[0,0,1,1,1,1,1,1,1,1]],[1710112499,[0,1,1,1,1,1,1,1,1,1]],[1710112500,[0,0,1,1,1,1,1,1,1,1]],[1710112501,[0,0,0,1,1,1,1,1,1,1]],[1710112502,[0,0,0,1,1,1,1,1,1,1]],[1710112503,[0,1,1,1,1,1,1,1,1,1]],[1710112504,[0,0,0,0,0,0,1,1,1,1]],[1710112505,[0,0,0,0,1,1,1,1,1,1]],[1710112506,[0,0,1,1,1,1,1,1,1,1]],[1710112507,[0,0,1,1,1,1,1,1,1,2]],[1710112508,[0,0,1,1,1,1,1,1,1,2]],[1710112509,[0,0,1,1,1,1,1,1,1,2]],[1710112510,[0,0,1,1,1,1,1,1,1,1]],[1710112511,[0,0,1,1,1,1,1,1,1,1]],[1710112512,[0,0,0,0,0,0,0,1,1,1]],[1710112513,[0,0,0,1,1,1,1,1,1,1]],[1710112514,[0,1,1,1,1,1,1,1,1,1]],[1710112515,[0,1,1,1,1,1,1,1,1,1]],[1710112516,[0,0,1,1,1,1,1,1,1,1]],[1710112517,[0,0,1,1,1,1,1,1,1,2]],[1710112518,[0,0,0,1,1,1,1,1,1,1]],[1710112519,[0,0,0,0,0,0,1,1,1,1]],[1710112520,[0,0,0,1,1,1,1,1,1,1]],[1710112521,[0,0,0,0,1,1,1,1,1,4]],[1710112522,[0,0,0,0,0,0,1,1,1,1]],[1710112523,[0,0,0,0,0,0,0,1,1,1]],[1710112524,[0,0,0,0,0,0,0,0,0,0]],[1710112525,[0,0,0,0,0,0,0,0,0,0]],[1710112526,[0,0,0,0,0,0,1,1,1,1]],[1710112527,[0,0,0,1,1,1,1,1,1,1]],[1710112528,[0,0,0,1,1,1,1,1,1,1]],[1710112529,[0,0,0,1,1,1,1,1,1,1]],[1710112530,[0,0,1,1,1,1,1,1,1,1]],[1710112531,[0,0,1,1,1,1,1,1,1,1]],[1710112532,[0,1,1,1,1,1,1,1,1,5]],[1710112533,[0,1,1,1,1,1,1,1,1,1]],[1710112534,[0,0,1,1,1,1,1,1,1,1]],[1710112535,[0,0,0,1,1,1,1,1,1,1]],[1710112536,[0,0,0,1,1,1,1,1,1,1]],[1710112537,[0,0,0,1,1,1,1,1,1,1]],[1710112538,[0,0,0,1,1,1,1,1,1,1]],[1710112539,[0,0,1,1,1,1,1,1,1,2]],[1710112540,[0,0,0,1,1,1,1,1,1,1]],[1710112541,[0,0,0,0,0,1,1,1,1,1]],[1710112542,[0,0,0,1,1,1,1,1,1,4]],[1710112543,[0,0,0,0,1,1,1,1,1,1]],[1710112544,[0,0,0,0,1,1,1,1,1,1]],[1710112545,[0,0,1,1,1,1,1,1,1,1]],[1710112546,[0,0,1,1,1,1,1,1,1,1]],[1710112547,[0,0,0,1,1,1,1,1,1,1]],[1710112548,[0,0,0,1,1,1,1,1,1,1]],[1710112549,[0,0,0,1,1,1,1,1,1,1]],[1710112550,[0,0,0,1,1,1,1,1,1,1]],[1710112551,[0,0,0,1,1,1,1,1,1,1]],[1710112552,[0,0,1,1,1,1,1,1,1,1]],[1710112553,[0,0,0,1,1,1,1,1,1,2]],[1710112554,[0,0,1,1,1,1,1,1,1,2]],[1710112555,[0,0,1,1,1,1,1,1,1,1]],[1710112556,[0,0,0,1,1,1,1,1,1,1]],[1710112557,[0,0,0,1,1,1,1,1,1,1]],[1710112558,[0,0,0,0,1,1,1,1,1,1]],[1710112559,[0,1,1,1,1,1,1,1,1,2]],[1710112560,[0,0,1,1,1,1,1,1,1,1]],[1710112561,[0,0,0,1,1,1,1,1,1,2]],[1710112562,[0,0,1,1,1,1,1,1,1,1]],[1710112563,[0,0,0,1,1,1,1,1,1,1]],[1710112564,[0,0,0,1,1,1,1,1,1,1]],[1710112565,[0,0,0,1,1,1,1,1,1,1]],[1710112566,[0,0,0,1,1,1,1,1,1,2]],[1710112567,[0,0,0,0,0,0,1,1,1,1]],[1710112568,[0,0,0,1,1,1,1,1,1,1]],[1710112569,[0,0,0,1,1,1,1,1,1,3]],[1710112570,[0,0,0,0,0,0,1,1,1,1]],[1710112571,[0,0,1,1,1,1,1,1,1,1]],[1710112572,[0,1,1,1,1,1,1,1,1,1]],[1710112573,[0,0,0,1,1,1,1,1,1,1]],[1710112574,[0,0,0,1,1,1,1,1,1,1]],[1710112575,[0,0,1,1,1,1,1,1,1,1]],[1710112576,[0,0,1,1,1,1,1,1,1,4]],[1710112577,[0,0,0,1,1,1,1,1,1,1]],[1710112578,[0,0,1,1,1,1,1,1,1,1]],[1710112579,[0,1,1,1,1,1,1,1,1,2]],[1710112580,[0,0,1,1,1,1,1,1,1,2]],[1710112581,[0,0,0,0,0,0,1,1,1,1]],[1710112582,[0,0,0,1,1,1,1,1,1,1]],[1710112583,[0,1,1,1,1,1,1,1,1,2]],[1710112584,[0,0,1,1,1,1,1,1,1,1]],[1710112585,[0,0,0,1,1,1,1,1,1,1]],[1710112586,[0,0,1,1,1,1,1,1,1,2]],[1710112587,[0,0,0,1,1,1,1,1,1,1]],[1710112588,[0,0,0,1,1,1,1,1,1,1]],[1710112589,[0,0,0,0,0,1,1,1,1,1]],[1710112590,[0,0,0,0,1,1,1,1,1,1]],[1710112591,[0,0,0,1,1,1,1,1,1,1]],[1710112592,[0,0,0,1,1,1,1,1,1,1]],[1710112593,[0,0,0,0,0,0,1,1,1,1]],[1710112594,[0,0,1,1,1,1,1,1,1,1]],[1710112595,[0,0,0,1,1,1,1,1,1,1]],[1710112596,[0,0,1,1,1,1,1,1,1,1]],[1710112597,[0,0,0,1,1,1,1,1,1,4]],[1710112598,[0,0,0,0,0,0,0,0,0,0]],[1710112599,[0,0,0,0,0,1,1,1,1,1]],[1710112600,[0,0,1,1,1,1,1,1,1,1]],[1710112601,[0,1,1,1,1,1,1,1,1,1]],[1710112602,[0,1,1,1,1,1,1,1,1,1]],[1710112603,[0,0,0,1,1,1,1,1,1,3]],[1710112604,[0,0,0,0,0,0,0,0,1,1]],[1710112605,[0,0,0,0,0,0,0,1,1,1]],[1710112606,[0,0,1,1,1,1,1,1,1,1]],[1710112607,[0,0,1,1,1,1,1,1,1,2]],[1710112608,[0,0,0,1,1,1,1,1,1,2]],[1710112609,[0,0,0,1,1,1,1,1,1,1]],[1710112610,[0,0,0,1,1,1,1,1,1,2]],[1710112611,[0,1,1,1,1,1,1,1,1,1]],[1710112612,[0,0,0,1,1,1,1,1,1,1]],[1710112613,[0,0,0,0,0,0,0,0,1,1]],[1710112614,[0,0,0,0,0,0,0,0,1,1]],[1710112615,[0,0,0,1,1,1,1,1,1,1]],[1710112616,[0,0,0,1,1,1,1,1,1,1]],[1710112617,[0,0,1,1,1,1,1,1,1,1]],[1710112618,[0,0,1,1,1,1,1,1,1,1]],[1710112619,[0,0,0,1,1,1,1,1,1,1]],[1710112620,[0,0,0,0,0,0,0,1,1,1]],[1710112621,[0,0,1,1,1,1,1,1,1,2]],[1710112622,[0,0,1,1,1,1,1,1,1,1]],[1710112623,[0,0,0,0,0,1,1,1,1,1]],[1710112624,[0,0,0,1,1,1,1,1,1,2]],[1710112625,[0,0,0,1,1,1,1,1,1,2]],[1710112626,[0,0,1,1,1,1,1,1,1,1]],[1710112627,[0,0,1,1,1,1,1,1,1,2]],[1710112628,[0,0,0,1,1,1,1,1,1,1]],[1710112629,[0,0,1,1,1,1,1,1,1,1]],[1710112630,[0,1,1,1,1,1,1,1,1,1]],[1710112631,[0,0,0,1,1,1,1,1,1,1]],[1710112632,[0,0,0,0,0,1,1,1,1,1]],[1710112633,[0,0,0,0,1,1,1,1,1,1]],[1710112634,[0,0,0,0,0,1,1,1,1,1]],[1710112635,[0,0,0,0,0,1,1,1,1,1]],[1710112636,[0,0,0,0,0,1,1,1,1,1]],[1710112637,[0,0,0,0,0,0,1,1,1,1]],[1710112638,[0,0,0,0,0,0,0,1,1,1]],[1710112639,[0,0,0,1,1,1,1,1,1,1]],[1710112640,[0,0,1,1,1,1,1,1,1,1]],[1710112641,[0,0,0,0,1,1,1,1,1,2]],[1710112642,[0,0,0,0,0,0,1,1,1,1]],[1710112643,[0,0,1,1,1,1,1,1,1,1]],[1710112644,[0,0,1,1,1,1,1,1,1,1]],[1710112645,[0,0,0,1,1,1,1,1,1,1]],[1710112646,[0,0,0,1,1,1,1,1,1,1]],[1710112647,[0,0,0,0,0,0,0,1,1,1]],[1710112648,[0,0,0,0,0,0,0,0,1,1]],[1710112649,[0,0,0,0,0,0,0,1,1,1]],[1710112650,[0,0,1,1,1,1,1,1,1,1]],[1710112651,[0,0,0,1,1,1,1,1,1,1]],[1710112652,[0,0,1,1,1,1,1,1,1,1]],[1710112653,[0,0,1,1,1,1,1,1,1,2]],[1710112654,[0,0,0,1,1,1,1,1,1,1]],[1710112655,[0,0,1,1,1,1,1,1,1,1]],[1710112656,[0,0,1,1,1,1,1,1,1,2]],[1710112657,[0,1,1,1,1,1,1,1,1,2]],[1710112658,[0,1,1,1,1,1,1,1,1,4]],[1710112659,[0,0,0,1,1,1,1,1,1,1]],[1710112660,[0,0,0,0,0,1,1,1,1,1]],[1710112661,[0,0,1,1,1,1,1,1,1,1]],[1710112662,[0,0,0,1,1,1,1,1,1,1]],[1710112663,[0,0,0,0,0,0,1,1,1,1]],[1710112664,[0,0,0,0,0,0,0,0,1,1]],[1710112665,[0,0,0,0,1,1,1,1,1,2]],[1710112666,[0,0,0,1,1,1,1,1,1,1]],[1710112667,[0,0,1,1,1,1,1,1,1,1]],[1710112668,[0,0,0,1,1,1,1,1,1,1]],[1710112669,[0,0,0,0,0,0,0,0,0,1]],[1710112670,[0,0,0,0,0,0,0,0,1,1]],[1710112671,[0,0,0,0,0,1,1,1,1,1]],[1710112672,[0,0,1,1,1,1,1,1,1,1]],[1710112673,[0,0,1,1,1,1,1,1,1,1]],[1710112674,[0,0,1,1,1,1,1,1,1,1]],[1710112675,[0,0,0,0,0,0,0,0,0,0]],[1710112676,[0,0,0,0,0,0,0,0,1,1]],[1710112677,[0,0,1,1,1,1,1,1,1,1]],[1710112678,[0,0,1,1,1,1,1,1,1,2]],[1710112679,[0,0,1,1,1,1,1,1,1,1]],[1710112680,[0,0,1,1,1,1,1,1,1,1]],[1710112681,[0,0,0,1,1,1,1,1,1,2]],[1710112682,[0,0,1,1,1,1,1,1,1,1]],[1710112683,[0,0,0,1,1,1,1,1,1,1]],[1710112684,[0,0,0,1,1,1,1,1,1,2]],[1710112685,[0,0,0,1,1,1,1,1,1,1]],[1710112686,[0,0,0,0,0,0,1,1,1,2]],[1710112687,[0,0,0,1,1,1,1,1,1,1]],[1710112688,[0,0,1,1,1,1,1,1,1,1]]]);
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([[1710112444,[25,25,0]],[1710112445,[1,1,0]],[1710112446,[25,25,0]],[1710112447,[1,1,0]],[1710112448,[71,71,0]],[1710112449,[3,3,0]],[1710112450,[6,6,0]],[1710112451,[9,9,0]],[1710112452,[11,11,0]],[1710112453,[13,13,0]],[1710112454,[18,18,0]],[1710112455,[19,19,0]],[1710112456,[24,24,0]],[1710112457,[26,26,0]],[1710112458,[27,27,0]],[1710112459,[32,32,0]],[1710112460,[34,34,0]],[1710112461,[37,37,0]],[1710112462,[39,39,0]],[1710112463,[43,43,0]],[1710112464,[44,44,0]],[1710112465,[48,48,0]],[1710112466,[50,50,0]],[1710112467,[54,54,0]],[1710112468,[56,56,0]],[1710112469,[61,61,0]],[1710112470,[61,61,0]],[1710112471,[65,65,0]],[1710112472,[67,67,0]],[1710112473,[70,70,0]],[1710112474,[73,73,0]],[1710112475,[77,77,0]],[1710112476,[80,80,0]],[1710112477,[81,81,0]],[1710112478,[84,84,0]],[1710112479,[87,87,0]],[1710112480,[91,91,0]],[1710112481,[92,92,0]],[1710112482,[96,96,0]],[1710112483,[98,98,0]],[1710112484,[101,101,0]],[1710112485,[105,105,0]],[1710112486,[107,107,0]],[1710112487,[110,110,0]],[1710112488,[112,112,0]],[1710112489,[116,116,0]],[1710112490,[118,118,0]],[1710112491,[121,121,0]],[1710112492,[123,123,0]],[1710112493,[126,126,0]],[1710112494,[129,129,0]],[1710112495,[133,133,0]],[1710112496,[135,135,0]],[1710112497,[138,138,0]],[1710112498,[142,142,0]],[1710112499,[143,143,0]],[1710112500,[146,146,0]],[1710112501,[149,149,0]],[1710112502,[152,152,0]],[1710112503,[154,154,0]],[1710112504,[158,158,0]],[1710112505,[160,160,0]],[1710112506,[164,164,0]],[1710112507,[165,165,0]],[1710112508,[170,170,0]],[1710112509,[171,171,0]],[1710112510,[174,174,0]],[1710112511,[176,176,0]],[1710112512,[181,181,0]],[1710112513,[183,183,0]],[1710112514,[186,186,0]],[1710112515,[188,188,0]],[1710112516,[192,192,0]],[1710112517,[194,194,0]],[1710112518,[196,196,0]],[1710112519,[199,199,0]],[1710112520,[203,203,0]],[1710112521,[205,205,0]],[1710112522,[207,207,0]],[1710112523,[211,211,0]],[1710112524,[214,214,0]],[1710112525,[217,217,0]],[1710112526,[219,219,0]],[1710112527,[222,222,0]],[1710112528,[226,226,0]],[1710112529,[227,227,0]],[1710112530,[230,230,0]],[1710112531,[233,233,0]],[1710112532,[237,237,0]],[1710112533,[238,238,0]],[1710112534,[243,243,0]],[1710112535,[244,244,0]],[1710112536,[248,248,0]],[1710112537,[250,250,0]],[1710112538,[252,252,0]],[1710112539,[256,256,0]],[1710112540,[259,259,0]],[1710112541,[262,262,0]],[1710112542,[264,264,0]],[1710112543,[266,266,0]],[1710112544,[270,270,0]],[1710112545,[273,273,0]],[1710112546,[275,275,0]],[1710112547,[279,279,0]],[1710112548,[281,281,0]],[1710112549,[285,285,0]],[1710112550,[286,286,0]],[1710112551,[290,290,0]],[1710112552,[291,291,0]],[1710112553,[296,296,0]],[1710112554,[297,297,0]],[1710112555,[301,301,0]],[1710112556,[303,303,0]],[1710112557,[306,306,0]],[1710112558,[309,309,0]],[1710112559,[313,313,0]],[1710112560,[314,314,0]],[1710112561,[318,318,0]],[1710112562,[321,321,0]],[1710112563,[322,322,0]],[1710112564,[327,327,0]],[1710112565,[329,329,0]],[1710112566,[331,331,0]],[1710112567,[334,334,0]],[1710112568,[339,339,0]],[1710112569,[340,340,0]],[1710112570,[340,340,0]],[1710112571,[340,340,0]],[1710112572,[340,340,0]],[1710112573,[340,340,0]],[1710112574,[340,340,0]],[1710112575,[340,340,0]],[1710112576,[340,340,0]],[1710112577,[340,340,0]],[1710112578,[340,340,0]],[1710112579,[340,340,0]],[1710112580,[340,340,0]],[1710112581,[340,340,0]],[1710112582,[340,340,0]],[1710112583,[340,340,0]],[1710112584,[340,340,0]],[1710112585,[340,340,0]],[1710112586,[340,340,0]],[1710112587,[340,340,0]],[1710112588,[340,340,0]],[1710112589,[340,340,0]],[1710112590,[340,340,0]],[1710112591,[340,340,0]],[1710112592,[340,340,0]],[1710112593,[340,340,0]],[1710112594,[340,340,0]],[1710112595,[340,340,0]],[1710112596,[340,340,0]],[1710112597,[340,340,0]],[1710112598,[340,340,0]],[1710112599,[340,340,0]],[1710112600,[340,340,0]],[1710112601,[340,340,0]],[1710112602,[340,340,0]],[1710112603,[340,340,0]],[1710112604,[340,340,0]],[1710112605,[340,340,0]],[1710112606,[340,340,0]],[1710112607,[340,340,0]],[1710112608,[340,340,0]],[1710112609,[340,340,0]],[1710112610,[340,340,0]],[1710112611,[340,340,0]],[1710112612,[340,340,0]],[1710112613,[340,340,0]],[1710112614,[340,340,0]],[1710112615,[340,340,0]],[1710112616,[340,340,0]],[1710112617,[340,340,0]],[1710112618,[340,340,0]],[1710112619,[340,340,0]],[1710112620,[340,340,0]],[1710112621,[340,340,0]],[1710112622,[340,340,0]],[1710112623,[340,340,0]],[1710112624,[340,340,0]],[1710112625,[340,340,0]],[1710112626,[340,340,0]],[1710112627,[340,340,0]],[1710112628,[340,340,0]],[1710112629,[340,340,0]],[1710112630,[340,340,0]],[1710112631,[340,340,0]],[1710112632,[340,340,0]],[1710112633,[340,340,0]],[1710112634,[340,340,0]],[1710112635,[340,340,0]],[1710112636,[340,340,0]],[1710112637,[340,340,0]],[1710112638,[340,340,0]],[1710112639,[340,340,0]],[1710112640,[340,340,0]],[1710112641,[340,340,0]],[1710112642,[340,340,0]],[1710112643,[340,340,0]],[1710112644,[340,340,0]],[1710112645,[340,340,0]],[1710112646,[340,340,0]],[1710112647,[340,340,0]],[1710112648,[340,340,0]],[1710112649,[340,340,0]],[1710112650,[340,340,0]],[1710112651,[340,340,0]],[1710112652,[340,340,0]],[1710112653,[340,340,0]],[1710112654,[340,340,0]],[1710112655,[340,340,0]],[1710112656,[340,340,0]],[1710112657,[340,340,0]],[1710112658,[340,340,0]],[1710112659,[340,340,0]],[1710112660,[340,340,0]],[1710112661,[340,340,0]],[1710112662,[340,340,0]],[1710112663,[340,340,0]],[1710112664,[340,340,0]],[1710112665,[340,340,0]],[1710112666,[340,340,0]],[1710112667,[340,340,0]],[1710112668,[340,340,0]],[1710112669,[340,340,0]],[1710112670,[340,340,0]],[1710112671,[340,340,0]],[1710112672,[340,340,0]],[1710112673,[340,340,0]],[1710112674,[340,340,0]],[1710112675,[340,340,0]],[1710112676,[340,340,0]],[1710112677,[340,340,0]],[1710112678,[340,340,0]],[1710112679,[340,340,0]],[1710112680,[340,340,0]],[1710112681,[340,340,0]],[1710112682,[340,340,0]],[1710112683,[340,340,0]],[1710112684,[340,340,0]],[1710112685,[340,340,0]],[1710112686,[340,340,0]],[1710112687,[340,340,0]],[1710112688,[504,504,0]]]);
var requestsChart = new Highcharts.StockChart({
chart: {
renderTo: 'requests',
zoomType: 'x',
marginBottom: 60
},
credits: { enabled: false },
legend: {
enabled: true,
floating: true,
y: -65,
borderWidth: 0,
itemStyle: { fontWeight: "normal" },
symbolRadius: 0
},
title: { text: 'A title to let highcharts reserve the place for the title set later' },
navigator: {
maskInside: false
},
rangeSelector: {
buttonSpacing: 0,
buttonTheme: {
fill: '#CFC9C6',
padding: 1,
stroke: '#000000',
'stroke-width': 0.25,
style: {
color: '#000000',
fontWeight: 'bold',
},
states: {
stroke: '#000000',
'stroke-width': 0.25,
hover: {
fill: '#92918C',
style: { color: 'black' }
},
select: {
fill: '#FFA900',
style: { color: 'white' }
}
}
},
buttons : [
{
type : 'minute',
count : 1,
text : '1m'
}, {
type : 'minute',
count : 10,
text : '10m'
}, {
type : 'hour',
count : 1,
text : '1h'
}, {
type : 'all',
count : 1,
text : 'All'
}
],
selected : 3,
inputEnabled : false
},
plotOptions: {
series: {
dataGrouping: { enabled: false }
},
area: {
stacking: 'normal'
}
},
xAxis: {
type: 'datetime',
ordinal: false,
maxZoom: 10000 // three days
},
yAxis:[