-
Notifications
You must be signed in to change notification settings - Fork 925
/
index.html
1200 lines (1130 loc) · 92.3 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="shortcut icon" type="image/x-icon" href="style/favicon.ico"/>
<link href="style/style.css" rel="stylesheet" type="text/css" />
<link href="style/bootstrap.min.css" rel="stylesheet" type="text/css" />
<script src="js/jquery-3.5.1.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/gatling.js"></script>
<script src="js/menu.js"></script>
<script src="js/ellipsis.js"></script>
<script src="js/all_sessions.js"></script>
<script src="js/stats.js"></script>
<script src="js/highstock.js"></script>
<script src="js/highcharts-more.js"></script>
<script src="js/theme.js"></script>
<script src="js/unpack.js"></script>
<title>Gatling Stats - Global Information</title>
</head>
<body>
<script>
const storedTheme = localStorage.getItem('theme') || (window.matchMedia("(prefers-color-scheme: dark)").matches ? "dark" : "light");
if (storedTheme) document.documentElement.setAttribute('data-theme', storedTheme)
function toggleTheme() {
const currentTheme = document.documentElement.getAttribute("data-theme");
const targetTheme = currentTheme === "light" ? "dark" : "light";
document.documentElement.setAttribute('data-theme', targetTheme)
localStorage.setItem('theme', targetTheme);
};
</script>
<div class="app-container">
<div class="frise"></div>
<div class="head">
<div class="gatling-open-source">
<a class="gatling-logo gatling-logo-light" href="https://gatling.io" target="blank_" title="Gatling Home Page"><img alt="Gatling" src="style/logo-light.svg"/></a>
<a class="gatling-logo gatling-logo-dark" href="https://gatling.io" target="blank_" title="Gatling Home Page"><img alt="Gatling" src="style/logo-dark.svg"/></a>
<a class="gatling-documentation" href="https://gatling.io/docs/" target="_blank">Documentation</a>
</div>
<div class="nav spacer"></div>
<a class="enterprise" href="https://gatling.io/enterprise/next-step/" target="_blank"><strong>Try</strong>
<img class="logo-enterprise-light" alt="Gatling Enterprise" src="style/logo-enterprise-light.svg"/>
<img class="logo-enterprise-dark" alt="Gatling Enterprise" src="style/logo-enterprise-dark.svg"/>
</a>
<button id="theme-toggle" class="theme-toggle" type="button" onclick="toggleTheme()" aria-label="Toggle user interface mode">
<span class="toggle-dark"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-moon"><path d="M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z"></path></svg></span>
<span class="toggle-light"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-sun"><circle cx="12" cy="12" r="5"></circle><line x1="12" y1="1" x2="12" y2="3"></line><line x1="12" y1="21" x2="12" y2="23"></line><line x1="4.22" y1="4.22" x2="5.64" y2="5.64"></line><line x1="18.36" y1="18.36" x2="19.78" y2="19.78"></line><line x1="1" y1="12" x2="3" y2="12"></line><line x1="21" y1="12" x2="23" y2="12"></line><line x1="4.22" y1="19.78" x2="5.64" y2="18.36"></line><line x1="18.36" y1="5.64" x2="19.78" y2="4.22"></line></svg></span>
</button>
</div>
<div class="container details">
<div class="nav">
<ul></ul>
</div>
<div class="cadre">
<div class="content">
<div class="content-header">
<div class="onglet">
RinhaBackendCrebitosSimulation
</div>
<div class="sous-menu" id="sousMenu">
<div class="sous-menu-spacer">
<div class="item ouvert"><a href="index.html">Global</a></div>
<div class="item "><a id="details_link" href="#">Details</a></div>
</div>
</div>
</div>
<div class="content-in">
<div class="container-article">
<div class="article">
<div class="schema-container">
<div id="ranges" class="schema ranges">
</div>
<div class="schema polar">
<div id="container_number_of_requests"></div>
</div>
<div class="simulation-card">
<div class="simulation-version-information">
<span class="simulation-information-title">Gatling Version</span>
<span class="simulation-information-item">
<span class="simulation-information-label">Version: </span>
<span>3.10.3</span>
</span>
<span class="simulation-information-item">
<span class="simulation-information-label">Released: </span>
<span>2023-12-20</span>
</span>
</div>
<div id="simulation-information" class="simulation-version-information">
<span class="simulation-information-title">Run Information</span>
<div class="simulation-information-container">
<span class="simulation-information-item">
<span class="simulation-information-label">Date: </span>
<span>2024-02-23 00:56:38 GMT</span>
</span>
<span class="simulation-information-item">
<span class="simulation-information-label">Duration: </span>
<span>4m 4s </span>
</span>
<span class="simulation-tooltip simulation-information-item description" title="Description" data-content="Rinha de Backend - 2024/Q1: Crébito - nicolasmmb-dart">
<span class="simulation-information-label">Description: </span>
<span>Rinha de Backend - 2024/Q1: Crébito - nicolasmmb-dart</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="statistics extensible-geant collapsed">
<div class="title">
Errors
</div>
<table id="container_errors" class="statistics-in extensible-geant">
<thead>
<tr>
<th id="error-col-1" class="header sortable"><span>Error</span></th>
<th id="error-col-2" class="header sortable"><span>Count</span></th>
<th id="error-col-3" class="header sortable"><span>Percentage</span></th>
</tr>
</thead>
<tbody>
<tr>
<td class="error-col-1 total ko">jmesPath(saldo).find.ConsistenciaSaldoLimite - Transação, Limite ultrapassado!<span class="value" style="display:none">0</span></td>
<td class="value error-col-2 total ko">52593</td>
<td class="value error-col-3 total ko">96.96 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">jmesPath(saldo.total).find.ConsistenciaSaldoLimite - Extrato, Limite ultrapassado!<span class="value" style="display:none">1</span></td>
<td class="value error-col-2 total ko">1649</td>
<td class="value error-col-3 total ko">3.04 %</td>
</tr>
</tbody>
</table>
</div>
<div class="schema geant">
<div id="active_users" class="geant"></div>
</div>
<div class="schema geant">
<div id="responsetimeDistributionContainer" class="geant"></div>
</div>
<div class="schema geant">
<div id="responsetimepercentilesovertimeokPercentilesContainer" class="geant"></div>
</div>
<div class="schema geant">
<div id="requests" class="geant"></div>
</div>
<div class="schema geant">
<div id="responses" class="geant"></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<script>
var pageStats = stats.stats;
$(document).ready(function() {
$('.simulation-tooltip').popover({trigger:'hover', placement:'left'});
setDetailsLinkUrl();
setGlobalMenu();
setActiveMenu();
fillStats(pageStats);
Highcharts.setOptions({
global: { useUTC: false }
});
var rangesChart = new Highcharts.Chart({
chart: {
renderTo: 'ranges',
marginRight: 100
},
credits: { enabled: false },
legend: { enabled: false },
title: { text: 'A title to let highcharts reserve the place for the title set later' },
xAxis: {
categories: [
pageStats.group1.htmlName,
pageStats.group2.htmlName,
pageStats.group3.htmlName,
pageStats.group4.htmlName
]
},
yAxis: {
title: { text: 'Number of Requests' },
reversedStacks: false
},
tooltip: {
formatter: function() {
var s;
if (this.point.name) { // the pie chart
s = ''+ this.point.name +': '+ this.y +'% requests';
} else {
s = ''+ this.y + ' requests';
}
return s;
}
},
plotOptions: {
series: {
stacking: 'normal',
shadow: true
}
},
series: [
{
type: 'column',
data: [{
color: '#68b65c',
y: pageStats.group1.count
},
{
color: '#FFDD00',
y: pageStats.group2.count
},
{
color: '#FFA900',
y: pageStats.group3.count
},
{
color: '#f15b4f',
y: pageStats.group4.count
}]
},
{
type: 'pie',
name: 'Percentages',
data: [
{
name: pageStats.group1.name,
y: pageStats.group1.percentage,
color: '#68b65c'
},
{
name: pageStats.group2.name,
y: pageStats.group2.percentage,
color: '#FFDD00'
},
{
name: pageStats.group3.name,
y: pageStats.group3.percentage,
color: '#FFA900'
},
{
name: pageStats.group4.name,
y: pageStats.group4.percentage,
color: '#f15b4f'
}
],
center: [345, 0],
size: 90,
showInLegend: false,
dataLabels: { enabled: false }
}
]
});
rangesChart.setTitle({
text: '<span class="chart_title">Response Time Ranges</span>',
useHTML: true
});
function numberOfRequestsDataForGroup(group) {
var data = {names: [], oks: [], kos: []};
$.each(group.contents, function(contentName, content) {
if (content.type == 'GROUP') {
var result = numberOfRequestsDataForGroup(content);
data.names = data.names.concat(result.names);
data.oks = data.oks.concat(result.oks);
data.kos = data.kos.concat(result.kos);
}
else if (content.type == 'REQUEST') {
data.names.push(content.path);
data.oks.push(parseInt(content.stats.numberOfRequests.ok));
data.kos.push(parseInt(content.stats.numberOfRequests.ko));
}
});
return data;
}
var numberOfRequestsData = numberOfRequestsDataForGroup(stats);
var tickInterval = Math.ceil(numberOfRequestsData.names.length / 1000);
new Highcharts.Chart({
chart: {
renderTo:'container_number_of_requests',
polar:true,
type:'column',
height:330
},
credits:{
enabled:false
},
title:{
text:'<span class="chart_title">Number of requests</span>',
useHTML: true,
widthAdjust:-20
},
xAxis:{
tickmarkPlacement:'on',
tickInterval: tickInterval,
categories:numberOfRequestsData.names,
labels:{ enabled:false }
},
yAxis:{
min:0,
reversedStacks: false
},
plotOptions:{
series:{
stacking:'normal',
groupPadding:0,
pointPlacement:'on',
shadow: true
}
},
legend: {
borderWidth: 0,
itemStyle: { fontWeight: "normal" },
symbolRadius: 0
},
series:[
{
name:'OK',
data:numberOfRequestsData.oks,
color:"#68b65c"
},
{
name:'KO',
data:numberOfRequestsData.kos,
color:"#f15b4f"
}
]
});
$('#container_exceptions').sortable('#container_exceptions');
function generateHtmlRow(request, level, index, parent, group) {
if (request.name == 'All Requests')
var url = 'index.html';
else
var url = request.pathFormatted + '.html';
if (group)
var expandButtonStyle = '';
else
var expandButtonStyle = ' hidden';
if (request.stats.numberOfRequests.total != 0)
var koPercent = (request.stats.numberOfRequests.ko * 100 / request.stats.numberOfRequests.total).toFixed(0) + '%';
else
var koPercent = '-'
return '<tr id="' + request.pathFormatted + '" data-parent=' + parent + '> \
<td class="total col-1"> \
<div class="expandable-container"> \
<span id="' + request.pathFormatted + '" style="margin-left: ' + (level * 10) + 'px;" class="expand-button' + expandButtonStyle + '"> </span> \
<a href="' + url +'" class="withTooltip">' + ellipsedLabel({ name: request.name, parentClass: "table-cell-tooltip" }) + '</a><span class="value" style="display:none;">' + index + '</span> \
</div> \
</td> \
<td class="value total col-2">' + request.stats.numberOfRequests.total + '</td> \
<td class="value ok col-3">' + request.stats.numberOfRequests.ok + '</td> \
<td class="value ko col-4">' + request.stats.numberOfRequests.ko + '</td> \
<td class="value ko col-5">' + koPercent + '</td> \
<td class="value total col-6">' + request.stats.meanNumberOfRequestsPerSecond.total + '</td> \
<td class="value total col-7">' + request.stats.minResponseTime.total + '</td> \
<td class="value total col-8">' + request.stats.percentiles1.total + '</td> \
<td class="value total col-9">' + request.stats.percentiles2.total + '</td> \
<td class="value total col-10">' + request.stats.percentiles3.total + '</td> \
<td class="value total col-11">' + request.stats.percentiles4.total + '</td> \
<td class="value total col-12">' + request.stats.maxResponseTime.total + '</td> \
<td class="value total col-13">' + request.stats.meanResponseTime.total + '</td> \
<td class="value total col-14">' + request.stats.standardDeviation.total + '</td> \
</tr>';
}
function generateHtmlRowsForGroup(group, level, index, parent) {
var buffer = '';
if (!parent)
parent = 'ROOT';
else {
buffer += generateHtmlRow(group, level - 1, index, parent, true);
index++;
parent = group.pathFormatted;
}
$.each(group.contents, function(contentName, content) {
if (content.type == 'GROUP') {
var result = generateHtmlRowsForGroup(content, level + 1, index, parent);
buffer += result.html;
index = result.index;
}
else if (content.type == 'REQUEST') {
buffer += generateHtmlRow(content, level, index, parent);
index++;
}
});
return { html: buffer, index: index };
}
$('#container_statistics_head tbody').append(generateHtmlRow(stats, 0, 0));
var lines = generateHtmlRowsForGroup(stats, 0, 0);
$('#container_statistics_body tbody').append(lines.html);
$('#container_statistics_head').sortable('#container_statistics_body');
$('.statistics').expandable();
if (lines.index < 30) {
$('#statistics_title span').attr('style', 'display: none;');
} else {
$('#statistics_title').addClass('title_collapsed');
$('#statistics_title').click(function() {
$('#toggle-stats').toggleClass("off");
$(this).toggleClass('title_collapsed').toggleClass('title_expanded');
$('#container_statistics_body').parent().toggleClass('scrollable').toggleClass('');
});
}
$('.table-cell-tooltip').popover({trigger:'hover'});
$('#container_errors').sortable('#container_errors');
allUsersData.yAxis = 0;
var allUsersChart = new Highcharts.StockChart({
chart: {
renderTo: 'active_users',
zoomType: 'x'
},
credits: { enabled: false },
legend: {
enabled: true,
floating: true,
align: 'right',
verticalAlign: 'top',
layout: 'vertical',
borderWidth: 0,
itemStyle: { fontWeight: "normal" },
symbolRadius: 0
},
title: { text: 'A title to let highcharts reserve the place for the title set later' },
navigator: {
maskInside: false
},
rangeSelector: {
buttonSpacing: 0,
buttonTheme: {
fill: '#CFC9C6',
padding: 1,
stroke: '#000000',
'stroke-width': 0.25,
style: {
color: '#000000',
fontWeight: 'bold',
},
states: {
stroke: '#000000',
'stroke-width': 0.25,
hover: {
fill: '#92918C',
style: { color: 'black' }
},
select: {
fill: '#FFA900',
style: { color: 'white' }
}
}
},
buttons : [
{
type : 'minute',
count : 1,
text : '1m'
}, {
type : 'minute',
count : 10,
text : '10m'
}, {
type : 'hour',
count : 1,
text : '1h'
}, {
type : 'all',
count : 1,
text : 'All'
}
],
selected : 3,
inputEnabled : false
},
xAxis: {
type: 'datetime',
ordinal: false,
maxZoom: 10000 // three days
},
yAxis: {
title: { text: 'Number of Active Users' },
opposite: false,
min: 0
},
series: [
{
color: '#5E7BE2',
name: 'débitos',
data: [
[1708649799000,0],[1708649800000,0],[1708649801000,0],[1708649802000,0],[1708649803000,0],[1708649804000,2],[1708649805000,4],[1708649806000,6],[1708649807000,7],[1708649808000,9],[1708649809000,11],[1708649810000,13],[1708649811000,15],[1708649812000,16],[1708649813000,19],[1708649814000,20],[1708649815000,22],[1708649816000,24],[1708649817000,25],[1708649818000,28],[1708649819000,29],[1708649820000,31],[1708649821000,33],[1708649822000,35],[1708649823000,37],[1708649824000,38],[1708649825000,40],[1708649826000,42],[1708649827000,44],[1708649828000,46],[1708649829000,47],[1708649830000,50],[1708649831000,51],[1708649832000,53],[1708649833000,55],[1708649834000,56],[1708649835000,59],[1708649836000,60],[1708649837000,62],[1708649838000,64],[1708649839000,66],[1708649840000,68],[1708649841000,69],[1708649842000,71],[1708649843000,74],[1708649844000,74],[1708649845000,77],[1708649846000,80],[1708649847000,81],[1708649848000,83],[1708649849000,85],[1708649850000,87],[1708649851000,89],[1708649852000,90],[1708649853000,92],[1708649854000,93],[1708649855000,95],[1708649856000,97],[1708649857000,99],[1708649858000,101],[1708649859000,102],[1708649860000,104],[1708649861000,106],[1708649862000,108],[1708649863000,110],[1708649864000,111],[1708649865000,113],[1708649866000,115],[1708649867000,117],[1708649868000,119],[1708649869000,120],[1708649870000,123],[1708649871000,124],[1708649872000,126],[1708649873000,128],[1708649874000,129],[1708649875000,132],[1708649876000,133],[1708649877000,135],[1708649878000,137],[1708649879000,142],[1708649880000,141],[1708649881000,142],[1708649882000,144],[1708649883000,147],[1708649884000,147],[1708649885000,151],[1708649886000,152],[1708649887000,154],[1708649888000,156],[1708649889000,158],[1708649890000,160],[1708649891000,162],[1708649892000,163],[1708649893000,166],[1708649894000,167],[1708649895000,169],[1708649896000,171],[1708649897000,172],[1708649898000,175],[1708649899000,176],[1708649900000,178],[1708649901000,180],[1708649902000,182],[1708649903000,184],[1708649904000,184],[1708649905000,187],[1708649906000,188],[1708649907000,190],[1708649908000,192],[1708649909000,194],[1708649910000,196],[1708649911000,197],[1708649912000,199],[1708649913000,201],[1708649914000,202],[1708649915000,205],[1708649916000,206],[1708649917000,208],[1708649918000,210],[1708649919000,213],[1708649920000,214],[1708649921000,216],[1708649922000,219],[1708649923000,221],[1708649924000,220],[1708649925000,222],[1708649926000,221],[1708649927000,220],[1708649928000,226],[1708649929000,220],[1708649930000,221],[1708649931000,220],[1708649932000,220],[1708649933000,220],[1708649934000,221],[1708649935000,220],[1708649936000,220],[1708649937000,220],[1708649938000,221],[1708649939000,220],[1708649940000,221],[1708649941000,220],[1708649942000,220],[1708649943000,220],[1708649944000,221],[1708649945000,220],[1708649946000,221],[1708649947000,220],[1708649948000,221],[1708649949000,220],[1708649950000,221],[1708649951000,220],[1708649952000,220],[1708649953000,220],[1708649954000,220],[1708649955000,220],[1708649956000,225],[1708649957000,220],[1708649958000,220],[1708649959000,223],[1708649960000,220],[1708649961000,220],[1708649962000,220],[1708649963000,220],[1708649964000,220],[1708649965000,220],[1708649966000,220],[1708649967000,220],[1708649968000,220],[1708649969000,221],[1708649970000,220],[1708649971000,221],[1708649972000,220],[1708649973000,221],[1708649974000,220],[1708649975000,220],[1708649976000,220],[1708649977000,220],[1708649978000,220],[1708649979000,221],[1708649980000,220],[1708649981000,221],[1708649982000,221],[1708649983000,221],[1708649984000,220],[1708649985000,221],[1708649986000,220],[1708649987000,221],[1708649988000,220],[1708649989000,220],[1708649990000,224],[1708649991000,221],[1708649992000,220],[1708649993000,221],[1708649994000,220],[1708649995000,221],[1708649996000,220],[1708649997000,221],[1708649998000,220],[1708649999000,221],[1708650000000,220],[1708650001000,220],[1708650002000,220],[1708650003000,220],[1708650004000,220],[1708650005000,220],[1708650006000,220],[1708650007000,220],[1708650008000,220],[1708650009000,220],[1708650010000,220],[1708650011000,220],[1708650012000,221],[1708650013000,220],[1708650014000,221],[1708650015000,220],[1708650016000,220],[1708650017000,220],[1708650018000,226],[1708650019000,220],[1708650020000,220],[1708650021000,227],[1708650022000,220],[1708650023000,220],[1708650024000,221],[1708650025000,220],[1708650026000,220],[1708650027000,220],[1708650028000,220],[1708650029000,220],[1708650030000,220],[1708650031000,220],[1708650032000,220],[1708650033000,220],[1708650034000,220],[1708650035000,220],[1708650036000,220],[1708650037000,220],[1708650038000,220],[1708650039000,220],[1708650040000,220],[1708650041000,220],[1708650042000,221],[1708650043000,217]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#68b65c',
name: 'créditos',
data: [
[1708649799000,0],[1708649800000,0],[1708649801000,0],[1708649802000,0],[1708649803000,0],[1708649804000,2],[1708649805000,2],[1708649806000,4],[1708649807000,4],[1708649808000,5],[1708649809000,6],[1708649810000,7],[1708649811000,8],[1708649812000,8],[1708649813000,10],[1708649814000,10],[1708649815000,12],[1708649816000,12],[1708649817000,14],[1708649818000,14],[1708649819000,15],[1708649820000,16],[1708649821000,17],[1708649822000,17],[1708649823000,19],[1708649824000,20],[1708649825000,20],[1708649826000,22],[1708649827000,22],[1708649828000,23],[1708649829000,25],[1708649830000,25],[1708649831000,26],[1708649832000,26],[1708649833000,28],[1708649834000,29],[1708649835000,30],[1708649836000,30],[1708649837000,32],[1708649838000,32],[1708649839000,33],[1708649840000,34],[1708649841000,35],[1708649842000,36],[1708649843000,37],[1708649844000,38],[1708649845000,39],[1708649846000,39],[1708649847000,41],[1708649848000,41],[1708649849000,43],[1708649850000,43],[1708649851000,44],[1708649852000,45],[1708649853000,46],[1708649854000,47],[1708649855000,48],[1708649856000,48],[1708649857000,50],[1708649858000,50],[1708649859000,52],[1708649860000,52],[1708649861000,53],[1708649862000,54],[1708649863000,56],[1708649864000,55],[1708649865000,57],[1708649866000,58],[1708649867000,59],[1708649868000,59],[1708649869000,61],[1708649870000,61],[1708649871000,63],[1708649872000,63],[1708649873000,64],[1708649874000,65],[1708649875000,66],[1708649876000,67],[1708649877000,68],[1708649878000,68],[1708649879000,70],[1708649880000,70],[1708649881000,72],[1708649882000,72],[1708649883000,73],[1708649884000,74],[1708649885000,75],[1708649886000,77],[1708649887000,77],[1708649888000,79],[1708649889000,80],[1708649890000,80],[1708649891000,82],[1708649892000,82],[1708649893000,82],[1708649894000,84],[1708649895000,86],[1708649896000,86],[1708649897000,87],[1708649898000,87],[1708649899000,89],[1708649900000,90],[1708649901000,90],[1708649902000,91],[1708649903000,91],[1708649904000,92],[1708649905000,95],[1708649906000,94],[1708649907000,95],[1708649908000,97],[1708649909000,98],[1708649910000,97],[1708649911000,99],[1708649912000,99],[1708649913000,101],[1708649914000,101],[1708649915000,103],[1708649916000,103],[1708649917000,104],[1708649918000,105],[1708649919000,107],[1708649920000,107],[1708649921000,108],[1708649922000,112],[1708649923000,111],[1708649924000,110],[1708649925000,110],[1708649926000,111],[1708649927000,110],[1708649928000,112],[1708649929000,110],[1708649930000,111],[1708649931000,110],[1708649932000,110],[1708649933000,110],[1708649934000,111],[1708649935000,110],[1708649936000,110],[1708649937000,110],[1708649938000,111],[1708649939000,110],[1708649940000,111],[1708649941000,110],[1708649942000,111],[1708649943000,110],[1708649944000,111],[1708649945000,110],[1708649946000,111],[1708649947000,110],[1708649948000,111],[1708649949000,111],[1708649950000,111],[1708649951000,110],[1708649952000,110],[1708649953000,110],[1708649954000,110],[1708649955000,110],[1708649956000,112],[1708649957000,110],[1708649958000,110],[1708649959000,112],[1708649960000,110],[1708649961000,110],[1708649962000,110],[1708649963000,110],[1708649964000,110],[1708649965000,110],[1708649966000,110],[1708649967000,110],[1708649968000,110],[1708649969000,111],[1708649970000,110],[1708649971000,111],[1708649972000,111],[1708649973000,111],[1708649974000,110],[1708649975000,110],[1708649976000,110],[1708649977000,110],[1708649978000,110],[1708649979000,111],[1708649980000,110],[1708649981000,111],[1708649982000,110],[1708649983000,111],[1708649984000,110],[1708649985000,111],[1708649986000,110],[1708649987000,112],[1708649988000,110],[1708649989000,110],[1708649990000,112],[1708649991000,111],[1708649992000,110],[1708649993000,111],[1708649994000,110],[1708649995000,111],[1708649996000,110],[1708649997000,110],[1708649998000,110],[1708649999000,111],[1708650000000,110],[1708650001000,110],[1708650002000,110],[1708650003000,110],[1708650004000,110],[1708650005000,110],[1708650006000,110],[1708650007000,110],[1708650008000,110],[1708650009000,110],[1708650010000,110],[1708650011000,110],[1708650012000,111],[1708650013000,110],[1708650014000,111],[1708650015000,110],[1708650016000,111],[1708650017000,110],[1708650018000,112],[1708650019000,110],[1708650020000,110],[1708650021000,114],[1708650022000,110],[1708650023000,110],[1708650024000,111],[1708650025000,110],[1708650026000,110],[1708650027000,110],[1708650028000,110],[1708650029000,110],[1708650030000,110],[1708650031000,110],[1708650032000,110],[1708650033000,110],[1708650034000,110],[1708650035000,110],[1708650036000,110],[1708650037000,110],[1708650038000,110],[1708650039000,110],[1708650040000,110],[1708650041000,110],[1708650042000,111],[1708650043000,108]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#f15b4f',
name: 'extratos',
data: [
[1708649799000,0],[1708649800000,0],[1708649801000,0],[1708649802000,0],[1708649803000,1],[1708649804000,2],[1708649805000,1],[1708649806000,1],[1708649807000,1],[1708649808000,1],[1708649809000,2],[1708649810000,1],[1708649811000,2],[1708649812000,2],[1708649813000,1],[1708649814000,2],[1708649815000,2],[1708649816000,2],[1708649817000,2],[1708649818000,2],[1708649819000,2],[1708649820000,2],[1708649821000,3],[1708649822000,2],[1708649823000,3],[1708649824000,2],[1708649825000,3],[1708649826000,2],[1708649827000,3],[1708649828000,3],[1708649829000,3],[1708649830000,3],[1708649831000,3],[1708649832000,3],[1708649833000,3],[1708649834000,4],[1708649835000,3],[1708649836000,3],[1708649837000,4],[1708649838000,3],[1708649839000,4],[1708649840000,4],[1708649841000,4],[1708649842000,4],[1708649843000,4],[1708649844000,4],[1708649845000,4],[1708649846000,4],[1708649847000,4],[1708649848000,4],[1708649849000,5],[1708649850000,4],[1708649851000,5],[1708649852000,5],[1708649853000,4],[1708649854000,5],[1708649855000,5],[1708649856000,5],[1708649857000,5],[1708649858000,5],[1708649859000,5],[1708649860000,5],[1708649861000,6],[1708649862000,5],[1708649863000,6],[1708649864000,5],[1708649865000,6],[1708649866000,5],[1708649867000,6],[1708649868000,6],[1708649869000,6],[1708649870000,6],[1708649871000,6],[1708649872000,6],[1708649873000,6],[1708649874000,7],[1708649875000,6],[1708649876000,6],[1708649877000,7],[1708649878000,6],[1708649879000,7],[1708649880000,7],[1708649881000,7],[1708649882000,7],[1708649883000,7],[1708649884000,7],[1708649885000,8],[1708649886000,7],[1708649887000,7],[1708649888000,7],[1708649889000,8],[1708649890000,7],[1708649891000,8],[1708649892000,8],[1708649893000,7],[1708649894000,8],[1708649895000,8],[1708649896000,8],[1708649897000,8],[1708649898000,8],[1708649899000,8],[1708649900000,8],[1708649901000,9],[1708649902000,8],[1708649903000,9],[1708649904000,8],[1708649905000,9],[1708649906000,8],[1708649907000,9],[1708649908000,9],[1708649909000,9],[1708649910000,9],[1708649911000,9],[1708649912000,9],[1708649913000,9],[1708649914000,10],[1708649915000,9],[1708649916000,9],[1708649917000,10],[1708649918000,9],[1708649919000,10],[1708649920000,10],[1708649921000,10],[1708649922000,10],[1708649923000,10],[1708649924000,10],[1708649925000,10],[1708649926000,10],[1708649927000,10],[1708649928000,10],[1708649929000,10],[1708649930000,10],[1708649931000,10],[1708649932000,10],[1708649933000,10],[1708649934000,10],[1708649935000,10],[1708649936000,10],[1708649937000,10],[1708649938000,10],[1708649939000,10],[1708649940000,10],[1708649941000,10],[1708649942000,10],[1708649943000,10],[1708649944000,10],[1708649945000,10],[1708649946000,10],[1708649947000,10],[1708649948000,10],[1708649949000,10],[1708649950000,10],[1708649951000,10],[1708649952000,10],[1708649953000,10],[1708649954000,10],[1708649955000,10],[1708649956000,10],[1708649957000,10],[1708649958000,10],[1708649959000,11],[1708649960000,10],[1708649961000,10],[1708649962000,10],[1708649963000,10],[1708649964000,10],[1708649965000,10],[1708649966000,10],[1708649967000,10],[1708649968000,10],[1708649969000,10],[1708649970000,10],[1708649971000,10],[1708649972000,10],[1708649973000,10],[1708649974000,10],[1708649975000,10],[1708649976000,10],[1708649977000,10],[1708649978000,10],[1708649979000,10],[1708649980000,10],[1708649981000,10],[1708649982000,10],[1708649983000,10],[1708649984000,10],[1708649985000,10],[1708649986000,10],[1708649987000,11],[1708649988000,10],[1708649989000,10],[1708649990000,11],[1708649991000,10],[1708649992000,10],[1708649993000,10],[1708649994000,10],[1708649995000,10],[1708649996000,10],[1708649997000,10],[1708649998000,10],[1708649999000,10],[1708650000000,10],[1708650001000,10],[1708650002000,10],[1708650003000,10],[1708650004000,10],[1708650005000,10],[1708650006000,10],[1708650007000,10],[1708650008000,10],[1708650009000,10],[1708650010000,10],[1708650011000,10],[1708650012000,10],[1708650013000,10],[1708650014000,10],[1708650015000,10],[1708650016000,10],[1708650017000,10],[1708650018000,11],[1708650019000,10],[1708650020000,10],[1708650021000,11],[1708650022000,10],[1708650023000,10],[1708650024000,10],[1708650025000,10],[1708650026000,10],[1708650027000,10],[1708650028000,10],[1708650029000,10],[1708650030000,10],[1708650031000,10],[1708650032000,10],[1708650033000,10],[1708650034000,10],[1708650035000,10],[1708650036000,10],[1708650037000,10],[1708650038000,10],[1708650039000,10],[1708650040000,10],[1708650041000,10],[1708650042000,10],[1708650043000,9]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FFDD00',
name: 'validação HTTP 404',
data: [
[1708649799000,0],[1708649800000,0],[1708649801000,0],[1708649802000,1],[1708649803000,0],[1708649804000,0],[1708649805000,0],[1708649806000,0],[1708649807000,0],[1708649808000,0],[1708649809000,0],[1708649810000,0],[1708649811000,0],[1708649812000,0],[1708649813000,0],[1708649814000,0],[1708649815000,0],[1708649816000,0],[1708649817000,0],[1708649818000,0],[1708649819000,0],[1708649820000,0],[1708649821000,0],[1708649822000,0],[1708649823000,0],[1708649824000,0],[1708649825000,0],[1708649826000,0],[1708649827000,0],[1708649828000,0],[1708649829000,0],[1708649830000,0],[1708649831000,0],[1708649832000,0],[1708649833000,0],[1708649834000,0],[1708649835000,0],[1708649836000,0],[1708649837000,0],[1708649838000,0],[1708649839000,0],[1708649840000,0],[1708649841000,0],[1708649842000,0],[1708649843000,0],[1708649844000,0],[1708649845000,0],[1708649846000,0],[1708649847000,0],[1708649848000,0],[1708649849000,0],[1708649850000,0],[1708649851000,0],[1708649852000,0],[1708649853000,0],[1708649854000,0],[1708649855000,0],[1708649856000,0],[1708649857000,0],[1708649858000,0],[1708649859000,0],[1708649860000,0],[1708649861000,0],[1708649862000,0],[1708649863000,0],[1708649864000,0],[1708649865000,0],[1708649866000,0],[1708649867000,0],[1708649868000,0],[1708649869000,0],[1708649870000,0],[1708649871000,0],[1708649872000,0],[1708649873000,0],[1708649874000,0],[1708649875000,0],[1708649876000,0],[1708649877000,0],[1708649878000,0],[1708649879000,0],[1708649880000,0],[1708649881000,0],[1708649882000,0],[1708649883000,0],[1708649884000,0],[1708649885000,0],[1708649886000,0],[1708649887000,0],[1708649888000,0],[1708649889000,0],[1708649890000,0],[1708649891000,0],[1708649892000,0],[1708649893000,0],[1708649894000,0],[1708649895000,0],[1708649896000,0],[1708649897000,0],[1708649898000,0],[1708649899000,0],[1708649900000,0],[1708649901000,0],[1708649902000,0],[1708649903000,0],[1708649904000,0],[1708649905000,0],[1708649906000,0],[1708649907000,0],[1708649908000,0],[1708649909000,0],[1708649910000,0],[1708649911000,0],[1708649912000,0],[1708649913000,0],[1708649914000,0],[1708649915000,0],[1708649916000,0],[1708649917000,0],[1708649918000,0],[1708649919000,0],[1708649920000,0],[1708649921000,0],[1708649922000,0],[1708649923000,0],[1708649924000,0],[1708649925000,0],[1708649926000,0],[1708649927000,0],[1708649928000,0],[1708649929000,0],[1708649930000,0],[1708649931000,0],[1708649932000,0],[1708649933000,0],[1708649934000,0],[1708649935000,0],[1708649936000,0],[1708649937000,0],[1708649938000,0],[1708649939000,0],[1708649940000,0],[1708649941000,0],[1708649942000,0],[1708649943000,0],[1708649944000,0],[1708649945000,0],[1708649946000,0],[1708649947000,0],[1708649948000,0],[1708649949000,0],[1708649950000,0],[1708649951000,0],[1708649952000,0],[1708649953000,0],[1708649954000,0],[1708649955000,0],[1708649956000,0],[1708649957000,0],[1708649958000,0],[1708649959000,0],[1708649960000,0],[1708649961000,0],[1708649962000,0],[1708649963000,0],[1708649964000,0],[1708649965000,0],[1708649966000,0],[1708649967000,0],[1708649968000,0],[1708649969000,0],[1708649970000,0],[1708649971000,0],[1708649972000,0],[1708649973000,0],[1708649974000,0],[1708649975000,0],[1708649976000,0],[1708649977000,0],[1708649978000,0],[1708649979000,0],[1708649980000,0],[1708649981000,0],[1708649982000,0],[1708649983000,0],[1708649984000,0],[1708649985000,0],[1708649986000,0],[1708649987000,0],[1708649988000,0],[1708649989000,0],[1708649990000,0],[1708649991000,0],[1708649992000,0],[1708649993000,0],[1708649994000,0],[1708649995000,0],[1708649996000,0],[1708649997000,0],[1708649998000,0],[1708649999000,0],[1708650000000,0],[1708650001000,0],[1708650002000,0],[1708650003000,0],[1708650004000,0],[1708650005000,0],[1708650006000,0],[1708650007000,0],[1708650008000,0],[1708650009000,0],[1708650010000,0],[1708650011000,0],[1708650012000,0],[1708650013000,0],[1708650014000,0],[1708650015000,0],[1708650016000,0],[1708650017000,0],[1708650018000,0],[1708650019000,0],[1708650020000,0],[1708650021000,0],[1708650022000,0],[1708650023000,0],[1708650024000,0],[1708650025000,0],[1708650026000,0],[1708650027000,0],[1708650028000,0],[1708650029000,0],[1708650030000,0],[1708650031000,0],[1708650032000,0],[1708650033000,0],[1708650034000,0],[1708650035000,0],[1708650036000,0],[1708650037000,0],[1708650038000,0],[1708650039000,0],[1708650040000,0],[1708650041000,0],[1708650042000,0],[1708650043000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00D5FF',
name: 'validações',
data: [
[1708649799000,0],[1708649800000,0],[1708649801000,0],[1708649802000,5],[1708649803000,5],[1708649804000,0],[1708649805000,0],[1708649806000,0],[1708649807000,0],[1708649808000,0],[1708649809000,0],[1708649810000,0],[1708649811000,0],[1708649812000,0],[1708649813000,0],[1708649814000,0],[1708649815000,0],[1708649816000,0],[1708649817000,0],[1708649818000,0],[1708649819000,0],[1708649820000,0],[1708649821000,0],[1708649822000,0],[1708649823000,0],[1708649824000,0],[1708649825000,0],[1708649826000,0],[1708649827000,0],[1708649828000,0],[1708649829000,0],[1708649830000,0],[1708649831000,0],[1708649832000,0],[1708649833000,0],[1708649834000,0],[1708649835000,0],[1708649836000,0],[1708649837000,0],[1708649838000,0],[1708649839000,0],[1708649840000,0],[1708649841000,0],[1708649842000,0],[1708649843000,0],[1708649844000,0],[1708649845000,0],[1708649846000,0],[1708649847000,0],[1708649848000,0],[1708649849000,0],[1708649850000,0],[1708649851000,0],[1708649852000,0],[1708649853000,0],[1708649854000,0],[1708649855000,0],[1708649856000,0],[1708649857000,0],[1708649858000,0],[1708649859000,0],[1708649860000,0],[1708649861000,0],[1708649862000,0],[1708649863000,0],[1708649864000,0],[1708649865000,0],[1708649866000,0],[1708649867000,0],[1708649868000,0],[1708649869000,0],[1708649870000,0],[1708649871000,0],[1708649872000,0],[1708649873000,0],[1708649874000,0],[1708649875000,0],[1708649876000,0],[1708649877000,0],[1708649878000,0],[1708649879000,0],[1708649880000,0],[1708649881000,0],[1708649882000,0],[1708649883000,0],[1708649884000,0],[1708649885000,0],[1708649886000,0],[1708649887000,0],[1708649888000,0],[1708649889000,0],[1708649890000,0],[1708649891000,0],[1708649892000,0],[1708649893000,0],[1708649894000,0],[1708649895000,0],[1708649896000,0],[1708649897000,0],[1708649898000,0],[1708649899000,0],[1708649900000,0],[1708649901000,0],[1708649902000,0],[1708649903000,0],[1708649904000,0],[1708649905000,0],[1708649906000,0],[1708649907000,0],[1708649908000,0],[1708649909000,0],[1708649910000,0],[1708649911000,0],[1708649912000,0],[1708649913000,0],[1708649914000,0],[1708649915000,0],[1708649916000,0],[1708649917000,0],[1708649918000,0],[1708649919000,0],[1708649920000,0],[1708649921000,0],[1708649922000,0],[1708649923000,0],[1708649924000,0],[1708649925000,0],[1708649926000,0],[1708649927000,0],[1708649928000,0],[1708649929000,0],[1708649930000,0],[1708649931000,0],[1708649932000,0],[1708649933000,0],[1708649934000,0],[1708649935000,0],[1708649936000,0],[1708649937000,0],[1708649938000,0],[1708649939000,0],[1708649940000,0],[1708649941000,0],[1708649942000,0],[1708649943000,0],[1708649944000,0],[1708649945000,0],[1708649946000,0],[1708649947000,0],[1708649948000,0],[1708649949000,0],[1708649950000,0],[1708649951000,0],[1708649952000,0],[1708649953000,0],[1708649954000,0],[1708649955000,0],[1708649956000,0],[1708649957000,0],[1708649958000,0],[1708649959000,0],[1708649960000,0],[1708649961000,0],[1708649962000,0],[1708649963000,0],[1708649964000,0],[1708649965000,0],[1708649966000,0],[1708649967000,0],[1708649968000,0],[1708649969000,0],[1708649970000,0],[1708649971000,0],[1708649972000,0],[1708649973000,0],[1708649974000,0],[1708649975000,0],[1708649976000,0],[1708649977000,0],[1708649978000,0],[1708649979000,0],[1708649980000,0],[1708649981000,0],[1708649982000,0],[1708649983000,0],[1708649984000,0],[1708649985000,0],[1708649986000,0],[1708649987000,0],[1708649988000,0],[1708649989000,0],[1708649990000,0],[1708649991000,0],[1708649992000,0],[1708649993000,0],[1708649994000,0],[1708649995000,0],[1708649996000,0],[1708649997000,0],[1708649998000,0],[1708649999000,0],[1708650000000,0],[1708650001000,0],[1708650002000,0],[1708650003000,0],[1708650004000,0],[1708650005000,0],[1708650006000,0],[1708650007000,0],[1708650008000,0],[1708650009000,0],[1708650010000,0],[1708650011000,0],[1708650012000,0],[1708650013000,0],[1708650014000,0],[1708650015000,0],[1708650016000,0],[1708650017000,0],[1708650018000,0],[1708650019000,0],[1708650020000,0],[1708650021000,0],[1708650022000,0],[1708650023000,0],[1708650024000,0],[1708650025000,0],[1708650026000,0],[1708650027000,0],[1708650028000,0],[1708650029000,0],[1708650030000,0],[1708650031000,0],[1708650032000,0],[1708650033000,0],[1708650034000,0],[1708650035000,0],[1708650036000,0],[1708650037000,0],[1708650038000,0],[1708650039000,0],[1708650040000,0],[1708650041000,0],[1708650042000,0],[1708650043000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00FF00',
name: 'validação concorrência saldo - 0',
data: [
[1708649799000,0],[1708649800000,0],[1708649801000,1],[1708649802000,0],[1708649803000,0],[1708649804000,0],[1708649805000,0],[1708649806000,0],[1708649807000,0],[1708649808000,0],[1708649809000,0],[1708649810000,0],[1708649811000,0],[1708649812000,0],[1708649813000,0],[1708649814000,0],[1708649815000,0],[1708649816000,0],[1708649817000,0],[1708649818000,0],[1708649819000,0],[1708649820000,0],[1708649821000,0],[1708649822000,0],[1708649823000,0],[1708649824000,0],[1708649825000,0],[1708649826000,0],[1708649827000,0],[1708649828000,0],[1708649829000,0],[1708649830000,0],[1708649831000,0],[1708649832000,0],[1708649833000,0],[1708649834000,0],[1708649835000,0],[1708649836000,0],[1708649837000,0],[1708649838000,0],[1708649839000,0],[1708649840000,0],[1708649841000,0],[1708649842000,0],[1708649843000,0],[1708649844000,0],[1708649845000,0],[1708649846000,0],[1708649847000,0],[1708649848000,0],[1708649849000,0],[1708649850000,0],[1708649851000,0],[1708649852000,0],[1708649853000,0],[1708649854000,0],[1708649855000,0],[1708649856000,0],[1708649857000,0],[1708649858000,0],[1708649859000,0],[1708649860000,0],[1708649861000,0],[1708649862000,0],[1708649863000,0],[1708649864000,0],[1708649865000,0],[1708649866000,0],[1708649867000,0],[1708649868000,0],[1708649869000,0],[1708649870000,0],[1708649871000,0],[1708649872000,0],[1708649873000,0],[1708649874000,0],[1708649875000,0],[1708649876000,0],[1708649877000,0],[1708649878000,0],[1708649879000,0],[1708649880000,0],[1708649881000,0],[1708649882000,0],[1708649883000,0],[1708649884000,0],[1708649885000,0],[1708649886000,0],[1708649887000,0],[1708649888000,0],[1708649889000,0],[1708649890000,0],[1708649891000,0],[1708649892000,0],[1708649893000,0],[1708649894000,0],[1708649895000,0],[1708649896000,0],[1708649897000,0],[1708649898000,0],[1708649899000,0],[1708649900000,0],[1708649901000,0],[1708649902000,0],[1708649903000,0],[1708649904000,0],[1708649905000,0],[1708649906000,0],[1708649907000,0],[1708649908000,0],[1708649909000,0],[1708649910000,0],[1708649911000,0],[1708649912000,0],[1708649913000,0],[1708649914000,0],[1708649915000,0],[1708649916000,0],[1708649917000,0],[1708649918000,0],[1708649919000,0],[1708649920000,0],[1708649921000,0],[1708649922000,0],[1708649923000,0],[1708649924000,0],[1708649925000,0],[1708649926000,0],[1708649927000,0],[1708649928000,0],[1708649929000,0],[1708649930000,0],[1708649931000,0],[1708649932000,0],[1708649933000,0],[1708649934000,0],[1708649935000,0],[1708649936000,0],[1708649937000,0],[1708649938000,0],[1708649939000,0],[1708649940000,0],[1708649941000,0],[1708649942000,0],[1708649943000,0],[1708649944000,0],[1708649945000,0],[1708649946000,0],[1708649947000,0],[1708649948000,0],[1708649949000,0],[1708649950000,0],[1708649951000,0],[1708649952000,0],[1708649953000,0],[1708649954000,0],[1708649955000,0],[1708649956000,0],[1708649957000,0],[1708649958000,0],[1708649959000,0],[1708649960000,0],[1708649961000,0],[1708649962000,0],[1708649963000,0],[1708649964000,0],[1708649965000,0],[1708649966000,0],[1708649967000,0],[1708649968000,0],[1708649969000,0],[1708649970000,0],[1708649971000,0],[1708649972000,0],[1708649973000,0],[1708649974000,0],[1708649975000,0],[1708649976000,0],[1708649977000,0],[1708649978000,0],[1708649979000,0],[1708649980000,0],[1708649981000,0],[1708649982000,0],[1708649983000,0],[1708649984000,0],[1708649985000,0],[1708649986000,0],[1708649987000,0],[1708649988000,0],[1708649989000,0],[1708649990000,0],[1708649991000,0],[1708649992000,0],[1708649993000,0],[1708649994000,0],[1708649995000,0],[1708649996000,0],[1708649997000,0],[1708649998000,0],[1708649999000,0],[1708650000000,0],[1708650001000,0],[1708650002000,0],[1708650003000,0],[1708650004000,0],[1708650005000,0],[1708650006000,0],[1708650007000,0],[1708650008000,0],[1708650009000,0],[1708650010000,0],[1708650011000,0],[1708650012000,0],[1708650013000,0],[1708650014000,0],[1708650015000,0],[1708650016000,0],[1708650017000,0],[1708650018000,0],[1708650019000,0],[1708650020000,0],[1708650021000,0],[1708650022000,0],[1708650023000,0],[1708650024000,0],[1708650025000,0],[1708650026000,0],[1708650027000,0],[1708650028000,0],[1708650029000,0],[1708650030000,0],[1708650031000,0],[1708650032000,0],[1708650033000,0],[1708650034000,0],[1708650035000,0],[1708650036000,0],[1708650037000,0],[1708650038000,0],[1708650039000,0],[1708650040000,0],[1708650041000,0],[1708650042000,0],[1708650043000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#9D00FF',
name: 'validação concorrência transações - c',
data: [
[1708649799000,0],[1708649800000,25],[1708649801000,25],[1708649802000,0],[1708649803000,0],[1708649804000,0],[1708649805000,0],[1708649806000,0],[1708649807000,0],[1708649808000,0],[1708649809000,0],[1708649810000,0],[1708649811000,0],[1708649812000,0],[1708649813000,0],[1708649814000,0],[1708649815000,0],[1708649816000,0],[1708649817000,0],[1708649818000,0],[1708649819000,0],[1708649820000,0],[1708649821000,0],[1708649822000,0],[1708649823000,0],[1708649824000,0],[1708649825000,0],[1708649826000,0],[1708649827000,0],[1708649828000,0],[1708649829000,0],[1708649830000,0],[1708649831000,0],[1708649832000,0],[1708649833000,0],[1708649834000,0],[1708649835000,0],[1708649836000,0],[1708649837000,0],[1708649838000,0],[1708649839000,0],[1708649840000,0],[1708649841000,0],[1708649842000,0],[1708649843000,0],[1708649844000,0],[1708649845000,0],[1708649846000,0],[1708649847000,0],[1708649848000,0],[1708649849000,0],[1708649850000,0],[1708649851000,0],[1708649852000,0],[1708649853000,0],[1708649854000,0],[1708649855000,0],[1708649856000,0],[1708649857000,0],[1708649858000,0],[1708649859000,0],[1708649860000,0],[1708649861000,0],[1708649862000,0],[1708649863000,0],[1708649864000,0],[1708649865000,0],[1708649866000,0],[1708649867000,0],[1708649868000,0],[1708649869000,0],[1708649870000,0],[1708649871000,0],[1708649872000,0],[1708649873000,0],[1708649874000,0],[1708649875000,0],[1708649876000,0],[1708649877000,0],[1708649878000,0],[1708649879000,0],[1708649880000,0],[1708649881000,0],[1708649882000,0],[1708649883000,0],[1708649884000,0],[1708649885000,0],[1708649886000,0],[1708649887000,0],[1708649888000,0],[1708649889000,0],[1708649890000,0],[1708649891000,0],[1708649892000,0],[1708649893000,0],[1708649894000,0],[1708649895000,0],[1708649896000,0],[1708649897000,0],[1708649898000,0],[1708649899000,0],[1708649900000,0],[1708649901000,0],[1708649902000,0],[1708649903000,0],[1708649904000,0],[1708649905000,0],[1708649906000,0],[1708649907000,0],[1708649908000,0],[1708649909000,0],[1708649910000,0],[1708649911000,0],[1708649912000,0],[1708649913000,0],[1708649914000,0],[1708649915000,0],[1708649916000,0],[1708649917000,0],[1708649918000,0],[1708649919000,0],[1708649920000,0],[1708649921000,0],[1708649922000,0],[1708649923000,0],[1708649924000,0],[1708649925000,0],[1708649926000,0],[1708649927000,0],[1708649928000,0],[1708649929000,0],[1708649930000,0],[1708649931000,0],[1708649932000,0],[1708649933000,0],[1708649934000,0],[1708649935000,0],[1708649936000,0],[1708649937000,0],[1708649938000,0],[1708649939000,0],[1708649940000,0],[1708649941000,0],[1708649942000,0],[1708649943000,0],[1708649944000,0],[1708649945000,0],[1708649946000,0],[1708649947000,0],[1708649948000,0],[1708649949000,0],[1708649950000,0],[1708649951000,0],[1708649952000,0],[1708649953000,0],[1708649954000,0],[1708649955000,0],[1708649956000,0],[1708649957000,0],[1708649958000,0],[1708649959000,0],[1708649960000,0],[1708649961000,0],[1708649962000,0],[1708649963000,0],[1708649964000,0],[1708649965000,0],[1708649966000,0],[1708649967000,0],[1708649968000,0],[1708649969000,0],[1708649970000,0],[1708649971000,0],[1708649972000,0],[1708649973000,0],[1708649974000,0],[1708649975000,0],[1708649976000,0],[1708649977000,0],[1708649978000,0],[1708649979000,0],[1708649980000,0],[1708649981000,0],[1708649982000,0],[1708649983000,0],[1708649984000,0],[1708649985000,0],[1708649986000,0],[1708649987000,0],[1708649988000,0],[1708649989000,0],[1708649990000,0],[1708649991000,0],[1708649992000,0],[1708649993000,0],[1708649994000,0],[1708649995000,0],[1708649996000,0],[1708649997000,0],[1708649998000,0],[1708649999000,0],[1708650000000,0],[1708650001000,0],[1708650002000,0],[1708650003000,0],[1708650004000,0],[1708650005000,0],[1708650006000,0],[1708650007000,0],[1708650008000,0],[1708650009000,0],[1708650010000,0],[1708650011000,0],[1708650012000,0],[1708650013000,0],[1708650014000,0],[1708650015000,0],[1708650016000,0],[1708650017000,0],[1708650018000,0],[1708650019000,0],[1708650020000,0],[1708650021000,0],[1708650022000,0],[1708650023000,0],[1708650024000,0],[1708650025000,0],[1708650026000,0],[1708650027000,0],[1708650028000,0],[1708650029000,0],[1708650030000,0],[1708650031000,0],[1708650032000,0],[1708650033000,0],[1708650034000,0],[1708650035000,0],[1708650036000,0],[1708650037000,0],[1708650038000,0],[1708650039000,0],[1708650040000,0],[1708650041000,0],[1708650042000,0],[1708650043000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FF00E1',
name: 'validação concorrência saldo - -25',
data: [
[1708649799000,1],[1708649800000,1],[1708649801000,0],[1708649802000,0],[1708649803000,0],[1708649804000,0],[1708649805000,0],[1708649806000,0],[1708649807000,0],[1708649808000,0],[1708649809000,0],[1708649810000,0],[1708649811000,0],[1708649812000,0],[1708649813000,0],[1708649814000,0],[1708649815000,0],[1708649816000,0],[1708649817000,0],[1708649818000,0],[1708649819000,0],[1708649820000,0],[1708649821000,0],[1708649822000,0],[1708649823000,0],[1708649824000,0],[1708649825000,0],[1708649826000,0],[1708649827000,0],[1708649828000,0],[1708649829000,0],[1708649830000,0],[1708649831000,0],[1708649832000,0],[1708649833000,0],[1708649834000,0],[1708649835000,0],[1708649836000,0],[1708649837000,0],[1708649838000,0],[1708649839000,0],[1708649840000,0],[1708649841000,0],[1708649842000,0],[1708649843000,0],[1708649844000,0],[1708649845000,0],[1708649846000,0],[1708649847000,0],[1708649848000,0],[1708649849000,0],[1708649850000,0],[1708649851000,0],[1708649852000,0],[1708649853000,0],[1708649854000,0],[1708649855000,0],[1708649856000,0],[1708649857000,0],[1708649858000,0],[1708649859000,0],[1708649860000,0],[1708649861000,0],[1708649862000,0],[1708649863000,0],[1708649864000,0],[1708649865000,0],[1708649866000,0],[1708649867000,0],[1708649868000,0],[1708649869000,0],[1708649870000,0],[1708649871000,0],[1708649872000,0],[1708649873000,0],[1708649874000,0],[1708649875000,0],[1708649876000,0],[1708649877000,0],[1708649878000,0],[1708649879000,0],[1708649880000,0],[1708649881000,0],[1708649882000,0],[1708649883000,0],[1708649884000,0],[1708649885000,0],[1708649886000,0],[1708649887000,0],[1708649888000,0],[1708649889000,0],[1708649890000,0],[1708649891000,0],[1708649892000,0],[1708649893000,0],[1708649894000,0],[1708649895000,0],[1708649896000,0],[1708649897000,0],[1708649898000,0],[1708649899000,0],[1708649900000,0],[1708649901000,0],[1708649902000,0],[1708649903000,0],[1708649904000,0],[1708649905000,0],[1708649906000,0],[1708649907000,0],[1708649908000,0],[1708649909000,0],[1708649910000,0],[1708649911000,0],[1708649912000,0],[1708649913000,0],[1708649914000,0],[1708649915000,0],[1708649916000,0],[1708649917000,0],[1708649918000,0],[1708649919000,0],[1708649920000,0],[1708649921000,0],[1708649922000,0],[1708649923000,0],[1708649924000,0],[1708649925000,0],[1708649926000,0],[1708649927000,0],[1708649928000,0],[1708649929000,0],[1708649930000,0],[1708649931000,0],[1708649932000,0],[1708649933000,0],[1708649934000,0],[1708649935000,0],[1708649936000,0],[1708649937000,0],[1708649938000,0],[1708649939000,0],[1708649940000,0],[1708649941000,0],[1708649942000,0],[1708649943000,0],[1708649944000,0],[1708649945000,0],[1708649946000,0],[1708649947000,0],[1708649948000,0],[1708649949000,0],[1708649950000,0],[1708649951000,0],[1708649952000,0],[1708649953000,0],[1708649954000,0],[1708649955000,0],[1708649956000,0],[1708649957000,0],[1708649958000,0],[1708649959000,0],[1708649960000,0],[1708649961000,0],[1708649962000,0],[1708649963000,0],[1708649964000,0],[1708649965000,0],[1708649966000,0],[1708649967000,0],[1708649968000,0],[1708649969000,0],[1708649970000,0],[1708649971000,0],[1708649972000,0],[1708649973000,0],[1708649974000,0],[1708649975000,0],[1708649976000,0],[1708649977000,0],[1708649978000,0],[1708649979000,0],[1708649980000,0],[1708649981000,0],[1708649982000,0],[1708649983000,0],[1708649984000,0],[1708649985000,0],[1708649986000,0],[1708649987000,0],[1708649988000,0],[1708649989000,0],[1708649990000,0],[1708649991000,0],[1708649992000,0],[1708649993000,0],[1708649994000,0],[1708649995000,0],[1708649996000,0],[1708649997000,0],[1708649998000,0],[1708649999000,0],[1708650000000,0],[1708650001000,0],[1708650002000,0],[1708650003000,0],[1708650004000,0],[1708650005000,0],[1708650006000,0],[1708650007000,0],[1708650008000,0],[1708650009000,0],[1708650010000,0],[1708650011000,0],[1708650012000,0],[1708650013000,0],[1708650014000,0],[1708650015000,0],[1708650016000,0],[1708650017000,0],[1708650018000,0],[1708650019000,0],[1708650020000,0],[1708650021000,0],[1708650022000,0],[1708650023000,0],[1708650024000,0],[1708650025000,0],[1708650026000,0],[1708650027000,0],[1708650028000,0],[1708650029000,0],[1708650030000,0],[1708650031000,0],[1708650032000,0],[1708650033000,0],[1708650034000,0],[1708650035000,0],[1708650036000,0],[1708650037000,0],[1708650038000,0],[1708650039000,0],[1708650040000,0],[1708650041000,0],[1708650042000,0],[1708650043000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#AECAEB',
name: 'validação concorrência transações - d',
data: [
[1708649799000,25],[1708649800000,0],[1708649801000,0],[1708649802000,0],[1708649803000,0],[1708649804000,0],[1708649805000,0],[1708649806000,0],[1708649807000,0],[1708649808000,0],[1708649809000,0],[1708649810000,0],[1708649811000,0],[1708649812000,0],[1708649813000,0],[1708649814000,0],[1708649815000,0],[1708649816000,0],[1708649817000,0],[1708649818000,0],[1708649819000,0],[1708649820000,0],[1708649821000,0],[1708649822000,0],[1708649823000,0],[1708649824000,0],[1708649825000,0],[1708649826000,0],[1708649827000,0],[1708649828000,0],[1708649829000,0],[1708649830000,0],[1708649831000,0],[1708649832000,0],[1708649833000,0],[1708649834000,0],[1708649835000,0],[1708649836000,0],[1708649837000,0],[1708649838000,0],[1708649839000,0],[1708649840000,0],[1708649841000,0],[1708649842000,0],[1708649843000,0],[1708649844000,0],[1708649845000,0],[1708649846000,0],[1708649847000,0],[1708649848000,0],[1708649849000,0],[1708649850000,0],[1708649851000,0],[1708649852000,0],[1708649853000,0],[1708649854000,0],[1708649855000,0],[1708649856000,0],[1708649857000,0],[1708649858000,0],[1708649859000,0],[1708649860000,0],[1708649861000,0],[1708649862000,0],[1708649863000,0],[1708649864000,0],[1708649865000,0],[1708649866000,0],[1708649867000,0],[1708649868000,0],[1708649869000,0],[1708649870000,0],[1708649871000,0],[1708649872000,0],[1708649873000,0],[1708649874000,0],[1708649875000,0],[1708649876000,0],[1708649877000,0],[1708649878000,0],[1708649879000,0],[1708649880000,0],[1708649881000,0],[1708649882000,0],[1708649883000,0],[1708649884000,0],[1708649885000,0],[1708649886000,0],[1708649887000,0],[1708649888000,0],[1708649889000,0],[1708649890000,0],[1708649891000,0],[1708649892000,0],[1708649893000,0],[1708649894000,0],[1708649895000,0],[1708649896000,0],[1708649897000,0],[1708649898000,0],[1708649899000,0],[1708649900000,0],[1708649901000,0],[1708649902000,0],[1708649903000,0],[1708649904000,0],[1708649905000,0],[1708649906000,0],[1708649907000,0],[1708649908000,0],[1708649909000,0],[1708649910000,0],[1708649911000,0],[1708649912000,0],[1708649913000,0],[1708649914000,0],[1708649915000,0],[1708649916000,0],[1708649917000,0],[1708649918000,0],[1708649919000,0],[1708649920000,0],[1708649921000,0],[1708649922000,0],[1708649923000,0],[1708649924000,0],[1708649925000,0],[1708649926000,0],[1708649927000,0],[1708649928000,0],[1708649929000,0],[1708649930000,0],[1708649931000,0],[1708649932000,0],[1708649933000,0],[1708649934000,0],[1708649935000,0],[1708649936000,0],[1708649937000,0],[1708649938000,0],[1708649939000,0],[1708649940000,0],[1708649941000,0],[1708649942000,0],[1708649943000,0],[1708649944000,0],[1708649945000,0],[1708649946000,0],[1708649947000,0],[1708649948000,0],[1708649949000,0],[1708649950000,0],[1708649951000,0],[1708649952000,0],[1708649953000,0],[1708649954000,0],[1708649955000,0],[1708649956000,0],[1708649957000,0],[1708649958000,0],[1708649959000,0],[1708649960000,0],[1708649961000,0],[1708649962000,0],[1708649963000,0],[1708649964000,0],[1708649965000,0],[1708649966000,0],[1708649967000,0],[1708649968000,0],[1708649969000,0],[1708649970000,0],[1708649971000,0],[1708649972000,0],[1708649973000,0],[1708649974000,0],[1708649975000,0],[1708649976000,0],[1708649977000,0],[1708649978000,0],[1708649979000,0],[1708649980000,0],[1708649981000,0],[1708649982000,0],[1708649983000,0],[1708649984000,0],[1708649985000,0],[1708649986000,0],[1708649987000,0],[1708649988000,0],[1708649989000,0],[1708649990000,0],[1708649991000,0],[1708649992000,0],[1708649993000,0],[1708649994000,0],[1708649995000,0],[1708649996000,0],[1708649997000,0],[1708649998000,0],[1708649999000,0],[1708650000000,0],[1708650001000,0],[1708650002000,0],[1708650003000,0],[1708650004000,0],[1708650005000,0],[1708650006000,0],[1708650007000,0],[1708650008000,0],[1708650009000,0],[1708650010000,0],[1708650011000,0],[1708650012000,0],[1708650013000,0],[1708650014000,0],[1708650015000,0],[1708650016000,0],[1708650017000,0],[1708650018000,0],[1708650019000,0],[1708650020000,0],[1708650021000,0],[1708650022000,0],[1708650023000,0],[1708650024000,0],[1708650025000,0],[1708650026000,0],[1708650027000,0],[1708650028000,0],[1708650029000,0],[1708650030000,0],[1708650031000,0],[1708650032000,0],[1708650033000,0],[1708650034000,0],[1708650035000,0],[1708650036000,0],[1708650037000,0],[1708650038000,0],[1708650039000,0],[1708650040000,0],[1708650041000,0],[1708650042000,0],[1708650043000,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: ['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', '52', '54', '64'],
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: [
1.59,6.57,2.4,0.67,0.21,0.04,0.01,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
],
tooltip: { yDecimals: 0, ySuffix: 'ms' }
},
{
type: 'column',
color: '#f15b4f',
name: 'KO',
data: [
13.47,41.98,20.93,7.31,2.07,0.55,0.18,0.1,0.06,0.04,0.05,0.05,0.05,0.03,0.04,0.04,0.03,0.02,0.05,0.03,0.04,0.03,0.03,0.05,0.03,0.02,0.04,0.02,0.04,0.03,0.04,0.04,0.04,0.02,0.02,0.02,0.01,0.03,0.02,0.02,0.02,0.03,0.02,0.0,0.02,0.02,0.02,0.01,0.02,0.02,0.01,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
],
tooltip: { yDecimals: 0, ySuffix: 'ms' }
}
]
});
responsetimeDistributionChart.setTitle({
text: '<span class="chart_title">Response Time Distribution</span>',
useHTML: true
});
var responsetimepercentilesovertimeokPercentiles = unpack([[1708649799,[18,29,32,39,40,40,44,46,47,48]],[1708649800,[5,5,5,5,5,5,5,5,5,5]],[1708649801,[13,22,29,32,33,33,35,36,37,37]],[1708649802,[3,3,3,3,3,3,3,3,3,3]],[1708649803,[1,2,5,14,19,22,23,28,29,29]],[1708649804,[4,4,5,5,5,5,5,5,5,6]],[1708649805,[3,4,4,5,6,6,6,6,6,6]],[1708649806,[3,3,3,4,4,4,5,5,5,6]],[1708649807,[3,3,3,3,4,4,5,5,5,5]],[1708649808,[3,3,3,4,4,4,4,4,4,4]],[1708649809,[2,3,3,4,4,4,4,5,5,5]],[1708649810,[2,2,3,3,3,4,4,4,4,5]],[1708649811,[2,3,3,3,3,3,4,4,4,4]],[1708649812,[2,3,3,3,4,4,5,5,5,5]],[1708649813,[2,2,3,3,3,3,3,4,5,5]],[1708649814,[2,3,3,3,3,4,4,5,8,9]],[1708649815,[2,3,3,3,3,4,4,4,5,6]],[1708649816,[2,2,3,3,3,3,4,4,4,5]],[1708649817,[2,3,3,3,3,3,4,4,4,5]],[1708649818,[2,3,3,3,4,4,4,5,5,5]],[1708649819,[2,2,3,3,3,3,3,3,4,4]],[1708649820,[1,2,2,3,3,3,3,3,4,5]],[1708649821,[1,2,2,3,3,3,3,3,4,5]],[1708649822,[1,2,2,2,2,2,3,3,5,5]],[1708649823,[2,2,2,2,3,3,3,3,4,5]],[1708649824,[2,2,2,3,3,3,3,3,3,4]],[1708649825,[1,2,2,2,2,2,3,3,3,3]],[1708649826,[1,2,2,2,2,2,3,3,4,4]],[1708649827,[1,2,2,2,2,2,3,3,3,4]],[1708649828,[1,2,2,3,3,3,3,3,4,4]],[1708649829,[1,2,2,2,2,2,3,3,3,3]],[1708649830,[2,2,2,3,3,3,3,3,3,4]],[1708649831,[2,2,2,3,3,3,3,4,4,5]],[1708649832,[1,2,2,2,2,2,2,2,3,4]],[1708649833,[1,2,2,2,2,2,3,3,6,6]],[1708649834,[1,2,2,2,2,2,2,3,3,3]],[1708649835,[1,2,2,2,2,2,3,3,3,3]],[1708649836,[1,2,2,2,2,2,3,3,4,4]],[1708649837,[1,2,2,2,2,2,3,4,4,4]],[1708649838,[1,2,2,2,2,2,2,3,4,4]],[1708649839,[2,2,2,2,2,2,2,3,3,3]],[1708649840,[1,2,2,3,3,3,3,3,4,4]],[1708649841,[1,2,2,2,2,2,2,3,3,3]],[1708649842,[1,2,2,2,2,2,2,2,4,4]],[1708649843,[2,2,2,2,2,2,2,3,3,3]],[1708649844,[1,2,2,2,2,2,2,3,3,3]],[1708649845,[1,1,2,2,2,2,2,2,3,3]],[1708649846,[1,2,2,2,2,2,3,3,4,4]],[1708649847,[1,2,2,2,2,2,2,2,3,3]],[1708649848,[2,2,2,2,2,2,2,3,3,3]],[1708649849,[2,2,2,2,2,3,3,3,3,3]],[1708649850,[2,2,2,3,3,3,3,4,4,4]],[1708649851,[1,2,2,3,3,3,3,3,28,35]],[1708649852,[1,2,2,2,2,2,2,2,3,3]],[1708649853,[2,2,2,2,3,3,3,3,3,4]],[1708649854,[1,1,2,2,2,2,3,3,3,3]],[1708649855,[1,1,2,2,2,2,3,3,3,3]],[1708649856,[2,2,2,2,2,2,2,2,3,3]],[1708649857,[1,2,2,2,2,2,3,3,3,3]],[1708649858,[1,1,2,2,2,2,2,2,2,2]],[1708649859,[1,2,2,2,2,2,3,3,3,3]],[1708649860,[1,2,2,2,2,2,3,3,3,4]],[1708649861,[1,2,2,2,2,2,2,2,16,27]],[1708649862,[1,2,2,2,2,3,3,3,3,4]],[1708649863,[1,2,2,2,3,3,3,3,3,3]],[1708649864,[1,2,2,2,2,2,3,3,14,22]],[1708649865,[1,2,2,2,2,2,2,2,3,4]],[1708649866,[1,2,2,2,2,2,3,3,3,3]],[1708649867,[1,1,2,2,2,2,2,2,2,2]],[1708649868,[1,1,2,2,2,2,2,2,2,3]],[1708649869,[1,2,2,2,2,2,2,2,2,3]],[1708649870,[1,2,2,2,2,3,3,3,3,3]],[1708649871,[1,2,2,2,2,2,2,3,3,3]],[1708649872,[1,2,2,2,2,2,2,2,3,3]],[1708649873,[1,2,2,2,2,2,2,3,18,23]],[1708649874,[1,2,2,2,2,2,3,3,3,3]],[1708649875,[1,2,2,2,3,3,3,3,6,8]],[1708649876,[2,2,2,3,3,3,3,4,5,6]],[1708649877,[1,2,2,2,2,2,2,2,2,3]],[1708649878,[1,1,2,2,2,2,2,2,2,3]],[1708649879,[1,1,2,2,2,2,2,4,21,25]],[1708649880,[1,1,2,2,2,2,2,2,3,3]],[1708649881,[1,1,1,2,2,2,2,2,2,2]],[1708649882,[1,2,2,2,2,2,3,3,11,18]],[1708649883,[1,2,2,2,2,2,2,2,2,2]],[1708649884,[1,1,2,2,2,2,2,2,3,4]],[1708649885,[1,2,2,2,2,2,3,3,27,44]],[1708649886,[1,1,2,2,2,2,2,2,2,2]],[1708649887,[1,1,1,1,2,2,2,2,2,2]],[1708649888,[1,1,2,2,2,2,2,2,3,4]],[1708649889,[1,2,2,2,2,2,2,2,3,3]],[1708649890,[1,2,2,2,2,2,2,2,3,3]],[1708649891,[1,2,2,2,2,2,2,3,31,45]],[1708649892,[1,2,2,2,2,3,3,3,3,3]],[1708649893,[1,2,2,2,2,2,3,3,3,4]],[1708649894,[2,2,2,2,2,3,3,3,3,4]],[1708649895,[1,1,2,2,2,2,3,3,3,3]],[1708649896,[1,1,1,2,2,2,2,2,3,3]],[1708649897,[1,1,2,2,2,2,2,5,22,27]],[1708649898,[1,2,2,2,2,2,2,2,3,3]],[1708649899,[1,2,2,2,2,2,2,3,3,3]],[1708649900,[1,2,2,2,2,2,2,3,34,45]],[1708649901,[1,1,1,2,2,2,2,2,3,3]],[1708649902,[1,1,2,2,2,2,2,2,3,3]],[1708649903,[1,1,2,2,2,2,3,3,18,40]],[1708649904,[1,1,2,2,2,2,2,3,3,4]],[1708649905,[1,2,2,2,2,3,3,3,3,3]],[1708649906,[1,1,2,2,2,2,2,3,3,3]],[1708649907,[1,1,2,2,2,2,2,7,40,48]],[1708649908,[1,2,2,2,2,2,2,2,3,3]],[1708649909,[1,2,2,2,2,3,3,3,29,32]],[1708649910,[1,1,1,2,2,2,2,2,4,8]],[1708649911,[1,1,2,2,2,2,2,2,3,3]],[1708649912,[1,2,2,2,2,2,2,2,3,3]],[1708649913,[1,2,2,2,2,2,3,3,10,14]],[1708649914,[1,2,2,2,2,2,2,3,3,3]],[1708649915,[1,2,2,3,3,3,3,3,3,3]],[1708649916,[1,2,2,3,3,3,3,4,12,21]],[1708649917,[1,2,3,3,3,3,4,4,5,6]],[1708649918,[1,1,2,3,3,3,3,3,5,5]],[1708649919,[1,2,3,4,4,4,4,5,6,11]],[1708649920,[1,2,3,3,3,4,4,5,5,6]],[1708649921,[1,2,3,3,3,4,4,5,5,7]],[1708649922,[1,1,2,3,3,4,5,32,56,64]],[1708649923,[1,2,3,4,4,4,5,5,8,8]],[1708649924,[1,2,3,4,4,4,4,5,6,7]],[1708649925,[1,1,2,3,3,4,5,11,21,27]],[1708649926,[1,2,2,3,3,3,3,3,4,4]],[1708649927,[1,2,3,3,3,4,4,4,5,6]],[1708649928,[2,2,3,4,4,4,5,13,30,47]],[1708649929,[1,2,3,3,3,4,4,4,6,8]],[1708649930,[1,2,3,4,4,4,4,5,5,5]],[1708649931,[1,2,3,4,4,5,6,12,29,36]],[1708649932,[1,2,3,4,4,4,5,5,5,6]],[1708649933,[1,2,2,3,3,3,3,3,5,7]],[1708649934,[2,2,3,4,4,4,4,16,24,25]],[1708649935,[1,1,2,3,3,3,3,4,5,7]],[1708649936,[1,2,3,3,3,3,4,4,5,6]],[1708649937,[1,1,2,2,2,3,3,4,18,19]],[1708649938,[1,2,3,4,4,4,4,5,5,5]],[1708649939,[1,2,2,2,3,3,3,3,3,3]],[1708649940,[1,3,3,4,4,4,5,5,38,47]],[1708649941,[1,2,2,3,3,3,3,4,4,5]],[1708649942,[1,3,3,4,4,4,5,5,7,8]],[1708649943,[1,2,2,3,3,3,3,3,32,52]],[1708649944,[1,3,3,4,4,5,5,19,47,54]],[1708649945,[2,2,2,2,3,3,3,3,4,5]],[1708649946,[2,3,3,4,4,4,4,5,5,6]],[1708649947,[2,2,2,3,3,3,4,38,50,54]],[1708649948,[2,2,3,4,4,4,4,5,6,6]],[1708649949,[1,2,2,2,3,3,3,3,4,7]],[1708649950,[1,2,3,3,4,4,5,9,35,43]],[1708649951,[1,2,2,3,3,3,3,3,4,5]],[1708649952,[1,2,2,3,3,3,3,3,3,3]],[1708649953,null],[1708649954,null],[1708649955,null],[1708649956,null],[1708649957,null],[1708649958,null],[1708649959,null],[1708649960,null],[1708649961,null],[1708649962,null],[1708649963,null],[1708649964,null],[1708649965,null],[1708649966,null],[1708649967,null],[1708649968,null],[1708649969,null],[1708649970,null],[1708649971,null],[1708649972,null],[1708649973,null],[1708649974,null],[1708649975,null],[1708649976,null],[1708649977,null],[1708649978,null],[1708649979,null],[1708649980,null],[1708649981,null],[1708649982,null],[1708649983,null],[1708649984,null],[1708649985,null],[1708649986,null],[1708649987,null],[1708649988,null],[1708649989,null],[1708649990,null],[1708649991,null],[1708649992,null],[1708649993,null],[1708649994,null],[1708649995,null],[1708649996,null],[1708649997,null],[1708649998,null],[1708649999,null],[1708650000,null],[1708650001,null],[1708650002,null],[1708650003,null],[1708650004,null],[1708650005,null],[1708650006,null],[1708650007,null],[1708650008,null],[1708650009,null],[1708650010,null],[1708650011,null],[1708650012,null],[1708650013,null],[1708650014,null],[1708650015,null],[1708650016,null],[1708650017,null],[1708650018,null],[1708650019,null],[1708650020,null],[1708650021,null],[1708650022,null],[1708650023,null],[1708650024,null],[1708650025,null],[1708650026,null],[1708650027,null],[1708650028,null],[1708650029,null],[1708650030,null],[1708650031,null],[1708650032,null],[1708650033,null],[1708650034,null],[1708650035,null],[1708650036,null],[1708650037,null],[1708650038,null],[1708650039,null],[1708650040,null],[1708650041,null],[1708650042,null],[1708650043,null]]);
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([[1708649799,[25,25,0]],[1708649800,[1,1,0]],[1708649801,[25,25,0]],[1708649802,[1,1,0]],[1708649803,[71,71,0]],[1708649804,[3,3,0]],[1708649805,[6,6,0]],[1708649806,[9,9,0]],[1708649807,[11,11,0]],[1708649808,[13,13,0]],[1708649809,[18,18,0]],[1708649810,[19,19,0]],[1708649811,[24,24,0]],[1708649812,[26,26,0]],[1708649813,[27,27,0]],[1708649814,[32,32,0]],[1708649815,[34,34,0]],[1708649816,[37,37,0]],[1708649817,[39,39,0]],[1708649818,[43,43,0]],[1708649819,[44,39,5]],[1708649820,[48,44,4]],[1708649821,[50,39,11]],[1708649822,[54,47,7]],[1708649823,[56,45,11]],[1708649824,[61,39,22]],[1708649825,[61,28,33]],[1708649826,[65,29,36]],[1708649827,[67,40,27]],[1708649828,[70,48,22]],[1708649829,[74,37,37]],[1708649830,[76,42,34]],[1708649831,[80,51,29]],[1708649832,[81,49,32]],[1708649833,[84,48,36]],[1708649834,[87,39,48]],[1708649835,[91,31,60]],[1708649836,[92,36,56]],[1708649837,[96,39,57]],[1708649838,[98,44,54]],[1708649839,[101,38,63]],[1708649840,[105,46,59]],[1708649841,[107,45,62]],[1708649842,[110,54,56]],[1708649843,[112,55,57]],[1708649844,[116,55,61]],[1708649845,[118,48,70]],[1708649846,[121,42,79]],[1708649847,[123,42,81]],[1708649848,[126,52,74]],[1708649849,[131,44,87]],[1708649850,[132,50,82]],[1708649851,[134,54,80]],[1708649852,[139,59,80]],[1708649853,[141,26,115]],[1708649854,[143,36,107]],[1708649855,[146,28,118]],[1708649856,[149,35,114]],[1708649857,[152,29,123]],[1708649858,[154,29,125]],[1708649859,[158,26,132]],[1708649860,[160,36,124]],[1708649861,[164,45,119]],[1708649862,[165,38,127]],[1708649863,[170,41,129]],[1708649864,[171,39,132]],[1708649865,[174,35,139]],[1708649866,[176,41,135]],[1708649867,[181,37,144]],[1708649868,[183,44,139]],[1708649869,[186,32,154]],[1708649870,[188,41,147]],[1708649871,[192,34,158]],[1708649872,[194,30,164]],[1708649873,[196,39,157]],[1708649874,[200,36,164]],[1708649875,[202,44,158]],[1708649876,[206,54,152]],[1708649877,[207,38,169]],[1708649878,[211,36,175]],[1708649879,[213,38,175]],[1708649880,[217,40,177]],[1708649881,[219,39,180]],[1708649882,[222,47,175]],[1708649883,[226,45,181]],[1708649884,[227,41,186]],[1708649885,[230,47,183]],[1708649886,[233,54,179]],[1708649887,[237,45,192]],[1708649888,[238,42,196]],[1708649889,[243,52,191]],[1708649890,[244,42,202]],[1708649891,[248,45,203]],[1708649892,[250,40,210]],[1708649893,[252,48,204]],[1708649894,[256,42,214]],[1708649895,[260,50,210]],[1708649896,[261,54,207]],[1708649897,[265,55,210]],[1708649898,[267,52,215]],[1708649899,[269,57,212]],[1708649900,[272,56,216]],[1708649901,[275,53,222]],[1708649902,[279,61,218]],[1708649903,[281,68,213]],[1708649904,[285,70,215]],[1708649905,[286,57,229]],[1708649906,[290,54,236]],[1708649907,[291,57,234]],[1708649908,[296,63,233]],[1708649909,[297,63,234]],[1708649910,[301,58,243]],[1708649911,[303,58,245]],[1708649912,[306,68,238]],[1708649913,[309,51,258]],[1708649914,[313,59,254]],[1708649915,[314,65,249]],[1708649916,[318,60,258]],[1708649917,[321,68,253]],[1708649918,[322,61,261]],[1708649919,[327,70,257]],[1708649920,[329,61,268]],[1708649921,[332,61,271]],[1708649922,[333,78,255]],[1708649923,[339,70,269]],[1708649924,[340,69,271]],[1708649925,[340,63,277]],[1708649926,[340,67,273]],[1708649927,[340,79,261]],[1708649928,[340,75,265]],[1708649929,[340,62,278]],[1708649930,[340,62,278]],[1708649931,[340,75,265]],[1708649932,[340,56,284]],[1708649933,[340,57,283]],[1708649934,[340,65,275]],[1708649935,[340,62,278]],[1708649936,[340,75,265]],[1708649937,[340,63,277]],[1708649938,[340,67,273]],[1708649939,[340,70,270]],[1708649940,[340,65,275]],[1708649941,[340,59,281]],[1708649942,[340,67,273]],[1708649943,[340,75,265]],[1708649944,[340,78,262]],[1708649945,[340,66,274]],[1708649946,[340,68,272]],[1708649947,[340,62,278]],[1708649948,[340,54,286]],[1708649949,[340,70,270]],[1708649950,[340,79,261]],[1708649951,[340,68,272]],[1708649952,[340,7,333]],[1708649953,[340,0,340]],[1708649954,[340,0,340]],[1708649955,[340,0,340]],[1708649956,[340,0,340]],[1708649957,[340,0,340]],[1708649958,[340,0,340]],[1708649959,[340,0,340]],[1708649960,[340,0,340]],[1708649961,[340,0,340]],[1708649962,[340,0,340]],[1708649963,[340,0,340]],[1708649964,[340,0,340]],[1708649965,[340,0,340]],[1708649966,[340,0,340]],[1708649967,[340,0,340]],[1708649968,[340,0,340]],[1708649969,[340,0,340]],[1708649970,[340,0,340]],[1708649971,[340,0,340]],[1708649972,[340,0,340]],[1708649973,[340,0,340]],[1708649974,[340,0,340]],[1708649975,[340,0,340]],[1708649976,[340,0,340]],[1708649977,[340,0,340]],[1708649978,[340,0,340]],[1708649979,[340,0,340]],[1708649980,[340,0,340]],[1708649981,[340,0,340]],[1708649982,[340,0,340]],[1708649983,[340,0,340]],[1708649984,[340,0,340]],[1708649985,[340,0,340]],[1708649986,[340,0,340]],[1708649987,[340,0,340]],[1708649988,[340,0,340]],[1708649989,[340,0,340]],[1708649990,[340,0,340]],[1708649991,[340,0,340]],[1708649992,[340,0,340]],[1708649993,[340,0,340]],[1708649994,[340,0,340]],[1708649995,[340,0,340]],[1708649996,[340,0,340]],[1708649997,[340,0,340]],[1708649998,[340,0,340]],[1708649999,[340,0,340]],[1708650000,[340,0,340]],[1708650001,[340,0,340]],[1708650002,[340,0,340]],[1708650003,[340,0,340]],[1708650004,[340,0,340]],[1708650005,[340,0,340]],[1708650006,[340,0,340]],[1708650007,[340,0,340]],[1708650008,[340,0,340]],[1708650009,[340,0,340]],[1708650010,[340,0,340]],[1708650011,[340,0,340]],[1708650012,[340,0,340]],[1708650013,[340,0,340]],[1708650014,[340,0,340]],[1708650015,[340,0,340]],[1708650016,[340,0,340]],[1708650017,[340,0,340]],[1708650018,[340,0,340]],[1708650019,[340,0,340]],[1708650020,[340,0,340]],[1708650021,[340,0,340]],[1708650022,[340,0,340]],[1708650023,[340,0,340]],[1708650024,[340,0,340]],[1708650025,[340,0,340]],[1708650026,[340,0,340]],[1708650027,[340,0,340]],[1708650028,[340,0,340]],[1708650029,[340,0,340]],[1708650030,[340,0,340]],[1708650031,[340,0,340]],[1708650032,[340,0,340]],[1708650033,[340,0,340]],[1708650034,[340,0,340]],[1708650035,[340,0,340]],[1708650036,[340,0,340]],[1708650037,[340,0,340]],[1708650038,[340,0,340]],[1708650039,[340,0,340]],[1708650040,[340,0,340]],[1708650041,[340,0,340]],[1708650042,[340,0,340]],[1708650043,[504,0,504]]]);
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'