-
Notifications
You must be signed in to change notification settings - Fork 923
/
Copy pathindex.html
1173 lines (1104 loc) · 93.6 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 15:28:17 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 - rafaelpadovezi">
<span class="simulation-information-label">Description: </span>
<span>Rinha de Backend - 2024/Q1: Crébito - rafaelpadovezi</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: [
[1708356497000,0],[1708356498000,0],[1708356499000,0],[1708356500000,0],[1708356501000,0],[1708356502000,1],[1708356503000,2],[1708356504000,2],[1708356505000,4],[1708356506000,4],[1708356507000,5],[1708356508000,6],[1708356509000,7],[1708356510000,8],[1708356511000,8],[1708356512000,11],[1708356513000,10],[1708356514000,12],[1708356515000,12],[1708356516000,14],[1708356517000,14],[1708356518000,15],[1708356519000,16],[1708356520000,17],[1708356521000,17],[1708356522000,19],[1708356523000,20],[1708356524000,20],[1708356525000,22],[1708356526000,22],[1708356527000,23],[1708356528000,25],[1708356529000,25],[1708356530000,26],[1708356531000,26],[1708356532000,28],[1708356533000,29],[1708356534000,30],[1708356535000,30],[1708356536000,32],[1708356537000,32],[1708356538000,33],[1708356539000,34],[1708356540000,35],[1708356541000,36],[1708356542000,37],[1708356543000,38],[1708356544000,39],[1708356545000,39],[1708356546000,41],[1708356547000,41],[1708356548000,43],[1708356549000,43],[1708356550000,44],[1708356551000,45],[1708356552000,46],[1708356553000,47],[1708356554000,48],[1708356555000,48],[1708356556000,50],[1708356557000,50],[1708356558000,52],[1708356559000,52],[1708356560000,53],[1708356561000,54],[1708356562000,56],[1708356563000,55],[1708356564000,57],[1708356565000,58],[1708356566000,59],[1708356567000,59],[1708356568000,61],[1708356569000,61],[1708356570000,63],[1708356571000,63],[1708356572000,64],[1708356573000,65],[1708356574000,66],[1708356575000,67],[1708356576000,68],[1708356577000,68],[1708356578000,70],[1708356579000,70],[1708356580000,72],[1708356581000,72],[1708356582000,73],[1708356583000,74],[1708356584000,75],[1708356585000,77],[1708356586000,78],[1708356587000,79],[1708356588000,80],[1708356589000,80],[1708356590000,82],[1708356591000,82],[1708356592000,83],[1708356593000,84],[1708356594000,86],[1708356595000,86],[1708356596000,87],[1708356597000,87],[1708356598000,89],[1708356599000,90],[1708356600000,90],[1708356601000,92],[1708356602000,92],[1708356603000,93],[1708356604000,95],[1708356605000,95],[1708356606000,96],[1708356607000,97],[1708356608000,98],[1708356609000,98],[1708356610000,100],[1708356611000,100],[1708356612000,102],[1708356613000,101],[1708356614000,104],[1708356615000,103],[1708356616000,105],[1708356617000,106],[1708356618000,107],[1708356619000,108],[1708356620000,108],[1708356621000,109],[1708356622000,111],[1708356623000,111],[1708356624000,111],[1708356625000,148],[1708356626000,111],[1708356627000,122],[1708356628000,110],[1708356629000,111],[1708356630000,111],[1708356631000,111],[1708356632000,111],[1708356633000,111],[1708356634000,111],[1708356635000,111],[1708356636000,110],[1708356637000,111],[1708356638000,110],[1708356639000,111],[1708356640000,111],[1708356641000,111],[1708356642000,110],[1708356643000,111],[1708356644000,111],[1708356645000,111],[1708356646000,111],[1708356647000,112],[1708356648000,111],[1708356649000,111],[1708356650000,111],[1708356651000,111],[1708356652000,111],[1708356653000,111],[1708356654000,111],[1708356655000,111],[1708356656000,110],[1708356657000,111],[1708356658000,110],[1708356659000,111],[1708356660000,111],[1708356661000,111],[1708356662000,111],[1708356663000,111],[1708356664000,110],[1708356665000,110],[1708356666000,111],[1708356667000,110],[1708356668000,111],[1708356669000,111],[1708356670000,111],[1708356671000,110],[1708356672000,111],[1708356673000,111],[1708356674000,111],[1708356675000,111],[1708356676000,110],[1708356677000,111],[1708356678000,111],[1708356679000,111],[1708356680000,111],[1708356681000,111],[1708356682000,111],[1708356683000,111],[1708356684000,111],[1708356685000,110],[1708356686000,111],[1708356687000,111],[1708356688000,111],[1708356689000,110],[1708356690000,111],[1708356691000,111],[1708356692000,111],[1708356693000,111],[1708356694000,111],[1708356695000,111],[1708356696000,111],[1708356697000,110],[1708356698000,111],[1708356699000,111],[1708356700000,111],[1708356701000,110],[1708356702000,111],[1708356703000,111],[1708356704000,111],[1708356705000,111],[1708356706000,111],[1708356707000,111],[1708356708000,111],[1708356709000,111],[1708356710000,111],[1708356711000,111],[1708356712000,110],[1708356713000,111],[1708356714000,110],[1708356715000,111],[1708356716000,111],[1708356717000,111],[1708356718000,110],[1708356719000,111],[1708356720000,111],[1708356721000,111],[1708356722000,111],[1708356723000,111],[1708356724000,110],[1708356725000,111],[1708356726000,111],[1708356727000,110],[1708356728000,110],[1708356729000,111],[1708356730000,110],[1708356731000,111],[1708356732000,110],[1708356733000,111],[1708356734000,110],[1708356735000,111],[1708356736000,111],[1708356737000,111],[1708356738000,110],[1708356739000,110],[1708356740000,110],[1708356741000,111],[1708356742000,109]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#68b65c',
name: 'débitos',
data: [
[1708356497000,0],[1708356498000,0],[1708356499000,0],[1708356500000,0],[1708356501000,0],[1708356502000,1],[1708356503000,2],[1708356504000,5],[1708356505000,6],[1708356506000,8],[1708356507000,9],[1708356508000,12],[1708356509000,14],[1708356510000,15],[1708356511000,16],[1708356512000,19],[1708356513000,20],[1708356514000,22],[1708356515000,24],[1708356516000,25],[1708356517000,28],[1708356518000,29],[1708356519000,31],[1708356520000,33],[1708356521000,35],[1708356522000,37],[1708356523000,38],[1708356524000,40],[1708356525000,42],[1708356526000,44],[1708356527000,46],[1708356528000,47],[1708356529000,50],[1708356530000,51],[1708356531000,53],[1708356532000,55],[1708356533000,56],[1708356534000,59],[1708356535000,60],[1708356536000,62],[1708356537000,64],[1708356538000,66],[1708356539000,68],[1708356540000,69],[1708356541000,71],[1708356542000,74],[1708356543000,75],[1708356544000,78],[1708356545000,80],[1708356546000,80],[1708356547000,83],[1708356548000,85],[1708356549000,87],[1708356550000,89],[1708356551000,90],[1708356552000,92],[1708356553000,94],[1708356554000,96],[1708356555000,97],[1708356556000,98],[1708356557000,102],[1708356558000,102],[1708356559000,104],[1708356560000,107],[1708356561000,108],[1708356562000,111],[1708356563000,111],[1708356564000,113],[1708356565000,115],[1708356566000,117],[1708356567000,119],[1708356568000,120],[1708356569000,123],[1708356570000,124],[1708356571000,126],[1708356572000,128],[1708356573000,129],[1708356574000,132],[1708356575000,133],[1708356576000,135],[1708356577000,137],[1708356578000,139],[1708356579000,141],[1708356580000,142],[1708356581000,144],[1708356582000,147],[1708356583000,147],[1708356584000,150],[1708356585000,152],[1708356586000,154],[1708356587000,155],[1708356588000,158],[1708356589000,160],[1708356590000,162],[1708356591000,163],[1708356592000,166],[1708356593000,167],[1708356594000,169],[1708356595000,171],[1708356596000,172],[1708356597000,175],[1708356598000,176],[1708356599000,178],[1708356600000,180],[1708356601000,181],[1708356602000,184],[1708356603000,184],[1708356604000,186],[1708356605000,189],[1708356606000,191],[1708356607000,192],[1708356608000,194],[1708356609000,197],[1708356610000,198],[1708356611000,200],[1708356612000,201],[1708356613000,203],[1708356614000,205],[1708356615000,207],[1708356616000,209],[1708356617000,210],[1708356618000,213],[1708356619000,214],[1708356620000,216],[1708356621000,218],[1708356622000,220],[1708356623000,221],[1708356624000,220],[1708356625000,283],[1708356626000,220],[1708356627000,235],[1708356628000,221],[1708356629000,221],[1708356630000,221],[1708356631000,221],[1708356632000,221],[1708356633000,221],[1708356634000,220],[1708356635000,221],[1708356636000,221],[1708356637000,221],[1708356638000,222],[1708356639000,221],[1708356640000,221],[1708356641000,221],[1708356642000,221],[1708356643000,221],[1708356644000,220],[1708356645000,220],[1708356646000,220],[1708356647000,222],[1708356648000,220],[1708356649000,220],[1708356650000,220],[1708356651000,221],[1708356652000,220],[1708356653000,220],[1708356654000,220],[1708356655000,221],[1708356656000,220],[1708356657000,221],[1708356658000,220],[1708356659000,220],[1708356660000,220],[1708356661000,221],[1708356662000,220],[1708356663000,221],[1708356664000,220],[1708356665000,220],[1708356666000,221],[1708356667000,220],[1708356668000,221],[1708356669000,221],[1708356670000,221],[1708356671000,220],[1708356672000,221],[1708356673000,221],[1708356674000,221],[1708356675000,220],[1708356676000,221],[1708356677000,220],[1708356678000,222],[1708356679000,220],[1708356680000,221],[1708356681000,221],[1708356682000,220],[1708356683000,221],[1708356684000,221],[1708356685000,220],[1708356686000,221],[1708356687000,221],[1708356688000,221],[1708356689000,220],[1708356690000,221],[1708356691000,221],[1708356692000,221],[1708356693000,220],[1708356694000,221],[1708356695000,221],[1708356696000,221],[1708356697000,220],[1708356698000,220],[1708356699000,221],[1708356700000,221],[1708356701000,220],[1708356702000,220],[1708356703000,220],[1708356704000,221],[1708356705000,220],[1708356706000,221],[1708356707000,221],[1708356708000,220],[1708356709000,221],[1708356710000,221],[1708356711000,221],[1708356712000,220],[1708356713000,221],[1708356714000,221],[1708356715000,221],[1708356716000,220],[1708356717000,221],[1708356718000,220],[1708356719000,221],[1708356720000,220],[1708356721000,221],[1708356722000,221],[1708356723000,221],[1708356724000,221],[1708356725000,221],[1708356726000,220],[1708356727000,220],[1708356728000,221],[1708356729000,220],[1708356730000,220],[1708356731000,221],[1708356732000,221],[1708356733000,221],[1708356734000,220],[1708356735000,220],[1708356736000,220],[1708356737000,221],[1708356738000,221],[1708356739000,220],[1708356740000,220],[1708356741000,221],[1708356742000,217]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#f15b4f',
name: 'extratos',
data: [
[1708356497000,0],[1708356498000,0],[1708356499000,0],[1708356500000,0],[1708356501000,0],[1708356502000,1],[1708356503000,2],[1708356504000,1],[1708356505000,1],[1708356506000,2],[1708356507000,1],[1708356508000,2],[1708356509000,1],[1708356510000,2],[1708356511000,2],[1708356512000,1],[1708356513000,2],[1708356514000,2],[1708356515000,2],[1708356516000,2],[1708356517000,2],[1708356518000,2],[1708356519000,2],[1708356520000,3],[1708356521000,2],[1708356522000,3],[1708356523000,2],[1708356524000,3],[1708356525000,2],[1708356526000,3],[1708356527000,3],[1708356528000,3],[1708356529000,3],[1708356530000,3],[1708356531000,3],[1708356532000,3],[1708356533000,4],[1708356534000,3],[1708356535000,3],[1708356536000,4],[1708356537000,3],[1708356538000,4],[1708356539000,4],[1708356540000,4],[1708356541000,4],[1708356542000,4],[1708356543000,4],[1708356544000,4],[1708356545000,4],[1708356546000,4],[1708356547000,4],[1708356548000,5],[1708356549000,4],[1708356550000,5],[1708356551000,5],[1708356552000,4],[1708356553000,5],[1708356554000,5],[1708356555000,5],[1708356556000,5],[1708356557000,5],[1708356558000,5],[1708356559000,5],[1708356560000,6],[1708356561000,5],[1708356562000,6],[1708356563000,5],[1708356564000,6],[1708356565000,5],[1708356566000,6],[1708356567000,6],[1708356568000,6],[1708356569000,6],[1708356570000,6],[1708356571000,6],[1708356572000,6],[1708356573000,7],[1708356574000,6],[1708356575000,6],[1708356576000,7],[1708356577000,6],[1708356578000,7],[1708356579000,7],[1708356580000,7],[1708356581000,7],[1708356582000,7],[1708356583000,7],[1708356584000,7],[1708356585000,7],[1708356586000,7],[1708356587000,7],[1708356588000,8],[1708356589000,7],[1708356590000,8],[1708356591000,8],[1708356592000,7],[1708356593000,8],[1708356594000,8],[1708356595000,8],[1708356596000,8],[1708356597000,8],[1708356598000,8],[1708356599000,8],[1708356600000,9],[1708356601000,8],[1708356602000,9],[1708356603000,8],[1708356604000,9],[1708356605000,8],[1708356606000,9],[1708356607000,9],[1708356608000,9],[1708356609000,9],[1708356610000,9],[1708356611000,9],[1708356612000,9],[1708356613000,10],[1708356614000,9],[1708356615000,9],[1708356616000,10],[1708356617000,9],[1708356618000,10],[1708356619000,10],[1708356620000,10],[1708356621000,10],[1708356622000,10],[1708356623000,10],[1708356624000,10],[1708356625000,13],[1708356626000,10],[1708356627000,10],[1708356628000,10],[1708356629000,10],[1708356630000,10],[1708356631000,10],[1708356632000,10],[1708356633000,10],[1708356634000,10],[1708356635000,10],[1708356636000,10],[1708356637000,10],[1708356638000,10],[1708356639000,10],[1708356640000,10],[1708356641000,10],[1708356642000,10],[1708356643000,10],[1708356644000,10],[1708356645000,10],[1708356646000,10],[1708356647000,10],[1708356648000,10],[1708356649000,10],[1708356650000,10],[1708356651000,10],[1708356652000,10],[1708356653000,10],[1708356654000,10],[1708356655000,10],[1708356656000,10],[1708356657000,10],[1708356658000,10],[1708356659000,10],[1708356660000,10],[1708356661000,10],[1708356662000,10],[1708356663000,10],[1708356664000,10],[1708356665000,10],[1708356666000,10],[1708356667000,10],[1708356668000,10],[1708356669000,10],[1708356670000,10],[1708356671000,10],[1708356672000,10],[1708356673000,10],[1708356674000,10],[1708356675000,10],[1708356676000,10],[1708356677000,10],[1708356678000,10],[1708356679000,10],[1708356680000,10],[1708356681000,10],[1708356682000,10],[1708356683000,10],[1708356684000,10],[1708356685000,10],[1708356686000,10],[1708356687000,10],[1708356688000,10],[1708356689000,10],[1708356690000,10],[1708356691000,10],[1708356692000,10],[1708356693000,10],[1708356694000,10],[1708356695000,10],[1708356696000,10],[1708356697000,10],[1708356698000,10],[1708356699000,10],[1708356700000,10],[1708356701000,10],[1708356702000,10],[1708356703000,10],[1708356704000,10],[1708356705000,10],[1708356706000,10],[1708356707000,10],[1708356708000,10],[1708356709000,10],[1708356710000,10],[1708356711000,10],[1708356712000,10],[1708356713000,10],[1708356714000,10],[1708356715000,10],[1708356716000,10],[1708356717000,10],[1708356718000,10],[1708356719000,10],[1708356720000,10],[1708356721000,10],[1708356722000,10],[1708356723000,10],[1708356724000,10],[1708356725000,10],[1708356726000,10],[1708356727000,10],[1708356728000,10],[1708356729000,10],[1708356730000,10],[1708356731000,10],[1708356732000,10],[1708356733000,10],[1708356734000,10],[1708356735000,10],[1708356736000,10],[1708356737000,10],[1708356738000,10],[1708356739000,10],[1708356740000,10],[1708356741000,10],[1708356742000,9]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FFDD00',
name: 'validação HTTP 404',
data: [
[1708356497000,0],[1708356498000,0],[1708356499000,0],[1708356500000,0],[1708356501000,1],[1708356502000,0],[1708356503000,0],[1708356504000,0],[1708356505000,0],[1708356506000,0],[1708356507000,0],[1708356508000,0],[1708356509000,0],[1708356510000,0],[1708356511000,0],[1708356512000,0],[1708356513000,0],[1708356514000,0],[1708356515000,0],[1708356516000,0],[1708356517000,0],[1708356518000,0],[1708356519000,0],[1708356520000,0],[1708356521000,0],[1708356522000,0],[1708356523000,0],[1708356524000,0],[1708356525000,0],[1708356526000,0],[1708356527000,0],[1708356528000,0],[1708356529000,0],[1708356530000,0],[1708356531000,0],[1708356532000,0],[1708356533000,0],[1708356534000,0],[1708356535000,0],[1708356536000,0],[1708356537000,0],[1708356538000,0],[1708356539000,0],[1708356540000,0],[1708356541000,0],[1708356542000,0],[1708356543000,0],[1708356544000,0],[1708356545000,0],[1708356546000,0],[1708356547000,0],[1708356548000,0],[1708356549000,0],[1708356550000,0],[1708356551000,0],[1708356552000,0],[1708356553000,0],[1708356554000,0],[1708356555000,0],[1708356556000,0],[1708356557000,0],[1708356558000,0],[1708356559000,0],[1708356560000,0],[1708356561000,0],[1708356562000,0],[1708356563000,0],[1708356564000,0],[1708356565000,0],[1708356566000,0],[1708356567000,0],[1708356568000,0],[1708356569000,0],[1708356570000,0],[1708356571000,0],[1708356572000,0],[1708356573000,0],[1708356574000,0],[1708356575000,0],[1708356576000,0],[1708356577000,0],[1708356578000,0],[1708356579000,0],[1708356580000,0],[1708356581000,0],[1708356582000,0],[1708356583000,0],[1708356584000,0],[1708356585000,0],[1708356586000,0],[1708356587000,0],[1708356588000,0],[1708356589000,0],[1708356590000,0],[1708356591000,0],[1708356592000,0],[1708356593000,0],[1708356594000,0],[1708356595000,0],[1708356596000,0],[1708356597000,0],[1708356598000,0],[1708356599000,0],[1708356600000,0],[1708356601000,0],[1708356602000,0],[1708356603000,0],[1708356604000,0],[1708356605000,0],[1708356606000,0],[1708356607000,0],[1708356608000,0],[1708356609000,0],[1708356610000,0],[1708356611000,0],[1708356612000,0],[1708356613000,0],[1708356614000,0],[1708356615000,0],[1708356616000,0],[1708356617000,0],[1708356618000,0],[1708356619000,0],[1708356620000,0],[1708356621000,0],[1708356622000,0],[1708356623000,0],[1708356624000,0],[1708356625000,0],[1708356626000,0],[1708356627000,0],[1708356628000,0],[1708356629000,0],[1708356630000,0],[1708356631000,0],[1708356632000,0],[1708356633000,0],[1708356634000,0],[1708356635000,0],[1708356636000,0],[1708356637000,0],[1708356638000,0],[1708356639000,0],[1708356640000,0],[1708356641000,0],[1708356642000,0],[1708356643000,0],[1708356644000,0],[1708356645000,0],[1708356646000,0],[1708356647000,0],[1708356648000,0],[1708356649000,0],[1708356650000,0],[1708356651000,0],[1708356652000,0],[1708356653000,0],[1708356654000,0],[1708356655000,0],[1708356656000,0],[1708356657000,0],[1708356658000,0],[1708356659000,0],[1708356660000,0],[1708356661000,0],[1708356662000,0],[1708356663000,0],[1708356664000,0],[1708356665000,0],[1708356666000,0],[1708356667000,0],[1708356668000,0],[1708356669000,0],[1708356670000,0],[1708356671000,0],[1708356672000,0],[1708356673000,0],[1708356674000,0],[1708356675000,0],[1708356676000,0],[1708356677000,0],[1708356678000,0],[1708356679000,0],[1708356680000,0],[1708356681000,0],[1708356682000,0],[1708356683000,0],[1708356684000,0],[1708356685000,0],[1708356686000,0],[1708356687000,0],[1708356688000,0],[1708356689000,0],[1708356690000,0],[1708356691000,0],[1708356692000,0],[1708356693000,0],[1708356694000,0],[1708356695000,0],[1708356696000,0],[1708356697000,0],[1708356698000,0],[1708356699000,0],[1708356700000,0],[1708356701000,0],[1708356702000,0],[1708356703000,0],[1708356704000,0],[1708356705000,0],[1708356706000,0],[1708356707000,0],[1708356708000,0],[1708356709000,0],[1708356710000,0],[1708356711000,0],[1708356712000,0],[1708356713000,0],[1708356714000,0],[1708356715000,0],[1708356716000,0],[1708356717000,0],[1708356718000,0],[1708356719000,0],[1708356720000,0],[1708356721000,0],[1708356722000,0],[1708356723000,0],[1708356724000,0],[1708356725000,0],[1708356726000,0],[1708356727000,0],[1708356728000,0],[1708356729000,0],[1708356730000,0],[1708356731000,0],[1708356732000,0],[1708356733000,0],[1708356734000,0],[1708356735000,0],[1708356736000,0],[1708356737000,0],[1708356738000,0],[1708356739000,0],[1708356740000,0],[1708356741000,0],[1708356742000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00D5FF',
name: 'validações',
data: [
[1708356497000,0],[1708356498000,0],[1708356499000,0],[1708356500000,0],[1708356501000,5],[1708356502000,5],[1708356503000,0],[1708356504000,0],[1708356505000,0],[1708356506000,0],[1708356507000,0],[1708356508000,0],[1708356509000,0],[1708356510000,0],[1708356511000,0],[1708356512000,0],[1708356513000,0],[1708356514000,0],[1708356515000,0],[1708356516000,0],[1708356517000,0],[1708356518000,0],[1708356519000,0],[1708356520000,0],[1708356521000,0],[1708356522000,0],[1708356523000,0],[1708356524000,0],[1708356525000,0],[1708356526000,0],[1708356527000,0],[1708356528000,0],[1708356529000,0],[1708356530000,0],[1708356531000,0],[1708356532000,0],[1708356533000,0],[1708356534000,0],[1708356535000,0],[1708356536000,0],[1708356537000,0],[1708356538000,0],[1708356539000,0],[1708356540000,0],[1708356541000,0],[1708356542000,0],[1708356543000,0],[1708356544000,0],[1708356545000,0],[1708356546000,0],[1708356547000,0],[1708356548000,0],[1708356549000,0],[1708356550000,0],[1708356551000,0],[1708356552000,0],[1708356553000,0],[1708356554000,0],[1708356555000,0],[1708356556000,0],[1708356557000,0],[1708356558000,0],[1708356559000,0],[1708356560000,0],[1708356561000,0],[1708356562000,0],[1708356563000,0],[1708356564000,0],[1708356565000,0],[1708356566000,0],[1708356567000,0],[1708356568000,0],[1708356569000,0],[1708356570000,0],[1708356571000,0],[1708356572000,0],[1708356573000,0],[1708356574000,0],[1708356575000,0],[1708356576000,0],[1708356577000,0],[1708356578000,0],[1708356579000,0],[1708356580000,0],[1708356581000,0],[1708356582000,0],[1708356583000,0],[1708356584000,0],[1708356585000,0],[1708356586000,0],[1708356587000,0],[1708356588000,0],[1708356589000,0],[1708356590000,0],[1708356591000,0],[1708356592000,0],[1708356593000,0],[1708356594000,0],[1708356595000,0],[1708356596000,0],[1708356597000,0],[1708356598000,0],[1708356599000,0],[1708356600000,0],[1708356601000,0],[1708356602000,0],[1708356603000,0],[1708356604000,0],[1708356605000,0],[1708356606000,0],[1708356607000,0],[1708356608000,0],[1708356609000,0],[1708356610000,0],[1708356611000,0],[1708356612000,0],[1708356613000,0],[1708356614000,0],[1708356615000,0],[1708356616000,0],[1708356617000,0],[1708356618000,0],[1708356619000,0],[1708356620000,0],[1708356621000,0],[1708356622000,0],[1708356623000,0],[1708356624000,0],[1708356625000,0],[1708356626000,0],[1708356627000,0],[1708356628000,0],[1708356629000,0],[1708356630000,0],[1708356631000,0],[1708356632000,0],[1708356633000,0],[1708356634000,0],[1708356635000,0],[1708356636000,0],[1708356637000,0],[1708356638000,0],[1708356639000,0],[1708356640000,0],[1708356641000,0],[1708356642000,0],[1708356643000,0],[1708356644000,0],[1708356645000,0],[1708356646000,0],[1708356647000,0],[1708356648000,0],[1708356649000,0],[1708356650000,0],[1708356651000,0],[1708356652000,0],[1708356653000,0],[1708356654000,0],[1708356655000,0],[1708356656000,0],[1708356657000,0],[1708356658000,0],[1708356659000,0],[1708356660000,0],[1708356661000,0],[1708356662000,0],[1708356663000,0],[1708356664000,0],[1708356665000,0],[1708356666000,0],[1708356667000,0],[1708356668000,0],[1708356669000,0],[1708356670000,0],[1708356671000,0],[1708356672000,0],[1708356673000,0],[1708356674000,0],[1708356675000,0],[1708356676000,0],[1708356677000,0],[1708356678000,0],[1708356679000,0],[1708356680000,0],[1708356681000,0],[1708356682000,0],[1708356683000,0],[1708356684000,0],[1708356685000,0],[1708356686000,0],[1708356687000,0],[1708356688000,0],[1708356689000,0],[1708356690000,0],[1708356691000,0],[1708356692000,0],[1708356693000,0],[1708356694000,0],[1708356695000,0],[1708356696000,0],[1708356697000,0],[1708356698000,0],[1708356699000,0],[1708356700000,0],[1708356701000,0],[1708356702000,0],[1708356703000,0],[1708356704000,0],[1708356705000,0],[1708356706000,0],[1708356707000,0],[1708356708000,0],[1708356709000,0],[1708356710000,0],[1708356711000,0],[1708356712000,0],[1708356713000,0],[1708356714000,0],[1708356715000,0],[1708356716000,0],[1708356717000,0],[1708356718000,0],[1708356719000,0],[1708356720000,0],[1708356721000,0],[1708356722000,0],[1708356723000,0],[1708356724000,0],[1708356725000,0],[1708356726000,0],[1708356727000,0],[1708356728000,0],[1708356729000,0],[1708356730000,0],[1708356731000,0],[1708356732000,0],[1708356733000,0],[1708356734000,0],[1708356735000,0],[1708356736000,0],[1708356737000,0],[1708356738000,0],[1708356739000,0],[1708356740000,0],[1708356741000,0],[1708356742000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00FF00',
name: 'validação concorrência saldo - 0',
data: [
[1708356497000,0],[1708356498000,0],[1708356499000,0],[1708356500000,1],[1708356501000,0],[1708356502000,0],[1708356503000,0],[1708356504000,0],[1708356505000,0],[1708356506000,0],[1708356507000,0],[1708356508000,0],[1708356509000,0],[1708356510000,0],[1708356511000,0],[1708356512000,0],[1708356513000,0],[1708356514000,0],[1708356515000,0],[1708356516000,0],[1708356517000,0],[1708356518000,0],[1708356519000,0],[1708356520000,0],[1708356521000,0],[1708356522000,0],[1708356523000,0],[1708356524000,0],[1708356525000,0],[1708356526000,0],[1708356527000,0],[1708356528000,0],[1708356529000,0],[1708356530000,0],[1708356531000,0],[1708356532000,0],[1708356533000,0],[1708356534000,0],[1708356535000,0],[1708356536000,0],[1708356537000,0],[1708356538000,0],[1708356539000,0],[1708356540000,0],[1708356541000,0],[1708356542000,0],[1708356543000,0],[1708356544000,0],[1708356545000,0],[1708356546000,0],[1708356547000,0],[1708356548000,0],[1708356549000,0],[1708356550000,0],[1708356551000,0],[1708356552000,0],[1708356553000,0],[1708356554000,0],[1708356555000,0],[1708356556000,0],[1708356557000,0],[1708356558000,0],[1708356559000,0],[1708356560000,0],[1708356561000,0],[1708356562000,0],[1708356563000,0],[1708356564000,0],[1708356565000,0],[1708356566000,0],[1708356567000,0],[1708356568000,0],[1708356569000,0],[1708356570000,0],[1708356571000,0],[1708356572000,0],[1708356573000,0],[1708356574000,0],[1708356575000,0],[1708356576000,0],[1708356577000,0],[1708356578000,0],[1708356579000,0],[1708356580000,0],[1708356581000,0],[1708356582000,0],[1708356583000,0],[1708356584000,0],[1708356585000,0],[1708356586000,0],[1708356587000,0],[1708356588000,0],[1708356589000,0],[1708356590000,0],[1708356591000,0],[1708356592000,0],[1708356593000,0],[1708356594000,0],[1708356595000,0],[1708356596000,0],[1708356597000,0],[1708356598000,0],[1708356599000,0],[1708356600000,0],[1708356601000,0],[1708356602000,0],[1708356603000,0],[1708356604000,0],[1708356605000,0],[1708356606000,0],[1708356607000,0],[1708356608000,0],[1708356609000,0],[1708356610000,0],[1708356611000,0],[1708356612000,0],[1708356613000,0],[1708356614000,0],[1708356615000,0],[1708356616000,0],[1708356617000,0],[1708356618000,0],[1708356619000,0],[1708356620000,0],[1708356621000,0],[1708356622000,0],[1708356623000,0],[1708356624000,0],[1708356625000,0],[1708356626000,0],[1708356627000,0],[1708356628000,0],[1708356629000,0],[1708356630000,0],[1708356631000,0],[1708356632000,0],[1708356633000,0],[1708356634000,0],[1708356635000,0],[1708356636000,0],[1708356637000,0],[1708356638000,0],[1708356639000,0],[1708356640000,0],[1708356641000,0],[1708356642000,0],[1708356643000,0],[1708356644000,0],[1708356645000,0],[1708356646000,0],[1708356647000,0],[1708356648000,0],[1708356649000,0],[1708356650000,0],[1708356651000,0],[1708356652000,0],[1708356653000,0],[1708356654000,0],[1708356655000,0],[1708356656000,0],[1708356657000,0],[1708356658000,0],[1708356659000,0],[1708356660000,0],[1708356661000,0],[1708356662000,0],[1708356663000,0],[1708356664000,0],[1708356665000,0],[1708356666000,0],[1708356667000,0],[1708356668000,0],[1708356669000,0],[1708356670000,0],[1708356671000,0],[1708356672000,0],[1708356673000,0],[1708356674000,0],[1708356675000,0],[1708356676000,0],[1708356677000,0],[1708356678000,0],[1708356679000,0],[1708356680000,0],[1708356681000,0],[1708356682000,0],[1708356683000,0],[1708356684000,0],[1708356685000,0],[1708356686000,0],[1708356687000,0],[1708356688000,0],[1708356689000,0],[1708356690000,0],[1708356691000,0],[1708356692000,0],[1708356693000,0],[1708356694000,0],[1708356695000,0],[1708356696000,0],[1708356697000,0],[1708356698000,0],[1708356699000,0],[1708356700000,0],[1708356701000,0],[1708356702000,0],[1708356703000,0],[1708356704000,0],[1708356705000,0],[1708356706000,0],[1708356707000,0],[1708356708000,0],[1708356709000,0],[1708356710000,0],[1708356711000,0],[1708356712000,0],[1708356713000,0],[1708356714000,0],[1708356715000,0],[1708356716000,0],[1708356717000,0],[1708356718000,0],[1708356719000,0],[1708356720000,0],[1708356721000,0],[1708356722000,0],[1708356723000,0],[1708356724000,0],[1708356725000,0],[1708356726000,0],[1708356727000,0],[1708356728000,0],[1708356729000,0],[1708356730000,0],[1708356731000,0],[1708356732000,0],[1708356733000,0],[1708356734000,0],[1708356735000,0],[1708356736000,0],[1708356737000,0],[1708356738000,0],[1708356739000,0],[1708356740000,0],[1708356741000,0],[1708356742000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#9D00FF',
name: 'validação concorrência transações - c',
data: [
[1708356497000,0],[1708356498000,0],[1708356499000,23],[1708356500000,25],[1708356501000,0],[1708356502000,0],[1708356503000,0],[1708356504000,0],[1708356505000,0],[1708356506000,0],[1708356507000,0],[1708356508000,0],[1708356509000,0],[1708356510000,0],[1708356511000,0],[1708356512000,0],[1708356513000,0],[1708356514000,0],[1708356515000,0],[1708356516000,0],[1708356517000,0],[1708356518000,0],[1708356519000,0],[1708356520000,0],[1708356521000,0],[1708356522000,0],[1708356523000,0],[1708356524000,0],[1708356525000,0],[1708356526000,0],[1708356527000,0],[1708356528000,0],[1708356529000,0],[1708356530000,0],[1708356531000,0],[1708356532000,0],[1708356533000,0],[1708356534000,0],[1708356535000,0],[1708356536000,0],[1708356537000,0],[1708356538000,0],[1708356539000,0],[1708356540000,0],[1708356541000,0],[1708356542000,0],[1708356543000,0],[1708356544000,0],[1708356545000,0],[1708356546000,0],[1708356547000,0],[1708356548000,0],[1708356549000,0],[1708356550000,0],[1708356551000,0],[1708356552000,0],[1708356553000,0],[1708356554000,0],[1708356555000,0],[1708356556000,0],[1708356557000,0],[1708356558000,0],[1708356559000,0],[1708356560000,0],[1708356561000,0],[1708356562000,0],[1708356563000,0],[1708356564000,0],[1708356565000,0],[1708356566000,0],[1708356567000,0],[1708356568000,0],[1708356569000,0],[1708356570000,0],[1708356571000,0],[1708356572000,0],[1708356573000,0],[1708356574000,0],[1708356575000,0],[1708356576000,0],[1708356577000,0],[1708356578000,0],[1708356579000,0],[1708356580000,0],[1708356581000,0],[1708356582000,0],[1708356583000,0],[1708356584000,0],[1708356585000,0],[1708356586000,0],[1708356587000,0],[1708356588000,0],[1708356589000,0],[1708356590000,0],[1708356591000,0],[1708356592000,0],[1708356593000,0],[1708356594000,0],[1708356595000,0],[1708356596000,0],[1708356597000,0],[1708356598000,0],[1708356599000,0],[1708356600000,0],[1708356601000,0],[1708356602000,0],[1708356603000,0],[1708356604000,0],[1708356605000,0],[1708356606000,0],[1708356607000,0],[1708356608000,0],[1708356609000,0],[1708356610000,0],[1708356611000,0],[1708356612000,0],[1708356613000,0],[1708356614000,0],[1708356615000,0],[1708356616000,0],[1708356617000,0],[1708356618000,0],[1708356619000,0],[1708356620000,0],[1708356621000,0],[1708356622000,0],[1708356623000,0],[1708356624000,0],[1708356625000,0],[1708356626000,0],[1708356627000,0],[1708356628000,0],[1708356629000,0],[1708356630000,0],[1708356631000,0],[1708356632000,0],[1708356633000,0],[1708356634000,0],[1708356635000,0],[1708356636000,0],[1708356637000,0],[1708356638000,0],[1708356639000,0],[1708356640000,0],[1708356641000,0],[1708356642000,0],[1708356643000,0],[1708356644000,0],[1708356645000,0],[1708356646000,0],[1708356647000,0],[1708356648000,0],[1708356649000,0],[1708356650000,0],[1708356651000,0],[1708356652000,0],[1708356653000,0],[1708356654000,0],[1708356655000,0],[1708356656000,0],[1708356657000,0],[1708356658000,0],[1708356659000,0],[1708356660000,0],[1708356661000,0],[1708356662000,0],[1708356663000,0],[1708356664000,0],[1708356665000,0],[1708356666000,0],[1708356667000,0],[1708356668000,0],[1708356669000,0],[1708356670000,0],[1708356671000,0],[1708356672000,0],[1708356673000,0],[1708356674000,0],[1708356675000,0],[1708356676000,0],[1708356677000,0],[1708356678000,0],[1708356679000,0],[1708356680000,0],[1708356681000,0],[1708356682000,0],[1708356683000,0],[1708356684000,0],[1708356685000,0],[1708356686000,0],[1708356687000,0],[1708356688000,0],[1708356689000,0],[1708356690000,0],[1708356691000,0],[1708356692000,0],[1708356693000,0],[1708356694000,0],[1708356695000,0],[1708356696000,0],[1708356697000,0],[1708356698000,0],[1708356699000,0],[1708356700000,0],[1708356701000,0],[1708356702000,0],[1708356703000,0],[1708356704000,0],[1708356705000,0],[1708356706000,0],[1708356707000,0],[1708356708000,0],[1708356709000,0],[1708356710000,0],[1708356711000,0],[1708356712000,0],[1708356713000,0],[1708356714000,0],[1708356715000,0],[1708356716000,0],[1708356717000,0],[1708356718000,0],[1708356719000,0],[1708356720000,0],[1708356721000,0],[1708356722000,0],[1708356723000,0],[1708356724000,0],[1708356725000,0],[1708356726000,0],[1708356727000,0],[1708356728000,0],[1708356729000,0],[1708356730000,0],[1708356731000,0],[1708356732000,0],[1708356733000,0],[1708356734000,0],[1708356735000,0],[1708356736000,0],[1708356737000,0],[1708356738000,0],[1708356739000,0],[1708356740000,0],[1708356741000,0],[1708356742000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FF00E1',
name: 'validação concorrência saldo - -25',
data: [
[1708356497000,0],[1708356498000,1],[1708356499000,1],[1708356500000,0],[1708356501000,0],[1708356502000,0],[1708356503000,0],[1708356504000,0],[1708356505000,0],[1708356506000,0],[1708356507000,0],[1708356508000,0],[1708356509000,0],[1708356510000,0],[1708356511000,0],[1708356512000,0],[1708356513000,0],[1708356514000,0],[1708356515000,0],[1708356516000,0],[1708356517000,0],[1708356518000,0],[1708356519000,0],[1708356520000,0],[1708356521000,0],[1708356522000,0],[1708356523000,0],[1708356524000,0],[1708356525000,0],[1708356526000,0],[1708356527000,0],[1708356528000,0],[1708356529000,0],[1708356530000,0],[1708356531000,0],[1708356532000,0],[1708356533000,0],[1708356534000,0],[1708356535000,0],[1708356536000,0],[1708356537000,0],[1708356538000,0],[1708356539000,0],[1708356540000,0],[1708356541000,0],[1708356542000,0],[1708356543000,0],[1708356544000,0],[1708356545000,0],[1708356546000,0],[1708356547000,0],[1708356548000,0],[1708356549000,0],[1708356550000,0],[1708356551000,0],[1708356552000,0],[1708356553000,0],[1708356554000,0],[1708356555000,0],[1708356556000,0],[1708356557000,0],[1708356558000,0],[1708356559000,0],[1708356560000,0],[1708356561000,0],[1708356562000,0],[1708356563000,0],[1708356564000,0],[1708356565000,0],[1708356566000,0],[1708356567000,0],[1708356568000,0],[1708356569000,0],[1708356570000,0],[1708356571000,0],[1708356572000,0],[1708356573000,0],[1708356574000,0],[1708356575000,0],[1708356576000,0],[1708356577000,0],[1708356578000,0],[1708356579000,0],[1708356580000,0],[1708356581000,0],[1708356582000,0],[1708356583000,0],[1708356584000,0],[1708356585000,0],[1708356586000,0],[1708356587000,0],[1708356588000,0],[1708356589000,0],[1708356590000,0],[1708356591000,0],[1708356592000,0],[1708356593000,0],[1708356594000,0],[1708356595000,0],[1708356596000,0],[1708356597000,0],[1708356598000,0],[1708356599000,0],[1708356600000,0],[1708356601000,0],[1708356602000,0],[1708356603000,0],[1708356604000,0],[1708356605000,0],[1708356606000,0],[1708356607000,0],[1708356608000,0],[1708356609000,0],[1708356610000,0],[1708356611000,0],[1708356612000,0],[1708356613000,0],[1708356614000,0],[1708356615000,0],[1708356616000,0],[1708356617000,0],[1708356618000,0],[1708356619000,0],[1708356620000,0],[1708356621000,0],[1708356622000,0],[1708356623000,0],[1708356624000,0],[1708356625000,0],[1708356626000,0],[1708356627000,0],[1708356628000,0],[1708356629000,0],[1708356630000,0],[1708356631000,0],[1708356632000,0],[1708356633000,0],[1708356634000,0],[1708356635000,0],[1708356636000,0],[1708356637000,0],[1708356638000,0],[1708356639000,0],[1708356640000,0],[1708356641000,0],[1708356642000,0],[1708356643000,0],[1708356644000,0],[1708356645000,0],[1708356646000,0],[1708356647000,0],[1708356648000,0],[1708356649000,0],[1708356650000,0],[1708356651000,0],[1708356652000,0],[1708356653000,0],[1708356654000,0],[1708356655000,0],[1708356656000,0],[1708356657000,0],[1708356658000,0],[1708356659000,0],[1708356660000,0],[1708356661000,0],[1708356662000,0],[1708356663000,0],[1708356664000,0],[1708356665000,0],[1708356666000,0],[1708356667000,0],[1708356668000,0],[1708356669000,0],[1708356670000,0],[1708356671000,0],[1708356672000,0],[1708356673000,0],[1708356674000,0],[1708356675000,0],[1708356676000,0],[1708356677000,0],[1708356678000,0],[1708356679000,0],[1708356680000,0],[1708356681000,0],[1708356682000,0],[1708356683000,0],[1708356684000,0],[1708356685000,0],[1708356686000,0],[1708356687000,0],[1708356688000,0],[1708356689000,0],[1708356690000,0],[1708356691000,0],[1708356692000,0],[1708356693000,0],[1708356694000,0],[1708356695000,0],[1708356696000,0],[1708356697000,0],[1708356698000,0],[1708356699000,0],[1708356700000,0],[1708356701000,0],[1708356702000,0],[1708356703000,0],[1708356704000,0],[1708356705000,0],[1708356706000,0],[1708356707000,0],[1708356708000,0],[1708356709000,0],[1708356710000,0],[1708356711000,0],[1708356712000,0],[1708356713000,0],[1708356714000,0],[1708356715000,0],[1708356716000,0],[1708356717000,0],[1708356718000,0],[1708356719000,0],[1708356720000,0],[1708356721000,0],[1708356722000,0],[1708356723000,0],[1708356724000,0],[1708356725000,0],[1708356726000,0],[1708356727000,0],[1708356728000,0],[1708356729000,0],[1708356730000,0],[1708356731000,0],[1708356732000,0],[1708356733000,0],[1708356734000,0],[1708356735000,0],[1708356736000,0],[1708356737000,0],[1708356738000,0],[1708356739000,0],[1708356740000,0],[1708356741000,0],[1708356742000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#AECAEB',
name: 'validação concorrência transações - d',
data: [
[1708356497000,25],[1708356498000,24],[1708356499000,0],[1708356500000,0],[1708356501000,0],[1708356502000,0],[1708356503000,0],[1708356504000,0],[1708356505000,0],[1708356506000,0],[1708356507000,0],[1708356508000,0],[1708356509000,0],[1708356510000,0],[1708356511000,0],[1708356512000,0],[1708356513000,0],[1708356514000,0],[1708356515000,0],[1708356516000,0],[1708356517000,0],[1708356518000,0],[1708356519000,0],[1708356520000,0],[1708356521000,0],[1708356522000,0],[1708356523000,0],[1708356524000,0],[1708356525000,0],[1708356526000,0],[1708356527000,0],[1708356528000,0],[1708356529000,0],[1708356530000,0],[1708356531000,0],[1708356532000,0],[1708356533000,0],[1708356534000,0],[1708356535000,0],[1708356536000,0],[1708356537000,0],[1708356538000,0],[1708356539000,0],[1708356540000,0],[1708356541000,0],[1708356542000,0],[1708356543000,0],[1708356544000,0],[1708356545000,0],[1708356546000,0],[1708356547000,0],[1708356548000,0],[1708356549000,0],[1708356550000,0],[1708356551000,0],[1708356552000,0],[1708356553000,0],[1708356554000,0],[1708356555000,0],[1708356556000,0],[1708356557000,0],[1708356558000,0],[1708356559000,0],[1708356560000,0],[1708356561000,0],[1708356562000,0],[1708356563000,0],[1708356564000,0],[1708356565000,0],[1708356566000,0],[1708356567000,0],[1708356568000,0],[1708356569000,0],[1708356570000,0],[1708356571000,0],[1708356572000,0],[1708356573000,0],[1708356574000,0],[1708356575000,0],[1708356576000,0],[1708356577000,0],[1708356578000,0],[1708356579000,0],[1708356580000,0],[1708356581000,0],[1708356582000,0],[1708356583000,0],[1708356584000,0],[1708356585000,0],[1708356586000,0],[1708356587000,0],[1708356588000,0],[1708356589000,0],[1708356590000,0],[1708356591000,0],[1708356592000,0],[1708356593000,0],[1708356594000,0],[1708356595000,0],[1708356596000,0],[1708356597000,0],[1708356598000,0],[1708356599000,0],[1708356600000,0],[1708356601000,0],[1708356602000,0],[1708356603000,0],[1708356604000,0],[1708356605000,0],[1708356606000,0],[1708356607000,0],[1708356608000,0],[1708356609000,0],[1708356610000,0],[1708356611000,0],[1708356612000,0],[1708356613000,0],[1708356614000,0],[1708356615000,0],[1708356616000,0],[1708356617000,0],[1708356618000,0],[1708356619000,0],[1708356620000,0],[1708356621000,0],[1708356622000,0],[1708356623000,0],[1708356624000,0],[1708356625000,0],[1708356626000,0],[1708356627000,0],[1708356628000,0],[1708356629000,0],[1708356630000,0],[1708356631000,0],[1708356632000,0],[1708356633000,0],[1708356634000,0],[1708356635000,0],[1708356636000,0],[1708356637000,0],[1708356638000,0],[1708356639000,0],[1708356640000,0],[1708356641000,0],[1708356642000,0],[1708356643000,0],[1708356644000,0],[1708356645000,0],[1708356646000,0],[1708356647000,0],[1708356648000,0],[1708356649000,0],[1708356650000,0],[1708356651000,0],[1708356652000,0],[1708356653000,0],[1708356654000,0],[1708356655000,0],[1708356656000,0],[1708356657000,0],[1708356658000,0],[1708356659000,0],[1708356660000,0],[1708356661000,0],[1708356662000,0],[1708356663000,0],[1708356664000,0],[1708356665000,0],[1708356666000,0],[1708356667000,0],[1708356668000,0],[1708356669000,0],[1708356670000,0],[1708356671000,0],[1708356672000,0],[1708356673000,0],[1708356674000,0],[1708356675000,0],[1708356676000,0],[1708356677000,0],[1708356678000,0],[1708356679000,0],[1708356680000,0],[1708356681000,0],[1708356682000,0],[1708356683000,0],[1708356684000,0],[1708356685000,0],[1708356686000,0],[1708356687000,0],[1708356688000,0],[1708356689000,0],[1708356690000,0],[1708356691000,0],[1708356692000,0],[1708356693000,0],[1708356694000,0],[1708356695000,0],[1708356696000,0],[1708356697000,0],[1708356698000,0],[1708356699000,0],[1708356700000,0],[1708356701000,0],[1708356702000,0],[1708356703000,0],[1708356704000,0],[1708356705000,0],[1708356706000,0],[1708356707000,0],[1708356708000,0],[1708356709000,0],[1708356710000,0],[1708356711000,0],[1708356712000,0],[1708356713000,0],[1708356714000,0],[1708356715000,0],[1708356716000,0],[1708356717000,0],[1708356718000,0],[1708356719000,0],[1708356720000,0],[1708356721000,0],[1708356722000,0],[1708356723000,0],[1708356724000,0],[1708356725000,0],[1708356726000,0],[1708356727000,0],[1708356728000,0],[1708356729000,0],[1708356730000,0],[1708356731000,0],[1708356732000,0],[1708356733000,0],[1708356734000,0],[1708356735000,0],[1708356736000,0],[1708356737000,0],[1708356738000,0],[1708356739000,0],[1708356740000,0],[1708356741000,0],[1708356742000,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: ['7', '21', '35', '48', '62', '76', '90', '104', '117', '131', '145', '159', '173', '186', '200', '214', '228', '242', '255', '269', '283', '297', '311', '324', '338', '352', '366', '380', '393', '407', '421', '435', '449', '462', '476', '490', '504', '518', '531', '545', '559', '573', '587', '600', '614', '628', '642', '656', '669', '683', '697', '711', '725', '738', '752', '766', '780', '794', '807', '821', '835', '849', '863', '876', '890', '904', '918', '932', '945', '959', '973', '987', '1001', '1014', '1028', '1042', '1056', '1070', '1083', '1097', '1111', '1125', '1139', '1152', '1166', '1180', '1194', '1208', '1221', '1235', '1249', '1263', '1277', '1290', '1304', '1318', '1332', '1346', '1359', '1373'],
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: [
98.46,0.5,0.14,0.15,0.11,0.08,0.06,0.04,0.02,0.03,0.03,0.03,0.02,0.02,0.01,0.01,0.0,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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([[1708356497,[849,1292,1320,1353,1356,1366,1369,1377,1379,1380]],[1708356498,null],[1708356499,[12,12,12,12,12,12,12,12,12,12]],[1708356500,[22,108,130,153,156,160,168,171,189,195]],[1708356501,[4,4,4,4,4,4,4,4,4,4]],[1708356502,[1,5,8,10,15,17,40,66,79,83]],[1708356503,[5,5,6,8,8,8,9,9,9,10]],[1708356504,[4,6,7,8,9,9,9,9,9,10]],[1708356505,[6,7,8,11,23,35,48,60,70,73]],[1708356506,[6,8,14,55,55,59,63,66,68,69]],[1708356507,[4,6,7,8,8,14,29,42,51,54]],[1708356508,[4,9,15,40,42,45,50,57,70,74]],[1708356509,[6,7,21,56,62,66,67,70,80,83]],[1708356510,[2,5,5,6,6,9,11,30,44,47]],[1708356511,[3,5,5,6,6,6,8,8,9,9]],[1708356512,[5,6,8,34,40,43,52,55,69,74]],[1708356513,[4,7,9,33,55,56,61,67,70,70]],[1708356514,[3,4,5,6,7,9,11,55,57,58]],[1708356515,[2,4,5,6,6,7,7,7,9,11]],[1708356516,[2,4,5,5,6,6,7,8,10,12]],[1708356517,[2,4,5,8,20,82,183,235,274,277]],[1708356518,[2,4,5,26,36,39,52,66,74,75]],[1708356519,[2,4,4,5,5,5,6,19,52,55]],[1708356520,[2,3,4,4,4,5,5,5,7,8]],[1708356521,[2,4,4,5,5,5,5,6,9,13]],[1708356522,[2,4,4,5,5,5,6,6,11,14]],[1708356523,[1,3,4,4,5,5,5,5,6,8]],[1708356524,[1,3,4,5,5,5,5,5,9,11]],[1708356525,[1,4,4,5,5,5,6,6,9,14]],[1708356526,[1,3,4,5,5,5,5,6,8,9]],[1708356527,[1,4,4,5,5,5,6,7,9,11]],[1708356528,[1,3,4,5,5,5,5,6,7,7]],[1708356529,[2,4,4,5,5,6,6,7,10,12]],[1708356530,[2,4,4,5,5,5,6,7,8,9]],[1708356531,[1,4,4,4,4,5,5,5,8,8]],[1708356532,[1,3,4,4,4,5,5,5,7,9]],[1708356533,[2,3,4,4,4,4,5,6,6,6]],[1708356534,[1,3,4,4,5,5,5,6,7,8]],[1708356535,[1,3,4,5,5,5,6,7,8,11]],[1708356536,[1,3,4,4,5,5,6,6,8,9]],[1708356537,[1,3,4,4,4,5,5,6,6,7]],[1708356538,[1,2,4,5,5,5,6,7,10,12]],[1708356539,[1,4,4,5,6,6,6,7,8,8]],[1708356540,[1,3,4,4,4,5,5,6,8,9]],[1708356541,[1,3,4,4,4,5,5,5,6,7]],[1708356542,[1,3,4,4,4,5,5,9,12,13]],[1708356543,[1,3,4,4,4,5,5,5,6,10]],[1708356544,[1,3,3,4,4,4,5,6,6,7]],[1708356545,[1,3,4,4,4,5,5,5,6,8]],[1708356546,[1,3,4,4,4,4,4,5,5,6]],[1708356547,[1,3,4,4,4,5,5,6,7,9]],[1708356548,[1,3,4,4,4,5,5,5,6,8]],[1708356549,[1,3,4,4,5,5,5,6,6,8]],[1708356550,[1,3,4,4,5,5,5,6,8,10]],[1708356551,[1,3,4,4,4,5,5,6,7,9]],[1708356552,[1,2,4,4,4,5,5,6,6,7]],[1708356553,[1,3,3,4,5,5,5,8,9,13]],[1708356554,[1,3,3,4,4,5,6,8,14,15]],[1708356555,[1,3,4,4,4,4,5,6,10,12]],[1708356556,[1,2,3,4,4,4,4,5,6,7]],[1708356557,[1,3,3,4,4,4,5,5,6,7]],[1708356558,[1,3,4,4,4,5,5,7,10,13]],[1708356559,[1,2,4,4,4,5,5,6,6,7]],[1708356560,[1,2,4,4,4,5,5,6,10,15]],[1708356561,[1,3,4,4,4,5,5,6,7,13]],[1708356562,[1,3,4,5,5,5,6,6,10,22]],[1708356563,[1,3,4,4,4,5,5,6,8,11]],[1708356564,[1,2,3,4,4,4,5,5,8,9]],[1708356565,[1,1,3,3,4,4,4,4,5,6]],[1708356566,[1,2,3,3,4,4,4,5,7,9]],[1708356567,[1,2,3,4,4,4,5,5,7,10]],[1708356568,[0,3,3,4,4,4,4,5,9,11]],[1708356569,[1,3,3,4,4,4,4,4,5,6]],[1708356570,[1,3,3,4,4,4,5,5,6,8]],[1708356571,[1,2,3,4,4,4,4,5,7,9]],[1708356572,[1,2,3,4,4,5,5,5,6,7]],[1708356573,[1,2,3,4,4,5,5,5,6,7]],[1708356574,[1,2,3,4,4,4,5,5,6,9]],[1708356575,[1,2,3,4,4,4,5,5,6,10]],[1708356576,[1,2,3,4,4,4,4,5,6,7]],[1708356577,[1,3,3,4,4,4,5,6,8,10]],[1708356578,[1,3,3,4,4,4,4,5,8,10]],[1708356579,[1,2,3,3,4,4,4,5,6,12]],[1708356580,[1,3,3,4,4,4,4,5,6,9]],[1708356581,[1,2,3,4,4,4,5,5,6,9]],[1708356582,[1,2,3,4,4,4,5,6,7,12]],[1708356583,[1,2,3,3,4,4,4,5,6,8]],[1708356584,[1,3,3,4,4,4,5,6,8,9]],[1708356585,[1,2,3,4,4,4,5,5,6,10]],[1708356586,[1,2,3,4,4,4,5,5,6,9]],[1708356587,[1,2,3,3,3,4,4,5,5,6]],[1708356588,[1,2,3,3,3,4,4,5,8,11]],[1708356589,[0,2,3,4,4,4,4,5,7,8]],[1708356590,[1,2,3,4,4,4,4,5,6,8]],[1708356591,[1,2,3,3,4,4,5,5,6,8]],[1708356592,[1,3,3,4,4,4,4,5,5,6]],[1708356593,[1,3,3,4,4,4,5,5,7,10]],[1708356594,[0,2,3,4,4,5,5,7,13,14]],[1708356595,[1,2,3,3,4,4,4,5,6,7]],[1708356596,[1,3,3,4,4,4,5,6,9,13]],[1708356597,[1,3,3,4,4,4,4,5,11,17]],[1708356598,[1,2,3,3,3,3,4,4,6,10]],[1708356599,[1,1,3,3,3,4,4,5,10,20]],[1708356600,[1,1,3,3,4,4,4,5,9,10]],[1708356601,[1,2,3,3,3,3,3,4,6,8]],[1708356602,[1,3,3,4,4,4,5,7,12,20]],[1708356603,[1,2,3,3,3,4,4,4,7,10]],[1708356604,[1,3,3,4,4,4,4,5,7,14]],[1708356605,[1,3,3,4,4,4,5,5,8,13]],[1708356606,[1,3,3,4,4,5,5,5,8,14]],[1708356607,[1,3,3,4,4,5,5,5,7,9]],[1708356608,[1,1,3,3,3,4,4,5,7,11]],[1708356609,[0,2,3,4,4,4,5,6,8,9]],[1708356610,[0,1,3,3,4,4,4,5,5,8]],[1708356611,[1,3,3,3,4,4,4,5,6,8]],[1708356612,[1,2,3,4,4,4,5,5,9,11]],[1708356613,[1,2,3,3,4,4,4,5,5,6]],[1708356614,[0,3,3,4,5,5,5,5,7,12]],[1708356615,[1,3,3,5,5,5,5,6,7,8]],[1708356616,[1,3,5,6,7,7,8,9,16,25]],[1708356617,[1,3,4,5,6,6,7,7,8,10]],[1708356618,[1,3,4,6,6,6,7,8,9,14]],[1708356619,[1,3,4,6,6,6,7,8,9,11]],[1708356620,[1,3,4,5,6,6,7,8,9,15]],[1708356621,[0,3,4,5,6,6,7,8,10,15]],[1708356622,[1,3,4,5,5,6,6,7,9,13]],[1708356623,[1,3,4,5,6,6,7,8,12,15]],[1708356624,[1,3,4,6,6,7,7,8,9,14]],[1708356625,[1,8,94,208,253,281,335,388,481,651]],[1708356626,[1,3,4,7,8,8,10,50,96,107]],[1708356627,[2,8,28,73,81,96,146,217,533,673]],[1708356628,[0,3,4,7,8,10,25,59,126,190]],[1708356629,[1,4,5,6,7,7,7,8,9,12]],[1708356630,[1,3,4,5,6,7,7,8,11,14]],[1708356631,[1,4,5,7,8,8,9,10,16,23]],[1708356632,[1,3,4,5,6,6,7,8,9,14]],[1708356633,[1,3,5,7,7,7,8,8,11,17]],[1708356634,[1,2,3,4,4,5,5,6,8,10]],[1708356635,[1,4,6,7,7,8,8,9,14,17]],[1708356636,[1,2,3,4,4,5,5,6,7,11]],[1708356637,[1,4,6,7,8,8,9,10,18,26]],[1708356638,[1,2,3,4,5,5,6,7,10,13]],[1708356639,[1,5,6,7,8,8,8,9,10,12]],[1708356640,[1,3,4,4,5,5,5,6,7,9]],[1708356641,[1,4,6,7,8,8,9,10,11,14]],[1708356642,[1,3,3,4,4,5,5,6,7,8]],[1708356643,[1,4,5,7,7,8,8,9,10,14]],[1708356644,[1,2,3,4,5,5,6,6,10,11]],[1708356645,[1,3,5,6,6,7,7,8,10,13]],[1708356646,[1,3,3,4,4,5,5,6,8,11]],[1708356647,[1,3,5,7,7,7,8,9,16,23]],[1708356648,[1,3,3,4,5,5,6,7,9,15]],[1708356649,[1,3,4,6,7,7,8,36,65,75]],[1708356650,[1,3,4,5,5,6,7,8,10,17]],[1708356651,[1,3,5,6,7,7,8,9,12,13]],[1708356652,[1,3,4,5,6,7,8,9,14,20]],[1708356653,[1,3,4,5,6,6,7,8,12,14]],[1708356654,[1,3,4,6,6,7,8,10,15,17]],[1708356655,[1,3,3,5,5,6,7,8,11,14]],[1708356656,[1,3,4,6,6,7,7,8,10,17]],[1708356657,[1,3,3,4,5,5,5,6,8,10]],[1708356658,[1,3,3,5,6,6,7,8,11,15]],[1708356659,[1,2,3,4,4,5,5,7,8,10]],[1708356660,[1,3,4,6,6,7,8,9,13,17]],[1708356661,[1,2,3,4,4,5,5,6,9,12]],[1708356662,[1,3,4,6,6,7,8,9,15,24]],[1708356663,[1,3,4,5,5,5,6,6,9,17]],[1708356664,[1,3,4,5,6,6,7,7,9,11]],[1708356665,[1,2,3,4,4,5,5,6,8,12]],[1708356666,[1,3,5,7,7,7,8,9,10,15]],[1708356667,[1,2,3,4,4,4,5,5,8,10]],[1708356668,[1,3,4,5,6,6,7,8,10,11]],[1708356669,[1,2,3,4,4,5,5,6,10,13]],[1708356670,[1,3,4,5,6,6,7,8,12,16]],[1708356671,[1,2,3,4,4,5,5,5,8,10]],[1708356672,[1,3,4,6,6,7,7,9,12,22]],[1708356673,[1,2,3,4,4,5,5,6,8,12]],[1708356674,[1,3,4,5,6,6,7,8,11,16]],[1708356675,[1,2,3,5,5,5,6,8,14,16]],[1708356676,[1,2,4,5,5,6,7,8,9,14]],[1708356677,[1,3,4,6,6,7,8,8,10,11]],[1708356678,[1,5,6,8,8,9,9,13,17,20]],[1708356679,[1,3,4,5,6,6,7,8,9,13]],[1708356680,[1,5,6,7,7,8,8,9,10,14]],[1708356681,[1,3,4,5,6,6,7,8,10,13]],[1708356682,[1,4,6,7,7,8,8,9,10,11]],[1708356683,[1,3,4,5,5,6,7,8,9,10]],[1708356684,[1,5,6,7,8,8,8,10,12,14]],[1708356685,[1,1,3,3,4,4,5,5,7,13]],[1708356686,[2,4,6,7,7,8,8,9,13,16]],[1708356687,[1,1,3,4,4,4,5,5,6,8]],[1708356688,[1,5,6,7,7,8,8,9,9,10]],[1708356689,[1,1,3,4,4,4,5,6,8,13]],[1708356690,[1,4,5,6,7,7,7,8,10,11]],[1708356691,[1,3,3,5,5,6,6,7,9,10]],[1708356692,[1,4,6,7,8,8,9,10,16,25]],[1708356693,[1,3,4,5,5,6,6,7,8,10]],[1708356694,[2,4,5,7,7,7,8,9,11,13]],[1708356695,[1,2,3,5,5,6,6,7,9,12]],[1708356696,[1,4,5,7,7,8,8,9,10,13]],[1708356697,[1,2,4,6,6,7,7,8,9,10]],[1708356698,[1,3,4,6,6,7,7,8,11,15]],[1708356699,[1,2,3,5,5,6,7,7,9,11]],[1708356700,[1,3,4,6,6,7,8,9,12,15]],[1708356701,[1,3,3,5,6,6,7,7,9,12]],[1708356702,[1,3,4,6,7,7,8,9,11,15]],[1708356703,[1,3,4,7,7,8,8,9,10,12]],[1708356704,[1,3,4,5,6,6,7,8,10,12]],[1708356705,[1,3,5,6,6,7,7,8,13,36]],[1708356706,[1,3,4,5,6,7,8,9,12,17]],[1708356707,[1,3,5,7,7,8,8,9,11,14]],[1708356708,[1,3,3,5,5,5,6,7,10,14]],[1708356709,[1,3,4,6,7,7,8,16,53,61]],[1708356710,[1,3,4,6,7,8,14,42,72,84]],[1708356711,[1,4,5,7,7,7,8,9,10,11]],[1708356712,[1,2,3,4,4,5,5,5,7,10]],[1708356713,[1,4,6,7,8,8,9,10,15,21]],[1708356714,[1,2,3,4,4,5,5,5,6,9]],[1708356715,[1,4,5,7,7,8,8,9,13,20]],[1708356716,[1,2,3,4,4,5,5,5,7,10]],[1708356717,[1,4,6,7,8,8,9,9,10,11]],[1708356718,[1,2,3,4,5,5,5,6,8,14]],[1708356719,[1,3,5,7,7,8,8,9,11,13]],[1708356720,[1,2,3,4,5,5,6,7,12,14]],[1708356721,[1,3,4,6,6,7,7,8,9,11]],[1708356722,[1,1,3,3,4,4,5,7,16,24]],[1708356723,[1,3,4,6,7,7,8,9,12,17]],[1708356724,[1,1,3,2,4,4,4,5,6,11]],[1708356725,[1,2,3,4,5,5,5,6,7,10]],[1708356726,[0,2,3,2,4,4,4,5,7,10]],[1708356727,[1,2,3,5,5,5,6,7,8,10]],[1708356728,[1,1,3,3,3,4,4,5,7,8]],[1708356729,[1,3,3,5,5,6,7,8,12,14]],[1708356730,[1,1,3,3,4,4,5,5,7,11]],[1708356731,[1,3,4,5,6,6,7,8,10,10]],[1708356732,[1,2,3,5,5,5,6,8,10,12]],[1708356733,[1,3,4,5,5,6,6,7,10,14]],[1708356734,[1,2,3,4,4,5,6,7,10,14]],[1708356735,[1,3,3,4,4,5,5,7,9,13]],[1708356736,[1,3,3,5,5,6,6,7,9,10]],[1708356737,[1,2,3,4,5,5,5,6,8,11]],[1708356738,[1,3,4,6,7,8,9,10,13,14]],[1708356739,[1,3,4,5,6,6,7,8,9,14]],[1708356740,[1,3,3,5,6,6,7,8,9,10]],[1708356741,[1,4,6,7,7,8,8,9,11,18]],[1708356742,[1,3,4,6,6,7,7,8,9,13]]]);
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([[1708356497,[25,25,0]],[1708356498,[0,0,0]],[1708356499,[1,1,0]],[1708356500,[25,25,0]],[1708356501,[1,1,0]],[1708356502,[71,71,0]],[1708356503,[3,3,0]],[1708356504,[6,6,0]],[1708356505,[9,9,0]],[1708356506,[11,11,0]],[1708356507,[13,13,0]],[1708356508,[18,18,0]],[1708356509,[19,19,0]],[1708356510,[24,24,0]],[1708356511,[26,26,0]],[1708356512,[27,27,0]],[1708356513,[32,32,0]],[1708356514,[34,34,0]],[1708356515,[37,37,0]],[1708356516,[39,39,0]],[1708356517,[43,43,0]],[1708356518,[44,44,0]],[1708356519,[48,48,0]],[1708356520,[50,50,0]],[1708356521,[54,54,0]],[1708356522,[56,56,0]],[1708356523,[61,61,0]],[1708356524,[61,61,0]],[1708356525,[65,65,0]],[1708356526,[67,67,0]],[1708356527,[70,70,0]],[1708356528,[74,74,0]],[1708356529,[76,76,0]],[1708356530,[80,80,0]],[1708356531,[81,81,0]],[1708356532,[84,84,0]],[1708356533,[87,87,0]],[1708356534,[91,91,0]],[1708356535,[92,92,0]],[1708356536,[96,96,0]],[1708356537,[98,98,0]],[1708356538,[101,101,0]],[1708356539,[105,105,0]],[1708356540,[107,107,0]],[1708356541,[110,110,0]],[1708356542,[112,112,0]],[1708356543,[116,116,0]],[1708356544,[118,118,0]],[1708356545,[121,121,0]],[1708356546,[123,123,0]],[1708356547,[126,126,0]],[1708356548,[131,131,0]],[1708356549,[133,133,0]],[1708356550,[133,133,0]],[1708356551,[139,139,0]],[1708356552,[141,141,0]],[1708356553,[143,143,0]],[1708356554,[146,146,0]],[1708356555,[149,149,0]],[1708356556,[152,152,0]],[1708356557,[154,154,0]],[1708356558,[158,158,0]],[1708356559,[160,160,0]],[1708356560,[164,164,0]],[1708356561,[165,165,0]],[1708356562,[170,170,0]],[1708356563,[171,171,0]],[1708356564,[174,174,0]],[1708356565,[176,176,0]],[1708356566,[181,181,0]],[1708356567,[183,183,0]],[1708356568,[186,186,0]],[1708356569,[188,188,0]],[1708356570,[192,192,0]],[1708356571,[194,194,0]],[1708356572,[196,196,0]],[1708356573,[200,200,0]],[1708356574,[202,202,0]],[1708356575,[205,205,0]],[1708356576,[208,208,0]],[1708356577,[211,211,0]],[1708356578,[213,213,0]],[1708356579,[217,217,0]],[1708356580,[219,219,0]],[1708356581,[222,222,0]],[1708356582,[226,226,0]],[1708356583,[227,227,0]],[1708356584,[230,230,0]],[1708356585,[233,233,0]],[1708356586,[237,237,0]],[1708356587,[238,238,0]],[1708356588,[243,243,0]],[1708356589,[244,244,0]],[1708356590,[248,248,0]],[1708356591,[250,250,0]],[1708356592,[252,252,0]],[1708356593,[256,256,0]],[1708356594,[259,259,0]],[1708356595,[263,263,0]],[1708356596,[264,264,0]],[1708356597,[267,267,0]],[1708356598,[269,269,0]],[1708356599,[272,272,0]],[1708356600,[275,275,0]],[1708356601,[279,279,0]],[1708356602,[281,281,0]],[1708356603,[285,285,0]],[1708356604,[286,286,0]],[1708356605,[290,290,0]],[1708356606,[291,291,0]],[1708356607,[296,296,0]],[1708356608,[297,297,0]],[1708356609,[301,301,0]],[1708356610,[303,303,0]],[1708356611,[306,306,0]],[1708356612,[309,309,0]],[1708356613,[313,313,0]],[1708356614,[314,314,0]],[1708356615,[318,318,0]],[1708356616,[321,321,0]],[1708356617,[322,322,0]],[1708356618,[327,327,0]],[1708356619,[329,329,0]],[1708356620,[332,332,0]],[1708356621,[333,333,0]],[1708356622,[339,339,0]],[1708356623,[340,340,0]],[1708356624,[340,340,0]],[1708356625,[340,340,0]],[1708356626,[340,340,0]],[1708356627,[340,340,0]],[1708356628,[340,340,0]],[1708356629,[340,340,0]],[1708356630,[340,340,0]],[1708356631,[340,340,0]],[1708356632,[340,340,0]],[1708356633,[340,340,0]],[1708356634,[340,340,0]],[1708356635,[340,340,0]],[1708356636,[340,340,0]],[1708356637,[340,340,0]],[1708356638,[340,340,0]],[1708356639,[340,340,0]],[1708356640,[340,340,0]],[1708356641,[340,340,0]],[1708356642,[340,340,0]],[1708356643,[340,340,0]],[1708356644,[340,340,0]],[1708356645,[340,340,0]],[1708356646,[340,340,0]],[1708356647,[340,340,0]],[1708356648,[340,340,0]],[1708356649,[340,340,0]],[1708356650,[340,340,0]],[1708356651,[340,340,0]],[1708356652,[340,340,0]],[1708356653,[340,340,0]],[1708356654,[340,340,0]],[1708356655,[340,340,0]],[1708356656,[340,340,0]],[1708356657,[340,340,0]],[1708356658,[340,340,0]],[1708356659,[340,340,0]],[1708356660,[340,340,0]],[1708356661,[340,340,0]],[1708356662,[340,340,0]],[1708356663,[340,340,0]],[1708356664,[340,340,0]],[1708356665,[340,340,0]],[1708356666,[340,340,0]],[1708356667,[340,340,0]],[1708356668,[340,340,0]],[1708356669,[340,340,0]],[1708356670,[340,340,0]],[1708356671,[340,340,0]],[1708356672,[340,340,0]],[1708356673,[340,340,0]],[1708356674,[340,340,0]],[1708356675,[340,340,0]],[1708356676,[340,340,0]],[1708356677,[340,340,0]],[1708356678,[340,340,0]],[1708356679,[340,340,0]],[1708356680,[340,340,0]],[1708356681,[340,340,0]],[1708356682,[340,340,0]],[1708356683,[340,340,0]],[1708356684,[340,340,0]],[1708356685,[340,340,0]],[1708356686,[340,340,0]],[1708356687,[340,340,0]],[1708356688,[340,340,0]],[1708356689,[340,340,0]],[1708356690,[340,340,0]],[1708356691,[340,340,0]],[1708356692,[340,340,0]],[1708356693,[340,340,0]],[1708356694,[340,340,0]],[1708356695,[340,340,0]],[1708356696,[340,340,0]],[1708356697,[340,340,0]],[1708356698,[340,340,0]],[1708356699,[340,340,0]],[1708356700,[340,340,0]],[1708356701,[340,340,0]],[1708356702,[340,340,0]],[1708356703,[340,340,0]],[1708356704,[340,340,0]],[1708356705,[340,340,0]],[1708356706,[340,340,0]],[1708356707,[340,340,0]],[1708356708,[340,340,0]],[1708356709,[340,340,0]],[1708356710,[340,340,0]],[1708356711,[340,340,0]],[1708356712,[340,340,0]],[1708356713,[340,340,0]],[1708356714,[340,340,0]],[1708356715,[340,340,0]],[1708356716,[340,340,0]],[1708356717,[340,340,0]],[1708356718,[340,340,0]],[1708356719,[340,340,0]],[1708356720,[340,340,0]],[1708356721,[340,340,0]],[1708356722,[340,340,0]],[1708356723,[340,340,0]],[1708356724,[340,340,0]],[1708356725,[340,340,0]],[1708356726,[340,340,0]],[1708356727,[340,340,0]],[1708356728,[340,340,0]],[1708356729,[340,340,0]],[1708356730,[340,340,0]],[1708356731,[340,340,0]],[1708356732,[340,340,0]],[1708356733,[340,340,0]],[1708356734,[340,340,0]],[1708356735,[340,340,0]],[1708356736,[340,340,0]],[1708356737,[340,340,0]],[1708356738,[340,340,0]],[1708356739,[340,340,0]],[1708356740,[340,340,0]],[1708356741,[340,340,0]],[1708356742,[504,504,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:[