-
Notifications
You must be signed in to change notification settings - Fork 925
/
index.html
1173 lines (1103 loc) · 92.3 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="shortcut icon" type="image/x-icon" href="style/favicon.ico"/>
<link href="style/style.css" rel="stylesheet" type="text/css" />
<link href="style/bootstrap.min.css" rel="stylesheet" type="text/css" />
<script src="js/jquery-3.5.1.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/gatling.js"></script>
<script src="js/menu.js"></script>
<script src="js/ellipsis.js"></script>
<script src="js/all_sessions.js"></script>
<script src="js/stats.js"></script>
<script src="js/highstock.js"></script>
<script src="js/highcharts-more.js"></script>
<script src="js/theme.js"></script>
<script src="js/unpack.js"></script>
<title>Gatling Stats - Global Information</title>
</head>
<body>
<script>
const storedTheme = localStorage.getItem('theme') || (window.matchMedia("(prefers-color-scheme: dark)").matches ? "dark" : "light");
if (storedTheme) document.documentElement.setAttribute('data-theme', storedTheme)
function toggleTheme() {
const currentTheme = document.documentElement.getAttribute("data-theme");
const targetTheme = currentTheme === "light" ? "dark" : "light";
document.documentElement.setAttribute('data-theme', targetTheme)
localStorage.setItem('theme', targetTheme);
};
</script>
<div class="app-container">
<div class="frise"></div>
<div class="head">
<div class="gatling-open-source">
<a class="gatling-logo gatling-logo-light" href="https://gatling.io" target="blank_" title="Gatling Home Page"><img alt="Gatling" src="style/logo-light.svg"/></a>
<a class="gatling-logo gatling-logo-dark" href="https://gatling.io" target="blank_" title="Gatling Home Page"><img alt="Gatling" src="style/logo-dark.svg"/></a>
<a class="gatling-documentation" href="https://gatling.io/docs/" target="_blank">Documentation</a>
</div>
<div class="nav spacer"></div>
<a class="enterprise" href="https://gatling.io/enterprise/next-step/" target="_blank"><strong>Try</strong>
<img class="logo-enterprise-light" alt="Gatling Enterprise" src="style/logo-enterprise-light.svg"/>
<img class="logo-enterprise-dark" alt="Gatling Enterprise" src="style/logo-enterprise-dark.svg"/>
</a>
<button id="theme-toggle" class="theme-toggle" type="button" onclick="toggleTheme()" aria-label="Toggle user interface mode">
<span class="toggle-dark"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-moon"><path d="M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z"></path></svg></span>
<span class="toggle-light"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-sun"><circle cx="12" cy="12" r="5"></circle><line x1="12" y1="1" x2="12" y2="3"></line><line x1="12" y1="21" x2="12" y2="23"></line><line x1="4.22" y1="4.22" x2="5.64" y2="5.64"></line><line x1="18.36" y1="18.36" x2="19.78" y2="19.78"></line><line x1="1" y1="12" x2="3" y2="12"></line><line x1="21" y1="12" x2="23" y2="12"></line><line x1="4.22" y1="19.78" x2="5.64" y2="18.36"></line><line x1="18.36" y1="5.64" x2="19.78" y2="4.22"></line></svg></span>
</button>
</div>
<div class="container details">
<div class="nav">
<ul></ul>
</div>
<div class="cadre">
<div class="content">
<div class="content-header">
<div class="onglet">
RinhaBackendCrebitosSimulation
</div>
<div class="sous-menu" id="sousMenu">
<div class="sous-menu-spacer">
<div class="item ouvert"><a href="index.html">Global</a></div>
<div class="item "><a id="details_link" href="#">Details</a></div>
</div>
</div>
</div>
<div class="content-in">
<div class="container-article">
<div class="article">
<div class="schema-container">
<div id="ranges" class="schema ranges">
</div>
<div class="schema polar">
<div id="container_number_of_requests"></div>
</div>
<div class="simulation-card">
<div class="simulation-version-information">
<span class="simulation-information-title">Gatling Version</span>
<span class="simulation-information-item">
<span class="simulation-information-label">Version: </span>
<span>3.10.3</span>
</span>
<span class="simulation-information-item">
<span class="simulation-information-label">Released: </span>
<span>2023-12-20</span>
</span>
</div>
<div id="simulation-information" class="simulation-version-information">
<span class="simulation-information-title">Run Information</span>
<div class="simulation-information-container">
<span class="simulation-information-item">
<span class="simulation-information-label">Date: </span>
<span>2024-03-10 18:16:04 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 - williamsumida">
<span class="simulation-information-label">Description: </span>
<span>Rinha de Backend - 2024/Q1: Crébito - williamsumida</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: [
[1710094564000,0],[1710094565000,0],[1710094566000,0],[1710094567000,0],[1710094568000,1],[1710094569000,1],[1710094570000,2],[1710094571000,4],[1710094572000,4],[1710094573000,5],[1710094574000,6],[1710094575000,7],[1710094576000,8],[1710094577000,8],[1710094578000,10],[1710094579000,10],[1710094580000,12],[1710094581000,12],[1710094582000,14],[1710094583000,14],[1710094584000,15],[1710094585000,16],[1710094586000,17],[1710094587000,17],[1710094588000,19],[1710094589000,20],[1710094590000,20],[1710094591000,22],[1710094592000,22],[1710094593000,23],[1710094594000,25],[1710094595000,25],[1710094596000,26],[1710094597000,26],[1710094598000,28],[1710094599000,29],[1710094600000,30],[1710094601000,30],[1710094602000,32],[1710094603000,32],[1710094604000,33],[1710094605000,34],[1710094606000,35],[1710094607000,36],[1710094608000,37],[1710094609000,38],[1710094610000,39],[1710094611000,39],[1710094612000,41],[1710094613000,41],[1710094614000,43],[1710094615000,43],[1710094616000,44],[1710094617000,45],[1710094618000,46],[1710094619000,47],[1710094620000,48],[1710094621000,48],[1710094622000,50],[1710094623000,50],[1710094624000,52],[1710094625000,52],[1710094626000,53],[1710094627000,54],[1710094628000,56],[1710094629000,55],[1710094630000,58],[1710094631000,59],[1710094632000,60],[1710094633000,60],[1710094634000,62],[1710094635000,62],[1710094636000,63],[1710094637000,64],[1710094638000,65],[1710094639000,65],[1710094640000,66],[1710094641000,67],[1710094642000,68],[1710094643000,68],[1710094644000,70],[1710094645000,70],[1710094646000,72],[1710094647000,72],[1710094648000,73],[1710094649000,74],[1710094650000,75],[1710094651000,76],[1710094652000,77],[1710094653000,78],[1710094654000,79],[1710094655000,79],[1710094656000,81],[1710094657000,81],[1710094658000,82],[1710094659000,83],[1710094660000,85],[1710094661000,85],[1710094662000,86],[1710094663000,86],[1710094664000,88],[1710094665000,89],[1710094666000,89],[1710094667000,91],[1710094668000,91],[1710094669000,92],[1710094670000,94],[1710094671000,94],[1710094672000,95],[1710094673000,96],[1710094674000,97],[1710094675000,97],[1710094676000,99],[1710094677000,99],[1710094678000,101],[1710094679000,101],[1710094680000,103],[1710094681000,103],[1710094682000,104],[1710094683000,105],[1710094684000,106],[1710094685000,107],[1710094686000,107],[1710094687000,109],[1710094688000,110],[1710094689000,110],[1710094690000,110],[1710094691000,110],[1710094692000,110],[1710094693000,110],[1710094694000,110],[1710094695000,110],[1710094696000,110],[1710094697000,110],[1710094698000,110],[1710094699000,110],[1710094700000,110],[1710094701000,110],[1710094702000,110],[1710094703000,110],[1710094704000,110],[1710094705000,110],[1710094706000,110],[1710094707000,110],[1710094708000,110],[1710094709000,110],[1710094710000,110],[1710094711000,110],[1710094712000,110],[1710094713000,110],[1710094714000,110],[1710094715000,110],[1710094716000,110],[1710094717000,110],[1710094718000,110],[1710094719000,110],[1710094720000,110],[1710094721000,110],[1710094722000,110],[1710094723000,110],[1710094724000,110],[1710094725000,110],[1710094726000,110],[1710094727000,110],[1710094728000,110],[1710094729000,110],[1710094730000,110],[1710094731000,110],[1710094732000,110],[1710094733000,110],[1710094734000,110],[1710094735000,110],[1710094736000,110],[1710094737000,110],[1710094738000,110],[1710094739000,110],[1710094740000,110],[1710094741000,110],[1710094742000,110],[1710094743000,110],[1710094744000,110],[1710094745000,110],[1710094746000,110],[1710094747000,110],[1710094748000,110],[1710094749000,110],[1710094750000,110],[1710094751000,110],[1710094752000,110],[1710094753000,110],[1710094754000,110],[1710094755000,110],[1710094756000,110],[1710094757000,110],[1710094758000,110],[1710094759000,110],[1710094760000,110],[1710094761000,110],[1710094762000,110],[1710094763000,110],[1710094764000,110],[1710094765000,110],[1710094766000,110],[1710094767000,110],[1710094768000,110],[1710094769000,110],[1710094770000,110],[1710094771000,110],[1710094772000,110],[1710094773000,110],[1710094774000,110],[1710094775000,110],[1710094776000,110],[1710094777000,110],[1710094778000,110],[1710094779000,110],[1710094780000,110],[1710094781000,110],[1710094782000,110],[1710094783000,110],[1710094784000,110],[1710094785000,110],[1710094786000,110],[1710094787000,110],[1710094788000,110],[1710094789000,110],[1710094790000,110],[1710094791000,110],[1710094792000,110],[1710094793000,110],[1710094794000,110],[1710094795000,110],[1710094796000,110],[1710094797000,110],[1710094798000,110],[1710094799000,110],[1710094800000,110],[1710094801000,110],[1710094802000,110],[1710094803000,110],[1710094804000,110],[1710094805000,110],[1710094806000,110],[1710094807000,110],[1710094808000,108]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#68b65c',
name: 'débitos',
data: [
[1710094564000,0],[1710094565000,0],[1710094566000,0],[1710094567000,0],[1710094568000,1],[1710094569000,2],[1710094570000,4],[1710094571000,6],[1710094572000,7],[1710094573000,9],[1710094574000,11],[1710094575000,13],[1710094576000,15],[1710094577000,16],[1710094578000,19],[1710094579000,20],[1710094580000,22],[1710094581000,24],[1710094582000,25],[1710094583000,28],[1710094584000,29],[1710094585000,31],[1710094586000,33],[1710094587000,35],[1710094588000,37],[1710094589000,38],[1710094590000,40],[1710094591000,42],[1710094592000,44],[1710094593000,46],[1710094594000,47],[1710094595000,50],[1710094596000,51],[1710094597000,53],[1710094598000,56],[1710094599000,57],[1710094600000,60],[1710094601000,61],[1710094602000,63],[1710094603000,64],[1710094604000,66],[1710094605000,68],[1710094606000,69],[1710094607000,71],[1710094608000,74],[1710094609000,74],[1710094610000,77],[1710094611000,79],[1710094612000,80],[1710094613000,82],[1710094614000,84],[1710094615000,86],[1710094616000,88],[1710094617000,89],[1710094618000,92],[1710094619000,93],[1710094620000,95],[1710094621000,97],[1710094622000,98],[1710094623000,101],[1710094624000,102],[1710094625000,104],[1710094626000,106],[1710094627000,108],[1710094628000,110],[1710094629000,112],[1710094630000,113],[1710094631000,116],[1710094632000,118],[1710094633000,120],[1710094634000,121],[1710094635000,124],[1710094636000,125],[1710094637000,126],[1710094638000,128],[1710094639000,129],[1710094640000,132],[1710094641000,133],[1710094642000,135],[1710094643000,137],[1710094644000,139],[1710094645000,141],[1710094646000,142],[1710094647000,144],[1710094648000,147],[1710094649000,147],[1710094650000,150],[1710094651000,152],[1710094652000,153],[1710094653000,155],[1710094654000,157],[1710094655000,159],[1710094656000,161],[1710094657000,162],[1710094658000,165],[1710094659000,166],[1710094660000,169],[1710094661000,171],[1710094662000,171],[1710094663000,175],[1710094664000,176],[1710094665000,177],[1710094666000,180],[1710094667000,181],[1710094668000,184],[1710094669000,184],[1710094670000,187],[1710094671000,188],[1710094672000,190],[1710094673000,192],[1710094674000,193],[1710094675000,196],[1710094676000,197],[1710094677000,199],[1710094678000,201],[1710094679000,202],[1710094680000,205],[1710094681000,206],[1710094682000,210],[1710094683000,210],[1710094684000,212],[1710094685000,214],[1710094686000,215],[1710094687000,217],[1710094688000,220],[1710094689000,220],[1710094690000,220],[1710094691000,220],[1710094692000,220],[1710094693000,220],[1710094694000,220],[1710094695000,220],[1710094696000,220],[1710094697000,220],[1710094698000,220],[1710094699000,220],[1710094700000,220],[1710094701000,220],[1710094702000,220],[1710094703000,220],[1710094704000,220],[1710094705000,220],[1710094706000,220],[1710094707000,220],[1710094708000,220],[1710094709000,220],[1710094710000,220],[1710094711000,220],[1710094712000,220],[1710094713000,220],[1710094714000,220],[1710094715000,220],[1710094716000,220],[1710094717000,220],[1710094718000,220],[1710094719000,220],[1710094720000,220],[1710094721000,220],[1710094722000,220],[1710094723000,220],[1710094724000,220],[1710094725000,220],[1710094726000,220],[1710094727000,220],[1710094728000,220],[1710094729000,220],[1710094730000,220],[1710094731000,220],[1710094732000,220],[1710094733000,220],[1710094734000,220],[1710094735000,220],[1710094736000,220],[1710094737000,220],[1710094738000,220],[1710094739000,220],[1710094740000,220],[1710094741000,220],[1710094742000,220],[1710094743000,220],[1710094744000,220],[1710094745000,220],[1710094746000,220],[1710094747000,220],[1710094748000,220],[1710094749000,220],[1710094750000,220],[1710094751000,220],[1710094752000,220],[1710094753000,220],[1710094754000,220],[1710094755000,220],[1710094756000,220],[1710094757000,220],[1710094758000,220],[1710094759000,220],[1710094760000,220],[1710094761000,220],[1710094762000,220],[1710094763000,220],[1710094764000,220],[1710094765000,220],[1710094766000,220],[1710094767000,220],[1710094768000,220],[1710094769000,220],[1710094770000,220],[1710094771000,220],[1710094772000,220],[1710094773000,220],[1710094774000,220],[1710094775000,220],[1710094776000,220],[1710094777000,220],[1710094778000,220],[1710094779000,220],[1710094780000,220],[1710094781000,220],[1710094782000,220],[1710094783000,220],[1710094784000,220],[1710094785000,220],[1710094786000,220],[1710094787000,220],[1710094788000,220],[1710094789000,220],[1710094790000,220],[1710094791000,220],[1710094792000,220],[1710094793000,220],[1710094794000,220],[1710094795000,220],[1710094796000,220],[1710094797000,220],[1710094798000,220],[1710094799000,220],[1710094800000,220],[1710094801000,220],[1710094802000,220],[1710094803000,220],[1710094804000,220],[1710094805000,220],[1710094806000,220],[1710094807000,220],[1710094808000,216]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#f15b4f',
name: 'extratos',
data: [
[1710094564000,0],[1710094565000,0],[1710094566000,0],[1710094567000,0],[1710094568000,1],[1710094569000,2],[1710094570000,1],[1710094571000,1],[1710094572000,1],[1710094573000,1],[1710094574000,2],[1710094575000,1],[1710094576000,2],[1710094577000,2],[1710094578000,1],[1710094579000,2],[1710094580000,2],[1710094581000,2],[1710094582000,2],[1710094583000,2],[1710094584000,2],[1710094585000,2],[1710094586000,3],[1710094587000,2],[1710094588000,3],[1710094589000,2],[1710094590000,3],[1710094591000,2],[1710094592000,3],[1710094593000,3],[1710094594000,3],[1710094595000,3],[1710094596000,3],[1710094597000,3],[1710094598000,3],[1710094599000,4],[1710094600000,3],[1710094601000,3],[1710094602000,4],[1710094603000,3],[1710094604000,4],[1710094605000,4],[1710094606000,4],[1710094607000,4],[1710094608000,4],[1710094609000,4],[1710094610000,4],[1710094611000,4],[1710094612000,4],[1710094613000,4],[1710094614000,5],[1710094615000,4],[1710094616000,5],[1710094617000,5],[1710094618000,4],[1710094619000,5],[1710094620000,5],[1710094621000,5],[1710094622000,5],[1710094623000,5],[1710094624000,5],[1710094625000,5],[1710094626000,6],[1710094627000,5],[1710094628000,6],[1710094629000,5],[1710094630000,6],[1710094631000,5],[1710094632000,6],[1710094633000,6],[1710094634000,6],[1710094635000,6],[1710094636000,6],[1710094637000,6],[1710094638000,6],[1710094639000,7],[1710094640000,6],[1710094641000,6],[1710094642000,7],[1710094643000,6],[1710094644000,7],[1710094645000,7],[1710094646000,7],[1710094647000,7],[1710094648000,7],[1710094649000,7],[1710094650000,7],[1710094651000,7],[1710094652000,7],[1710094653000,7],[1710094654000,8],[1710094655000,7],[1710094656000,8],[1710094657000,8],[1710094658000,7],[1710094659000,8],[1710094660000,8],[1710094661000,8],[1710094662000,8],[1710094663000,8],[1710094664000,8],[1710094665000,8],[1710094666000,9],[1710094667000,8],[1710094668000,9],[1710094669000,8],[1710094670000,9],[1710094671000,8],[1710094672000,9],[1710094673000,9],[1710094674000,9],[1710094675000,9],[1710094676000,9],[1710094677000,9],[1710094678000,9],[1710094679000,10],[1710094680000,9],[1710094681000,9],[1710094682000,10],[1710094683000,9],[1710094684000,10],[1710094685000,10],[1710094686000,10],[1710094687000,10],[1710094688000,10],[1710094689000,10],[1710094690000,10],[1710094691000,10],[1710094692000,10],[1710094693000,10],[1710094694000,10],[1710094695000,10],[1710094696000,10],[1710094697000,10],[1710094698000,10],[1710094699000,10],[1710094700000,10],[1710094701000,10],[1710094702000,10],[1710094703000,10],[1710094704000,10],[1710094705000,10],[1710094706000,10],[1710094707000,10],[1710094708000,10],[1710094709000,10],[1710094710000,10],[1710094711000,10],[1710094712000,10],[1710094713000,10],[1710094714000,10],[1710094715000,10],[1710094716000,10],[1710094717000,10],[1710094718000,10],[1710094719000,10],[1710094720000,10],[1710094721000,10],[1710094722000,10],[1710094723000,10],[1710094724000,10],[1710094725000,10],[1710094726000,10],[1710094727000,10],[1710094728000,10],[1710094729000,10],[1710094730000,10],[1710094731000,10],[1710094732000,10],[1710094733000,10],[1710094734000,10],[1710094735000,10],[1710094736000,10],[1710094737000,10],[1710094738000,10],[1710094739000,10],[1710094740000,10],[1710094741000,10],[1710094742000,10],[1710094743000,10],[1710094744000,10],[1710094745000,10],[1710094746000,10],[1710094747000,10],[1710094748000,10],[1710094749000,10],[1710094750000,10],[1710094751000,10],[1710094752000,10],[1710094753000,10],[1710094754000,10],[1710094755000,10],[1710094756000,10],[1710094757000,10],[1710094758000,10],[1710094759000,10],[1710094760000,10],[1710094761000,10],[1710094762000,10],[1710094763000,10],[1710094764000,10],[1710094765000,10],[1710094766000,10],[1710094767000,10],[1710094768000,10],[1710094769000,10],[1710094770000,10],[1710094771000,10],[1710094772000,10],[1710094773000,10],[1710094774000,10],[1710094775000,10],[1710094776000,10],[1710094777000,10],[1710094778000,10],[1710094779000,10],[1710094780000,10],[1710094781000,10],[1710094782000,10],[1710094783000,10],[1710094784000,10],[1710094785000,10],[1710094786000,10],[1710094787000,10],[1710094788000,10],[1710094789000,10],[1710094790000,10],[1710094791000,10],[1710094792000,10],[1710094793000,10],[1710094794000,10],[1710094795000,10],[1710094796000,10],[1710094797000,10],[1710094798000,10],[1710094799000,10],[1710094800000,10],[1710094801000,10],[1710094802000,10],[1710094803000,10],[1710094804000,10],[1710094805000,10],[1710094806000,10],[1710094807000,10],[1710094808000,9]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FFDD00',
name: 'validação HTTP 404',
data: [
[1710094564000,0],[1710094565000,0],[1710094566000,0],[1710094567000,1],[1710094568000,0],[1710094569000,0],[1710094570000,0],[1710094571000,0],[1710094572000,0],[1710094573000,0],[1710094574000,0],[1710094575000,0],[1710094576000,0],[1710094577000,0],[1710094578000,0],[1710094579000,0],[1710094580000,0],[1710094581000,0],[1710094582000,0],[1710094583000,0],[1710094584000,0],[1710094585000,0],[1710094586000,0],[1710094587000,0],[1710094588000,0],[1710094589000,0],[1710094590000,0],[1710094591000,0],[1710094592000,0],[1710094593000,0],[1710094594000,0],[1710094595000,0],[1710094596000,0],[1710094597000,0],[1710094598000,0],[1710094599000,0],[1710094600000,0],[1710094601000,0],[1710094602000,0],[1710094603000,0],[1710094604000,0],[1710094605000,0],[1710094606000,0],[1710094607000,0],[1710094608000,0],[1710094609000,0],[1710094610000,0],[1710094611000,0],[1710094612000,0],[1710094613000,0],[1710094614000,0],[1710094615000,0],[1710094616000,0],[1710094617000,0],[1710094618000,0],[1710094619000,0],[1710094620000,0],[1710094621000,0],[1710094622000,0],[1710094623000,0],[1710094624000,0],[1710094625000,0],[1710094626000,0],[1710094627000,0],[1710094628000,0],[1710094629000,0],[1710094630000,0],[1710094631000,0],[1710094632000,0],[1710094633000,0],[1710094634000,0],[1710094635000,0],[1710094636000,0],[1710094637000,0],[1710094638000,0],[1710094639000,0],[1710094640000,0],[1710094641000,0],[1710094642000,0],[1710094643000,0],[1710094644000,0],[1710094645000,0],[1710094646000,0],[1710094647000,0],[1710094648000,0],[1710094649000,0],[1710094650000,0],[1710094651000,0],[1710094652000,0],[1710094653000,0],[1710094654000,0],[1710094655000,0],[1710094656000,0],[1710094657000,0],[1710094658000,0],[1710094659000,0],[1710094660000,0],[1710094661000,0],[1710094662000,0],[1710094663000,0],[1710094664000,0],[1710094665000,0],[1710094666000,0],[1710094667000,0],[1710094668000,0],[1710094669000,0],[1710094670000,0],[1710094671000,0],[1710094672000,0],[1710094673000,0],[1710094674000,0],[1710094675000,0],[1710094676000,0],[1710094677000,0],[1710094678000,0],[1710094679000,0],[1710094680000,0],[1710094681000,0],[1710094682000,0],[1710094683000,0],[1710094684000,0],[1710094685000,0],[1710094686000,0],[1710094687000,0],[1710094688000,0],[1710094689000,0],[1710094690000,0],[1710094691000,0],[1710094692000,0],[1710094693000,0],[1710094694000,0],[1710094695000,0],[1710094696000,0],[1710094697000,0],[1710094698000,0],[1710094699000,0],[1710094700000,0],[1710094701000,0],[1710094702000,0],[1710094703000,0],[1710094704000,0],[1710094705000,0],[1710094706000,0],[1710094707000,0],[1710094708000,0],[1710094709000,0],[1710094710000,0],[1710094711000,0],[1710094712000,0],[1710094713000,0],[1710094714000,0],[1710094715000,0],[1710094716000,0],[1710094717000,0],[1710094718000,0],[1710094719000,0],[1710094720000,0],[1710094721000,0],[1710094722000,0],[1710094723000,0],[1710094724000,0],[1710094725000,0],[1710094726000,0],[1710094727000,0],[1710094728000,0],[1710094729000,0],[1710094730000,0],[1710094731000,0],[1710094732000,0],[1710094733000,0],[1710094734000,0],[1710094735000,0],[1710094736000,0],[1710094737000,0],[1710094738000,0],[1710094739000,0],[1710094740000,0],[1710094741000,0],[1710094742000,0],[1710094743000,0],[1710094744000,0],[1710094745000,0],[1710094746000,0],[1710094747000,0],[1710094748000,0],[1710094749000,0],[1710094750000,0],[1710094751000,0],[1710094752000,0],[1710094753000,0],[1710094754000,0],[1710094755000,0],[1710094756000,0],[1710094757000,0],[1710094758000,0],[1710094759000,0],[1710094760000,0],[1710094761000,0],[1710094762000,0],[1710094763000,0],[1710094764000,0],[1710094765000,0],[1710094766000,0],[1710094767000,0],[1710094768000,0],[1710094769000,0],[1710094770000,0],[1710094771000,0],[1710094772000,0],[1710094773000,0],[1710094774000,0],[1710094775000,0],[1710094776000,0],[1710094777000,0],[1710094778000,0],[1710094779000,0],[1710094780000,0],[1710094781000,0],[1710094782000,0],[1710094783000,0],[1710094784000,0],[1710094785000,0],[1710094786000,0],[1710094787000,0],[1710094788000,0],[1710094789000,0],[1710094790000,0],[1710094791000,0],[1710094792000,0],[1710094793000,0],[1710094794000,0],[1710094795000,0],[1710094796000,0],[1710094797000,0],[1710094798000,0],[1710094799000,0],[1710094800000,0],[1710094801000,0],[1710094802000,0],[1710094803000,0],[1710094804000,0],[1710094805000,0],[1710094806000,0],[1710094807000,0],[1710094808000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00D5FF',
name: 'validações',
data: [
[1710094564000,0],[1710094565000,0],[1710094566000,0],[1710094567000,5],[1710094568000,5],[1710094569000,0],[1710094570000,0],[1710094571000,0],[1710094572000,0],[1710094573000,0],[1710094574000,0],[1710094575000,0],[1710094576000,0],[1710094577000,0],[1710094578000,0],[1710094579000,0],[1710094580000,0],[1710094581000,0],[1710094582000,0],[1710094583000,0],[1710094584000,0],[1710094585000,0],[1710094586000,0],[1710094587000,0],[1710094588000,0],[1710094589000,0],[1710094590000,0],[1710094591000,0],[1710094592000,0],[1710094593000,0],[1710094594000,0],[1710094595000,0],[1710094596000,0],[1710094597000,0],[1710094598000,0],[1710094599000,0],[1710094600000,0],[1710094601000,0],[1710094602000,0],[1710094603000,0],[1710094604000,0],[1710094605000,0],[1710094606000,0],[1710094607000,0],[1710094608000,0],[1710094609000,0],[1710094610000,0],[1710094611000,0],[1710094612000,0],[1710094613000,0],[1710094614000,0],[1710094615000,0],[1710094616000,0],[1710094617000,0],[1710094618000,0],[1710094619000,0],[1710094620000,0],[1710094621000,0],[1710094622000,0],[1710094623000,0],[1710094624000,0],[1710094625000,0],[1710094626000,0],[1710094627000,0],[1710094628000,0],[1710094629000,0],[1710094630000,0],[1710094631000,0],[1710094632000,0],[1710094633000,0],[1710094634000,0],[1710094635000,0],[1710094636000,0],[1710094637000,0],[1710094638000,0],[1710094639000,0],[1710094640000,0],[1710094641000,0],[1710094642000,0],[1710094643000,0],[1710094644000,0],[1710094645000,0],[1710094646000,0],[1710094647000,0],[1710094648000,0],[1710094649000,0],[1710094650000,0],[1710094651000,0],[1710094652000,0],[1710094653000,0],[1710094654000,0],[1710094655000,0],[1710094656000,0],[1710094657000,0],[1710094658000,0],[1710094659000,0],[1710094660000,0],[1710094661000,0],[1710094662000,0],[1710094663000,0],[1710094664000,0],[1710094665000,0],[1710094666000,0],[1710094667000,0],[1710094668000,0],[1710094669000,0],[1710094670000,0],[1710094671000,0],[1710094672000,0],[1710094673000,0],[1710094674000,0],[1710094675000,0],[1710094676000,0],[1710094677000,0],[1710094678000,0],[1710094679000,0],[1710094680000,0],[1710094681000,0],[1710094682000,0],[1710094683000,0],[1710094684000,0],[1710094685000,0],[1710094686000,0],[1710094687000,0],[1710094688000,0],[1710094689000,0],[1710094690000,0],[1710094691000,0],[1710094692000,0],[1710094693000,0],[1710094694000,0],[1710094695000,0],[1710094696000,0],[1710094697000,0],[1710094698000,0],[1710094699000,0],[1710094700000,0],[1710094701000,0],[1710094702000,0],[1710094703000,0],[1710094704000,0],[1710094705000,0],[1710094706000,0],[1710094707000,0],[1710094708000,0],[1710094709000,0],[1710094710000,0],[1710094711000,0],[1710094712000,0],[1710094713000,0],[1710094714000,0],[1710094715000,0],[1710094716000,0],[1710094717000,0],[1710094718000,0],[1710094719000,0],[1710094720000,0],[1710094721000,0],[1710094722000,0],[1710094723000,0],[1710094724000,0],[1710094725000,0],[1710094726000,0],[1710094727000,0],[1710094728000,0],[1710094729000,0],[1710094730000,0],[1710094731000,0],[1710094732000,0],[1710094733000,0],[1710094734000,0],[1710094735000,0],[1710094736000,0],[1710094737000,0],[1710094738000,0],[1710094739000,0],[1710094740000,0],[1710094741000,0],[1710094742000,0],[1710094743000,0],[1710094744000,0],[1710094745000,0],[1710094746000,0],[1710094747000,0],[1710094748000,0],[1710094749000,0],[1710094750000,0],[1710094751000,0],[1710094752000,0],[1710094753000,0],[1710094754000,0],[1710094755000,0],[1710094756000,0],[1710094757000,0],[1710094758000,0],[1710094759000,0],[1710094760000,0],[1710094761000,0],[1710094762000,0],[1710094763000,0],[1710094764000,0],[1710094765000,0],[1710094766000,0],[1710094767000,0],[1710094768000,0],[1710094769000,0],[1710094770000,0],[1710094771000,0],[1710094772000,0],[1710094773000,0],[1710094774000,0],[1710094775000,0],[1710094776000,0],[1710094777000,0],[1710094778000,0],[1710094779000,0],[1710094780000,0],[1710094781000,0],[1710094782000,0],[1710094783000,0],[1710094784000,0],[1710094785000,0],[1710094786000,0],[1710094787000,0],[1710094788000,0],[1710094789000,0],[1710094790000,0],[1710094791000,0],[1710094792000,0],[1710094793000,0],[1710094794000,0],[1710094795000,0],[1710094796000,0],[1710094797000,0],[1710094798000,0],[1710094799000,0],[1710094800000,0],[1710094801000,0],[1710094802000,0],[1710094803000,0],[1710094804000,0],[1710094805000,0],[1710094806000,0],[1710094807000,0],[1710094808000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00FF00',
name: 'validação concorrência saldo - 0',
data: [
[1710094564000,0],[1710094565000,0],[1710094566000,1],[1710094567000,0],[1710094568000,0],[1710094569000,0],[1710094570000,0],[1710094571000,0],[1710094572000,0],[1710094573000,0],[1710094574000,0],[1710094575000,0],[1710094576000,0],[1710094577000,0],[1710094578000,0],[1710094579000,0],[1710094580000,0],[1710094581000,0],[1710094582000,0],[1710094583000,0],[1710094584000,0],[1710094585000,0],[1710094586000,0],[1710094587000,0],[1710094588000,0],[1710094589000,0],[1710094590000,0],[1710094591000,0],[1710094592000,0],[1710094593000,0],[1710094594000,0],[1710094595000,0],[1710094596000,0],[1710094597000,0],[1710094598000,0],[1710094599000,0],[1710094600000,0],[1710094601000,0],[1710094602000,0],[1710094603000,0],[1710094604000,0],[1710094605000,0],[1710094606000,0],[1710094607000,0],[1710094608000,0],[1710094609000,0],[1710094610000,0],[1710094611000,0],[1710094612000,0],[1710094613000,0],[1710094614000,0],[1710094615000,0],[1710094616000,0],[1710094617000,0],[1710094618000,0],[1710094619000,0],[1710094620000,0],[1710094621000,0],[1710094622000,0],[1710094623000,0],[1710094624000,0],[1710094625000,0],[1710094626000,0],[1710094627000,0],[1710094628000,0],[1710094629000,0],[1710094630000,0],[1710094631000,0],[1710094632000,0],[1710094633000,0],[1710094634000,0],[1710094635000,0],[1710094636000,0],[1710094637000,0],[1710094638000,0],[1710094639000,0],[1710094640000,0],[1710094641000,0],[1710094642000,0],[1710094643000,0],[1710094644000,0],[1710094645000,0],[1710094646000,0],[1710094647000,0],[1710094648000,0],[1710094649000,0],[1710094650000,0],[1710094651000,0],[1710094652000,0],[1710094653000,0],[1710094654000,0],[1710094655000,0],[1710094656000,0],[1710094657000,0],[1710094658000,0],[1710094659000,0],[1710094660000,0],[1710094661000,0],[1710094662000,0],[1710094663000,0],[1710094664000,0],[1710094665000,0],[1710094666000,0],[1710094667000,0],[1710094668000,0],[1710094669000,0],[1710094670000,0],[1710094671000,0],[1710094672000,0],[1710094673000,0],[1710094674000,0],[1710094675000,0],[1710094676000,0],[1710094677000,0],[1710094678000,0],[1710094679000,0],[1710094680000,0],[1710094681000,0],[1710094682000,0],[1710094683000,0],[1710094684000,0],[1710094685000,0],[1710094686000,0],[1710094687000,0],[1710094688000,0],[1710094689000,0],[1710094690000,0],[1710094691000,0],[1710094692000,0],[1710094693000,0],[1710094694000,0],[1710094695000,0],[1710094696000,0],[1710094697000,0],[1710094698000,0],[1710094699000,0],[1710094700000,0],[1710094701000,0],[1710094702000,0],[1710094703000,0],[1710094704000,0],[1710094705000,0],[1710094706000,0],[1710094707000,0],[1710094708000,0],[1710094709000,0],[1710094710000,0],[1710094711000,0],[1710094712000,0],[1710094713000,0],[1710094714000,0],[1710094715000,0],[1710094716000,0],[1710094717000,0],[1710094718000,0],[1710094719000,0],[1710094720000,0],[1710094721000,0],[1710094722000,0],[1710094723000,0],[1710094724000,0],[1710094725000,0],[1710094726000,0],[1710094727000,0],[1710094728000,0],[1710094729000,0],[1710094730000,0],[1710094731000,0],[1710094732000,0],[1710094733000,0],[1710094734000,0],[1710094735000,0],[1710094736000,0],[1710094737000,0],[1710094738000,0],[1710094739000,0],[1710094740000,0],[1710094741000,0],[1710094742000,0],[1710094743000,0],[1710094744000,0],[1710094745000,0],[1710094746000,0],[1710094747000,0],[1710094748000,0],[1710094749000,0],[1710094750000,0],[1710094751000,0],[1710094752000,0],[1710094753000,0],[1710094754000,0],[1710094755000,0],[1710094756000,0],[1710094757000,0],[1710094758000,0],[1710094759000,0],[1710094760000,0],[1710094761000,0],[1710094762000,0],[1710094763000,0],[1710094764000,0],[1710094765000,0],[1710094766000,0],[1710094767000,0],[1710094768000,0],[1710094769000,0],[1710094770000,0],[1710094771000,0],[1710094772000,0],[1710094773000,0],[1710094774000,0],[1710094775000,0],[1710094776000,0],[1710094777000,0],[1710094778000,0],[1710094779000,0],[1710094780000,0],[1710094781000,0],[1710094782000,0],[1710094783000,0],[1710094784000,0],[1710094785000,0],[1710094786000,0],[1710094787000,0],[1710094788000,0],[1710094789000,0],[1710094790000,0],[1710094791000,0],[1710094792000,0],[1710094793000,0],[1710094794000,0],[1710094795000,0],[1710094796000,0],[1710094797000,0],[1710094798000,0],[1710094799000,0],[1710094800000,0],[1710094801000,0],[1710094802000,0],[1710094803000,0],[1710094804000,0],[1710094805000,0],[1710094806000,0],[1710094807000,0],[1710094808000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#9D00FF',
name: 'validação concorrência transações - c',
data: [
[1710094564000,0],[1710094565000,25],[1710094566000,25],[1710094567000,0],[1710094568000,0],[1710094569000,0],[1710094570000,0],[1710094571000,0],[1710094572000,0],[1710094573000,0],[1710094574000,0],[1710094575000,0],[1710094576000,0],[1710094577000,0],[1710094578000,0],[1710094579000,0],[1710094580000,0],[1710094581000,0],[1710094582000,0],[1710094583000,0],[1710094584000,0],[1710094585000,0],[1710094586000,0],[1710094587000,0],[1710094588000,0],[1710094589000,0],[1710094590000,0],[1710094591000,0],[1710094592000,0],[1710094593000,0],[1710094594000,0],[1710094595000,0],[1710094596000,0],[1710094597000,0],[1710094598000,0],[1710094599000,0],[1710094600000,0],[1710094601000,0],[1710094602000,0],[1710094603000,0],[1710094604000,0],[1710094605000,0],[1710094606000,0],[1710094607000,0],[1710094608000,0],[1710094609000,0],[1710094610000,0],[1710094611000,0],[1710094612000,0],[1710094613000,0],[1710094614000,0],[1710094615000,0],[1710094616000,0],[1710094617000,0],[1710094618000,0],[1710094619000,0],[1710094620000,0],[1710094621000,0],[1710094622000,0],[1710094623000,0],[1710094624000,0],[1710094625000,0],[1710094626000,0],[1710094627000,0],[1710094628000,0],[1710094629000,0],[1710094630000,0],[1710094631000,0],[1710094632000,0],[1710094633000,0],[1710094634000,0],[1710094635000,0],[1710094636000,0],[1710094637000,0],[1710094638000,0],[1710094639000,0],[1710094640000,0],[1710094641000,0],[1710094642000,0],[1710094643000,0],[1710094644000,0],[1710094645000,0],[1710094646000,0],[1710094647000,0],[1710094648000,0],[1710094649000,0],[1710094650000,0],[1710094651000,0],[1710094652000,0],[1710094653000,0],[1710094654000,0],[1710094655000,0],[1710094656000,0],[1710094657000,0],[1710094658000,0],[1710094659000,0],[1710094660000,0],[1710094661000,0],[1710094662000,0],[1710094663000,0],[1710094664000,0],[1710094665000,0],[1710094666000,0],[1710094667000,0],[1710094668000,0],[1710094669000,0],[1710094670000,0],[1710094671000,0],[1710094672000,0],[1710094673000,0],[1710094674000,0],[1710094675000,0],[1710094676000,0],[1710094677000,0],[1710094678000,0],[1710094679000,0],[1710094680000,0],[1710094681000,0],[1710094682000,0],[1710094683000,0],[1710094684000,0],[1710094685000,0],[1710094686000,0],[1710094687000,0],[1710094688000,0],[1710094689000,0],[1710094690000,0],[1710094691000,0],[1710094692000,0],[1710094693000,0],[1710094694000,0],[1710094695000,0],[1710094696000,0],[1710094697000,0],[1710094698000,0],[1710094699000,0],[1710094700000,0],[1710094701000,0],[1710094702000,0],[1710094703000,0],[1710094704000,0],[1710094705000,0],[1710094706000,0],[1710094707000,0],[1710094708000,0],[1710094709000,0],[1710094710000,0],[1710094711000,0],[1710094712000,0],[1710094713000,0],[1710094714000,0],[1710094715000,0],[1710094716000,0],[1710094717000,0],[1710094718000,0],[1710094719000,0],[1710094720000,0],[1710094721000,0],[1710094722000,0],[1710094723000,0],[1710094724000,0],[1710094725000,0],[1710094726000,0],[1710094727000,0],[1710094728000,0],[1710094729000,0],[1710094730000,0],[1710094731000,0],[1710094732000,0],[1710094733000,0],[1710094734000,0],[1710094735000,0],[1710094736000,0],[1710094737000,0],[1710094738000,0],[1710094739000,0],[1710094740000,0],[1710094741000,0],[1710094742000,0],[1710094743000,0],[1710094744000,0],[1710094745000,0],[1710094746000,0],[1710094747000,0],[1710094748000,0],[1710094749000,0],[1710094750000,0],[1710094751000,0],[1710094752000,0],[1710094753000,0],[1710094754000,0],[1710094755000,0],[1710094756000,0],[1710094757000,0],[1710094758000,0],[1710094759000,0],[1710094760000,0],[1710094761000,0],[1710094762000,0],[1710094763000,0],[1710094764000,0],[1710094765000,0],[1710094766000,0],[1710094767000,0],[1710094768000,0],[1710094769000,0],[1710094770000,0],[1710094771000,0],[1710094772000,0],[1710094773000,0],[1710094774000,0],[1710094775000,0],[1710094776000,0],[1710094777000,0],[1710094778000,0],[1710094779000,0],[1710094780000,0],[1710094781000,0],[1710094782000,0],[1710094783000,0],[1710094784000,0],[1710094785000,0],[1710094786000,0],[1710094787000,0],[1710094788000,0],[1710094789000,0],[1710094790000,0],[1710094791000,0],[1710094792000,0],[1710094793000,0],[1710094794000,0],[1710094795000,0],[1710094796000,0],[1710094797000,0],[1710094798000,0],[1710094799000,0],[1710094800000,0],[1710094801000,0],[1710094802000,0],[1710094803000,0],[1710094804000,0],[1710094805000,0],[1710094806000,0],[1710094807000,0],[1710094808000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FF00E1',
name: 'validação concorrência saldo - -25',
data: [
[1710094564000,1],[1710094565000,1],[1710094566000,0],[1710094567000,0],[1710094568000,0],[1710094569000,0],[1710094570000,0],[1710094571000,0],[1710094572000,0],[1710094573000,0],[1710094574000,0],[1710094575000,0],[1710094576000,0],[1710094577000,0],[1710094578000,0],[1710094579000,0],[1710094580000,0],[1710094581000,0],[1710094582000,0],[1710094583000,0],[1710094584000,0],[1710094585000,0],[1710094586000,0],[1710094587000,0],[1710094588000,0],[1710094589000,0],[1710094590000,0],[1710094591000,0],[1710094592000,0],[1710094593000,0],[1710094594000,0],[1710094595000,0],[1710094596000,0],[1710094597000,0],[1710094598000,0],[1710094599000,0],[1710094600000,0],[1710094601000,0],[1710094602000,0],[1710094603000,0],[1710094604000,0],[1710094605000,0],[1710094606000,0],[1710094607000,0],[1710094608000,0],[1710094609000,0],[1710094610000,0],[1710094611000,0],[1710094612000,0],[1710094613000,0],[1710094614000,0],[1710094615000,0],[1710094616000,0],[1710094617000,0],[1710094618000,0],[1710094619000,0],[1710094620000,0],[1710094621000,0],[1710094622000,0],[1710094623000,0],[1710094624000,0],[1710094625000,0],[1710094626000,0],[1710094627000,0],[1710094628000,0],[1710094629000,0],[1710094630000,0],[1710094631000,0],[1710094632000,0],[1710094633000,0],[1710094634000,0],[1710094635000,0],[1710094636000,0],[1710094637000,0],[1710094638000,0],[1710094639000,0],[1710094640000,0],[1710094641000,0],[1710094642000,0],[1710094643000,0],[1710094644000,0],[1710094645000,0],[1710094646000,0],[1710094647000,0],[1710094648000,0],[1710094649000,0],[1710094650000,0],[1710094651000,0],[1710094652000,0],[1710094653000,0],[1710094654000,0],[1710094655000,0],[1710094656000,0],[1710094657000,0],[1710094658000,0],[1710094659000,0],[1710094660000,0],[1710094661000,0],[1710094662000,0],[1710094663000,0],[1710094664000,0],[1710094665000,0],[1710094666000,0],[1710094667000,0],[1710094668000,0],[1710094669000,0],[1710094670000,0],[1710094671000,0],[1710094672000,0],[1710094673000,0],[1710094674000,0],[1710094675000,0],[1710094676000,0],[1710094677000,0],[1710094678000,0],[1710094679000,0],[1710094680000,0],[1710094681000,0],[1710094682000,0],[1710094683000,0],[1710094684000,0],[1710094685000,0],[1710094686000,0],[1710094687000,0],[1710094688000,0],[1710094689000,0],[1710094690000,0],[1710094691000,0],[1710094692000,0],[1710094693000,0],[1710094694000,0],[1710094695000,0],[1710094696000,0],[1710094697000,0],[1710094698000,0],[1710094699000,0],[1710094700000,0],[1710094701000,0],[1710094702000,0],[1710094703000,0],[1710094704000,0],[1710094705000,0],[1710094706000,0],[1710094707000,0],[1710094708000,0],[1710094709000,0],[1710094710000,0],[1710094711000,0],[1710094712000,0],[1710094713000,0],[1710094714000,0],[1710094715000,0],[1710094716000,0],[1710094717000,0],[1710094718000,0],[1710094719000,0],[1710094720000,0],[1710094721000,0],[1710094722000,0],[1710094723000,0],[1710094724000,0],[1710094725000,0],[1710094726000,0],[1710094727000,0],[1710094728000,0],[1710094729000,0],[1710094730000,0],[1710094731000,0],[1710094732000,0],[1710094733000,0],[1710094734000,0],[1710094735000,0],[1710094736000,0],[1710094737000,0],[1710094738000,0],[1710094739000,0],[1710094740000,0],[1710094741000,0],[1710094742000,0],[1710094743000,0],[1710094744000,0],[1710094745000,0],[1710094746000,0],[1710094747000,0],[1710094748000,0],[1710094749000,0],[1710094750000,0],[1710094751000,0],[1710094752000,0],[1710094753000,0],[1710094754000,0],[1710094755000,0],[1710094756000,0],[1710094757000,0],[1710094758000,0],[1710094759000,0],[1710094760000,0],[1710094761000,0],[1710094762000,0],[1710094763000,0],[1710094764000,0],[1710094765000,0],[1710094766000,0],[1710094767000,0],[1710094768000,0],[1710094769000,0],[1710094770000,0],[1710094771000,0],[1710094772000,0],[1710094773000,0],[1710094774000,0],[1710094775000,0],[1710094776000,0],[1710094777000,0],[1710094778000,0],[1710094779000,0],[1710094780000,0],[1710094781000,0],[1710094782000,0],[1710094783000,0],[1710094784000,0],[1710094785000,0],[1710094786000,0],[1710094787000,0],[1710094788000,0],[1710094789000,0],[1710094790000,0],[1710094791000,0],[1710094792000,0],[1710094793000,0],[1710094794000,0],[1710094795000,0],[1710094796000,0],[1710094797000,0],[1710094798000,0],[1710094799000,0],[1710094800000,0],[1710094801000,0],[1710094802000,0],[1710094803000,0],[1710094804000,0],[1710094805000,0],[1710094806000,0],[1710094807000,0],[1710094808000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#AECAEB',
name: 'validação concorrência transações - d',
data: [
[1710094564000,25],[1710094565000,0],[1710094566000,0],[1710094567000,0],[1710094568000,0],[1710094569000,0],[1710094570000,0],[1710094571000,0],[1710094572000,0],[1710094573000,0],[1710094574000,0],[1710094575000,0],[1710094576000,0],[1710094577000,0],[1710094578000,0],[1710094579000,0],[1710094580000,0],[1710094581000,0],[1710094582000,0],[1710094583000,0],[1710094584000,0],[1710094585000,0],[1710094586000,0],[1710094587000,0],[1710094588000,0],[1710094589000,0],[1710094590000,0],[1710094591000,0],[1710094592000,0],[1710094593000,0],[1710094594000,0],[1710094595000,0],[1710094596000,0],[1710094597000,0],[1710094598000,0],[1710094599000,0],[1710094600000,0],[1710094601000,0],[1710094602000,0],[1710094603000,0],[1710094604000,0],[1710094605000,0],[1710094606000,0],[1710094607000,0],[1710094608000,0],[1710094609000,0],[1710094610000,0],[1710094611000,0],[1710094612000,0],[1710094613000,0],[1710094614000,0],[1710094615000,0],[1710094616000,0],[1710094617000,0],[1710094618000,0],[1710094619000,0],[1710094620000,0],[1710094621000,0],[1710094622000,0],[1710094623000,0],[1710094624000,0],[1710094625000,0],[1710094626000,0],[1710094627000,0],[1710094628000,0],[1710094629000,0],[1710094630000,0],[1710094631000,0],[1710094632000,0],[1710094633000,0],[1710094634000,0],[1710094635000,0],[1710094636000,0],[1710094637000,0],[1710094638000,0],[1710094639000,0],[1710094640000,0],[1710094641000,0],[1710094642000,0],[1710094643000,0],[1710094644000,0],[1710094645000,0],[1710094646000,0],[1710094647000,0],[1710094648000,0],[1710094649000,0],[1710094650000,0],[1710094651000,0],[1710094652000,0],[1710094653000,0],[1710094654000,0],[1710094655000,0],[1710094656000,0],[1710094657000,0],[1710094658000,0],[1710094659000,0],[1710094660000,0],[1710094661000,0],[1710094662000,0],[1710094663000,0],[1710094664000,0],[1710094665000,0],[1710094666000,0],[1710094667000,0],[1710094668000,0],[1710094669000,0],[1710094670000,0],[1710094671000,0],[1710094672000,0],[1710094673000,0],[1710094674000,0],[1710094675000,0],[1710094676000,0],[1710094677000,0],[1710094678000,0],[1710094679000,0],[1710094680000,0],[1710094681000,0],[1710094682000,0],[1710094683000,0],[1710094684000,0],[1710094685000,0],[1710094686000,0],[1710094687000,0],[1710094688000,0],[1710094689000,0],[1710094690000,0],[1710094691000,0],[1710094692000,0],[1710094693000,0],[1710094694000,0],[1710094695000,0],[1710094696000,0],[1710094697000,0],[1710094698000,0],[1710094699000,0],[1710094700000,0],[1710094701000,0],[1710094702000,0],[1710094703000,0],[1710094704000,0],[1710094705000,0],[1710094706000,0],[1710094707000,0],[1710094708000,0],[1710094709000,0],[1710094710000,0],[1710094711000,0],[1710094712000,0],[1710094713000,0],[1710094714000,0],[1710094715000,0],[1710094716000,0],[1710094717000,0],[1710094718000,0],[1710094719000,0],[1710094720000,0],[1710094721000,0],[1710094722000,0],[1710094723000,0],[1710094724000,0],[1710094725000,0],[1710094726000,0],[1710094727000,0],[1710094728000,0],[1710094729000,0],[1710094730000,0],[1710094731000,0],[1710094732000,0],[1710094733000,0],[1710094734000,0],[1710094735000,0],[1710094736000,0],[1710094737000,0],[1710094738000,0],[1710094739000,0],[1710094740000,0],[1710094741000,0],[1710094742000,0],[1710094743000,0],[1710094744000,0],[1710094745000,0],[1710094746000,0],[1710094747000,0],[1710094748000,0],[1710094749000,0],[1710094750000,0],[1710094751000,0],[1710094752000,0],[1710094753000,0],[1710094754000,0],[1710094755000,0],[1710094756000,0],[1710094757000,0],[1710094758000,0],[1710094759000,0],[1710094760000,0],[1710094761000,0],[1710094762000,0],[1710094763000,0],[1710094764000,0],[1710094765000,0],[1710094766000,0],[1710094767000,0],[1710094768000,0],[1710094769000,0],[1710094770000,0],[1710094771000,0],[1710094772000,0],[1710094773000,0],[1710094774000,0],[1710094775000,0],[1710094776000,0],[1710094777000,0],[1710094778000,0],[1710094779000,0],[1710094780000,0],[1710094781000,0],[1710094782000,0],[1710094783000,0],[1710094784000,0],[1710094785000,0],[1710094786000,0],[1710094787000,0],[1710094788000,0],[1710094789000,0],[1710094790000,0],[1710094791000,0],[1710094792000,0],[1710094793000,0],[1710094794000,0],[1710094795000,0],[1710094796000,0],[1710094797000,0],[1710094798000,0],[1710094799000,0],[1710094800000,0],[1710094801000,0],[1710094802000,0],[1710094803000,0],[1710094804000,0],[1710094805000,0],[1710094806000,0],[1710094807000,0],[1710094808000,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', '23', '24', '25', '26', '27', '28', '29', '30', '31', '32', '33', '34', '36', '37', '38', '39', '40', '41', '42', '43', '44', '45', '46', '47', '48', '49', '50', '51', '52', '53', '54', '55', '56', '57', '58', '59', '61', '62', '63', '65', '67', '68', '69', '70', '71', '72', '73', '76'],
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.11,39.05,39.34,14.52,3.96,1.23,0.63,0.32,0.18,0.05,0.02,0.01,0.01,0.01,0.01,0.02,0.03,0.01,0.01,0.01,0.01,0.01,0.0,0.02,0.01,0.02,0.01,0.0,0.01,0.01,0.02,0.01,0.0,0.02,0.0,0.0,0.0,0.0,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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([[1710094564,[31,51,55,68,70,72,72,72,73,73]],[1710094565,[5,5,5,5,5,5,5,5,5,5]],[1710094566,[20,24,25,30,30,30,30,31,31,31]],[1710094567,[4,4,4,4,4,4,4,4,4,4]],[1710094568,[1,3,5,8,11,12,15,17,20,21]],[1710094569,[4,4,4,4,4,4,4,4,4,5]],[1710094570,[3,4,4,4,4,4,4,4,4,4]],[1710094571,[3,4,4,4,4,4,5,5,5,5]],[1710094572,[3,3,4,4,4,4,4,5,5,6]],[1710094573,[3,3,4,4,4,4,4,4,4,5]],[1710094574,[2,3,3,4,4,4,4,4,4,5]],[1710094575,[3,3,3,3,3,4,4,4,4,5]],[1710094576,[2,3,3,3,3,3,4,4,4,4]],[1710094577,[2,3,3,3,3,4,4,4,5,6]],[1710094578,[2,3,3,3,3,3,4,4,4,4]],[1710094579,[2,3,3,3,4,4,4,4,5,6]],[1710094580,[2,2,3,3,3,3,3,4,5,5]],[1710094581,[2,2,3,3,3,3,3,4,4,5]],[1710094582,[2,2,3,3,3,3,3,4,4,5]],[1710094583,[2,2,2,3,3,3,3,3,4,5]],[1710094584,[2,2,2,3,3,3,3,3,3,3]],[1710094585,[1,2,2,2,3,3,3,3,5,5]],[1710094586,[2,2,2,3,3,3,3,3,3,3]],[1710094587,[2,2,2,3,3,3,3,3,3,5]],[1710094588,[2,2,2,3,3,3,3,3,4,4]],[1710094589,[1,2,2,2,3,3,3,3,4,4]],[1710094590,[1,2,2,3,3,3,3,3,4,4]],[1710094591,[1,2,2,2,2,3,3,3,3,4]],[1710094592,[1,2,2,2,2,3,3,3,3,4]],[1710094593,[1,2,2,2,2,2,3,3,4,4]],[1710094594,[1,1,2,2,2,2,2,2,3,3]],[1710094595,[1,2,2,2,2,2,3,3,3,3]],[1710094596,[1,2,2,2,2,2,3,3,3,3]],[1710094597,[1,1,2,2,2,2,2,3,4,5]],[1710094598,[1,2,2,2,2,2,3,4,17,33]],[1710094599,[1,2,2,2,2,2,2,3,3,3]],[1710094600,[1,1,2,2,2,2,2,3,3,3]],[1710094601,[1,1,2,2,2,2,2,2,4,16]],[1710094602,[1,1,2,2,2,2,2,3,3,5]],[1710094603,[1,2,2,2,2,2,3,3,3,4]],[1710094604,[1,2,2,2,2,3,3,3,3,3]],[1710094605,[1,1,2,2,2,2,2,3,3,3]],[1710094606,[1,1,2,2,2,2,2,2,3,3]],[1710094607,[1,1,2,2,2,2,2,3,3,4]],[1710094608,[1,1,2,2,2,2,2,2,3,5]],[1710094609,[1,2,2,2,2,2,2,2,3,4]],[1710094610,[1,1,2,2,2,2,2,2,2,5]],[1710094611,[1,1,2,2,2,2,2,2,3,3]],[1710094612,[1,1,2,2,2,2,2,2,3,3]],[1710094613,[1,2,2,2,2,2,2,3,3,4]],[1710094614,[1,2,2,2,2,2,3,3,3,4]],[1710094615,[1,1,1,2,2,2,2,2,3,3]],[1710094616,[1,1,2,2,2,2,2,3,3,3]],[1710094617,[1,2,2,2,2,2,2,3,3,3]],[1710094618,[1,2,2,2,2,2,2,2,3,4]],[1710094619,[1,1,2,2,2,2,2,2,3,4]],[1710094620,[1,1,1,2,2,2,2,2,2,3]],[1710094621,[1,1,2,2,2,2,2,2,2,4]],[1710094622,[1,1,2,2,2,2,2,2,2,3]],[1710094623,[1,1,2,2,2,2,2,2,2,3]],[1710094624,[1,1,2,2,2,2,2,2,3,3]],[1710094625,[1,1,1,2,2,2,2,2,2,3]],[1710094626,[1,1,1,1,1,2,2,2,2,4]],[1710094627,[1,1,1,1,1,2,2,2,2,3]],[1710094628,[1,1,1,2,2,2,2,2,2,3]],[1710094629,[1,1,2,2,2,2,2,2,3,3]],[1710094630,[1,1,2,2,2,2,2,2,9,30]],[1710094631,[1,1,1,1,1,2,2,2,2,3]],[1710094632,[1,1,1,2,2,2,2,2,3,8]],[1710094633,[1,1,2,2,2,2,2,2,2,3]],[1710094634,[1,1,2,2,2,2,2,2,3,3]],[1710094635,[1,2,2,2,2,2,2,2,3,3]],[1710094636,[1,1,2,2,2,2,2,2,2,3]],[1710094637,[1,1,2,2,2,2,2,2,3,3]],[1710094638,[1,2,2,2,2,2,2,2,3,4]],[1710094639,[1,1,1,2,2,2,2,2,2,3]],[1710094640,[1,1,2,2,2,2,2,3,3,4]],[1710094641,[1,1,2,2,2,2,2,2,3,4]],[1710094642,[1,1,1,2,2,2,2,2,3,4]],[1710094643,[0,1,1,1,2,2,2,2,2,2]],[1710094644,[1,1,1,2,2,2,2,2,2,3]],[1710094645,[1,1,1,2,2,2,2,2,3,3]],[1710094646,[1,1,1,1,1,2,2,2,2,3]],[1710094647,[1,1,1,2,2,2,2,2,3,3]],[1710094648,[1,2,2,2,2,2,2,2,3,4]],[1710094649,[1,1,1,2,2,2,2,2,3,3]],[1710094650,[1,1,1,2,2,2,2,2,3,11]],[1710094651,[1,1,2,2,2,2,2,2,3,3]],[1710094652,[1,1,2,2,2,2,2,2,2,3]],[1710094653,[0,1,1,2,2,2,2,2,2,3]],[1710094654,[1,1,1,1,2,2,2,2,2,2]],[1710094655,[1,1,2,2,2,2,2,2,3,4]],[1710094656,[0,1,1,2,2,2,2,2,16,33]],[1710094657,[1,1,1,2,2,2,2,2,3,3]],[1710094658,[1,1,2,2,2,2,2,2,6,32]],[1710094659,[0,1,2,2,2,2,2,2,2,3]],[1710094660,[1,1,2,2,2,2,2,2,3,3]],[1710094661,[1,1,2,2,2,2,2,2,3,3]],[1710094662,[1,1,1,2,2,2,2,2,3,3]],[1710094663,[1,1,1,1,2,2,2,2,17,34]],[1710094664,[1,1,1,1,1,2,2,2,4,4]],[1710094665,[1,1,1,2,2,2,2,2,6,19]],[1710094666,[0,1,1,2,2,2,2,2,3,3]],[1710094667,[0,1,1,1,1,2,2,2,2,3]],[1710094668,[1,1,1,2,2,2,2,2,3,3]],[1710094669,[1,1,2,2,2,2,2,2,3,3]],[1710094670,[0,1,1,2,2,2,2,2,46,67]],[1710094671,[1,1,1,2,2,2,2,3,15,30]],[1710094672,[1,1,2,2,2,2,2,2,3,3]],[1710094673,[1,1,1,2,2,2,2,2,3,3]],[1710094674,[1,1,2,2,2,2,2,2,3,3]],[1710094675,[1,1,2,2,2,2,2,2,3,3]],[1710094676,[1,1,1,2,2,2,2,2,17,36]],[1710094677,[1,1,1,2,2,2,2,2,6,26]],[1710094678,[1,1,2,2,2,2,2,2,3,4]],[1710094679,[1,1,2,2,2,2,2,2,3,3]],[1710094680,[1,1,2,3,3,3,3,3,4,5]],[1710094681,[1,1,2,2,2,2,3,3,4,5]],[1710094682,[1,3,3,3,4,4,4,5,41,59]],[1710094683,[1,2,2,2,2,3,3,3,4,17]],[1710094684,[1,3,3,3,4,4,4,4,5,6]],[1710094685,[1,2,2,2,2,3,3,3,4,5]],[1710094686,[1,2,2,3,3,3,4,4,5,6]],[1710094687,[1,1,1,2,2,2,2,3,3,4]],[1710094688,[1,2,2,3,3,3,2,4,13,33]],[1710094689,[1,1,2,3,3,3,3,5,66,76]],[1710094690,[1,2,2,3,3,3,4,4,5,6]],[1710094691,[1,2,2,3,3,3,3,4,5,6]],[1710094692,[1,2,2,3,3,3,3,4,6,6]],[1710094693,[1,2,2,3,3,3,3,4,30,49]],[1710094694,[1,2,2,3,3,3,3,4,7,23]],[1710094695,[1,1,2,3,3,3,3,3,5,6]],[1710094696,[1,1,2,3,3,3,4,4,5,6]],[1710094697,[0,2,2,3,3,3,4,4,5,6]],[1710094698,[0,1,2,3,3,3,3,4,5,6]],[1710094699,[1,1,2,3,3,3,3,5,28,48]],[1710094700,[1,1,1,2,2,2,3,4,17,37]],[1710094701,[1,1,2,2,2,3,3,3,5,6]],[1710094702,[1,1,1,2,2,3,3,4,5,7]],[1710094703,[1,1,2,3,3,3,3,4,6,7]],[1710094704,[1,1,2,2,2,3,3,4,12,31]],[1710094705,[1,2,3,3,4,4,4,4,16,38]],[1710094706,[0,1,1,2,2,2,2,3,4,6]],[1710094707,[1,2,2,3,3,3,3,4,5,6]],[1710094708,[1,1,1,2,2,2,2,3,4,4]],[1710094709,[1,2,2,3,3,3,4,4,6,7]],[1710094710,[1,1,2,2,2,2,2,3,7,28]],[1710094711,[1,2,3,3,4,4,4,6,30,48]],[1710094712,[1,1,2,2,2,2,2,3,4,5]],[1710094713,[1,2,3,3,3,3,4,4,6,7]],[1710094714,[1,1,2,2,2,2,2,3,4,5]],[1710094715,[1,2,3,4,4,4,4,4,6,7]],[1710094716,[0,1,2,2,2,2,3,4,36,55]],[1710094717,[1,1,2,3,3,3,3,4,6,7]],[1710094718,[1,1,1,2,2,2,2,2,4,4]],[1710094719,[1,1,2,3,3,3,3,4,5,6]],[1710094720,[1,1,1,2,2,2,2,3,3,4]],[1710094721,[1,1,2,3,3,3,4,5,14,31]],[1710094722,[1,1,2,2,2,2,3,4,5,16]],[1710094723,[1,2,2,3,3,4,4,4,7,8]],[1710094724,[1,1,2,2,2,3,3,4,4,7]],[1710094725,[1,1,2,3,3,3,3,3,5,6]],[1710094726,[0,1,1,2,2,3,3,3,4,5]],[1710094727,[1,1,1,2,3,3,4,6,30,39]],[1710094728,[0,1,1,2,3,3,3,4,4,7]],[1710094729,[0,1,1,1,2,2,3,3,5,8]],[1710094730,[1,1,1,2,2,3,3,3,4,6]],[1710094731,[1,1,1,2,2,2,2,3,4,6]],[1710094732,[1,1,1,3,3,3,4,4,27,44]],[1710094733,[1,1,1,2,2,2,2,4,17,39]],[1710094734,[1,1,2,2,3,3,3,4,5,7]],[1710094735,[1,1,2,2,2,2,2,3,4,5]],[1710094736,[0,1,2,3,3,3,3,4,6,8]],[1710094737,[0,1,1,2,2,2,2,3,4,5]],[1710094738,[1,1,2,2,3,3,4,6,57,71]],[1710094739,[1,1,1,2,2,2,2,3,7,23]],[1710094740,[1,1,2,2,2,2,2,3,5,7]],[1710094741,[1,1,1,2,2,2,2,3,4,5]],[1710094742,[1,1,2,2,3,3,3,4,5,8]],[1710094743,[1,1,2,2,2,2,3,4,10,29]],[1710094744,[1,1,2,2,2,3,3,4,6,8]],[1710094745,[1,1,2,3,3,3,4,4,7,8]],[1710094746,[0,1,2,3,3,3,4,4,7,8]],[1710094747,[0,1,1,3,3,3,3,4,7,7]],[1710094748,[1,2,2,3,3,3,4,4,6,7]],[1710094749,[1,1,2,3,3,3,3,5,28,40]],[1710094750,[1,2,2,3,3,3,4,4,7,16]],[1710094751,[1,1,2,3,3,3,4,4,6,7]],[1710094752,[1,2,3,3,4,4,4,4,6,8]],[1710094753,[0,1,2,2,2,2,3,3,4,5]],[1710094754,[1,2,2,3,3,3,3,4,6,8]],[1710094755,[1,1,2,2,2,3,4,5,20,33]],[1710094756,[1,3,3,4,4,4,4,5,7,9]],[1710094757,[1,1,2,2,2,2,2,4,6,6]],[1710094758,[1,2,3,3,3,4,4,5,7,8]],[1710094759,[0,1,1,2,2,2,2,3,5,6]],[1710094760,[1,2,3,3,3,4,4,4,7,16]],[1710094761,[1,1,2,2,2,2,3,4,30,49]],[1710094762,[1,2,3,3,3,4,4,4,7,9]],[1710094763,[1,2,2,2,2,2,3,3,5,6]],[1710094764,[1,2,3,3,3,3,4,5,7,8]],[1710094765,[1,1,2,2,2,2,3,3,5,5]],[1710094766,[1,2,3,3,3,3,4,5,13,21]],[1710094767,[1,1,1,2,2,2,3,5,6,7]],[1710094768,[1,1,2,3,3,3,4,4,7,8]],[1710094769,[1,1,1,2,2,3,3,4,5,8]],[1710094770,[1,1,2,3,3,3,3,5,7,8]],[1710094771,[1,1,1,2,2,2,3,4,7,18]],[1710094772,[1,1,2,3,3,3,3,5,32,48]],[1710094773,[1,1,2,2,3,3,3,4,6,7]],[1710094774,[1,1,2,3,3,3,3,4,7,9]],[1710094775,[1,1,2,2,3,3,3,3,6,8]],[1710094776,[1,1,2,2,3,3,3,5,6,9]],[1710094777,[1,1,2,3,3,3,4,5,16,32]],[1710094778,[1,1,2,2,2,3,3,5,6,7]],[1710094779,[1,2,2,3,3,3,3,4,7,8]],[1710094780,[1,1,2,2,2,3,3,5,6,8]],[1710094781,[0,1,2,3,3,3,4,4,7,8]],[1710094782,[0,1,1,2,2,2,3,4,5,7]],[1710094783,[1,1,2,3,3,4,4,7,32,39]],[1710094784,[0,1,1,2,2,2,2,3,5,5]],[1710094785,[0,1,2,3,3,3,3,5,6,7]],[1710094786,[1,1,2,2,2,2,2,3,6,6]],[1710094787,[1,1,2,3,3,4,4,4,7,8]],[1710094788,[1,1,1,2,2,2,2,4,6,17]],[1710094789,[1,2,2,3,4,4,4,6,12,37]],[1710094790,[1,1,2,2,2,2,2,3,6,7]],[1710094791,[1,2,2,3,3,3,4,5,8,9]],[1710094792,[1,1,2,2,2,2,2,2,5,7]],[1710094793,[1,1,2,3,3,3,4,5,7,8]],[1710094794,[1,1,1,2,2,2,3,6,36,56]],[1710094795,[0,1,1,3,3,3,3,4,8,9]],[1710094796,[1,1,1,2,2,2,2,5,6,7]],[1710094797,[1,1,2,3,3,3,4,5,6,9]],[1710094798,[1,1,1,2,2,2,2,6,28,42]],[1710094799,[1,1,1,3,3,3,4,5,37,50]],[1710094800,[0,1,1,2,2,2,2,4,6,22]],[1710094801,[0,1,1,2,3,3,3,4,6,8]],[1710094802,[0,1,1,2,2,2,2,3,6,7]],[1710094803,[1,1,2,2,2,3,3,4,6,8]],[1710094804,[1,1,1,2,2,2,2,3,6,7]],[1710094805,[1,2,2,3,4,4,5,7,26,41]],[1710094806,[1,1,2,2,2,2,3,5,6,9]],[1710094807,[2,3,3,2,4,4,4,4,8,9]],[1710094808,[0,1,2,3,3,3,4,5,8,9]]]);
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([[1710094564,[25,25,0]],[1710094565,[1,1,0]],[1710094566,[25,25,0]],[1710094567,[1,1,0]],[1710094568,[71,71,0]],[1710094569,[3,3,0]],[1710094570,[6,6,0]],[1710094571,[9,9,0]],[1710094572,[11,11,0]],[1710094573,[13,13,0]],[1710094574,[18,18,0]],[1710094575,[19,19,0]],[1710094576,[24,24,0]],[1710094577,[26,26,0]],[1710094578,[27,27,0]],[1710094579,[32,32,0]],[1710094580,[34,34,0]],[1710094581,[37,37,0]],[1710094582,[39,39,0]],[1710094583,[43,43,0]],[1710094584,[44,44,0]],[1710094585,[48,48,0]],[1710094586,[51,51,0]],[1710094587,[54,54,0]],[1710094588,[56,56,0]],[1710094589,[60,60,0]],[1710094590,[61,61,0]],[1710094591,[65,65,0]],[1710094592,[67,67,0]],[1710094593,[70,70,0]],[1710094594,[74,74,0]],[1710094595,[76,76,0]],[1710094596,[80,80,0]],[1710094597,[81,81,0]],[1710094598,[84,84,0]],[1710094599,[87,87,0]],[1710094600,[91,91,0]],[1710094601,[92,92,0]],[1710094602,[96,96,0]],[1710094603,[99,99,0]],[1710094604,[102,102,0]],[1710094605,[104,104,0]],[1710094606,[107,107,0]],[1710094607,[109,109,0]],[1710094608,[114,114,0]],[1710094609,[115,115,0]],[1710094610,[118,118,0]],[1710094611,[121,121,0]],[1710094612,[124,124,0]],[1710094613,[126,126,0]],[1710094614,[129,129,0]],[1710094615,[133,133,0]],[1710094616,[134,134,0]],[1710094617,[139,139,0]],[1710094618,[140,140,0]],[1710094619,[143,143,0]],[1710094620,[147,147,0]],[1710094621,[149,149,0]],[1710094622,[151,151,0]],[1710094623,[155,155,0]],[1710094624,[157,157,0]],[1710094625,[160,160,0]],[1710094626,[164,164,0]],[1710094627,[165,165,0]],[1710094628,[170,170,0]],[1710094629,[172,172,0]],[1710094630,[174,174,0]],[1710094631,[176,176,0]],[1710094632,[181,181,0]],[1710094633,[183,183,0]],[1710094634,[186,186,0]],[1710094635,[188,188,0]],[1710094636,[192,192,0]],[1710094637,[194,194,0]],[1710094638,[197,197,0]],[1710094639,[198,198,0]],[1710094640,[204,204,0]],[1710094641,[204,204,0]],[1710094642,[208,208,0]],[1710094643,[211,211,0]],[1710094644,[213,213,0]],[1710094645,[217,217,0]],[1710094646,[220,220,0]],[1710094647,[222,222,0]],[1710094648,[224,224,0]],[1710094649,[228,228,0]],[1710094650,[230,230,0]],[1710094651,[234,234,0]],[1710094652,[236,236,0]],[1710094653,[239,239,0]],[1710094654,[242,242,0]],[1710094655,[244,244,0]],[1710094656,[248,248,0]],[1710094657,[250,250,0]],[1710094658,[253,253,0]],[1710094659,[255,255,0]],[1710094660,[259,259,0]],[1710094661,[262,262,0]],[1710094662,[265,265,0]],[1710094663,[266,266,0]],[1710094664,[270,270,0]],[1710094665,[273,273,0]],[1710094666,[274,274,0]],[1710094667,[280,280,0]],[1710094668,[281,281,0]],[1710094669,[284,284,0]],[1710094670,[285,285,0]],[1710094671,[291,291,0]],[1710094672,[292,292,0]],[1710094673,[295,295,0]],[1710094674,[298,298,0]],[1710094675,[301,301,0]],[1710094676,[303,303,0]],[1710094677,[306,306,0]],[1710094678,[309,309,0]],[1710094679,[313,313,0]],[1710094680,[314,314,0]],[1710094681,[318,318,0]],[1710094682,[320,320,0]],[1710094683,[323,323,0]],[1710094684,[326,326,0]],[1710094685,[330,330,0]],[1710094686,[331,331,0]],[1710094687,[335,335,0]],[1710094688,[337,337,0]],[1710094689,[340,340,0]],[1710094690,[340,340,0]],[1710094691,[340,340,0]],[1710094692,[340,340,0]],[1710094693,[340,340,0]],[1710094694,[340,340,0]],[1710094695,[340,340,0]],[1710094696,[340,340,0]],[1710094697,[340,340,0]],[1710094698,[340,340,0]],[1710094699,[340,340,0]],[1710094700,[340,340,0]],[1710094701,[340,340,0]],[1710094702,[340,340,0]],[1710094703,[340,340,0]],[1710094704,[340,340,0]],[1710094705,[340,340,0]],[1710094706,[340,340,0]],[1710094707,[340,340,0]],[1710094708,[340,340,0]],[1710094709,[340,340,0]],[1710094710,[340,340,0]],[1710094711,[340,340,0]],[1710094712,[340,340,0]],[1710094713,[340,340,0]],[1710094714,[340,340,0]],[1710094715,[340,340,0]],[1710094716,[340,340,0]],[1710094717,[340,340,0]],[1710094718,[340,340,0]],[1710094719,[340,340,0]],[1710094720,[340,340,0]],[1710094721,[340,340,0]],[1710094722,[340,340,0]],[1710094723,[340,340,0]],[1710094724,[340,340,0]],[1710094725,[340,340,0]],[1710094726,[340,340,0]],[1710094727,[340,340,0]],[1710094728,[340,340,0]],[1710094729,[340,340,0]],[1710094730,[340,340,0]],[1710094731,[340,340,0]],[1710094732,[340,340,0]],[1710094733,[340,340,0]],[1710094734,[340,340,0]],[1710094735,[340,340,0]],[1710094736,[340,340,0]],[1710094737,[340,340,0]],[1710094738,[340,340,0]],[1710094739,[340,340,0]],[1710094740,[340,340,0]],[1710094741,[340,340,0]],[1710094742,[340,340,0]],[1710094743,[340,340,0]],[1710094744,[340,340,0]],[1710094745,[340,340,0]],[1710094746,[340,340,0]],[1710094747,[340,340,0]],[1710094748,[340,340,0]],[1710094749,[340,340,0]],[1710094750,[340,340,0]],[1710094751,[340,340,0]],[1710094752,[340,340,0]],[1710094753,[340,340,0]],[1710094754,[340,340,0]],[1710094755,[340,340,0]],[1710094756,[340,340,0]],[1710094757,[340,340,0]],[1710094758,[340,340,0]],[1710094759,[340,340,0]],[1710094760,[340,340,0]],[1710094761,[340,340,0]],[1710094762,[340,340,0]],[1710094763,[340,340,0]],[1710094764,[340,340,0]],[1710094765,[340,340,0]],[1710094766,[340,340,0]],[1710094767,[340,340,0]],[1710094768,[340,340,0]],[1710094769,[340,340,0]],[1710094770,[340,340,0]],[1710094771,[340,340,0]],[1710094772,[340,340,0]],[1710094773,[340,340,0]],[1710094774,[340,340,0]],[1710094775,[340,340,0]],[1710094776,[340,340,0]],[1710094777,[340,340,0]],[1710094778,[340,340,0]],[1710094779,[340,340,0]],[1710094780,[340,340,0]],[1710094781,[340,340,0]],[1710094782,[340,340,0]],[1710094783,[340,340,0]],[1710094784,[340,340,0]],[1710094785,[340,340,0]],[1710094786,[340,340,0]],[1710094787,[340,340,0]],[1710094788,[340,340,0]],[1710094789,[340,340,0]],[1710094790,[340,340,0]],[1710094791,[340,340,0]],[1710094792,[340,340,0]],[1710094793,[340,340,0]],[1710094794,[340,340,0]],[1710094795,[340,340,0]],[1710094796,[340,340,0]],[1710094797,[340,340,0]],[1710094798,[340,340,0]],[1710094799,[340,340,0]],[1710094800,[340,340,0]],[1710094801,[340,340,0]],[1710094802,[340,340,0]],[1710094803,[340,340,0]],[1710094804,[340,340,0]],[1710094805,[340,340,0]],[1710094806,[340,340,0]],[1710094807,[340,340,0]],[1710094808,[503,503,0]]]);
var requestsChart = new Highcharts.StockChart({
chart: {
renderTo: 'requests',
zoomType: 'x',
marginBottom: 60
},
credits: { enabled: false },
legend: {
enabled: true,
floating: true,
y: -65,
borderWidth: 0,
itemStyle: { fontWeight: "normal" },
symbolRadius: 0
},
title: { text: 'A title to let highcharts reserve the place for the title set later' },
navigator: {
maskInside: false
},
rangeSelector: {
buttonSpacing: 0,
buttonTheme: {
fill: '#CFC9C6',
padding: 1,
stroke: '#000000',
'stroke-width': 0.25,
style: {
color: '#000000',
fontWeight: 'bold',
},
states: {
stroke: '#000000',
'stroke-width': 0.25,
hover: {
fill: '#92918C',
style: { color: 'black' }
},
select: {
fill: '#FFA900',
style: { color: 'white' }
}
}
},
buttons : [
{
type : 'minute',
count : 1,
text : '1m'
}, {
type : 'minute',
count : 10,
text : '10m'
}, {
type : 'hour',
count : 1,
text : '1h'
}, {
type : 'all',
count : 1,
text : 'All'
}
],
selected : 3,
inputEnabled : false
},
plotOptions: {
series: {
dataGrouping: { enabled: false }
},
area: {
stacking: 'normal'
}
},
xAxis: {
type: 'datetime',
ordinal: false,
maxZoom: 10000 // three days
},
yAxis:[