-
Notifications
You must be signed in to change notification settings - Fork 923
/
Copy pathindex.html
1173 lines (1103 loc) · 91.9 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-11 03:07:32 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 - alfrederson-go">
<span class="simulation-information-label">Description: </span>
<span>Rinha de Backend - 2024/Q1: Crébito - alfrederson-go</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: [
[1710126453000,0],[1710126454000,0],[1710126455000,0],[1710126456000,0],[1710126457000,1],[1710126458000,2],[1710126459000,4],[1710126460000,6],[1710126461000,7],[1710126462000,9],[1710126463000,11],[1710126464000,13],[1710126465000,15],[1710126466000,16],[1710126467000,19],[1710126468000,20],[1710126469000,22],[1710126470000,24],[1710126471000,25],[1710126472000,28],[1710126473000,29],[1710126474000,31],[1710126475000,33],[1710126476000,35],[1710126477000,37],[1710126478000,38],[1710126479000,40],[1710126480000,42],[1710126481000,44],[1710126482000,46],[1710126483000,47],[1710126484000,50],[1710126485000,51],[1710126486000,53],[1710126487000,55],[1710126488000,57],[1710126489000,60],[1710126490000,60],[1710126491000,63],[1710126492000,65],[1710126493000,67],[1710126494000,68],[1710126495000,69],[1710126496000,71],[1710126497000,74],[1710126498000,74],[1710126499000,77],[1710126500000,79],[1710126501000,80],[1710126502000,82],[1710126503000,84],[1710126504000,86],[1710126505000,88],[1710126506000,89],[1710126507000,92],[1710126508000,93],[1710126509000,95],[1710126510000,97],[1710126511000,98],[1710126512000,101],[1710126513000,102],[1710126514000,104],[1710126515000,106],[1710126516000,108],[1710126517000,110],[1710126518000,111],[1710126519000,113],[1710126520000,115],[1710126521000,118],[1710126522000,120],[1710126523000,121],[1710126524000,124],[1710126525000,125],[1710126526000,127],[1710126527000,128],[1710126528000,130],[1710126529000,133],[1710126530000,134],[1710126531000,135],[1710126532000,137],[1710126533000,139],[1710126534000,141],[1710126535000,142],[1710126536000,144],[1710126537000,147],[1710126538000,147],[1710126539000,150],[1710126540000,152],[1710126541000,153],[1710126542000,155],[1710126543000,157],[1710126544000,159],[1710126545000,161],[1710126546000,162],[1710126547000,165],[1710126548000,166],[1710126549000,168],[1710126550000,170],[1710126551000,171],[1710126552000,174],[1710126553000,176],[1710126554000,178],[1710126555000,180],[1710126556000,182],[1710126557000,184],[1710126558000,185],[1710126559000,187],[1710126560000,188],[1710126561000,190],[1710126562000,192],[1710126563000,193],[1710126564000,196],[1710126565000,197],[1710126566000,200],[1710126567000,201],[1710126568000,202],[1710126569000,205],[1710126570000,207],[1710126571000,208],[1710126572000,210],[1710126573000,212],[1710126574000,214],[1710126575000,215],[1710126576000,217],[1710126577000,220],[1710126578000,220],[1710126579000,220],[1710126580000,220],[1710126581000,220],[1710126582000,220],[1710126583000,220],[1710126584000,220],[1710126585000,220],[1710126586000,220],[1710126587000,220],[1710126588000,220],[1710126589000,220],[1710126590000,220],[1710126591000,220],[1710126592000,220],[1710126593000,220],[1710126594000,220],[1710126595000,220],[1710126596000,220],[1710126597000,220],[1710126598000,220],[1710126599000,220],[1710126600000,220],[1710126601000,220],[1710126602000,220],[1710126603000,220],[1710126604000,220],[1710126605000,220],[1710126606000,220],[1710126607000,220],[1710126608000,220],[1710126609000,220],[1710126610000,220],[1710126611000,220],[1710126612000,220],[1710126613000,220],[1710126614000,220],[1710126615000,220],[1710126616000,220],[1710126617000,220],[1710126618000,220],[1710126619000,220],[1710126620000,220],[1710126621000,220],[1710126622000,220],[1710126623000,220],[1710126624000,220],[1710126625000,220],[1710126626000,220],[1710126627000,220],[1710126628000,220],[1710126629000,220],[1710126630000,220],[1710126631000,220],[1710126632000,220],[1710126633000,220],[1710126634000,220],[1710126635000,220],[1710126636000,220],[1710126637000,220],[1710126638000,220],[1710126639000,220],[1710126640000,220],[1710126641000,220],[1710126642000,220],[1710126643000,220],[1710126644000,220],[1710126645000,220],[1710126646000,220],[1710126647000,220],[1710126648000,220],[1710126649000,220],[1710126650000,220],[1710126651000,220],[1710126652000,220],[1710126653000,220],[1710126654000,220],[1710126655000,220],[1710126656000,220],[1710126657000,220],[1710126658000,220],[1710126659000,220],[1710126660000,220],[1710126661000,220],[1710126662000,220],[1710126663000,220],[1710126664000,220],[1710126665000,220],[1710126666000,220],[1710126667000,220],[1710126668000,220],[1710126669000,220],[1710126670000,220],[1710126671000,220],[1710126672000,220],[1710126673000,220],[1710126674000,220],[1710126675000,220],[1710126676000,220],[1710126677000,220],[1710126678000,220],[1710126679000,220],[1710126680000,220],[1710126681000,220],[1710126682000,220],[1710126683000,220],[1710126684000,220],[1710126685000,220],[1710126686000,220],[1710126687000,220],[1710126688000,220],[1710126689000,220],[1710126690000,220],[1710126691000,220],[1710126692000,220],[1710126693000,220],[1710126694000,220],[1710126695000,220],[1710126696000,220],[1710126697000,216]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#68b65c',
name: 'créditos',
data: [
[1710126453000,0],[1710126454000,0],[1710126455000,0],[1710126456000,0],[1710126457000,1],[1710126458000,2],[1710126459000,2],[1710126460000,4],[1710126461000,4],[1710126462000,5],[1710126463000,6],[1710126464000,7],[1710126465000,8],[1710126466000,8],[1710126467000,10],[1710126468000,10],[1710126469000,12],[1710126470000,12],[1710126471000,14],[1710126472000,14],[1710126473000,15],[1710126474000,16],[1710126475000,17],[1710126476000,17],[1710126477000,19],[1710126478000,20],[1710126479000,20],[1710126480000,22],[1710126481000,22],[1710126482000,23],[1710126483000,25],[1710126484000,25],[1710126485000,26],[1710126486000,26],[1710126487000,28],[1710126488000,29],[1710126489000,30],[1710126490000,30],[1710126491000,32],[1710126492000,32],[1710126493000,33],[1710126494000,34],[1710126495000,35],[1710126496000,36],[1710126497000,37],[1710126498000,38],[1710126499000,39],[1710126500000,39],[1710126501000,41],[1710126502000,41],[1710126503000,43],[1710126504000,43],[1710126505000,44],[1710126506000,45],[1710126507000,46],[1710126508000,47],[1710126509000,48],[1710126510000,48],[1710126511000,50],[1710126512000,50],[1710126513000,52],[1710126514000,52],[1710126515000,53],[1710126516000,54],[1710126517000,56],[1710126518000,55],[1710126519000,57],[1710126520000,59],[1710126521000,60],[1710126522000,60],[1710126523000,62],[1710126524000,62],[1710126525000,64],[1710126526000,63],[1710126527000,65],[1710126528000,65],[1710126529000,66],[1710126530000,67],[1710126531000,68],[1710126532000,68],[1710126533000,70],[1710126534000,70],[1710126535000,72],[1710126536000,72],[1710126537000,73],[1710126538000,74],[1710126539000,75],[1710126540000,76],[1710126541000,77],[1710126542000,78],[1710126543000,79],[1710126544000,79],[1710126545000,81],[1710126546000,81],[1710126547000,82],[1710126548000,83],[1710126549000,85],[1710126550000,85],[1710126551000,86],[1710126552000,86],[1710126553000,88],[1710126554000,89],[1710126555000,89],[1710126556000,91],[1710126557000,91],[1710126558000,92],[1710126559000,94],[1710126560000,94],[1710126561000,95],[1710126562000,96],[1710126563000,97],[1710126564000,97],[1710126565000,99],[1710126566000,99],[1710126567000,101],[1710126568000,101],[1710126569000,103],[1710126570000,103],[1710126571000,104],[1710126572000,105],[1710126573000,106],[1710126574000,107],[1710126575000,107],[1710126576000,109],[1710126577000,110],[1710126578000,110],[1710126579000,110],[1710126580000,110],[1710126581000,110],[1710126582000,110],[1710126583000,110],[1710126584000,110],[1710126585000,110],[1710126586000,110],[1710126587000,110],[1710126588000,110],[1710126589000,110],[1710126590000,110],[1710126591000,110],[1710126592000,110],[1710126593000,110],[1710126594000,110],[1710126595000,110],[1710126596000,110],[1710126597000,110],[1710126598000,110],[1710126599000,110],[1710126600000,110],[1710126601000,110],[1710126602000,110],[1710126603000,110],[1710126604000,110],[1710126605000,110],[1710126606000,110],[1710126607000,110],[1710126608000,110],[1710126609000,110],[1710126610000,110],[1710126611000,110],[1710126612000,110],[1710126613000,110],[1710126614000,110],[1710126615000,110],[1710126616000,110],[1710126617000,110],[1710126618000,110],[1710126619000,110],[1710126620000,110],[1710126621000,110],[1710126622000,110],[1710126623000,110],[1710126624000,110],[1710126625000,110],[1710126626000,110],[1710126627000,110],[1710126628000,110],[1710126629000,110],[1710126630000,110],[1710126631000,110],[1710126632000,110],[1710126633000,110],[1710126634000,110],[1710126635000,110],[1710126636000,110],[1710126637000,110],[1710126638000,110],[1710126639000,110],[1710126640000,110],[1710126641000,110],[1710126642000,110],[1710126643000,110],[1710126644000,110],[1710126645000,110],[1710126646000,110],[1710126647000,110],[1710126648000,110],[1710126649000,110],[1710126650000,110],[1710126651000,110],[1710126652000,110],[1710126653000,110],[1710126654000,110],[1710126655000,110],[1710126656000,110],[1710126657000,110],[1710126658000,110],[1710126659000,110],[1710126660000,110],[1710126661000,110],[1710126662000,110],[1710126663000,110],[1710126664000,110],[1710126665000,110],[1710126666000,110],[1710126667000,110],[1710126668000,110],[1710126669000,110],[1710126670000,110],[1710126671000,110],[1710126672000,110],[1710126673000,110],[1710126674000,110],[1710126675000,110],[1710126676000,110],[1710126677000,110],[1710126678000,110],[1710126679000,110],[1710126680000,110],[1710126681000,110],[1710126682000,110],[1710126683000,110],[1710126684000,110],[1710126685000,110],[1710126686000,110],[1710126687000,110],[1710126688000,110],[1710126689000,110],[1710126690000,110],[1710126691000,110],[1710126692000,110],[1710126693000,110],[1710126694000,110],[1710126695000,110],[1710126696000,110],[1710126697000,108]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#f15b4f',
name: 'extratos',
data: [
[1710126453000,0],[1710126454000,0],[1710126455000,0],[1710126456000,0],[1710126457000,1],[1710126458000,1],[1710126459000,1],[1710126460000,1],[1710126461000,1],[1710126462000,1],[1710126463000,2],[1710126464000,1],[1710126465000,2],[1710126466000,2],[1710126467000,1],[1710126468000,2],[1710126469000,2],[1710126470000,2],[1710126471000,2],[1710126472000,2],[1710126473000,2],[1710126474000,2],[1710126475000,3],[1710126476000,2],[1710126477000,3],[1710126478000,2],[1710126479000,3],[1710126480000,2],[1710126481000,3],[1710126482000,3],[1710126483000,3],[1710126484000,3],[1710126485000,3],[1710126486000,3],[1710126487000,3],[1710126488000,4],[1710126489000,3],[1710126490000,3],[1710126491000,4],[1710126492000,3],[1710126493000,4],[1710126494000,4],[1710126495000,4],[1710126496000,4],[1710126497000,4],[1710126498000,4],[1710126499000,4],[1710126500000,4],[1710126501000,4],[1710126502000,4],[1710126503000,5],[1710126504000,4],[1710126505000,5],[1710126506000,5],[1710126507000,4],[1710126508000,5],[1710126509000,5],[1710126510000,5],[1710126511000,5],[1710126512000,5],[1710126513000,5],[1710126514000,5],[1710126515000,6],[1710126516000,5],[1710126517000,6],[1710126518000,5],[1710126519000,6],[1710126520000,5],[1710126521000,6],[1710126522000,6],[1710126523000,6],[1710126524000,6],[1710126525000,6],[1710126526000,6],[1710126527000,6],[1710126528000,7],[1710126529000,6],[1710126530000,6],[1710126531000,7],[1710126532000,6],[1710126533000,7],[1710126534000,7],[1710126535000,7],[1710126536000,7],[1710126537000,7],[1710126538000,7],[1710126539000,7],[1710126540000,7],[1710126541000,7],[1710126542000,7],[1710126543000,8],[1710126544000,7],[1710126545000,8],[1710126546000,8],[1710126547000,7],[1710126548000,8],[1710126549000,8],[1710126550000,8],[1710126551000,8],[1710126552000,8],[1710126553000,8],[1710126554000,8],[1710126555000,9],[1710126556000,8],[1710126557000,9],[1710126558000,8],[1710126559000,9],[1710126560000,8],[1710126561000,9],[1710126562000,9],[1710126563000,9],[1710126564000,9],[1710126565000,9],[1710126566000,9],[1710126567000,9],[1710126568000,10],[1710126569000,9],[1710126570000,9],[1710126571000,10],[1710126572000,9],[1710126573000,10],[1710126574000,10],[1710126575000,10],[1710126576000,10],[1710126577000,10],[1710126578000,10],[1710126579000,10],[1710126580000,10],[1710126581000,10],[1710126582000,10],[1710126583000,10],[1710126584000,10],[1710126585000,10],[1710126586000,10],[1710126587000,10],[1710126588000,10],[1710126589000,10],[1710126590000,10],[1710126591000,10],[1710126592000,10],[1710126593000,10],[1710126594000,10],[1710126595000,10],[1710126596000,10],[1710126597000,10],[1710126598000,10],[1710126599000,10],[1710126600000,10],[1710126601000,10],[1710126602000,10],[1710126603000,10],[1710126604000,10],[1710126605000,10],[1710126606000,10],[1710126607000,10],[1710126608000,10],[1710126609000,10],[1710126610000,10],[1710126611000,10],[1710126612000,10],[1710126613000,10],[1710126614000,10],[1710126615000,10],[1710126616000,10],[1710126617000,10],[1710126618000,10],[1710126619000,10],[1710126620000,10],[1710126621000,10],[1710126622000,10],[1710126623000,10],[1710126624000,10],[1710126625000,10],[1710126626000,10],[1710126627000,10],[1710126628000,10],[1710126629000,10],[1710126630000,10],[1710126631000,10],[1710126632000,10],[1710126633000,10],[1710126634000,10],[1710126635000,10],[1710126636000,10],[1710126637000,10],[1710126638000,10],[1710126639000,10],[1710126640000,10],[1710126641000,10],[1710126642000,10],[1710126643000,10],[1710126644000,10],[1710126645000,10],[1710126646000,10],[1710126647000,10],[1710126648000,10],[1710126649000,10],[1710126650000,10],[1710126651000,10],[1710126652000,10],[1710126653000,10],[1710126654000,10],[1710126655000,10],[1710126656000,10],[1710126657000,10],[1710126658000,10],[1710126659000,10],[1710126660000,10],[1710126661000,10],[1710126662000,10],[1710126663000,10],[1710126664000,10],[1710126665000,10],[1710126666000,10],[1710126667000,10],[1710126668000,10],[1710126669000,10],[1710126670000,10],[1710126671000,10],[1710126672000,10],[1710126673000,10],[1710126674000,10],[1710126675000,10],[1710126676000,10],[1710126677000,10],[1710126678000,10],[1710126679000,10],[1710126680000,10],[1710126681000,10],[1710126682000,10],[1710126683000,10],[1710126684000,10],[1710126685000,10],[1710126686000,10],[1710126687000,10],[1710126688000,10],[1710126689000,10],[1710126690000,10],[1710126691000,10],[1710126692000,10],[1710126693000,10],[1710126694000,10],[1710126695000,10],[1710126696000,10],[1710126697000,9]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FFDD00',
name: 'validações',
data: [
[1710126453000,0],[1710126454000,0],[1710126455000,0],[1710126456000,5],[1710126457000,5],[1710126458000,0],[1710126459000,0],[1710126460000,0],[1710126461000,0],[1710126462000,0],[1710126463000,0],[1710126464000,0],[1710126465000,0],[1710126466000,0],[1710126467000,0],[1710126468000,0],[1710126469000,0],[1710126470000,0],[1710126471000,0],[1710126472000,0],[1710126473000,0],[1710126474000,0],[1710126475000,0],[1710126476000,0],[1710126477000,0],[1710126478000,0],[1710126479000,0],[1710126480000,0],[1710126481000,0],[1710126482000,0],[1710126483000,0],[1710126484000,0],[1710126485000,0],[1710126486000,0],[1710126487000,0],[1710126488000,0],[1710126489000,0],[1710126490000,0],[1710126491000,0],[1710126492000,0],[1710126493000,0],[1710126494000,0],[1710126495000,0],[1710126496000,0],[1710126497000,0],[1710126498000,0],[1710126499000,0],[1710126500000,0],[1710126501000,0],[1710126502000,0],[1710126503000,0],[1710126504000,0],[1710126505000,0],[1710126506000,0],[1710126507000,0],[1710126508000,0],[1710126509000,0],[1710126510000,0],[1710126511000,0],[1710126512000,0],[1710126513000,0],[1710126514000,0],[1710126515000,0],[1710126516000,0],[1710126517000,0],[1710126518000,0],[1710126519000,0],[1710126520000,0],[1710126521000,0],[1710126522000,0],[1710126523000,0],[1710126524000,0],[1710126525000,0],[1710126526000,0],[1710126527000,0],[1710126528000,0],[1710126529000,0],[1710126530000,0],[1710126531000,0],[1710126532000,0],[1710126533000,0],[1710126534000,0],[1710126535000,0],[1710126536000,0],[1710126537000,0],[1710126538000,0],[1710126539000,0],[1710126540000,0],[1710126541000,0],[1710126542000,0],[1710126543000,0],[1710126544000,0],[1710126545000,0],[1710126546000,0],[1710126547000,0],[1710126548000,0],[1710126549000,0],[1710126550000,0],[1710126551000,0],[1710126552000,0],[1710126553000,0],[1710126554000,0],[1710126555000,0],[1710126556000,0],[1710126557000,0],[1710126558000,0],[1710126559000,0],[1710126560000,0],[1710126561000,0],[1710126562000,0],[1710126563000,0],[1710126564000,0],[1710126565000,0],[1710126566000,0],[1710126567000,0],[1710126568000,0],[1710126569000,0],[1710126570000,0],[1710126571000,0],[1710126572000,0],[1710126573000,0],[1710126574000,0],[1710126575000,0],[1710126576000,0],[1710126577000,0],[1710126578000,0],[1710126579000,0],[1710126580000,0],[1710126581000,0],[1710126582000,0],[1710126583000,0],[1710126584000,0],[1710126585000,0],[1710126586000,0],[1710126587000,0],[1710126588000,0],[1710126589000,0],[1710126590000,0],[1710126591000,0],[1710126592000,0],[1710126593000,0],[1710126594000,0],[1710126595000,0],[1710126596000,0],[1710126597000,0],[1710126598000,0],[1710126599000,0],[1710126600000,0],[1710126601000,0],[1710126602000,0],[1710126603000,0],[1710126604000,0],[1710126605000,0],[1710126606000,0],[1710126607000,0],[1710126608000,0],[1710126609000,0],[1710126610000,0],[1710126611000,0],[1710126612000,0],[1710126613000,0],[1710126614000,0],[1710126615000,0],[1710126616000,0],[1710126617000,0],[1710126618000,0],[1710126619000,0],[1710126620000,0],[1710126621000,0],[1710126622000,0],[1710126623000,0],[1710126624000,0],[1710126625000,0],[1710126626000,0],[1710126627000,0],[1710126628000,0],[1710126629000,0],[1710126630000,0],[1710126631000,0],[1710126632000,0],[1710126633000,0],[1710126634000,0],[1710126635000,0],[1710126636000,0],[1710126637000,0],[1710126638000,0],[1710126639000,0],[1710126640000,0],[1710126641000,0],[1710126642000,0],[1710126643000,0],[1710126644000,0],[1710126645000,0],[1710126646000,0],[1710126647000,0],[1710126648000,0],[1710126649000,0],[1710126650000,0],[1710126651000,0],[1710126652000,0],[1710126653000,0],[1710126654000,0],[1710126655000,0],[1710126656000,0],[1710126657000,0],[1710126658000,0],[1710126659000,0],[1710126660000,0],[1710126661000,0],[1710126662000,0],[1710126663000,0],[1710126664000,0],[1710126665000,0],[1710126666000,0],[1710126667000,0],[1710126668000,0],[1710126669000,0],[1710126670000,0],[1710126671000,0],[1710126672000,0],[1710126673000,0],[1710126674000,0],[1710126675000,0],[1710126676000,0],[1710126677000,0],[1710126678000,0],[1710126679000,0],[1710126680000,0],[1710126681000,0],[1710126682000,0],[1710126683000,0],[1710126684000,0],[1710126685000,0],[1710126686000,0],[1710126687000,0],[1710126688000,0],[1710126689000,0],[1710126690000,0],[1710126691000,0],[1710126692000,0],[1710126693000,0],[1710126694000,0],[1710126695000,0],[1710126696000,0],[1710126697000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00D5FF',
name: 'validação HTTP 404',
data: [
[1710126453000,0],[1710126454000,0],[1710126455000,0],[1710126456000,1],[1710126457000,0],[1710126458000,0],[1710126459000,0],[1710126460000,0],[1710126461000,0],[1710126462000,0],[1710126463000,0],[1710126464000,0],[1710126465000,0],[1710126466000,0],[1710126467000,0],[1710126468000,0],[1710126469000,0],[1710126470000,0],[1710126471000,0],[1710126472000,0],[1710126473000,0],[1710126474000,0],[1710126475000,0],[1710126476000,0],[1710126477000,0],[1710126478000,0],[1710126479000,0],[1710126480000,0],[1710126481000,0],[1710126482000,0],[1710126483000,0],[1710126484000,0],[1710126485000,0],[1710126486000,0],[1710126487000,0],[1710126488000,0],[1710126489000,0],[1710126490000,0],[1710126491000,0],[1710126492000,0],[1710126493000,0],[1710126494000,0],[1710126495000,0],[1710126496000,0],[1710126497000,0],[1710126498000,0],[1710126499000,0],[1710126500000,0],[1710126501000,0],[1710126502000,0],[1710126503000,0],[1710126504000,0],[1710126505000,0],[1710126506000,0],[1710126507000,0],[1710126508000,0],[1710126509000,0],[1710126510000,0],[1710126511000,0],[1710126512000,0],[1710126513000,0],[1710126514000,0],[1710126515000,0],[1710126516000,0],[1710126517000,0],[1710126518000,0],[1710126519000,0],[1710126520000,0],[1710126521000,0],[1710126522000,0],[1710126523000,0],[1710126524000,0],[1710126525000,0],[1710126526000,0],[1710126527000,0],[1710126528000,0],[1710126529000,0],[1710126530000,0],[1710126531000,0],[1710126532000,0],[1710126533000,0],[1710126534000,0],[1710126535000,0],[1710126536000,0],[1710126537000,0],[1710126538000,0],[1710126539000,0],[1710126540000,0],[1710126541000,0],[1710126542000,0],[1710126543000,0],[1710126544000,0],[1710126545000,0],[1710126546000,0],[1710126547000,0],[1710126548000,0],[1710126549000,0],[1710126550000,0],[1710126551000,0],[1710126552000,0],[1710126553000,0],[1710126554000,0],[1710126555000,0],[1710126556000,0],[1710126557000,0],[1710126558000,0],[1710126559000,0],[1710126560000,0],[1710126561000,0],[1710126562000,0],[1710126563000,0],[1710126564000,0],[1710126565000,0],[1710126566000,0],[1710126567000,0],[1710126568000,0],[1710126569000,0],[1710126570000,0],[1710126571000,0],[1710126572000,0],[1710126573000,0],[1710126574000,0],[1710126575000,0],[1710126576000,0],[1710126577000,0],[1710126578000,0],[1710126579000,0],[1710126580000,0],[1710126581000,0],[1710126582000,0],[1710126583000,0],[1710126584000,0],[1710126585000,0],[1710126586000,0],[1710126587000,0],[1710126588000,0],[1710126589000,0],[1710126590000,0],[1710126591000,0],[1710126592000,0],[1710126593000,0],[1710126594000,0],[1710126595000,0],[1710126596000,0],[1710126597000,0],[1710126598000,0],[1710126599000,0],[1710126600000,0],[1710126601000,0],[1710126602000,0],[1710126603000,0],[1710126604000,0],[1710126605000,0],[1710126606000,0],[1710126607000,0],[1710126608000,0],[1710126609000,0],[1710126610000,0],[1710126611000,0],[1710126612000,0],[1710126613000,0],[1710126614000,0],[1710126615000,0],[1710126616000,0],[1710126617000,0],[1710126618000,0],[1710126619000,0],[1710126620000,0],[1710126621000,0],[1710126622000,0],[1710126623000,0],[1710126624000,0],[1710126625000,0],[1710126626000,0],[1710126627000,0],[1710126628000,0],[1710126629000,0],[1710126630000,0],[1710126631000,0],[1710126632000,0],[1710126633000,0],[1710126634000,0],[1710126635000,0],[1710126636000,0],[1710126637000,0],[1710126638000,0],[1710126639000,0],[1710126640000,0],[1710126641000,0],[1710126642000,0],[1710126643000,0],[1710126644000,0],[1710126645000,0],[1710126646000,0],[1710126647000,0],[1710126648000,0],[1710126649000,0],[1710126650000,0],[1710126651000,0],[1710126652000,0],[1710126653000,0],[1710126654000,0],[1710126655000,0],[1710126656000,0],[1710126657000,0],[1710126658000,0],[1710126659000,0],[1710126660000,0],[1710126661000,0],[1710126662000,0],[1710126663000,0],[1710126664000,0],[1710126665000,0],[1710126666000,0],[1710126667000,0],[1710126668000,0],[1710126669000,0],[1710126670000,0],[1710126671000,0],[1710126672000,0],[1710126673000,0],[1710126674000,0],[1710126675000,0],[1710126676000,0],[1710126677000,0],[1710126678000,0],[1710126679000,0],[1710126680000,0],[1710126681000,0],[1710126682000,0],[1710126683000,0],[1710126684000,0],[1710126685000,0],[1710126686000,0],[1710126687000,0],[1710126688000,0],[1710126689000,0],[1710126690000,0],[1710126691000,0],[1710126692000,0],[1710126693000,0],[1710126694000,0],[1710126695000,0],[1710126696000,0],[1710126697000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00FF00',
name: 'validação concorrência saldo - 0',
data: [
[1710126453000,0],[1710126454000,0],[1710126455000,1],[1710126456000,0],[1710126457000,0],[1710126458000,0],[1710126459000,0],[1710126460000,0],[1710126461000,0],[1710126462000,0],[1710126463000,0],[1710126464000,0],[1710126465000,0],[1710126466000,0],[1710126467000,0],[1710126468000,0],[1710126469000,0],[1710126470000,0],[1710126471000,0],[1710126472000,0],[1710126473000,0],[1710126474000,0],[1710126475000,0],[1710126476000,0],[1710126477000,0],[1710126478000,0],[1710126479000,0],[1710126480000,0],[1710126481000,0],[1710126482000,0],[1710126483000,0],[1710126484000,0],[1710126485000,0],[1710126486000,0],[1710126487000,0],[1710126488000,0],[1710126489000,0],[1710126490000,0],[1710126491000,0],[1710126492000,0],[1710126493000,0],[1710126494000,0],[1710126495000,0],[1710126496000,0],[1710126497000,0],[1710126498000,0],[1710126499000,0],[1710126500000,0],[1710126501000,0],[1710126502000,0],[1710126503000,0],[1710126504000,0],[1710126505000,0],[1710126506000,0],[1710126507000,0],[1710126508000,0],[1710126509000,0],[1710126510000,0],[1710126511000,0],[1710126512000,0],[1710126513000,0],[1710126514000,0],[1710126515000,0],[1710126516000,0],[1710126517000,0],[1710126518000,0],[1710126519000,0],[1710126520000,0],[1710126521000,0],[1710126522000,0],[1710126523000,0],[1710126524000,0],[1710126525000,0],[1710126526000,0],[1710126527000,0],[1710126528000,0],[1710126529000,0],[1710126530000,0],[1710126531000,0],[1710126532000,0],[1710126533000,0],[1710126534000,0],[1710126535000,0],[1710126536000,0],[1710126537000,0],[1710126538000,0],[1710126539000,0],[1710126540000,0],[1710126541000,0],[1710126542000,0],[1710126543000,0],[1710126544000,0],[1710126545000,0],[1710126546000,0],[1710126547000,0],[1710126548000,0],[1710126549000,0],[1710126550000,0],[1710126551000,0],[1710126552000,0],[1710126553000,0],[1710126554000,0],[1710126555000,0],[1710126556000,0],[1710126557000,0],[1710126558000,0],[1710126559000,0],[1710126560000,0],[1710126561000,0],[1710126562000,0],[1710126563000,0],[1710126564000,0],[1710126565000,0],[1710126566000,0],[1710126567000,0],[1710126568000,0],[1710126569000,0],[1710126570000,0],[1710126571000,0],[1710126572000,0],[1710126573000,0],[1710126574000,0],[1710126575000,0],[1710126576000,0],[1710126577000,0],[1710126578000,0],[1710126579000,0],[1710126580000,0],[1710126581000,0],[1710126582000,0],[1710126583000,0],[1710126584000,0],[1710126585000,0],[1710126586000,0],[1710126587000,0],[1710126588000,0],[1710126589000,0],[1710126590000,0],[1710126591000,0],[1710126592000,0],[1710126593000,0],[1710126594000,0],[1710126595000,0],[1710126596000,0],[1710126597000,0],[1710126598000,0],[1710126599000,0],[1710126600000,0],[1710126601000,0],[1710126602000,0],[1710126603000,0],[1710126604000,0],[1710126605000,0],[1710126606000,0],[1710126607000,0],[1710126608000,0],[1710126609000,0],[1710126610000,0],[1710126611000,0],[1710126612000,0],[1710126613000,0],[1710126614000,0],[1710126615000,0],[1710126616000,0],[1710126617000,0],[1710126618000,0],[1710126619000,0],[1710126620000,0],[1710126621000,0],[1710126622000,0],[1710126623000,0],[1710126624000,0],[1710126625000,0],[1710126626000,0],[1710126627000,0],[1710126628000,0],[1710126629000,0],[1710126630000,0],[1710126631000,0],[1710126632000,0],[1710126633000,0],[1710126634000,0],[1710126635000,0],[1710126636000,0],[1710126637000,0],[1710126638000,0],[1710126639000,0],[1710126640000,0],[1710126641000,0],[1710126642000,0],[1710126643000,0],[1710126644000,0],[1710126645000,0],[1710126646000,0],[1710126647000,0],[1710126648000,0],[1710126649000,0],[1710126650000,0],[1710126651000,0],[1710126652000,0],[1710126653000,0],[1710126654000,0],[1710126655000,0],[1710126656000,0],[1710126657000,0],[1710126658000,0],[1710126659000,0],[1710126660000,0],[1710126661000,0],[1710126662000,0],[1710126663000,0],[1710126664000,0],[1710126665000,0],[1710126666000,0],[1710126667000,0],[1710126668000,0],[1710126669000,0],[1710126670000,0],[1710126671000,0],[1710126672000,0],[1710126673000,0],[1710126674000,0],[1710126675000,0],[1710126676000,0],[1710126677000,0],[1710126678000,0],[1710126679000,0],[1710126680000,0],[1710126681000,0],[1710126682000,0],[1710126683000,0],[1710126684000,0],[1710126685000,0],[1710126686000,0],[1710126687000,0],[1710126688000,0],[1710126689000,0],[1710126690000,0],[1710126691000,0],[1710126692000,0],[1710126693000,0],[1710126694000,0],[1710126695000,0],[1710126696000,0],[1710126697000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#9D00FF',
name: 'validação concorrência transações - c',
data: [
[1710126453000,0],[1710126454000,23],[1710126455000,15],[1710126456000,0],[1710126457000,0],[1710126458000,0],[1710126459000,0],[1710126460000,0],[1710126461000,0],[1710126462000,0],[1710126463000,0],[1710126464000,0],[1710126465000,0],[1710126466000,0],[1710126467000,0],[1710126468000,0],[1710126469000,0],[1710126470000,0],[1710126471000,0],[1710126472000,0],[1710126473000,0],[1710126474000,0],[1710126475000,0],[1710126476000,0],[1710126477000,0],[1710126478000,0],[1710126479000,0],[1710126480000,0],[1710126481000,0],[1710126482000,0],[1710126483000,0],[1710126484000,0],[1710126485000,0],[1710126486000,0],[1710126487000,0],[1710126488000,0],[1710126489000,0],[1710126490000,0],[1710126491000,0],[1710126492000,0],[1710126493000,0],[1710126494000,0],[1710126495000,0],[1710126496000,0],[1710126497000,0],[1710126498000,0],[1710126499000,0],[1710126500000,0],[1710126501000,0],[1710126502000,0],[1710126503000,0],[1710126504000,0],[1710126505000,0],[1710126506000,0],[1710126507000,0],[1710126508000,0],[1710126509000,0],[1710126510000,0],[1710126511000,0],[1710126512000,0],[1710126513000,0],[1710126514000,0],[1710126515000,0],[1710126516000,0],[1710126517000,0],[1710126518000,0],[1710126519000,0],[1710126520000,0],[1710126521000,0],[1710126522000,0],[1710126523000,0],[1710126524000,0],[1710126525000,0],[1710126526000,0],[1710126527000,0],[1710126528000,0],[1710126529000,0],[1710126530000,0],[1710126531000,0],[1710126532000,0],[1710126533000,0],[1710126534000,0],[1710126535000,0],[1710126536000,0],[1710126537000,0],[1710126538000,0],[1710126539000,0],[1710126540000,0],[1710126541000,0],[1710126542000,0],[1710126543000,0],[1710126544000,0],[1710126545000,0],[1710126546000,0],[1710126547000,0],[1710126548000,0],[1710126549000,0],[1710126550000,0],[1710126551000,0],[1710126552000,0],[1710126553000,0],[1710126554000,0],[1710126555000,0],[1710126556000,0],[1710126557000,0],[1710126558000,0],[1710126559000,0],[1710126560000,0],[1710126561000,0],[1710126562000,0],[1710126563000,0],[1710126564000,0],[1710126565000,0],[1710126566000,0],[1710126567000,0],[1710126568000,0],[1710126569000,0],[1710126570000,0],[1710126571000,0],[1710126572000,0],[1710126573000,0],[1710126574000,0],[1710126575000,0],[1710126576000,0],[1710126577000,0],[1710126578000,0],[1710126579000,0],[1710126580000,0],[1710126581000,0],[1710126582000,0],[1710126583000,0],[1710126584000,0],[1710126585000,0],[1710126586000,0],[1710126587000,0],[1710126588000,0],[1710126589000,0],[1710126590000,0],[1710126591000,0],[1710126592000,0],[1710126593000,0],[1710126594000,0],[1710126595000,0],[1710126596000,0],[1710126597000,0],[1710126598000,0],[1710126599000,0],[1710126600000,0],[1710126601000,0],[1710126602000,0],[1710126603000,0],[1710126604000,0],[1710126605000,0],[1710126606000,0],[1710126607000,0],[1710126608000,0],[1710126609000,0],[1710126610000,0],[1710126611000,0],[1710126612000,0],[1710126613000,0],[1710126614000,0],[1710126615000,0],[1710126616000,0],[1710126617000,0],[1710126618000,0],[1710126619000,0],[1710126620000,0],[1710126621000,0],[1710126622000,0],[1710126623000,0],[1710126624000,0],[1710126625000,0],[1710126626000,0],[1710126627000,0],[1710126628000,0],[1710126629000,0],[1710126630000,0],[1710126631000,0],[1710126632000,0],[1710126633000,0],[1710126634000,0],[1710126635000,0],[1710126636000,0],[1710126637000,0],[1710126638000,0],[1710126639000,0],[1710126640000,0],[1710126641000,0],[1710126642000,0],[1710126643000,0],[1710126644000,0],[1710126645000,0],[1710126646000,0],[1710126647000,0],[1710126648000,0],[1710126649000,0],[1710126650000,0],[1710126651000,0],[1710126652000,0],[1710126653000,0],[1710126654000,0],[1710126655000,0],[1710126656000,0],[1710126657000,0],[1710126658000,0],[1710126659000,0],[1710126660000,0],[1710126661000,0],[1710126662000,0],[1710126663000,0],[1710126664000,0],[1710126665000,0],[1710126666000,0],[1710126667000,0],[1710126668000,0],[1710126669000,0],[1710126670000,0],[1710126671000,0],[1710126672000,0],[1710126673000,0],[1710126674000,0],[1710126675000,0],[1710126676000,0],[1710126677000,0],[1710126678000,0],[1710126679000,0],[1710126680000,0],[1710126681000,0],[1710126682000,0],[1710126683000,0],[1710126684000,0],[1710126685000,0],[1710126686000,0],[1710126687000,0],[1710126688000,0],[1710126689000,0],[1710126690000,0],[1710126691000,0],[1710126692000,0],[1710126693000,0],[1710126694000,0],[1710126695000,0],[1710126696000,0],[1710126697000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FF00E1',
name: 'validação concorrência saldo - -25',
data: [
[1710126453000,1],[1710126454000,1],[1710126455000,0],[1710126456000,0],[1710126457000,0],[1710126458000,0],[1710126459000,0],[1710126460000,0],[1710126461000,0],[1710126462000,0],[1710126463000,0],[1710126464000,0],[1710126465000,0],[1710126466000,0],[1710126467000,0],[1710126468000,0],[1710126469000,0],[1710126470000,0],[1710126471000,0],[1710126472000,0],[1710126473000,0],[1710126474000,0],[1710126475000,0],[1710126476000,0],[1710126477000,0],[1710126478000,0],[1710126479000,0],[1710126480000,0],[1710126481000,0],[1710126482000,0],[1710126483000,0],[1710126484000,0],[1710126485000,0],[1710126486000,0],[1710126487000,0],[1710126488000,0],[1710126489000,0],[1710126490000,0],[1710126491000,0],[1710126492000,0],[1710126493000,0],[1710126494000,0],[1710126495000,0],[1710126496000,0],[1710126497000,0],[1710126498000,0],[1710126499000,0],[1710126500000,0],[1710126501000,0],[1710126502000,0],[1710126503000,0],[1710126504000,0],[1710126505000,0],[1710126506000,0],[1710126507000,0],[1710126508000,0],[1710126509000,0],[1710126510000,0],[1710126511000,0],[1710126512000,0],[1710126513000,0],[1710126514000,0],[1710126515000,0],[1710126516000,0],[1710126517000,0],[1710126518000,0],[1710126519000,0],[1710126520000,0],[1710126521000,0],[1710126522000,0],[1710126523000,0],[1710126524000,0],[1710126525000,0],[1710126526000,0],[1710126527000,0],[1710126528000,0],[1710126529000,0],[1710126530000,0],[1710126531000,0],[1710126532000,0],[1710126533000,0],[1710126534000,0],[1710126535000,0],[1710126536000,0],[1710126537000,0],[1710126538000,0],[1710126539000,0],[1710126540000,0],[1710126541000,0],[1710126542000,0],[1710126543000,0],[1710126544000,0],[1710126545000,0],[1710126546000,0],[1710126547000,0],[1710126548000,0],[1710126549000,0],[1710126550000,0],[1710126551000,0],[1710126552000,0],[1710126553000,0],[1710126554000,0],[1710126555000,0],[1710126556000,0],[1710126557000,0],[1710126558000,0],[1710126559000,0],[1710126560000,0],[1710126561000,0],[1710126562000,0],[1710126563000,0],[1710126564000,0],[1710126565000,0],[1710126566000,0],[1710126567000,0],[1710126568000,0],[1710126569000,0],[1710126570000,0],[1710126571000,0],[1710126572000,0],[1710126573000,0],[1710126574000,0],[1710126575000,0],[1710126576000,0],[1710126577000,0],[1710126578000,0],[1710126579000,0],[1710126580000,0],[1710126581000,0],[1710126582000,0],[1710126583000,0],[1710126584000,0],[1710126585000,0],[1710126586000,0],[1710126587000,0],[1710126588000,0],[1710126589000,0],[1710126590000,0],[1710126591000,0],[1710126592000,0],[1710126593000,0],[1710126594000,0],[1710126595000,0],[1710126596000,0],[1710126597000,0],[1710126598000,0],[1710126599000,0],[1710126600000,0],[1710126601000,0],[1710126602000,0],[1710126603000,0],[1710126604000,0],[1710126605000,0],[1710126606000,0],[1710126607000,0],[1710126608000,0],[1710126609000,0],[1710126610000,0],[1710126611000,0],[1710126612000,0],[1710126613000,0],[1710126614000,0],[1710126615000,0],[1710126616000,0],[1710126617000,0],[1710126618000,0],[1710126619000,0],[1710126620000,0],[1710126621000,0],[1710126622000,0],[1710126623000,0],[1710126624000,0],[1710126625000,0],[1710126626000,0],[1710126627000,0],[1710126628000,0],[1710126629000,0],[1710126630000,0],[1710126631000,0],[1710126632000,0],[1710126633000,0],[1710126634000,0],[1710126635000,0],[1710126636000,0],[1710126637000,0],[1710126638000,0],[1710126639000,0],[1710126640000,0],[1710126641000,0],[1710126642000,0],[1710126643000,0],[1710126644000,0],[1710126645000,0],[1710126646000,0],[1710126647000,0],[1710126648000,0],[1710126649000,0],[1710126650000,0],[1710126651000,0],[1710126652000,0],[1710126653000,0],[1710126654000,0],[1710126655000,0],[1710126656000,0],[1710126657000,0],[1710126658000,0],[1710126659000,0],[1710126660000,0],[1710126661000,0],[1710126662000,0],[1710126663000,0],[1710126664000,0],[1710126665000,0],[1710126666000,0],[1710126667000,0],[1710126668000,0],[1710126669000,0],[1710126670000,0],[1710126671000,0],[1710126672000,0],[1710126673000,0],[1710126674000,0],[1710126675000,0],[1710126676000,0],[1710126677000,0],[1710126678000,0],[1710126679000,0],[1710126680000,0],[1710126681000,0],[1710126682000,0],[1710126683000,0],[1710126684000,0],[1710126685000,0],[1710126686000,0],[1710126687000,0],[1710126688000,0],[1710126689000,0],[1710126690000,0],[1710126691000,0],[1710126692000,0],[1710126693000,0],[1710126694000,0],[1710126695000,0],[1710126696000,0],[1710126697000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#AECAEB',
name: 'validação concorrência transações - d',
data: [
[1710126453000,25],[1710126454000,0],[1710126455000,0],[1710126456000,0],[1710126457000,0],[1710126458000,0],[1710126459000,0],[1710126460000,0],[1710126461000,0],[1710126462000,0],[1710126463000,0],[1710126464000,0],[1710126465000,0],[1710126466000,0],[1710126467000,0],[1710126468000,0],[1710126469000,0],[1710126470000,0],[1710126471000,0],[1710126472000,0],[1710126473000,0],[1710126474000,0],[1710126475000,0],[1710126476000,0],[1710126477000,0],[1710126478000,0],[1710126479000,0],[1710126480000,0],[1710126481000,0],[1710126482000,0],[1710126483000,0],[1710126484000,0],[1710126485000,0],[1710126486000,0],[1710126487000,0],[1710126488000,0],[1710126489000,0],[1710126490000,0],[1710126491000,0],[1710126492000,0],[1710126493000,0],[1710126494000,0],[1710126495000,0],[1710126496000,0],[1710126497000,0],[1710126498000,0],[1710126499000,0],[1710126500000,0],[1710126501000,0],[1710126502000,0],[1710126503000,0],[1710126504000,0],[1710126505000,0],[1710126506000,0],[1710126507000,0],[1710126508000,0],[1710126509000,0],[1710126510000,0],[1710126511000,0],[1710126512000,0],[1710126513000,0],[1710126514000,0],[1710126515000,0],[1710126516000,0],[1710126517000,0],[1710126518000,0],[1710126519000,0],[1710126520000,0],[1710126521000,0],[1710126522000,0],[1710126523000,0],[1710126524000,0],[1710126525000,0],[1710126526000,0],[1710126527000,0],[1710126528000,0],[1710126529000,0],[1710126530000,0],[1710126531000,0],[1710126532000,0],[1710126533000,0],[1710126534000,0],[1710126535000,0],[1710126536000,0],[1710126537000,0],[1710126538000,0],[1710126539000,0],[1710126540000,0],[1710126541000,0],[1710126542000,0],[1710126543000,0],[1710126544000,0],[1710126545000,0],[1710126546000,0],[1710126547000,0],[1710126548000,0],[1710126549000,0],[1710126550000,0],[1710126551000,0],[1710126552000,0],[1710126553000,0],[1710126554000,0],[1710126555000,0],[1710126556000,0],[1710126557000,0],[1710126558000,0],[1710126559000,0],[1710126560000,0],[1710126561000,0],[1710126562000,0],[1710126563000,0],[1710126564000,0],[1710126565000,0],[1710126566000,0],[1710126567000,0],[1710126568000,0],[1710126569000,0],[1710126570000,0],[1710126571000,0],[1710126572000,0],[1710126573000,0],[1710126574000,0],[1710126575000,0],[1710126576000,0],[1710126577000,0],[1710126578000,0],[1710126579000,0],[1710126580000,0],[1710126581000,0],[1710126582000,0],[1710126583000,0],[1710126584000,0],[1710126585000,0],[1710126586000,0],[1710126587000,0],[1710126588000,0],[1710126589000,0],[1710126590000,0],[1710126591000,0],[1710126592000,0],[1710126593000,0],[1710126594000,0],[1710126595000,0],[1710126596000,0],[1710126597000,0],[1710126598000,0],[1710126599000,0],[1710126600000,0],[1710126601000,0],[1710126602000,0],[1710126603000,0],[1710126604000,0],[1710126605000,0],[1710126606000,0],[1710126607000,0],[1710126608000,0],[1710126609000,0],[1710126610000,0],[1710126611000,0],[1710126612000,0],[1710126613000,0],[1710126614000,0],[1710126615000,0],[1710126616000,0],[1710126617000,0],[1710126618000,0],[1710126619000,0],[1710126620000,0],[1710126621000,0],[1710126622000,0],[1710126623000,0],[1710126624000,0],[1710126625000,0],[1710126626000,0],[1710126627000,0],[1710126628000,0],[1710126629000,0],[1710126630000,0],[1710126631000,0],[1710126632000,0],[1710126633000,0],[1710126634000,0],[1710126635000,0],[1710126636000,0],[1710126637000,0],[1710126638000,0],[1710126639000,0],[1710126640000,0],[1710126641000,0],[1710126642000,0],[1710126643000,0],[1710126644000,0],[1710126645000,0],[1710126646000,0],[1710126647000,0],[1710126648000,0],[1710126649000,0],[1710126650000,0],[1710126651000,0],[1710126652000,0],[1710126653000,0],[1710126654000,0],[1710126655000,0],[1710126656000,0],[1710126657000,0],[1710126658000,0],[1710126659000,0],[1710126660000,0],[1710126661000,0],[1710126662000,0],[1710126663000,0],[1710126664000,0],[1710126665000,0],[1710126666000,0],[1710126667000,0],[1710126668000,0],[1710126669000,0],[1710126670000,0],[1710126671000,0],[1710126672000,0],[1710126673000,0],[1710126674000,0],[1710126675000,0],[1710126676000,0],[1710126677000,0],[1710126678000,0],[1710126679000,0],[1710126680000,0],[1710126681000,0],[1710126682000,0],[1710126683000,0],[1710126684000,0],[1710126685000,0],[1710126686000,0],[1710126687000,0],[1710126688000,0],[1710126689000,0],[1710126690000,0],[1710126691000,0],[1710126692000,0],[1710126693000,0],[1710126694000,0],[1710126695000,0],[1710126696000,0],[1710126697000,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', '13', '14', '15', '17', '18', '19', '20', '22', '25', '28', '30', '31', '33', '34', '37', '38', '39', '41', '43', '45', '46', '49', '50', '51', '52'],
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: [
0.78,56.56,30.28,10.48,1.57,0.15,0.02,0.0,0.0,0.0,0.0,0.0,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
],
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([[1710126453,[25,33,41,45,46,49,50,50,51,52]],[1710126454,[3,3,3,3,3,3,3,3,3,3]],[1710126455,[8,9,13,18,18,19,19,20,21,22]],[1710126456,[3,3,3,3,3,3,3,3,3,3]],[1710126457,[0,1,3,7,11,12,14,17,20,22]],[1710126458,[3,3,4,4,4,4,4,4,4,5]],[1710126459,[3,3,3,3,3,3,3,3,3,3]],[1710126460,[2,3,3,3,3,3,3,3,3,3]],[1710126461,[2,2,3,3,3,3,3,3,3,3]],[1710126462,[2,2,3,3,3,3,3,3,3,4]],[1710126463,[1,2,3,3,3,3,3,3,3,4]],[1710126464,[1,2,2,3,3,3,3,3,3,3]],[1710126465,[1,2,2,2,2,2,3,3,3,3]],[1710126466,[2,2,2,3,3,3,3,3,3,4]],[1710126467,[1,2,2,2,2,2,3,3,3,3]],[1710126468,[2,2,2,2,2,2,2,2,3,3]],[1710126469,[1,2,2,2,2,2,2,3,3,3]],[1710126470,[1,2,2,2,2,2,2,2,3,3]],[1710126471,[1,2,2,2,2,2,2,3,4,6]],[1710126472,[1,2,2,2,2,2,2,3,3,3]],[1710126473,[1,2,2,2,2,2,2,2,2,2]],[1710126474,[1,2,2,2,2,2,2,2,2,3]],[1710126475,[1,1,2,2,2,2,2,2,3,3]],[1710126476,[1,2,2,2,2,2,2,2,2,2]],[1710126477,[1,1,2,2,2,2,2,2,3,4]],[1710126478,[1,1,2,2,2,2,2,2,3,3]],[1710126479,[1,2,2,2,2,2,2,2,3,3]],[1710126480,[1,1,2,2,2,2,2,2,2,3]],[1710126481,[1,1,2,2,2,2,2,2,2,2]],[1710126482,[1,1,1,2,2,2,2,2,2,3]],[1710126483,[1,1,1,2,2,2,2,2,2,2]],[1710126484,[1,1,1,1,2,2,2,2,2,2]],[1710126485,[1,1,1,2,2,2,2,2,4,6]],[1710126486,[1,1,2,2,2,2,2,2,2,3]],[1710126487,[1,1,1,2,2,2,2,2,2,2]],[1710126488,[1,1,2,2,2,2,2,2,2,2]],[1710126489,[1,1,2,2,2,2,2,2,2,2]],[1710126490,[1,1,2,2,2,2,2,2,2,2]],[1710126491,[1,1,1,2,2,2,2,2,2,2]],[1710126492,[1,1,2,2,2,2,2,2,3,3]],[1710126493,[1,1,1,2,2,2,2,2,2,3]],[1710126494,[1,1,1,2,2,2,2,2,2,2]],[1710126495,[1,1,1,2,2,2,2,2,3,5]],[1710126496,[1,1,1,2,2,2,2,2,2,2]],[1710126497,[1,1,2,2,2,2,2,2,2,3]],[1710126498,[0,1,1,2,2,2,2,2,2,3]],[1710126499,[1,1,1,2,2,2,2,2,2,2]],[1710126500,[1,1,2,2,2,2,2,2,2,2]],[1710126501,[1,1,1,2,2,2,2,2,2,2]],[1710126502,[1,1,1,1,2,2,2,2,2,2]],[1710126503,[1,1,1,2,2,2,2,2,2,5]],[1710126504,[1,1,1,2,2,2,2,2,2,2]],[1710126505,[1,1,1,2,2,2,2,2,2,2]],[1710126506,[1,1,1,1,1,2,2,2,2,2]],[1710126507,[1,1,1,1,2,2,2,2,2,3]],[1710126508,[0,1,1,2,2,2,2,2,2,2]],[1710126509,[1,1,1,1,1,1,1,1,1,2]],[1710126510,[1,1,1,1,1,1,1,2,2,2]],[1710126511,[1,1,1,1,1,1,2,2,3,7]],[1710126512,[1,1,1,1,1,2,2,2,2,2]],[1710126513,[1,1,1,1,2,2,2,2,2,2]],[1710126514,[1,1,1,2,2,2,2,2,2,2]],[1710126515,[1,1,1,2,2,2,2,2,2,2]],[1710126516,[0,1,1,1,1,1,1,2,2,2]],[1710126517,[0,1,1,1,1,1,1,1,2,2]],[1710126518,[1,1,1,1,1,1,2,2,2,2]],[1710126519,[0,1,1,1,1,2,2,2,2,2]],[1710126520,[1,1,1,1,1,1,2,2,2,2]],[1710126521,[0,1,1,1,1,1,1,1,2,2]],[1710126522,[1,1,1,1,2,2,2,2,2,2]],[1710126523,[0,1,1,2,2,2,2,2,2,2]],[1710126524,[1,1,1,1,1,1,2,2,2,2]],[1710126525,[1,1,1,1,1,1,1,2,2,3]],[1710126526,[1,1,1,1,1,1,1,1,2,2]],[1710126527,[0,1,1,2,2,2,2,2,2,2]],[1710126528,[0,1,1,2,2,2,2,2,2,2]],[1710126529,[0,1,1,1,1,1,1,2,2,2]],[1710126530,[1,1,1,1,2,2,2,2,2,4]],[1710126531,[0,1,1,1,1,2,2,2,2,2]],[1710126532,[0,1,1,1,2,2,2,2,2,3]],[1710126533,[0,1,1,1,2,2,2,2,2,3]],[1710126534,[0,1,1,1,1,2,2,2,2,2]],[1710126535,[0,1,1,1,1,1,2,2,2,4]],[1710126536,[1,1,1,1,2,2,2,2,2,2]],[1710126537,[1,1,1,1,1,2,2,2,2,2]],[1710126538,[1,1,1,2,2,2,2,2,2,3]],[1710126539,[0,1,1,2,2,2,2,2,2,2]],[1710126540,[1,1,1,2,2,2,2,2,2,5]],[1710126541,[0,1,1,1,2,2,2,2,2,2]],[1710126542,[0,1,1,1,1,1,1,2,2,2]],[1710126543,[1,1,1,1,1,1,2,2,2,2]],[1710126544,[1,1,1,1,1,2,2,2,2,5]],[1710126545,[0,1,1,2,2,2,2,2,2,2]],[1710126546,[0,1,1,1,2,2,2,2,2,2]],[1710126547,[1,1,1,1,1,1,1,1,2,2]],[1710126548,[1,1,1,1,1,1,1,1,1,2]],[1710126549,[0,1,1,1,1,1,1,2,2,4]],[1710126550,[0,1,1,1,1,1,1,2,2,2]],[1710126551,[1,1,1,1,2,2,2,2,2,2]],[1710126552,[0,1,1,2,2,2,2,2,2,3]],[1710126553,[0,1,1,1,2,2,2,2,2,2]],[1710126554,[1,1,1,1,1,2,2,2,2,2]],[1710126555,[1,1,1,1,2,2,2,2,2,3]],[1710126556,[1,1,1,2,2,2,2,2,2,2]],[1710126557,[0,1,1,1,2,2,2,2,2,2]],[1710126558,[0,1,1,1,2,2,2,2,2,4]],[1710126559,[1,1,1,1,1,1,2,2,2,2]],[1710126560,[1,1,1,1,1,2,2,2,2,3]],[1710126561,[1,1,1,2,2,2,2,2,2,3]],[1710126562,[0,1,1,2,2,2,2,2,2,5]],[1710126563,[1,1,1,1,1,2,2,2,2,2]],[1710126564,[1,1,1,1,1,1,2,2,2,2]],[1710126565,[1,1,1,1,1,1,1,1,2,2]],[1710126566,[0,1,1,1,1,1,1,1,2,4]],[1710126567,[0,1,1,1,1,1,1,1,2,2]],[1710126568,[1,1,1,1,1,1,1,2,2,2]],[1710126569,[0,1,1,1,1,2,2,2,2,3]],[1710126570,[1,2,2,2,3,3,3,3,4,6]],[1710126571,[1,1,1,1,1,2,2,3,4,5]],[1710126572,[1,2,3,3,3,3,3,4,4,4]],[1710126573,[1,1,1,2,2,2,2,3,4,5]],[1710126574,[2,2,2,3,3,3,3,3,4,4]],[1710126575,[1,1,1,1,1,1,2,2,2,5]],[1710126576,[1,2,2,2,2,2,3,3,3,4]],[1710126577,[0,1,1,1,1,2,2,2,2,4]],[1710126578,[1,2,3,3,3,3,3,4,4,5]],[1710126579,[0,1,1,2,2,2,2,3,3,4]],[1710126580,[1,2,3,3,3,3,4,4,4,5]],[1710126581,[0,1,1,2,2,2,3,3,4,4]],[1710126582,[0,2,3,3,3,3,3,4,4,5]],[1710126583,[1,1,2,2,2,3,3,3,4,4]],[1710126584,[1,2,2,3,3,3,3,3,4,5]],[1710126585,[1,1,2,2,2,2,3,3,3,4]],[1710126586,[1,2,2,3,3,3,4,4,4,5]],[1710126587,[1,1,2,2,3,3,3,3,4,6]],[1710126588,[1,2,2,3,3,3,3,3,4,4]],[1710126589,[1,1,2,2,2,3,3,3,3,4]],[1710126590,[1,1,2,2,3,3,3,3,4,5]],[1710126591,[1,1,1,2,2,3,3,3,3,4]],[1710126592,[1,1,2,2,2,2,3,3,4,5]],[1710126593,[0,1,1,2,2,2,3,3,4,4]],[1710126594,[0,1,1,2,2,3,3,3,4,5]],[1710126595,[1,1,2,3,3,3,3,3,4,6]],[1710126596,[1,1,1,2,2,2,3,3,4,5]],[1710126597,[1,1,2,2,3,3,3,3,4,4]],[1710126598,[1,1,1,2,2,2,3,3,4,5]],[1710126599,[0,1,2,3,3,3,3,3,4,4]],[1710126600,[0,1,1,1,1,1,2,2,4,4]],[1710126601,[1,1,2,2,3,3,3,3,3,4]],[1710126602,[1,1,1,1,2,2,2,2,3,5]],[1710126603,[1,1,2,3,3,3,3,3,4,6]],[1710126604,[0,1,1,1,1,1,1,1,2,4]],[1710126605,[0,1,2,2,2,3,3,3,3,4]],[1710126606,[1,1,1,1,1,2,2,2,2,6]],[1710126607,[1,1,2,3,3,3,3,3,4,4]],[1710126608,[1,1,1,2,2,2,2,2,2,3]],[1710126609,[0,1,2,2,3,3,3,4,4,5]],[1710126610,[0,1,1,1,1,1,1,1,2,3]],[1710126611,[0,1,2,3,3,3,3,4,4,5]],[1710126612,[1,1,2,2,2,2,2,2,3,4]],[1710126613,[1,1,2,3,3,3,3,3,4,5]],[1710126614,[1,1,1,1,1,1,2,2,2,4]],[1710126615,[1,1,1,2,2,3,3,3,4,4]],[1710126616,[1,1,1,1,1,2,2,2,2,2]],[1710126617,[1,1,2,2,3,3,3,3,4,5]],[1710126618,[0,1,1,2,2,2,2,2,2,5]],[1710126619,[1,1,1,2,2,3,3,3,4,4]],[1710126620,[1,1,1,2,2,2,2,2,3,4]],[1710126621,[1,1,2,2,2,2,3,3,3,5]],[1710126622,[0,1,1,1,2,2,2,2,3,4]],[1710126623,[0,1,1,2,2,2,3,3,5,5]],[1710126624,[1,1,1,2,2,2,3,3,3,4]],[1710126625,[1,1,2,2,2,2,2,3,4,5]],[1710126626,[1,1,2,2,2,3,3,3,4,4]],[1710126627,[1,1,1,2,2,2,2,2,3,3]],[1710126628,[1,1,2,2,2,3,3,3,4,5]],[1710126629,[0,1,1,2,2,2,2,2,2,3]],[1710126630,[0,1,1,1,2,2,2,3,3,4]],[1710126631,[0,1,1,1,1,1,1,1,2,4]],[1710126632,[1,1,1,2,2,2,2,3,3,4]],[1710126633,[1,2,2,3,3,3,3,3,4,4]],[1710126634,[0,1,1,2,2,2,2,3,3,4]],[1710126635,[1,1,2,2,2,2,3,3,4,4]],[1710126636,[0,1,1,2,2,2,2,2,3,3]],[1710126637,[1,1,2,3,3,3,3,3,4,4]],[1710126638,[1,1,2,2,3,3,3,3,4,4]],[1710126639,[1,1,2,2,2,2,2,3,3,4]],[1710126640,[1,1,2,2,2,2,2,3,3,3]],[1710126641,[1,1,2,3,3,3,3,3,4,4]],[1710126642,[1,1,2,3,3,3,3,4,4,5]],[1710126643,[1,1,1,2,3,3,3,3,4,4]],[1710126644,[0,1,2,3,3,3,3,3,4,5]],[1710126645,[0,1,1,2,3,3,3,4,5,7]],[1710126646,[0,1,2,3,3,3,3,4,4,5]],[1710126647,[0,1,1,1,2,2,2,2,3,3]],[1710126648,[1,2,2,2,2,2,3,3,3,3]],[1710126649,[1,1,1,1,2,2,2,3,3,4]],[1710126650,[1,2,2,3,3,3,3,3,4,4]],[1710126651,[1,1,1,2,2,2,2,2,3,4]],[1710126652,[0,2,2,3,3,3,3,3,4,4]],[1710126653,[0,1,1,1,1,1,1,2,2,4]],[1710126654,[1,2,2,3,3,3,3,4,4,4]],[1710126655,[1,1,1,2,2,2,2,2,3,5]],[1710126656,[1,2,3,3,3,3,3,4,4,5]],[1710126657,[0,1,1,2,2,2,2,2,2,4]],[1710126658,[0,2,2,3,3,3,3,4,4,5]],[1710126659,[0,1,1,1,2,2,2,2,2,2]],[1710126660,[1,1,2,3,3,3,3,4,4,5]],[1710126661,[0,1,1,2,2,2,2,2,3,4]],[1710126662,[1,1,2,3,3,3,3,3,4,6]],[1710126663,[0,1,1,1,1,1,1,2,3,3]],[1710126664,[1,1,2,3,3,3,3,4,4,4]],[1710126665,[1,1,1,2,2,2,2,3,4,4]],[1710126666,[1,1,2,3,3,3,3,3,4,5]],[1710126667,[1,1,1,2,2,2,2,3,3,4]],[1710126668,[1,1,2,2,2,2,3,3,4,5]],[1710126669,[1,1,1,2,2,2,2,3,3,4]],[1710126670,[1,1,1,2,2,2,2,3,3,4]],[1710126671,[1,1,1,2,2,2,2,3,3,4]],[1710126672,[1,1,1,2,2,3,3,3,4,6]],[1710126673,[1,1,2,2,2,3,3,3,4,4]],[1710126674,[1,1,2,2,2,3,3,3,4,5]],[1710126675,[1,1,2,3,3,3,3,3,4,4]],[1710126676,[0,1,1,2,2,2,2,2,3,5]],[1710126677,[0,1,2,2,2,2,3,3,3,3]],[1710126678,[0,1,1,1,2,2,2,2,2,3]],[1710126679,[0,1,1,2,2,2,2,3,3,4]],[1710126680,[0,1,1,1,1,1,1,2,2,3]],[1710126681,[0,1,1,2,2,2,2,3,3,4]],[1710126682,[1,1,1,2,2,2,2,2,2,2]],[1710126683,[1,1,2,2,3,3,3,3,4,5]],[1710126684,[0,1,1,2,2,2,2,2,2,3]],[1710126685,[0,1,2,2,2,2,3,3,4,4]],[1710126686,[0,1,1,2,2,2,2,2,2,2]],[1710126687,[0,1,1,2,2,2,2,3,3,4]],[1710126688,[0,1,1,1,1,2,2,2,2,3]],[1710126689,[1,1,2,2,3,3,3,3,4,4]],[1710126690,[0,1,1,2,2,2,2,2,2,2]],[1710126691,[1,1,1,2,2,2,3,3,4,4]],[1710126692,[1,1,1,2,2,2,2,2,2,3]],[1710126693,[1,1,1,2,2,2,3,3,5,6]],[1710126694,[1,1,1,1,2,2,2,3,4,5]],[1710126695,[1,2,2,3,3,3,3,4,4,4]],[1710126696,[1,1,2,2,3,3,3,3,4,5]],[1710126697,[1,1,2,3,3,3,3,3,4,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([[1710126453,[25,25,0]],[1710126454,[1,1,0]],[1710126455,[25,25,0]],[1710126456,[1,1,0]],[1710126457,[71,71,0]],[1710126458,[3,3,0]],[1710126459,[6,6,0]],[1710126460,[9,9,0]],[1710126461,[11,11,0]],[1710126462,[13,13,0]],[1710126463,[18,18,0]],[1710126464,[19,19,0]],[1710126465,[24,24,0]],[1710126466,[26,26,0]],[1710126467,[27,27,0]],[1710126468,[32,32,0]],[1710126469,[34,34,0]],[1710126470,[37,37,0]],[1710126471,[39,39,0]],[1710126472,[43,43,0]],[1710126473,[44,44,0]],[1710126474,[48,48,0]],[1710126475,[50,50,0]],[1710126476,[55,55,0]],[1710126477,[56,56,0]],[1710126478,[60,60,0]],[1710126479,[61,61,0]],[1710126480,[65,65,0]],[1710126481,[67,67,0]],[1710126482,[70,70,0]],[1710126483,[74,74,0]],[1710126484,[76,76,0]],[1710126485,[80,80,0]],[1710126486,[81,81,0]],[1710126487,[84,84,0]],[1710126488,[87,87,0]],[1710126489,[91,91,0]],[1710126490,[92,92,0]],[1710126491,[96,96,0]],[1710126492,[99,99,0]],[1710126493,[101,101,0]],[1710126494,[105,105,0]],[1710126495,[107,107,0]],[1710126496,[109,109,0]],[1710126497,[114,114,0]],[1710126498,[115,115,0]],[1710126499,[118,118,0]],[1710126500,[121,121,0]],[1710126501,[124,124,0]],[1710126502,[126,126,0]],[1710126503,[129,129,0]],[1710126504,[133,133,0]],[1710126505,[134,134,0]],[1710126506,[138,138,0]],[1710126507,[141,141,0]],[1710126508,[143,143,0]],[1710126509,[146,146,0]],[1710126510,[150,150,0]],[1710126511,[151,151,0]],[1710126512,[155,155,0]],[1710126513,[157,157,0]],[1710126514,[160,160,0]],[1710126515,[164,164,0]],[1710126516,[165,165,0]],[1710126517,[170,170,0]],[1710126518,[172,172,0]],[1710126519,[174,174,0]],[1710126520,[176,176,0]],[1710126521,[181,181,0]],[1710126522,[183,183,0]],[1710126523,[185,185,0]],[1710126524,[189,189,0]],[1710126525,[191,191,0]],[1710126526,[194,194,0]],[1710126527,[197,197,0]],[1710126528,[199,199,0]],[1710126529,[203,203,0]],[1710126530,[205,205,0]],[1710126531,[208,208,0]],[1710126532,[211,211,0]],[1710126533,[213,213,0]],[1710126534,[217,217,0]],[1710126535,[220,220,0]],[1710126536,[222,222,0]],[1710126537,[224,224,0]],[1710126538,[228,228,0]],[1710126539,[230,230,0]],[1710126540,[234,234,0]],[1710126541,[235,235,0]],[1710126542,[239,239,0]],[1710126543,[243,243,0]],[1710126544,[244,244,0]],[1710126545,[248,248,0]],[1710126546,[250,250,0]],[1710126547,[253,253,0]],[1710126548,[255,255,0]],[1710126549,[259,259,0]],[1710126550,[262,262,0]],[1710126551,[265,265,0]],[1710126552,[266,266,0]],[1710126553,[270,270,0]],[1710126554,[272,272,0]],[1710126555,[275,275,0]],[1710126556,[279,279,0]],[1710126557,[281,281,0]],[1710126558,[284,284,0]],[1710126559,[286,286,0]],[1710126560,[291,291,0]],[1710126561,[292,292,0]],[1710126562,[295,295,0]],[1710126563,[298,298,0]],[1710126564,[301,301,0]],[1710126565,[303,303,0]],[1710126566,[306,306,0]],[1710126567,[309,309,0]],[1710126568,[313,313,0]],[1710126569,[314,314,0]],[1710126570,[318,318,0]],[1710126571,[320,320,0]],[1710126572,[323,323,0]],[1710126573,[326,326,0]],[1710126574,[330,330,0]],[1710126575,[331,331,0]],[1710126576,[334,334,0]],[1710126577,[338,338,0]],[1710126578,[340,340,0]],[1710126579,[340,340,0]],[1710126580,[340,340,0]],[1710126581,[340,340,0]],[1710126582,[340,340,0]],[1710126583,[340,340,0]],[1710126584,[340,340,0]],[1710126585,[340,340,0]],[1710126586,[340,340,0]],[1710126587,[340,340,0]],[1710126588,[340,340,0]],[1710126589,[340,340,0]],[1710126590,[340,340,0]],[1710126591,[340,340,0]],[1710126592,[340,340,0]],[1710126593,[340,340,0]],[1710126594,[340,340,0]],[1710126595,[340,340,0]],[1710126596,[340,340,0]],[1710126597,[340,340,0]],[1710126598,[340,340,0]],[1710126599,[340,340,0]],[1710126600,[340,340,0]],[1710126601,[340,340,0]],[1710126602,[340,340,0]],[1710126603,[340,340,0]],[1710126604,[340,340,0]],[1710126605,[340,340,0]],[1710126606,[340,340,0]],[1710126607,[340,340,0]],[1710126608,[340,340,0]],[1710126609,[340,340,0]],[1710126610,[340,340,0]],[1710126611,[340,340,0]],[1710126612,[340,340,0]],[1710126613,[340,340,0]],[1710126614,[340,340,0]],[1710126615,[340,340,0]],[1710126616,[340,340,0]],[1710126617,[340,340,0]],[1710126618,[340,340,0]],[1710126619,[340,340,0]],[1710126620,[340,340,0]],[1710126621,[340,340,0]],[1710126622,[340,340,0]],[1710126623,[340,340,0]],[1710126624,[340,340,0]],[1710126625,[340,340,0]],[1710126626,[340,340,0]],[1710126627,[340,340,0]],[1710126628,[340,340,0]],[1710126629,[340,340,0]],[1710126630,[340,340,0]],[1710126631,[340,340,0]],[1710126632,[340,340,0]],[1710126633,[340,340,0]],[1710126634,[340,340,0]],[1710126635,[340,340,0]],[1710126636,[340,340,0]],[1710126637,[340,340,0]],[1710126638,[340,340,0]],[1710126639,[340,340,0]],[1710126640,[340,340,0]],[1710126641,[340,340,0]],[1710126642,[340,340,0]],[1710126643,[340,340,0]],[1710126644,[340,340,0]],[1710126645,[340,340,0]],[1710126646,[340,340,0]],[1710126647,[340,340,0]],[1710126648,[340,340,0]],[1710126649,[340,340,0]],[1710126650,[340,340,0]],[1710126651,[340,340,0]],[1710126652,[340,340,0]],[1710126653,[340,340,0]],[1710126654,[340,340,0]],[1710126655,[340,340,0]],[1710126656,[340,340,0]],[1710126657,[340,340,0]],[1710126658,[340,340,0]],[1710126659,[340,340,0]],[1710126660,[340,340,0]],[1710126661,[340,340,0]],[1710126662,[340,340,0]],[1710126663,[340,340,0]],[1710126664,[340,340,0]],[1710126665,[340,340,0]],[1710126666,[340,340,0]],[1710126667,[340,340,0]],[1710126668,[340,340,0]],[1710126669,[340,340,0]],[1710126670,[340,340,0]],[1710126671,[340,340,0]],[1710126672,[340,340,0]],[1710126673,[340,340,0]],[1710126674,[340,340,0]],[1710126675,[340,340,0]],[1710126676,[340,340,0]],[1710126677,[340,340,0]],[1710126678,[340,340,0]],[1710126679,[340,340,0]],[1710126680,[340,340,0]],[1710126681,[340,340,0]],[1710126682,[340,340,0]],[1710126683,[340,340,0]],[1710126684,[340,340,0]],[1710126685,[340,340,0]],[1710126686,[340,340,0]],[1710126687,[340,340,0]],[1710126688,[340,340,0]],[1710126689,[340,340,0]],[1710126690,[340,340,0]],[1710126691,[340,340,0]],[1710126692,[340,340,0]],[1710126693,[340,340,0]],[1710126694,[340,340,0]],[1710126695,[340,340,0]],[1710126696,[340,340,0]],[1710126697,[503,503,0]]]);
var requestsChart = new Highcharts.StockChart({
chart: {
renderTo: 'requests',
zoomType: 'x',
marginBottom: 60
},
credits: { enabled: false },
legend: {
enabled: true,
floating: true,
y: -65,
borderWidth: 0,
itemStyle: { fontWeight: "normal" },
symbolRadius: 0
},
title: { text: 'A title to let highcharts reserve the place for the title set later' },
navigator: {
maskInside: false
},
rangeSelector: {
buttonSpacing: 0,
buttonTheme: {
fill: '#CFC9C6',
padding: 1,
stroke: '#000000',
'stroke-width': 0.25,
style: {
color: '#000000',
fontWeight: 'bold',
},
states: {
stroke: '#000000',
'stroke-width': 0.25,
hover: {
fill: '#92918C',
style: { color: 'black' }
},
select: {
fill: '#FFA900',
style: { color: 'white' }
}
}
},
buttons : [
{
type : 'minute',
count : 1,
text : '1m'
}, {
type : 'minute',
count : 10,
text : '10m'
}, {
type : 'hour',
count : 1,
text : '1h'
}, {
type : 'all',
count : 1,
text : 'All'
}
],
selected : 3,
inputEnabled : false
},
plotOptions: {
series: {
dataGrouping: { enabled: false }
},
area: {
stacking: 'normal'
}
},
xAxis: {
type: 'datetime',
ordinal: false,
maxZoom: 10000 // three days
},
yAxis:[