-
Notifications
You must be signed in to change notification settings - Fork 925
/
index.html
1173 lines (1104 loc) · 95.5 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-19 06:25:11 GMT</span>
</span>
<span class="simulation-information-item">
<span class="simulation-information-label">Duration: </span>
<span>4m 5s </span>
</span>
<span class="simulation-tooltip simulation-information-item description" title="Description" data-content="Rinha de Backend - 2024/Q1: Crébito - gcrispino">
<span class="simulation-information-label">Description: </span>
<span>Rinha de Backend - 2024/Q1: Crébito - gcrispino</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: [
[1708323912000,0],[1708323913000,0],[1708323914000,0],[1708323915000,0],[1708323916000,1],[1708323917000,2],[1708323918000,2],[1708323919000,4],[1708323920000,4],[1708323921000,5],[1708323922000,6],[1708323923000,7],[1708323924000,8],[1708323925000,8],[1708323926000,10],[1708323927000,10],[1708323928000,12],[1708323929000,12],[1708323930000,14],[1708323931000,14],[1708323932000,15],[1708323933000,16],[1708323934000,17],[1708323935000,17],[1708323936000,19],[1708323937000,20],[1708323938000,20],[1708323939000,22],[1708323940000,22],[1708323941000,23],[1708323942000,25],[1708323943000,25],[1708323944000,26],[1708323945000,26],[1708323946000,28],[1708323947000,29],[1708323948000,30],[1708323949000,30],[1708323950000,32],[1708323951000,32],[1708323952000,33],[1708323953000,34],[1708323954000,35],[1708323955000,36],[1708323956000,37],[1708323957000,38],[1708323958000,39],[1708323959000,39],[1708323960000,41],[1708323961000,42],[1708323962000,44],[1708323963000,44],[1708323964000,45],[1708323965000,46],[1708323966000,47],[1708323967000,48],[1708323968000,49],[1708323969000,49],[1708323970000,51],[1708323971000,50],[1708323972000,52],[1708323973000,52],[1708323974000,53],[1708323975000,55],[1708323976000,56],[1708323977000,55],[1708323978000,57],[1708323979000,58],[1708323980000,59],[1708323981000,59],[1708323982000,61],[1708323983000,61],[1708323984000,63],[1708323985000,63],[1708323986000,64],[1708323987000,65],[1708323988000,66],[1708323989000,67],[1708323990000,68],[1708323991000,68],[1708323992000,70],[1708323993000,70],[1708323994000,72],[1708323995000,72],[1708323996000,73],[1708323997000,74],[1708323998000,75],[1708323999000,76],[1708324000000,77],[1708324001000,78],[1708324002000,79],[1708324003000,79],[1708324004000,81],[1708324005000,81],[1708324006000,82],[1708324007000,84],[1708324008000,86],[1708324009000,86],[1708324010000,87],[1708324011000,87],[1708324012000,89],[1708324013000,90],[1708324014000,90],[1708324015000,92],[1708324016000,92],[1708324017000,93],[1708324018000,103],[1708324019000,113],[1708324020000,108],[1708324021000,112],[1708324022000,109],[1708324023000,128],[1708324024000,116],[1708324025000,132],[1708324026000,116],[1708324027000,128],[1708324028000,116],[1708324029000,144],[1708324030000,127],[1708324031000,124],[1708324032000,132],[1708324033000,157],[1708324034000,122],[1708324035000,131],[1708324036000,123],[1708324037000,119],[1708324038000,132],[1708324039000,134],[1708324040000,125],[1708324041000,129],[1708324042000,135],[1708324043000,119],[1708324044000,129],[1708324045000,136],[1708324046000,127],[1708324047000,131],[1708324048000,127],[1708324049000,141],[1708324050000,128],[1708324051000,126],[1708324052000,124],[1708324053000,139],[1708324054000,128],[1708324055000,125],[1708324056000,126],[1708324057000,133],[1708324058000,151],[1708324059000,134],[1708324060000,134],[1708324061000,133],[1708324062000,135],[1708324063000,136],[1708324064000,116],[1708324065000,129],[1708324066000,119],[1708324067000,135],[1708324068000,134],[1708324069000,131],[1708324070000,131],[1708324071000,126],[1708324072000,133],[1708324073000,122],[1708324074000,124],[1708324075000,131],[1708324076000,132],[1708324077000,127],[1708324078000,130],[1708324079000,127],[1708324080000,132],[1708324081000,128],[1708324082000,133],[1708324083000,136],[1708324084000,129],[1708324085000,133],[1708324086000,130],[1708324087000,135],[1708324088000,127],[1708324089000,148],[1708324090000,134],[1708324091000,130],[1708324092000,136],[1708324093000,124],[1708324094000,155],[1708324095000,129],[1708324096000,133],[1708324097000,126],[1708324098000,135],[1708324099000,129],[1708324100000,127],[1708324101000,129],[1708324102000,131],[1708324103000,127],[1708324104000,110],[1708324105000,110],[1708324106000,110],[1708324107000,110],[1708324108000,111],[1708324109000,110],[1708324110000,110],[1708324111000,110],[1708324112000,111],[1708324113000,110],[1708324114000,110],[1708324115000,110],[1708324116000,110],[1708324117000,110],[1708324118000,139],[1708324119000,136],[1708324120000,127],[1708324121000,121],[1708324122000,145],[1708324123000,122],[1708324124000,119],[1708324125000,136],[1708324126000,129],[1708324127000,123],[1708324128000,119],[1708324129000,131],[1708324130000,127],[1708324131000,121],[1708324132000,129],[1708324133000,131],[1708324134000,132],[1708324135000,134],[1708324136000,122],[1708324137000,122],[1708324138000,126],[1708324139000,131],[1708324140000,140],[1708324141000,130],[1708324142000,125],[1708324143000,149],[1708324144000,138],[1708324145000,135],[1708324146000,128],[1708324147000,138],[1708324148000,123],[1708324149000,122],[1708324150000,124],[1708324151000,148],[1708324152000,135],[1708324153000,145],[1708324154000,114],[1708324155000,122],[1708324156000,126],[1708324157000,34]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#68b65c',
name: 'débitos',
data: [
[1708323912000,0],[1708323913000,0],[1708323914000,0],[1708323915000,0],[1708323916000,1],[1708323917000,1],[1708323918000,4],[1708323919000,6],[1708323920000,7],[1708323921000,9],[1708323922000,11],[1708323923000,13],[1708323924000,15],[1708323925000,16],[1708323926000,19],[1708323927000,20],[1708323928000,22],[1708323929000,24],[1708323930000,25],[1708323931000,28],[1708323932000,29],[1708323933000,31],[1708323934000,33],[1708323935000,35],[1708323936000,37],[1708323937000,38],[1708323938000,40],[1708323939000,43],[1708323940000,45],[1708323941000,47],[1708323942000,48],[1708323943000,51],[1708323944000,51],[1708323945000,53],[1708323946000,55],[1708323947000,56],[1708323948000,59],[1708323949000,60],[1708323950000,62],[1708323951000,64],[1708323952000,66],[1708323953000,68],[1708323954000,69],[1708323955000,71],[1708323956000,74],[1708323957000,74],[1708323958000,77],[1708323959000,79],[1708323960000,80],[1708323961000,83],[1708323962000,84],[1708323963000,87],[1708323964000,89],[1708323965000,90],[1708323966000,93],[1708323967000,94],[1708323968000,96],[1708323969000,97],[1708323970000,99],[1708323971000,101],[1708323972000,102],[1708323973000,104],[1708323974000,106],[1708323975000,108],[1708323976000,110],[1708323977000,111],[1708323978000,113],[1708323979000,115],[1708323980000,117],[1708323981000,119],[1708323982000,120],[1708323983000,123],[1708323984000,125],[1708323985000,127],[1708323986000,128],[1708323987000,130],[1708323988000,132],[1708323989000,134],[1708323990000,136],[1708323991000,138],[1708323992000,139],[1708323993000,141],[1708323994000,142],[1708323995000,144],[1708323996000,147],[1708323997000,147],[1708323998000,151],[1708323999000,152],[1708324000000,153],[1708324001000,155],[1708324002000,157],[1708324003000,159],[1708324004000,161],[1708324005000,162],[1708324006000,165],[1708324007000,167],[1708324008000,169],[1708324009000,171],[1708324010000,172],[1708324011000,174],[1708324012000,176],[1708324013000,178],[1708324014000,179],[1708324015000,182],[1708324016000,184],[1708324017000,184],[1708324018000,206],[1708324019000,227],[1708324020000,216],[1708324021000,227],[1708324022000,216],[1708324023000,265],[1708324024000,230],[1708324025000,262],[1708324026000,223],[1708324027000,237],[1708324028000,233],[1708324029000,284],[1708324030000,248],[1708324031000,256],[1708324032000,253],[1708324033000,312],[1708324034000,247],[1708324035000,252],[1708324036000,251],[1708324037000,239],[1708324038000,267],[1708324039000,268],[1708324040000,258],[1708324041000,260],[1708324042000,271],[1708324043000,235],[1708324044000,250],[1708324045000,267],[1708324046000,260],[1708324047000,251],[1708324048000,257],[1708324049000,275],[1708324050000,253],[1708324051000,258],[1708324052000,250],[1708324053000,269],[1708324054000,253],[1708324055000,253],[1708324056000,258],[1708324057000,275],[1708324058000,283],[1708324059000,261],[1708324060000,264],[1708324061000,266],[1708324062000,254],[1708324063000,263],[1708324064000,232],[1708324065000,251],[1708324066000,233],[1708324067000,256],[1708324068000,271],[1708324069000,250],[1708324070000,254],[1708324071000,247],[1708324072000,260],[1708324073000,249],[1708324074000,244],[1708324075000,259],[1708324076000,254],[1708324077000,247],[1708324078000,258],[1708324079000,254],[1708324080000,257],[1708324081000,251],[1708324082000,267],[1708324083000,276],[1708324084000,250],[1708324085000,266],[1708324086000,258],[1708324087000,252],[1708324088000,252],[1708324089000,287],[1708324090000,269],[1708324091000,269],[1708324092000,268],[1708324093000,240],[1708324094000,303],[1708324095000,244],[1708324096000,269],[1708324097000,246],[1708324098000,278],[1708324099000,256],[1708324100000,248],[1708324101000,257],[1708324102000,256],[1708324103000,258],[1708324104000,221],[1708324105000,221],[1708324106000,220],[1708324107000,221],[1708324108000,220],[1708324109000,221],[1708324110000,220],[1708324111000,221],[1708324112000,220],[1708324113000,221],[1708324114000,220],[1708324115000,221],[1708324116000,221],[1708324117000,221],[1708324118000,285],[1708324119000,269],[1708324120000,248],[1708324121000,246],[1708324122000,284],[1708324123000,251],[1708324124000,240],[1708324125000,276],[1708324126000,263],[1708324127000,240],[1708324128000,235],[1708324129000,264],[1708324130000,261],[1708324131000,246],[1708324132000,264],[1708324133000,258],[1708324134000,263],[1708324135000,263],[1708324136000,249],[1708324137000,240],[1708324138000,237],[1708324139000,270],[1708324140000,275],[1708324141000,260],[1708324142000,251],[1708324143000,274],[1708324144000,271],[1708324145000,282],[1708324146000,253],[1708324147000,267],[1708324148000,255],[1708324149000,245],[1708324150000,242],[1708324151000,301],[1708324152000,266],[1708324153000,284],[1708324154000,237],[1708324155000,244],[1708324156000,256],[1708324157000,68]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#f15b4f',
name: 'extratos',
data: [
[1708323912000,0],[1708323913000,0],[1708323914000,0],[1708323915000,0],[1708323916000,1],[1708323917000,1],[1708323918000,1],[1708323919000,1],[1708323920000,1],[1708323921000,1],[1708323922000,2],[1708323923000,1],[1708323924000,2],[1708323925000,2],[1708323926000,1],[1708323927000,2],[1708323928000,2],[1708323929000,2],[1708323930000,2],[1708323931000,2],[1708323932000,2],[1708323933000,2],[1708323934000,3],[1708323935000,2],[1708323936000,3],[1708323937000,2],[1708323938000,3],[1708323939000,2],[1708323940000,3],[1708323941000,3],[1708323942000,3],[1708323943000,3],[1708323944000,3],[1708323945000,3],[1708323946000,3],[1708323947000,4],[1708323948000,3],[1708323949000,3],[1708323950000,4],[1708323951000,3],[1708323952000,4],[1708323953000,4],[1708323954000,4],[1708323955000,4],[1708323956000,4],[1708323957000,4],[1708323958000,4],[1708323959000,4],[1708323960000,4],[1708323961000,4],[1708323962000,5],[1708323963000,4],[1708323964000,5],[1708323965000,5],[1708323966000,4],[1708323967000,5],[1708323968000,5],[1708323969000,5],[1708323970000,5],[1708323971000,5],[1708323972000,5],[1708323973000,5],[1708323974000,6],[1708323975000,5],[1708323976000,6],[1708323977000,5],[1708323978000,6],[1708323979000,5],[1708323980000,6],[1708323981000,6],[1708323982000,6],[1708323983000,6],[1708323984000,6],[1708323985000,6],[1708323986000,6],[1708323987000,7],[1708323988000,6],[1708323989000,6],[1708323990000,7],[1708323991000,6],[1708323992000,7],[1708323993000,7],[1708323994000,7],[1708323995000,7],[1708323996000,7],[1708323997000,7],[1708323998000,7],[1708323999000,7],[1708324000000,7],[1708324001000,7],[1708324002000,8],[1708324003000,7],[1708324004000,8],[1708324005000,8],[1708324006000,7],[1708324007000,8],[1708324008000,8],[1708324009000,8],[1708324010000,8],[1708324011000,8],[1708324012000,8],[1708324013000,8],[1708324014000,9],[1708324015000,8],[1708324016000,9],[1708324017000,8],[1708324018000,9],[1708324019000,10],[1708324020000,10],[1708324021000,10],[1708324022000,10],[1708324023000,13],[1708324024000,11],[1708324025000,12],[1708324026000,10],[1708324027000,11],[1708324028000,11],[1708324029000,13],[1708324030000,11],[1708324031000,12],[1708324032000,12],[1708324033000,13],[1708324034000,12],[1708324035000,12],[1708324036000,11],[1708324037000,11],[1708324038000,12],[1708324039000,12],[1708324040000,11],[1708324041000,11],[1708324042000,12],[1708324043000,11],[1708324044000,11],[1708324045000,13],[1708324046000,12],[1708324047000,11],[1708324048000,11],[1708324049000,12],[1708324050000,11],[1708324051000,12],[1708324052000,12],[1708324053000,11],[1708324054000,12],[1708324055000,11],[1708324056000,12],[1708324057000,13],[1708324058000,13],[1708324059000,12],[1708324060000,12],[1708324061000,12],[1708324062000,12],[1708324063000,13],[1708324064000,11],[1708324065000,12],[1708324066000,11],[1708324067000,11],[1708324068000,12],[1708324069000,11],[1708324070000,12],[1708324071000,11],[1708324072000,12],[1708324073000,11],[1708324074000,11],[1708324075000,11],[1708324076000,11],[1708324077000,11],[1708324078000,11],[1708324079000,12],[1708324080000,12],[1708324081000,12],[1708324082000,11],[1708324083000,12],[1708324084000,12],[1708324085000,12],[1708324086000,11],[1708324087000,12],[1708324088000,11],[1708324089000,13],[1708324090000,12],[1708324091000,11],[1708324092000,12],[1708324093000,11],[1708324094000,13],[1708324095000,11],[1708324096000,12],[1708324097000,12],[1708324098000,12],[1708324099000,11],[1708324100000,11],[1708324101000,12],[1708324102000,12],[1708324103000,11],[1708324104000,10],[1708324105000,10],[1708324106000,10],[1708324107000,10],[1708324108000,10],[1708324109000,10],[1708324110000,10],[1708324111000,10],[1708324112000,10],[1708324113000,10],[1708324114000,10],[1708324115000,10],[1708324116000,10],[1708324117000,10],[1708324118000,14],[1708324119000,12],[1708324120000,11],[1708324121000,11],[1708324122000,13],[1708324123000,11],[1708324124000,10],[1708324125000,13],[1708324126000,11],[1708324127000,11],[1708324128000,11],[1708324129000,11],[1708324130000,11],[1708324131000,11],[1708324132000,11],[1708324133000,11],[1708324134000,11],[1708324135000,11],[1708324136000,11],[1708324137000,11],[1708324138000,11],[1708324139000,12],[1708324140000,13],[1708324141000,11],[1708324142000,11],[1708324143000,12],[1708324144000,13],[1708324145000,12],[1708324146000,12],[1708324147000,12],[1708324148000,11],[1708324149000,11],[1708324150000,11],[1708324151000,12],[1708324152000,12],[1708324153000,13],[1708324154000,11],[1708324155000,12],[1708324156000,11],[1708324157000,2]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FFDD00',
name: 'validações',
data: [
[1708323912000,0],[1708323913000,0],[1708323914000,0],[1708323915000,5],[1708323916000,5],[1708323917000,0],[1708323918000,0],[1708323919000,0],[1708323920000,0],[1708323921000,0],[1708323922000,0],[1708323923000,0],[1708323924000,0],[1708323925000,0],[1708323926000,0],[1708323927000,0],[1708323928000,0],[1708323929000,0],[1708323930000,0],[1708323931000,0],[1708323932000,0],[1708323933000,0],[1708323934000,0],[1708323935000,0],[1708323936000,0],[1708323937000,0],[1708323938000,0],[1708323939000,0],[1708323940000,0],[1708323941000,0],[1708323942000,0],[1708323943000,0],[1708323944000,0],[1708323945000,0],[1708323946000,0],[1708323947000,0],[1708323948000,0],[1708323949000,0],[1708323950000,0],[1708323951000,0],[1708323952000,0],[1708323953000,0],[1708323954000,0],[1708323955000,0],[1708323956000,0],[1708323957000,0],[1708323958000,0],[1708323959000,0],[1708323960000,0],[1708323961000,0],[1708323962000,0],[1708323963000,0],[1708323964000,0],[1708323965000,0],[1708323966000,0],[1708323967000,0],[1708323968000,0],[1708323969000,0],[1708323970000,0],[1708323971000,0],[1708323972000,0],[1708323973000,0],[1708323974000,0],[1708323975000,0],[1708323976000,0],[1708323977000,0],[1708323978000,0],[1708323979000,0],[1708323980000,0],[1708323981000,0],[1708323982000,0],[1708323983000,0],[1708323984000,0],[1708323985000,0],[1708323986000,0],[1708323987000,0],[1708323988000,0],[1708323989000,0],[1708323990000,0],[1708323991000,0],[1708323992000,0],[1708323993000,0],[1708323994000,0],[1708323995000,0],[1708323996000,0],[1708323997000,0],[1708323998000,0],[1708323999000,0],[1708324000000,0],[1708324001000,0],[1708324002000,0],[1708324003000,0],[1708324004000,0],[1708324005000,0],[1708324006000,0],[1708324007000,0],[1708324008000,0],[1708324009000,0],[1708324010000,0],[1708324011000,0],[1708324012000,0],[1708324013000,0],[1708324014000,0],[1708324015000,0],[1708324016000,0],[1708324017000,0],[1708324018000,0],[1708324019000,0],[1708324020000,0],[1708324021000,0],[1708324022000,0],[1708324023000,0],[1708324024000,0],[1708324025000,0],[1708324026000,0],[1708324027000,0],[1708324028000,0],[1708324029000,0],[1708324030000,0],[1708324031000,0],[1708324032000,0],[1708324033000,0],[1708324034000,0],[1708324035000,0],[1708324036000,0],[1708324037000,0],[1708324038000,0],[1708324039000,0],[1708324040000,0],[1708324041000,0],[1708324042000,0],[1708324043000,0],[1708324044000,0],[1708324045000,0],[1708324046000,0],[1708324047000,0],[1708324048000,0],[1708324049000,0],[1708324050000,0],[1708324051000,0],[1708324052000,0],[1708324053000,0],[1708324054000,0],[1708324055000,0],[1708324056000,0],[1708324057000,0],[1708324058000,0],[1708324059000,0],[1708324060000,0],[1708324061000,0],[1708324062000,0],[1708324063000,0],[1708324064000,0],[1708324065000,0],[1708324066000,0],[1708324067000,0],[1708324068000,0],[1708324069000,0],[1708324070000,0],[1708324071000,0],[1708324072000,0],[1708324073000,0],[1708324074000,0],[1708324075000,0],[1708324076000,0],[1708324077000,0],[1708324078000,0],[1708324079000,0],[1708324080000,0],[1708324081000,0],[1708324082000,0],[1708324083000,0],[1708324084000,0],[1708324085000,0],[1708324086000,0],[1708324087000,0],[1708324088000,0],[1708324089000,0],[1708324090000,0],[1708324091000,0],[1708324092000,0],[1708324093000,0],[1708324094000,0],[1708324095000,0],[1708324096000,0],[1708324097000,0],[1708324098000,0],[1708324099000,0],[1708324100000,0],[1708324101000,0],[1708324102000,0],[1708324103000,0],[1708324104000,0],[1708324105000,0],[1708324106000,0],[1708324107000,0],[1708324108000,0],[1708324109000,0],[1708324110000,0],[1708324111000,0],[1708324112000,0],[1708324113000,0],[1708324114000,0],[1708324115000,0],[1708324116000,0],[1708324117000,0],[1708324118000,0],[1708324119000,0],[1708324120000,0],[1708324121000,0],[1708324122000,0],[1708324123000,0],[1708324124000,0],[1708324125000,0],[1708324126000,0],[1708324127000,0],[1708324128000,0],[1708324129000,0],[1708324130000,0],[1708324131000,0],[1708324132000,0],[1708324133000,0],[1708324134000,0],[1708324135000,0],[1708324136000,0],[1708324137000,0],[1708324138000,0],[1708324139000,0],[1708324140000,0],[1708324141000,0],[1708324142000,0],[1708324143000,0],[1708324144000,0],[1708324145000,0],[1708324146000,0],[1708324147000,0],[1708324148000,0],[1708324149000,0],[1708324150000,0],[1708324151000,0],[1708324152000,0],[1708324153000,0],[1708324154000,0],[1708324155000,0],[1708324156000,0],[1708324157000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00D5FF',
name: 'validação HTTP 404',
data: [
[1708323912000,0],[1708323913000,0],[1708323914000,0],[1708323915000,1],[1708323916000,0],[1708323917000,0],[1708323918000,0],[1708323919000,0],[1708323920000,0],[1708323921000,0],[1708323922000,0],[1708323923000,0],[1708323924000,0],[1708323925000,0],[1708323926000,0],[1708323927000,0],[1708323928000,0],[1708323929000,0],[1708323930000,0],[1708323931000,0],[1708323932000,0],[1708323933000,0],[1708323934000,0],[1708323935000,0],[1708323936000,0],[1708323937000,0],[1708323938000,0],[1708323939000,0],[1708323940000,0],[1708323941000,0],[1708323942000,0],[1708323943000,0],[1708323944000,0],[1708323945000,0],[1708323946000,0],[1708323947000,0],[1708323948000,0],[1708323949000,0],[1708323950000,0],[1708323951000,0],[1708323952000,0],[1708323953000,0],[1708323954000,0],[1708323955000,0],[1708323956000,0],[1708323957000,0],[1708323958000,0],[1708323959000,0],[1708323960000,0],[1708323961000,0],[1708323962000,0],[1708323963000,0],[1708323964000,0],[1708323965000,0],[1708323966000,0],[1708323967000,0],[1708323968000,0],[1708323969000,0],[1708323970000,0],[1708323971000,0],[1708323972000,0],[1708323973000,0],[1708323974000,0],[1708323975000,0],[1708323976000,0],[1708323977000,0],[1708323978000,0],[1708323979000,0],[1708323980000,0],[1708323981000,0],[1708323982000,0],[1708323983000,0],[1708323984000,0],[1708323985000,0],[1708323986000,0],[1708323987000,0],[1708323988000,0],[1708323989000,0],[1708323990000,0],[1708323991000,0],[1708323992000,0],[1708323993000,0],[1708323994000,0],[1708323995000,0],[1708323996000,0],[1708323997000,0],[1708323998000,0],[1708323999000,0],[1708324000000,0],[1708324001000,0],[1708324002000,0],[1708324003000,0],[1708324004000,0],[1708324005000,0],[1708324006000,0],[1708324007000,0],[1708324008000,0],[1708324009000,0],[1708324010000,0],[1708324011000,0],[1708324012000,0],[1708324013000,0],[1708324014000,0],[1708324015000,0],[1708324016000,0],[1708324017000,0],[1708324018000,0],[1708324019000,0],[1708324020000,0],[1708324021000,0],[1708324022000,0],[1708324023000,0],[1708324024000,0],[1708324025000,0],[1708324026000,0],[1708324027000,0],[1708324028000,0],[1708324029000,0],[1708324030000,0],[1708324031000,0],[1708324032000,0],[1708324033000,0],[1708324034000,0],[1708324035000,0],[1708324036000,0],[1708324037000,0],[1708324038000,0],[1708324039000,0],[1708324040000,0],[1708324041000,0],[1708324042000,0],[1708324043000,0],[1708324044000,0],[1708324045000,0],[1708324046000,0],[1708324047000,0],[1708324048000,0],[1708324049000,0],[1708324050000,0],[1708324051000,0],[1708324052000,0],[1708324053000,0],[1708324054000,0],[1708324055000,0],[1708324056000,0],[1708324057000,0],[1708324058000,0],[1708324059000,0],[1708324060000,0],[1708324061000,0],[1708324062000,0],[1708324063000,0],[1708324064000,0],[1708324065000,0],[1708324066000,0],[1708324067000,0],[1708324068000,0],[1708324069000,0],[1708324070000,0],[1708324071000,0],[1708324072000,0],[1708324073000,0],[1708324074000,0],[1708324075000,0],[1708324076000,0],[1708324077000,0],[1708324078000,0],[1708324079000,0],[1708324080000,0],[1708324081000,0],[1708324082000,0],[1708324083000,0],[1708324084000,0],[1708324085000,0],[1708324086000,0],[1708324087000,0],[1708324088000,0],[1708324089000,0],[1708324090000,0],[1708324091000,0],[1708324092000,0],[1708324093000,0],[1708324094000,0],[1708324095000,0],[1708324096000,0],[1708324097000,0],[1708324098000,0],[1708324099000,0],[1708324100000,0],[1708324101000,0],[1708324102000,0],[1708324103000,0],[1708324104000,0],[1708324105000,0],[1708324106000,0],[1708324107000,0],[1708324108000,0],[1708324109000,0],[1708324110000,0],[1708324111000,0],[1708324112000,0],[1708324113000,0],[1708324114000,0],[1708324115000,0],[1708324116000,0],[1708324117000,0],[1708324118000,0],[1708324119000,0],[1708324120000,0],[1708324121000,0],[1708324122000,0],[1708324123000,0],[1708324124000,0],[1708324125000,0],[1708324126000,0],[1708324127000,0],[1708324128000,0],[1708324129000,0],[1708324130000,0],[1708324131000,0],[1708324132000,0],[1708324133000,0],[1708324134000,0],[1708324135000,0],[1708324136000,0],[1708324137000,0],[1708324138000,0],[1708324139000,0],[1708324140000,0],[1708324141000,0],[1708324142000,0],[1708324143000,0],[1708324144000,0],[1708324145000,0],[1708324146000,0],[1708324147000,0],[1708324148000,0],[1708324149000,0],[1708324150000,0],[1708324151000,0],[1708324152000,0],[1708324153000,0],[1708324154000,0],[1708324155000,0],[1708324156000,0],[1708324157000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00FF00',
name: 'validação concorrência saldo - 0',
data: [
[1708323912000,0],[1708323913000,0],[1708323914000,1],[1708323915000,0],[1708323916000,0],[1708323917000,0],[1708323918000,0],[1708323919000,0],[1708323920000,0],[1708323921000,0],[1708323922000,0],[1708323923000,0],[1708323924000,0],[1708323925000,0],[1708323926000,0],[1708323927000,0],[1708323928000,0],[1708323929000,0],[1708323930000,0],[1708323931000,0],[1708323932000,0],[1708323933000,0],[1708323934000,0],[1708323935000,0],[1708323936000,0],[1708323937000,0],[1708323938000,0],[1708323939000,0],[1708323940000,0],[1708323941000,0],[1708323942000,0],[1708323943000,0],[1708323944000,0],[1708323945000,0],[1708323946000,0],[1708323947000,0],[1708323948000,0],[1708323949000,0],[1708323950000,0],[1708323951000,0],[1708323952000,0],[1708323953000,0],[1708323954000,0],[1708323955000,0],[1708323956000,0],[1708323957000,0],[1708323958000,0],[1708323959000,0],[1708323960000,0],[1708323961000,0],[1708323962000,0],[1708323963000,0],[1708323964000,0],[1708323965000,0],[1708323966000,0],[1708323967000,0],[1708323968000,0],[1708323969000,0],[1708323970000,0],[1708323971000,0],[1708323972000,0],[1708323973000,0],[1708323974000,0],[1708323975000,0],[1708323976000,0],[1708323977000,0],[1708323978000,0],[1708323979000,0],[1708323980000,0],[1708323981000,0],[1708323982000,0],[1708323983000,0],[1708323984000,0],[1708323985000,0],[1708323986000,0],[1708323987000,0],[1708323988000,0],[1708323989000,0],[1708323990000,0],[1708323991000,0],[1708323992000,0],[1708323993000,0],[1708323994000,0],[1708323995000,0],[1708323996000,0],[1708323997000,0],[1708323998000,0],[1708323999000,0],[1708324000000,0],[1708324001000,0],[1708324002000,0],[1708324003000,0],[1708324004000,0],[1708324005000,0],[1708324006000,0],[1708324007000,0],[1708324008000,0],[1708324009000,0],[1708324010000,0],[1708324011000,0],[1708324012000,0],[1708324013000,0],[1708324014000,0],[1708324015000,0],[1708324016000,0],[1708324017000,0],[1708324018000,0],[1708324019000,0],[1708324020000,0],[1708324021000,0],[1708324022000,0],[1708324023000,0],[1708324024000,0],[1708324025000,0],[1708324026000,0],[1708324027000,0],[1708324028000,0],[1708324029000,0],[1708324030000,0],[1708324031000,0],[1708324032000,0],[1708324033000,0],[1708324034000,0],[1708324035000,0],[1708324036000,0],[1708324037000,0],[1708324038000,0],[1708324039000,0],[1708324040000,0],[1708324041000,0],[1708324042000,0],[1708324043000,0],[1708324044000,0],[1708324045000,0],[1708324046000,0],[1708324047000,0],[1708324048000,0],[1708324049000,0],[1708324050000,0],[1708324051000,0],[1708324052000,0],[1708324053000,0],[1708324054000,0],[1708324055000,0],[1708324056000,0],[1708324057000,0],[1708324058000,0],[1708324059000,0],[1708324060000,0],[1708324061000,0],[1708324062000,0],[1708324063000,0],[1708324064000,0],[1708324065000,0],[1708324066000,0],[1708324067000,0],[1708324068000,0],[1708324069000,0],[1708324070000,0],[1708324071000,0],[1708324072000,0],[1708324073000,0],[1708324074000,0],[1708324075000,0],[1708324076000,0],[1708324077000,0],[1708324078000,0],[1708324079000,0],[1708324080000,0],[1708324081000,0],[1708324082000,0],[1708324083000,0],[1708324084000,0],[1708324085000,0],[1708324086000,0],[1708324087000,0],[1708324088000,0],[1708324089000,0],[1708324090000,0],[1708324091000,0],[1708324092000,0],[1708324093000,0],[1708324094000,0],[1708324095000,0],[1708324096000,0],[1708324097000,0],[1708324098000,0],[1708324099000,0],[1708324100000,0],[1708324101000,0],[1708324102000,0],[1708324103000,0],[1708324104000,0],[1708324105000,0],[1708324106000,0],[1708324107000,0],[1708324108000,0],[1708324109000,0],[1708324110000,0],[1708324111000,0],[1708324112000,0],[1708324113000,0],[1708324114000,0],[1708324115000,0],[1708324116000,0],[1708324117000,0],[1708324118000,0],[1708324119000,0],[1708324120000,0],[1708324121000,0],[1708324122000,0],[1708324123000,0],[1708324124000,0],[1708324125000,0],[1708324126000,0],[1708324127000,0],[1708324128000,0],[1708324129000,0],[1708324130000,0],[1708324131000,0],[1708324132000,0],[1708324133000,0],[1708324134000,0],[1708324135000,0],[1708324136000,0],[1708324137000,0],[1708324138000,0],[1708324139000,0],[1708324140000,0],[1708324141000,0],[1708324142000,0],[1708324143000,0],[1708324144000,0],[1708324145000,0],[1708324146000,0],[1708324147000,0],[1708324148000,0],[1708324149000,0],[1708324150000,0],[1708324151000,0],[1708324152000,0],[1708324153000,0],[1708324154000,0],[1708324155000,0],[1708324156000,0],[1708324157000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#9D00FF',
name: 'validação concorrência transações - c',
data: [
[1708323912000,0],[1708323913000,25],[1708323914000,24],[1708323915000,0],[1708323916000,0],[1708323917000,0],[1708323918000,0],[1708323919000,0],[1708323920000,0],[1708323921000,0],[1708323922000,0],[1708323923000,0],[1708323924000,0],[1708323925000,0],[1708323926000,0],[1708323927000,0],[1708323928000,0],[1708323929000,0],[1708323930000,0],[1708323931000,0],[1708323932000,0],[1708323933000,0],[1708323934000,0],[1708323935000,0],[1708323936000,0],[1708323937000,0],[1708323938000,0],[1708323939000,0],[1708323940000,0],[1708323941000,0],[1708323942000,0],[1708323943000,0],[1708323944000,0],[1708323945000,0],[1708323946000,0],[1708323947000,0],[1708323948000,0],[1708323949000,0],[1708323950000,0],[1708323951000,0],[1708323952000,0],[1708323953000,0],[1708323954000,0],[1708323955000,0],[1708323956000,0],[1708323957000,0],[1708323958000,0],[1708323959000,0],[1708323960000,0],[1708323961000,0],[1708323962000,0],[1708323963000,0],[1708323964000,0],[1708323965000,0],[1708323966000,0],[1708323967000,0],[1708323968000,0],[1708323969000,0],[1708323970000,0],[1708323971000,0],[1708323972000,0],[1708323973000,0],[1708323974000,0],[1708323975000,0],[1708323976000,0],[1708323977000,0],[1708323978000,0],[1708323979000,0],[1708323980000,0],[1708323981000,0],[1708323982000,0],[1708323983000,0],[1708323984000,0],[1708323985000,0],[1708323986000,0],[1708323987000,0],[1708323988000,0],[1708323989000,0],[1708323990000,0],[1708323991000,0],[1708323992000,0],[1708323993000,0],[1708323994000,0],[1708323995000,0],[1708323996000,0],[1708323997000,0],[1708323998000,0],[1708323999000,0],[1708324000000,0],[1708324001000,0],[1708324002000,0],[1708324003000,0],[1708324004000,0],[1708324005000,0],[1708324006000,0],[1708324007000,0],[1708324008000,0],[1708324009000,0],[1708324010000,0],[1708324011000,0],[1708324012000,0],[1708324013000,0],[1708324014000,0],[1708324015000,0],[1708324016000,0],[1708324017000,0],[1708324018000,0],[1708324019000,0],[1708324020000,0],[1708324021000,0],[1708324022000,0],[1708324023000,0],[1708324024000,0],[1708324025000,0],[1708324026000,0],[1708324027000,0],[1708324028000,0],[1708324029000,0],[1708324030000,0],[1708324031000,0],[1708324032000,0],[1708324033000,0],[1708324034000,0],[1708324035000,0],[1708324036000,0],[1708324037000,0],[1708324038000,0],[1708324039000,0],[1708324040000,0],[1708324041000,0],[1708324042000,0],[1708324043000,0],[1708324044000,0],[1708324045000,0],[1708324046000,0],[1708324047000,0],[1708324048000,0],[1708324049000,0],[1708324050000,0],[1708324051000,0],[1708324052000,0],[1708324053000,0],[1708324054000,0],[1708324055000,0],[1708324056000,0],[1708324057000,0],[1708324058000,0],[1708324059000,0],[1708324060000,0],[1708324061000,0],[1708324062000,0],[1708324063000,0],[1708324064000,0],[1708324065000,0],[1708324066000,0],[1708324067000,0],[1708324068000,0],[1708324069000,0],[1708324070000,0],[1708324071000,0],[1708324072000,0],[1708324073000,0],[1708324074000,0],[1708324075000,0],[1708324076000,0],[1708324077000,0],[1708324078000,0],[1708324079000,0],[1708324080000,0],[1708324081000,0],[1708324082000,0],[1708324083000,0],[1708324084000,0],[1708324085000,0],[1708324086000,0],[1708324087000,0],[1708324088000,0],[1708324089000,0],[1708324090000,0],[1708324091000,0],[1708324092000,0],[1708324093000,0],[1708324094000,0],[1708324095000,0],[1708324096000,0],[1708324097000,0],[1708324098000,0],[1708324099000,0],[1708324100000,0],[1708324101000,0],[1708324102000,0],[1708324103000,0],[1708324104000,0],[1708324105000,0],[1708324106000,0],[1708324107000,0],[1708324108000,0],[1708324109000,0],[1708324110000,0],[1708324111000,0],[1708324112000,0],[1708324113000,0],[1708324114000,0],[1708324115000,0],[1708324116000,0],[1708324117000,0],[1708324118000,0],[1708324119000,0],[1708324120000,0],[1708324121000,0],[1708324122000,0],[1708324123000,0],[1708324124000,0],[1708324125000,0],[1708324126000,0],[1708324127000,0],[1708324128000,0],[1708324129000,0],[1708324130000,0],[1708324131000,0],[1708324132000,0],[1708324133000,0],[1708324134000,0],[1708324135000,0],[1708324136000,0],[1708324137000,0],[1708324138000,0],[1708324139000,0],[1708324140000,0],[1708324141000,0],[1708324142000,0],[1708324143000,0],[1708324144000,0],[1708324145000,0],[1708324146000,0],[1708324147000,0],[1708324148000,0],[1708324149000,0],[1708324150000,0],[1708324151000,0],[1708324152000,0],[1708324153000,0],[1708324154000,0],[1708324155000,0],[1708324156000,0],[1708324157000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FF00E1',
name: 'validação concorrência saldo - -25',
data: [
[1708323912000,1],[1708323913000,1],[1708323914000,0],[1708323915000,0],[1708323916000,0],[1708323917000,0],[1708323918000,0],[1708323919000,0],[1708323920000,0],[1708323921000,0],[1708323922000,0],[1708323923000,0],[1708323924000,0],[1708323925000,0],[1708323926000,0],[1708323927000,0],[1708323928000,0],[1708323929000,0],[1708323930000,0],[1708323931000,0],[1708323932000,0],[1708323933000,0],[1708323934000,0],[1708323935000,0],[1708323936000,0],[1708323937000,0],[1708323938000,0],[1708323939000,0],[1708323940000,0],[1708323941000,0],[1708323942000,0],[1708323943000,0],[1708323944000,0],[1708323945000,0],[1708323946000,0],[1708323947000,0],[1708323948000,0],[1708323949000,0],[1708323950000,0],[1708323951000,0],[1708323952000,0],[1708323953000,0],[1708323954000,0],[1708323955000,0],[1708323956000,0],[1708323957000,0],[1708323958000,0],[1708323959000,0],[1708323960000,0],[1708323961000,0],[1708323962000,0],[1708323963000,0],[1708323964000,0],[1708323965000,0],[1708323966000,0],[1708323967000,0],[1708323968000,0],[1708323969000,0],[1708323970000,0],[1708323971000,0],[1708323972000,0],[1708323973000,0],[1708323974000,0],[1708323975000,0],[1708323976000,0],[1708323977000,0],[1708323978000,0],[1708323979000,0],[1708323980000,0],[1708323981000,0],[1708323982000,0],[1708323983000,0],[1708323984000,0],[1708323985000,0],[1708323986000,0],[1708323987000,0],[1708323988000,0],[1708323989000,0],[1708323990000,0],[1708323991000,0],[1708323992000,0],[1708323993000,0],[1708323994000,0],[1708323995000,0],[1708323996000,0],[1708323997000,0],[1708323998000,0],[1708323999000,0],[1708324000000,0],[1708324001000,0],[1708324002000,0],[1708324003000,0],[1708324004000,0],[1708324005000,0],[1708324006000,0],[1708324007000,0],[1708324008000,0],[1708324009000,0],[1708324010000,0],[1708324011000,0],[1708324012000,0],[1708324013000,0],[1708324014000,0],[1708324015000,0],[1708324016000,0],[1708324017000,0],[1708324018000,0],[1708324019000,0],[1708324020000,0],[1708324021000,0],[1708324022000,0],[1708324023000,0],[1708324024000,0],[1708324025000,0],[1708324026000,0],[1708324027000,0],[1708324028000,0],[1708324029000,0],[1708324030000,0],[1708324031000,0],[1708324032000,0],[1708324033000,0],[1708324034000,0],[1708324035000,0],[1708324036000,0],[1708324037000,0],[1708324038000,0],[1708324039000,0],[1708324040000,0],[1708324041000,0],[1708324042000,0],[1708324043000,0],[1708324044000,0],[1708324045000,0],[1708324046000,0],[1708324047000,0],[1708324048000,0],[1708324049000,0],[1708324050000,0],[1708324051000,0],[1708324052000,0],[1708324053000,0],[1708324054000,0],[1708324055000,0],[1708324056000,0],[1708324057000,0],[1708324058000,0],[1708324059000,0],[1708324060000,0],[1708324061000,0],[1708324062000,0],[1708324063000,0],[1708324064000,0],[1708324065000,0],[1708324066000,0],[1708324067000,0],[1708324068000,0],[1708324069000,0],[1708324070000,0],[1708324071000,0],[1708324072000,0],[1708324073000,0],[1708324074000,0],[1708324075000,0],[1708324076000,0],[1708324077000,0],[1708324078000,0],[1708324079000,0],[1708324080000,0],[1708324081000,0],[1708324082000,0],[1708324083000,0],[1708324084000,0],[1708324085000,0],[1708324086000,0],[1708324087000,0],[1708324088000,0],[1708324089000,0],[1708324090000,0],[1708324091000,0],[1708324092000,0],[1708324093000,0],[1708324094000,0],[1708324095000,0],[1708324096000,0],[1708324097000,0],[1708324098000,0],[1708324099000,0],[1708324100000,0],[1708324101000,0],[1708324102000,0],[1708324103000,0],[1708324104000,0],[1708324105000,0],[1708324106000,0],[1708324107000,0],[1708324108000,0],[1708324109000,0],[1708324110000,0],[1708324111000,0],[1708324112000,0],[1708324113000,0],[1708324114000,0],[1708324115000,0],[1708324116000,0],[1708324117000,0],[1708324118000,0],[1708324119000,0],[1708324120000,0],[1708324121000,0],[1708324122000,0],[1708324123000,0],[1708324124000,0],[1708324125000,0],[1708324126000,0],[1708324127000,0],[1708324128000,0],[1708324129000,0],[1708324130000,0],[1708324131000,0],[1708324132000,0],[1708324133000,0],[1708324134000,0],[1708324135000,0],[1708324136000,0],[1708324137000,0],[1708324138000,0],[1708324139000,0],[1708324140000,0],[1708324141000,0],[1708324142000,0],[1708324143000,0],[1708324144000,0],[1708324145000,0],[1708324146000,0],[1708324147000,0],[1708324148000,0],[1708324149000,0],[1708324150000,0],[1708324151000,0],[1708324152000,0],[1708324153000,0],[1708324154000,0],[1708324155000,0],[1708324156000,0],[1708324157000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#AECAEB',
name: 'validação concorrência transações - d',
data: [
[1708323912000,25],[1708323913000,0],[1708323914000,0],[1708323915000,0],[1708323916000,0],[1708323917000,0],[1708323918000,0],[1708323919000,0],[1708323920000,0],[1708323921000,0],[1708323922000,0],[1708323923000,0],[1708323924000,0],[1708323925000,0],[1708323926000,0],[1708323927000,0],[1708323928000,0],[1708323929000,0],[1708323930000,0],[1708323931000,0],[1708323932000,0],[1708323933000,0],[1708323934000,0],[1708323935000,0],[1708323936000,0],[1708323937000,0],[1708323938000,0],[1708323939000,0],[1708323940000,0],[1708323941000,0],[1708323942000,0],[1708323943000,0],[1708323944000,0],[1708323945000,0],[1708323946000,0],[1708323947000,0],[1708323948000,0],[1708323949000,0],[1708323950000,0],[1708323951000,0],[1708323952000,0],[1708323953000,0],[1708323954000,0],[1708323955000,0],[1708323956000,0],[1708323957000,0],[1708323958000,0],[1708323959000,0],[1708323960000,0],[1708323961000,0],[1708323962000,0],[1708323963000,0],[1708323964000,0],[1708323965000,0],[1708323966000,0],[1708323967000,0],[1708323968000,0],[1708323969000,0],[1708323970000,0],[1708323971000,0],[1708323972000,0],[1708323973000,0],[1708323974000,0],[1708323975000,0],[1708323976000,0],[1708323977000,0],[1708323978000,0],[1708323979000,0],[1708323980000,0],[1708323981000,0],[1708323982000,0],[1708323983000,0],[1708323984000,0],[1708323985000,0],[1708323986000,0],[1708323987000,0],[1708323988000,0],[1708323989000,0],[1708323990000,0],[1708323991000,0],[1708323992000,0],[1708323993000,0],[1708323994000,0],[1708323995000,0],[1708323996000,0],[1708323997000,0],[1708323998000,0],[1708323999000,0],[1708324000000,0],[1708324001000,0],[1708324002000,0],[1708324003000,0],[1708324004000,0],[1708324005000,0],[1708324006000,0],[1708324007000,0],[1708324008000,0],[1708324009000,0],[1708324010000,0],[1708324011000,0],[1708324012000,0],[1708324013000,0],[1708324014000,0],[1708324015000,0],[1708324016000,0],[1708324017000,0],[1708324018000,0],[1708324019000,0],[1708324020000,0],[1708324021000,0],[1708324022000,0],[1708324023000,0],[1708324024000,0],[1708324025000,0],[1708324026000,0],[1708324027000,0],[1708324028000,0],[1708324029000,0],[1708324030000,0],[1708324031000,0],[1708324032000,0],[1708324033000,0],[1708324034000,0],[1708324035000,0],[1708324036000,0],[1708324037000,0],[1708324038000,0],[1708324039000,0],[1708324040000,0],[1708324041000,0],[1708324042000,0],[1708324043000,0],[1708324044000,0],[1708324045000,0],[1708324046000,0],[1708324047000,0],[1708324048000,0],[1708324049000,0],[1708324050000,0],[1708324051000,0],[1708324052000,0],[1708324053000,0],[1708324054000,0],[1708324055000,0],[1708324056000,0],[1708324057000,0],[1708324058000,0],[1708324059000,0],[1708324060000,0],[1708324061000,0],[1708324062000,0],[1708324063000,0],[1708324064000,0],[1708324065000,0],[1708324066000,0],[1708324067000,0],[1708324068000,0],[1708324069000,0],[1708324070000,0],[1708324071000,0],[1708324072000,0],[1708324073000,0],[1708324074000,0],[1708324075000,0],[1708324076000,0],[1708324077000,0],[1708324078000,0],[1708324079000,0],[1708324080000,0],[1708324081000,0],[1708324082000,0],[1708324083000,0],[1708324084000,0],[1708324085000,0],[1708324086000,0],[1708324087000,0],[1708324088000,0],[1708324089000,0],[1708324090000,0],[1708324091000,0],[1708324092000,0],[1708324093000,0],[1708324094000,0],[1708324095000,0],[1708324096000,0],[1708324097000,0],[1708324098000,0],[1708324099000,0],[1708324100000,0],[1708324101000,0],[1708324102000,0],[1708324103000,0],[1708324104000,0],[1708324105000,0],[1708324106000,0],[1708324107000,0],[1708324108000,0],[1708324109000,0],[1708324110000,0],[1708324111000,0],[1708324112000,0],[1708324113000,0],[1708324114000,0],[1708324115000,0],[1708324116000,0],[1708324117000,0],[1708324118000,0],[1708324119000,0],[1708324120000,0],[1708324121000,0],[1708324122000,0],[1708324123000,0],[1708324124000,0],[1708324125000,0],[1708324126000,0],[1708324127000,0],[1708324128000,0],[1708324129000,0],[1708324130000,0],[1708324131000,0],[1708324132000,0],[1708324133000,0],[1708324134000,0],[1708324135000,0],[1708324136000,0],[1708324137000,0],[1708324138000,0],[1708324139000,0],[1708324140000,0],[1708324141000,0],[1708324142000,0],[1708324143000,0],[1708324144000,0],[1708324145000,0],[1708324146000,0],[1708324147000,0],[1708324148000,0],[1708324149000,0],[1708324150000,0],[1708324151000,0],[1708324152000,0],[1708324153000,0],[1708324154000,0],[1708324155000,0],[1708324156000,0],[1708324157000,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: ['8', '24', '40', '56', '72', '87', '103', '119', '135', '151', '167', '183', '199', '215', '231', '246', '262', '278', '294', '310', '326', '342', '358', '374', '390', '405', '421', '437', '453', '469', '485', '501', '517', '533', '549', '564', '580', '596', '612', '628', '644', '660', '676', '692', '708', '723', '739', '755', '771', '787', '803', '819', '835', '851', '867', '882', '898', '914', '930', '946', '962', '978', '994', '1010', '1026', '1041', '1057', '1073', '1089', '1105', '1121', '1137', '1153', '1169', '1185', '1200', '1216', '1232', '1248', '1264', '1280', '1296', '1312', '1328', '1344', '1359', '1375', '1391', '1407', '1423', '1439', '1455', '1471', '1487', '1503', '1518', '1534', '1550', '1566', '1582'],
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: [
37.9,4.2,4.31,4.36,4.14,3.69,3.51,3.16,2.98,2.83,2.5,2.36,2.32,2.07,2.1,2.0,1.68,1.53,1.45,1.21,1.19,1.19,1.02,0.82,0.74,0.56,0.54,0.49,0.47,0.32,0.3,0.23,0.16,0.17,0.17,0.18,0.12,0.09,0.05,0.09,0.07,0.08,0.05,0.05,0.03,0.02,0.03,0.03,0.02,0.02,0.02,0.01,0.01,0.01,0.01,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,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: [
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,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,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' }
}
]
});
responsetimeDistributionChart.setTitle({
text: '<span class="chart_title">Response Time Distribution</span>',
useHTML: true
});
var responsetimepercentilesovertimeokPercentiles = unpack([[1708323912,[31,309,326,336,337,342,347,350,353,354]],[1708323913,[2,2,2,2,2,2,2,2,2,2]],[1708323914,[15,234,248,263,268,271,274,313,323,324]],[1708323915,[2,2,2,2,2,2,2,2,2,2]],[1708323916,[1,3,10,87,128,190,280,288,350,353]],[1708323917,[0,1,2,5,6,8,11,43,80,90]],[1708323918,[4,4,6,6,6,7,8,9,9,10]],[1708323919,[4,5,5,6,6,7,8,10,11,12]],[1708323920,[3,4,4,5,5,6,7,7,7,8]],[1708323921,[2,4,4,5,5,5,5,5,5,6]],[1708323922,[2,4,4,5,5,6,6,6,8,9]],[1708323923,[2,4,4,5,5,5,5,6,6,7]],[1708323924,[2,4,4,5,5,5,5,6,6,6]],[1708323925,[2,4,4,5,5,5,5,6,7,8]],[1708323926,[2,4,4,5,5,5,6,6,7,7]],[1708323927,[2,4,4,5,5,5,6,11,13,14]],[1708323928,[2,4,4,5,5,5,5,6,6,7]],[1708323929,[2,3,4,5,5,5,6,7,8,9]],[1708323930,[2,4,4,4,5,5,5,6,8,9]],[1708323931,[1,3,4,4,4,4,5,5,6,6]],[1708323932,[1,3,4,4,4,5,5,5,5,6]],[1708323933,[1,3,3,3,4,4,4,5,6,6]],[1708323934,[1,3,3,4,4,4,4,5,6,7]],[1708323935,[1,3,4,27,74,131,179,229,258,273]],[1708323936,[1,3,3,3,4,4,4,5,5,5]],[1708323937,[2,3,3,4,4,4,4,5,5,7]],[1708323938,[1,3,3,4,4,4,5,5,6,8]],[1708323939,[1,3,3,4,4,4,4,5,6,6]],[1708323940,[1,3,4,4,5,5,5,26,84,89]],[1708323941,[1,3,4,4,4,5,5,6,9,12]],[1708323942,[1,3,3,4,4,5,5,5,9,12]],[1708323943,[1,3,3,4,4,5,5,6,6,9]],[1708323944,[1,2,3,3,4,4,4,5,6,8]],[1708323945,[1,3,3,3,3,4,4,6,6,10]],[1708323946,[1,2,3,4,4,4,4,5,12,15]],[1708323947,[1,3,3,4,4,4,4,5,8,10]],[1708323948,[1,3,3,3,4,4,4,5,8,11]],[1708323949,[1,3,3,4,4,5,5,6,7,9]],[1708323950,[1,3,3,4,4,4,4,6,8,8]],[1708323951,[1,3,3,4,4,5,5,5,11,13]],[1708323952,[1,3,3,4,5,6,7,9,12,14]],[1708323953,[1,3,3,4,4,4,4,5,7,8]],[1708323954,[1,2,3,3,4,4,4,5,6,7]],[1708323955,[1,2,3,3,3,3,3,4,6,7]],[1708323956,[1,2,3,3,4,4,5,5,7,10]],[1708323957,[1,3,3,4,4,4,5,5,6,8]],[1708323958,[1,3,3,3,4,4,4,5,5,6]],[1708323959,[1,3,3,3,3,4,4,5,5,6]],[1708323960,[1,2,3,3,4,4,4,4,7,11]],[1708323961,[1,2,3,3,4,4,4,5,9,10]],[1708323962,[1,3,3,3,4,4,4,4,8,12]],[1708323963,[1,2,3,3,3,4,4,4,5,6]],[1708323964,[1,2,3,3,4,4,4,5,7,10]],[1708323965,[1,2,3,3,3,4,4,5,7,11]],[1708323966,[1,3,3,3,4,4,5,5,8,11]],[1708323967,[1,2,3,3,3,3,4,5,6,7]],[1708323968,[1,2,2,3,3,3,4,5,8,9]],[1708323969,[1,2,3,3,3,3,4,4,5,7]],[1708323970,[1,3,3,3,3,4,4,4,5,8]],[1708323971,[1,2,3,3,3,3,4,4,6,9]],[1708323972,[1,2,3,3,3,3,4,4,6,7]],[1708323973,[1,2,3,3,3,4,4,5,8,9]],[1708323974,[1,2,3,3,4,4,4,5,6,14]],[1708323975,[1,2,3,4,4,4,4,5,8,13]],[1708323976,[1,2,3,3,4,4,4,5,8,9]],[1708323977,[1,3,3,3,3,4,4,5,7,13]],[1708323978,[0,2,3,3,3,4,4,4,9,12]],[1708323979,[1,2,2,3,3,3,3,4,4,7]],[1708323980,[1,2,2,3,3,3,4,4,6,8]],[1708323981,[1,2,3,3,3,3,3,4,5,5]],[1708323982,[1,2,3,3,3,4,4,5,7,12]],[1708323983,[1,2,3,3,3,3,4,5,10,10]],[1708323984,[1,2,3,3,3,3,3,4,6,13]],[1708323985,[1,2,3,3,3,4,4,6,9,13]],[1708323986,[1,2,3,4,4,4,5,6,9,11]],[1708323987,[0,2,3,3,4,4,5,6,15,18]],[1708323988,[0,2,3,3,4,4,5,5,7,8]],[1708323989,[1,2,3,4,4,4,5,5,8,10]],[1708323990,[1,2,3,3,3,4,4,7,11,14]],[1708323991,[0,2,3,3,3,4,4,5,7,10]],[1708323992,[0,2,3,3,3,4,4,5,9,12]],[1708323993,[0,2,3,3,3,3,4,4,5,6]],[1708323994,[1,2,3,3,3,3,4,4,5,8]],[1708323995,[1,3,3,4,4,4,5,6,8,13]],[1708323996,[1,3,3,4,4,4,5,5,6,8]],[1708323997,[1,2,3,3,3,4,4,5,7,8]],[1708323998,[1,2,3,3,3,3,3,4,5,6]],[1708323999,[0,2,2,3,3,3,4,5,8,11]],[1708324000,[0,2,2,3,3,3,3,4,5,10]],[1708324001,[1,2,2,3,3,3,3,4,7,14]],[1708324002,[1,2,3,3,3,4,4,5,7,15]],[1708324003,[1,2,3,3,3,4,4,5,8,13]],[1708324004,[1,2,3,3,3,3,4,4,5,7]],[1708324005,[1,2,3,3,4,4,4,5,9,15]],[1708324006,[1,3,3,4,4,5,6,7,12,17]],[1708324007,[1,2,3,3,4,4,4,5,9,13]],[1708324008,[1,2,3,3,3,4,5,6,14,18]],[1708324009,[1,2,3,3,3,4,4,4,5,7]],[1708324010,[1,2,3,3,3,4,4,5,12,18]],[1708324011,[1,2,3,3,3,3,4,5,8,13]],[1708324012,[1,2,2,3,3,3,3,4,6,8]],[1708324013,[1,2,2,3,3,3,3,4,5,6]],[1708324014,[1,2,2,3,3,3,4,6,9,15]],[1708324015,[1,2,3,3,3,3,4,5,7,8]],[1708324016,[1,2,3,3,3,3,4,6,10,12]],[1708324017,[1,2,3,3,4,4,4,5,9,10]],[1708324018,[1,3,41,188,228,273,329,462,637,933]],[1708324019,[1,40,113,225,259,293,344,404,638,732]],[1708324020,[1,62,188,354,394,438,462,561,661,729]],[1708324021,[1,47,100,197,212,240,281,403,956,1211]],[1708324022,[1,13,71,194,221,250,297,343,422,730]],[1708324023,[1,68,151,295,337,375,412,476,653,804]],[1708324024,[1,74,138,212,232,258,285,353,636,682]],[1708324025,[1,58,173,320,340,364,388,429,536,839]],[1708324026,[1,54,130,234,256,291,334,390,659,754]],[1708324027,[1,61,139,229,256,296,333,398,593,1016]],[1708324028,[1,57,133,284,312,333,374,418,500,659]],[1708324029,[1,58,151,270,298,344,417,491,699,795]],[1708324030,[1,34,88,183,231,259,323,393,710,934]],[1708324031,[3,37,113,236,257,288,325,440,786,1048]],[1708324032,[1,31,78,176,193,218,247,413,522,934]],[1708324033,[2,74,214,362,393,420,481,564,693,1068]],[1708324034,[4,62,150,276,322,355,398,443,655,830]],[1708324035,[2,51,120,245,283,317,355,422,600,1409]],[1708324036,[1,47,101,189,211,237,284,386,582,673]],[1708324037,[1,41,113,204,224,250,292,422,692,822]],[1708324038,[1,69,132,214,238,265,304,372,533,735]],[1708324039,[1,48,121,220,241,268,311,410,612,857]],[1708324040,[1,41,105,213,238,267,308,356,694,1577]],[1708324041,[1,42,90,176,204,233,278,370,747,955]],[1708324042,[1,36,83,181,210,254,326,521,758,1588]],[1708324043,[1,42,105,201,240,300,361,488,594,1100]],[1708324044,[2,47,104,188,217,246,285,394,721,1037]],[1708324045,[1,41,89,191,234,275,359,516,877,1407]],[1708324046,[1,38,96,168,207,276,333,518,936,1590]],[1708324047,[1,20,61,129,144,164,234,423,824,999]],[1708324048,[2,37,116,209,240,269,329,393,570,692]],[1708324049,[2,64,142,244,269,310,347,406,511,696]],[1708324050,[1,57,150,264,308,347,375,416,534,819]],[1708324051,[2,53,127,228,253,294,337,378,561,678]],[1708324052,[2,66,144,252,278,308,383,526,801,889]],[1708324053,[1,71,190,306,330,355,402,461,614,864]],[1708324054,[3,59,117,239,274,292,331,384,543,638]],[1708324055,[1,58,149,259,286,322,360,421,563,736]],[1708324056,[3,61,142,253,279,315,364,427,600,923]],[1708324057,[2,39,108,217,258,307,339,400,503,679]],[1708324058,[1,66,161,290,316,346,385,447,593,849]],[1708324059,[1,53,114,217,251,293,347,392,608,760]],[1708324060,[1,51,122,207,233,260,302,403,508,835]],[1708324061,[1,51,136,246,288,325,375,439,499,691]],[1708324062,[4,64,142,245,277,303,327,374,446,803]],[1708324063,[1,64,149,319,349,376,413,460,582,775]],[1708324064,[3,84,203,351,391,423,461,515,654,706]],[1708324065,[1,57,124,278,301,339,379,445,531,664]],[1708324066,[2,76,176,302,334,370,397,448,601,750]],[1708324067,[1,41,90,166,193,231,274,450,657,891]],[1708324068,[8,92,157,272,300,334,358,435,564,727]],[1708324069,[1,45,115,204,224,248,287,356,638,1137]],[1708324070,[2,55,123,218,238,270,306,358,548,663]],[1708324071,[1,51,124,242,256,289,323,395,578,698]],[1708324072,[2,79,199,309,325,360,402,463,653,810]],[1708324073,[1,47,107,207,236,273,322,361,475,773]],[1708324074,[1,58,132,238,273,313,355,418,593,741]],[1708324075,[1,52,129,209,239,261,300,334,523,565]],[1708324076,[1,54,117,224,244,270,304,362,632,996]],[1708324077,[1,43,101,189,223,251,325,470,765,1054]],[1708324078,[1,60,130,219,246,268,314,394,552,769]],[1708324079,[2,51,111,253,297,324,351,385,525,572]],[1708324080,[1,74,144,237,255,299,336,379,554,846]],[1708324081,[2,52,129,222,262,297,360,456,587,792]],[1708324082,[1,61,145,240,271,301,332,398,645,889]],[1708324083,[2,57,122,220,245,266,316,363,629,898]],[1708324084,[1,30,110,229,283,318,348,428,535,872]],[1708324085,[3,74,153,275,299,330,363,409,498,598]],[1708324086,[1,96,200,336,375,391,424,479,564,639]],[1708324087,[2,44,103,188,213,258,289,428,667,848]],[1708324088,[2,63,137,268,297,331,374,433,533,937]],[1708324089,[1,63,163,273,299,326,357,414,476,655]],[1708324090,[2,74,141,243,274,300,332,386,568,599]],[1708324091,[1,58,133,226,249,283,329,387,468,561]],[1708324092,[2,66,128,262,301,338,396,450,546,801]],[1708324093,[2,48,116,225,258,288,329,385,490,606]],[1708324094,[1,68,203,330,401,435,476,524,660,1117]],[1708324095,[1,65,137,236,254,285,319,416,578,948]],[1708324096,[2,62,128,209,237,260,319,385,542,868]],[1708324097,[1,41,118,301,333,369,417,481,689,1155]],[1708324098,[1,61,145,274,293,342,404,507,808,1198]],[1708324099,[1,48,114,196,241,287,329,418,556,703]],[1708324100,[1,41,109,178,193,219,248,318,437,615]],[1708324101,[2,67,141,248,266,301,343,412,529,777]],[1708324102,[2,63,130,214,225,247,277,336,511,578]],[1708324103,[4,80,172,272,310,336,373,423,550,678]],[1708324104,[1,3,4,10,31,50,91,121,216,311]],[1708324105,[1,3,4,5,5,6,6,7,9,13]],[1708324106,[1,2,3,4,4,5,5,6,8,14]],[1708324107,[1,3,4,5,6,6,7,8,13,20]],[1708324108,[1,2,3,3,4,4,4,5,6,6]],[1708324109,[1,3,4,5,5,6,6,7,8,10]],[1708324110,[1,2,3,4,4,4,5,6,7,17]],[1708324111,[1,3,4,5,6,6,7,8,10,16]],[1708324112,[1,2,3,3,4,4,5,5,6,10]],[1708324113,[1,4,5,6,6,6,7,8,9,10]],[1708324114,[1,2,3,2,4,4,4,5,6,12]],[1708324115,[1,2,4,4,4,5,5,6,8,8]],[1708324116,[1,2,2,3,4,4,4,5,7,12]],[1708324117,[1,2,4,5,5,5,6,7,9,10]],[1708324118,[1,46,168,267,289,316,342,388,506,1341]],[1708324119,[1,59,123,200,225,245,308,423,600,671]],[1708324120,[1,51,129,238,283,306,352,390,553,692]],[1708324121,[1,57,121,216,234,272,307,382,469,591]],[1708324122,[1,60,136,279,319,349,381,449,542,848]],[1708324123,[2,60,125,228,255,294,339,400,540,734]],[1708324124,[1,50,120,196,216,249,288,346,554,885]],[1708324125,[1,59,148,299,317,339,371,412,471,1158]],[1708324126,[1,52,126,268,296,324,361,419,774,1132]],[1708324127,[3,62,145,234,253,282,312,382,539,644]],[1708324128,[2,70,138,256,272,298,337,407,546,649]],[1708324129,[1,53,138,263,303,332,369,447,611,711]],[1708324130,[1,46,111,195,224,258,302,344,518,638]],[1708324131,[1,63,153,236,254,268,288,409,688,743]],[1708324132,[1,60,115,207,232,261,306,367,515,662]],[1708324133,[1,60,121,196,218,250,290,361,584,824]],[1708324134,[2,58,126,197,224,246,286,339,576,761]],[1708324135,[1,49,120,223,238,287,329,377,506,628]],[1708324136,[2,65,133,242,269,293,330,401,492,584]],[1708324137,[1,31,95,234,257,274,323,380,706,841]],[1708324138,[2,77,155,251,273,301,331,369,535,640]],[1708324139,[1,52,108,177,196,226,256,299,520,667]],[1708324140,[1,58,164,348,369,417,461,543,643,707]],[1708324141,[2,71,165,287,309,333,369,412,476,624]],[1708324142,[1,44,99,173,193,234,271,322,450,557]],[1708324143,[1,79,195,293,309,335,367,430,535,663]],[1708324144,[2,69,226,428,447,482,610,692,992,1363]],[1708324145,[2,46,96,191,232,275,346,445,667,784]],[1708324146,[1,69,142,239,264,296,344,459,647,769]],[1708324147,[1,93,189,337,367,399,426,461,519,657]],[1708324148,[1,64,114,179,196,230,262,318,521,709]],[1708324149,[1,52,96,164,183,220,266,405,589,923]],[1708324150,[1,58,133,247,278,324,390,450,625,745]],[1708324151,[2,81,171,287,314,355,427,488,584,991]],[1708324152,[1,62,132,238,250,273,304,369,638,809]],[1708324153,[1,61,138,271,297,333,375,457,559,673]],[1708324154,[2,56,157,266,292,339,383,426,586,644]],[1708324155,[2,61,119,242,265,306,332,394,570,754]],[1708324156,[4,58,114,207,231,255,286,337,458,476]],[1708324157,[2,144,234,338,366,375,421,448,503,578]]]);
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([[1708323912,[25,25,0]],[1708323913,[1,1,0]],[1708323914,[25,25,0]],[1708323915,[1,1,0]],[1708323916,[61,61,0]],[1708323917,[13,13,0]],[1708323918,[6,6,0]],[1708323919,[9,9,0]],[1708323920,[11,11,0]],[1708323921,[13,13,0]],[1708323922,[18,18,0]],[1708323923,[19,19,0]],[1708323924,[24,24,0]],[1708323925,[26,26,0]],[1708323926,[27,27,0]],[1708323927,[32,32,0]],[1708323928,[34,34,0]],[1708323929,[37,37,0]],[1708323930,[40,40,0]],[1708323931,[42,42,0]],[1708323932,[45,45,0]],[1708323933,[48,48,0]],[1708323934,[50,50,0]],[1708323935,[54,54,0]],[1708323936,[56,56,0]],[1708323937,[60,60,0]],[1708323938,[61,61,0]],[1708323939,[65,65,0]],[1708323940,[68,68,0]],[1708323941,[71,71,0]],[1708323942,[73,73,0]],[1708323943,[77,77,0]],[1708323944,[78,78,0]],[1708323945,[81,81,0]],[1708323946,[84,84,0]],[1708323947,[89,89,0]],[1708323948,[89,89,0]],[1708323949,[93,93,0]],[1708323950,[96,96,0]],[1708323951,[98,98,0]],[1708323952,[102,102,0]],[1708323953,[104,104,0]],[1708323954,[108,108,0]],[1708323955,[109,109,0]],[1708323956,[113,113,0]],[1708323957,[115,115,0]],[1708323958,[119,119,0]],[1708323959,[121,121,0]],[1708323960,[123,123,0]],[1708323961,[126,126,0]],[1708323962,[129,129,0]],[1708323963,[133,133,0]],[1708323964,[135,135,0]],[1708323965,[138,138,0]],[1708323966,[142,142,0]],[1708323967,[142,142,0]],[1708323968,[147,147,0]],[1708323969,[149,149,0]],[1708323970,[152,152,0]],[1708323971,[154,154,0]],[1708323972,[158,158,0]],[1708323973,[160,160,0]],[1708323974,[163,163,0]],[1708323975,[166,166,0]],[1708323976,[170,170,0]],[1708323977,[171,171,0]],[1708323978,[173,173,0]],[1708323979,[178,178,0]],[1708323980,[180,180,0]],[1708323981,[183,183,0]],[1708323982,[185,185,0]],[1708323983,[189,189,0]],[1708323984,[191,191,0]],[1708323985,[194,194,0]],[1708323986,[197,197,0]],[1708323987,[199,199,0]],[1708323988,[204,204,0]],[1708323989,[205,205,0]],[1708323990,[207,207,0]],[1708323991,[211,211,0]],[1708323992,[213,213,0]],[1708323993,[217,217,0]],[1708323994,[220,220,0]],[1708323995,[222,222,0]],[1708323996,[225,225,0]],[1708323997,[227,227,0]],[1708323998,[231,231,0]],[1708323999,[233,233,0]],[1708324000,[237,237,0]],[1708324001,[238,238,0]],[1708324002,[243,243,0]],[1708324003,[244,244,0]],[1708324004,[248,248,0]],[1708324005,[250,250,0]],[1708324006,[252,252,0]],[1708324007,[256,256,0]],[1708324008,[259,259,0]],[1708324009,[262,262,0]],[1708324010,[264,264,0]],[1708324011,[267,267,0]],[1708324012,[270,270,0]],[1708324013,[272,272,0]],[1708324014,[275,275,0]],[1708324015,[279,279,0]],[1708324016,[281,281,0]],[1708324017,[285,285,0]],[1708324018,[286,286,0]],[1708324019,[290,290,0]],[1708324020,[291,291,0]],[1708324021,[296,296,0]],[1708324022,[297,297,0]],[1708324023,[301,301,0]],[1708324024,[304,304,0]],[1708324025,[306,306,0]],[1708324026,[309,309,0]],[1708324027,[312,312,0]],[1708324028,[315,315,0]],[1708324029,[317,317,0]],[1708324030,[321,321,0]],[1708324031,[322,322,0]],[1708324032,[327,327,0]],[1708324033,[329,329,0]],[1708324034,[332,332,0]],[1708324035,[335,335,0]],[1708324036,[338,338,0]],[1708324037,[339,339,0]],[1708324038,[341,341,0]],[1708324039,[340,340,0]],[1708324040,[339,339,0]],[1708324041,[341,341,0]],[1708324042,[340,340,0]],[1708324043,[340,340,0]],[1708324044,[340,340,0]],[1708324045,[339,339,0]],[1708324046,[341,341,0]],[1708324047,[340,340,0]],[1708324048,[340,340,0]],[1708324049,[339,339,0]],[1708324050,[341,341,0]],[1708324051,[340,340,0]],[1708324052,[340,340,0]],[1708324053,[340,340,0]],[1708324054,[340,340,0]],[1708324055,[340,340,0]],[1708324056,[340,340,0]],[1708324057,[340,340,0]],[1708324058,[340,340,0]],[1708324059,[340,340,0]],[1708324060,[340,340,0]],[1708324061,[339,339,0]],[1708324062,[341,341,0]],[1708324063,[340,340,0]],[1708324064,[340,340,0]],[1708324065,[340,340,0]],[1708324066,[340,340,0]],[1708324067,[340,340,0]],[1708324068,[340,340,0]],[1708324069,[340,340,0]],[1708324070,[340,340,0]],[1708324071,[340,340,0]],[1708324072,[340,340,0]],[1708324073,[340,340,0]],[1708324074,[340,340,0]],[1708324075,[340,340,0]],[1708324076,[340,340,0]],[1708324077,[339,339,0]],[1708324078,[341,341,0]],[1708324079,[340,340,0]],[1708324080,[339,339,0]],[1708324081,[341,341,0]],[1708324082,[340,340,0]],[1708324083,[339,339,0]],[1708324084,[340,340,0]],[1708324085,[340,340,0]],[1708324086,[341,341,0]],[1708324087,[340,340,0]],[1708324088,[339,339,0]],[1708324089,[340,340,0]],[1708324090,[341,341,0]],[1708324091,[340,340,0]],[1708324092,[340,340,0]],[1708324093,[340,340,0]],[1708324094,[340,340,0]],[1708324095,[340,340,0]],[1708324096,[339,339,0]],[1708324097,[340,340,0]],[1708324098,[341,341,0]],[1708324099,[340,340,0]],[1708324100,[340,340,0]],[1708324101,[340,340,0]],[1708324102,[340,340,0]],[1708324103,[340,340,0]],[1708324104,[340,340,0]],[1708324105,[340,340,0]],[1708324106,[340,340,0]],[1708324107,[340,340,0]],[1708324108,[340,340,0]],[1708324109,[340,340,0]],[1708324110,[340,340,0]],[1708324111,[340,340,0]],[1708324112,[340,340,0]],[1708324113,[340,340,0]],[1708324114,[340,340,0]],[1708324115,[339,339,0]],[1708324116,[341,341,0]],[1708324117,[340,340,0]],[1708324118,[340,340,0]],[1708324119,[340,340,0]],[1708324120,[340,340,0]],[1708324121,[340,340,0]],[1708324122,[339,339,0]],[1708324123,[341,341,0]],[1708324124,[340,340,0]],[1708324125,[339,339,0]],[1708324126,[341,341,0]],[1708324127,[340,340,0]],[1708324128,[340,340,0]],[1708324129,[340,340,0]],[1708324130,[340,340,0]],[1708324131,[340,340,0]],[1708324132,[340,340,0]],[1708324133,[340,340,0]],[1708324134,[340,340,0]],[1708324135,[340,340,0]],[1708324136,[340,340,0]],[1708324137,[339,339,0]],[1708324138,[341,341,0]],[1708324139,[340,340,0]],[1708324140,[340,340,0]],[1708324141,[340,340,0]],[1708324142,[340,340,0]],[1708324143,[340,340,0]],[1708324144,[340,340,0]],[1708324145,[340,340,0]],[1708324146,[340,340,0]],[1708324147,[339,339,0]],[1708324148,[341,341,0]],[1708324149,[340,340,0]],[1708324150,[339,339,0]],[1708324151,[341,341,0]],[1708324152,[339,339,0]],[1708324153,[341,341,0]],[1708324154,[340,340,0]],[1708324155,[339,339,0]],[1708324156,[341,341,0]],[1708324157,[160,160,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:[