-
Notifications
You must be signed in to change notification settings - Fork 925
/
index.html
1200 lines (1130 loc) · 92.9 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="shortcut icon" type="image/x-icon" href="style/favicon.ico"/>
<link href="style/style.css" rel="stylesheet" type="text/css" />
<link href="style/bootstrap.min.css" rel="stylesheet" type="text/css" />
<script src="js/jquery-3.5.1.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/gatling.js"></script>
<script src="js/menu.js"></script>
<script src="js/ellipsis.js"></script>
<script src="js/all_sessions.js"></script>
<script src="js/stats.js"></script>
<script src="js/highstock.js"></script>
<script src="js/highcharts-more.js"></script>
<script src="js/theme.js"></script>
<script src="js/unpack.js"></script>
<title>Gatling Stats - Global Information</title>
</head>
<body>
<script>
const storedTheme = localStorage.getItem('theme') || (window.matchMedia("(prefers-color-scheme: dark)").matches ? "dark" : "light");
if (storedTheme) document.documentElement.setAttribute('data-theme', storedTheme)
function toggleTheme() {
const currentTheme = document.documentElement.getAttribute("data-theme");
const targetTheme = currentTheme === "light" ? "dark" : "light";
document.documentElement.setAttribute('data-theme', targetTheme)
localStorage.setItem('theme', targetTheme);
};
</script>
<div class="app-container">
<div class="frise"></div>
<div class="head">
<div class="gatling-open-source">
<a class="gatling-logo gatling-logo-light" href="https://gatling.io" target="blank_" title="Gatling Home Page"><img alt="Gatling" src="style/logo-light.svg"/></a>
<a class="gatling-logo gatling-logo-dark" href="https://gatling.io" target="blank_" title="Gatling Home Page"><img alt="Gatling" src="style/logo-dark.svg"/></a>
<a class="gatling-documentation" href="https://gatling.io/docs/" target="_blank">Documentation</a>
</div>
<div class="nav spacer"></div>
<a class="enterprise" href="https://gatling.io/enterprise/next-step/" target="_blank"><strong>Try</strong>
<img class="logo-enterprise-light" alt="Gatling Enterprise" src="style/logo-enterprise-light.svg"/>
<img class="logo-enterprise-dark" alt="Gatling Enterprise" src="style/logo-enterprise-dark.svg"/>
</a>
<button id="theme-toggle" class="theme-toggle" type="button" onclick="toggleTheme()" aria-label="Toggle user interface mode">
<span class="toggle-dark"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-moon"><path d="M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z"></path></svg></span>
<span class="toggle-light"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-sun"><circle cx="12" cy="12" r="5"></circle><line x1="12" y1="1" x2="12" y2="3"></line><line x1="12" y1="21" x2="12" y2="23"></line><line x1="4.22" y1="4.22" x2="5.64" y2="5.64"></line><line x1="18.36" y1="18.36" x2="19.78" y2="19.78"></line><line x1="1" y1="12" x2="3" y2="12"></line><line x1="21" y1="12" x2="23" y2="12"></line><line x1="4.22" y1="19.78" x2="5.64" y2="18.36"></line><line x1="18.36" y1="5.64" x2="19.78" y2="4.22"></line></svg></span>
</button>
</div>
<div class="container details">
<div class="nav">
<ul></ul>
</div>
<div class="cadre">
<div class="content">
<div class="content-header">
<div class="onglet">
RinhaBackendCrebitosSimulation
</div>
<div class="sous-menu" id="sousMenu">
<div class="sous-menu-spacer">
<div class="item ouvert"><a href="index.html">Global</a></div>
<div class="item "><a id="details_link" href="#">Details</a></div>
</div>
</div>
</div>
<div class="content-in">
<div class="container-article">
<div class="article">
<div class="schema-container">
<div id="ranges" class="schema ranges">
</div>
<div class="schema polar">
<div id="container_number_of_requests"></div>
</div>
<div class="simulation-card">
<div class="simulation-version-information">
<span class="simulation-information-title">Gatling Version</span>
<span class="simulation-information-item">
<span class="simulation-information-label">Version: </span>
<span>3.10.3</span>
</span>
<span class="simulation-information-item">
<span class="simulation-information-label">Released: </span>
<span>2023-12-20</span>
</span>
</div>
<div id="simulation-information" class="simulation-version-information">
<span class="simulation-information-title">Run Information</span>
<div class="simulation-information-container">
<span class="simulation-information-item">
<span class="simulation-information-label">Date: </span>
<span>2024-03-01 18:32:03 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 - adrianbueno-rocket">
<span class="simulation-information-label">Description: </span>
<span>Rinha de Backend - 2024/Q1: Crébito - adrianbueno-rocket</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.total).find.is(0), but actually found -5<span class="value" style="display:none">0</span></td>
<td class="value error-col-2 total ko">2</td>
<td class="value error-col-3 total ko">66.667 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">jmesPath(saldo.total).find.is(-25), but actually found -7<span class="value" style="display:none">1</span></td>
<td class="value error-col-2 total ko">1</td>
<td class="value error-col-3 total ko">33.333 %</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: 'créditos',
data: [
[1709317924000,0],[1709317925000,0],[1709317926000,0],[1709317927000,0],[1709317928000,1],[1709317929000,1],[1709317930000,2],[1709317931000,4],[1709317932000,4],[1709317933000,5],[1709317934000,6],[1709317935000,7],[1709317936000,8],[1709317937000,8],[1709317938000,10],[1709317939000,10],[1709317940000,12],[1709317941000,12],[1709317942000,14],[1709317943000,14],[1709317944000,15],[1709317945000,16],[1709317946000,17],[1709317947000,17],[1709317948000,19],[1709317949000,20],[1709317950000,20],[1709317951000,22],[1709317952000,22],[1709317953000,23],[1709317954000,25],[1709317955000,25],[1709317956000,26],[1709317957000,26],[1709317958000,28],[1709317959000,29],[1709317960000,30],[1709317961000,30],[1709317962000,32],[1709317963000,32],[1709317964000,33],[1709317965000,34],[1709317966000,35],[1709317967000,36],[1709317968000,37],[1709317969000,38],[1709317970000,39],[1709317971000,39],[1709317972000,41],[1709317973000,41],[1709317974000,43],[1709317975000,43],[1709317976000,44],[1709317977000,46],[1709317978000,47],[1709317979000,48],[1709317980000,48],[1709317981000,49],[1709317982000,51],[1709317983000,50],[1709317984000,52],[1709317985000,52],[1709317986000,53],[1709317987000,54],[1709317988000,56],[1709317989000,55],[1709317990000,57],[1709317991000,58],[1709317992000,59],[1709317993000,59],[1709317994000,61],[1709317995000,61],[1709317996000,63],[1709317997000,63],[1709317998000,64],[1709317999000,65],[1709318000000,66],[1709318001000,67],[1709318002000,68],[1709318003000,68],[1709318004000,70],[1709318005000,70],[1709318006000,72],[1709318007000,72],[1709318008000,73],[1709318009000,74],[1709318010000,75],[1709318011000,76],[1709318012000,77],[1709318013000,78],[1709318014000,79],[1709318015000,79],[1709318016000,81],[1709318017000,81],[1709318018000,82],[1709318019000,83],[1709318020000,85],[1709318021000,85],[1709318022000,86],[1709318023000,86],[1709318024000,88],[1709318025000,89],[1709318026000,90],[1709318027000,92],[1709318028000,92],[1709318029000,93],[1709318030000,95],[1709318031000,95],[1709318032000,96],[1709318033000,96],[1709318034000,97],[1709318035000,97],[1709318036000,100],[1709318037000,100],[1709318038000,101],[1709318039000,101],[1709318040000,103],[1709318041000,103],[1709318042000,104],[1709318043000,105],[1709318044000,106],[1709318045000,107],[1709318046000,107],[1709318047000,109],[1709318048000,110],[1709318049000,110],[1709318050000,110],[1709318051000,110],[1709318052000,110],[1709318053000,110],[1709318054000,110],[1709318055000,110],[1709318056000,111],[1709318057000,110],[1709318058000,110],[1709318059000,110],[1709318060000,110],[1709318061000,110],[1709318062000,110],[1709318063000,110],[1709318064000,110],[1709318065000,110],[1709318066000,110],[1709318067000,110],[1709318068000,110],[1709318069000,110],[1709318070000,110],[1709318071000,110],[1709318072000,110],[1709318073000,110],[1709318074000,110],[1709318075000,111],[1709318076000,110],[1709318077000,110],[1709318078000,110],[1709318079000,111],[1709318080000,110],[1709318081000,110],[1709318082000,110],[1709318083000,110],[1709318084000,110],[1709318085000,110],[1709318086000,110],[1709318087000,110],[1709318088000,110],[1709318089000,110],[1709318090000,110],[1709318091000,110],[1709318092000,110],[1709318093000,110],[1709318094000,110],[1709318095000,110],[1709318096000,110],[1709318097000,110],[1709318098000,110],[1709318099000,110],[1709318100000,110],[1709318101000,110],[1709318102000,110],[1709318103000,110],[1709318104000,110],[1709318105000,110],[1709318106000,111],[1709318107000,111],[1709318108000,110],[1709318109000,110],[1709318110000,110],[1709318111000,110],[1709318112000,111],[1709318113000,110],[1709318114000,111],[1709318115000,110],[1709318116000,111],[1709318117000,110],[1709318118000,110],[1709318119000,110],[1709318120000,110],[1709318121000,110],[1709318122000,110],[1709318123000,110],[1709318124000,110],[1709318125000,110],[1709318126000,110],[1709318127000,110],[1709318128000,111],[1709318129000,110],[1709318130000,110],[1709318131000,110],[1709318132000,110],[1709318133000,110],[1709318134000,110],[1709318135000,110],[1709318136000,110],[1709318137000,110],[1709318138000,110],[1709318139000,110],[1709318140000,110],[1709318141000,110],[1709318142000,110],[1709318143000,110],[1709318144000,110],[1709318145000,110],[1709318146000,110],[1709318147000,110],[1709318148000,110],[1709318149000,110],[1709318150000,110],[1709318151000,110],[1709318152000,110],[1709318153000,110],[1709318154000,110],[1709318155000,110],[1709318156000,110],[1709318157000,110],[1709318158000,110],[1709318159000,110],[1709318160000,110],[1709318161000,110],[1709318162000,110],[1709318163000,110],[1709318164000,110],[1709318165000,110],[1709318166000,110],[1709318167000,110],[1709318168000,107]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#68b65c',
name: 'extratos',
data: [
[1709317924000,0],[1709317925000,0],[1709317926000,0],[1709317927000,0],[1709317928000,1],[1709317929000,1],[1709317930000,1],[1709317931000,1],[1709317932000,1],[1709317933000,1],[1709317934000,2],[1709317935000,1],[1709317936000,2],[1709317937000,2],[1709317938000,1],[1709317939000,2],[1709317940000,2],[1709317941000,2],[1709317942000,2],[1709317943000,2],[1709317944000,2],[1709317945000,2],[1709317946000,3],[1709317947000,2],[1709317948000,3],[1709317949000,2],[1709317950000,3],[1709317951000,2],[1709317952000,3],[1709317953000,3],[1709317954000,3],[1709317955000,3],[1709317956000,3],[1709317957000,3],[1709317958000,3],[1709317959000,4],[1709317960000,3],[1709317961000,3],[1709317962000,4],[1709317963000,3],[1709317964000,4],[1709317965000,4],[1709317966000,4],[1709317967000,4],[1709317968000,4],[1709317969000,4],[1709317970000,4],[1709317971000,4],[1709317972000,4],[1709317973000,4],[1709317974000,5],[1709317975000,4],[1709317976000,5],[1709317977000,5],[1709317978000,4],[1709317979000,5],[1709317980000,5],[1709317981000,5],[1709317982000,5],[1709317983000,5],[1709317984000,5],[1709317985000,5],[1709317986000,6],[1709317987000,5],[1709317988000,6],[1709317989000,5],[1709317990000,6],[1709317991000,5],[1709317992000,6],[1709317993000,6],[1709317994000,6],[1709317995000,6],[1709317996000,6],[1709317997000,6],[1709317998000,6],[1709317999000,7],[1709318000000,6],[1709318001000,6],[1709318002000,7],[1709318003000,6],[1709318004000,7],[1709318005000,7],[1709318006000,7],[1709318007000,7],[1709318008000,7],[1709318009000,7],[1709318010000,7],[1709318011000,7],[1709318012000,7],[1709318013000,7],[1709318014000,8],[1709318015000,7],[1709318016000,8],[1709318017000,8],[1709318018000,7],[1709318019000,8],[1709318020000,8],[1709318021000,8],[1709318022000,8],[1709318023000,8],[1709318024000,8],[1709318025000,8],[1709318026000,9],[1709318027000,8],[1709318028000,9],[1709318029000,8],[1709318030000,9],[1709318031000,8],[1709318032000,9],[1709318033000,9],[1709318034000,9],[1709318035000,9],[1709318036000,9],[1709318037000,9],[1709318038000,9],[1709318039000,10],[1709318040000,9],[1709318041000,9],[1709318042000,10],[1709318043000,9],[1709318044000,10],[1709318045000,10],[1709318046000,10],[1709318047000,10],[1709318048000,10],[1709318049000,10],[1709318050000,10],[1709318051000,10],[1709318052000,10],[1709318053000,10],[1709318054000,10],[1709318055000,10],[1709318056000,10],[1709318057000,10],[1709318058000,10],[1709318059000,10],[1709318060000,10],[1709318061000,10],[1709318062000,10],[1709318063000,10],[1709318064000,10],[1709318065000,10],[1709318066000,10],[1709318067000,10],[1709318068000,10],[1709318069000,10],[1709318070000,10],[1709318071000,10],[1709318072000,10],[1709318073000,10],[1709318074000,10],[1709318075000,10],[1709318076000,10],[1709318077000,10],[1709318078000,10],[1709318079000,10],[1709318080000,10],[1709318081000,10],[1709318082000,10],[1709318083000,10],[1709318084000,10],[1709318085000,10],[1709318086000,10],[1709318087000,10],[1709318088000,10],[1709318089000,10],[1709318090000,10],[1709318091000,10],[1709318092000,10],[1709318093000,10],[1709318094000,10],[1709318095000,10],[1709318096000,10],[1709318097000,10],[1709318098000,10],[1709318099000,10],[1709318100000,10],[1709318101000,10],[1709318102000,10],[1709318103000,10],[1709318104000,10],[1709318105000,10],[1709318106000,10],[1709318107000,10],[1709318108000,10],[1709318109000,10],[1709318110000,10],[1709318111000,10],[1709318112000,10],[1709318113000,10],[1709318114000,10],[1709318115000,10],[1709318116000,10],[1709318117000,10],[1709318118000,10],[1709318119000,10],[1709318120000,10],[1709318121000,10],[1709318122000,10],[1709318123000,10],[1709318124000,10],[1709318125000,10],[1709318126000,10],[1709318127000,10],[1709318128000,10],[1709318129000,10],[1709318130000,10],[1709318131000,10],[1709318132000,10],[1709318133000,10],[1709318134000,10],[1709318135000,10],[1709318136000,10],[1709318137000,10],[1709318138000,10],[1709318139000,10],[1709318140000,10],[1709318141000,10],[1709318142000,10],[1709318143000,10],[1709318144000,10],[1709318145000,10],[1709318146000,10],[1709318147000,10],[1709318148000,10],[1709318149000,10],[1709318150000,10],[1709318151000,10],[1709318152000,10],[1709318153000,10],[1709318154000,10],[1709318155000,10],[1709318156000,10],[1709318157000,10],[1709318158000,10],[1709318159000,10],[1709318160000,10],[1709318161000,10],[1709318162000,10],[1709318163000,10],[1709318164000,10],[1709318165000,10],[1709318166000,10],[1709318167000,10],[1709318168000,9]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#f15b4f',
name: 'débitos',
data: [
[1709317924000,0],[1709317925000,0],[1709317926000,0],[1709317927000,0],[1709317928000,1],[1709317929000,2],[1709317930000,4],[1709317931000,6],[1709317932000,7],[1709317933000,9],[1709317934000,11],[1709317935000,13],[1709317936000,15],[1709317937000,16],[1709317938000,19],[1709317939000,20],[1709317940000,22],[1709317941000,24],[1709317942000,25],[1709317943000,28],[1709317944000,29],[1709317945000,31],[1709317946000,33],[1709317947000,35],[1709317948000,37],[1709317949000,38],[1709317950000,40],[1709317951000,42],[1709317952000,44],[1709317953000,47],[1709317954000,48],[1709317955000,51],[1709317956000,52],[1709317957000,53],[1709317958000,55],[1709317959000,56],[1709317960000,59],[1709317961000,60],[1709317962000,62],[1709317963000,64],[1709317964000,66],[1709317965000,68],[1709317966000,69],[1709317967000,71],[1709317968000,74],[1709317969000,74],[1709317970000,77],[1709317971000,79],[1709317972000,80],[1709317973000,82],[1709317974000,84],[1709317975000,86],[1709317976000,88],[1709317977000,89],[1709317978000,92],[1709317979000,93],[1709317980000,96],[1709317981000,97],[1709317982000,99],[1709317983000,101],[1709317984000,102],[1709317985000,104],[1709317986000,106],[1709317987000,108],[1709317988000,110],[1709317989000,111],[1709317990000,113],[1709317991000,115],[1709317992000,117],[1709317993000,119],[1709317994000,120],[1709317995000,123],[1709317996000,124],[1709317997000,126],[1709317998000,128],[1709317999000,129],[1709318000000,132],[1709318001000,133],[1709318002000,136],[1709318003000,138],[1709318004000,140],[1709318005000,142],[1709318006000,143],[1709318007000,144],[1709318008000,147],[1709318009000,148],[1709318010000,150],[1709318011000,152],[1709318012000,153],[1709318013000,155],[1709318014000,157],[1709318015000,159],[1709318016000,161],[1709318017000,162],[1709318018000,165],[1709318019000,166],[1709318020000,168],[1709318021000,170],[1709318022000,171],[1709318023000,174],[1709318024000,175],[1709318025000,177],[1709318026000,179],[1709318027000,182],[1709318028000,184],[1709318029000,185],[1709318030000,187],[1709318031000,189],[1709318032000,191],[1709318033000,193],[1709318034000,194],[1709318035000,196],[1709318036000,197],[1709318037000,199],[1709318038000,201],[1709318039000,202],[1709318040000,205],[1709318041000,206],[1709318042000,209],[1709318043000,210],[1709318044000,212],[1709318045000,214],[1709318046000,215],[1709318047000,217],[1709318048000,220],[1709318049000,220],[1709318050000,220],[1709318051000,220],[1709318052000,220],[1709318053000,220],[1709318054000,220],[1709318055000,220],[1709318056000,220],[1709318057000,220],[1709318058000,220],[1709318059000,220],[1709318060000,220],[1709318061000,220],[1709318062000,220],[1709318063000,220],[1709318064000,220],[1709318065000,220],[1709318066000,220],[1709318067000,220],[1709318068000,220],[1709318069000,220],[1709318070000,220],[1709318071000,220],[1709318072000,220],[1709318073000,220],[1709318074000,220],[1709318075000,221],[1709318076000,220],[1709318077000,220],[1709318078000,220],[1709318079000,221],[1709318080000,220],[1709318081000,220],[1709318082000,220],[1709318083000,220],[1709318084000,220],[1709318085000,220],[1709318086000,220],[1709318087000,220],[1709318088000,220],[1709318089000,220],[1709318090000,220],[1709318091000,220],[1709318092000,220],[1709318093000,220],[1709318094000,220],[1709318095000,220],[1709318096000,220],[1709318097000,220],[1709318098000,220],[1709318099000,220],[1709318100000,220],[1709318101000,220],[1709318102000,220],[1709318103000,220],[1709318104000,220],[1709318105000,220],[1709318106000,221],[1709318107000,221],[1709318108000,220],[1709318109000,220],[1709318110000,220],[1709318111000,220],[1709318112000,221],[1709318113000,220],[1709318114000,221],[1709318115000,220],[1709318116000,220],[1709318117000,220],[1709318118000,220],[1709318119000,220],[1709318120000,220],[1709318121000,220],[1709318122000,220],[1709318123000,220],[1709318124000,220],[1709318125000,220],[1709318126000,220],[1709318127000,220],[1709318128000,220],[1709318129000,220],[1709318130000,220],[1709318131000,220],[1709318132000,220],[1709318133000,220],[1709318134000,220],[1709318135000,220],[1709318136000,220],[1709318137000,220],[1709318138000,220],[1709318139000,220],[1709318140000,220],[1709318141000,220],[1709318142000,220],[1709318143000,220],[1709318144000,220],[1709318145000,220],[1709318146000,220],[1709318147000,220],[1709318148000,220],[1709318149000,220],[1709318150000,220],[1709318151000,220],[1709318152000,220],[1709318153000,220],[1709318154000,220],[1709318155000,220],[1709318156000,220],[1709318157000,220],[1709318158000,220],[1709318159000,220],[1709318160000,220],[1709318161000,220],[1709318162000,220],[1709318163000,220],[1709318164000,220],[1709318165000,220],[1709318166000,220],[1709318167000,220],[1709318168000,215]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FFDD00',
name: 'validação HTTP 404',
data: [
[1709317924000,0],[1709317925000,0],[1709317926000,0],[1709317927000,1],[1709317928000,0],[1709317929000,0],[1709317930000,0],[1709317931000,0],[1709317932000,0],[1709317933000,0],[1709317934000,0],[1709317935000,0],[1709317936000,0],[1709317937000,0],[1709317938000,0],[1709317939000,0],[1709317940000,0],[1709317941000,0],[1709317942000,0],[1709317943000,0],[1709317944000,0],[1709317945000,0],[1709317946000,0],[1709317947000,0],[1709317948000,0],[1709317949000,0],[1709317950000,0],[1709317951000,0],[1709317952000,0],[1709317953000,0],[1709317954000,0],[1709317955000,0],[1709317956000,0],[1709317957000,0],[1709317958000,0],[1709317959000,0],[1709317960000,0],[1709317961000,0],[1709317962000,0],[1709317963000,0],[1709317964000,0],[1709317965000,0],[1709317966000,0],[1709317967000,0],[1709317968000,0],[1709317969000,0],[1709317970000,0],[1709317971000,0],[1709317972000,0],[1709317973000,0],[1709317974000,0],[1709317975000,0],[1709317976000,0],[1709317977000,0],[1709317978000,0],[1709317979000,0],[1709317980000,0],[1709317981000,0],[1709317982000,0],[1709317983000,0],[1709317984000,0],[1709317985000,0],[1709317986000,0],[1709317987000,0],[1709317988000,0],[1709317989000,0],[1709317990000,0],[1709317991000,0],[1709317992000,0],[1709317993000,0],[1709317994000,0],[1709317995000,0],[1709317996000,0],[1709317997000,0],[1709317998000,0],[1709317999000,0],[1709318000000,0],[1709318001000,0],[1709318002000,0],[1709318003000,0],[1709318004000,0],[1709318005000,0],[1709318006000,0],[1709318007000,0],[1709318008000,0],[1709318009000,0],[1709318010000,0],[1709318011000,0],[1709318012000,0],[1709318013000,0],[1709318014000,0],[1709318015000,0],[1709318016000,0],[1709318017000,0],[1709318018000,0],[1709318019000,0],[1709318020000,0],[1709318021000,0],[1709318022000,0],[1709318023000,0],[1709318024000,0],[1709318025000,0],[1709318026000,0],[1709318027000,0],[1709318028000,0],[1709318029000,0],[1709318030000,0],[1709318031000,0],[1709318032000,0],[1709318033000,0],[1709318034000,0],[1709318035000,0],[1709318036000,0],[1709318037000,0],[1709318038000,0],[1709318039000,0],[1709318040000,0],[1709318041000,0],[1709318042000,0],[1709318043000,0],[1709318044000,0],[1709318045000,0],[1709318046000,0],[1709318047000,0],[1709318048000,0],[1709318049000,0],[1709318050000,0],[1709318051000,0],[1709318052000,0],[1709318053000,0],[1709318054000,0],[1709318055000,0],[1709318056000,0],[1709318057000,0],[1709318058000,0],[1709318059000,0],[1709318060000,0],[1709318061000,0],[1709318062000,0],[1709318063000,0],[1709318064000,0],[1709318065000,0],[1709318066000,0],[1709318067000,0],[1709318068000,0],[1709318069000,0],[1709318070000,0],[1709318071000,0],[1709318072000,0],[1709318073000,0],[1709318074000,0],[1709318075000,0],[1709318076000,0],[1709318077000,0],[1709318078000,0],[1709318079000,0],[1709318080000,0],[1709318081000,0],[1709318082000,0],[1709318083000,0],[1709318084000,0],[1709318085000,0],[1709318086000,0],[1709318087000,0],[1709318088000,0],[1709318089000,0],[1709318090000,0],[1709318091000,0],[1709318092000,0],[1709318093000,0],[1709318094000,0],[1709318095000,0],[1709318096000,0],[1709318097000,0],[1709318098000,0],[1709318099000,0],[1709318100000,0],[1709318101000,0],[1709318102000,0],[1709318103000,0],[1709318104000,0],[1709318105000,0],[1709318106000,0],[1709318107000,0],[1709318108000,0],[1709318109000,0],[1709318110000,0],[1709318111000,0],[1709318112000,0],[1709318113000,0],[1709318114000,0],[1709318115000,0],[1709318116000,0],[1709318117000,0],[1709318118000,0],[1709318119000,0],[1709318120000,0],[1709318121000,0],[1709318122000,0],[1709318123000,0],[1709318124000,0],[1709318125000,0],[1709318126000,0],[1709318127000,0],[1709318128000,0],[1709318129000,0],[1709318130000,0],[1709318131000,0],[1709318132000,0],[1709318133000,0],[1709318134000,0],[1709318135000,0],[1709318136000,0],[1709318137000,0],[1709318138000,0],[1709318139000,0],[1709318140000,0],[1709318141000,0],[1709318142000,0],[1709318143000,0],[1709318144000,0],[1709318145000,0],[1709318146000,0],[1709318147000,0],[1709318148000,0],[1709318149000,0],[1709318150000,0],[1709318151000,0],[1709318152000,0],[1709318153000,0],[1709318154000,0],[1709318155000,0],[1709318156000,0],[1709318157000,0],[1709318158000,0],[1709318159000,0],[1709318160000,0],[1709318161000,0],[1709318162000,0],[1709318163000,0],[1709318164000,0],[1709318165000,0],[1709318166000,0],[1709318167000,0],[1709318168000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00D5FF',
name: 'validações',
data: [
[1709317924000,0],[1709317925000,0],[1709317926000,0],[1709317927000,5],[1709317928000,5],[1709317929000,0],[1709317930000,0],[1709317931000,0],[1709317932000,0],[1709317933000,0],[1709317934000,0],[1709317935000,0],[1709317936000,0],[1709317937000,0],[1709317938000,0],[1709317939000,0],[1709317940000,0],[1709317941000,0],[1709317942000,0],[1709317943000,0],[1709317944000,0],[1709317945000,0],[1709317946000,0],[1709317947000,0],[1709317948000,0],[1709317949000,0],[1709317950000,0],[1709317951000,0],[1709317952000,0],[1709317953000,0],[1709317954000,0],[1709317955000,0],[1709317956000,0],[1709317957000,0],[1709317958000,0],[1709317959000,0],[1709317960000,0],[1709317961000,0],[1709317962000,0],[1709317963000,0],[1709317964000,0],[1709317965000,0],[1709317966000,0],[1709317967000,0],[1709317968000,0],[1709317969000,0],[1709317970000,0],[1709317971000,0],[1709317972000,0],[1709317973000,0],[1709317974000,0],[1709317975000,0],[1709317976000,0],[1709317977000,0],[1709317978000,0],[1709317979000,0],[1709317980000,0],[1709317981000,0],[1709317982000,0],[1709317983000,0],[1709317984000,0],[1709317985000,0],[1709317986000,0],[1709317987000,0],[1709317988000,0],[1709317989000,0],[1709317990000,0],[1709317991000,0],[1709317992000,0],[1709317993000,0],[1709317994000,0],[1709317995000,0],[1709317996000,0],[1709317997000,0],[1709317998000,0],[1709317999000,0],[1709318000000,0],[1709318001000,0],[1709318002000,0],[1709318003000,0],[1709318004000,0],[1709318005000,0],[1709318006000,0],[1709318007000,0],[1709318008000,0],[1709318009000,0],[1709318010000,0],[1709318011000,0],[1709318012000,0],[1709318013000,0],[1709318014000,0],[1709318015000,0],[1709318016000,0],[1709318017000,0],[1709318018000,0],[1709318019000,0],[1709318020000,0],[1709318021000,0],[1709318022000,0],[1709318023000,0],[1709318024000,0],[1709318025000,0],[1709318026000,0],[1709318027000,0],[1709318028000,0],[1709318029000,0],[1709318030000,0],[1709318031000,0],[1709318032000,0],[1709318033000,0],[1709318034000,0],[1709318035000,0],[1709318036000,0],[1709318037000,0],[1709318038000,0],[1709318039000,0],[1709318040000,0],[1709318041000,0],[1709318042000,0],[1709318043000,0],[1709318044000,0],[1709318045000,0],[1709318046000,0],[1709318047000,0],[1709318048000,0],[1709318049000,0],[1709318050000,0],[1709318051000,0],[1709318052000,0],[1709318053000,0],[1709318054000,0],[1709318055000,0],[1709318056000,0],[1709318057000,0],[1709318058000,0],[1709318059000,0],[1709318060000,0],[1709318061000,0],[1709318062000,0],[1709318063000,0],[1709318064000,0],[1709318065000,0],[1709318066000,0],[1709318067000,0],[1709318068000,0],[1709318069000,0],[1709318070000,0],[1709318071000,0],[1709318072000,0],[1709318073000,0],[1709318074000,0],[1709318075000,0],[1709318076000,0],[1709318077000,0],[1709318078000,0],[1709318079000,0],[1709318080000,0],[1709318081000,0],[1709318082000,0],[1709318083000,0],[1709318084000,0],[1709318085000,0],[1709318086000,0],[1709318087000,0],[1709318088000,0],[1709318089000,0],[1709318090000,0],[1709318091000,0],[1709318092000,0],[1709318093000,0],[1709318094000,0],[1709318095000,0],[1709318096000,0],[1709318097000,0],[1709318098000,0],[1709318099000,0],[1709318100000,0],[1709318101000,0],[1709318102000,0],[1709318103000,0],[1709318104000,0],[1709318105000,0],[1709318106000,0],[1709318107000,0],[1709318108000,0],[1709318109000,0],[1709318110000,0],[1709318111000,0],[1709318112000,0],[1709318113000,0],[1709318114000,0],[1709318115000,0],[1709318116000,0],[1709318117000,0],[1709318118000,0],[1709318119000,0],[1709318120000,0],[1709318121000,0],[1709318122000,0],[1709318123000,0],[1709318124000,0],[1709318125000,0],[1709318126000,0],[1709318127000,0],[1709318128000,0],[1709318129000,0],[1709318130000,0],[1709318131000,0],[1709318132000,0],[1709318133000,0],[1709318134000,0],[1709318135000,0],[1709318136000,0],[1709318137000,0],[1709318138000,0],[1709318139000,0],[1709318140000,0],[1709318141000,0],[1709318142000,0],[1709318143000,0],[1709318144000,0],[1709318145000,0],[1709318146000,0],[1709318147000,0],[1709318148000,0],[1709318149000,0],[1709318150000,0],[1709318151000,0],[1709318152000,0],[1709318153000,0],[1709318154000,0],[1709318155000,0],[1709318156000,0],[1709318157000,0],[1709318158000,0],[1709318159000,0],[1709318160000,0],[1709318161000,0],[1709318162000,0],[1709318163000,0],[1709318164000,0],[1709318165000,0],[1709318166000,0],[1709318167000,0],[1709318168000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00FF00',
name: 'validação concorrência saldo - 0',
data: [
[1709317924000,0],[1709317925000,0],[1709317926000,1],[1709317927000,0],[1709317928000,0],[1709317929000,0],[1709317930000,0],[1709317931000,0],[1709317932000,0],[1709317933000,0],[1709317934000,0],[1709317935000,0],[1709317936000,0],[1709317937000,0],[1709317938000,0],[1709317939000,0],[1709317940000,0],[1709317941000,0],[1709317942000,0],[1709317943000,0],[1709317944000,0],[1709317945000,0],[1709317946000,0],[1709317947000,0],[1709317948000,0],[1709317949000,0],[1709317950000,0],[1709317951000,0],[1709317952000,0],[1709317953000,0],[1709317954000,0],[1709317955000,0],[1709317956000,0],[1709317957000,0],[1709317958000,0],[1709317959000,0],[1709317960000,0],[1709317961000,0],[1709317962000,0],[1709317963000,0],[1709317964000,0],[1709317965000,0],[1709317966000,0],[1709317967000,0],[1709317968000,0],[1709317969000,0],[1709317970000,0],[1709317971000,0],[1709317972000,0],[1709317973000,0],[1709317974000,0],[1709317975000,0],[1709317976000,0],[1709317977000,0],[1709317978000,0],[1709317979000,0],[1709317980000,0],[1709317981000,0],[1709317982000,0],[1709317983000,0],[1709317984000,0],[1709317985000,0],[1709317986000,0],[1709317987000,0],[1709317988000,0],[1709317989000,0],[1709317990000,0],[1709317991000,0],[1709317992000,0],[1709317993000,0],[1709317994000,0],[1709317995000,0],[1709317996000,0],[1709317997000,0],[1709317998000,0],[1709317999000,0],[1709318000000,0],[1709318001000,0],[1709318002000,0],[1709318003000,0],[1709318004000,0],[1709318005000,0],[1709318006000,0],[1709318007000,0],[1709318008000,0],[1709318009000,0],[1709318010000,0],[1709318011000,0],[1709318012000,0],[1709318013000,0],[1709318014000,0],[1709318015000,0],[1709318016000,0],[1709318017000,0],[1709318018000,0],[1709318019000,0],[1709318020000,0],[1709318021000,0],[1709318022000,0],[1709318023000,0],[1709318024000,0],[1709318025000,0],[1709318026000,0],[1709318027000,0],[1709318028000,0],[1709318029000,0],[1709318030000,0],[1709318031000,0],[1709318032000,0],[1709318033000,0],[1709318034000,0],[1709318035000,0],[1709318036000,0],[1709318037000,0],[1709318038000,0],[1709318039000,0],[1709318040000,0],[1709318041000,0],[1709318042000,0],[1709318043000,0],[1709318044000,0],[1709318045000,0],[1709318046000,0],[1709318047000,0],[1709318048000,0],[1709318049000,0],[1709318050000,0],[1709318051000,0],[1709318052000,0],[1709318053000,0],[1709318054000,0],[1709318055000,0],[1709318056000,0],[1709318057000,0],[1709318058000,0],[1709318059000,0],[1709318060000,0],[1709318061000,0],[1709318062000,0],[1709318063000,0],[1709318064000,0],[1709318065000,0],[1709318066000,0],[1709318067000,0],[1709318068000,0],[1709318069000,0],[1709318070000,0],[1709318071000,0],[1709318072000,0],[1709318073000,0],[1709318074000,0],[1709318075000,0],[1709318076000,0],[1709318077000,0],[1709318078000,0],[1709318079000,0],[1709318080000,0],[1709318081000,0],[1709318082000,0],[1709318083000,0],[1709318084000,0],[1709318085000,0],[1709318086000,0],[1709318087000,0],[1709318088000,0],[1709318089000,0],[1709318090000,0],[1709318091000,0],[1709318092000,0],[1709318093000,0],[1709318094000,0],[1709318095000,0],[1709318096000,0],[1709318097000,0],[1709318098000,0],[1709318099000,0],[1709318100000,0],[1709318101000,0],[1709318102000,0],[1709318103000,0],[1709318104000,0],[1709318105000,0],[1709318106000,0],[1709318107000,0],[1709318108000,0],[1709318109000,0],[1709318110000,0],[1709318111000,0],[1709318112000,0],[1709318113000,0],[1709318114000,0],[1709318115000,0],[1709318116000,0],[1709318117000,0],[1709318118000,0],[1709318119000,0],[1709318120000,0],[1709318121000,0],[1709318122000,0],[1709318123000,0],[1709318124000,0],[1709318125000,0],[1709318126000,0],[1709318127000,0],[1709318128000,0],[1709318129000,0],[1709318130000,0],[1709318131000,0],[1709318132000,0],[1709318133000,0],[1709318134000,0],[1709318135000,0],[1709318136000,0],[1709318137000,0],[1709318138000,0],[1709318139000,0],[1709318140000,0],[1709318141000,0],[1709318142000,0],[1709318143000,0],[1709318144000,0],[1709318145000,0],[1709318146000,0],[1709318147000,0],[1709318148000,0],[1709318149000,0],[1709318150000,0],[1709318151000,0],[1709318152000,0],[1709318153000,0],[1709318154000,0],[1709318155000,0],[1709318156000,0],[1709318157000,0],[1709318158000,0],[1709318159000,0],[1709318160000,0],[1709318161000,0],[1709318162000,0],[1709318163000,0],[1709318164000,0],[1709318165000,0],[1709318166000,0],[1709318167000,0],[1709318168000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#9D00FF',
name: 'validação concorrência transações - c',
data: [
[1709317924000,0],[1709317925000,25],[1709317926000,16],[1709317927000,0],[1709317928000,0],[1709317929000,0],[1709317930000,0],[1709317931000,0],[1709317932000,0],[1709317933000,0],[1709317934000,0],[1709317935000,0],[1709317936000,0],[1709317937000,0],[1709317938000,0],[1709317939000,0],[1709317940000,0],[1709317941000,0],[1709317942000,0],[1709317943000,0],[1709317944000,0],[1709317945000,0],[1709317946000,0],[1709317947000,0],[1709317948000,0],[1709317949000,0],[1709317950000,0],[1709317951000,0],[1709317952000,0],[1709317953000,0],[1709317954000,0],[1709317955000,0],[1709317956000,0],[1709317957000,0],[1709317958000,0],[1709317959000,0],[1709317960000,0],[1709317961000,0],[1709317962000,0],[1709317963000,0],[1709317964000,0],[1709317965000,0],[1709317966000,0],[1709317967000,0],[1709317968000,0],[1709317969000,0],[1709317970000,0],[1709317971000,0],[1709317972000,0],[1709317973000,0],[1709317974000,0],[1709317975000,0],[1709317976000,0],[1709317977000,0],[1709317978000,0],[1709317979000,0],[1709317980000,0],[1709317981000,0],[1709317982000,0],[1709317983000,0],[1709317984000,0],[1709317985000,0],[1709317986000,0],[1709317987000,0],[1709317988000,0],[1709317989000,0],[1709317990000,0],[1709317991000,0],[1709317992000,0],[1709317993000,0],[1709317994000,0],[1709317995000,0],[1709317996000,0],[1709317997000,0],[1709317998000,0],[1709317999000,0],[1709318000000,0],[1709318001000,0],[1709318002000,0],[1709318003000,0],[1709318004000,0],[1709318005000,0],[1709318006000,0],[1709318007000,0],[1709318008000,0],[1709318009000,0],[1709318010000,0],[1709318011000,0],[1709318012000,0],[1709318013000,0],[1709318014000,0],[1709318015000,0],[1709318016000,0],[1709318017000,0],[1709318018000,0],[1709318019000,0],[1709318020000,0],[1709318021000,0],[1709318022000,0],[1709318023000,0],[1709318024000,0],[1709318025000,0],[1709318026000,0],[1709318027000,0],[1709318028000,0],[1709318029000,0],[1709318030000,0],[1709318031000,0],[1709318032000,0],[1709318033000,0],[1709318034000,0],[1709318035000,0],[1709318036000,0],[1709318037000,0],[1709318038000,0],[1709318039000,0],[1709318040000,0],[1709318041000,0],[1709318042000,0],[1709318043000,0],[1709318044000,0],[1709318045000,0],[1709318046000,0],[1709318047000,0],[1709318048000,0],[1709318049000,0],[1709318050000,0],[1709318051000,0],[1709318052000,0],[1709318053000,0],[1709318054000,0],[1709318055000,0],[1709318056000,0],[1709318057000,0],[1709318058000,0],[1709318059000,0],[1709318060000,0],[1709318061000,0],[1709318062000,0],[1709318063000,0],[1709318064000,0],[1709318065000,0],[1709318066000,0],[1709318067000,0],[1709318068000,0],[1709318069000,0],[1709318070000,0],[1709318071000,0],[1709318072000,0],[1709318073000,0],[1709318074000,0],[1709318075000,0],[1709318076000,0],[1709318077000,0],[1709318078000,0],[1709318079000,0],[1709318080000,0],[1709318081000,0],[1709318082000,0],[1709318083000,0],[1709318084000,0],[1709318085000,0],[1709318086000,0],[1709318087000,0],[1709318088000,0],[1709318089000,0],[1709318090000,0],[1709318091000,0],[1709318092000,0],[1709318093000,0],[1709318094000,0],[1709318095000,0],[1709318096000,0],[1709318097000,0],[1709318098000,0],[1709318099000,0],[1709318100000,0],[1709318101000,0],[1709318102000,0],[1709318103000,0],[1709318104000,0],[1709318105000,0],[1709318106000,0],[1709318107000,0],[1709318108000,0],[1709318109000,0],[1709318110000,0],[1709318111000,0],[1709318112000,0],[1709318113000,0],[1709318114000,0],[1709318115000,0],[1709318116000,0],[1709318117000,0],[1709318118000,0],[1709318119000,0],[1709318120000,0],[1709318121000,0],[1709318122000,0],[1709318123000,0],[1709318124000,0],[1709318125000,0],[1709318126000,0],[1709318127000,0],[1709318128000,0],[1709318129000,0],[1709318130000,0],[1709318131000,0],[1709318132000,0],[1709318133000,0],[1709318134000,0],[1709318135000,0],[1709318136000,0],[1709318137000,0],[1709318138000,0],[1709318139000,0],[1709318140000,0],[1709318141000,0],[1709318142000,0],[1709318143000,0],[1709318144000,0],[1709318145000,0],[1709318146000,0],[1709318147000,0],[1709318148000,0],[1709318149000,0],[1709318150000,0],[1709318151000,0],[1709318152000,0],[1709318153000,0],[1709318154000,0],[1709318155000,0],[1709318156000,0],[1709318157000,0],[1709318158000,0],[1709318159000,0],[1709318160000,0],[1709318161000,0],[1709318162000,0],[1709318163000,0],[1709318164000,0],[1709318165000,0],[1709318166000,0],[1709318167000,0],[1709318168000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FF00E1',
name: 'validação concorrência saldo - -25',
data: [
[1709317924000,1],[1709317925000,1],[1709317926000,0],[1709317927000,0],[1709317928000,0],[1709317929000,0],[1709317930000,0],[1709317931000,0],[1709317932000,0],[1709317933000,0],[1709317934000,0],[1709317935000,0],[1709317936000,0],[1709317937000,0],[1709317938000,0],[1709317939000,0],[1709317940000,0],[1709317941000,0],[1709317942000,0],[1709317943000,0],[1709317944000,0],[1709317945000,0],[1709317946000,0],[1709317947000,0],[1709317948000,0],[1709317949000,0],[1709317950000,0],[1709317951000,0],[1709317952000,0],[1709317953000,0],[1709317954000,0],[1709317955000,0],[1709317956000,0],[1709317957000,0],[1709317958000,0],[1709317959000,0],[1709317960000,0],[1709317961000,0],[1709317962000,0],[1709317963000,0],[1709317964000,0],[1709317965000,0],[1709317966000,0],[1709317967000,0],[1709317968000,0],[1709317969000,0],[1709317970000,0],[1709317971000,0],[1709317972000,0],[1709317973000,0],[1709317974000,0],[1709317975000,0],[1709317976000,0],[1709317977000,0],[1709317978000,0],[1709317979000,0],[1709317980000,0],[1709317981000,0],[1709317982000,0],[1709317983000,0],[1709317984000,0],[1709317985000,0],[1709317986000,0],[1709317987000,0],[1709317988000,0],[1709317989000,0],[1709317990000,0],[1709317991000,0],[1709317992000,0],[1709317993000,0],[1709317994000,0],[1709317995000,0],[1709317996000,0],[1709317997000,0],[1709317998000,0],[1709317999000,0],[1709318000000,0],[1709318001000,0],[1709318002000,0],[1709318003000,0],[1709318004000,0],[1709318005000,0],[1709318006000,0],[1709318007000,0],[1709318008000,0],[1709318009000,0],[1709318010000,0],[1709318011000,0],[1709318012000,0],[1709318013000,0],[1709318014000,0],[1709318015000,0],[1709318016000,0],[1709318017000,0],[1709318018000,0],[1709318019000,0],[1709318020000,0],[1709318021000,0],[1709318022000,0],[1709318023000,0],[1709318024000,0],[1709318025000,0],[1709318026000,0],[1709318027000,0],[1709318028000,0],[1709318029000,0],[1709318030000,0],[1709318031000,0],[1709318032000,0],[1709318033000,0],[1709318034000,0],[1709318035000,0],[1709318036000,0],[1709318037000,0],[1709318038000,0],[1709318039000,0],[1709318040000,0],[1709318041000,0],[1709318042000,0],[1709318043000,0],[1709318044000,0],[1709318045000,0],[1709318046000,0],[1709318047000,0],[1709318048000,0],[1709318049000,0],[1709318050000,0],[1709318051000,0],[1709318052000,0],[1709318053000,0],[1709318054000,0],[1709318055000,0],[1709318056000,0],[1709318057000,0],[1709318058000,0],[1709318059000,0],[1709318060000,0],[1709318061000,0],[1709318062000,0],[1709318063000,0],[1709318064000,0],[1709318065000,0],[1709318066000,0],[1709318067000,0],[1709318068000,0],[1709318069000,0],[1709318070000,0],[1709318071000,0],[1709318072000,0],[1709318073000,0],[1709318074000,0],[1709318075000,0],[1709318076000,0],[1709318077000,0],[1709318078000,0],[1709318079000,0],[1709318080000,0],[1709318081000,0],[1709318082000,0],[1709318083000,0],[1709318084000,0],[1709318085000,0],[1709318086000,0],[1709318087000,0],[1709318088000,0],[1709318089000,0],[1709318090000,0],[1709318091000,0],[1709318092000,0],[1709318093000,0],[1709318094000,0],[1709318095000,0],[1709318096000,0],[1709318097000,0],[1709318098000,0],[1709318099000,0],[1709318100000,0],[1709318101000,0],[1709318102000,0],[1709318103000,0],[1709318104000,0],[1709318105000,0],[1709318106000,0],[1709318107000,0],[1709318108000,0],[1709318109000,0],[1709318110000,0],[1709318111000,0],[1709318112000,0],[1709318113000,0],[1709318114000,0],[1709318115000,0],[1709318116000,0],[1709318117000,0],[1709318118000,0],[1709318119000,0],[1709318120000,0],[1709318121000,0],[1709318122000,0],[1709318123000,0],[1709318124000,0],[1709318125000,0],[1709318126000,0],[1709318127000,0],[1709318128000,0],[1709318129000,0],[1709318130000,0],[1709318131000,0],[1709318132000,0],[1709318133000,0],[1709318134000,0],[1709318135000,0],[1709318136000,0],[1709318137000,0],[1709318138000,0],[1709318139000,0],[1709318140000,0],[1709318141000,0],[1709318142000,0],[1709318143000,0],[1709318144000,0],[1709318145000,0],[1709318146000,0],[1709318147000,0],[1709318148000,0],[1709318149000,0],[1709318150000,0],[1709318151000,0],[1709318152000,0],[1709318153000,0],[1709318154000,0],[1709318155000,0],[1709318156000,0],[1709318157000,0],[1709318158000,0],[1709318159000,0],[1709318160000,0],[1709318161000,0],[1709318162000,0],[1709318163000,0],[1709318164000,0],[1709318165000,0],[1709318166000,0],[1709318167000,0],[1709318168000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#AECAEB',
name: 'validação concorrência transações - d',
data: [
[1709317924000,25],[1709317925000,0],[1709317926000,0],[1709317927000,0],[1709317928000,0],[1709317929000,0],[1709317930000,0],[1709317931000,0],[1709317932000,0],[1709317933000,0],[1709317934000,0],[1709317935000,0],[1709317936000,0],[1709317937000,0],[1709317938000,0],[1709317939000,0],[1709317940000,0],[1709317941000,0],[1709317942000,0],[1709317943000,0],[1709317944000,0],[1709317945000,0],[1709317946000,0],[1709317947000,0],[1709317948000,0],[1709317949000,0],[1709317950000,0],[1709317951000,0],[1709317952000,0],[1709317953000,0],[1709317954000,0],[1709317955000,0],[1709317956000,0],[1709317957000,0],[1709317958000,0],[1709317959000,0],[1709317960000,0],[1709317961000,0],[1709317962000,0],[1709317963000,0],[1709317964000,0],[1709317965000,0],[1709317966000,0],[1709317967000,0],[1709317968000,0],[1709317969000,0],[1709317970000,0],[1709317971000,0],[1709317972000,0],[1709317973000,0],[1709317974000,0],[1709317975000,0],[1709317976000,0],[1709317977000,0],[1709317978000,0],[1709317979000,0],[1709317980000,0],[1709317981000,0],[1709317982000,0],[1709317983000,0],[1709317984000,0],[1709317985000,0],[1709317986000,0],[1709317987000,0],[1709317988000,0],[1709317989000,0],[1709317990000,0],[1709317991000,0],[1709317992000,0],[1709317993000,0],[1709317994000,0],[1709317995000,0],[1709317996000,0],[1709317997000,0],[1709317998000,0],[1709317999000,0],[1709318000000,0],[1709318001000,0],[1709318002000,0],[1709318003000,0],[1709318004000,0],[1709318005000,0],[1709318006000,0],[1709318007000,0],[1709318008000,0],[1709318009000,0],[1709318010000,0],[1709318011000,0],[1709318012000,0],[1709318013000,0],[1709318014000,0],[1709318015000,0],[1709318016000,0],[1709318017000,0],[1709318018000,0],[1709318019000,0],[1709318020000,0],[1709318021000,0],[1709318022000,0],[1709318023000,0],[1709318024000,0],[1709318025000,0],[1709318026000,0],[1709318027000,0],[1709318028000,0],[1709318029000,0],[1709318030000,0],[1709318031000,0],[1709318032000,0],[1709318033000,0],[1709318034000,0],[1709318035000,0],[1709318036000,0],[1709318037000,0],[1709318038000,0],[1709318039000,0],[1709318040000,0],[1709318041000,0],[1709318042000,0],[1709318043000,0],[1709318044000,0],[1709318045000,0],[1709318046000,0],[1709318047000,0],[1709318048000,0],[1709318049000,0],[1709318050000,0],[1709318051000,0],[1709318052000,0],[1709318053000,0],[1709318054000,0],[1709318055000,0],[1709318056000,0],[1709318057000,0],[1709318058000,0],[1709318059000,0],[1709318060000,0],[1709318061000,0],[1709318062000,0],[1709318063000,0],[1709318064000,0],[1709318065000,0],[1709318066000,0],[1709318067000,0],[1709318068000,0],[1709318069000,0],[1709318070000,0],[1709318071000,0],[1709318072000,0],[1709318073000,0],[1709318074000,0],[1709318075000,0],[1709318076000,0],[1709318077000,0],[1709318078000,0],[1709318079000,0],[1709318080000,0],[1709318081000,0],[1709318082000,0],[1709318083000,0],[1709318084000,0],[1709318085000,0],[1709318086000,0],[1709318087000,0],[1709318088000,0],[1709318089000,0],[1709318090000,0],[1709318091000,0],[1709318092000,0],[1709318093000,0],[1709318094000,0],[1709318095000,0],[1709318096000,0],[1709318097000,0],[1709318098000,0],[1709318099000,0],[1709318100000,0],[1709318101000,0],[1709318102000,0],[1709318103000,0],[1709318104000,0],[1709318105000,0],[1709318106000,0],[1709318107000,0],[1709318108000,0],[1709318109000,0],[1709318110000,0],[1709318111000,0],[1709318112000,0],[1709318113000,0],[1709318114000,0],[1709318115000,0],[1709318116000,0],[1709318117000,0],[1709318118000,0],[1709318119000,0],[1709318120000,0],[1709318121000,0],[1709318122000,0],[1709318123000,0],[1709318124000,0],[1709318125000,0],[1709318126000,0],[1709318127000,0],[1709318128000,0],[1709318129000,0],[1709318130000,0],[1709318131000,0],[1709318132000,0],[1709318133000,0],[1709318134000,0],[1709318135000,0],[1709318136000,0],[1709318137000,0],[1709318138000,0],[1709318139000,0],[1709318140000,0],[1709318141000,0],[1709318142000,0],[1709318143000,0],[1709318144000,0],[1709318145000,0],[1709318146000,0],[1709318147000,0],[1709318148000,0],[1709318149000,0],[1709318150000,0],[1709318151000,0],[1709318152000,0],[1709318153000,0],[1709318154000,0],[1709318155000,0],[1709318156000,0],[1709318157000,0],[1709318158000,0],[1709318159000,0],[1709318160000,0],[1709318161000,0],[1709318162000,0],[1709318163000,0],[1709318164000,0],[1709318165000,0],[1709318166000,0],[1709318167000,0],[1709318168000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
allUsersData
]
});
allUsersChart.setTitle({
text: '<span class="chart_title">Active Users along the Simulation</span>',
useHTML: true
});
allUsersData.yAxis = 1;
var responsetimeDistributionChart = new Highcharts.Chart({
chart: {
renderTo: 'responsetimeDistributionContainer',
type: 'column',
marginBottom: 60
},
credits: { enabled: false },
legend: {
enabled: true,
floating: true,
y: 5,
borderWidth: 0,
itemStyle: { fontWeight: "normal" },
symbolRadius: 0
},
title: { text: 'A title to let highcharts reserve the place for the title set later' },
navigator: {
maskInside: false
},
xAxis: {
categories: ['0', '1', '2', '3', '4', '5', '6', '7', '8', '10', '11', '12', '13', '15', '16', '17', '18', '19', '20', '21', '22', '23', '24', '25', '26', '27', '33', '35', '36', '38', '40', '41', '43', '44', '46', '48'],
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.63,55.97,28.58,11.6,1.89,0.14,0.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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
],
tooltip: { yDecimals: 0, ySuffix: 'ms' }
}
]
});
responsetimeDistributionChart.setTitle({
text: '<span class="chart_title">Response Time Distribution</span>',
useHTML: true
});
var responsetimepercentilesovertimeokPercentiles = unpack([[1709317924,[12,27,36,41,41,43,43,45,47,48]],[1709317925,null],[1709317926,[7,17,19,22,22,22,22,23,25,26]],[1709317927,null],[1709317928,[1,2,3,9,13,13,15,17,20,23]],[1709317929,[2,2,3,5,5,5,6,6,6,7]],[1709317930,[2,3,3,3,4,4,4,4,4,4]],[1709317931,[3,3,3,4,4,4,4,4,4,4]],[1709317932,[1,2,3,3,3,3,3,3,3,4]],[1709317933,[2,2,2,3,3,3,3,3,3,3]],[1709317934,[2,3,3,3,3,3,3,4,4,4]],[1709317935,[2,2,3,3,3,3,3,3,3,3]],[1709317936,[2,2,3,3,3,3,3,3,3,3]],[1709317937,[2,2,2,3,3,3,3,3,3,4]],[1709317938,[2,2,3,3,3,3,3,3,3,4]],[1709317939,[1,2,2,3,3,3,3,3,3,3]],[1709317940,[1,2,2,2,2,3,3,3,3,3]],[1709317941,[1,2,2,2,2,2,3,3,3,3]],[1709317942,[1,2,2,2,2,2,3,3,4,4]],[1709317943,[1,2,2,3,3,3,3,3,3,3]],[1709317944,[1,2,2,2,2,2,3,3,3,3]],[1709317945,[1,2,2,2,2,2,3,3,3,3]],[1709317946,[1,2,2,2,2,2,2,2,3,3]],[1709317947,[1,1,2,2,2,2,2,2,2,2]],[1709317948,[1,2,2,2,2,2,2,3,3,3]],[1709317949,[1,1,2,2,2,2,2,2,2,2]],[1709317950,[1,2,2,2,2,2,2,2,3,3]],[1709317951,[1,1,2,2,2,2,2,2,2,3]],[1709317952,[1,1,1,2,2,2,2,2,2,2]],[1709317953,[1,1,1,2,2,2,2,2,2,2]],[1709317954,[1,1,1,2,2,2,2,2,2,2]],[1709317955,[1,2,2,2,2,2,2,2,2,2]],[1709317956,[1,1,2,2,2,2,2,2,7,8]],[1709317957,[1,1,2,2,2,2,2,2,2,2]],[1709317958,[1,1,1,2,2,2,2,2,2,2]],[1709317959,[1,1,1,2,2,2,2,2,2,3]],[1709317960,[1,1,1,2,2,2,2,2,2,2]],[1709317961,[1,1,1,2,2,2,2,2,2,2]],[1709317962,[1,1,1,2,2,2,2,2,2,2]],[1709317963,[1,1,2,2,2,2,2,2,2,3]],[1709317964,[1,1,1,2,2,2,2,2,2,3]],[1709317965,[1,1,1,2,2,2,2,2,2,2]],[1709317966,[1,1,1,2,2,2,2,2,2,3]],[1709317967,[1,1,2,2,2,2,2,2,2,2]],[1709317968,[1,1,1,2,2,2,2,2,2,3]],[1709317969,[1,1,1,2,2,2,2,2,2,3]],[1709317970,[0,1,1,2,2,2,2,2,2,2]],[1709317971,[1,1,1,1,1,2,2,2,2,2]],[1709317972,[1,1,1,1,2,2,2,2,2,2]],[1709317973,[1,1,1,2,2,2,2,2,2,2]],[1709317974,[0,1,1,2,2,2,2,2,2,2]],[1709317975,[1,1,1,2,2,2,2,2,2,2]],[1709317976,[0,1,2,2,2,2,2,2,2,2]],[1709317977,[0,1,2,2,2,2,2,2,2,2]],[1709317978,[0,1,1,2,2,2,2,2,2,2]],[1709317979,[0,1,1,1,1,1,1,2,2,2]],[1709317980,[0,1,1,1,1,1,1,1,2,2]],[1709317981,[1,1,1,1,1,1,1,2,2,2]],[1709317982,[1,1,1,1,2,2,2,2,2,2]],[1709317983,[0,1,1,1,2,2,2,2,2,2]],[1709317984,[0,1,1,2,2,2,2,2,2,3]],[1709317985,[0,1,2,2,2,2,2,2,2,2]],[1709317986,[0,1,1,1,2,2,2,2,2,2]],[1709317987,[1,1,1,1,1,2,2,2,2,2]],[1709317988,[0,1,1,2,2,2,2,2,2,2]],[1709317989,[0,1,1,2,2,2,2,2,2,3]],[1709317990,[0,1,1,1,1,1,1,2,2,2]],[1709317991,[1,1,1,2,2,2,2,2,2,3]],[1709317992,[0,1,1,1,2,2,2,2,2,2]],[1709317993,[0,1,1,1,1,1,1,1,2,2]],[1709317994,[0,1,1,1,1,1,1,2,2,2]],[1709317995,[1,1,1,1,1,1,1,2,2,4]],[1709317996,[1,1,1,1,2,2,2,2,2,2]],[1709317997,[1,1,1,2,2,2,2,2,2,2]],[1709317998,[1,1,1,2,2,2,2,2,2,3]],[1709317999,[1,1,1,1,1,2,2,2,2,2]],[1709318000,[1,1,1,1,1,1,2,2,2,2]],[1709318001,[1,1,1,1,1,2,2,2,2,2]],[1709318002,[1,1,1,1,1,2,2,2,2,2]],[1709318003,[0,1,1,1,2,2,2,2,2,3]],[1709318004,[0,1,1,1,1,1,1,2,2,2]],[1709318005,[1,1,1,1,1,1,1,1,1,2]],[1709318006,[1,1,1,1,1,1,1,1,2,2]],[1709318007,[1,1,1,1,1,1,1,1,1,1]],[1709318008,[0,1,1,1,1,1,1,1,1,2]],[1709318009,[0,1,1,1,1,1,2,2,2,2]],[1709318010,[0,1,1,2,2,2,2,2,2,2]],[1709318011,[0,1,1,2,2,2,2,2,2,3]],[1709318012,[1,1,1,1,2,2,2,2,2,2]],[1709318013,[1,1,1,1,1,1,1,1,1,2]],[1709318014,[0,1,1,1,1,1,1,1,2,2]],[1709318015,[0,1,1,1,1,1,1,1,2,2]],[1709318016,[0,1,1,1,1,1,2,2,3,10]],[1709318017,[0,1,1,1,1,1,2,2,2,2]],[1709318018,[0,1,1,1,1,1,2,2,2,2]],[1709318019,[1,1,1,2,2,2,2,2,2,2]],[1709318020,[0,1,1,2,2,2,2,2,2,2]],[1709318021,[0,1,1,1,1,2,2,2,2,2]],[1709318022,[0,1,1,1,1,1,2,2,2,2]],[1709318023,[0,1,1,2,2,2,2,2,2,3]],[1709318024,[0,1,1,2,2,2,2,2,2,2]],[1709318025,[0,1,1,1,1,2,2,2,2,2]],[1709318026,[0,1,1,1,2,2,2,2,2,2]],[1709318027,[0,1,1,1,1,1,2,2,2,2]],[1709318028,[0,1,1,1,1,1,1,2,2,2]],[1709318029,[1,1,1,1,1,1,1,2,2,2]],[1709318030,[1,1,1,1,1,1,2,2,2,2]],[1709318031,[0,1,1,2,2,2,2,2,2,2]],[1709318032,[0,1,2,2,2,2,2,2,2,2]],[1709318033,[0,1,1,2,2,2,2,2,2,3]],[1709318034,[0,1,1,1,1,2,2,2,2,2]],[1709318035,[0,1,1,1,1,1,2,2,2,2]],[1709318036,[0,1,1,1,1,1,1,2,2,2]],[1709318037,[0,1,1,1,1,1,1,2,2,2]],[1709318038,[1,1,1,1,2,2,2,2,2,2]],[1709318039,[0,1,1,1,1,1,2,2,2,2]],[1709318040,[0,1,1,2,2,2,2,2,3,4]],[1709318041,[0,1,1,1,2,2,2,2,3,4]],[1709318042,[1,2,2,3,3,3,3,3,4,4]],[1709318043,[0,1,1,2,2,2,2,2,3,4]],[1709318044,[1,2,3,3,3,3,3,4,4,4]],[1709318045,[1,1,1,1,1,1,2,2,3,4]],[1709318046,[1,2,2,3,3,3,3,4,4,6]],[1709318047,[1,1,1,1,2,2,2,2,3,4]],[1709318048,[1,2,2,3,3,3,3,3,4,5]],[1709318049,[0,1,1,2,2,2,2,3,3,5]],[1709318050,[0,2,2,3,3,3,3,3,4,5]],[1709318051,[1,1,1,2,2,3,3,3,3,4]],[1709318052,[1,2,3,3,3,3,3,4,4,5]],[1709318053,[0,1,2,2,3,3,3,3,4,4]],[1709318054,[0,1,2,3,3,3,3,4,4,4]],[1709318055,[0,2,2,3,3,3,3,4,4,5]],[1709318056,[0,2,2,3,3,3,3,4,4,5]],[1709318057,[0,1,1,2,3,3,3,3,3,3]],[1709318058,[0,1,1,2,3,3,3,3,4,5]],[1709318059,[0,1,1,2,3,3,3,3,4,4]],[1709318060,[0,1,1,2,2,3,3,3,4,5]],[1709318061,[0,1,2,2,3,3,3,3,3,4]],[1709318062,[0,1,1,2,2,2,3,3,3,4]],[1709318063,[0,1,2,2,2,2,3,3,3,3]],[1709318064,[0,1,1,2,2,2,3,3,4,4]],[1709318065,[0,2,2,3,3,3,3,3,4,4]],[1709318066,[0,1,1,2,2,2,2,2,4,5]],[1709318067,[1,1,2,2,2,2,3,3,3,4]],[1709318068,[0,1,1,1,1,2,2,2,3,4]],[1709318069,[0,1,2,2,2,2,3,3,3,4]],[1709318070,[0,1,1,1,1,1,1,2,3,6]],[1709318071,[1,2,3,3,3,3,3,4,4,5]],[1709318072,[0,1,1,1,1,1,2,2,2,4]],[1709318073,[0,1,2,2,3,3,3,3,4,4]],[1709318074,[1,1,1,2,2,2,2,2,2,4]],[1709318075,[0,2,3,3,3,3,4,4,4,5]],[1709318076,[0,1,2,2,2,2,2,2,2,2]],[1709318077,[0,2,2,3,3,3,3,4,4,4]],[1709318078,[1,1,1,2,2,2,2,2,2,4]],[1709318079,[0,1,2,3,3,3,3,4,4,6]],[1709318080,[0,1,1,2,2,2,2,2,2,2]],[1709318081,[0,1,2,3,3,3,3,4,4,4]],[1709318082,[1,1,1,2,2,2,2,2,2,2]],[1709318083,[1,1,2,3,3,3,3,4,4,5]],[1709318084,[1,1,1,2,2,2,2,2,3,3]],[1709318085,[0,1,2,2,2,3,3,3,4,5]],[1709318086,[1,1,1,1,1,2,2,2,3,3]],[1709318087,[1,1,1,2,2,3,3,3,4,6]],[1709318088,[0,1,1,1,2,2,2,3,3,4]],[1709318089,[1,1,1,2,2,2,3,3,4,4]],[1709318090,[1,1,1,2,2,2,2,3,3,4]],[1709318091,[0,1,1,2,2,2,2,3,4,5]],[1709318092,[0,1,1,2,2,2,3,3,4,4]],[1709318093,[1,1,1,1,1,1,2,3,3,4]],[1709318094,[0,1,2,2,2,2,3,3,4,4]],[1709318095,[1,1,1,1,2,2,2,2,2,3]],[1709318096,[1,1,1,2,2,3,3,3,4,4]],[1709318097,[0,1,1,2,2,2,2,2,2,4]],[1709318098,[1,1,2,2,3,3,3,4,4,5]],[1709318099,[1,1,1,2,2,2,2,2,2,3]],[1709318100,[1,1,2,2,2,3,3,3,4,4]],[1709318101,[1,1,1,2,2,2,2,2,2,2]],[1709318102,[0,1,1,2,2,2,3,3,4,5]],[1709318103,[0,1,1,3,3,3,3,3,4,5]],[1709318104,[1,1,2,3,3,3,3,3,3,4]],[1709318105,[1,1,2,3,3,3,2,4,4,6]],[1709318106,[1,2,2,3,3,3,3,4,4,5]],[1709318107,[1,2,2,2,2,3,3,3,3,4]],[1709318108,[0,1,2,2,3,3,3,3,3,4]],[1709318109,[1,1,1,3,3,3,3,3,4,4]],[1709318110,[0,1,2,3,3,3,3,3,4,5]],[1709318111,[1,1,1,3,3,3,3,3,4,5]],[1709318112,[1,2,2,3,3,3,3,4,4,5]],[1709318113,[1,1,2,2,3,3,3,3,4,5]],[1709318114,[0,2,3,3,3,3,4,4,4,4]],[1709318115,[1,1,1,2,2,2,3,3,4,4]],[1709318116,[0,2,3,3,3,3,3,4,4,5]],[1709318117,[0,1,1,2,2,2,2,3,4,5]],[1709318118,[1,2,2,3,3,3,3,3,4,5]],[1709318119,[0,1,2,2,2,2,2,2,4,6]],[1709318120,[1,2,3,3,3,3,3,4,4,4]],[1709318121,[0,1,1,1,2,2,2,2,2,4]],[1709318122,[0,2,2,2,3,3,3,3,3,6]],[1709318123,[0,1,1,1,1,1,1,1,1,4]],[1709318124,[0,2,3,3,3,3,3,4,4,4]],[1709318125,[1,1,1,2,2,2,2,2,2,4]],[1709318126,[1,2,3,3,3,3,4,4,5,5]],[1709318127,[1,1,1,2,2,2,2,2,3,4]],[1709318128,[1,2,3,3,3,4,4,4,5,5]],[1709318129,[1,1,1,2,2,2,2,3,3,4]],[1709318130,[1,2,2,3,3,3,4,4,4,5]],[1709318131,[1,1,1,2,2,2,2,3,4,5]],[1709318132,[1,2,2,2,2,2,3,3,5,5]],[1709318133,[0,1,1,1,2,2,2,2,3,4]],[1709318134,[0,1,1,2,2,3,3,3,4,5]],[1709318135,[0,1,1,1,2,2,2,3,3,4]],[1709318136,[0,1,1,2,2,2,2,3,4,4]],[1709318137,[0,1,1,2,2,2,2,2,3,5]],[1709318138,[1,1,2,2,2,2,2,3,4,5]],[1709318139,[1,1,1,2,2,2,2,3,3,4]],[1709318140,[0,1,1,2,2,3,3,3,4,5]],[1709318141,[0,1,1,3,3,3,3,3,4,4]],[1709318142,[0,1,1,2,2,2,3,3,4,6]],[1709318143,[0,1,1,2,3,3,3,3,4,4]],[1709318144,[0,1,1,1,2,2,2,3,4,5]],[1709318145,[1,2,2,3,3,3,3,3,4,4]],[1709318146,[1,1,2,2,2,2,2,2,2,5]],[1709318147,[1,1,2,3,3,3,3,4,4,4]],[1709318148,[1,1,1,1,1,1,1,2,2,3]],[1709318149,[1,1,1,3,3,3,3,3,4,6]],[1709318150,[1,1,1,1,1,1,1,1,2,3]],[1709318151,[0,1,1,2,3,3,3,3,3,4]],[1709318152,[0,1,1,1,1,1,1,1,2,3]],[1709318153,[0,1,1,2,2,2,2,3,3,4]],[1709318154,[0,1,1,1,1,1,1,2,2,3]],[1709318155,[1,1,1,2,2,3,3,3,4,5]],[1709318156,[1,1,1,1,1,1,2,2,2,3]],[1709318157,[0,1,1,2,2,3,3,3,4,4]],[1709318158,[0,1,1,1,1,1,1,2,2,2]],[1709318159,[0,1,1,2,2,3,3,3,3,4]],[1709318160,[1,1,1,1,1,2,2,2,2,2]],[1709318161,[1,1,2,2,2,3,3,3,4,4]],[1709318162,[1,1,2,2,2,2,2,2,2,2]],[1709318163,[0,1,2,2,2,2,3,3,4,5]],[1709318164,[0,1,1,1,1,1,1,2,2,2]],[1709318165,[1,1,1,3,3,3,3,3,4,4]],[1709318166,[0,1,1,1,1,2,2,3,3,4]],[1709318167,[1,2,2,3,3,3,3,3,4,4]],[1709318168,[0,1,1,2,2,3,3,3,4,6]]]);
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([[1709317924,[25,25,0]],[1709317925,[1,0,1]],[1709317926,[25,25,0]],[1709317927,[1,0,1]],[1709317928,[71,70,1]],[1709317929,[3,3,0]],[1709317930,[6,6,0]],[1709317931,[9,9,0]],[1709317932,[11,11,0]],[1709317933,[13,13,0]],[1709317934,[18,18,0]],[1709317935,[19,19,0]],[1709317936,[24,24,0]],[1709317937,[26,26,0]],[1709317938,[27,27,0]],[1709317939,[32,32,0]],[1709317940,[34,34,0]],[1709317941,[37,37,0]],[1709317942,[39,39,0]],[1709317943,[43,43,0]],[1709317944,[45,45,0]],[1709317945,[48,48,0]],[1709317946,[50,50,0]],[1709317947,[54,54,0]],[1709317948,[56,56,0]],[1709317949,[60,60,0]],[1709317950,[61,61,0]],[1709317951,[65,65,0]],[1709317952,[67,67,0]],[1709317953,[70,70,0]],[1709317954,[75,75,0]],[1709317955,[77,77,0]],[1709317956,[78,78,0]],[1709317957,[81,81,0]],[1709317958,[84,84,0]],[1709317959,[89,89,0]],[1709317960,[89,89,0]],[1709317961,[93,93,0]],[1709317962,[96,96,0]],[1709317963,[98,98,0]],[1709317964,[102,102,0]],[1709317965,[104,104,0]],[1709317966,[107,107,0]],[1709317967,[109,109,0]],[1709317968,[114,114,0]],[1709317969,[115,115,0]],[1709317970,[119,119,0]],[1709317971,[121,121,0]],[1709317972,[123,123,0]],[1709317973,[126,126,0]],[1709317974,[129,129,0]],[1709317975,[133,133,0]],[1709317976,[134,134,0]],[1709317977,[139,139,0]],[1709317978,[140,140,0]],[1709317979,[144,144,0]],[1709317980,[147,147,0]],[1709317981,[149,149,0]],[1709317982,[151,151,0]],[1709317983,[155,155,0]],[1709317984,[158,158,0]],[1709317985,[160,160,0]],[1709317986,[163,163,0]],[1709317987,[166,166,0]],[1709317988,[170,170,0]],[1709317989,[170,170,0]],[1709317990,[174,174,0]],[1709317991,[177,177,0]],[1709317992,[180,180,0]],[1709317993,[183,183,0]],[1709317994,[186,186,0]],[1709317995,[189,189,0]],[1709317996,[191,191,0]],[1709317997,[194,194,0]],[1709317998,[197,197,0]],[1709317999,[199,199,0]],[1709318000,[203,203,0]],[1709318001,[205,205,0]],[1709318002,[208,208,0]],[1709318003,[211,211,0]],[1709318004,[213,213,0]],[1709318005,[217,217,0]],[1709318006,[219,219,0]],[1709318007,[223,223,0]],[1709318008,[225,225,0]],[1709318009,[227,227,0]],[1709318010,[230,230,0]],[1709318011,[234,234,0]],[1709318012,[236,236,0]],[1709318013,[238,238,0]],[1709318014,[243,243,0]],[1709318015,[244,244,0]],[1709318016,[248,248,0]],[1709318017,[251,251,0]],[1709318018,[251,251,0]],[1709318019,[257,257,0]],[1709318020,[259,259,0]],[1709318021,[262,262,0]],[1709318022,[264,264,0]],[1709318023,[266,266,0]],[1709318024,[269,269,0]],[1709318025,[274,274,0]],[1709318026,[275,275,0]],[1709318027,[279,279,0]],[1709318028,[281,281,0]],[1709318029,[283,283,0]],[1709318030,[286,286,0]],[1709318031,[290,290,0]],[1709318032,[292,292,0]],[1709318033,[297,297,0]],[1709318034,[297,297,0]],[1709318035,[300,300,0]],[1709318036,[304,304,0]],[1709318037,[306,306,0]],[1709318038,[309,309,0]],[1709318039,[313,313,0]],[1709318040,[314,314,0]],[1709318041,[318,318,0]],[1709318042,[321,321,0]],[1709318043,[322,322,0]],[1709318044,[327,327,0]],[1709318045,[329,329,0]],[1709318046,[332,332,0]],[1709318047,[334,334,0]],[1709318048,[338,338,0]],[1709318049,[340,340,0]],[1709318050,[340,340,0]],[1709318051,[340,340,0]],[1709318052,[340,340,0]],[1709318053,[340,340,0]],[1709318054,[340,340,0]],[1709318055,[340,340,0]],[1709318056,[340,340,0]],[1709318057,[340,340,0]],[1709318058,[340,340,0]],[1709318059,[340,340,0]],[1709318060,[340,340,0]],[1709318061,[340,340,0]],[1709318062,[340,340,0]],[1709318063,[340,340,0]],[1709318064,[340,340,0]],[1709318065,[340,340,0]],[1709318066,[340,340,0]],[1709318067,[340,340,0]],[1709318068,[340,340,0]],[1709318069,[340,340,0]],[1709318070,[340,340,0]],[1709318071,[340,340,0]],[1709318072,[340,340,0]],[1709318073,[340,340,0]],[1709318074,[340,340,0]],[1709318075,[340,340,0]],[1709318076,[340,340,0]],[1709318077,[340,340,0]],[1709318078,[340,340,0]],[1709318079,[340,340,0]],[1709318080,[340,340,0]],[1709318081,[340,340,0]],[1709318082,[340,340,0]],[1709318083,[340,340,0]],[1709318084,[340,340,0]],[1709318085,[340,340,0]],[1709318086,[340,340,0]],[1709318087,[340,340,0]],[1709318088,[340,340,0]],[1709318089,[340,340,0]],[1709318090,[340,340,0]],[1709318091,[340,340,0]],[1709318092,[340,340,0]],[1709318093,[340,340,0]],[1709318094,[340,340,0]],[1709318095,[340,340,0]],[1709318096,[340,340,0]],[1709318097,[340,340,0]],[1709318098,[340,340,0]],[1709318099,[340,340,0]],[1709318100,[340,340,0]],[1709318101,[340,340,0]],[1709318102,[340,340,0]],[1709318103,[340,340,0]],[1709318104,[340,340,0]],[1709318105,[340,340,0]],[1709318106,[340,340,0]],[1709318107,[340,340,0]],[1709318108,[340,340,0]],[1709318109,[340,340,0]],[1709318110,[340,340,0]],[1709318111,[340,340,0]],[1709318112,[340,340,0]],[1709318113,[340,340,0]],[1709318114,[340,340,0]],[1709318115,[340,340,0]],[1709318116,[340,340,0]],[1709318117,[340,340,0]],[1709318118,[340,340,0]],[1709318119,[340,340,0]],[1709318120,[340,340,0]],[1709318121,[340,340,0]],[1709318122,[340,340,0]],[1709318123,[340,340,0]],[1709318124,[340,340,0]],[1709318125,[340,340,0]],[1709318126,[340,340,0]],[1709318127,[340,340,0]],[1709318128,[340,340,0]],[1709318129,[340,340,0]],[1709318130,[340,340,0]],[1709318131,[340,340,0]],[1709318132,[340,340,0]],[1709318133,[340,340,0]],[1709318134,[340,340,0]],[1709318135,[340,340,0]],[1709318136,[340,340,0]],[1709318137,[340,340,0]],[1709318138,[340,340,0]],[1709318139,[340,340,0]],[1709318140,[340,340,0]],[1709318141,[340,340,0]],[1709318142,[340,340,0]],[1709318143,[340,340,0]],[1709318144,[340,340,0]],[1709318145,[340,340,0]],[1709318146,[340,340,0]],[1709318147,[340,340,0]],[1709318148,[340,340,0]],[1709318149,[340,340,0]],[1709318150,[340,340,0]],[1709318151,[340,340,0]],[1709318152,[340,340,0]],[1709318153,[340,340,0]],[1709318154,[340,340,0]],[1709318155,[340,340,0]],[1709318156,[340,340,0]],[1709318157,[340,340,0]],[1709318158,[340,340,0]],[1709318159,[340,340,0]],[1709318160,[340,340,0]],[1709318161,[340,340,0]],[1709318162,[340,340,0]],[1709318163,[340,340,0]],[1709318164,[340,340,0]],[1709318165,[340,340,0]],[1709318166,[340,340,0]],[1709318167,[340,340,0]],[1709318168,[501,501,0]]]);
var requestsChart = new Highcharts.StockChart({
chart: {
renderTo: 'requests',
zoomType: 'x',
marginBottom: 60
},
credits: { enabled: false },
legend: {
enabled: true,
floating: true,
y: -65,
borderWidth: 0,
itemStyle: { fontWeight: "normal" },
symbolRadius: 0
},
title: { text: 'A title to let highcharts reserve the place for the title set later' },
navigator: {
maskInside: false
},
rangeSelector: {
buttonSpacing: 0,
buttonTheme: {
fill: '#CFC9C6',
padding: 1,
stroke: '#000000',
'stroke-width': 0.25,
style: {
color: '#000000',
fontWeight: 'bold',
},
states: {
stroke: '#000000',
'stroke-width': 0.25,
hover: {
fill: '#92918C',
style: { color: 'black' }
},
select: {
fill: '#FFA900',
style: { color: 'white' }
}
}
},
buttons : [
{
type : 'minute',
count : 1,
text : '1m'
}, {
type : 'minute',
count : 10,
text : '10m'