-
Notifications
You must be signed in to change notification settings - Fork 925
/
index.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-01 13:33:01 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 - allissonazevedo-python">
<span class="simulation-information-label">Description: </span>
<span>Rinha de Backend - 2024/Q1: Crébito - allissonazevedo-python</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: [
[1709299981000,0],[1709299982000,0],[1709299983000,0],[1709299984000,0],[1709299985000,1],[1709299986000,1],[1709299987000,4],[1709299988000,6],[1709299989000,7],[1709299990000,9],[1709299991000,11],[1709299992000,13],[1709299993000,15],[1709299994000,16],[1709299995000,19],[1709299996000,20],[1709299997000,22],[1709299998000,24],[1709299999000,25],[1709300000000,28],[1709300001000,29],[1709300002000,31],[1709300003000,33],[1709300004000,35],[1709300005000,37],[1709300006000,38],[1709300007000,40],[1709300008000,42],[1709300009000,44],[1709300010000,46],[1709300011000,47],[1709300012000,50],[1709300013000,52],[1709300014000,54],[1709300015000,56],[1709300016000,56],[1709300017000,59],[1709300018000,60],[1709300019000,62],[1709300020000,64],[1709300021000,66],[1709300022000,68],[1709300023000,69],[1709300024000,71],[1709300025000,74],[1709300026000,74],[1709300027000,77],[1709300028000,79],[1709300029000,80],[1709300030000,82],[1709300031000,84],[1709300032000,86],[1709300033000,88],[1709300034000,89],[1709300035000,92],[1709300036000,93],[1709300037000,95],[1709300038000,97],[1709300039000,98],[1709300040000,102],[1709300041000,103],[1709300042000,105],[1709300043000,106],[1709300044000,108],[1709300045000,110],[1709300046000,111],[1709300047000,113],[1709300048000,115],[1709300049000,117],[1709300050000,119],[1709300051000,120],[1709300052000,123],[1709300053000,124],[1709300054000,126],[1709300055000,128],[1709300056000,129],[1709300057000,132],[1709300058000,133],[1709300059000,135],[1709300060000,137],[1709300061000,139],[1709300062000,141],[1709300063000,142],[1709300064000,144],[1709300065000,147],[1709300066000,147],[1709300067000,151],[1709300068000,153],[1709300069000,153],[1709300070000,156],[1709300071000,158],[1709300072000,159],[1709300073000,162],[1709300074000,162],[1709300075000,165],[1709300076000,166],[1709300077000,168],[1709300078000,170],[1709300079000,171],[1709300080000,174],[1709300081000,175],[1709300082000,177],[1709300083000,179],[1709300084000,181],[1709300085000,183],[1709300086000,184],[1709300087000,186],[1709300088000,188],[1709300089000,190],[1709300090000,192],[1709300091000,193],[1709300092000,196],[1709300093000,197],[1709300094000,200],[1709300095000,201],[1709300096000,203],[1709300097000,206],[1709300098000,207],[1709300099000,208],[1709300100000,211],[1709300101000,213],[1709300102000,215],[1709300103000,216],[1709300104000,217],[1709300105000,221],[1709300106000,221],[1709300107000,221],[1709300108000,221],[1709300109000,221],[1709300110000,221],[1709300111000,220],[1709300112000,221],[1709300113000,221],[1709300114000,221],[1709300115000,220],[1709300116000,221],[1709300117000,220],[1709300118000,221],[1709300119000,220],[1709300120000,221],[1709300121000,220],[1709300122000,221],[1709300123000,221],[1709300124000,221],[1709300125000,220],[1709300126000,221],[1709300127000,220],[1709300128000,221],[1709300129000,220],[1709300130000,221],[1709300131000,220],[1709300132000,221],[1709300133000,220],[1709300134000,221],[1709300135000,221],[1709300136000,221],[1709300137000,220],[1709300138000,220],[1709300139000,220],[1709300140000,220],[1709300141000,221],[1709300142000,221],[1709300143000,221],[1709300144000,220],[1709300145000,221],[1709300146000,221],[1709300147000,221],[1709300148000,220],[1709300149000,221],[1709300150000,220],[1709300151000,221],[1709300152000,220],[1709300153000,221],[1709300154000,221],[1709300155000,221],[1709300156000,221],[1709300157000,221],[1709300158000,221],[1709300159000,220],[1709300160000,221],[1709300161000,221],[1709300162000,221],[1709300163000,221],[1709300164000,220],[1709300165000,221],[1709300166000,221],[1709300167000,221],[1709300168000,220],[1709300169000,221],[1709300170000,221],[1709300171000,221],[1709300172000,221],[1709300173000,221],[1709300174000,221],[1709300175000,221],[1709300176000,221],[1709300177000,221],[1709300178000,220],[1709300179000,221],[1709300180000,220],[1709300181000,221],[1709300182000,221],[1709300183000,221],[1709300184000,220],[1709300185000,221],[1709300186000,221],[1709300187000,220],[1709300188000,220],[1709300189000,221],[1709300190000,220],[1709300191000,221],[1709300192000,220],[1709300193000,221],[1709300194000,221],[1709300195000,220],[1709300196000,221],[1709300197000,221],[1709300198000,221],[1709300199000,220],[1709300200000,221],[1709300201000,221],[1709300202000,221],[1709300203000,221],[1709300204000,221],[1709300205000,221],[1709300206000,221],[1709300207000,220],[1709300208000,221],[1709300209000,220],[1709300210000,220],[1709300211000,221],[1709300212000,220],[1709300213000,221],[1709300214000,221],[1709300215000,220],[1709300216000,221],[1709300217000,221],[1709300218000,221],[1709300219000,220],[1709300220000,220],[1709300221000,221],[1709300222000,221],[1709300223000,220],[1709300224000,221],[1709300225000,216]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#68b65c',
name: 'créditos',
data: [
[1709299981000,0],[1709299982000,0],[1709299983000,0],[1709299984000,0],[1709299985000,1],[1709299986000,1],[1709299987000,2],[1709299988000,4],[1709299989000,4],[1709299990000,5],[1709299991000,6],[1709299992000,7],[1709299993000,8],[1709299994000,8],[1709299995000,10],[1709299996000,10],[1709299997000,12],[1709299998000,12],[1709299999000,14],[1709300000000,14],[1709300001000,15],[1709300002000,16],[1709300003000,17],[1709300004000,17],[1709300005000,19],[1709300006000,20],[1709300007000,20],[1709300008000,22],[1709300009000,22],[1709300010000,23],[1709300011000,25],[1709300012000,25],[1709300013000,26],[1709300014000,26],[1709300015000,28],[1709300016000,29],[1709300017000,30],[1709300018000,30],[1709300019000,32],[1709300020000,32],[1709300021000,33],[1709300022000,34],[1709300023000,35],[1709300024000,36],[1709300025000,37],[1709300026000,38],[1709300027000,39],[1709300028000,39],[1709300029000,41],[1709300030000,41],[1709300031000,43],[1709300032000,43],[1709300033000,44],[1709300034000,45],[1709300035000,46],[1709300036000,47],[1709300037000,48],[1709300038000,48],[1709300039000,50],[1709300040000,51],[1709300041000,53],[1709300042000,53],[1709300043000,54],[1709300044000,54],[1709300045000,56],[1709300046000,55],[1709300047000,57],[1709300048000,58],[1709300049000,59],[1709300050000,59],[1709300051000,61],[1709300052000,61],[1709300053000,63],[1709300054000,63],[1709300055000,64],[1709300056000,65],[1709300057000,66],[1709300058000,67],[1709300059000,68],[1709300060000,68],[1709300061000,70],[1709300062000,70],[1709300063000,72],[1709300064000,72],[1709300065000,73],[1709300066000,74],[1709300067000,75],[1709300068000,76],[1709300069000,77],[1709300070000,78],[1709300071000,79],[1709300072000,79],[1709300073000,81],[1709300074000,81],[1709300075000,82],[1709300076000,83],[1709300077000,85],[1709300078000,85],[1709300079000,86],[1709300080000,86],[1709300081000,88],[1709300082000,89],[1709300083000,89],[1709300084000,91],[1709300085000,91],[1709300086000,92],[1709300087000,94],[1709300088000,94],[1709300089000,95],[1709300090000,96],[1709300091000,97],[1709300092000,97],[1709300093000,99],[1709300094000,99],[1709300095000,102],[1709300096000,102],[1709300097000,104],[1709300098000,103],[1709300099000,105],[1709300100000,106],[1709300101000,107],[1709300102000,108],[1709300103000,108],[1709300104000,110],[1709300105000,111],[1709300106000,111],[1709300107000,111],[1709300108000,111],[1709300109000,110],[1709300110000,111],[1709300111000,110],[1709300112000,111],[1709300113000,111],[1709300114000,111],[1709300115000,110],[1709300116000,111],[1709300117000,110],[1709300118000,111],[1709300119000,111],[1709300120000,111],[1709300121000,110],[1709300122000,111],[1709300123000,111],[1709300124000,111],[1709300125000,110],[1709300126000,111],[1709300127000,110],[1709300128000,111],[1709300129000,110],[1709300130000,111],[1709300131000,110],[1709300132000,111],[1709300133000,110],[1709300134000,110],[1709300135000,111],[1709300136000,111],[1709300137000,110],[1709300138000,111],[1709300139000,110],[1709300140000,111],[1709300141000,111],[1709300142000,111],[1709300143000,110],[1709300144000,110],[1709300145000,111],[1709300146000,110],[1709300147000,111],[1709300148000,111],[1709300149000,110],[1709300150000,110],[1709300151000,111],[1709300152000,110],[1709300153000,111],[1709300154000,111],[1709300155000,111],[1709300156000,110],[1709300157000,111],[1709300158000,110],[1709300159000,110],[1709300160000,111],[1709300161000,111],[1709300162000,110],[1709300163000,111],[1709300164000,111],[1709300165000,111],[1709300166000,111],[1709300167000,111],[1709300168000,110],[1709300169000,111],[1709300170000,110],[1709300171000,111],[1709300172000,110],[1709300173000,111],[1709300174000,110],[1709300175000,111],[1709300176000,111],[1709300177000,111],[1709300178000,111],[1709300179000,111],[1709300180000,110],[1709300181000,111],[1709300182000,111],[1709300183000,111],[1709300184000,111],[1709300185000,111],[1709300186000,111],[1709300187000,110],[1709300188000,110],[1709300189000,111],[1709300190000,110],[1709300191000,111],[1709300192000,110],[1709300193000,111],[1709300194000,111],[1709300195000,111],[1709300196000,111],[1709300197000,111],[1709300198000,111],[1709300199000,110],[1709300200000,111],[1709300201000,111],[1709300202000,111],[1709300203000,111],[1709300204000,111],[1709300205000,111],[1709300206000,111],[1709300207000,111],[1709300208000,111],[1709300209000,110],[1709300210000,111],[1709300211000,110],[1709300212000,110],[1709300213000,111],[1709300214000,111],[1709300215000,110],[1709300216000,111],[1709300217000,110],[1709300218000,111],[1709300219000,110],[1709300220000,111],[1709300221000,111],[1709300222000,110],[1709300223000,110],[1709300224000,111],[1709300225000,107]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#f15b4f',
name: 'extratos',
data: [
[1709299981000,0],[1709299982000,0],[1709299983000,0],[1709299984000,0],[1709299985000,1],[1709299986000,1],[1709299987000,1],[1709299988000,1],[1709299989000,1],[1709299990000,1],[1709299991000,2],[1709299992000,1],[1709299993000,2],[1709299994000,2],[1709299995000,1],[1709299996000,2],[1709299997000,2],[1709299998000,2],[1709299999000,2],[1709300000000,2],[1709300001000,2],[1709300002000,2],[1709300003000,3],[1709300004000,2],[1709300005000,3],[1709300006000,2],[1709300007000,3],[1709300008000,2],[1709300009000,3],[1709300010000,3],[1709300011000,3],[1709300012000,3],[1709300013000,3],[1709300014000,3],[1709300015000,3],[1709300016000,4],[1709300017000,3],[1709300018000,3],[1709300019000,4],[1709300020000,3],[1709300021000,4],[1709300022000,4],[1709300023000,4],[1709300024000,4],[1709300025000,4],[1709300026000,4],[1709300027000,4],[1709300028000,4],[1709300029000,4],[1709300030000,4],[1709300031000,5],[1709300032000,4],[1709300033000,5],[1709300034000,5],[1709300035000,4],[1709300036000,5],[1709300037000,5],[1709300038000,5],[1709300039000,5],[1709300040000,5],[1709300041000,5],[1709300042000,5],[1709300043000,6],[1709300044000,5],[1709300045000,6],[1709300046000,5],[1709300047000,6],[1709300048000,5],[1709300049000,6],[1709300050000,6],[1709300051000,6],[1709300052000,6],[1709300053000,6],[1709300054000,6],[1709300055000,6],[1709300056000,7],[1709300057000,6],[1709300058000,6],[1709300059000,7],[1709300060000,6],[1709300061000,7],[1709300062000,7],[1709300063000,7],[1709300064000,7],[1709300065000,7],[1709300066000,7],[1709300067000,7],[1709300068000,7],[1709300069000,7],[1709300070000,7],[1709300071000,8],[1709300072000,7],[1709300073000,8],[1709300074000,8],[1709300075000,7],[1709300076000,8],[1709300077000,8],[1709300078000,8],[1709300079000,8],[1709300080000,8],[1709300081000,8],[1709300082000,8],[1709300083000,9],[1709300084000,8],[1709300085000,9],[1709300086000,8],[1709300087000,9],[1709300088000,8],[1709300089000,9],[1709300090000,9],[1709300091000,9],[1709300092000,9],[1709300093000,9],[1709300094000,9],[1709300095000,9],[1709300096000,10],[1709300097000,9],[1709300098000,9],[1709300099000,10],[1709300100000,9],[1709300101000,10],[1709300102000,10],[1709300103000,10],[1709300104000,10],[1709300105000,10],[1709300106000,10],[1709300107000,10],[1709300108000,10],[1709300109000,10],[1709300110000,10],[1709300111000,10],[1709300112000,10],[1709300113000,10],[1709300114000,10],[1709300115000,10],[1709300116000,10],[1709300117000,10],[1709300118000,10],[1709300119000,10],[1709300120000,10],[1709300121000,10],[1709300122000,10],[1709300123000,10],[1709300124000,10],[1709300125000,10],[1709300126000,10],[1709300127000,10],[1709300128000,10],[1709300129000,10],[1709300130000,10],[1709300131000,10],[1709300132000,10],[1709300133000,10],[1709300134000,10],[1709300135000,10],[1709300136000,10],[1709300137000,10],[1709300138000,10],[1709300139000,10],[1709300140000,10],[1709300141000,10],[1709300142000,10],[1709300143000,10],[1709300144000,10],[1709300145000,10],[1709300146000,10],[1709300147000,10],[1709300148000,10],[1709300149000,10],[1709300150000,10],[1709300151000,10],[1709300152000,10],[1709300153000,10],[1709300154000,10],[1709300155000,10],[1709300156000,10],[1709300157000,10],[1709300158000,10],[1709300159000,10],[1709300160000,10],[1709300161000,10],[1709300162000,10],[1709300163000,10],[1709300164000,10],[1709300165000,10],[1709300166000,10],[1709300167000,10],[1709300168000,10],[1709300169000,10],[1709300170000,10],[1709300171000,10],[1709300172000,10],[1709300173000,10],[1709300174000,10],[1709300175000,10],[1709300176000,10],[1709300177000,10],[1709300178000,10],[1709300179000,10],[1709300180000,10],[1709300181000,10],[1709300182000,10],[1709300183000,10],[1709300184000,10],[1709300185000,10],[1709300186000,10],[1709300187000,10],[1709300188000,10],[1709300189000,10],[1709300190000,10],[1709300191000,10],[1709300192000,10],[1709300193000,10],[1709300194000,10],[1709300195000,10],[1709300196000,10],[1709300197000,10],[1709300198000,10],[1709300199000,10],[1709300200000,10],[1709300201000,10],[1709300202000,10],[1709300203000,10],[1709300204000,10],[1709300205000,10],[1709300206000,10],[1709300207000,10],[1709300208000,10],[1709300209000,10],[1709300210000,10],[1709300211000,10],[1709300212000,10],[1709300213000,10],[1709300214000,10],[1709300215000,10],[1709300216000,10],[1709300217000,10],[1709300218000,10],[1709300219000,10],[1709300220000,10],[1709300221000,10],[1709300222000,10],[1709300223000,10],[1709300224000,10],[1709300225000,9]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FFDD00',
name: 'validações',
data: [
[1709299981000,0],[1709299982000,0],[1709299983000,0],[1709299984000,5],[1709299985000,5],[1709299986000,0],[1709299987000,0],[1709299988000,0],[1709299989000,0],[1709299990000,0],[1709299991000,0],[1709299992000,0],[1709299993000,0],[1709299994000,0],[1709299995000,0],[1709299996000,0],[1709299997000,0],[1709299998000,0],[1709299999000,0],[1709300000000,0],[1709300001000,0],[1709300002000,0],[1709300003000,0],[1709300004000,0],[1709300005000,0],[1709300006000,0],[1709300007000,0],[1709300008000,0],[1709300009000,0],[1709300010000,0],[1709300011000,0],[1709300012000,0],[1709300013000,0],[1709300014000,0],[1709300015000,0],[1709300016000,0],[1709300017000,0],[1709300018000,0],[1709300019000,0],[1709300020000,0],[1709300021000,0],[1709300022000,0],[1709300023000,0],[1709300024000,0],[1709300025000,0],[1709300026000,0],[1709300027000,0],[1709300028000,0],[1709300029000,0],[1709300030000,0],[1709300031000,0],[1709300032000,0],[1709300033000,0],[1709300034000,0],[1709300035000,0],[1709300036000,0],[1709300037000,0],[1709300038000,0],[1709300039000,0],[1709300040000,0],[1709300041000,0],[1709300042000,0],[1709300043000,0],[1709300044000,0],[1709300045000,0],[1709300046000,0],[1709300047000,0],[1709300048000,0],[1709300049000,0],[1709300050000,0],[1709300051000,0],[1709300052000,0],[1709300053000,0],[1709300054000,0],[1709300055000,0],[1709300056000,0],[1709300057000,0],[1709300058000,0],[1709300059000,0],[1709300060000,0],[1709300061000,0],[1709300062000,0],[1709300063000,0],[1709300064000,0],[1709300065000,0],[1709300066000,0],[1709300067000,0],[1709300068000,0],[1709300069000,0],[1709300070000,0],[1709300071000,0],[1709300072000,0],[1709300073000,0],[1709300074000,0],[1709300075000,0],[1709300076000,0],[1709300077000,0],[1709300078000,0],[1709300079000,0],[1709300080000,0],[1709300081000,0],[1709300082000,0],[1709300083000,0],[1709300084000,0],[1709300085000,0],[1709300086000,0],[1709300087000,0],[1709300088000,0],[1709300089000,0],[1709300090000,0],[1709300091000,0],[1709300092000,0],[1709300093000,0],[1709300094000,0],[1709300095000,0],[1709300096000,0],[1709300097000,0],[1709300098000,0],[1709300099000,0],[1709300100000,0],[1709300101000,0],[1709300102000,0],[1709300103000,0],[1709300104000,0],[1709300105000,0],[1709300106000,0],[1709300107000,0],[1709300108000,0],[1709300109000,0],[1709300110000,0],[1709300111000,0],[1709300112000,0],[1709300113000,0],[1709300114000,0],[1709300115000,0],[1709300116000,0],[1709300117000,0],[1709300118000,0],[1709300119000,0],[1709300120000,0],[1709300121000,0],[1709300122000,0],[1709300123000,0],[1709300124000,0],[1709300125000,0],[1709300126000,0],[1709300127000,0],[1709300128000,0],[1709300129000,0],[1709300130000,0],[1709300131000,0],[1709300132000,0],[1709300133000,0],[1709300134000,0],[1709300135000,0],[1709300136000,0],[1709300137000,0],[1709300138000,0],[1709300139000,0],[1709300140000,0],[1709300141000,0],[1709300142000,0],[1709300143000,0],[1709300144000,0],[1709300145000,0],[1709300146000,0],[1709300147000,0],[1709300148000,0],[1709300149000,0],[1709300150000,0],[1709300151000,0],[1709300152000,0],[1709300153000,0],[1709300154000,0],[1709300155000,0],[1709300156000,0],[1709300157000,0],[1709300158000,0],[1709300159000,0],[1709300160000,0],[1709300161000,0],[1709300162000,0],[1709300163000,0],[1709300164000,0],[1709300165000,0],[1709300166000,0],[1709300167000,0],[1709300168000,0],[1709300169000,0],[1709300170000,0],[1709300171000,0],[1709300172000,0],[1709300173000,0],[1709300174000,0],[1709300175000,0],[1709300176000,0],[1709300177000,0],[1709300178000,0],[1709300179000,0],[1709300180000,0],[1709300181000,0],[1709300182000,0],[1709300183000,0],[1709300184000,0],[1709300185000,0],[1709300186000,0],[1709300187000,0],[1709300188000,0],[1709300189000,0],[1709300190000,0],[1709300191000,0],[1709300192000,0],[1709300193000,0],[1709300194000,0],[1709300195000,0],[1709300196000,0],[1709300197000,0],[1709300198000,0],[1709300199000,0],[1709300200000,0],[1709300201000,0],[1709300202000,0],[1709300203000,0],[1709300204000,0],[1709300205000,0],[1709300206000,0],[1709300207000,0],[1709300208000,0],[1709300209000,0],[1709300210000,0],[1709300211000,0],[1709300212000,0],[1709300213000,0],[1709300214000,0],[1709300215000,0],[1709300216000,0],[1709300217000,0],[1709300218000,0],[1709300219000,0],[1709300220000,0],[1709300221000,0],[1709300222000,0],[1709300223000,0],[1709300224000,0],[1709300225000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00D5FF',
name: 'validação HTTP 404',
data: [
[1709299981000,0],[1709299982000,0],[1709299983000,0],[1709299984000,1],[1709299985000,0],[1709299986000,0],[1709299987000,0],[1709299988000,0],[1709299989000,0],[1709299990000,0],[1709299991000,0],[1709299992000,0],[1709299993000,0],[1709299994000,0],[1709299995000,0],[1709299996000,0],[1709299997000,0],[1709299998000,0],[1709299999000,0],[1709300000000,0],[1709300001000,0],[1709300002000,0],[1709300003000,0],[1709300004000,0],[1709300005000,0],[1709300006000,0],[1709300007000,0],[1709300008000,0],[1709300009000,0],[1709300010000,0],[1709300011000,0],[1709300012000,0],[1709300013000,0],[1709300014000,0],[1709300015000,0],[1709300016000,0],[1709300017000,0],[1709300018000,0],[1709300019000,0],[1709300020000,0],[1709300021000,0],[1709300022000,0],[1709300023000,0],[1709300024000,0],[1709300025000,0],[1709300026000,0],[1709300027000,0],[1709300028000,0],[1709300029000,0],[1709300030000,0],[1709300031000,0],[1709300032000,0],[1709300033000,0],[1709300034000,0],[1709300035000,0],[1709300036000,0],[1709300037000,0],[1709300038000,0],[1709300039000,0],[1709300040000,0],[1709300041000,0],[1709300042000,0],[1709300043000,0],[1709300044000,0],[1709300045000,0],[1709300046000,0],[1709300047000,0],[1709300048000,0],[1709300049000,0],[1709300050000,0],[1709300051000,0],[1709300052000,0],[1709300053000,0],[1709300054000,0],[1709300055000,0],[1709300056000,0],[1709300057000,0],[1709300058000,0],[1709300059000,0],[1709300060000,0],[1709300061000,0],[1709300062000,0],[1709300063000,0],[1709300064000,0],[1709300065000,0],[1709300066000,0],[1709300067000,0],[1709300068000,0],[1709300069000,0],[1709300070000,0],[1709300071000,0],[1709300072000,0],[1709300073000,0],[1709300074000,0],[1709300075000,0],[1709300076000,0],[1709300077000,0],[1709300078000,0],[1709300079000,0],[1709300080000,0],[1709300081000,0],[1709300082000,0],[1709300083000,0],[1709300084000,0],[1709300085000,0],[1709300086000,0],[1709300087000,0],[1709300088000,0],[1709300089000,0],[1709300090000,0],[1709300091000,0],[1709300092000,0],[1709300093000,0],[1709300094000,0],[1709300095000,0],[1709300096000,0],[1709300097000,0],[1709300098000,0],[1709300099000,0],[1709300100000,0],[1709300101000,0],[1709300102000,0],[1709300103000,0],[1709300104000,0],[1709300105000,0],[1709300106000,0],[1709300107000,0],[1709300108000,0],[1709300109000,0],[1709300110000,0],[1709300111000,0],[1709300112000,0],[1709300113000,0],[1709300114000,0],[1709300115000,0],[1709300116000,0],[1709300117000,0],[1709300118000,0],[1709300119000,0],[1709300120000,0],[1709300121000,0],[1709300122000,0],[1709300123000,0],[1709300124000,0],[1709300125000,0],[1709300126000,0],[1709300127000,0],[1709300128000,0],[1709300129000,0],[1709300130000,0],[1709300131000,0],[1709300132000,0],[1709300133000,0],[1709300134000,0],[1709300135000,0],[1709300136000,0],[1709300137000,0],[1709300138000,0],[1709300139000,0],[1709300140000,0],[1709300141000,0],[1709300142000,0],[1709300143000,0],[1709300144000,0],[1709300145000,0],[1709300146000,0],[1709300147000,0],[1709300148000,0],[1709300149000,0],[1709300150000,0],[1709300151000,0],[1709300152000,0],[1709300153000,0],[1709300154000,0],[1709300155000,0],[1709300156000,0],[1709300157000,0],[1709300158000,0],[1709300159000,0],[1709300160000,0],[1709300161000,0],[1709300162000,0],[1709300163000,0],[1709300164000,0],[1709300165000,0],[1709300166000,0],[1709300167000,0],[1709300168000,0],[1709300169000,0],[1709300170000,0],[1709300171000,0],[1709300172000,0],[1709300173000,0],[1709300174000,0],[1709300175000,0],[1709300176000,0],[1709300177000,0],[1709300178000,0],[1709300179000,0],[1709300180000,0],[1709300181000,0],[1709300182000,0],[1709300183000,0],[1709300184000,0],[1709300185000,0],[1709300186000,0],[1709300187000,0],[1709300188000,0],[1709300189000,0],[1709300190000,0],[1709300191000,0],[1709300192000,0],[1709300193000,0],[1709300194000,0],[1709300195000,0],[1709300196000,0],[1709300197000,0],[1709300198000,0],[1709300199000,0],[1709300200000,0],[1709300201000,0],[1709300202000,0],[1709300203000,0],[1709300204000,0],[1709300205000,0],[1709300206000,0],[1709300207000,0],[1709300208000,0],[1709300209000,0],[1709300210000,0],[1709300211000,0],[1709300212000,0],[1709300213000,0],[1709300214000,0],[1709300215000,0],[1709300216000,0],[1709300217000,0],[1709300218000,0],[1709300219000,0],[1709300220000,0],[1709300221000,0],[1709300222000,0],[1709300223000,0],[1709300224000,0],[1709300225000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00FF00',
name: 'validação concorrência saldo - 0',
data: [
[1709299981000,0],[1709299982000,0],[1709299983000,1],[1709299984000,0],[1709299985000,0],[1709299986000,0],[1709299987000,0],[1709299988000,0],[1709299989000,0],[1709299990000,0],[1709299991000,0],[1709299992000,0],[1709299993000,0],[1709299994000,0],[1709299995000,0],[1709299996000,0],[1709299997000,0],[1709299998000,0],[1709299999000,0],[1709300000000,0],[1709300001000,0],[1709300002000,0],[1709300003000,0],[1709300004000,0],[1709300005000,0],[1709300006000,0],[1709300007000,0],[1709300008000,0],[1709300009000,0],[1709300010000,0],[1709300011000,0],[1709300012000,0],[1709300013000,0],[1709300014000,0],[1709300015000,0],[1709300016000,0],[1709300017000,0],[1709300018000,0],[1709300019000,0],[1709300020000,0],[1709300021000,0],[1709300022000,0],[1709300023000,0],[1709300024000,0],[1709300025000,0],[1709300026000,0],[1709300027000,0],[1709300028000,0],[1709300029000,0],[1709300030000,0],[1709300031000,0],[1709300032000,0],[1709300033000,0],[1709300034000,0],[1709300035000,0],[1709300036000,0],[1709300037000,0],[1709300038000,0],[1709300039000,0],[1709300040000,0],[1709300041000,0],[1709300042000,0],[1709300043000,0],[1709300044000,0],[1709300045000,0],[1709300046000,0],[1709300047000,0],[1709300048000,0],[1709300049000,0],[1709300050000,0],[1709300051000,0],[1709300052000,0],[1709300053000,0],[1709300054000,0],[1709300055000,0],[1709300056000,0],[1709300057000,0],[1709300058000,0],[1709300059000,0],[1709300060000,0],[1709300061000,0],[1709300062000,0],[1709300063000,0],[1709300064000,0],[1709300065000,0],[1709300066000,0],[1709300067000,0],[1709300068000,0],[1709300069000,0],[1709300070000,0],[1709300071000,0],[1709300072000,0],[1709300073000,0],[1709300074000,0],[1709300075000,0],[1709300076000,0],[1709300077000,0],[1709300078000,0],[1709300079000,0],[1709300080000,0],[1709300081000,0],[1709300082000,0],[1709300083000,0],[1709300084000,0],[1709300085000,0],[1709300086000,0],[1709300087000,0],[1709300088000,0],[1709300089000,0],[1709300090000,0],[1709300091000,0],[1709300092000,0],[1709300093000,0],[1709300094000,0],[1709300095000,0],[1709300096000,0],[1709300097000,0],[1709300098000,0],[1709300099000,0],[1709300100000,0],[1709300101000,0],[1709300102000,0],[1709300103000,0],[1709300104000,0],[1709300105000,0],[1709300106000,0],[1709300107000,0],[1709300108000,0],[1709300109000,0],[1709300110000,0],[1709300111000,0],[1709300112000,0],[1709300113000,0],[1709300114000,0],[1709300115000,0],[1709300116000,0],[1709300117000,0],[1709300118000,0],[1709300119000,0],[1709300120000,0],[1709300121000,0],[1709300122000,0],[1709300123000,0],[1709300124000,0],[1709300125000,0],[1709300126000,0],[1709300127000,0],[1709300128000,0],[1709300129000,0],[1709300130000,0],[1709300131000,0],[1709300132000,0],[1709300133000,0],[1709300134000,0],[1709300135000,0],[1709300136000,0],[1709300137000,0],[1709300138000,0],[1709300139000,0],[1709300140000,0],[1709300141000,0],[1709300142000,0],[1709300143000,0],[1709300144000,0],[1709300145000,0],[1709300146000,0],[1709300147000,0],[1709300148000,0],[1709300149000,0],[1709300150000,0],[1709300151000,0],[1709300152000,0],[1709300153000,0],[1709300154000,0],[1709300155000,0],[1709300156000,0],[1709300157000,0],[1709300158000,0],[1709300159000,0],[1709300160000,0],[1709300161000,0],[1709300162000,0],[1709300163000,0],[1709300164000,0],[1709300165000,0],[1709300166000,0],[1709300167000,0],[1709300168000,0],[1709300169000,0],[1709300170000,0],[1709300171000,0],[1709300172000,0],[1709300173000,0],[1709300174000,0],[1709300175000,0],[1709300176000,0],[1709300177000,0],[1709300178000,0],[1709300179000,0],[1709300180000,0],[1709300181000,0],[1709300182000,0],[1709300183000,0],[1709300184000,0],[1709300185000,0],[1709300186000,0],[1709300187000,0],[1709300188000,0],[1709300189000,0],[1709300190000,0],[1709300191000,0],[1709300192000,0],[1709300193000,0],[1709300194000,0],[1709300195000,0],[1709300196000,0],[1709300197000,0],[1709300198000,0],[1709300199000,0],[1709300200000,0],[1709300201000,0],[1709300202000,0],[1709300203000,0],[1709300204000,0],[1709300205000,0],[1709300206000,0],[1709300207000,0],[1709300208000,0],[1709300209000,0],[1709300210000,0],[1709300211000,0],[1709300212000,0],[1709300213000,0],[1709300214000,0],[1709300215000,0],[1709300216000,0],[1709300217000,0],[1709300218000,0],[1709300219000,0],[1709300220000,0],[1709300221000,0],[1709300222000,0],[1709300223000,0],[1709300224000,0],[1709300225000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#9D00FF',
name: 'validação concorrência transações - c',
data: [
[1709299981000,0],[1709299982000,24],[1709299983000,9],[1709299984000,0],[1709299985000,0],[1709299986000,0],[1709299987000,0],[1709299988000,0],[1709299989000,0],[1709299990000,0],[1709299991000,0],[1709299992000,0],[1709299993000,0],[1709299994000,0],[1709299995000,0],[1709299996000,0],[1709299997000,0],[1709299998000,0],[1709299999000,0],[1709300000000,0],[1709300001000,0],[1709300002000,0],[1709300003000,0],[1709300004000,0],[1709300005000,0],[1709300006000,0],[1709300007000,0],[1709300008000,0],[1709300009000,0],[1709300010000,0],[1709300011000,0],[1709300012000,0],[1709300013000,0],[1709300014000,0],[1709300015000,0],[1709300016000,0],[1709300017000,0],[1709300018000,0],[1709300019000,0],[1709300020000,0],[1709300021000,0],[1709300022000,0],[1709300023000,0],[1709300024000,0],[1709300025000,0],[1709300026000,0],[1709300027000,0],[1709300028000,0],[1709300029000,0],[1709300030000,0],[1709300031000,0],[1709300032000,0],[1709300033000,0],[1709300034000,0],[1709300035000,0],[1709300036000,0],[1709300037000,0],[1709300038000,0],[1709300039000,0],[1709300040000,0],[1709300041000,0],[1709300042000,0],[1709300043000,0],[1709300044000,0],[1709300045000,0],[1709300046000,0],[1709300047000,0],[1709300048000,0],[1709300049000,0],[1709300050000,0],[1709300051000,0],[1709300052000,0],[1709300053000,0],[1709300054000,0],[1709300055000,0],[1709300056000,0],[1709300057000,0],[1709300058000,0],[1709300059000,0],[1709300060000,0],[1709300061000,0],[1709300062000,0],[1709300063000,0],[1709300064000,0],[1709300065000,0],[1709300066000,0],[1709300067000,0],[1709300068000,0],[1709300069000,0],[1709300070000,0],[1709300071000,0],[1709300072000,0],[1709300073000,0],[1709300074000,0],[1709300075000,0],[1709300076000,0],[1709300077000,0],[1709300078000,0],[1709300079000,0],[1709300080000,0],[1709300081000,0],[1709300082000,0],[1709300083000,0],[1709300084000,0],[1709300085000,0],[1709300086000,0],[1709300087000,0],[1709300088000,0],[1709300089000,0],[1709300090000,0],[1709300091000,0],[1709300092000,0],[1709300093000,0],[1709300094000,0],[1709300095000,0],[1709300096000,0],[1709300097000,0],[1709300098000,0],[1709300099000,0],[1709300100000,0],[1709300101000,0],[1709300102000,0],[1709300103000,0],[1709300104000,0],[1709300105000,0],[1709300106000,0],[1709300107000,0],[1709300108000,0],[1709300109000,0],[1709300110000,0],[1709300111000,0],[1709300112000,0],[1709300113000,0],[1709300114000,0],[1709300115000,0],[1709300116000,0],[1709300117000,0],[1709300118000,0],[1709300119000,0],[1709300120000,0],[1709300121000,0],[1709300122000,0],[1709300123000,0],[1709300124000,0],[1709300125000,0],[1709300126000,0],[1709300127000,0],[1709300128000,0],[1709300129000,0],[1709300130000,0],[1709300131000,0],[1709300132000,0],[1709300133000,0],[1709300134000,0],[1709300135000,0],[1709300136000,0],[1709300137000,0],[1709300138000,0],[1709300139000,0],[1709300140000,0],[1709300141000,0],[1709300142000,0],[1709300143000,0],[1709300144000,0],[1709300145000,0],[1709300146000,0],[1709300147000,0],[1709300148000,0],[1709300149000,0],[1709300150000,0],[1709300151000,0],[1709300152000,0],[1709300153000,0],[1709300154000,0],[1709300155000,0],[1709300156000,0],[1709300157000,0],[1709300158000,0],[1709300159000,0],[1709300160000,0],[1709300161000,0],[1709300162000,0],[1709300163000,0],[1709300164000,0],[1709300165000,0],[1709300166000,0],[1709300167000,0],[1709300168000,0],[1709300169000,0],[1709300170000,0],[1709300171000,0],[1709300172000,0],[1709300173000,0],[1709300174000,0],[1709300175000,0],[1709300176000,0],[1709300177000,0],[1709300178000,0],[1709300179000,0],[1709300180000,0],[1709300181000,0],[1709300182000,0],[1709300183000,0],[1709300184000,0],[1709300185000,0],[1709300186000,0],[1709300187000,0],[1709300188000,0],[1709300189000,0],[1709300190000,0],[1709300191000,0],[1709300192000,0],[1709300193000,0],[1709300194000,0],[1709300195000,0],[1709300196000,0],[1709300197000,0],[1709300198000,0],[1709300199000,0],[1709300200000,0],[1709300201000,0],[1709300202000,0],[1709300203000,0],[1709300204000,0],[1709300205000,0],[1709300206000,0],[1709300207000,0],[1709300208000,0],[1709300209000,0],[1709300210000,0],[1709300211000,0],[1709300212000,0],[1709300213000,0],[1709300214000,0],[1709300215000,0],[1709300216000,0],[1709300217000,0],[1709300218000,0],[1709300219000,0],[1709300220000,0],[1709300221000,0],[1709300222000,0],[1709300223000,0],[1709300224000,0],[1709300225000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FF00E1',
name: 'validação concorrência saldo - -25',
data: [
[1709299981000,1],[1709299982000,1],[1709299983000,0],[1709299984000,0],[1709299985000,0],[1709299986000,0],[1709299987000,0],[1709299988000,0],[1709299989000,0],[1709299990000,0],[1709299991000,0],[1709299992000,0],[1709299993000,0],[1709299994000,0],[1709299995000,0],[1709299996000,0],[1709299997000,0],[1709299998000,0],[1709299999000,0],[1709300000000,0],[1709300001000,0],[1709300002000,0],[1709300003000,0],[1709300004000,0],[1709300005000,0],[1709300006000,0],[1709300007000,0],[1709300008000,0],[1709300009000,0],[1709300010000,0],[1709300011000,0],[1709300012000,0],[1709300013000,0],[1709300014000,0],[1709300015000,0],[1709300016000,0],[1709300017000,0],[1709300018000,0],[1709300019000,0],[1709300020000,0],[1709300021000,0],[1709300022000,0],[1709300023000,0],[1709300024000,0],[1709300025000,0],[1709300026000,0],[1709300027000,0],[1709300028000,0],[1709300029000,0],[1709300030000,0],[1709300031000,0],[1709300032000,0],[1709300033000,0],[1709300034000,0],[1709300035000,0],[1709300036000,0],[1709300037000,0],[1709300038000,0],[1709300039000,0],[1709300040000,0],[1709300041000,0],[1709300042000,0],[1709300043000,0],[1709300044000,0],[1709300045000,0],[1709300046000,0],[1709300047000,0],[1709300048000,0],[1709300049000,0],[1709300050000,0],[1709300051000,0],[1709300052000,0],[1709300053000,0],[1709300054000,0],[1709300055000,0],[1709300056000,0],[1709300057000,0],[1709300058000,0],[1709300059000,0],[1709300060000,0],[1709300061000,0],[1709300062000,0],[1709300063000,0],[1709300064000,0],[1709300065000,0],[1709300066000,0],[1709300067000,0],[1709300068000,0],[1709300069000,0],[1709300070000,0],[1709300071000,0],[1709300072000,0],[1709300073000,0],[1709300074000,0],[1709300075000,0],[1709300076000,0],[1709300077000,0],[1709300078000,0],[1709300079000,0],[1709300080000,0],[1709300081000,0],[1709300082000,0],[1709300083000,0],[1709300084000,0],[1709300085000,0],[1709300086000,0],[1709300087000,0],[1709300088000,0],[1709300089000,0],[1709300090000,0],[1709300091000,0],[1709300092000,0],[1709300093000,0],[1709300094000,0],[1709300095000,0],[1709300096000,0],[1709300097000,0],[1709300098000,0],[1709300099000,0],[1709300100000,0],[1709300101000,0],[1709300102000,0],[1709300103000,0],[1709300104000,0],[1709300105000,0],[1709300106000,0],[1709300107000,0],[1709300108000,0],[1709300109000,0],[1709300110000,0],[1709300111000,0],[1709300112000,0],[1709300113000,0],[1709300114000,0],[1709300115000,0],[1709300116000,0],[1709300117000,0],[1709300118000,0],[1709300119000,0],[1709300120000,0],[1709300121000,0],[1709300122000,0],[1709300123000,0],[1709300124000,0],[1709300125000,0],[1709300126000,0],[1709300127000,0],[1709300128000,0],[1709300129000,0],[1709300130000,0],[1709300131000,0],[1709300132000,0],[1709300133000,0],[1709300134000,0],[1709300135000,0],[1709300136000,0],[1709300137000,0],[1709300138000,0],[1709300139000,0],[1709300140000,0],[1709300141000,0],[1709300142000,0],[1709300143000,0],[1709300144000,0],[1709300145000,0],[1709300146000,0],[1709300147000,0],[1709300148000,0],[1709300149000,0],[1709300150000,0],[1709300151000,0],[1709300152000,0],[1709300153000,0],[1709300154000,0],[1709300155000,0],[1709300156000,0],[1709300157000,0],[1709300158000,0],[1709300159000,0],[1709300160000,0],[1709300161000,0],[1709300162000,0],[1709300163000,0],[1709300164000,0],[1709300165000,0],[1709300166000,0],[1709300167000,0],[1709300168000,0],[1709300169000,0],[1709300170000,0],[1709300171000,0],[1709300172000,0],[1709300173000,0],[1709300174000,0],[1709300175000,0],[1709300176000,0],[1709300177000,0],[1709300178000,0],[1709300179000,0],[1709300180000,0],[1709300181000,0],[1709300182000,0],[1709300183000,0],[1709300184000,0],[1709300185000,0],[1709300186000,0],[1709300187000,0],[1709300188000,0],[1709300189000,0],[1709300190000,0],[1709300191000,0],[1709300192000,0],[1709300193000,0],[1709300194000,0],[1709300195000,0],[1709300196000,0],[1709300197000,0],[1709300198000,0],[1709300199000,0],[1709300200000,0],[1709300201000,0],[1709300202000,0],[1709300203000,0],[1709300204000,0],[1709300205000,0],[1709300206000,0],[1709300207000,0],[1709300208000,0],[1709300209000,0],[1709300210000,0],[1709300211000,0],[1709300212000,0],[1709300213000,0],[1709300214000,0],[1709300215000,0],[1709300216000,0],[1709300217000,0],[1709300218000,0],[1709300219000,0],[1709300220000,0],[1709300221000,0],[1709300222000,0],[1709300223000,0],[1709300224000,0],[1709300225000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#AECAEB',
name: 'validação concorrência transações - d',
data: [
[1709299981000,25],[1709299982000,0],[1709299983000,0],[1709299984000,0],[1709299985000,0],[1709299986000,0],[1709299987000,0],[1709299988000,0],[1709299989000,0],[1709299990000,0],[1709299991000,0],[1709299992000,0],[1709299993000,0],[1709299994000,0],[1709299995000,0],[1709299996000,0],[1709299997000,0],[1709299998000,0],[1709299999000,0],[1709300000000,0],[1709300001000,0],[1709300002000,0],[1709300003000,0],[1709300004000,0],[1709300005000,0],[1709300006000,0],[1709300007000,0],[1709300008000,0],[1709300009000,0],[1709300010000,0],[1709300011000,0],[1709300012000,0],[1709300013000,0],[1709300014000,0],[1709300015000,0],[1709300016000,0],[1709300017000,0],[1709300018000,0],[1709300019000,0],[1709300020000,0],[1709300021000,0],[1709300022000,0],[1709300023000,0],[1709300024000,0],[1709300025000,0],[1709300026000,0],[1709300027000,0],[1709300028000,0],[1709300029000,0],[1709300030000,0],[1709300031000,0],[1709300032000,0],[1709300033000,0],[1709300034000,0],[1709300035000,0],[1709300036000,0],[1709300037000,0],[1709300038000,0],[1709300039000,0],[1709300040000,0],[1709300041000,0],[1709300042000,0],[1709300043000,0],[1709300044000,0],[1709300045000,0],[1709300046000,0],[1709300047000,0],[1709300048000,0],[1709300049000,0],[1709300050000,0],[1709300051000,0],[1709300052000,0],[1709300053000,0],[1709300054000,0],[1709300055000,0],[1709300056000,0],[1709300057000,0],[1709300058000,0],[1709300059000,0],[1709300060000,0],[1709300061000,0],[1709300062000,0],[1709300063000,0],[1709300064000,0],[1709300065000,0],[1709300066000,0],[1709300067000,0],[1709300068000,0],[1709300069000,0],[1709300070000,0],[1709300071000,0],[1709300072000,0],[1709300073000,0],[1709300074000,0],[1709300075000,0],[1709300076000,0],[1709300077000,0],[1709300078000,0],[1709300079000,0],[1709300080000,0],[1709300081000,0],[1709300082000,0],[1709300083000,0],[1709300084000,0],[1709300085000,0],[1709300086000,0],[1709300087000,0],[1709300088000,0],[1709300089000,0],[1709300090000,0],[1709300091000,0],[1709300092000,0],[1709300093000,0],[1709300094000,0],[1709300095000,0],[1709300096000,0],[1709300097000,0],[1709300098000,0],[1709300099000,0],[1709300100000,0],[1709300101000,0],[1709300102000,0],[1709300103000,0],[1709300104000,0],[1709300105000,0],[1709300106000,0],[1709300107000,0],[1709300108000,0],[1709300109000,0],[1709300110000,0],[1709300111000,0],[1709300112000,0],[1709300113000,0],[1709300114000,0],[1709300115000,0],[1709300116000,0],[1709300117000,0],[1709300118000,0],[1709300119000,0],[1709300120000,0],[1709300121000,0],[1709300122000,0],[1709300123000,0],[1709300124000,0],[1709300125000,0],[1709300126000,0],[1709300127000,0],[1709300128000,0],[1709300129000,0],[1709300130000,0],[1709300131000,0],[1709300132000,0],[1709300133000,0],[1709300134000,0],[1709300135000,0],[1709300136000,0],[1709300137000,0],[1709300138000,0],[1709300139000,0],[1709300140000,0],[1709300141000,0],[1709300142000,0],[1709300143000,0],[1709300144000,0],[1709300145000,0],[1709300146000,0],[1709300147000,0],[1709300148000,0],[1709300149000,0],[1709300150000,0],[1709300151000,0],[1709300152000,0],[1709300153000,0],[1709300154000,0],[1709300155000,0],[1709300156000,0],[1709300157000,0],[1709300158000,0],[1709300159000,0],[1709300160000,0],[1709300161000,0],[1709300162000,0],[1709300163000,0],[1709300164000,0],[1709300165000,0],[1709300166000,0],[1709300167000,0],[1709300168000,0],[1709300169000,0],[1709300170000,0],[1709300171000,0],[1709300172000,0],[1709300173000,0],[1709300174000,0],[1709300175000,0],[1709300176000,0],[1709300177000,0],[1709300178000,0],[1709300179000,0],[1709300180000,0],[1709300181000,0],[1709300182000,0],[1709300183000,0],[1709300184000,0],[1709300185000,0],[1709300186000,0],[1709300187000,0],[1709300188000,0],[1709300189000,0],[1709300190000,0],[1709300191000,0],[1709300192000,0],[1709300193000,0],[1709300194000,0],[1709300195000,0],[1709300196000,0],[1709300197000,0],[1709300198000,0],[1709300199000,0],[1709300200000,0],[1709300201000,0],[1709300202000,0],[1709300203000,0],[1709300204000,0],[1709300205000,0],[1709300206000,0],[1709300207000,0],[1709300208000,0],[1709300209000,0],[1709300210000,0],[1709300211000,0],[1709300212000,0],[1709300213000,0],[1709300214000,0],[1709300215000,0],[1709300216000,0],[1709300217000,0],[1709300218000,0],[1709300219000,0],[1709300220000,0],[1709300221000,0],[1709300222000,0],[1709300223000,0],[1709300224000,0],[1709300225000,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', '16', '17', '18', '19', '20', '21', '22', '27', '36', '37', '38', '39', '40', '42', '46', '55'],
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: [
2.18,61.22,25.24,9.73,1.33,0.13,0.02,0.0,0.0,0.0,0.01,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
],
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([[1709299981,[8,21,36,38,39,39,41,45,52,55]],[1709299982,[2,2,2,2,2,2,2,2,2,2]],[1709299983,[5,8,10,12,13,14,15,16,17,17]],[1709299984,[2,2,2,2,2,2,2,2,2,2]],[1709299985,[0,1,3,7,9,11,12,16,21,27]],[1709299986,[3,3,3,3,3,3,3,3,3,3]],[1709299987,[3,3,3,3,3,3,3,3,3,4]],[1709299988,[3,3,3,4,4,4,4,5,5,6]],[1709299989,[2,2,3,3,3,3,3,3,3,3]],[1709299990,[2,2,2,3,3,3,3,3,3,3]],[1709299991,[2,2,2,2,3,3,3,3,3,3]],[1709299992,[2,2,2,2,2,3,3,3,3,3]],[1709299993,[2,2,2,3,3,3,3,3,3,3]],[1709299994,[1,2,2,2,2,3,3,3,3,3]],[1709299995,[1,2,2,2,2,3,3,3,3,3]],[1709299996,[1,2,2,2,2,3,3,3,3,4]],[1709299997,[1,2,2,2,2,2,2,2,3,3]],[1709299998,[1,2,2,2,2,2,2,2,3,3]],[1709299999,[1,2,2,2,2,3,3,3,7,7]],[1709300000,[1,2,2,2,2,2,3,3,3,3]],[1709300001,[1,2,2,2,2,2,2,2,3,3]],[1709300002,[1,1,2,2,2,2,2,2,2,3]],[1709300003,[1,1,2,2,2,2,2,2,3,3]],[1709300004,[1,1,1,2,2,2,2,2,2,3]],[1709300005,[1,1,1,2,2,2,2,2,3,3]],[1709300006,[1,1,2,2,2,2,2,2,2,2]],[1709300007,[1,2,2,2,2,2,2,2,2,3]],[1709300008,[1,1,2,2,2,2,2,2,3,3]],[1709300009,[1,1,2,2,2,2,2,2,3,3]],[1709300010,[1,1,2,2,2,2,2,2,3,3]],[1709300011,[1,1,1,2,2,2,2,2,2,3]],[1709300012,[1,1,1,2,2,2,2,2,3,3]],[1709300013,[0,1,1,2,2,2,2,2,3,3]],[1709300014,[1,1,1,2,2,2,2,2,2,2]],[1709300015,[1,1,1,2,2,2,2,2,2,2]],[1709300016,[1,1,2,2,2,2,2,2,2,2]],[1709300017,[1,1,1,2,2,2,2,2,2,3]],[1709300018,[1,1,1,2,2,2,2,2,2,2]],[1709300019,[1,1,2,2,2,2,2,2,3,3]],[1709300020,[1,1,1,1,1,2,2,2,3,4]],[1709300021,[1,1,1,2,2,2,2,2,3,3]],[1709300022,[1,1,1,2,2,2,2,2,2,2]],[1709300023,[0,1,1,1,2,2,2,2,2,3]],[1709300024,[1,1,1,1,1,1,2,2,2,3]],[1709300025,[1,1,1,2,2,2,2,2,2,2]],[1709300026,[1,1,1,2,2,2,2,2,2,3]],[1709300027,[1,1,1,2,2,2,2,2,2,2]],[1709300028,[0,1,1,2,2,2,2,2,2,2]],[1709300029,[1,1,1,1,1,2,2,2,2,2]],[1709300030,[1,1,1,1,1,1,2,2,2,2]],[1709300031,[1,1,1,1,1,1,2,2,2,3]],[1709300032,[1,1,1,2,2,2,2,2,2,2]],[1709300033,[1,1,2,2,2,2,2,2,2,3]],[1709300034,[1,1,1,1,2,2,2,2,2,2]],[1709300035,[1,1,1,1,1,1,1,2,2,3]],[1709300036,[1,1,1,1,1,1,1,1,2,2]],[1709300037,[0,1,1,1,1,1,1,2,2,2]],[1709300038,[1,1,1,1,1,1,1,2,2,2]],[1709300039,[0,1,1,1,1,1,1,2,2,3]],[1709300040,[0,1,1,1,1,1,2,2,2,2]],[1709300041,[1,1,1,1,1,1,1,1,2,2]],[1709300042,[1,1,1,1,1,1,2,2,2,2]],[1709300043,[1,1,1,1,1,2,2,2,2,2]],[1709300044,[1,1,1,1,1,1,1,2,2,3]],[1709300045,[1,1,1,1,1,1,2,2,2,2]],[1709300046,[1,1,1,1,1,1,1,2,2,3]],[1709300047,[1,1,1,2,2,2,2,2,2,3]],[1709300048,[0,1,1,2,2,2,2,2,2,3]],[1709300049,[0,1,1,1,1,1,1,1,1,1]],[1709300050,[1,1,1,1,2,2,2,2,2,2]],[1709300051,[0,1,1,1,1,1,1,2,2,2]],[1709300052,[0,1,1,1,2,2,2,2,2,2]],[1709300053,[0,1,1,1,1,2,2,2,2,2]],[1709300054,[1,1,1,1,1,1,1,2,2,2]],[1709300055,[1,1,1,1,1,1,1,2,2,2]],[1709300056,[1,1,1,1,1,1,2,2,2,2]],[1709300057,[1,1,1,1,1,2,2,2,2,3]],[1709300058,[0,1,1,2,2,2,2,2,2,3]],[1709300059,[0,1,1,1,1,1,2,2,2,2]],[1709300060,[0,1,1,1,1,1,1,2,2,2]],[1709300061,[0,1,1,1,1,1,1,2,2,2]],[1709300062,[1,1,1,1,1,1,1,2,2,2]],[1709300063,[1,1,1,1,1,1,1,2,2,2]],[1709300064,[0,1,1,1,1,1,1,1,1,2]],[1709300065,[1,1,1,1,1,1,1,1,2,2]],[1709300066,[1,1,1,1,1,1,1,1,1,2]],[1709300067,[1,1,1,1,1,1,1,1,2,3]],[1709300068,[1,1,1,1,1,1,1,1,1,2]],[1709300069,[1,1,1,1,1,1,1,1,1,2]],[1709300070,[0,1,1,1,1,1,1,1,2,2]],[1709300071,[0,1,1,1,1,1,1,1,2,2]],[1709300072,[1,1,1,1,1,1,1,1,2,2]],[1709300073,[0,1,1,1,1,2,2,2,2,2]],[1709300074,[0,1,1,1,1,1,1,2,2,2]],[1709300075,[1,1,1,1,1,1,1,2,2,2]],[1709300076,[1,1,1,1,1,1,1,2,2,2]],[1709300077,[1,1,1,1,1,1,1,1,2,2]],[1709300078,[0,1,1,1,1,1,1,2,2,2]],[1709300079,[1,1,1,1,1,1,1,1,2,2]],[1709300080,[1,1,1,1,1,1,1,2,2,2]],[1709300081,[0,1,1,1,1,1,2,2,2,4]],[1709300082,[0,1,1,1,1,1,1,1,2,2]],[1709300083,[1,1,1,1,1,1,1,2,2,2]],[1709300084,[1,1,1,1,1,1,1,2,2,2]],[1709300085,[1,1,1,1,1,1,1,2,2,3]],[1709300086,[0,1,1,1,1,2,2,2,2,2]],[1709300087,[0,1,1,1,1,1,2,2,2,2]],[1709300088,[0,1,1,1,1,1,1,2,2,2]],[1709300089,[1,1,1,1,1,1,1,2,2,2]],[1709300090,[0,1,1,1,2,2,2,2,2,2]],[1709300091,[0,1,1,1,2,2,2,2,2,3]],[1709300092,[0,1,1,1,1,1,2,2,2,3]],[1709300093,[0,1,1,1,1,1,1,2,2,3]],[1709300094,[0,1,1,1,1,2,2,2,2,2]],[1709300095,[0,1,1,1,1,1,2,2,2,2]],[1709300096,[0,1,1,1,1,1,1,2,2,2]],[1709300097,[0,1,1,1,2,2,2,2,3,4]],[1709300098,[0,1,1,2,2,2,2,2,3,3]],[1709300099,[0,2,2,3,3,3,3,3,4,5]],[1709300100,[0,1,1,2,2,3,3,3,4,4]],[1709300101,[0,1,2,3,3,3,3,3,3,4]],[1709300102,[0,1,2,2,2,3,3,3,3,3]],[1709300103,[1,2,2,3,3,3,3,3,4,5]],[1709300104,[1,1,2,2,3,3,3,3,4,4]],[1709300105,[0,1,2,3,3,3,3,3,4,5]],[1709300106,[0,1,2,2,3,3,3,3,3,4]],[1709300107,[1,1,2,2,3,3,3,3,4,7]],[1709300108,[1,1,2,2,3,3,3,3,4,6]],[1709300109,[1,1,1,2,2,3,3,3,4,5]],[1709300110,[1,1,2,2,2,2,2,3,3,4]],[1709300111,[1,1,1,2,3,3,3,3,4,5]],[1709300112,[0,1,2,3,3,3,3,3,4,5]],[1709300113,[0,1,1,2,2,2,2,3,3,4]],[1709300114,[1,1,2,2,2,3,3,3,4,4]],[1709300115,[1,1,1,2,2,2,3,3,4,5]],[1709300116,[1,1,2,3,3,3,3,3,4,4]],[1709300117,[1,1,1,2,2,2,2,3,4,5]],[1709300118,[0,2,2,3,3,3,3,3,3,4]],[1709300119,[0,1,1,1,2,2,2,2,4,5]],[1709300120,[0,2,3,3,3,3,3,3,4,5]],[1709300121,[0,1,1,1,1,1,1,2,2,5]],[1709300122,[1,2,2,3,3,3,3,3,4,4]],[1709300123,[0,1,1,1,2,2,2,2,2,4]],[1709300124,[1,2,2,3,3,3,3,3,4,5]],[1709300125,[0,1,1,1,1,2,2,2,2,4]],[1709300126,[0,2,2,3,3,3,3,3,4,4]],[1709300127,[1,1,1,1,1,1,2,2,2,4]],[1709300128,[1,1,2,3,3,3,4,4,5,6]],[1709300129,[0,1,1,1,1,1,2,2,2,2]],[1709300130,[1,1,2,3,3,3,3,4,4,5]],[1709300131,[0,1,1,1,2,2,2,2,3,3]],[1709300132,[1,1,2,2,2,3,3,3,4,4]],[1709300133,[1,1,1,1,1,1,2,2,3,4]],[1709300134,[0,1,1,2,2,2,2,2,3,4]],[1709300135,[0,1,1,2,2,2,2,2,2,3]],[1709300136,[0,1,2,2,2,3,3,3,4,4]],[1709300137,[0,1,1,1,2,2,2,3,3,4]],[1709300138,[1,1,1,2,2,3,3,3,4,5]],[1709300139,[1,1,1,2,2,3,3,3,4,5]],[1709300140,[1,1,1,2,2,3,3,3,4,4]],[1709300141,[1,1,1,2,2,3,3,3,4,4]],[1709300142,[1,1,1,2,2,2,3,3,4,5]],[1709300143,[0,1,1,2,3,3,3,3,4,5]],[1709300144,[0,1,1,1,1,1,2,2,4,4]],[1709300145,[1,1,1,2,3,3,3,3,4,4]],[1709300146,[0,1,1,1,1,1,2,2,2,3]],[1709300147,[0,1,2,2,2,2,2,2,3,5]],[1709300148,[0,1,1,2,2,2,2,2,2,4]],[1709300149,[0,1,1,2,3,3,3,3,4,4]],[1709300150,[0,1,1,1,1,1,1,1,2,2]],[1709300151,[1,1,1,2,2,3,3,3,4,4]],[1709300152,[1,1,1,1,1,2,2,2,2,3]],[1709300153,[0,1,1,2,2,2,3,3,4,5]],[1709300154,[1,1,1,1,1,1,1,2,3,4]],[1709300155,[0,1,1,2,2,2,2,3,4,5]],[1709300156,[0,1,1,1,1,1,1,1,2,2]],[1709300157,[0,1,1,2,2,2,2,3,3,4]],[1709300158,[0,1,1,1,1,1,1,1,2,2]],[1709300159,[0,1,1,1,2,2,2,3,3,4]],[1709300160,[0,1,1,2,2,2,2,2,3,5]],[1709300161,[1,1,2,2,2,2,3,3,3,4]],[1709300162,[1,1,1,2,2,2,3,3,3,4]],[1709300163,[0,1,2,2,2,2,3,3,4,4]],[1709300164,[0,1,1,2,3,3,3,4,5,5]],[1709300165,[1,2,3,3,3,3,3,4,4,5]],[1709300166,[1,1,1,2,2,2,3,3,4,5]],[1709300167,[0,2,2,3,3,3,3,4,4,4]],[1709300168,[0,1,1,2,2,2,2,3,4,4]],[1709300169,[1,2,2,3,3,3,3,4,4,4]],[1709300170,[0,1,1,1,1,1,2,2,2,4]],[1709300171,[1,2,2,2,2,2,2,3,3,3]],[1709300172,[0,1,1,1,1,1,1,1,2,4]],[1709300173,[0,2,2,3,3,3,3,3,4,5]],[1709300174,[0,1,1,1,2,2,2,2,2,4]],[1709300175,[0,2,2,3,3,3,3,3,4,4]],[1709300176,[1,1,1,1,2,2,2,2,3,4]],[1709300177,[1,2,2,3,3,3,3,3,4,4]],[1709300178,[0,1,1,2,2,2,2,3,3,3]],[1709300179,[1,1,2,3,3,3,3,3,4,5]],[1709300180,[1,1,1,1,2,2,2,2,3,4]],[1709300181,[1,1,2,3,3,3,3,4,4,6]],[1709300182,[0,1,1,2,2,2,3,3,3,4]],[1709300183,[0,1,2,3,3,3,3,3,4,4]],[1709300184,[1,1,1,2,2,2,3,3,3,4]],[1709300185,[1,1,1,3,3,3,3,4,4,6]],[1709300186,[0,1,2,2,3,3,3,3,4,4]],[1709300187,[0,1,1,2,2,2,2,3,4,4]],[1709300188,[0,1,1,2,2,2,2,2,3,3]],[1709300189,[0,1,1,2,2,2,3,3,4,6]],[1709300190,[1,1,1,2,3,3,3,3,4,4]],[1709300191,[1,1,1,2,2,3,3,3,4,6]],[1709300192,[0,1,2,3,3,3,3,3,4,4]],[1709300193,[0,1,1,2,2,2,2,3,4,5]],[1709300194,[1,1,2,3,3,3,3,3,4,4]],[1709300195,[1,1,1,1,2,2,2,2,5,6]],[1709300196,[0,1,2,3,3,3,3,4,4,4]],[1709300197,[0,1,1,1,1,1,2,2,2,4]],[1709300198,[1,1,2,3,3,3,3,4,4,4]],[1709300199,[0,1,1,1,1,1,1,2,2,3]],[1709300200,[1,2,2,3,3,3,3,4,4,5]],[1709300201,[0,1,1,2,2,2,2,2,2,4]],[1709300202,[0,1,1,2,2,2,2,3,3,4]],[1709300203,[0,1,1,1,1,2,2,2,2,2]],[1709300204,[0,1,2,3,3,3,3,3,4,5]],[1709300205,[1,1,2,2,2,2,2,2,2,3]],[1709300206,[0,1,2,3,3,3,3,4,4,5]],[1709300207,[0,1,1,2,2,2,2,2,2,2]],[1709300208,[0,1,2,2,2,2,2,3,4,4]],[1709300209,[0,1,1,1,1,1,1,1,1,2]],[1709300210,[0,1,1,2,2,3,3,3,4,4]],[1709300211,[0,1,1,1,1,2,2,2,2,2]],[1709300212,[0,1,1,2,2,2,3,3,3,3]],[1709300213,[1,1,1,1,2,2,2,2,2,2]],[1709300214,[0,1,2,2,2,3,3,3,4,5]],[1709300215,[0,1,1,2,2,2,2,2,2,4]],[1709300216,[0,1,1,2,2,3,3,3,4,5]],[1709300217,[1,1,1,1,2,2,2,2,3,3]],[1709300218,[0,1,1,2,2,2,2,3,3,4]],[1709300219,[0,1,1,2,2,2,2,2,3,3]],[1709300220,[1,1,1,1,1,2,2,3,4,4]],[1709300221,[0,1,1,2,2,2,3,3,4,5]],[1709300222,[0,1,2,2,2,2,2,3,3,4]],[1709300223,[0,1,1,1,2,2,2,2,3,3]],[1709300224,[1,2,2,3,3,3,3,2,4,5]],[1709300225,[1,1,1,2,2,3,3,3,4,4]]]);
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([[1709299981,[25,25,0]],[1709299982,[1,1,0]],[1709299983,[25,25,0]],[1709299984,[1,1,0]],[1709299985,[71,71,0]],[1709299986,[3,3,0]],[1709299987,[6,6,0]],[1709299988,[9,9,0]],[1709299989,[11,11,0]],[1709299990,[13,13,0]],[1709299991,[18,18,0]],[1709299992,[19,19,0]],[1709299993,[24,24,0]],[1709299994,[26,26,0]],[1709299995,[27,27,0]],[1709299996,[32,32,0]],[1709299997,[34,34,0]],[1709299998,[37,37,0]],[1709299999,[39,39,0]],[1709300000,[43,43,0]],[1709300001,[45,45,0]],[1709300002,[48,48,0]],[1709300003,[50,50,0]],[1709300004,[54,54,0]],[1709300005,[56,56,0]],[1709300006,[60,60,0]],[1709300007,[61,61,0]],[1709300008,[65,65,0]],[1709300009,[67,67,0]],[1709300010,[70,70,0]],[1709300011,[74,74,0]],[1709300012,[76,76,0]],[1709300013,[80,80,0]],[1709300014,[81,81,0]],[1709300015,[84,84,0]],[1709300016,[89,89,0]],[1709300017,[89,89,0]],[1709300018,[93,93,0]],[1709300019,[96,96,0]],[1709300020,[98,98,0]],[1709300021,[102,102,0]],[1709300022,[104,104,0]],[1709300023,[107,107,0]],[1709300024,[109,109,0]],[1709300025,[114,114,0]],[1709300026,[115,115,0]],[1709300027,[118,118,0]],[1709300028,[121,121,0]],[1709300029,[124,124,0]],[1709300030,[126,126,0]],[1709300031,[129,129,0]],[1709300032,[133,133,0]],[1709300033,[134,134,0]],[1709300034,[139,139,0]],[1709300035,[140,140,0]],[1709300036,[144,144,0]],[1709300037,[146,146,0]],[1709300038,[149,149,0]],[1709300039,[151,151,0]],[1709300040,[155,155,0]],[1709300041,[157,157,0]],[1709300042,[160,160,0]],[1709300043,[165,165,0]],[1709300044,[166,166,0]],[1709300045,[170,170,0]],[1709300046,[170,170,0]],[1709300047,[174,174,0]],[1709300048,[177,177,0]],[1709300049,[180,180,0]],[1709300050,[183,183,0]],[1709300051,[186,186,0]],[1709300052,[188,188,0]],[1709300053,[192,192,0]],[1709300054,[194,194,0]],[1709300055,[197,197,0]],[1709300056,[198,198,0]],[1709300057,[204,204,0]],[1709300058,[205,205,0]],[1709300059,[207,207,0]],[1709300060,[211,211,0]],[1709300061,[214,214,0]],[1709300062,[217,217,0]],[1709300063,[219,219,0]],[1709300064,[222,222,0]],[1709300065,[225,225,0]],[1709300066,[228,228,0]],[1709300067,[229,229,0]],[1709300068,[234,234,0]],[1709300069,[236,236,0]],[1709300070,[239,239,0]],[1709300071,[243,243,0]],[1709300072,[244,244,0]],[1709300073,[248,248,0]],[1709300074,[251,251,0]],[1709300075,[251,251,0]],[1709300076,[257,257,0]],[1709300077,[259,259,0]],[1709300078,[262,262,0]],[1709300079,[263,263,0]],[1709300080,[267,267,0]],[1709300081,[269,269,0]],[1709300082,[273,273,0]],[1709300083,[275,275,0]],[1709300084,[279,279,0]],[1709300085,[281,281,0]],[1709300086,[284,284,0]],[1709300087,[286,286,0]],[1709300088,[290,290,0]],[1709300089,[292,292,0]],[1709300090,[295,295,0]],[1709300091,[299,299,0]],[1709300092,[300,300,0]],[1709300093,[304,304,0]],[1709300094,[306,306,0]],[1709300095,[309,309,0]],[1709300096,[312,312,0]],[1709300097,[315,315,0]],[1709300098,[317,317,0]],[1709300099,[320,320,0]],[1709300100,[323,323,0]],[1709300101,[328,328,0]],[1709300102,[329,329,0]],[1709300103,[331,331,0]],[1709300104,[334,334,0]],[1709300105,[339,339,0]],[1709300106,[339,339,0]],[1709300107,[341,341,0]],[1709300108,[339,339,0]],[1709300109,[340,340,0]],[1709300110,[341,341,0]],[1709300111,[340,340,0]],[1709300112,[339,339,0]],[1709300113,[340,340,0]],[1709300114,[341,341,0]],[1709300115,[340,340,0]],[1709300116,[340,340,0]],[1709300117,[340,340,0]],[1709300118,[338,338,0]],[1709300119,[342,342,0]],[1709300120,[338,338,0]],[1709300121,[342,342,0]],[1709300122,[340,340,0]],[1709300123,[339,339,0]],[1709300124,[340,340,0]],[1709300125,[341,341,0]],[1709300126,[340,340,0]],[1709300127,[340,340,0]],[1709300128,[339,339,0]],[1709300129,[341,341,0]],[1709300130,[339,339,0]],[1709300131,[341,341,0]],[1709300132,[340,340,0]],[1709300133,[340,340,0]],[1709300134,[339,339,0]],[1709300135,[340,340,0]],[1709300136,[340,340,0]],[1709300137,[341,341,0]],[1709300138,[340,340,0]],[1709300139,[340,340,0]],[1709300140,[340,340,0]],[1709300141,[340,340,0]],[1709300142,[340,340,0]],[1709300143,[339,339,0]],[1709300144,[341,341,0]],[1709300145,[340,340,0]],[1709300146,[339,339,0]],[1709300147,[340,340,0]],[1709300148,[341,341,0]],[1709300149,[339,339,0]],[1709300150,[341,341,0]],[1709300151,[340,340,0]],[1709300152,[340,340,0]],[1709300153,[339,339,0]],[1709300154,[341,341,0]],[1709300155,[339,339,0]],[1709300156,[340,340,0]],[1709300157,[341,341,0]],[1709300158,[339,339,0]],[1709300159,[341,341,0]],[1709300160,[339,339,0]],[1709300161,[341,341,0]],[1709300162,[339,339,0]],[1709300163,[340,340,0]],[1709300164,[341,341,0]],[1709300165,[340,340,0]],[1709300166,[339,339,0]],[1709300167,[340,340,0]],[1709300168,[341,341,0]],[1709300169,[339,339,0]],[1709300170,[340,340,0]],[1709300171,[340,340,0]],[1709300172,[340,340,0]],[1709300173,[341,341,0]],[1709300174,[339,339,0]],[1709300175,[341,341,0]],[1709300176,[340,340,0]],[1709300177,[339,339,0]],[1709300178,[340,340,0]],[1709300179,[340,340,0]],[1709300180,[341,341,0]],[1709300181,[339,339,0]],[1709300182,[339,339,0]],[1709300183,[342,342,0]],[1709300184,[340,340,0]],[1709300185,[340,340,0]],[1709300186,[339,339,0]],[1709300187,[340,340,0]],[1709300188,[341,341,0]],[1709300189,[339,339,0]],[1709300190,[341,341,0]],[1709300191,[339,339,0]],[1709300192,[341,341,0]],[1709300193,[339,339,0]],[1709300194,[341,341,0]],[1709300195,[340,340,0]],[1709300196,[339,339,0]],[1709300197,[341,341,0]],[1709300198,[340,340,0]],[1709300199,[340,340,0]],[1709300200,[340,340,0]],[1709300201,[338,338,0]],[1709300202,[341,341,0]],[1709300203,[340,340,0]],[1709300204,[341,341,0]],[1709300205,[340,340,0]],[1709300206,[339,339,0]],[1709300207,[340,340,0]],[1709300208,[340,340,0]],[1709300209,[340,340,0]],[1709300210,[340,340,0]],[1709300211,[340,340,0]],[1709300212,[341,341,0]],[1709300213,[340,340,0]],[1709300214,[339,339,0]],[1709300215,[340,340,0]],[1709300216,[341,341,0]],[1709300217,[340,340,0]],[1709300218,[339,339,0]],[1709300219,[341,341,0]],[1709300220,[340,340,0]],[1709300221,[338,338,0]],[1709300222,[341,341,0]],[1709300223,[341,341,0]],[1709300224,[340,340,0]],[1709300225,[501,501,0]]]);
var requestsChart = new Highcharts.StockChart({
chart: {
renderTo: 'requests',
zoomType: 'x',
marginBottom: 60
},
credits: { enabled: false },
legend: {
enabled: true,
floating: true,
y: -65,
borderWidth: 0,
itemStyle: { fontWeight: "normal" },
symbolRadius: 0
},
title: { text: 'A title to let highcharts reserve the place for the title set later' },
navigator: {
maskInside: false
},
rangeSelector: {
buttonSpacing: 0,
buttonTheme: {
fill: '#CFC9C6',
padding: 1,
stroke: '#000000',
'stroke-width': 0.25,
style: {
color: '#000000',
fontWeight: 'bold',
},
states: {
stroke: '#000000',
'stroke-width': 0.25,
hover: {
fill: '#92918C',
style: { color: 'black' }
},
select: {
fill: '#FFA900',
style: { color: 'white' }
}
}
},
buttons : [
{
type : 'minute',
count : 1,
text : '1m'
}, {
type : 'minute',
count : 10,
text : '10m'
}, {
type : 'hour',
count : 1,
text : '1h'
}, {
type : 'all',
count : 1,
text : 'All'
}
],
selected : 3,
inputEnabled : false
},
plotOptions: {
series: {
dataGrouping: { enabled: false }
},
area: {
stacking: 'normal'
}
},
xAxis: {
type: 'datetime',
ordinal: false,
maxZoom: 10000 // three days
},
yAxis:[