-
Notifications
You must be signed in to change notification settings - Fork 923
/
Copy pathindex.html
1173 lines (1103 loc) · 92 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="shortcut icon" type="image/x-icon" href="style/favicon.ico"/>
<link href="style/style.css" rel="stylesheet" type="text/css" />
<link href="style/bootstrap.min.css" rel="stylesheet" type="text/css" />
<script src="js/jquery-3.5.1.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/gatling.js"></script>
<script src="js/menu.js"></script>
<script src="js/ellipsis.js"></script>
<script src="js/all_sessions.js"></script>
<script src="js/stats.js"></script>
<script src="js/highstock.js"></script>
<script src="js/highcharts-more.js"></script>
<script src="js/theme.js"></script>
<script src="js/unpack.js"></script>
<title>Gatling Stats - Global Information</title>
</head>
<body>
<script>
const storedTheme = localStorage.getItem('theme') || (window.matchMedia("(prefers-color-scheme: dark)").matches ? "dark" : "light");
if (storedTheme) document.documentElement.setAttribute('data-theme', storedTheme)
function toggleTheme() {
const currentTheme = document.documentElement.getAttribute("data-theme");
const targetTheme = currentTheme === "light" ? "dark" : "light";
document.documentElement.setAttribute('data-theme', targetTheme)
localStorage.setItem('theme', targetTheme);
};
</script>
<div class="app-container">
<div class="frise"></div>
<div class="head">
<div class="gatling-open-source">
<a class="gatling-logo gatling-logo-light" href="https://gatling.io" target="blank_" title="Gatling Home Page"><img alt="Gatling" src="style/logo-light.svg"/></a>
<a class="gatling-logo gatling-logo-dark" href="https://gatling.io" target="blank_" title="Gatling Home Page"><img alt="Gatling" src="style/logo-dark.svg"/></a>
<a class="gatling-documentation" href="https://gatling.io/docs/" target="_blank">Documentation</a>
</div>
<div class="nav spacer"></div>
<a class="enterprise" href="https://gatling.io/enterprise/next-step/" target="_blank"><strong>Try</strong>
<img class="logo-enterprise-light" alt="Gatling Enterprise" src="style/logo-enterprise-light.svg"/>
<img class="logo-enterprise-dark" alt="Gatling Enterprise" src="style/logo-enterprise-dark.svg"/>
</a>
<button id="theme-toggle" class="theme-toggle" type="button" onclick="toggleTheme()" aria-label="Toggle user interface mode">
<span class="toggle-dark"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-moon"><path d="M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z"></path></svg></span>
<span class="toggle-light"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-sun"><circle cx="12" cy="12" r="5"></circle><line x1="12" y1="1" x2="12" y2="3"></line><line x1="12" y1="21" x2="12" y2="23"></line><line x1="4.22" y1="4.22" x2="5.64" y2="5.64"></line><line x1="18.36" y1="18.36" x2="19.78" y2="19.78"></line><line x1="1" y1="12" x2="3" y2="12"></line><line x1="21" y1="12" x2="23" y2="12"></line><line x1="4.22" y1="19.78" x2="5.64" y2="18.36"></line><line x1="18.36" y1="5.64" x2="19.78" y2="4.22"></line></svg></span>
</button>
</div>
<div class="container details">
<div class="nav">
<ul></ul>
</div>
<div class="cadre">
<div class="content">
<div class="content-header">
<div class="onglet">
RinhaBackendCrebitosSimulation
</div>
<div class="sous-menu" id="sousMenu">
<div class="sous-menu-spacer">
<div class="item ouvert"><a href="index.html">Global</a></div>
<div class="item "><a id="details_link" href="#">Details</a></div>
</div>
</div>
</div>
<div class="content-in">
<div class="container-article">
<div class="article">
<div class="schema-container">
<div id="ranges" class="schema ranges">
</div>
<div class="schema polar">
<div id="container_number_of_requests"></div>
</div>
<div class="simulation-card">
<div class="simulation-version-information">
<span class="simulation-information-title">Gatling Version</span>
<span class="simulation-information-item">
<span class="simulation-information-label">Version: </span>
<span>3.10.3</span>
</span>
<span class="simulation-information-item">
<span class="simulation-information-label">Released: </span>
<span>2023-12-20</span>
</span>
</div>
<div id="simulation-information" class="simulation-version-information">
<span class="simulation-information-title">Run Information</span>
<div class="simulation-information-container">
<span class="simulation-information-item">
<span class="simulation-information-label">Date: </span>
<span>2024-02-27 00:25:46 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 - silmar-alberti-franken-php">
<span class="simulation-information-label">Description: </span>
<span>Rinha de Backend - 2024/Q1: Crébito - silmar-alberti-franken-php</span>
</span>
</div>
</div>
</div>
</div>
<div id="statistics_table_container">
<div id="stats" class="statistics extensible-geant collapsed">
<div class="title">
<div id="statistics_title" class="title_base"><span class="title_base_stats">Stats</span><span class="expand-table">Fixed height</span><span id="toggle-stats" class="toggle-table"></span><span class="collapse-table">Full size</span></div>
<div class="right">
<button class="statistics-button expand-all-button">Expand all groups</button>
<button class="statistics-button collapse-all-button">Collapse all groups</button>
<button id="statistics_full_screen" class="statistics-button" onclick="openStatisticsTableModal()"><img alt="Fullscreen" src="style/fullscreen.svg"></button>
</div>
</div>
<div class="scrollable">
<table id="container_statistics_head" class="statistics-in extensible-geant">
<thead>
<tr>
<th rowspan="2" id="col-1" class="header sortable sorted-up"><span>Requests</span></th>
<th colspan="5" class="header"><span class="executions">Executions</span></th>
<th colspan="8" class="header"><span class="response-time">Response Time (ms)</span></th>
</tr>
<tr>
<th id="col-2" class="header sortable"><span>Total</span></th>
<th id="col-3" class="header sortable"><span>OK</span></th>
<th id="col-4" class="header sortable"><span>KO</span></th>
<th id="col-5" class="header sortable"><span>% KO</span></th>
<th id="col-6" class="header sortable"><span><abbr title="Count of events per second">Cnt/s</abbr></span></th>
<th id="col-7" class="header sortable"><span>Min</span></th>
<th id="col-8" class="header sortable"><span>50th pct</span></th>
<th id="col-9" class="header sortable"><span>75th pct</span></th>
<th id="col-10" class="header sortable"><span>95th pct</span></th>
<th id="col-11" class="header sortable"><span>99th pct</span></th>
<th id="col-12" class="header sortable"><span>Max</span></th>
<th id="col-13" class="header sortable"><span>Mean</span></th>
<th id="col-14" class="header sortable"><span><abbr title="Standard Deviation">Std Dev</abbr></span></th>
</tr>
</thead>
<tbody></tbody>
</table>
<table id="container_statistics_body" class="statistics-in extensible-geant">
<tbody></tbody>
</table>
</div>
</div>
</div>
<dialog id="statistics_table_modal" class="statistics-table-modal">
<div class="statistics-table-modal-header"><button class="button-modal" onclick="closeStatisticsTableModal()"><img alt="Close" src="style/close.svg"></button></div>
<div class="statistics-table-modal-container">
<div id="statistics_table_modal_content" class="statistics-table-modal-content"></div>
</div>
</dialog>
<script>
function openStatisticsTableModal () {
const statsTable = document.getElementById("stats");
const statsTableModal = document.getElementById("statistics_table_modal");
const fullScreenButton = document.getElementById("statistics_full_screen");
fullScreenButton.disabled = true;
if (typeof statsTableModal.showModal === "function") {
const statsTableModalContent = document.getElementById("statistics_table_modal_content");
statsTableModalContent.innerHTML = "";
statsTableModalContent.appendChild(statsTable);
statsTableModal.showModal();
statsTableModal.addEventListener("close", function () {
const container = document.getElementById("statistics_table_container");
container.appendChild(statsTable);
fullScreenButton.disabled = false;
});
} else {
const incompatibleBrowserVersionMessage = document.createElement("div");
incompatibleBrowserVersionMessage.innerText = "Sorry, the <dialog> API is not supported by this browser.";
statsTable.insertBefore(incompatibleBrowserVersionMessage, statsTable.children[0]);
}
}
function closeStatisticsTableModal () {
const statsTableModal = document.getElementById("statistics_table_modal");
statsTableModal.close();
}
</script>
<div class="schema geant">
<div id="active_users" class="geant"></div>
</div>
<div class="schema geant">
<div id="responsetimeDistributionContainer" class="geant"></div>
</div>
<div class="schema geant">
<div id="responsetimepercentilesovertimeokPercentilesContainer" class="geant"></div>
</div>
<div class="schema geant">
<div id="requests" class="geant"></div>
</div>
<div class="schema geant">
<div id="responses" class="geant"></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<script>
var pageStats = stats.stats;
$(document).ready(function() {
$('.simulation-tooltip').popover({trigger:'hover', placement:'left'});
setDetailsLinkUrl();
setGlobalMenu();
setActiveMenu();
fillStats(pageStats);
Highcharts.setOptions({
global: { useUTC: false }
});
var rangesChart = new Highcharts.Chart({
chart: {
renderTo: 'ranges',
marginRight: 100
},
credits: { enabled: false },
legend: { enabled: false },
title: { text: 'A title to let highcharts reserve the place for the title set later' },
xAxis: {
categories: [
pageStats.group1.htmlName,
pageStats.group2.htmlName,
pageStats.group3.htmlName,
pageStats.group4.htmlName
]
},
yAxis: {
title: { text: 'Number of Requests' },
reversedStacks: false
},
tooltip: {
formatter: function() {
var s;
if (this.point.name) { // the pie chart
s = ''+ this.point.name +': '+ this.y +'% requests';
} else {
s = ''+ this.y + ' requests';
}
return s;
}
},
plotOptions: {
series: {
stacking: 'normal',
shadow: true
}
},
series: [
{
type: 'column',
data: [{
color: '#68b65c',
y: pageStats.group1.count
},
{
color: '#FFDD00',
y: pageStats.group2.count
},
{
color: '#FFA900',
y: pageStats.group3.count
},
{
color: '#f15b4f',
y: pageStats.group4.count
}]
},
{
type: 'pie',
name: 'Percentages',
data: [
{
name: pageStats.group1.name,
y: pageStats.group1.percentage,
color: '#68b65c'
},
{
name: pageStats.group2.name,
y: pageStats.group2.percentage,
color: '#FFDD00'
},
{
name: pageStats.group3.name,
y: pageStats.group3.percentage,
color: '#FFA900'
},
{
name: pageStats.group4.name,
y: pageStats.group4.percentage,
color: '#f15b4f'
}
],
center: [345, 0],
size: 90,
showInLegend: false,
dataLabels: { enabled: false }
}
]
});
rangesChart.setTitle({
text: '<span class="chart_title">Response Time Ranges</span>',
useHTML: true
});
function numberOfRequestsDataForGroup(group) {
var data = {names: [], oks: [], kos: []};
$.each(group.contents, function(contentName, content) {
if (content.type == 'GROUP') {
var result = numberOfRequestsDataForGroup(content);
data.names = data.names.concat(result.names);
data.oks = data.oks.concat(result.oks);
data.kos = data.kos.concat(result.kos);
}
else if (content.type == 'REQUEST') {
data.names.push(content.path);
data.oks.push(parseInt(content.stats.numberOfRequests.ok));
data.kos.push(parseInt(content.stats.numberOfRequests.ko));
}
});
return data;
}
var numberOfRequestsData = numberOfRequestsDataForGroup(stats);
var tickInterval = Math.ceil(numberOfRequestsData.names.length / 1000);
new Highcharts.Chart({
chart: {
renderTo:'container_number_of_requests',
polar:true,
type:'column',
height:330
},
credits:{
enabled:false
},
title:{
text:'<span class="chart_title">Number of requests</span>',
useHTML: true,
widthAdjust:-20
},
xAxis:{
tickmarkPlacement:'on',
tickInterval: tickInterval,
categories:numberOfRequestsData.names,
labels:{ enabled:false }
},
yAxis:{
min:0,
reversedStacks: false
},
plotOptions:{
series:{
stacking:'normal',
groupPadding:0,
pointPlacement:'on',
shadow: true
}
},
legend: {
borderWidth: 0,
itemStyle: { fontWeight: "normal" },
symbolRadius: 0
},
series:[
{
name:'OK',
data:numberOfRequestsData.oks,
color:"#68b65c"
},
{
name:'KO',
data:numberOfRequestsData.kos,
color:"#f15b4f"
}
]
});
$('#container_exceptions').sortable('#container_exceptions');
function generateHtmlRow(request, level, index, parent, group) {
if (request.name == 'All Requests')
var url = 'index.html';
else
var url = request.pathFormatted + '.html';
if (group)
var expandButtonStyle = '';
else
var expandButtonStyle = ' hidden';
if (request.stats.numberOfRequests.total != 0)
var koPercent = (request.stats.numberOfRequests.ko * 100 / request.stats.numberOfRequests.total).toFixed(0) + '%';
else
var koPercent = '-'
return '<tr id="' + request.pathFormatted + '" data-parent=' + parent + '> \
<td class="total col-1"> \
<div class="expandable-container"> \
<span id="' + request.pathFormatted + '" style="margin-left: ' + (level * 10) + 'px;" class="expand-button' + expandButtonStyle + '"> </span> \
<a href="' + url +'" class="withTooltip">' + ellipsedLabel({ name: request.name, parentClass: "table-cell-tooltip" }) + '</a><span class="value" style="display:none;">' + index + '</span> \
</div> \
</td> \
<td class="value total col-2">' + request.stats.numberOfRequests.total + '</td> \
<td class="value ok col-3">' + request.stats.numberOfRequests.ok + '</td> \
<td class="value ko col-4">' + request.stats.numberOfRequests.ko + '</td> \
<td class="value ko col-5">' + koPercent + '</td> \
<td class="value total col-6">' + request.stats.meanNumberOfRequestsPerSecond.total + '</td> \
<td class="value total col-7">' + request.stats.minResponseTime.total + '</td> \
<td class="value total col-8">' + request.stats.percentiles1.total + '</td> \
<td class="value total col-9">' + request.stats.percentiles2.total + '</td> \
<td class="value total col-10">' + request.stats.percentiles3.total + '</td> \
<td class="value total col-11">' + request.stats.percentiles4.total + '</td> \
<td class="value total col-12">' + request.stats.maxResponseTime.total + '</td> \
<td class="value total col-13">' + request.stats.meanResponseTime.total + '</td> \
<td class="value total col-14">' + request.stats.standardDeviation.total + '</td> \
</tr>';
}
function generateHtmlRowsForGroup(group, level, index, parent) {
var buffer = '';
if (!parent)
parent = 'ROOT';
else {
buffer += generateHtmlRow(group, level - 1, index, parent, true);
index++;
parent = group.pathFormatted;
}
$.each(group.contents, function(contentName, content) {
if (content.type == 'GROUP') {
var result = generateHtmlRowsForGroup(content, level + 1, index, parent);
buffer += result.html;
index = result.index;
}
else if (content.type == 'REQUEST') {
buffer += generateHtmlRow(content, level, index, parent);
index++;
}
});
return { html: buffer, index: index };
}
$('#container_statistics_head tbody').append(generateHtmlRow(stats, 0, 0));
var lines = generateHtmlRowsForGroup(stats, 0, 0);
$('#container_statistics_body tbody').append(lines.html);
$('#container_statistics_head').sortable('#container_statistics_body');
$('.statistics').expandable();
if (lines.index < 30) {
$('#statistics_title span').attr('style', 'display: none;');
} else {
$('#statistics_title').addClass('title_collapsed');
$('#statistics_title').click(function() {
$('#toggle-stats').toggleClass("off");
$(this).toggleClass('title_collapsed').toggleClass('title_expanded');
$('#container_statistics_body').parent().toggleClass('scrollable').toggleClass('');
});
}
$('.table-cell-tooltip').popover({trigger:'hover'});
$('#container_errors').sortable('#container_errors');
allUsersData.yAxis = 0;
var allUsersChart = new Highcharts.StockChart({
chart: {
renderTo: 'active_users',
zoomType: 'x'
},
credits: { enabled: false },
legend: {
enabled: true,
floating: true,
align: 'right',
verticalAlign: 'top',
layout: 'vertical',
borderWidth: 0,
itemStyle: { fontWeight: "normal" },
symbolRadius: 0
},
title: { text: 'A title to let highcharts reserve the place for the title set later' },
navigator: {
maskInside: false
},
rangeSelector: {
buttonSpacing: 0,
buttonTheme: {
fill: '#CFC9C6',
padding: 1,
stroke: '#000000',
'stroke-width': 0.25,
style: {
color: '#000000',
fontWeight: 'bold',
},
states: {
stroke: '#000000',
'stroke-width': 0.25,
hover: {
fill: '#92918C',
style: { color: 'black' }
},
select: {
fill: '#FFA900',
style: { color: 'white' }
}
}
},
buttons : [
{
type : 'minute',
count : 1,
text : '1m'
}, {
type : 'minute',
count : 10,
text : '10m'
}, {
type : 'hour',
count : 1,
text : '1h'
}, {
type : 'all',
count : 1,
text : 'All'
}
],
selected : 3,
inputEnabled : false
},
xAxis: {
type: 'datetime',
ordinal: false,
maxZoom: 10000 // three days
},
yAxis: {
title: { text: 'Number of Active Users' },
opposite: false,
min: 0
},
series: [
{
color: '#5E7BE2',
name: 'créditos',
data: [
[1708993546000,0],[1708993547000,0],[1708993548000,0],[1708993549000,0],[1708993550000,1],[1708993551000,1],[1708993552000,2],[1708993553000,4],[1708993554000,4],[1708993555000,5],[1708993556000,6],[1708993557000,7],[1708993558000,8],[1708993559000,8],[1708993560000,10],[1708993561000,10],[1708993562000,12],[1708993563000,12],[1708993564000,14],[1708993565000,14],[1708993566000,15],[1708993567000,16],[1708993568000,17],[1708993569000,17],[1708993570000,19],[1708993571000,20],[1708993572000,20],[1708993573000,22],[1708993574000,22],[1708993575000,23],[1708993576000,25],[1708993577000,25],[1708993578000,26],[1708993579000,26],[1708993580000,28],[1708993581000,29],[1708993582000,30],[1708993583000,30],[1708993584000,32],[1708993585000,32],[1708993586000,33],[1708993587000,34],[1708993588000,35],[1708993589000,36],[1708993590000,37],[1708993591000,38],[1708993592000,39],[1708993593000,39],[1708993594000,41],[1708993595000,41],[1708993596000,43],[1708993597000,43],[1708993598000,44],[1708993599000,45],[1708993600000,46],[1708993601000,48],[1708993602000,49],[1708993603000,49],[1708993604000,51],[1708993605000,51],[1708993606000,53],[1708993607000,53],[1708993608000,53],[1708993609000,54],[1708993610000,56],[1708993611000,55],[1708993612000,57],[1708993613000,58],[1708993614000,59],[1708993615000,59],[1708993616000,61],[1708993617000,61],[1708993618000,63],[1708993619000,63],[1708993620000,64],[1708993621000,65],[1708993622000,66],[1708993623000,67],[1708993624000,68],[1708993625000,68],[1708993626000,70],[1708993627000,70],[1708993628000,72],[1708993629000,72],[1708993630000,73],[1708993631000,74],[1708993632000,75],[1708993633000,76],[1708993634000,77],[1708993635000,78],[1708993636000,79],[1708993637000,79],[1708993638000,81],[1708993639000,81],[1708993640000,82],[1708993641000,83],[1708993642000,85],[1708993643000,85],[1708993644000,86],[1708993645000,86],[1708993646000,88],[1708993647000,89],[1708993648000,89],[1708993649000,91],[1708993650000,91],[1708993651000,92],[1708993652000,94],[1708993653000,94],[1708993654000,96],[1708993655000,97],[1708993656000,98],[1708993657000,98],[1708993658000,100],[1708993659000,100],[1708993660000,102],[1708993661000,101],[1708993662000,104],[1708993663000,104],[1708993664000,105],[1708993665000,106],[1708993666000,106],[1708993667000,107],[1708993668000,107],[1708993669000,109],[1708993670000,110],[1708993671000,110],[1708993672000,110],[1708993673000,110],[1708993674000,110],[1708993675000,110],[1708993676000,110],[1708993677000,110],[1708993678000,110],[1708993679000,110],[1708993680000,110],[1708993681000,111],[1708993682000,110],[1708993683000,110],[1708993684000,110],[1708993685000,110],[1708993686000,110],[1708993687000,110],[1708993688000,110],[1708993689000,110],[1708993690000,110],[1708993691000,110],[1708993692000,110],[1708993693000,110],[1708993694000,110],[1708993695000,110],[1708993696000,110],[1708993697000,110],[1708993698000,110],[1708993699000,110],[1708993700000,110],[1708993701000,110],[1708993702000,110],[1708993703000,110],[1708993704000,110],[1708993705000,110],[1708993706000,110],[1708993707000,110],[1708993708000,110],[1708993709000,110],[1708993710000,110],[1708993711000,110],[1708993712000,110],[1708993713000,110],[1708993714000,110],[1708993715000,110],[1708993716000,110],[1708993717000,110],[1708993718000,110],[1708993719000,110],[1708993720000,110],[1708993721000,110],[1708993722000,110],[1708993723000,110],[1708993724000,110],[1708993725000,110],[1708993726000,110],[1708993727000,110],[1708993728000,110],[1708993729000,110],[1708993730000,110],[1708993731000,110],[1708993732000,110],[1708993733000,110],[1708993734000,110],[1708993735000,110],[1708993736000,110],[1708993737000,110],[1708993738000,110],[1708993739000,110],[1708993740000,110],[1708993741000,110],[1708993742000,110],[1708993743000,110],[1708993744000,110],[1708993745000,110],[1708993746000,110],[1708993747000,110],[1708993748000,110],[1708993749000,111],[1708993750000,110],[1708993751000,110],[1708993752000,110],[1708993753000,110],[1708993754000,110],[1708993755000,110],[1708993756000,110],[1708993757000,110],[1708993758000,110],[1708993759000,110],[1708993760000,110],[1708993761000,110],[1708993762000,110],[1708993763000,110],[1708993764000,110],[1708993765000,110],[1708993766000,110],[1708993767000,110],[1708993768000,110],[1708993769000,110],[1708993770000,110],[1708993771000,110],[1708993772000,110],[1708993773000,110],[1708993774000,110],[1708993775000,110],[1708993776000,110],[1708993777000,110],[1708993778000,110],[1708993779000,110],[1708993780000,110],[1708993781000,110],[1708993782000,110],[1708993783000,110],[1708993784000,110],[1708993785000,110],[1708993786000,110],[1708993787000,110],[1708993788000,110],[1708993789000,111],[1708993790000,107]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#68b65c',
name: 'débitos',
data: [
[1708993546000,0],[1708993547000,0],[1708993548000,0],[1708993549000,0],[1708993550000,1],[1708993551000,1],[1708993552000,4],[1708993553000,6],[1708993554000,7],[1708993555000,9],[1708993556000,11],[1708993557000,13],[1708993558000,15],[1708993559000,16],[1708993560000,19],[1708993561000,20],[1708993562000,22],[1708993563000,24],[1708993564000,25],[1708993565000,28],[1708993566000,29],[1708993567000,31],[1708993568000,33],[1708993569000,35],[1708993570000,37],[1708993571000,38],[1708993572000,40],[1708993573000,42],[1708993574000,44],[1708993575000,46],[1708993576000,48],[1708993577000,51],[1708993578000,52],[1708993579000,54],[1708993580000,56],[1708993581000,56],[1708993582000,59],[1708993583000,60],[1708993584000,62],[1708993585000,64],[1708993586000,66],[1708993587000,68],[1708993588000,69],[1708993589000,71],[1708993590000,74],[1708993591000,74],[1708993592000,77],[1708993593000,79],[1708993594000,80],[1708993595000,82],[1708993596000,84],[1708993597000,86],[1708993598000,88],[1708993599000,89],[1708993600000,92],[1708993601000,93],[1708993602000,96],[1708993603000,97],[1708993604000,99],[1708993605000,102],[1708993606000,103],[1708993607000,105],[1708993608000,106],[1708993609000,108],[1708993610000,110],[1708993611000,111],[1708993612000,113],[1708993613000,115],[1708993614000,117],[1708993615000,119],[1708993616000,120],[1708993617000,123],[1708993618000,124],[1708993619000,126],[1708993620000,128],[1708993621000,129],[1708993622000,132],[1708993623000,133],[1708993624000,135],[1708993625000,137],[1708993626000,139],[1708993627000,141],[1708993628000,143],[1708993629000,144],[1708993630000,148],[1708993631000,148],[1708993632000,151],[1708993633000,152],[1708993634000,154],[1708993635000,156],[1708993636000,158],[1708993637000,159],[1708993638000,161],[1708993639000,162],[1708993640000,165],[1708993641000,166],[1708993642000,169],[1708993643000,170],[1708993644000,171],[1708993645000,174],[1708993646000,175],[1708993647000,177],[1708993648000,179],[1708993649000,181],[1708993650000,183],[1708993651000,184],[1708993652000,186],[1708993653000,188],[1708993654000,190],[1708993655000,193],[1708993656000,194],[1708993657000,197],[1708993658000,198],[1708993659000,200],[1708993660000,202],[1708993661000,203],[1708993662000,205],[1708993663000,206],[1708993664000,209],[1708993665000,211],[1708993666000,212],[1708993667000,214],[1708993668000,215],[1708993669000,217],[1708993670000,220],[1708993671000,220],[1708993672000,220],[1708993673000,220],[1708993674000,220],[1708993675000,221],[1708993676000,220],[1708993677000,220],[1708993678000,220],[1708993679000,220],[1708993680000,220],[1708993681000,221],[1708993682000,220],[1708993683000,220],[1708993684000,220],[1708993685000,220],[1708993686000,220],[1708993687000,220],[1708993688000,220],[1708993689000,220],[1708993690000,220],[1708993691000,220],[1708993692000,221],[1708993693000,220],[1708993694000,220],[1708993695000,220],[1708993696000,220],[1708993697000,220],[1708993698000,220],[1708993699000,220],[1708993700000,220],[1708993701000,221],[1708993702000,220],[1708993703000,220],[1708993704000,220],[1708993705000,220],[1708993706000,220],[1708993707000,220],[1708993708000,220],[1708993709000,220],[1708993710000,220],[1708993711000,220],[1708993712000,220],[1708993713000,220],[1708993714000,220],[1708993715000,220],[1708993716000,220],[1708993717000,220],[1708993718000,220],[1708993719000,220],[1708993720000,220],[1708993721000,220],[1708993722000,220],[1708993723000,220],[1708993724000,220],[1708993725000,221],[1708993726000,220],[1708993727000,220],[1708993728000,220],[1708993729000,220],[1708993730000,220],[1708993731000,220],[1708993732000,220],[1708993733000,220],[1708993734000,220],[1708993735000,220],[1708993736000,220],[1708993737000,220],[1708993738000,220],[1708993739000,220],[1708993740000,220],[1708993741000,220],[1708993742000,220],[1708993743000,220],[1708993744000,220],[1708993745000,220],[1708993746000,220],[1708993747000,220],[1708993748000,220],[1708993749000,220],[1708993750000,220],[1708993751000,220],[1708993752000,220],[1708993753000,220],[1708993754000,220],[1708993755000,220],[1708993756000,220],[1708993757000,220],[1708993758000,220],[1708993759000,220],[1708993760000,220],[1708993761000,220],[1708993762000,220],[1708993763000,220],[1708993764000,220],[1708993765000,220],[1708993766000,220],[1708993767000,221],[1708993768000,220],[1708993769000,220],[1708993770000,220],[1708993771000,220],[1708993772000,220],[1708993773000,220],[1708993774000,220],[1708993775000,220],[1708993776000,220],[1708993777000,220],[1708993778000,220],[1708993779000,220],[1708993780000,220],[1708993781000,220],[1708993782000,220],[1708993783000,220],[1708993784000,220],[1708993785000,220],[1708993786000,220],[1708993787000,220],[1708993788000,220],[1708993789000,221],[1708993790000,215]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#f15b4f',
name: 'extratos',
data: [
[1708993546000,0],[1708993547000,0],[1708993548000,0],[1708993549000,0],[1708993550000,1],[1708993551000,1],[1708993552000,1],[1708993553000,1],[1708993554000,1],[1708993555000,1],[1708993556000,2],[1708993557000,1],[1708993558000,2],[1708993559000,2],[1708993560000,1],[1708993561000,2],[1708993562000,2],[1708993563000,2],[1708993564000,2],[1708993565000,2],[1708993566000,2],[1708993567000,2],[1708993568000,3],[1708993569000,2],[1708993570000,3],[1708993571000,2],[1708993572000,3],[1708993573000,2],[1708993574000,3],[1708993575000,3],[1708993576000,3],[1708993577000,3],[1708993578000,3],[1708993579000,3],[1708993580000,3],[1708993581000,4],[1708993582000,3],[1708993583000,3],[1708993584000,4],[1708993585000,3],[1708993586000,4],[1708993587000,4],[1708993588000,4],[1708993589000,4],[1708993590000,4],[1708993591000,4],[1708993592000,4],[1708993593000,4],[1708993594000,4],[1708993595000,4],[1708993596000,5],[1708993597000,4],[1708993598000,5],[1708993599000,5],[1708993600000,4],[1708993601000,5],[1708993602000,5],[1708993603000,5],[1708993604000,5],[1708993605000,5],[1708993606000,5],[1708993607000,5],[1708993608000,6],[1708993609000,5],[1708993610000,6],[1708993611000,5],[1708993612000,6],[1708993613000,5],[1708993614000,6],[1708993615000,6],[1708993616000,6],[1708993617000,6],[1708993618000,6],[1708993619000,6],[1708993620000,6],[1708993621000,7],[1708993622000,6],[1708993623000,6],[1708993624000,7],[1708993625000,6],[1708993626000,7],[1708993627000,7],[1708993628000,7],[1708993629000,7],[1708993630000,7],[1708993631000,7],[1708993632000,7],[1708993633000,7],[1708993634000,7],[1708993635000,7],[1708993636000,8],[1708993637000,7],[1708993638000,8],[1708993639000,8],[1708993640000,7],[1708993641000,8],[1708993642000,8],[1708993643000,8],[1708993644000,8],[1708993645000,8],[1708993646000,8],[1708993647000,8],[1708993648000,9],[1708993649000,8],[1708993650000,9],[1708993651000,8],[1708993652000,9],[1708993653000,8],[1708993654000,9],[1708993655000,9],[1708993656000,9],[1708993657000,9],[1708993658000,9],[1708993659000,9],[1708993660000,9],[1708993661000,10],[1708993662000,9],[1708993663000,9],[1708993664000,10],[1708993665000,9],[1708993666000,10],[1708993667000,10],[1708993668000,10],[1708993669000,10],[1708993670000,10],[1708993671000,10],[1708993672000,10],[1708993673000,10],[1708993674000,10],[1708993675000,10],[1708993676000,10],[1708993677000,10],[1708993678000,10],[1708993679000,10],[1708993680000,10],[1708993681000,10],[1708993682000,10],[1708993683000,10],[1708993684000,10],[1708993685000,10],[1708993686000,10],[1708993687000,10],[1708993688000,10],[1708993689000,10],[1708993690000,10],[1708993691000,10],[1708993692000,10],[1708993693000,10],[1708993694000,10],[1708993695000,10],[1708993696000,10],[1708993697000,10],[1708993698000,10],[1708993699000,10],[1708993700000,10],[1708993701000,10],[1708993702000,10],[1708993703000,10],[1708993704000,10],[1708993705000,10],[1708993706000,10],[1708993707000,10],[1708993708000,10],[1708993709000,10],[1708993710000,10],[1708993711000,10],[1708993712000,10],[1708993713000,10],[1708993714000,10],[1708993715000,10],[1708993716000,10],[1708993717000,10],[1708993718000,10],[1708993719000,10],[1708993720000,10],[1708993721000,10],[1708993722000,10],[1708993723000,10],[1708993724000,10],[1708993725000,10],[1708993726000,10],[1708993727000,10],[1708993728000,10],[1708993729000,10],[1708993730000,10],[1708993731000,10],[1708993732000,10],[1708993733000,10],[1708993734000,10],[1708993735000,10],[1708993736000,10],[1708993737000,10],[1708993738000,10],[1708993739000,10],[1708993740000,10],[1708993741000,10],[1708993742000,10],[1708993743000,10],[1708993744000,10],[1708993745000,10],[1708993746000,10],[1708993747000,10],[1708993748000,10],[1708993749000,10],[1708993750000,10],[1708993751000,10],[1708993752000,10],[1708993753000,10],[1708993754000,10],[1708993755000,10],[1708993756000,10],[1708993757000,10],[1708993758000,10],[1708993759000,10],[1708993760000,10],[1708993761000,10],[1708993762000,10],[1708993763000,10],[1708993764000,10],[1708993765000,10],[1708993766000,10],[1708993767000,10],[1708993768000,10],[1708993769000,10],[1708993770000,10],[1708993771000,10],[1708993772000,10],[1708993773000,10],[1708993774000,10],[1708993775000,10],[1708993776000,10],[1708993777000,10],[1708993778000,10],[1708993779000,10],[1708993780000,10],[1708993781000,10],[1708993782000,10],[1708993783000,10],[1708993784000,10],[1708993785000,10],[1708993786000,10],[1708993787000,10],[1708993788000,10],[1708993789000,10],[1708993790000,9]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FFDD00',
name: 'validações',
data: [
[1708993546000,0],[1708993547000,0],[1708993548000,0],[1708993549000,5],[1708993550000,5],[1708993551000,0],[1708993552000,0],[1708993553000,0],[1708993554000,0],[1708993555000,0],[1708993556000,0],[1708993557000,0],[1708993558000,0],[1708993559000,0],[1708993560000,0],[1708993561000,0],[1708993562000,0],[1708993563000,0],[1708993564000,0],[1708993565000,0],[1708993566000,0],[1708993567000,0],[1708993568000,0],[1708993569000,0],[1708993570000,0],[1708993571000,0],[1708993572000,0],[1708993573000,0],[1708993574000,0],[1708993575000,0],[1708993576000,0],[1708993577000,0],[1708993578000,0],[1708993579000,0],[1708993580000,0],[1708993581000,0],[1708993582000,0],[1708993583000,0],[1708993584000,0],[1708993585000,0],[1708993586000,0],[1708993587000,0],[1708993588000,0],[1708993589000,0],[1708993590000,0],[1708993591000,0],[1708993592000,0],[1708993593000,0],[1708993594000,0],[1708993595000,0],[1708993596000,0],[1708993597000,0],[1708993598000,0],[1708993599000,0],[1708993600000,0],[1708993601000,0],[1708993602000,0],[1708993603000,0],[1708993604000,0],[1708993605000,0],[1708993606000,0],[1708993607000,0],[1708993608000,0],[1708993609000,0],[1708993610000,0],[1708993611000,0],[1708993612000,0],[1708993613000,0],[1708993614000,0],[1708993615000,0],[1708993616000,0],[1708993617000,0],[1708993618000,0],[1708993619000,0],[1708993620000,0],[1708993621000,0],[1708993622000,0],[1708993623000,0],[1708993624000,0],[1708993625000,0],[1708993626000,0],[1708993627000,0],[1708993628000,0],[1708993629000,0],[1708993630000,0],[1708993631000,0],[1708993632000,0],[1708993633000,0],[1708993634000,0],[1708993635000,0],[1708993636000,0],[1708993637000,0],[1708993638000,0],[1708993639000,0],[1708993640000,0],[1708993641000,0],[1708993642000,0],[1708993643000,0],[1708993644000,0],[1708993645000,0],[1708993646000,0],[1708993647000,0],[1708993648000,0],[1708993649000,0],[1708993650000,0],[1708993651000,0],[1708993652000,0],[1708993653000,0],[1708993654000,0],[1708993655000,0],[1708993656000,0],[1708993657000,0],[1708993658000,0],[1708993659000,0],[1708993660000,0],[1708993661000,0],[1708993662000,0],[1708993663000,0],[1708993664000,0],[1708993665000,0],[1708993666000,0],[1708993667000,0],[1708993668000,0],[1708993669000,0],[1708993670000,0],[1708993671000,0],[1708993672000,0],[1708993673000,0],[1708993674000,0],[1708993675000,0],[1708993676000,0],[1708993677000,0],[1708993678000,0],[1708993679000,0],[1708993680000,0],[1708993681000,0],[1708993682000,0],[1708993683000,0],[1708993684000,0],[1708993685000,0],[1708993686000,0],[1708993687000,0],[1708993688000,0],[1708993689000,0],[1708993690000,0],[1708993691000,0],[1708993692000,0],[1708993693000,0],[1708993694000,0],[1708993695000,0],[1708993696000,0],[1708993697000,0],[1708993698000,0],[1708993699000,0],[1708993700000,0],[1708993701000,0],[1708993702000,0],[1708993703000,0],[1708993704000,0],[1708993705000,0],[1708993706000,0],[1708993707000,0],[1708993708000,0],[1708993709000,0],[1708993710000,0],[1708993711000,0],[1708993712000,0],[1708993713000,0],[1708993714000,0],[1708993715000,0],[1708993716000,0],[1708993717000,0],[1708993718000,0],[1708993719000,0],[1708993720000,0],[1708993721000,0],[1708993722000,0],[1708993723000,0],[1708993724000,0],[1708993725000,0],[1708993726000,0],[1708993727000,0],[1708993728000,0],[1708993729000,0],[1708993730000,0],[1708993731000,0],[1708993732000,0],[1708993733000,0],[1708993734000,0],[1708993735000,0],[1708993736000,0],[1708993737000,0],[1708993738000,0],[1708993739000,0],[1708993740000,0],[1708993741000,0],[1708993742000,0],[1708993743000,0],[1708993744000,0],[1708993745000,0],[1708993746000,0],[1708993747000,0],[1708993748000,0],[1708993749000,0],[1708993750000,0],[1708993751000,0],[1708993752000,0],[1708993753000,0],[1708993754000,0],[1708993755000,0],[1708993756000,0],[1708993757000,0],[1708993758000,0],[1708993759000,0],[1708993760000,0],[1708993761000,0],[1708993762000,0],[1708993763000,0],[1708993764000,0],[1708993765000,0],[1708993766000,0],[1708993767000,0],[1708993768000,0],[1708993769000,0],[1708993770000,0],[1708993771000,0],[1708993772000,0],[1708993773000,0],[1708993774000,0],[1708993775000,0],[1708993776000,0],[1708993777000,0],[1708993778000,0],[1708993779000,0],[1708993780000,0],[1708993781000,0],[1708993782000,0],[1708993783000,0],[1708993784000,0],[1708993785000,0],[1708993786000,0],[1708993787000,0],[1708993788000,0],[1708993789000,0],[1708993790000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00D5FF',
name: 'validação HTTP 404',
data: [
[1708993546000,0],[1708993547000,0],[1708993548000,0],[1708993549000,1],[1708993550000,0],[1708993551000,0],[1708993552000,0],[1708993553000,0],[1708993554000,0],[1708993555000,0],[1708993556000,0],[1708993557000,0],[1708993558000,0],[1708993559000,0],[1708993560000,0],[1708993561000,0],[1708993562000,0],[1708993563000,0],[1708993564000,0],[1708993565000,0],[1708993566000,0],[1708993567000,0],[1708993568000,0],[1708993569000,0],[1708993570000,0],[1708993571000,0],[1708993572000,0],[1708993573000,0],[1708993574000,0],[1708993575000,0],[1708993576000,0],[1708993577000,0],[1708993578000,0],[1708993579000,0],[1708993580000,0],[1708993581000,0],[1708993582000,0],[1708993583000,0],[1708993584000,0],[1708993585000,0],[1708993586000,0],[1708993587000,0],[1708993588000,0],[1708993589000,0],[1708993590000,0],[1708993591000,0],[1708993592000,0],[1708993593000,0],[1708993594000,0],[1708993595000,0],[1708993596000,0],[1708993597000,0],[1708993598000,0],[1708993599000,0],[1708993600000,0],[1708993601000,0],[1708993602000,0],[1708993603000,0],[1708993604000,0],[1708993605000,0],[1708993606000,0],[1708993607000,0],[1708993608000,0],[1708993609000,0],[1708993610000,0],[1708993611000,0],[1708993612000,0],[1708993613000,0],[1708993614000,0],[1708993615000,0],[1708993616000,0],[1708993617000,0],[1708993618000,0],[1708993619000,0],[1708993620000,0],[1708993621000,0],[1708993622000,0],[1708993623000,0],[1708993624000,0],[1708993625000,0],[1708993626000,0],[1708993627000,0],[1708993628000,0],[1708993629000,0],[1708993630000,0],[1708993631000,0],[1708993632000,0],[1708993633000,0],[1708993634000,0],[1708993635000,0],[1708993636000,0],[1708993637000,0],[1708993638000,0],[1708993639000,0],[1708993640000,0],[1708993641000,0],[1708993642000,0],[1708993643000,0],[1708993644000,0],[1708993645000,0],[1708993646000,0],[1708993647000,0],[1708993648000,0],[1708993649000,0],[1708993650000,0],[1708993651000,0],[1708993652000,0],[1708993653000,0],[1708993654000,0],[1708993655000,0],[1708993656000,0],[1708993657000,0],[1708993658000,0],[1708993659000,0],[1708993660000,0],[1708993661000,0],[1708993662000,0],[1708993663000,0],[1708993664000,0],[1708993665000,0],[1708993666000,0],[1708993667000,0],[1708993668000,0],[1708993669000,0],[1708993670000,0],[1708993671000,0],[1708993672000,0],[1708993673000,0],[1708993674000,0],[1708993675000,0],[1708993676000,0],[1708993677000,0],[1708993678000,0],[1708993679000,0],[1708993680000,0],[1708993681000,0],[1708993682000,0],[1708993683000,0],[1708993684000,0],[1708993685000,0],[1708993686000,0],[1708993687000,0],[1708993688000,0],[1708993689000,0],[1708993690000,0],[1708993691000,0],[1708993692000,0],[1708993693000,0],[1708993694000,0],[1708993695000,0],[1708993696000,0],[1708993697000,0],[1708993698000,0],[1708993699000,0],[1708993700000,0],[1708993701000,0],[1708993702000,0],[1708993703000,0],[1708993704000,0],[1708993705000,0],[1708993706000,0],[1708993707000,0],[1708993708000,0],[1708993709000,0],[1708993710000,0],[1708993711000,0],[1708993712000,0],[1708993713000,0],[1708993714000,0],[1708993715000,0],[1708993716000,0],[1708993717000,0],[1708993718000,0],[1708993719000,0],[1708993720000,0],[1708993721000,0],[1708993722000,0],[1708993723000,0],[1708993724000,0],[1708993725000,0],[1708993726000,0],[1708993727000,0],[1708993728000,0],[1708993729000,0],[1708993730000,0],[1708993731000,0],[1708993732000,0],[1708993733000,0],[1708993734000,0],[1708993735000,0],[1708993736000,0],[1708993737000,0],[1708993738000,0],[1708993739000,0],[1708993740000,0],[1708993741000,0],[1708993742000,0],[1708993743000,0],[1708993744000,0],[1708993745000,0],[1708993746000,0],[1708993747000,0],[1708993748000,0],[1708993749000,0],[1708993750000,0],[1708993751000,0],[1708993752000,0],[1708993753000,0],[1708993754000,0],[1708993755000,0],[1708993756000,0],[1708993757000,0],[1708993758000,0],[1708993759000,0],[1708993760000,0],[1708993761000,0],[1708993762000,0],[1708993763000,0],[1708993764000,0],[1708993765000,0],[1708993766000,0],[1708993767000,0],[1708993768000,0],[1708993769000,0],[1708993770000,0],[1708993771000,0],[1708993772000,0],[1708993773000,0],[1708993774000,0],[1708993775000,0],[1708993776000,0],[1708993777000,0],[1708993778000,0],[1708993779000,0],[1708993780000,0],[1708993781000,0],[1708993782000,0],[1708993783000,0],[1708993784000,0],[1708993785000,0],[1708993786000,0],[1708993787000,0],[1708993788000,0],[1708993789000,0],[1708993790000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00FF00',
name: 'validação concorrência saldo - 0',
data: [
[1708993546000,0],[1708993547000,0],[1708993548000,1],[1708993549000,0],[1708993550000,0],[1708993551000,0],[1708993552000,0],[1708993553000,0],[1708993554000,0],[1708993555000,0],[1708993556000,0],[1708993557000,0],[1708993558000,0],[1708993559000,0],[1708993560000,0],[1708993561000,0],[1708993562000,0],[1708993563000,0],[1708993564000,0],[1708993565000,0],[1708993566000,0],[1708993567000,0],[1708993568000,0],[1708993569000,0],[1708993570000,0],[1708993571000,0],[1708993572000,0],[1708993573000,0],[1708993574000,0],[1708993575000,0],[1708993576000,0],[1708993577000,0],[1708993578000,0],[1708993579000,0],[1708993580000,0],[1708993581000,0],[1708993582000,0],[1708993583000,0],[1708993584000,0],[1708993585000,0],[1708993586000,0],[1708993587000,0],[1708993588000,0],[1708993589000,0],[1708993590000,0],[1708993591000,0],[1708993592000,0],[1708993593000,0],[1708993594000,0],[1708993595000,0],[1708993596000,0],[1708993597000,0],[1708993598000,0],[1708993599000,0],[1708993600000,0],[1708993601000,0],[1708993602000,0],[1708993603000,0],[1708993604000,0],[1708993605000,0],[1708993606000,0],[1708993607000,0],[1708993608000,0],[1708993609000,0],[1708993610000,0],[1708993611000,0],[1708993612000,0],[1708993613000,0],[1708993614000,0],[1708993615000,0],[1708993616000,0],[1708993617000,0],[1708993618000,0],[1708993619000,0],[1708993620000,0],[1708993621000,0],[1708993622000,0],[1708993623000,0],[1708993624000,0],[1708993625000,0],[1708993626000,0],[1708993627000,0],[1708993628000,0],[1708993629000,0],[1708993630000,0],[1708993631000,0],[1708993632000,0],[1708993633000,0],[1708993634000,0],[1708993635000,0],[1708993636000,0],[1708993637000,0],[1708993638000,0],[1708993639000,0],[1708993640000,0],[1708993641000,0],[1708993642000,0],[1708993643000,0],[1708993644000,0],[1708993645000,0],[1708993646000,0],[1708993647000,0],[1708993648000,0],[1708993649000,0],[1708993650000,0],[1708993651000,0],[1708993652000,0],[1708993653000,0],[1708993654000,0],[1708993655000,0],[1708993656000,0],[1708993657000,0],[1708993658000,0],[1708993659000,0],[1708993660000,0],[1708993661000,0],[1708993662000,0],[1708993663000,0],[1708993664000,0],[1708993665000,0],[1708993666000,0],[1708993667000,0],[1708993668000,0],[1708993669000,0],[1708993670000,0],[1708993671000,0],[1708993672000,0],[1708993673000,0],[1708993674000,0],[1708993675000,0],[1708993676000,0],[1708993677000,0],[1708993678000,0],[1708993679000,0],[1708993680000,0],[1708993681000,0],[1708993682000,0],[1708993683000,0],[1708993684000,0],[1708993685000,0],[1708993686000,0],[1708993687000,0],[1708993688000,0],[1708993689000,0],[1708993690000,0],[1708993691000,0],[1708993692000,0],[1708993693000,0],[1708993694000,0],[1708993695000,0],[1708993696000,0],[1708993697000,0],[1708993698000,0],[1708993699000,0],[1708993700000,0],[1708993701000,0],[1708993702000,0],[1708993703000,0],[1708993704000,0],[1708993705000,0],[1708993706000,0],[1708993707000,0],[1708993708000,0],[1708993709000,0],[1708993710000,0],[1708993711000,0],[1708993712000,0],[1708993713000,0],[1708993714000,0],[1708993715000,0],[1708993716000,0],[1708993717000,0],[1708993718000,0],[1708993719000,0],[1708993720000,0],[1708993721000,0],[1708993722000,0],[1708993723000,0],[1708993724000,0],[1708993725000,0],[1708993726000,0],[1708993727000,0],[1708993728000,0],[1708993729000,0],[1708993730000,0],[1708993731000,0],[1708993732000,0],[1708993733000,0],[1708993734000,0],[1708993735000,0],[1708993736000,0],[1708993737000,0],[1708993738000,0],[1708993739000,0],[1708993740000,0],[1708993741000,0],[1708993742000,0],[1708993743000,0],[1708993744000,0],[1708993745000,0],[1708993746000,0],[1708993747000,0],[1708993748000,0],[1708993749000,0],[1708993750000,0],[1708993751000,0],[1708993752000,0],[1708993753000,0],[1708993754000,0],[1708993755000,0],[1708993756000,0],[1708993757000,0],[1708993758000,0],[1708993759000,0],[1708993760000,0],[1708993761000,0],[1708993762000,0],[1708993763000,0],[1708993764000,0],[1708993765000,0],[1708993766000,0],[1708993767000,0],[1708993768000,0],[1708993769000,0],[1708993770000,0],[1708993771000,0],[1708993772000,0],[1708993773000,0],[1708993774000,0],[1708993775000,0],[1708993776000,0],[1708993777000,0],[1708993778000,0],[1708993779000,0],[1708993780000,0],[1708993781000,0],[1708993782000,0],[1708993783000,0],[1708993784000,0],[1708993785000,0],[1708993786000,0],[1708993787000,0],[1708993788000,0],[1708993789000,0],[1708993790000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#9D00FF',
name: 'validação concorrência transações - c',
data: [
[1708993546000,0],[1708993547000,25],[1708993548000,16],[1708993549000,0],[1708993550000,0],[1708993551000,0],[1708993552000,0],[1708993553000,0],[1708993554000,0],[1708993555000,0],[1708993556000,0],[1708993557000,0],[1708993558000,0],[1708993559000,0],[1708993560000,0],[1708993561000,0],[1708993562000,0],[1708993563000,0],[1708993564000,0],[1708993565000,0],[1708993566000,0],[1708993567000,0],[1708993568000,0],[1708993569000,0],[1708993570000,0],[1708993571000,0],[1708993572000,0],[1708993573000,0],[1708993574000,0],[1708993575000,0],[1708993576000,0],[1708993577000,0],[1708993578000,0],[1708993579000,0],[1708993580000,0],[1708993581000,0],[1708993582000,0],[1708993583000,0],[1708993584000,0],[1708993585000,0],[1708993586000,0],[1708993587000,0],[1708993588000,0],[1708993589000,0],[1708993590000,0],[1708993591000,0],[1708993592000,0],[1708993593000,0],[1708993594000,0],[1708993595000,0],[1708993596000,0],[1708993597000,0],[1708993598000,0],[1708993599000,0],[1708993600000,0],[1708993601000,0],[1708993602000,0],[1708993603000,0],[1708993604000,0],[1708993605000,0],[1708993606000,0],[1708993607000,0],[1708993608000,0],[1708993609000,0],[1708993610000,0],[1708993611000,0],[1708993612000,0],[1708993613000,0],[1708993614000,0],[1708993615000,0],[1708993616000,0],[1708993617000,0],[1708993618000,0],[1708993619000,0],[1708993620000,0],[1708993621000,0],[1708993622000,0],[1708993623000,0],[1708993624000,0],[1708993625000,0],[1708993626000,0],[1708993627000,0],[1708993628000,0],[1708993629000,0],[1708993630000,0],[1708993631000,0],[1708993632000,0],[1708993633000,0],[1708993634000,0],[1708993635000,0],[1708993636000,0],[1708993637000,0],[1708993638000,0],[1708993639000,0],[1708993640000,0],[1708993641000,0],[1708993642000,0],[1708993643000,0],[1708993644000,0],[1708993645000,0],[1708993646000,0],[1708993647000,0],[1708993648000,0],[1708993649000,0],[1708993650000,0],[1708993651000,0],[1708993652000,0],[1708993653000,0],[1708993654000,0],[1708993655000,0],[1708993656000,0],[1708993657000,0],[1708993658000,0],[1708993659000,0],[1708993660000,0],[1708993661000,0],[1708993662000,0],[1708993663000,0],[1708993664000,0],[1708993665000,0],[1708993666000,0],[1708993667000,0],[1708993668000,0],[1708993669000,0],[1708993670000,0],[1708993671000,0],[1708993672000,0],[1708993673000,0],[1708993674000,0],[1708993675000,0],[1708993676000,0],[1708993677000,0],[1708993678000,0],[1708993679000,0],[1708993680000,0],[1708993681000,0],[1708993682000,0],[1708993683000,0],[1708993684000,0],[1708993685000,0],[1708993686000,0],[1708993687000,0],[1708993688000,0],[1708993689000,0],[1708993690000,0],[1708993691000,0],[1708993692000,0],[1708993693000,0],[1708993694000,0],[1708993695000,0],[1708993696000,0],[1708993697000,0],[1708993698000,0],[1708993699000,0],[1708993700000,0],[1708993701000,0],[1708993702000,0],[1708993703000,0],[1708993704000,0],[1708993705000,0],[1708993706000,0],[1708993707000,0],[1708993708000,0],[1708993709000,0],[1708993710000,0],[1708993711000,0],[1708993712000,0],[1708993713000,0],[1708993714000,0],[1708993715000,0],[1708993716000,0],[1708993717000,0],[1708993718000,0],[1708993719000,0],[1708993720000,0],[1708993721000,0],[1708993722000,0],[1708993723000,0],[1708993724000,0],[1708993725000,0],[1708993726000,0],[1708993727000,0],[1708993728000,0],[1708993729000,0],[1708993730000,0],[1708993731000,0],[1708993732000,0],[1708993733000,0],[1708993734000,0],[1708993735000,0],[1708993736000,0],[1708993737000,0],[1708993738000,0],[1708993739000,0],[1708993740000,0],[1708993741000,0],[1708993742000,0],[1708993743000,0],[1708993744000,0],[1708993745000,0],[1708993746000,0],[1708993747000,0],[1708993748000,0],[1708993749000,0],[1708993750000,0],[1708993751000,0],[1708993752000,0],[1708993753000,0],[1708993754000,0],[1708993755000,0],[1708993756000,0],[1708993757000,0],[1708993758000,0],[1708993759000,0],[1708993760000,0],[1708993761000,0],[1708993762000,0],[1708993763000,0],[1708993764000,0],[1708993765000,0],[1708993766000,0],[1708993767000,0],[1708993768000,0],[1708993769000,0],[1708993770000,0],[1708993771000,0],[1708993772000,0],[1708993773000,0],[1708993774000,0],[1708993775000,0],[1708993776000,0],[1708993777000,0],[1708993778000,0],[1708993779000,0],[1708993780000,0],[1708993781000,0],[1708993782000,0],[1708993783000,0],[1708993784000,0],[1708993785000,0],[1708993786000,0],[1708993787000,0],[1708993788000,0],[1708993789000,0],[1708993790000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FF00E1',
name: 'validação concorrência saldo - -25',
data: [
[1708993546000,1],[1708993547000,1],[1708993548000,0],[1708993549000,0],[1708993550000,0],[1708993551000,0],[1708993552000,0],[1708993553000,0],[1708993554000,0],[1708993555000,0],[1708993556000,0],[1708993557000,0],[1708993558000,0],[1708993559000,0],[1708993560000,0],[1708993561000,0],[1708993562000,0],[1708993563000,0],[1708993564000,0],[1708993565000,0],[1708993566000,0],[1708993567000,0],[1708993568000,0],[1708993569000,0],[1708993570000,0],[1708993571000,0],[1708993572000,0],[1708993573000,0],[1708993574000,0],[1708993575000,0],[1708993576000,0],[1708993577000,0],[1708993578000,0],[1708993579000,0],[1708993580000,0],[1708993581000,0],[1708993582000,0],[1708993583000,0],[1708993584000,0],[1708993585000,0],[1708993586000,0],[1708993587000,0],[1708993588000,0],[1708993589000,0],[1708993590000,0],[1708993591000,0],[1708993592000,0],[1708993593000,0],[1708993594000,0],[1708993595000,0],[1708993596000,0],[1708993597000,0],[1708993598000,0],[1708993599000,0],[1708993600000,0],[1708993601000,0],[1708993602000,0],[1708993603000,0],[1708993604000,0],[1708993605000,0],[1708993606000,0],[1708993607000,0],[1708993608000,0],[1708993609000,0],[1708993610000,0],[1708993611000,0],[1708993612000,0],[1708993613000,0],[1708993614000,0],[1708993615000,0],[1708993616000,0],[1708993617000,0],[1708993618000,0],[1708993619000,0],[1708993620000,0],[1708993621000,0],[1708993622000,0],[1708993623000,0],[1708993624000,0],[1708993625000,0],[1708993626000,0],[1708993627000,0],[1708993628000,0],[1708993629000,0],[1708993630000,0],[1708993631000,0],[1708993632000,0],[1708993633000,0],[1708993634000,0],[1708993635000,0],[1708993636000,0],[1708993637000,0],[1708993638000,0],[1708993639000,0],[1708993640000,0],[1708993641000,0],[1708993642000,0],[1708993643000,0],[1708993644000,0],[1708993645000,0],[1708993646000,0],[1708993647000,0],[1708993648000,0],[1708993649000,0],[1708993650000,0],[1708993651000,0],[1708993652000,0],[1708993653000,0],[1708993654000,0],[1708993655000,0],[1708993656000,0],[1708993657000,0],[1708993658000,0],[1708993659000,0],[1708993660000,0],[1708993661000,0],[1708993662000,0],[1708993663000,0],[1708993664000,0],[1708993665000,0],[1708993666000,0],[1708993667000,0],[1708993668000,0],[1708993669000,0],[1708993670000,0],[1708993671000,0],[1708993672000,0],[1708993673000,0],[1708993674000,0],[1708993675000,0],[1708993676000,0],[1708993677000,0],[1708993678000,0],[1708993679000,0],[1708993680000,0],[1708993681000,0],[1708993682000,0],[1708993683000,0],[1708993684000,0],[1708993685000,0],[1708993686000,0],[1708993687000,0],[1708993688000,0],[1708993689000,0],[1708993690000,0],[1708993691000,0],[1708993692000,0],[1708993693000,0],[1708993694000,0],[1708993695000,0],[1708993696000,0],[1708993697000,0],[1708993698000,0],[1708993699000,0],[1708993700000,0],[1708993701000,0],[1708993702000,0],[1708993703000,0],[1708993704000,0],[1708993705000,0],[1708993706000,0],[1708993707000,0],[1708993708000,0],[1708993709000,0],[1708993710000,0],[1708993711000,0],[1708993712000,0],[1708993713000,0],[1708993714000,0],[1708993715000,0],[1708993716000,0],[1708993717000,0],[1708993718000,0],[1708993719000,0],[1708993720000,0],[1708993721000,0],[1708993722000,0],[1708993723000,0],[1708993724000,0],[1708993725000,0],[1708993726000,0],[1708993727000,0],[1708993728000,0],[1708993729000,0],[1708993730000,0],[1708993731000,0],[1708993732000,0],[1708993733000,0],[1708993734000,0],[1708993735000,0],[1708993736000,0],[1708993737000,0],[1708993738000,0],[1708993739000,0],[1708993740000,0],[1708993741000,0],[1708993742000,0],[1708993743000,0],[1708993744000,0],[1708993745000,0],[1708993746000,0],[1708993747000,0],[1708993748000,0],[1708993749000,0],[1708993750000,0],[1708993751000,0],[1708993752000,0],[1708993753000,0],[1708993754000,0],[1708993755000,0],[1708993756000,0],[1708993757000,0],[1708993758000,0],[1708993759000,0],[1708993760000,0],[1708993761000,0],[1708993762000,0],[1708993763000,0],[1708993764000,0],[1708993765000,0],[1708993766000,0],[1708993767000,0],[1708993768000,0],[1708993769000,0],[1708993770000,0],[1708993771000,0],[1708993772000,0],[1708993773000,0],[1708993774000,0],[1708993775000,0],[1708993776000,0],[1708993777000,0],[1708993778000,0],[1708993779000,0],[1708993780000,0],[1708993781000,0],[1708993782000,0],[1708993783000,0],[1708993784000,0],[1708993785000,0],[1708993786000,0],[1708993787000,0],[1708993788000,0],[1708993789000,0],[1708993790000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#AECAEB',
name: 'validação concorrência transações - d',
data: [
[1708993546000,25],[1708993547000,0],[1708993548000,0],[1708993549000,0],[1708993550000,0],[1708993551000,0],[1708993552000,0],[1708993553000,0],[1708993554000,0],[1708993555000,0],[1708993556000,0],[1708993557000,0],[1708993558000,0],[1708993559000,0],[1708993560000,0],[1708993561000,0],[1708993562000,0],[1708993563000,0],[1708993564000,0],[1708993565000,0],[1708993566000,0],[1708993567000,0],[1708993568000,0],[1708993569000,0],[1708993570000,0],[1708993571000,0],[1708993572000,0],[1708993573000,0],[1708993574000,0],[1708993575000,0],[1708993576000,0],[1708993577000,0],[1708993578000,0],[1708993579000,0],[1708993580000,0],[1708993581000,0],[1708993582000,0],[1708993583000,0],[1708993584000,0],[1708993585000,0],[1708993586000,0],[1708993587000,0],[1708993588000,0],[1708993589000,0],[1708993590000,0],[1708993591000,0],[1708993592000,0],[1708993593000,0],[1708993594000,0],[1708993595000,0],[1708993596000,0],[1708993597000,0],[1708993598000,0],[1708993599000,0],[1708993600000,0],[1708993601000,0],[1708993602000,0],[1708993603000,0],[1708993604000,0],[1708993605000,0],[1708993606000,0],[1708993607000,0],[1708993608000,0],[1708993609000,0],[1708993610000,0],[1708993611000,0],[1708993612000,0],[1708993613000,0],[1708993614000,0],[1708993615000,0],[1708993616000,0],[1708993617000,0],[1708993618000,0],[1708993619000,0],[1708993620000,0],[1708993621000,0],[1708993622000,0],[1708993623000,0],[1708993624000,0],[1708993625000,0],[1708993626000,0],[1708993627000,0],[1708993628000,0],[1708993629000,0],[1708993630000,0],[1708993631000,0],[1708993632000,0],[1708993633000,0],[1708993634000,0],[1708993635000,0],[1708993636000,0],[1708993637000,0],[1708993638000,0],[1708993639000,0],[1708993640000,0],[1708993641000,0],[1708993642000,0],[1708993643000,0],[1708993644000,0],[1708993645000,0],[1708993646000,0],[1708993647000,0],[1708993648000,0],[1708993649000,0],[1708993650000,0],[1708993651000,0],[1708993652000,0],[1708993653000,0],[1708993654000,0],[1708993655000,0],[1708993656000,0],[1708993657000,0],[1708993658000,0],[1708993659000,0],[1708993660000,0],[1708993661000,0],[1708993662000,0],[1708993663000,0],[1708993664000,0],[1708993665000,0],[1708993666000,0],[1708993667000,0],[1708993668000,0],[1708993669000,0],[1708993670000,0],[1708993671000,0],[1708993672000,0],[1708993673000,0],[1708993674000,0],[1708993675000,0],[1708993676000,0],[1708993677000,0],[1708993678000,0],[1708993679000,0],[1708993680000,0],[1708993681000,0],[1708993682000,0],[1708993683000,0],[1708993684000,0],[1708993685000,0],[1708993686000,0],[1708993687000,0],[1708993688000,0],[1708993689000,0],[1708993690000,0],[1708993691000,0],[1708993692000,0],[1708993693000,0],[1708993694000,0],[1708993695000,0],[1708993696000,0],[1708993697000,0],[1708993698000,0],[1708993699000,0],[1708993700000,0],[1708993701000,0],[1708993702000,0],[1708993703000,0],[1708993704000,0],[1708993705000,0],[1708993706000,0],[1708993707000,0],[1708993708000,0],[1708993709000,0],[1708993710000,0],[1708993711000,0],[1708993712000,0],[1708993713000,0],[1708993714000,0],[1708993715000,0],[1708993716000,0],[1708993717000,0],[1708993718000,0],[1708993719000,0],[1708993720000,0],[1708993721000,0],[1708993722000,0],[1708993723000,0],[1708993724000,0],[1708993725000,0],[1708993726000,0],[1708993727000,0],[1708993728000,0],[1708993729000,0],[1708993730000,0],[1708993731000,0],[1708993732000,0],[1708993733000,0],[1708993734000,0],[1708993735000,0],[1708993736000,0],[1708993737000,0],[1708993738000,0],[1708993739000,0],[1708993740000,0],[1708993741000,0],[1708993742000,0],[1708993743000,0],[1708993744000,0],[1708993745000,0],[1708993746000,0],[1708993747000,0],[1708993748000,0],[1708993749000,0],[1708993750000,0],[1708993751000,0],[1708993752000,0],[1708993753000,0],[1708993754000,0],[1708993755000,0],[1708993756000,0],[1708993757000,0],[1708993758000,0],[1708993759000,0],[1708993760000,0],[1708993761000,0],[1708993762000,0],[1708993763000,0],[1708993764000,0],[1708993765000,0],[1708993766000,0],[1708993767000,0],[1708993768000,0],[1708993769000,0],[1708993770000,0],[1708993771000,0],[1708993772000,0],[1708993773000,0],[1708993774000,0],[1708993775000,0],[1708993776000,0],[1708993777000,0],[1708993778000,0],[1708993779000,0],[1708993780000,0],[1708993781000,0],[1708993782000,0],[1708993783000,0],[1708993784000,0],[1708993785000,0],[1708993786000,0],[1708993787000,0],[1708993788000,0],[1708993789000,0],[1708993790000,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', '20', '21', '22', '24', '25', '26', '27', '28', '29', '30', '31', '32', '33', '34', '37', '39', '41', '43', '44', '45', '51', '52', '53', '54', '57', '58', '60', '61', '62'],
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.03,47.26,49.57,2.57,0.13,0.03,0.09,0.1,0.01,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
],
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([[1708993546,[25,37,51,58,58,58,60,61,61,62]],[1708993547,[3,3,3,3,3,3,3,3,3,3]],[1708993548,[8,11,17,21,24,25,25,25,28,29]],[1708993549,[3,3,3,3,3,3,3,3,3,3]],[1708993550,[1,2,3,8,10,13,14,18,21,21]],[1708993551,[4,5,6,6,6,6,6,6,6,6]],[1708993552,[3,4,4,4,4,4,4,4,4,4]],[1708993553,[3,3,4,4,4,4,4,5,6,7]],[1708993554,[3,3,4,4,4,4,4,4,4,4]],[1708993555,[3,3,3,3,3,3,3,4,4,5]],[1708993556,[3,3,3,3,3,4,4,4,4,4]],[1708993557,[2,3,3,3,3,3,4,4,4,4]],[1708993558,[2,2,3,3,3,3,3,4,4,5]],[1708993559,[2,3,3,3,3,3,4,4,4,5]],[1708993560,[2,3,3,3,3,4,4,4,4,5]],[1708993561,[2,3,3,3,3,3,3,3,4,4]],[1708993562,[2,2,3,3,3,3,3,3,4,4]],[1708993563,[2,2,3,3,3,3,3,4,4,4]],[1708993564,[2,2,3,3,3,3,3,4,4,4]],[1708993565,[2,2,3,3,3,3,3,3,4,4]],[1708993566,[1,2,3,3,3,3,3,3,4,4]],[1708993567,[1,2,2,3,3,3,3,4,8,8]],[1708993568,[2,2,2,3,3,3,3,3,3,4]],[1708993569,[2,2,2,3,3,3,3,3,3,3]],[1708993570,[2,2,2,3,3,3,3,3,4,4]],[1708993571,[1,2,2,2,3,3,3,3,3,3]],[1708993572,[1,2,2,3,3,3,3,3,3,3]],[1708993573,[1,2,2,3,3,3,3,3,3,3]],[1708993574,[1,2,2,2,2,2,2,3,3,3]],[1708993575,[1,2,2,2,3,3,3,3,3,4]],[1708993576,[1,2,2,3,3,3,3,3,3,4]],[1708993577,[1,2,2,2,3,3,3,3,3,3]],[1708993578,[1,2,2,2,3,3,3,3,3,3]],[1708993579,[1,2,2,2,2,2,2,2,2,3]],[1708993580,[1,2,2,2,2,2,2,2,3,3]],[1708993581,[1,1,2,2,2,2,2,2,3,3]],[1708993582,[1,2,2,2,2,2,2,3,3,3]],[1708993583,[1,2,2,2,2,2,2,3,3,3]],[1708993584,[1,1,2,2,2,2,2,2,3,3]],[1708993585,[1,2,2,2,2,2,2,3,3,3]],[1708993586,[1,2,2,2,2,2,3,3,4,9]],[1708993587,[1,2,2,2,2,2,3,3,6,7]],[1708993588,[1,2,2,2,2,2,2,3,3,3]],[1708993589,[1,2,2,2,2,2,2,2,3,3]],[1708993590,[1,2,2,2,2,2,2,3,3,3]],[1708993591,[1,2,2,2,2,2,2,2,3,3]],[1708993592,[1,2,2,2,2,2,2,2,3,4]],[1708993593,[1,2,2,2,2,2,2,2,3,3]],[1708993594,[1,2,2,2,2,2,2,2,2,3]],[1708993595,[1,2,2,2,2,2,2,3,3,3]],[1708993596,[1,1,2,2,2,2,2,2,3,3]],[1708993597,[1,1,2,2,2,2,3,3,3,3]],[1708993598,[1,2,2,2,2,2,2,3,3,4]],[1708993599,[1,1,1,2,2,2,2,2,2,2]],[1708993600,[1,1,2,2,2,2,2,3,3,3]],[1708993601,[1,1,1,2,2,2,2,2,2,3]],[1708993602,[1,1,1,1,1,2,2,2,4,6]],[1708993603,[1,1,2,2,2,2,2,2,4,7]],[1708993604,[1,1,2,2,2,2,2,2,3,3]],[1708993605,[1,1,1,2,2,2,2,2,2,2]],[1708993606,[1,1,2,2,2,2,2,2,3,3]],[1708993607,[1,1,2,2,2,2,2,2,2,3]],[1708993608,[1,1,2,2,2,2,2,2,3,3]],[1708993609,[1,1,2,2,2,2,2,2,3,3]],[1708993610,[1,2,2,2,2,2,2,3,3,5]],[1708993611,[1,2,2,2,2,2,2,2,3,4]],[1708993612,[1,2,2,2,2,2,2,2,3,3]],[1708993613,[1,1,2,2,2,2,2,2,3,3]],[1708993614,[1,1,1,1,1,2,2,2,2,2]],[1708993615,[1,1,1,2,2,2,2,2,6,6]],[1708993616,[1,1,1,1,2,2,2,2,2,4]],[1708993617,[1,1,1,2,2,2,2,2,2,2]],[1708993618,[1,1,2,2,2,2,2,2,3,3]],[1708993619,[1,1,2,2,2,2,2,2,3,3]],[1708993620,[1,1,1,1,1,1,2,2,2,2]],[1708993621,[1,1,1,1,1,1,2,2,2,3]],[1708993622,[1,1,1,2,2,2,2,2,2,2]],[1708993623,[1,1,1,2,2,2,2,2,2,2]],[1708993624,[1,1,2,2,2,2,2,2,2,2]],[1708993625,[1,1,2,2,2,2,2,2,6,7]],[1708993626,[1,1,2,2,2,2,2,2,2,3]],[1708993627,[1,1,2,2,2,2,2,2,2,4]],[1708993628,[1,1,1,2,2,2,2,2,2,3]],[1708993629,[1,1,1,1,1,2,2,2,2,2]],[1708993630,[1,1,1,1,1,1,2,2,2,3]],[1708993631,[0,1,1,2,2,2,2,2,2,2]],[1708993632,[1,2,2,2,2,2,2,2,2,3]],[1708993633,[1,2,2,2,2,2,2,2,3,3]],[1708993634,[1,1,1,2,2,2,2,2,5,7]],[1708993635,[0,1,1,1,1,1,1,2,2,4]],[1708993636,[1,1,1,1,2,2,2,2,2,2]],[1708993637,[1,1,2,2,2,2,2,2,3,3]],[1708993638,[1,1,2,2,2,2,2,2,3,3]],[1708993639,[0,1,1,2,2,2,2,2,2,3]],[1708993640,[1,1,2,2,2,2,2,2,2,3]],[1708993641,[1,1,1,2,2,2,2,2,3,3]],[1708993642,[1,1,1,2,2,2,2,2,6,8]],[1708993643,[1,1,1,2,2,2,2,2,2,2]],[1708993644,[1,1,1,2,2,2,2,2,2,2]],[1708993645,[1,1,2,2,2,2,2,2,3,3]],[1708993646,[1,2,2,2,2,2,2,2,3,3]],[1708993647,[1,2,2,2,2,2,2,2,3,3]],[1708993648,[1,1,1,2,2,2,2,2,3,3]],[1708993649,[1,1,1,2,2,2,2,2,3,6]],[1708993650,[0,1,1,2,2,2,2,2,3,6]],[1708993651,[0,1,1,2,2,2,2,2,2,2]],[1708993652,[1,1,2,2,2,2,2,2,2,3]],[1708993653,[0,1,2,2,2,2,2,2,2,3]],[1708993654,[1,1,2,2,2,2,2,2,2,3]],[1708993655,[1,1,1,2,2,2,2,2,2,3]],[1708993656,[1,1,1,2,2,2,2,2,7,7]],[1708993657,[1,1,2,2,2,2,2,2,3,3]],[1708993658,[1,2,2,2,2,2,2,2,3,3]],[1708993659,[1,2,2,2,2,2,2,2,2,3]],[1708993660,[1,2,2,2,2,2,2,2,3,3]],[1708993661,[1,1,1,2,2,2,2,2,3,3]],[1708993662,[1,1,1,1,2,2,2,2,2,3]],[1708993663,[1,1,2,2,2,2,2,2,4,6]],[1708993664,[1,1,2,2,2,2,2,2,3,4]],[1708993665,[1,1,1,2,2,2,2,2,2,3]],[1708993666,[1,1,1,2,2,2,2,2,2,3]],[1708993667,[1,1,2,2,2,2,2,2,3,3]],[1708993668,[1,1,1,2,2,2,2,2,3,4]],[1708993669,[0,1,1,1,1,1,1,2,4,7]],[1708993670,[1,1,1,1,1,1,2,2,2,2]],[1708993671,[1,1,1,2,2,2,2,2,2,3]],[1708993672,[1,1,2,2,2,2,2,2,3,3]],[1708993673,[1,1,1,1,2,2,2,2,2,3]],[1708993674,[1,1,1,2,2,2,2,2,2,4]],[1708993675,[1,1,1,2,2,2,2,2,5,7]],[1708993676,[1,1,1,2,2,2,2,2,3,3]],[1708993677,[1,1,2,2,2,2,2,2,3,3]],[1708993678,[1,1,2,2,2,2,2,2,2,3]],[1708993679,[0,1,1,1,1,2,2,2,2,3]],[1708993680,[1,1,1,2,2,2,2,2,2,3]],[1708993681,[0,1,2,2,2,2,2,3,4,7]],[1708993682,[0,1,1,1,1,1,2,2,2,3]],[1708993683,[1,1,1,2,2,2,2,2,2,3]],[1708993684,[1,1,2,2,2,2,2,2,3,4]],[1708993685,[1,1,2,2,2,2,2,2,2,3]],[1708993686,[1,1,2,2,2,2,2,2,3,3]],[1708993687,[1,2,2,2,2,2,2,3,6,8]],[1708993688,[1,2,2,2,2,2,2,2,3,4]],[1708993689,[1,1,1,2,2,2,2,2,3,3]],[1708993690,[1,1,1,2,2,2,2,2,2,3]],[1708993691,[1,1,2,2,2,2,2,2,2,3]],[1708993692,[1,1,2,2,2,2,2,2,3,3]],[1708993693,[1,1,1,2,2,2,2,2,4,7]],[1708993694,[1,1,2,2,2,2,2,2,2,3]],[1708993695,[1,1,2,2,2,2,2,3,3,4]],[1708993696,[1,1,1,2,2,2,2,2,2,3]],[1708993697,[1,1,1,1,1,2,2,2,2,3]],[1708993698,[1,1,1,2,2,2,2,2,2,7]],[1708993699,[1,1,1,2,2,2,2,2,22,33]],[1708993700,[1,1,1,1,1,1,2,2,2,2]],[1708993701,[1,1,1,1,1,1,1,1,2,2]],[1708993702,[1,1,1,2,2,2,2,2,2,3]],[1708993703,[1,2,2,2,2,2,2,2,3,3]],[1708993704,[1,2,2,2,2,2,2,2,5,7]],[1708993705,[1,1,2,2,2,2,2,2,2,3]],[1708993706,[1,1,2,2,2,2,2,2,2,3]],[1708993707,[1,2,2,2,2,2,2,2,3,3]],[1708993708,[1,1,1,2,2,2,2,2,3,3]],[1708993709,[1,1,1,2,2,2,2,2,3,3]],[1708993710,[1,1,2,2,2,2,2,3,4,7]],[1708993711,[1,1,1,2,2,2,2,2,3,3]],[1708993712,[1,1,1,2,2,2,2,2,3,3]],[1708993713,[1,1,1,2,2,2,2,2,3,4]],[1708993714,[1,1,1,2,2,2,2,2,2,2]],[1708993715,[1,1,2,2,2,2,2,2,2,3]],[1708993716,[1,1,2,2,2,2,2,2,5,7]],[1708993717,[1,1,2,2,2,2,2,3,15,32]],[1708993718,[1,2,2,2,2,2,2,2,3,3]],[1708993719,[1,1,2,2,2,2,2,2,3,3]],[1708993720,[1,1,2,2,2,2,2,2,2,3]],[1708993721,[0,1,1,2,2,2,2,2,3,3]],[1708993722,[1,1,1,1,1,1,1,2,4,6]],[1708993723,[1,1,1,2,2,2,2,2,2,2]],[1708993724,[1,1,2,2,2,2,2,2,3,3]],[1708993725,[1,2,2,2,2,2,2,3,3,4]],[1708993726,[1,1,2,2,2,2,2,2,3,3]],[1708993727,[0,1,1,2,2,2,2,2,2,2]],[1708993728,[1,1,1,1,2,2,2,2,4,7]],[1708993729,[1,1,2,2,2,2,2,2,2,3]],[1708993730,[1,2,2,2,2,2,2,2,3,3]],[1708993731,[1,1,1,2,2,2,2,2,2,3]],[1708993732,[1,1,1,2,2,2,2,2,2,3]],[1708993733,[1,1,2,2,2,2,2,2,3,3]],[1708993734,[1,1,2,2,2,2,2,2,5,7]],[1708993735,[1,1,2,2,2,2,2,2,3,3]],[1708993736,[1,1,2,2,2,2,2,2,2,3]],[1708993737,[1,1,2,2,2,2,2,2,2,3]],[1708993738,[1,1,1,1,1,1,2,2,2,2]],[1708993739,[1,1,1,2,2,2,2,2,3,3]],[1708993740,[1,1,1,2,2,2,2,2,5,7]],[1708993741,[1,1,1,2,2,2,2,2,2,3]],[1708993742,[1,1,2,2,2,2,2,2,2,3]],[1708993743,[1,2,2,2,2,2,2,3,3,4]],[1708993744,[1,1,1,2,2,2,2,2,3,3]],[1708993745,[1,1,1,1,1,2,2,2,2,3]],[1708993746,[1,1,1,2,2,2,2,2,4,7]],[1708993747,[1,1,2,2,2,2,2,2,3,7]],[1708993748,[1,1,2,2,2,2,2,2,2,3]],[1708993749,[1,1,2,2,2,2,2,2,3,3]],[1708993750,[1,1,1,2,2,2,2,2,2,3]],[1708993751,[1,1,2,2,2,2,2,2,3,7]],[1708993752,[1,1,1,2,2,2,2,2,3,7]],[1708993753,[1,1,2,2,2,2,2,2,2,3]],[1708993754,[1,1,1,2,2,2,2,2,3,3]],[1708993755,[1,1,1,1,2,2,2,2,2,2]],[1708993756,[1,1,2,2,2,2,2,2,3,3]],[1708993757,[1,1,2,2,2,2,2,2,4,7]],[1708993758,[1,1,2,2,2,2,2,2,2,3]],[1708993759,[1,1,2,2,2,2,2,2,10,22]],[1708993760,[1,1,2,2,2,2,2,2,3,3]],[1708993761,[1,1,1,2,2,2,2,2,3,3]],[1708993762,[1,1,1,2,2,2,2,2,2,3]],[1708993763,[0,1,2,2,2,2,2,2,6,7]],[1708993764,[1,1,1,2,2,2,2,2,2,3]],[1708993765,[1,1,2,2,2,2,2,2,3,3]],[1708993766,[0,1,1,2,2,2,2,2,2,4]],[1708993767,[0,1,2,2,2,2,2,2,3,3]],[1708993768,[1,2,2,2,2,2,2,2,3,3]],[1708993769,[1,2,2,2,2,2,2,2,4,7]],[1708993770,[1,2,2,2,2,2,2,2,2,3]],[1708993771,[1,2,2,2,2,2,2,2,3,4]],[1708993772,[1,1,2,2,2,2,2,2,2,2]],[1708993773,[1,1,1,2,2,2,2,2,2,3]],[1708993774,[1,1,1,2,2,2,2,2,2,3]],[1708993775,[1,1,1,1,1,1,2,2,4,6]],[1708993776,[1,1,1,2,2,2,2,2,2,3]],[1708993777,[1,1,2,2,2,2,2,2,3,13]],[1708993778,[0,1,1,1,1,1,2,2,2,2]],[1708993779,[1,1,1,2,2,2,2,2,3,3]],[1708993780,[1,1,2,2,2,2,2,2,3,3]],[1708993781,[1,1,2,2,2,2,2,2,4,7]],[1708993782,[1,2,2,2,2,2,2,2,3,4]],[1708993783,[1,1,2,2,2,2,2,2,3,3]],[1708993784,[1,1,1,2,2,2,2,2,2,3]],[1708993785,[1,2,2,2,2,2,2,3,3,4]],[1708993786,[1,1,1,2,2,2,2,2,3,3]],[1708993787,[1,1,2,2,2,2,2,2,4,7]],[1708993788,[1,2,2,2,2,2,2,2,3,3]],[1708993789,[1,1,2,2,2,2,2,2,3,3]],[1708993790,[1,2,2,2,2,2,2,2,3,3]]]);
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([[1708993546,[25,25,0]],[1708993547,[1,1,0]],[1708993548,[25,25,0]],[1708993549,[1,1,0]],[1708993550,[71,71,0]],[1708993551,[3,3,0]],[1708993552,[6,6,0]],[1708993553,[9,9,0]],[1708993554,[11,11,0]],[1708993555,[13,13,0]],[1708993556,[18,18,0]],[1708993557,[19,19,0]],[1708993558,[24,24,0]],[1708993559,[26,26,0]],[1708993560,[27,27,0]],[1708993561,[32,32,0]],[1708993562,[34,34,0]],[1708993563,[37,37,0]],[1708993564,[39,39,0]],[1708993565,[43,43,0]],[1708993566,[45,45,0]],[1708993567,[48,48,0]],[1708993568,[50,50,0]],[1708993569,[54,54,0]],[1708993570,[56,56,0]],[1708993571,[60,60,0]],[1708993572,[61,61,0]],[1708993573,[65,65,0]],[1708993574,[67,67,0]],[1708993575,[70,70,0]],[1708993576,[74,74,0]],[1708993577,[76,76,0]],[1708993578,[80,80,0]],[1708993579,[81,81,0]],[1708993580,[84,84,0]],[1708993581,[89,89,0]],[1708993582,[89,89,0]],[1708993583,[93,93,0]],[1708993584,[96,96,0]],[1708993585,[98,98,0]],[1708993586,[102,102,0]],[1708993587,[104,104,0]],[1708993588,[107,107,0]],[1708993589,[109,109,0]],[1708993590,[114,114,0]],[1708993591,[115,115,0]],[1708993592,[119,119,0]],[1708993593,[121,121,0]],[1708993594,[123,123,0]],[1708993595,[126,126,0]],[1708993596,[129,129,0]],[1708993597,[133,133,0]],[1708993598,[134,134,0]],[1708993599,[139,139,0]],[1708993600,[140,140,0]],[1708993601,[144,144,0]],[1708993602,[146,146,0]],[1708993603,[149,149,0]],[1708993604,[151,151,0]],[1708993605,[155,155,0]],[1708993606,[159,159,0]],[1708993607,[159,159,0]],[1708993608,[164,164,0]],[1708993609,[166,166,0]],[1708993610,[170,170,0]],[1708993611,[170,170,0]],[1708993612,[174,174,0]],[1708993613,[177,177,0]],[1708993614,[180,180,0]],[1708993615,[183,183,0]],[1708993616,[186,186,0]],[1708993617,[188,188,0]],[1708993618,[192,192,0]],[1708993619,[194,194,0]],[1708993620,[197,197,0]],[1708993621,[198,198,0]],[1708993622,[204,204,0]],[1708993623,[205,205,0]],[1708993624,[208,208,0]],[1708993625,[211,211,0]],[1708993626,[213,213,0]],[1708993627,[217,217,0]],[1708993628,[219,219,0]],[1708993629,[222,222,0]],[1708993630,[225,225,0]],[1708993631,[228,228,0]],[1708993632,[229,229,0]],[1708993633,[235,235,0]],[1708993634,[236,236,0]],[1708993635,[238,238,0]],[1708993636,[243,243,0]],[1708993637,[244,244,0]],[1708993638,[248,248,0]],[1708993639,[251,251,0]],[1708993640,[251,251,0]],[1708993641,[257,257,0]],[1708993642,[259,259,0]],[1708993643,[262,262,0]],[1708993644,[263,263,0]],[1708993645,[267,267,0]],[1708993646,[269,269,0]],[1708993647,[274,274,0]],[1708993648,[275,275,0]],[1708993649,[279,279,0]],[1708993650,[280,280,0]],[1708993651,[284,284,0]],[1708993652,[286,286,0]],[1708993653,[290,290,0]],[1708993654,[292,292,0]],[1708993655,[295,295,0]],[1708993656,[299,299,0]],[1708993657,[300,300,0]],[1708993658,[304,304,0]],[1708993659,[306,306,0]],[1708993660,[309,309,0]],[1708993661,[312,312,0]],[1708993662,[315,315,0]],[1708993663,[318,318,0]],[1708993664,[320,320,0]],[1708993665,[323,323,0]],[1708993666,[327,327,0]],[1708993667,[329,329,0]],[1708993668,[331,331,0]],[1708993669,[334,334,0]],[1708993670,[339,339,0]],[1708993671,[340,340,0]],[1708993672,[340,340,0]],[1708993673,[340,340,0]],[1708993674,[340,340,0]],[1708993675,[340,340,0]],[1708993676,[340,340,0]],[1708993677,[340,340,0]],[1708993678,[340,340,0]],[1708993679,[340,340,0]],[1708993680,[340,340,0]],[1708993681,[340,340,0]],[1708993682,[340,340,0]],[1708993683,[340,340,0]],[1708993684,[340,340,0]],[1708993685,[340,340,0]],[1708993686,[340,340,0]],[1708993687,[340,340,0]],[1708993688,[340,340,0]],[1708993689,[340,340,0]],[1708993690,[340,340,0]],[1708993691,[340,340,0]],[1708993692,[340,340,0]],[1708993693,[340,340,0]],[1708993694,[340,340,0]],[1708993695,[340,340,0]],[1708993696,[340,340,0]],[1708993697,[340,340,0]],[1708993698,[340,340,0]],[1708993699,[340,340,0]],[1708993700,[340,340,0]],[1708993701,[340,340,0]],[1708993702,[340,340,0]],[1708993703,[340,340,0]],[1708993704,[340,340,0]],[1708993705,[340,340,0]],[1708993706,[340,340,0]],[1708993707,[340,340,0]],[1708993708,[340,340,0]],[1708993709,[340,340,0]],[1708993710,[340,340,0]],[1708993711,[340,340,0]],[1708993712,[340,340,0]],[1708993713,[340,340,0]],[1708993714,[340,340,0]],[1708993715,[340,340,0]],[1708993716,[340,340,0]],[1708993717,[340,340,0]],[1708993718,[340,340,0]],[1708993719,[340,340,0]],[1708993720,[340,340,0]],[1708993721,[340,340,0]],[1708993722,[340,340,0]],[1708993723,[340,340,0]],[1708993724,[340,340,0]],[1708993725,[340,340,0]],[1708993726,[340,340,0]],[1708993727,[340,340,0]],[1708993728,[340,340,0]],[1708993729,[340,340,0]],[1708993730,[340,340,0]],[1708993731,[340,340,0]],[1708993732,[340,340,0]],[1708993733,[340,340,0]],[1708993734,[340,340,0]],[1708993735,[340,340,0]],[1708993736,[340,340,0]],[1708993737,[340,340,0]],[1708993738,[340,340,0]],[1708993739,[340,340,0]],[1708993740,[340,340,0]],[1708993741,[340,340,0]],[1708993742,[340,340,0]],[1708993743,[340,340,0]],[1708993744,[340,340,0]],[1708993745,[340,340,0]],[1708993746,[340,340,0]],[1708993747,[340,340,0]],[1708993748,[340,340,0]],[1708993749,[340,340,0]],[1708993750,[340,340,0]],[1708993751,[340,340,0]],[1708993752,[340,340,0]],[1708993753,[340,340,0]],[1708993754,[340,340,0]],[1708993755,[340,340,0]],[1708993756,[340,340,0]],[1708993757,[340,340,0]],[1708993758,[340,340,0]],[1708993759,[340,340,0]],[1708993760,[340,340,0]],[1708993761,[340,340,0]],[1708993762,[340,340,0]],[1708993763,[340,340,0]],[1708993764,[340,340,0]],[1708993765,[340,340,0]],[1708993766,[340,340,0]],[1708993767,[340,340,0]],[1708993768,[340,340,0]],[1708993769,[340,340,0]],[1708993770,[340,340,0]],[1708993771,[340,340,0]],[1708993772,[340,340,0]],[1708993773,[340,340,0]],[1708993774,[340,340,0]],[1708993775,[340,340,0]],[1708993776,[340,340,0]],[1708993777,[340,340,0]],[1708993778,[340,340,0]],[1708993779,[340,340,0]],[1708993780,[340,340,0]],[1708993781,[340,340,0]],[1708993782,[340,340,0]],[1708993783,[340,340,0]],[1708993784,[340,340,0]],[1708993785,[340,340,0]],[1708993786,[340,340,0]],[1708993787,[340,340,0]],[1708993788,[340,340,0]],[1708993789,[340,340,0]],[1708993790,[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:[