-
Notifications
You must be signed in to change notification settings - Fork 923
/
Copy pathindex.html
1200 lines (1130 loc) · 94.8 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-05 14:25:56 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 - leoggo_rust">
<span class="simulation-information-label">Description: </span>
<span>Rinha de Backend - 2024/Q1: Crébito - leoggo_rust</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: [
[1709648756000,0],[1709648757000,0],[1709648758000,0],[1709648759000,0],[1709648760000,1],[1709648761000,2],[1709648762000,2],[1709648763000,4],[1709648764000,4],[1709648765000,5],[1709648766000,6],[1709648767000,7],[1709648768000,8],[1709648769000,8],[1709648770000,10],[1709648771000,10],[1709648772000,12],[1709648773000,12],[1709648774000,14],[1709648775000,14],[1709648776000,15],[1709648777000,16],[1709648778000,17],[1709648779000,17],[1709648780000,19],[1709648781000,20],[1709648782000,20],[1709648783000,22],[1709648784000,23],[1709648785000,23],[1709648786000,28],[1709648787000,25],[1709648788000,26],[1709648789000,26],[1709648790000,28],[1709648791000,29],[1709648792000,30],[1709648793000,30],[1709648794000,32],[1709648795000,32],[1709648796000,33],[1709648797000,34],[1709648798000,35],[1709648799000,36],[1709648800000,37],[1709648801000,38],[1709648802000,39],[1709648803000,39],[1709648804000,41],[1709648805000,41],[1709648806000,43],[1709648807000,43],[1709648808000,44],[1709648809000,45],[1709648810000,46],[1709648811000,47],[1709648812000,48],[1709648813000,48],[1709648814000,50],[1709648815000,50],[1709648816000,52],[1709648817000,52],[1709648818000,53],[1709648819000,54],[1709648820000,56],[1709648821000,55],[1709648822000,57],[1709648823000,58],[1709648824000,59],[1709648825000,59],[1709648826000,61],[1709648827000,61],[1709648828000,63],[1709648829000,63],[1709648830000,64],[1709648831000,65],[1709648832000,66],[1709648833000,68],[1709648834000,69],[1709648835000,69],[1709648836000,71],[1709648837000,71],[1709648838000,73],[1709648839000,73],[1709648840000,74],[1709648841000,75],[1709648842000,76],[1709648843000,77],[1709648844000,78],[1709648845000,79],[1709648846000,81],[1709648847000,80],[1709648848000,82],[1709648849000,82],[1709648850000,83],[1709648851000,84],[1709648852000,85],[1709648853000,86],[1709648854000,87],[1709648855000,87],[1709648856000,89],[1709648857000,90],[1709648858000,90],[1709648859000,93],[1709648860000,92],[1709648861000,92],[1709648862000,95],[1709648863000,95],[1709648864000,96],[1709648865000,96],[1709648866000,97],[1709648867000,98],[1709648868000,99],[1709648869000,99],[1709648870000,102],[1709648871000,102],[1709648872000,104],[1709648873000,104],[1709648874000,105],[1709648875000,105],[1709648876000,107],[1709648877000,108],[1709648878000,107],[1709648879000,109],[1709648880000,111],[1709648881000,111],[1709648882000,110],[1709648883000,110],[1709648884000,111],[1709648885000,111],[1709648886000,111],[1709648887000,110],[1709648888000,110],[1709648889000,111],[1709648890000,111],[1709648891000,110],[1709648892000,111],[1709648893000,111],[1709648894000,111],[1709648895000,111],[1709648896000,110],[1709648897000,111],[1709648898000,111],[1709648899000,111],[1709648900000,111],[1709648901000,111],[1709648902000,111],[1709648903000,110],[1709648904000,110],[1709648905000,111],[1709648906000,111],[1709648907000,111],[1709648908000,111],[1709648909000,110],[1709648910000,111],[1709648911000,111],[1709648912000,111],[1709648913000,111],[1709648914000,111],[1709648915000,111],[1709648916000,111],[1709648917000,111],[1709648918000,111],[1709648919000,111],[1709648920000,111],[1709648921000,111],[1709648922000,111],[1709648923000,110],[1709648924000,111],[1709648925000,110],[1709648926000,110],[1709648927000,112],[1709648928000,111],[1709648929000,110],[1709648930000,111],[1709648931000,110],[1709648932000,110],[1709648933000,110],[1709648934000,111],[1709648935000,111],[1709648936000,111],[1709648937000,110],[1709648938000,111],[1709648939000,111],[1709648940000,110],[1709648941000,110],[1709648942000,111],[1709648943000,111],[1709648944000,110],[1709648945000,110],[1709648946000,111],[1709648947000,110],[1709648948000,111],[1709648949000,111],[1709648950000,110],[1709648951000,110],[1709648952000,110],[1709648953000,111],[1709648954000,110],[1709648955000,111],[1709648956000,110],[1709648957000,110],[1709648958000,111],[1709648959000,111],[1709648960000,110],[1709648961000,111],[1709648962000,110],[1709648963000,110],[1709648964000,111],[1709648965000,110],[1709648966000,111],[1709648967000,111],[1709648968000,110],[1709648969000,111],[1709648970000,110],[1709648971000,111],[1709648972000,112],[1709648973000,110],[1709648974000,110],[1709648975000,111],[1709648976000,110],[1709648977000,111],[1709648978000,112],[1709648979000,111],[1709648980000,110],[1709648981000,110],[1709648982000,111],[1709648983000,110],[1709648984000,111],[1709648985000,111],[1709648986000,111],[1709648987000,110],[1709648988000,111],[1709648989000,111],[1709648990000,110],[1709648991000,110],[1709648992000,110],[1709648993000,110],[1709648994000,110],[1709648995000,110],[1709648996000,111],[1709648997000,110],[1709648998000,111],[1709648999000,110],[1709649000000,109]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#68b65c',
name: 'débitos',
data: [
[1709648756000,0],[1709648757000,0],[1709648758000,0],[1709648759000,0],[1709648760000,1],[1709648761000,2],[1709648762000,4],[1709648763000,6],[1709648764000,7],[1709648765000,9],[1709648766000,11],[1709648767000,13],[1709648768000,15],[1709648769000,16],[1709648770000,19],[1709648771000,20],[1709648772000,22],[1709648773000,24],[1709648774000,25],[1709648775000,28],[1709648776000,29],[1709648777000,31],[1709648778000,33],[1709648779000,35],[1709648780000,37],[1709648781000,38],[1709648782000,40],[1709648783000,42],[1709648784000,45],[1709648785000,46],[1709648786000,51],[1709648787000,50],[1709648788000,51],[1709648789000,53],[1709648790000,55],[1709648791000,56],[1709648792000,59],[1709648793000,60],[1709648794000,62],[1709648795000,64],[1709648796000,67],[1709648797000,69],[1709648798000,70],[1709648799000,72],[1709648800000,75],[1709648801000,75],[1709648802000,78],[1709648803000,79],[1709648804000,80],[1709648805000,83],[1709648806000,85],[1709648807000,86],[1709648808000,89],[1709648809000,90],[1709648810000,92],[1709648811000,94],[1709648812000,96],[1709648813000,97],[1709648814000,98],[1709648815000,102],[1709648816000,102],[1709648817000,104],[1709648818000,106],[1709648819000,108],[1709648820000,110],[1709648821000,111],[1709648822000,113],[1709648823000,115],[1709648824000,118],[1709648825000,119],[1709648826000,120],[1709648827000,123],[1709648828000,124],[1709648829000,126],[1709648830000,128],[1709648831000,129],[1709648832000,132],[1709648833000,134],[1709648834000,136],[1709648835000,138],[1709648836000,140],[1709648837000,142],[1709648838000,143],[1709648839000,145],[1709648840000,148],[1709648841000,148],[1709648842000,150],[1709648843000,153],[1709648844000,154],[1709648845000,156],[1709648846000,160],[1709648847000,160],[1709648848000,162],[1709648849000,163],[1709648850000,166],[1709648851000,167],[1709648852000,168],[1709648853000,170],[1709648854000,172],[1709648855000,175],[1709648856000,175],[1709648857000,178],[1709648858000,180],[1709648859000,183],[1709648860000,183],[1709648861000,184],[1709648862000,187],[1709648863000,189],[1709648864000,191],[1709648865000,192],[1709648866000,193],[1709648867000,197],[1709648868000,198],[1709648869000,200],[1709648870000,203],[1709648871000,203],[1709648872000,206],[1709648873000,207],[1709648874000,209],[1709648875000,211],[1709648876000,214],[1709648877000,215],[1709648878000,215],[1709648879000,218],[1709648880000,221],[1709648881000,222],[1709648882000,220],[1709648883000,221],[1709648884000,220],[1709648885000,227],[1709648886000,221],[1709648887000,221],[1709648888000,221],[1709648889000,221],[1709648890000,221],[1709648891000,222],[1709648892000,221],[1709648893000,220],[1709648894000,222],[1709648895000,221],[1709648896000,220],[1709648897000,221],[1709648898000,220],[1709648899000,221],[1709648900000,222],[1709648901000,220],[1709648902000,221],[1709648903000,221],[1709648904000,220],[1709648905000,222],[1709648906000,221],[1709648907000,222],[1709648908000,221],[1709648909000,221],[1709648910000,221],[1709648911000,222],[1709648912000,221],[1709648913000,220],[1709648914000,221],[1709648915000,221],[1709648916000,221],[1709648917000,221],[1709648918000,220],[1709648919000,222],[1709648920000,220],[1709648921000,220],[1709648922000,221],[1709648923000,220],[1709648924000,221],[1709648925000,222],[1709648926000,222],[1709648927000,223],[1709648928000,220],[1709648929000,220],[1709648930000,223],[1709648931000,221],[1709648932000,221],[1709648933000,221],[1709648934000,221],[1709648935000,222],[1709648936000,221],[1709648937000,220],[1709648938000,221],[1709648939000,222],[1709648940000,220],[1709648941000,222],[1709648942000,221],[1709648943000,221],[1709648944000,222],[1709648945000,222],[1709648946000,221],[1709648947000,220],[1709648948000,221],[1709648949000,221],[1709648950000,222],[1709648951000,221],[1709648952000,221],[1709648953000,222],[1709648954000,221],[1709648955000,222],[1709648956000,221],[1709648957000,222],[1709648958000,221],[1709648959000,220],[1709648960000,221],[1709648961000,220],[1709648962000,220],[1709648963000,222],[1709648964000,220],[1709648965000,221],[1709648966000,221],[1709648967000,222],[1709648968000,220],[1709648969000,221],[1709648970000,221],[1709648971000,221],[1709648972000,220],[1709648973000,220],[1709648974000,221],[1709648975000,221],[1709648976000,220],[1709648977000,222],[1709648978000,223],[1709648979000,220],[1709648980000,222],[1709648981000,221],[1709648982000,221],[1709648983000,221],[1709648984000,222],[1709648985000,222],[1709648986000,221],[1709648987000,221],[1709648988000,221],[1709648989000,221],[1709648990000,221],[1709648991000,222],[1709648992000,220],[1709648993000,222],[1709648994000,222],[1709648995000,221],[1709648996000,221],[1709648997000,222],[1709648998000,221],[1709648999000,221],[1709649000000,217]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#f15b4f',
name: 'extratos',
data: [
[1709648756000,0],[1709648757000,0],[1709648758000,0],[1709648759000,0],[1709648760000,1],[1709648761000,1],[1709648762000,1],[1709648763000,1],[1709648764000,1],[1709648765000,1],[1709648766000,2],[1709648767000,1],[1709648768000,2],[1709648769000,2],[1709648770000,1],[1709648771000,2],[1709648772000,2],[1709648773000,2],[1709648774000,2],[1709648775000,2],[1709648776000,2],[1709648777000,2],[1709648778000,3],[1709648779000,2],[1709648780000,3],[1709648781000,2],[1709648782000,3],[1709648783000,2],[1709648784000,3],[1709648785000,3],[1709648786000,3],[1709648787000,3],[1709648788000,3],[1709648789000,3],[1709648790000,3],[1709648791000,4],[1709648792000,3],[1709648793000,3],[1709648794000,4],[1709648795000,3],[1709648796000,4],[1709648797000,4],[1709648798000,4],[1709648799000,4],[1709648800000,4],[1709648801000,4],[1709648802000,4],[1709648803000,4],[1709648804000,4],[1709648805000,4],[1709648806000,5],[1709648807000,4],[1709648808000,5],[1709648809000,5],[1709648810000,4],[1709648811000,5],[1709648812000,5],[1709648813000,5],[1709648814000,5],[1709648815000,5],[1709648816000,5],[1709648817000,5],[1709648818000,6],[1709648819000,5],[1709648820000,6],[1709648821000,5],[1709648822000,6],[1709648823000,5],[1709648824000,6],[1709648825000,6],[1709648826000,6],[1709648827000,6],[1709648828000,6],[1709648829000,6],[1709648830000,6],[1709648831000,7],[1709648832000,6],[1709648833000,6],[1709648834000,7],[1709648835000,6],[1709648836000,7],[1709648837000,7],[1709648838000,7],[1709648839000,7],[1709648840000,7],[1709648841000,7],[1709648842000,7],[1709648843000,7],[1709648844000,7],[1709648845000,7],[1709648846000,8],[1709648847000,7],[1709648848000,8],[1709648849000,8],[1709648850000,7],[1709648851000,8],[1709648852000,8],[1709648853000,8],[1709648854000,8],[1709648855000,8],[1709648856000,8],[1709648857000,8],[1709648858000,9],[1709648859000,8],[1709648860000,9],[1709648861000,8],[1709648862000,9],[1709648863000,8],[1709648864000,9],[1709648865000,9],[1709648866000,9],[1709648867000,9],[1709648868000,9],[1709648869000,9],[1709648870000,9],[1709648871000,10],[1709648872000,9],[1709648873000,9],[1709648874000,10],[1709648875000,9],[1709648876000,10],[1709648877000,10],[1709648878000,10],[1709648879000,10],[1709648880000,10],[1709648881000,10],[1709648882000,10],[1709648883000,10],[1709648884000,10],[1709648885000,10],[1709648886000,10],[1709648887000,10],[1709648888000,10],[1709648889000,10],[1709648890000,10],[1709648891000,10],[1709648892000,10],[1709648893000,10],[1709648894000,10],[1709648895000,10],[1709648896000,10],[1709648897000,10],[1709648898000,10],[1709648899000,11],[1709648900000,10],[1709648901000,10],[1709648902000,10],[1709648903000,10],[1709648904000,10],[1709648905000,10],[1709648906000,10],[1709648907000,10],[1709648908000,10],[1709648909000,10],[1709648910000,10],[1709648911000,10],[1709648912000,10],[1709648913000,10],[1709648914000,10],[1709648915000,10],[1709648916000,10],[1709648917000,10],[1709648918000,10],[1709648919000,10],[1709648920000,10],[1709648921000,10],[1709648922000,10],[1709648923000,10],[1709648924000,10],[1709648925000,10],[1709648926000,10],[1709648927000,10],[1709648928000,10],[1709648929000,10],[1709648930000,10],[1709648931000,10],[1709648932000,10],[1709648933000,11],[1709648934000,10],[1709648935000,10],[1709648936000,10],[1709648937000,10],[1709648938000,10],[1709648939000,10],[1709648940000,10],[1709648941000,10],[1709648942000,10],[1709648943000,10],[1709648944000,10],[1709648945000,11],[1709648946000,10],[1709648947000,10],[1709648948000,10],[1709648949000,10],[1709648950000,10],[1709648951000,10],[1709648952000,10],[1709648953000,10],[1709648954000,10],[1709648955000,10],[1709648956000,10],[1709648957000,10],[1709648958000,10],[1709648959000,10],[1709648960000,10],[1709648961000,10],[1709648962000,10],[1709648963000,10],[1709648964000,10],[1709648965000,10],[1709648966000,10],[1709648967000,10],[1709648968000,10],[1709648969000,10],[1709648970000,10],[1709648971000,10],[1709648972000,10],[1709648973000,10],[1709648974000,11],[1709648975000,10],[1709648976000,10],[1709648977000,10],[1709648978000,10],[1709648979000,10],[1709648980000,10],[1709648981000,10],[1709648982000,10],[1709648983000,10],[1709648984000,10],[1709648985000,11],[1709648986000,10],[1709648987000,10],[1709648988000,10],[1709648989000,10],[1709648990000,10],[1709648991000,10],[1709648992000,10],[1709648993000,10],[1709648994000,11],[1709648995000,10],[1709648996000,10],[1709648997000,10],[1709648998000,10],[1709648999000,11],[1709649000000,10]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FFDD00',
name: 'validação HTTP 404',
data: [
[1709648756000,0],[1709648757000,0],[1709648758000,0],[1709648759000,1],[1709648760000,0],[1709648761000,0],[1709648762000,0],[1709648763000,0],[1709648764000,0],[1709648765000,0],[1709648766000,0],[1709648767000,0],[1709648768000,0],[1709648769000,0],[1709648770000,0],[1709648771000,0],[1709648772000,0],[1709648773000,0],[1709648774000,0],[1709648775000,0],[1709648776000,0],[1709648777000,0],[1709648778000,0],[1709648779000,0],[1709648780000,0],[1709648781000,0],[1709648782000,0],[1709648783000,0],[1709648784000,0],[1709648785000,0],[1709648786000,0],[1709648787000,0],[1709648788000,0],[1709648789000,0],[1709648790000,0],[1709648791000,0],[1709648792000,0],[1709648793000,0],[1709648794000,0],[1709648795000,0],[1709648796000,0],[1709648797000,0],[1709648798000,0],[1709648799000,0],[1709648800000,0],[1709648801000,0],[1709648802000,0],[1709648803000,0],[1709648804000,0],[1709648805000,0],[1709648806000,0],[1709648807000,0],[1709648808000,0],[1709648809000,0],[1709648810000,0],[1709648811000,0],[1709648812000,0],[1709648813000,0],[1709648814000,0],[1709648815000,0],[1709648816000,0],[1709648817000,0],[1709648818000,0],[1709648819000,0],[1709648820000,0],[1709648821000,0],[1709648822000,0],[1709648823000,0],[1709648824000,0],[1709648825000,0],[1709648826000,0],[1709648827000,0],[1709648828000,0],[1709648829000,0],[1709648830000,0],[1709648831000,0],[1709648832000,0],[1709648833000,0],[1709648834000,0],[1709648835000,0],[1709648836000,0],[1709648837000,0],[1709648838000,0],[1709648839000,0],[1709648840000,0],[1709648841000,0],[1709648842000,0],[1709648843000,0],[1709648844000,0],[1709648845000,0],[1709648846000,0],[1709648847000,0],[1709648848000,0],[1709648849000,0],[1709648850000,0],[1709648851000,0],[1709648852000,0],[1709648853000,0],[1709648854000,0],[1709648855000,0],[1709648856000,0],[1709648857000,0],[1709648858000,0],[1709648859000,0],[1709648860000,0],[1709648861000,0],[1709648862000,0],[1709648863000,0],[1709648864000,0],[1709648865000,0],[1709648866000,0],[1709648867000,0],[1709648868000,0],[1709648869000,0],[1709648870000,0],[1709648871000,0],[1709648872000,0],[1709648873000,0],[1709648874000,0],[1709648875000,0],[1709648876000,0],[1709648877000,0],[1709648878000,0],[1709648879000,0],[1709648880000,0],[1709648881000,0],[1709648882000,0],[1709648883000,0],[1709648884000,0],[1709648885000,0],[1709648886000,0],[1709648887000,0],[1709648888000,0],[1709648889000,0],[1709648890000,0],[1709648891000,0],[1709648892000,0],[1709648893000,0],[1709648894000,0],[1709648895000,0],[1709648896000,0],[1709648897000,0],[1709648898000,0],[1709648899000,0],[1709648900000,0],[1709648901000,0],[1709648902000,0],[1709648903000,0],[1709648904000,0],[1709648905000,0],[1709648906000,0],[1709648907000,0],[1709648908000,0],[1709648909000,0],[1709648910000,0],[1709648911000,0],[1709648912000,0],[1709648913000,0],[1709648914000,0],[1709648915000,0],[1709648916000,0],[1709648917000,0],[1709648918000,0],[1709648919000,0],[1709648920000,0],[1709648921000,0],[1709648922000,0],[1709648923000,0],[1709648924000,0],[1709648925000,0],[1709648926000,0],[1709648927000,0],[1709648928000,0],[1709648929000,0],[1709648930000,0],[1709648931000,0],[1709648932000,0],[1709648933000,0],[1709648934000,0],[1709648935000,0],[1709648936000,0],[1709648937000,0],[1709648938000,0],[1709648939000,0],[1709648940000,0],[1709648941000,0],[1709648942000,0],[1709648943000,0],[1709648944000,0],[1709648945000,0],[1709648946000,0],[1709648947000,0],[1709648948000,0],[1709648949000,0],[1709648950000,0],[1709648951000,0],[1709648952000,0],[1709648953000,0],[1709648954000,0],[1709648955000,0],[1709648956000,0],[1709648957000,0],[1709648958000,0],[1709648959000,0],[1709648960000,0],[1709648961000,0],[1709648962000,0],[1709648963000,0],[1709648964000,0],[1709648965000,0],[1709648966000,0],[1709648967000,0],[1709648968000,0],[1709648969000,0],[1709648970000,0],[1709648971000,0],[1709648972000,0],[1709648973000,0],[1709648974000,0],[1709648975000,0],[1709648976000,0],[1709648977000,0],[1709648978000,0],[1709648979000,0],[1709648980000,0],[1709648981000,0],[1709648982000,0],[1709648983000,0],[1709648984000,0],[1709648985000,0],[1709648986000,0],[1709648987000,0],[1709648988000,0],[1709648989000,0],[1709648990000,0],[1709648991000,0],[1709648992000,0],[1709648993000,0],[1709648994000,0],[1709648995000,0],[1709648996000,0],[1709648997000,0],[1709648998000,0],[1709648999000,0],[1709649000000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00D5FF',
name: 'validações',
data: [
[1709648756000,0],[1709648757000,0],[1709648758000,0],[1709648759000,5],[1709648760000,5],[1709648761000,0],[1709648762000,0],[1709648763000,0],[1709648764000,0],[1709648765000,0],[1709648766000,0],[1709648767000,0],[1709648768000,0],[1709648769000,0],[1709648770000,0],[1709648771000,0],[1709648772000,0],[1709648773000,0],[1709648774000,0],[1709648775000,0],[1709648776000,0],[1709648777000,0],[1709648778000,0],[1709648779000,0],[1709648780000,0],[1709648781000,0],[1709648782000,0],[1709648783000,0],[1709648784000,0],[1709648785000,0],[1709648786000,0],[1709648787000,0],[1709648788000,0],[1709648789000,0],[1709648790000,0],[1709648791000,0],[1709648792000,0],[1709648793000,0],[1709648794000,0],[1709648795000,0],[1709648796000,0],[1709648797000,0],[1709648798000,0],[1709648799000,0],[1709648800000,0],[1709648801000,0],[1709648802000,0],[1709648803000,0],[1709648804000,0],[1709648805000,0],[1709648806000,0],[1709648807000,0],[1709648808000,0],[1709648809000,0],[1709648810000,0],[1709648811000,0],[1709648812000,0],[1709648813000,0],[1709648814000,0],[1709648815000,0],[1709648816000,0],[1709648817000,0],[1709648818000,0],[1709648819000,0],[1709648820000,0],[1709648821000,0],[1709648822000,0],[1709648823000,0],[1709648824000,0],[1709648825000,0],[1709648826000,0],[1709648827000,0],[1709648828000,0],[1709648829000,0],[1709648830000,0],[1709648831000,0],[1709648832000,0],[1709648833000,0],[1709648834000,0],[1709648835000,0],[1709648836000,0],[1709648837000,0],[1709648838000,0],[1709648839000,0],[1709648840000,0],[1709648841000,0],[1709648842000,0],[1709648843000,0],[1709648844000,0],[1709648845000,0],[1709648846000,0],[1709648847000,0],[1709648848000,0],[1709648849000,0],[1709648850000,0],[1709648851000,0],[1709648852000,0],[1709648853000,0],[1709648854000,0],[1709648855000,0],[1709648856000,0],[1709648857000,0],[1709648858000,0],[1709648859000,0],[1709648860000,0],[1709648861000,0],[1709648862000,0],[1709648863000,0],[1709648864000,0],[1709648865000,0],[1709648866000,0],[1709648867000,0],[1709648868000,0],[1709648869000,0],[1709648870000,0],[1709648871000,0],[1709648872000,0],[1709648873000,0],[1709648874000,0],[1709648875000,0],[1709648876000,0],[1709648877000,0],[1709648878000,0],[1709648879000,0],[1709648880000,0],[1709648881000,0],[1709648882000,0],[1709648883000,0],[1709648884000,0],[1709648885000,0],[1709648886000,0],[1709648887000,0],[1709648888000,0],[1709648889000,0],[1709648890000,0],[1709648891000,0],[1709648892000,0],[1709648893000,0],[1709648894000,0],[1709648895000,0],[1709648896000,0],[1709648897000,0],[1709648898000,0],[1709648899000,0],[1709648900000,0],[1709648901000,0],[1709648902000,0],[1709648903000,0],[1709648904000,0],[1709648905000,0],[1709648906000,0],[1709648907000,0],[1709648908000,0],[1709648909000,0],[1709648910000,0],[1709648911000,0],[1709648912000,0],[1709648913000,0],[1709648914000,0],[1709648915000,0],[1709648916000,0],[1709648917000,0],[1709648918000,0],[1709648919000,0],[1709648920000,0],[1709648921000,0],[1709648922000,0],[1709648923000,0],[1709648924000,0],[1709648925000,0],[1709648926000,0],[1709648927000,0],[1709648928000,0],[1709648929000,0],[1709648930000,0],[1709648931000,0],[1709648932000,0],[1709648933000,0],[1709648934000,0],[1709648935000,0],[1709648936000,0],[1709648937000,0],[1709648938000,0],[1709648939000,0],[1709648940000,0],[1709648941000,0],[1709648942000,0],[1709648943000,0],[1709648944000,0],[1709648945000,0],[1709648946000,0],[1709648947000,0],[1709648948000,0],[1709648949000,0],[1709648950000,0],[1709648951000,0],[1709648952000,0],[1709648953000,0],[1709648954000,0],[1709648955000,0],[1709648956000,0],[1709648957000,0],[1709648958000,0],[1709648959000,0],[1709648960000,0],[1709648961000,0],[1709648962000,0],[1709648963000,0],[1709648964000,0],[1709648965000,0],[1709648966000,0],[1709648967000,0],[1709648968000,0],[1709648969000,0],[1709648970000,0],[1709648971000,0],[1709648972000,0],[1709648973000,0],[1709648974000,0],[1709648975000,0],[1709648976000,0],[1709648977000,0],[1709648978000,0],[1709648979000,0],[1709648980000,0],[1709648981000,0],[1709648982000,0],[1709648983000,0],[1709648984000,0],[1709648985000,0],[1709648986000,0],[1709648987000,0],[1709648988000,0],[1709648989000,0],[1709648990000,0],[1709648991000,0],[1709648992000,0],[1709648993000,0],[1709648994000,0],[1709648995000,0],[1709648996000,0],[1709648997000,0],[1709648998000,0],[1709648999000,0],[1709649000000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00FF00',
name: 'validação concorrência saldo - 0',
data: [
[1709648756000,0],[1709648757000,0],[1709648758000,1],[1709648759000,0],[1709648760000,0],[1709648761000,0],[1709648762000,0],[1709648763000,0],[1709648764000,0],[1709648765000,0],[1709648766000,0],[1709648767000,0],[1709648768000,0],[1709648769000,0],[1709648770000,0],[1709648771000,0],[1709648772000,0],[1709648773000,0],[1709648774000,0],[1709648775000,0],[1709648776000,0],[1709648777000,0],[1709648778000,0],[1709648779000,0],[1709648780000,0],[1709648781000,0],[1709648782000,0],[1709648783000,0],[1709648784000,0],[1709648785000,0],[1709648786000,0],[1709648787000,0],[1709648788000,0],[1709648789000,0],[1709648790000,0],[1709648791000,0],[1709648792000,0],[1709648793000,0],[1709648794000,0],[1709648795000,0],[1709648796000,0],[1709648797000,0],[1709648798000,0],[1709648799000,0],[1709648800000,0],[1709648801000,0],[1709648802000,0],[1709648803000,0],[1709648804000,0],[1709648805000,0],[1709648806000,0],[1709648807000,0],[1709648808000,0],[1709648809000,0],[1709648810000,0],[1709648811000,0],[1709648812000,0],[1709648813000,0],[1709648814000,0],[1709648815000,0],[1709648816000,0],[1709648817000,0],[1709648818000,0],[1709648819000,0],[1709648820000,0],[1709648821000,0],[1709648822000,0],[1709648823000,0],[1709648824000,0],[1709648825000,0],[1709648826000,0],[1709648827000,0],[1709648828000,0],[1709648829000,0],[1709648830000,0],[1709648831000,0],[1709648832000,0],[1709648833000,0],[1709648834000,0],[1709648835000,0],[1709648836000,0],[1709648837000,0],[1709648838000,0],[1709648839000,0],[1709648840000,0],[1709648841000,0],[1709648842000,0],[1709648843000,0],[1709648844000,0],[1709648845000,0],[1709648846000,0],[1709648847000,0],[1709648848000,0],[1709648849000,0],[1709648850000,0],[1709648851000,0],[1709648852000,0],[1709648853000,0],[1709648854000,0],[1709648855000,0],[1709648856000,0],[1709648857000,0],[1709648858000,0],[1709648859000,0],[1709648860000,0],[1709648861000,0],[1709648862000,0],[1709648863000,0],[1709648864000,0],[1709648865000,0],[1709648866000,0],[1709648867000,0],[1709648868000,0],[1709648869000,0],[1709648870000,0],[1709648871000,0],[1709648872000,0],[1709648873000,0],[1709648874000,0],[1709648875000,0],[1709648876000,0],[1709648877000,0],[1709648878000,0],[1709648879000,0],[1709648880000,0],[1709648881000,0],[1709648882000,0],[1709648883000,0],[1709648884000,0],[1709648885000,0],[1709648886000,0],[1709648887000,0],[1709648888000,0],[1709648889000,0],[1709648890000,0],[1709648891000,0],[1709648892000,0],[1709648893000,0],[1709648894000,0],[1709648895000,0],[1709648896000,0],[1709648897000,0],[1709648898000,0],[1709648899000,0],[1709648900000,0],[1709648901000,0],[1709648902000,0],[1709648903000,0],[1709648904000,0],[1709648905000,0],[1709648906000,0],[1709648907000,0],[1709648908000,0],[1709648909000,0],[1709648910000,0],[1709648911000,0],[1709648912000,0],[1709648913000,0],[1709648914000,0],[1709648915000,0],[1709648916000,0],[1709648917000,0],[1709648918000,0],[1709648919000,0],[1709648920000,0],[1709648921000,0],[1709648922000,0],[1709648923000,0],[1709648924000,0],[1709648925000,0],[1709648926000,0],[1709648927000,0],[1709648928000,0],[1709648929000,0],[1709648930000,0],[1709648931000,0],[1709648932000,0],[1709648933000,0],[1709648934000,0],[1709648935000,0],[1709648936000,0],[1709648937000,0],[1709648938000,0],[1709648939000,0],[1709648940000,0],[1709648941000,0],[1709648942000,0],[1709648943000,0],[1709648944000,0],[1709648945000,0],[1709648946000,0],[1709648947000,0],[1709648948000,0],[1709648949000,0],[1709648950000,0],[1709648951000,0],[1709648952000,0],[1709648953000,0],[1709648954000,0],[1709648955000,0],[1709648956000,0],[1709648957000,0],[1709648958000,0],[1709648959000,0],[1709648960000,0],[1709648961000,0],[1709648962000,0],[1709648963000,0],[1709648964000,0],[1709648965000,0],[1709648966000,0],[1709648967000,0],[1709648968000,0],[1709648969000,0],[1709648970000,0],[1709648971000,0],[1709648972000,0],[1709648973000,0],[1709648974000,0],[1709648975000,0],[1709648976000,0],[1709648977000,0],[1709648978000,0],[1709648979000,0],[1709648980000,0],[1709648981000,0],[1709648982000,0],[1709648983000,0],[1709648984000,0],[1709648985000,0],[1709648986000,0],[1709648987000,0],[1709648988000,0],[1709648989000,0],[1709648990000,0],[1709648991000,0],[1709648992000,0],[1709648993000,0],[1709648994000,0],[1709648995000,0],[1709648996000,0],[1709648997000,0],[1709648998000,0],[1709648999000,0],[1709649000000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#9D00FF',
name: 'validação concorrência transações - c',
data: [
[1709648756000,0],[1709648757000,25],[1709648758000,23],[1709648759000,0],[1709648760000,0],[1709648761000,0],[1709648762000,0],[1709648763000,0],[1709648764000,0],[1709648765000,0],[1709648766000,0],[1709648767000,0],[1709648768000,0],[1709648769000,0],[1709648770000,0],[1709648771000,0],[1709648772000,0],[1709648773000,0],[1709648774000,0],[1709648775000,0],[1709648776000,0],[1709648777000,0],[1709648778000,0],[1709648779000,0],[1709648780000,0],[1709648781000,0],[1709648782000,0],[1709648783000,0],[1709648784000,0],[1709648785000,0],[1709648786000,0],[1709648787000,0],[1709648788000,0],[1709648789000,0],[1709648790000,0],[1709648791000,0],[1709648792000,0],[1709648793000,0],[1709648794000,0],[1709648795000,0],[1709648796000,0],[1709648797000,0],[1709648798000,0],[1709648799000,0],[1709648800000,0],[1709648801000,0],[1709648802000,0],[1709648803000,0],[1709648804000,0],[1709648805000,0],[1709648806000,0],[1709648807000,0],[1709648808000,0],[1709648809000,0],[1709648810000,0],[1709648811000,0],[1709648812000,0],[1709648813000,0],[1709648814000,0],[1709648815000,0],[1709648816000,0],[1709648817000,0],[1709648818000,0],[1709648819000,0],[1709648820000,0],[1709648821000,0],[1709648822000,0],[1709648823000,0],[1709648824000,0],[1709648825000,0],[1709648826000,0],[1709648827000,0],[1709648828000,0],[1709648829000,0],[1709648830000,0],[1709648831000,0],[1709648832000,0],[1709648833000,0],[1709648834000,0],[1709648835000,0],[1709648836000,0],[1709648837000,0],[1709648838000,0],[1709648839000,0],[1709648840000,0],[1709648841000,0],[1709648842000,0],[1709648843000,0],[1709648844000,0],[1709648845000,0],[1709648846000,0],[1709648847000,0],[1709648848000,0],[1709648849000,0],[1709648850000,0],[1709648851000,0],[1709648852000,0],[1709648853000,0],[1709648854000,0],[1709648855000,0],[1709648856000,0],[1709648857000,0],[1709648858000,0],[1709648859000,0],[1709648860000,0],[1709648861000,0],[1709648862000,0],[1709648863000,0],[1709648864000,0],[1709648865000,0],[1709648866000,0],[1709648867000,0],[1709648868000,0],[1709648869000,0],[1709648870000,0],[1709648871000,0],[1709648872000,0],[1709648873000,0],[1709648874000,0],[1709648875000,0],[1709648876000,0],[1709648877000,0],[1709648878000,0],[1709648879000,0],[1709648880000,0],[1709648881000,0],[1709648882000,0],[1709648883000,0],[1709648884000,0],[1709648885000,0],[1709648886000,0],[1709648887000,0],[1709648888000,0],[1709648889000,0],[1709648890000,0],[1709648891000,0],[1709648892000,0],[1709648893000,0],[1709648894000,0],[1709648895000,0],[1709648896000,0],[1709648897000,0],[1709648898000,0],[1709648899000,0],[1709648900000,0],[1709648901000,0],[1709648902000,0],[1709648903000,0],[1709648904000,0],[1709648905000,0],[1709648906000,0],[1709648907000,0],[1709648908000,0],[1709648909000,0],[1709648910000,0],[1709648911000,0],[1709648912000,0],[1709648913000,0],[1709648914000,0],[1709648915000,0],[1709648916000,0],[1709648917000,0],[1709648918000,0],[1709648919000,0],[1709648920000,0],[1709648921000,0],[1709648922000,0],[1709648923000,0],[1709648924000,0],[1709648925000,0],[1709648926000,0],[1709648927000,0],[1709648928000,0],[1709648929000,0],[1709648930000,0],[1709648931000,0],[1709648932000,0],[1709648933000,0],[1709648934000,0],[1709648935000,0],[1709648936000,0],[1709648937000,0],[1709648938000,0],[1709648939000,0],[1709648940000,0],[1709648941000,0],[1709648942000,0],[1709648943000,0],[1709648944000,0],[1709648945000,0],[1709648946000,0],[1709648947000,0],[1709648948000,0],[1709648949000,0],[1709648950000,0],[1709648951000,0],[1709648952000,0],[1709648953000,0],[1709648954000,0],[1709648955000,0],[1709648956000,0],[1709648957000,0],[1709648958000,0],[1709648959000,0],[1709648960000,0],[1709648961000,0],[1709648962000,0],[1709648963000,0],[1709648964000,0],[1709648965000,0],[1709648966000,0],[1709648967000,0],[1709648968000,0],[1709648969000,0],[1709648970000,0],[1709648971000,0],[1709648972000,0],[1709648973000,0],[1709648974000,0],[1709648975000,0],[1709648976000,0],[1709648977000,0],[1709648978000,0],[1709648979000,0],[1709648980000,0],[1709648981000,0],[1709648982000,0],[1709648983000,0],[1709648984000,0],[1709648985000,0],[1709648986000,0],[1709648987000,0],[1709648988000,0],[1709648989000,0],[1709648990000,0],[1709648991000,0],[1709648992000,0],[1709648993000,0],[1709648994000,0],[1709648995000,0],[1709648996000,0],[1709648997000,0],[1709648998000,0],[1709648999000,0],[1709649000000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FF00E1',
name: 'validação concorrência saldo - -25',
data: [
[1709648756000,1],[1709648757000,1],[1709648758000,0],[1709648759000,0],[1709648760000,0],[1709648761000,0],[1709648762000,0],[1709648763000,0],[1709648764000,0],[1709648765000,0],[1709648766000,0],[1709648767000,0],[1709648768000,0],[1709648769000,0],[1709648770000,0],[1709648771000,0],[1709648772000,0],[1709648773000,0],[1709648774000,0],[1709648775000,0],[1709648776000,0],[1709648777000,0],[1709648778000,0],[1709648779000,0],[1709648780000,0],[1709648781000,0],[1709648782000,0],[1709648783000,0],[1709648784000,0],[1709648785000,0],[1709648786000,0],[1709648787000,0],[1709648788000,0],[1709648789000,0],[1709648790000,0],[1709648791000,0],[1709648792000,0],[1709648793000,0],[1709648794000,0],[1709648795000,0],[1709648796000,0],[1709648797000,0],[1709648798000,0],[1709648799000,0],[1709648800000,0],[1709648801000,0],[1709648802000,0],[1709648803000,0],[1709648804000,0],[1709648805000,0],[1709648806000,0],[1709648807000,0],[1709648808000,0],[1709648809000,0],[1709648810000,0],[1709648811000,0],[1709648812000,0],[1709648813000,0],[1709648814000,0],[1709648815000,0],[1709648816000,0],[1709648817000,0],[1709648818000,0],[1709648819000,0],[1709648820000,0],[1709648821000,0],[1709648822000,0],[1709648823000,0],[1709648824000,0],[1709648825000,0],[1709648826000,0],[1709648827000,0],[1709648828000,0],[1709648829000,0],[1709648830000,0],[1709648831000,0],[1709648832000,0],[1709648833000,0],[1709648834000,0],[1709648835000,0],[1709648836000,0],[1709648837000,0],[1709648838000,0],[1709648839000,0],[1709648840000,0],[1709648841000,0],[1709648842000,0],[1709648843000,0],[1709648844000,0],[1709648845000,0],[1709648846000,0],[1709648847000,0],[1709648848000,0],[1709648849000,0],[1709648850000,0],[1709648851000,0],[1709648852000,0],[1709648853000,0],[1709648854000,0],[1709648855000,0],[1709648856000,0],[1709648857000,0],[1709648858000,0],[1709648859000,0],[1709648860000,0],[1709648861000,0],[1709648862000,0],[1709648863000,0],[1709648864000,0],[1709648865000,0],[1709648866000,0],[1709648867000,0],[1709648868000,0],[1709648869000,0],[1709648870000,0],[1709648871000,0],[1709648872000,0],[1709648873000,0],[1709648874000,0],[1709648875000,0],[1709648876000,0],[1709648877000,0],[1709648878000,0],[1709648879000,0],[1709648880000,0],[1709648881000,0],[1709648882000,0],[1709648883000,0],[1709648884000,0],[1709648885000,0],[1709648886000,0],[1709648887000,0],[1709648888000,0],[1709648889000,0],[1709648890000,0],[1709648891000,0],[1709648892000,0],[1709648893000,0],[1709648894000,0],[1709648895000,0],[1709648896000,0],[1709648897000,0],[1709648898000,0],[1709648899000,0],[1709648900000,0],[1709648901000,0],[1709648902000,0],[1709648903000,0],[1709648904000,0],[1709648905000,0],[1709648906000,0],[1709648907000,0],[1709648908000,0],[1709648909000,0],[1709648910000,0],[1709648911000,0],[1709648912000,0],[1709648913000,0],[1709648914000,0],[1709648915000,0],[1709648916000,0],[1709648917000,0],[1709648918000,0],[1709648919000,0],[1709648920000,0],[1709648921000,0],[1709648922000,0],[1709648923000,0],[1709648924000,0],[1709648925000,0],[1709648926000,0],[1709648927000,0],[1709648928000,0],[1709648929000,0],[1709648930000,0],[1709648931000,0],[1709648932000,0],[1709648933000,0],[1709648934000,0],[1709648935000,0],[1709648936000,0],[1709648937000,0],[1709648938000,0],[1709648939000,0],[1709648940000,0],[1709648941000,0],[1709648942000,0],[1709648943000,0],[1709648944000,0],[1709648945000,0],[1709648946000,0],[1709648947000,0],[1709648948000,0],[1709648949000,0],[1709648950000,0],[1709648951000,0],[1709648952000,0],[1709648953000,0],[1709648954000,0],[1709648955000,0],[1709648956000,0],[1709648957000,0],[1709648958000,0],[1709648959000,0],[1709648960000,0],[1709648961000,0],[1709648962000,0],[1709648963000,0],[1709648964000,0],[1709648965000,0],[1709648966000,0],[1709648967000,0],[1709648968000,0],[1709648969000,0],[1709648970000,0],[1709648971000,0],[1709648972000,0],[1709648973000,0],[1709648974000,0],[1709648975000,0],[1709648976000,0],[1709648977000,0],[1709648978000,0],[1709648979000,0],[1709648980000,0],[1709648981000,0],[1709648982000,0],[1709648983000,0],[1709648984000,0],[1709648985000,0],[1709648986000,0],[1709648987000,0],[1709648988000,0],[1709648989000,0],[1709648990000,0],[1709648991000,0],[1709648992000,0],[1709648993000,0],[1709648994000,0],[1709648995000,0],[1709648996000,0],[1709648997000,0],[1709648998000,0],[1709648999000,0],[1709649000000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#AECAEB',
name: 'validação concorrência transações - d',
data: [
[1709648756000,25],[1709648757000,0],[1709648758000,0],[1709648759000,0],[1709648760000,0],[1709648761000,0],[1709648762000,0],[1709648763000,0],[1709648764000,0],[1709648765000,0],[1709648766000,0],[1709648767000,0],[1709648768000,0],[1709648769000,0],[1709648770000,0],[1709648771000,0],[1709648772000,0],[1709648773000,0],[1709648774000,0],[1709648775000,0],[1709648776000,0],[1709648777000,0],[1709648778000,0],[1709648779000,0],[1709648780000,0],[1709648781000,0],[1709648782000,0],[1709648783000,0],[1709648784000,0],[1709648785000,0],[1709648786000,0],[1709648787000,0],[1709648788000,0],[1709648789000,0],[1709648790000,0],[1709648791000,0],[1709648792000,0],[1709648793000,0],[1709648794000,0],[1709648795000,0],[1709648796000,0],[1709648797000,0],[1709648798000,0],[1709648799000,0],[1709648800000,0],[1709648801000,0],[1709648802000,0],[1709648803000,0],[1709648804000,0],[1709648805000,0],[1709648806000,0],[1709648807000,0],[1709648808000,0],[1709648809000,0],[1709648810000,0],[1709648811000,0],[1709648812000,0],[1709648813000,0],[1709648814000,0],[1709648815000,0],[1709648816000,0],[1709648817000,0],[1709648818000,0],[1709648819000,0],[1709648820000,0],[1709648821000,0],[1709648822000,0],[1709648823000,0],[1709648824000,0],[1709648825000,0],[1709648826000,0],[1709648827000,0],[1709648828000,0],[1709648829000,0],[1709648830000,0],[1709648831000,0],[1709648832000,0],[1709648833000,0],[1709648834000,0],[1709648835000,0],[1709648836000,0],[1709648837000,0],[1709648838000,0],[1709648839000,0],[1709648840000,0],[1709648841000,0],[1709648842000,0],[1709648843000,0],[1709648844000,0],[1709648845000,0],[1709648846000,0],[1709648847000,0],[1709648848000,0],[1709648849000,0],[1709648850000,0],[1709648851000,0],[1709648852000,0],[1709648853000,0],[1709648854000,0],[1709648855000,0],[1709648856000,0],[1709648857000,0],[1709648858000,0],[1709648859000,0],[1709648860000,0],[1709648861000,0],[1709648862000,0],[1709648863000,0],[1709648864000,0],[1709648865000,0],[1709648866000,0],[1709648867000,0],[1709648868000,0],[1709648869000,0],[1709648870000,0],[1709648871000,0],[1709648872000,0],[1709648873000,0],[1709648874000,0],[1709648875000,0],[1709648876000,0],[1709648877000,0],[1709648878000,0],[1709648879000,0],[1709648880000,0],[1709648881000,0],[1709648882000,0],[1709648883000,0],[1709648884000,0],[1709648885000,0],[1709648886000,0],[1709648887000,0],[1709648888000,0],[1709648889000,0],[1709648890000,0],[1709648891000,0],[1709648892000,0],[1709648893000,0],[1709648894000,0],[1709648895000,0],[1709648896000,0],[1709648897000,0],[1709648898000,0],[1709648899000,0],[1709648900000,0],[1709648901000,0],[1709648902000,0],[1709648903000,0],[1709648904000,0],[1709648905000,0],[1709648906000,0],[1709648907000,0],[1709648908000,0],[1709648909000,0],[1709648910000,0],[1709648911000,0],[1709648912000,0],[1709648913000,0],[1709648914000,0],[1709648915000,0],[1709648916000,0],[1709648917000,0],[1709648918000,0],[1709648919000,0],[1709648920000,0],[1709648921000,0],[1709648922000,0],[1709648923000,0],[1709648924000,0],[1709648925000,0],[1709648926000,0],[1709648927000,0],[1709648928000,0],[1709648929000,0],[1709648930000,0],[1709648931000,0],[1709648932000,0],[1709648933000,0],[1709648934000,0],[1709648935000,0],[1709648936000,0],[1709648937000,0],[1709648938000,0],[1709648939000,0],[1709648940000,0],[1709648941000,0],[1709648942000,0],[1709648943000,0],[1709648944000,0],[1709648945000,0],[1709648946000,0],[1709648947000,0],[1709648948000,0],[1709648949000,0],[1709648950000,0],[1709648951000,0],[1709648952000,0],[1709648953000,0],[1709648954000,0],[1709648955000,0],[1709648956000,0],[1709648957000,0],[1709648958000,0],[1709648959000,0],[1709648960000,0],[1709648961000,0],[1709648962000,0],[1709648963000,0],[1709648964000,0],[1709648965000,0],[1709648966000,0],[1709648967000,0],[1709648968000,0],[1709648969000,0],[1709648970000,0],[1709648971000,0],[1709648972000,0],[1709648973000,0],[1709648974000,0],[1709648975000,0],[1709648976000,0],[1709648977000,0],[1709648978000,0],[1709648979000,0],[1709648980000,0],[1709648981000,0],[1709648982000,0],[1709648983000,0],[1709648984000,0],[1709648985000,0],[1709648986000,0],[1709648987000,0],[1709648988000,0],[1709648989000,0],[1709648990000,0],[1709648991000,0],[1709648992000,0],[1709648993000,0],[1709648994000,0],[1709648995000,0],[1709648996000,0],[1709648997000,0],[1709648998000,0],[1709648999000,0],[1709649000000,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: ['2', '7', '11', '16', '20', '25', '29', '33', '38', '42', '47', '51', '56', '60', '65', '69', '74', '78', '83', '87', '91', '96', '100', '105', '109', '114', '118', '123', '127', '132', '136', '140', '145', '149', '154', '158', '163', '167', '172', '176', '181', '185', '190', '194', '198', '203', '207', '212', '216', '221', '225', '230', '234', '239', '243', '248', '252', '256', '261', '265', '270', '274', '279', '283', '288', '292', '297', '301', '306', '310', '314', '319', '323', '328', '332', '337', '341', '346', '350', '355', '359', '363', '368', '372', '377', '381', '386', '390', '395', '399', '404', '408', '413', '417', '421', '426', '430', '435', '439', '444'],
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: [
44.95,44.36,6.7,1.92,1.01,0.38,0.2,0.09,0.05,0.02,0.03,0.01,0.01,0.01,0.01,0.01,0.0,0.02,0.0,0.01,0.0,0.0,0.0,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
],
tooltip: { yDecimals: 0, ySuffix: 'ms' }
},
{
type: 'column',
color: '#f15b4f',
name: 'KO',
data: [
0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
],
tooltip: { yDecimals: 0, ySuffix: 'ms' }
}
]
});
responsetimeDistributionChart.setTitle({
text: '<span class="chart_title">Response Time Distribution</span>',
useHTML: true
});
var responsetimepercentilesovertimeokPercentiles = unpack([[1709648756,[49,75,171,181,184,185,189,194,195,196]],[1709648757,null],[1709648758,[10,22,29,50,53,54,55,57,59,60]],[1709648759,null],[1709648760,[1,3,7,11,14,17,23,28,36,37]],[1709648761,[3,6,10,10,10,10,10,10,10,11]],[1709648762,[4,6,7,8,8,8,8,8,8,9]],[1709648763,[4,6,7,7,7,7,8,8,8,8]],[1709648764,[3,5,6,6,7,7,7,7,7,8]],[1709648765,[4,5,6,7,7,8,8,9,9,9]],[1709648766,[2,5,6,7,7,7,8,8,9,10]],[1709648767,[3,5,5,6,6,6,6,6,6,7]],[1709648768,[2,5,5,6,6,6,7,8,11,12]],[1709648769,[3,5,6,7,8,8,9,11,12,13]],[1709648770,[3,5,5,6,6,7,8,8,8,9]],[1709648771,[2,5,6,7,8,9,10,10,12,13]],[1709648772,[3,5,5,7,7,9,10,13,17,19]],[1709648773,[2,5,5,6,6,7,7,10,19,20]],[1709648774,[1,4,5,7,8,8,9,9,12,14]],[1709648775,[1,4,5,6,6,6,7,7,13,17]],[1709648776,[1,4,5,5,6,7,7,8,10,11]],[1709648777,[1,4,5,5,6,6,8,8,11,12]],[1709648778,[1,4,4,7,220,268,333,384,427,446]],[1709648779,[1,4,5,10,15,28,73,124,171,179]],[1709648780,[1,4,5,7,7,8,9,11,12,13]],[1709648781,[1,4,5,6,6,6,9,12,13,14]],[1709648782,[1,4,5,5,5,6,6,7,10,11]],[1709648783,[1,4,5,6,7,7,7,8,8,8]],[1709648784,[1,4,5,6,7,7,7,10,17,18]],[1709648785,[1,4,5,7,7,7,8,12,17,20]],[1709648786,[1,5,6,7,8,10,19,60,110,112]],[1709648787,[1,4,4,6,6,7,7,8,11,16]],[1709648788,[1,4,5,7,7,7,8,10,12,13]],[1709648789,[1,4,5,5,5,6,6,7,12,12]],[1709648790,[1,4,5,5,6,7,7,9,14,20]],[1709648791,[0,4,5,6,6,7,7,8,16,18]],[1709648792,[1,4,5,6,7,8,8,9,13,20]],[1709648793,[1,3,5,6,7,8,10,17,22,23]],[1709648794,[1,4,5,6,7,7,8,8,16,16]],[1709648795,[1,4,5,6,7,7,8,9,10,17]],[1709648796,[1,4,6,7,7,8,9,11,23,26]],[1709648797,[0,2,5,6,7,7,7,9,13,15]],[1709648798,[1,3,5,5,6,6,7,9,13,17]],[1709648799,[1,4,5,6,6,7,8,10,13,20]],[1709648800,[0,4,5,6,6,7,7,9,11,12]],[1709648801,[1,4,5,6,6,7,7,8,21,27]],[1709648802,[0,3,4,5,5,5,6,7,13,15]],[1709648803,[0,3,4,5,5,6,6,8,16,21]],[1709648804,[1,4,4,6,6,9,11,23,67,71]],[1709648805,[0,3,4,5,6,6,7,9,15,21]],[1709648806,[0,4,5,6,7,7,9,13,19,20]],[1709648807,[0,3,4,6,6,7,7,8,13,14]],[1709648808,[0,4,5,6,7,7,8,10,13,16]],[1709648809,[1,4,4,6,6,7,7,8,14,18]],[1709648810,[1,3,4,6,6,7,7,10,11,13]],[1709648811,[1,4,5,6,6,6,7,7,14,17]],[1709648812,[0,1,4,5,5,6,6,6,7,8]],[1709648813,[0,3,4,5,5,5,6,7,8,8]],[1709648814,[0,3,4,5,5,5,6,6,8,10]],[1709648815,[0,4,4,6,6,6,7,12,16,17]],[1709648816,[0,3,4,6,6,7,9,11,16,19]],[1709648817,[1,3,4,6,6,7,8,12,19,27]],[1709648818,[1,4,5,7,8,8,12,95,117,124]],[1709648819,[1,4,5,7,7,7,10,17,41,57]],[1709648820,[1,3,4,6,6,6,7,9,13,15]],[1709648821,[1,3,4,5,5,6,6,7,8,8]],[1709648822,[0,3,4,5,6,7,8,14,20,23]],[1709648823,[0,3,4,5,5,6,6,7,14,15]],[1709648824,[0,3,4,6,6,7,8,12,20,24]],[1709648825,[1,4,4,6,7,8,9,12,15,16]],[1709648826,[1,3,4,5,5,5,6,7,8,13]],[1709648827,[1,3,4,5,5,6,6,6,9,10]],[1709648828,[1,2,4,6,7,8,14,20,27,42]],[1709648829,[1,3,5,6,6,7,8,10,12,12]],[1709648830,[0,2,4,6,7,7,8,11,19,27]],[1709648831,[0,3,4,5,6,6,9,13,20,22]],[1709648832,[1,3,5,6,7,8,9,11,29,41]],[1709648833,[1,4,5,6,7,7,8,9,12,14]],[1709648834,[0,4,4,5,6,7,8,11,19,22]],[1709648835,[1,3,5,6,7,8,10,12,18,20]],[1709648836,[1,2,4,6,6,7,8,10,16,18]],[1709648837,[1,3,4,5,6,7,8,10,17,23]],[1709648838,[1,3,4,6,6,6,8,12,14,16]],[1709648839,[1,4,5,6,7,7,8,9,12,16]],[1709648840,[0,3,5,7,8,9,11,13,21,31]],[1709648841,[0,3,4,5,5,6,7,10,22,27]],[1709648842,[0,3,4,6,6,6,7,9,11,18]],[1709648843,[0,4,6,7,7,8,9,12,17,20]],[1709648844,[1,4,4,6,7,9,11,18,25,30]],[1709648845,[1,4,4,5,5,6,6,8,12,14]],[1709648846,[0,3,4,5,6,6,8,9,14,18]],[1709648847,[0,3,4,5,5,6,6,8,12,16]],[1709648848,[0,3,4,5,6,6,7,10,24,28]],[1709648849,[0,3,4,6,6,8,10,13,24,28]],[1709648850,[0,3,4,5,6,6,8,21,68,76]],[1709648851,[0,3,4,6,6,7,7,8,14,17]],[1709648852,[0,3,4,5,6,6,6,7,17,21]],[1709648853,[0,3,4,6,6,7,7,9,13,17]],[1709648854,[1,4,5,6,7,7,9,12,17,23]],[1709648855,[1,4,4,5,6,6,7,10,17,21]],[1709648856,[1,4,5,6,6,7,9,12,18,22]],[1709648857,[1,4,4,5,6,6,7,7,14,20]],[1709648858,[0,3,4,5,6,6,6,7,10,12]],[1709648859,[0,3,4,5,6,8,14,20,27,30]],[1709648860,[0,4,4,6,6,6,7,15,27,27]],[1709648861,[0,4,5,6,7,9,13,17,22,24]],[1709648862,[0,3,4,5,6,6,7,10,16,20]],[1709648863,[1,3,5,6,6,7,11,16,22,32]],[1709648864,[1,4,5,6,7,7,8,10,19,24]],[1709648865,[0,4,5,6,6,7,8,9,13,18]],[1709648866,[0,3,4,5,6,7,8,12,26,30]],[1709648867,[1,4,5,6,6,7,10,12,24,28]],[1709648868,[0,3,4,6,6,6,7,9,14,18]],[1709648869,[0,3,5,6,6,7,7,9,12,16]],[1709648870,[1,3,5,7,7,8,10,11,17,18]],[1709648871,[1,4,5,7,7,8,9,11,16,17]],[1709648872,[1,4,5,6,7,8,9,16,20,26]],[1709648873,[0,4,5,6,6,7,8,10,12,16]],[1709648874,[0,4,5,6,6,7,9,14,23,34]],[1709648875,[1,4,5,6,6,7,7,8,9,12]],[1709648876,[0,3,5,6,7,7,9,13,22,30]],[1709648877,[0,4,5,7,9,12,14,17,26,39]],[1709648878,[1,4,5,6,7,7,9,12,23,31]],[1709648879,[1,3,5,6,6,6,7,8,13,14]],[1709648880,[1,4,5,7,8,10,13,19,31,37]],[1709648881,[0,4,5,6,7,7,8,11,21,24]],[1709648882,[1,4,5,7,7,8,10,13,19,19]],[1709648883,[0,3,5,6,6,7,10,15,29,49]],[1709648884,[1,4,5,6,6,7,8,9,20,23]],[1709648885,[0,4,5,7,9,12,15,32,87,97]],[1709648886,[1,4,5,6,6,7,7,9,16,21]],[1709648887,[0,4,5,6,7,7,9,10,12,21]],[1709648888,[0,4,5,6,6,7,7,8,12,14]],[1709648889,[0,4,5,6,7,7,8,9,15,18]],[1709648890,[0,3,5,6,6,6,6,7,8,9]],[1709648891,[0,1,4,6,6,6,7,12,23,29]],[1709648892,[0,4,5,6,6,7,8,10,17,19]],[1709648893,[0,4,5,7,8,9,12,15,25,32]],[1709648894,[0,1,5,6,6,6,7,9,14,17]],[1709648895,[0,4,5,7,7,7,8,11,16,18]],[1709648896,[0,4,5,6,7,7,9,14,24,28]],[1709648897,[0,3,5,6,6,7,9,13,30,36]],[1709648898,[0,4,5,6,7,7,8,9,11,17]],[1709648899,[1,4,5,7,8,8,10,11,14,21]],[1709648900,[1,2,5,7,7,8,8,10,14,17]],[1709648901,[1,4,6,7,8,9,11,15,21,27]],[1709648902,[1,4,5,7,7,7,8,9,15,19]],[1709648903,[0,3,5,7,7,8,12,17,33,35]],[1709648904,[0,1,4,6,6,7,7,9,12,15]],[1709648905,[0,3,5,6,7,7,8,11,27,35]],[1709648906,[0,3,5,6,7,7,10,13,20,27]],[1709648907,[0,3,5,6,7,10,19,42,92,130]],[1709648908,[0,3,5,6,6,7,7,8,12,16]],[1709648909,[0,3,5,6,7,7,8,12,24,35]],[1709648910,[0,4,5,7,7,9,12,19,30,38]],[1709648911,[1,4,5,7,8,9,12,16,23,29]],[1709648912,[1,4,5,6,7,7,8,13,19,21]],[1709648913,[1,4,5,6,6,7,7,9,15,20]],[1709648914,[1,4,5,6,7,8,10,13,21,26]],[1709648915,[1,4,5,6,6,7,7,8,12,16]],[1709648916,[1,4,5,6,6,7,7,8,10,11]],[1709648917,[1,4,5,7,8,9,11,16,21,22]],[1709648918,[1,4,5,6,6,6,7,9,15,19]],[1709648919,[1,4,5,7,8,8,11,13,17,21]],[1709648920,[1,4,6,7,8,8,9,11,20,26]],[1709648921,[1,4,5,7,7,8,10,13,19,20]],[1709648922,[1,4,5,7,8,9,12,45,104,115]],[1709648923,[0,1,5,7,7,8,10,14,21,27]],[1709648924,[0,1,4,6,7,8,10,13,19,24]],[1709648925,[1,4,5,7,7,8,10,14,18,21]],[1709648926,[0,3,5,8,8,9,11,14,27,34]],[1709648927,[0,0,4,6,6,7,8,10,16,20]],[1709648928,[0,3,5,6,7,8,12,16,23,37]],[1709648929,[1,2,5,7,7,8,10,14,23,31]],[1709648930,[1,3,5,7,8,10,12,16,21,25]],[1709648931,[1,2,5,7,7,8,9,10,15,21]],[1709648932,[1,1,5,6,7,7,8,9,14,20]],[1709648933,[1,4,5,7,7,8,8,10,14,16]],[1709648934,[1,4,5,8,8,9,11,14,19,23]],[1709648935,[0,3,5,6,7,7,8,9,12,15]],[1709648936,[0,2,5,7,8,9,12,22,33,47]],[1709648937,[0,3,5,7,7,8,10,12,19,22]],[1709648938,[0,3,5,7,8,9,13,16,22,29]],[1709648939,[1,1,5,6,7,8,10,12,21,31]],[1709648940,[0,1,5,6,7,9,11,80,122,130]],[1709648941,[0,1,4,6,6,7,7,9,13,19]],[1709648942,[0,4,5,7,9,11,13,17,27,32]],[1709648943,[1,4,5,7,7,8,10,13,19,29]],[1709648944,[0,1,5,6,6,7,8,10,17,22]],[1709648945,[0,3,5,7,7,8,10,16,23,26]],[1709648946,[0,3,5,7,7,8,9,11,16,22]],[1709648947,[1,3,5,7,7,8,9,12,15,18]],[1709648948,[1,1,5,7,8,10,11,14,18,28]],[1709648949,[0,4,5,7,8,9,11,16,32,35]],[1709648950,[0,1,4,6,7,8,10,14,19,25]],[1709648951,[0,1,4,5,6,6,8,10,11,11]],[1709648952,[0,1,4,6,6,6,8,10,12,15]],[1709648953,[1,4,5,6,7,7,8,11,14,20]],[1709648954,[0,1,5,6,7,8,11,21,31,37]],[1709648955,[0,1,4,6,6,6,7,10,13,19]],[1709648956,[0,3,5,6,7,8,11,14,21,24]],[1709648957,[0,1,4,6,6,7,8,10,16,22]],[1709648958,[1,1,5,6,7,7,8,11,13,17]],[1709648959,[1,4,6,8,9,11,12,18,25,31]],[1709648960,[1,4,6,7,8,9,11,12,18,24]],[1709648961,[0,3,5,7,7,8,10,13,18,25]],[1709648962,[0,3,5,6,7,8,10,13,22,27]],[1709648963,[0,3,4,5,6,7,8,11,14,20]],[1709648964,[0,1,4,6,6,7,9,11,18,19]],[1709648965,[0,4,5,7,7,10,11,15,22,25]],[1709648966,[0,1,5,6,7,8,11,14,39,45]],[1709648967,[0,4,5,6,7,7,10,11,17,19]],[1709648968,[0,3,5,6,7,8,9,11,15,20]],[1709648969,[0,3,5,6,7,7,11,14,18,22]],[1709648970,[0,3,4,6,6,7,9,12,17,21]],[1709648971,[0,1,5,6,7,8,12,13,16,20]],[1709648972,[1,2,5,6,7,7,8,10,14,18]],[1709648973,[0,1,4,6,6,7,8,11,15,17]],[1709648974,[0,1,4,6,6,7,9,12,21,29]],[1709648975,[1,4,5,6,7,7,7,9,12,15]],[1709648976,[1,3,5,7,7,8,12,19,34,41]],[1709648977,[1,1,5,6,6,7,8,12,17,18]],[1709648978,[1,4,5,8,8,10,13,19,26,32]],[1709648979,[0,3,5,6,7,8,12,23,64,68]],[1709648980,[0,1,4,6,6,7,8,14,21,24]],[1709648981,[0,1,4,5,6,6,7,10,13,21]],[1709648982,[1,1,5,6,6,7,7,10,13,16]],[1709648983,[1,3,5,6,6,6,7,9,13,14]],[1709648984,[1,4,5,6,6,7,8,12,19,21]],[1709648985,[1,1,5,6,7,9,12,14,17,19]],[1709648986,[1,3,5,6,6,7,10,14,22,30]],[1709648987,[1,1,4,6,6,7,7,9,13,15]],[1709648988,[1,1,4,6,6,7,8,13,22,27]],[1709648989,[0,3,5,6,6,7,8,10,14,17]],[1709648990,[0,2,5,7,7,8,10,13,26,29]],[1709648991,[0,3,4,6,6,7,13,19,35,39]],[1709648992,[0,0,3,5,5,5,7,11,15,19]],[1709648993,[0,1,4,6,7,9,13,17,25,29]],[1709648994,[0,1,5,6,6,7,8,12,15,28]],[1709648995,[0,2,4,6,6,6,7,8,14,15]],[1709648996,[1,4,5,6,6,7,7,8,14,15]],[1709648997,[0,1,5,6,6,7,8,13,16,21]],[1709648998,[1,4,5,6,6,7,7,8,13,16]],[1709648999,[0,1,4,5,6,6,7,12,15,20]],[1709649000,[0,3,5,6,6,8,10,13,21,27]]]);
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([[1709648756,[25,25,0]],[1709648757,[1,0,1]],[1709648758,[25,25,0]],[1709648759,[1,0,1]],[1709648760,[71,70,1]],[1709648761,[3,3,0]],[1709648762,[6,6,0]],[1709648763,[9,9,0]],[1709648764,[11,11,0]],[1709648765,[13,13,0]],[1709648766,[18,18,0]],[1709648767,[19,19,0]],[1709648768,[24,24,0]],[1709648769,[26,26,0]],[1709648770,[27,27,0]],[1709648771,[32,32,0]],[1709648772,[34,34,0]],[1709648773,[37,37,0]],[1709648774,[39,39,0]],[1709648775,[43,43,0]],[1709648776,[44,44,0]],[1709648777,[48,48,0]],[1709648778,[50,50,0]],[1709648779,[54,54,0]],[1709648780,[57,57,0]],[1709648781,[60,60,0]],[1709648782,[61,61,0]],[1709648783,[65,65,0]],[1709648784,[67,67,0]],[1709648785,[70,70,0]],[1709648786,[74,74,0]],[1709648787,[76,76,0]],[1709648788,[80,80,0]],[1709648789,[81,81,0]],[1709648790,[84,84,0]],[1709648791,[87,87,0]],[1709648792,[91,91,0]],[1709648793,[92,92,0]],[1709648794,[96,96,0]],[1709648795,[98,98,0]],[1709648796,[101,101,0]],[1709648797,[105,105,0]],[1709648798,[107,107,0]],[1709648799,[110,110,0]],[1709648800,[114,114,0]],[1709648801,[115,115,0]],[1709648802,[118,118,0]],[1709648803,[121,121,0]],[1709648804,[124,124,0]],[1709648805,[126,126,0]],[1709648806,[129,129,0]],[1709648807,[133,133,0]],[1709648808,[134,134,0]],[1709648809,[138,138,0]],[1709648810,[141,141,0]],[1709648811,[143,143,0]],[1709648812,[146,146,0]],[1709648813,[149,149,0]],[1709648814,[152,152,0]],[1709648815,[154,154,0]],[1709648816,[158,158,0]],[1709648817,[160,160,0]],[1709648818,[164,164,0]],[1709648819,[165,165,0]],[1709648820,[170,170,0]],[1709648821,[172,172,0]],[1709648822,[173,173,0]],[1709648823,[177,177,0]],[1709648824,[181,181,0]],[1709648825,[183,183,0]],[1709648826,[185,185,0]],[1709648827,[189,189,0]],[1709648828,[191,191,0]],[1709648829,[194,194,0]],[1709648830,[196,196,0]],[1709648831,[200,200,0]],[1709648832,[202,202,0]],[1709648833,[206,206,0]],[1709648834,[207,207,0]],[1709648835,[211,211,0]],[1709648836,[213,213,0]],[1709648837,[217,217,0]],[1709648838,[220,220,0]],[1709648839,[223,223,0]],[1709648840,[224,224,0]],[1709648841,[228,228,0]],[1709648842,[230,230,0]],[1709648843,[234,234,0]],[1709648844,[235,235,0]],[1709648845,[239,239,0]],[1709648846,[242,242,0]],[1709648847,[244,244,0]],[1709648848,[248,248,0]],[1709648849,[251,251,0]],[1709648850,[252,252,0]],[1709648851,[256,256,0]],[1709648852,[259,259,0]],[1709648853,[262,262,0]],[1709648854,[264,264,0]],[1709648855,[267,267,0]],[1709648856,[269,269,0]],[1709648857,[272,272,0]],[1709648858,[275,275,0]],[1709648859,[279,279,0]],[1709648860,[282,282,0]],[1709648861,[284,284,0]],[1709648862,[286,286,0]],[1709648863,[290,290,0]],[1709648864,[291,291,0]],[1709648865,[296,296,0]],[1709648866,[298,298,0]],[1709648867,[300,300,0]],[1709648868,[304,304,0]],[1709648869,[306,306,0]],[1709648870,[309,309,0]],[1709648871,[312,312,0]],[1709648872,[315,315,0]],[1709648873,[317,317,0]],[1709648874,[321,321,0]],[1709648875,[322,322,0]],[1709648876,[327,327,0]],[1709648877,[329,329,0]],[1709648878,[332,332,0]],[1709648879,[335,335,0]],[1709648880,[338,338,0]],[1709648881,[340,340,0]],[1709648882,[340,340,0]],[1709648883,[340,340,0]],[1709648884,[340,340,0]],[1709648885,[339,339,0]],[1709648886,[341,341,0]],[1709648887,[340,340,0]],[1709648888,[340,340,0]],[1709648889,[340,340,0]],[1709648890,[339,339,0]],[1709648891,[340,340,0]],[1709648892,[341,341,0]],[1709648893,[340,340,0]],[1709648894,[339,339,0]],[1709648895,[341,341,0]],[1709648896,[339,339,0]],[1709648897,[341,341,0]],[1709648898,[340,340,0]],[1709648899,[340,340,0]],[1709648900,[340,340,0]],[1709648901,[340,340,0]],[1709648902,[340,340,0]],[1709648903,[339,339,0]],[1709648904,[341,341,0]],[1709648905,[340,340,0]],[1709648906,[340,340,0]],[1709648907,[340,340,0]],[1709648908,[340,340,0]],[1709648909,[339,339,0]],[1709648910,[341,341,0]],[1709648911,[340,340,0]],[1709648912,[340,340,0]],[1709648913,[340,340,0]],[1709648914,[340,340,0]],[1709648915,[340,340,0]],[1709648916,[340,340,0]],[1709648917,[340,340,0]],[1709648918,[340,340,0]],[1709648919,[340,340,0]],[1709648920,[340,340,0]],[1709648921,[340,340,0]],[1709648922,[340,340,0]],[1709648923,[339,339,0]],[1709648924,[341,341,0]],[1709648925,[340,340,0]],[1709648926,[339,339,0]],[1709648927,[340,340,0]],[1709648928,[341,341,0]],[1709648929,[340,340,0]],[1709648930,[340,340,0]],[1709648931,[340,340,0]],[1709648932,[340,340,0]],[1709648933,[340,340,0]],[1709648934,[340,340,0]],[1709648935,[339,339,0]],[1709648936,[341,341,0]],[1709648937,[339,339,0]],[1709648938,[341,341,0]],[1709648939,[340,340,0]],[1709648940,[339,339,0]],[1709648941,[341,341,0]],[1709648942,[340,340,0]],[1709648943,[340,340,0]],[1709648944,[339,339,0]],[1709648945,[341,341,0]],[1709648946,[340,340,0]],[1709648947,[340,340,0]],[1709648948,[340,340,0]],[1709648949,[340,340,0]],[1709648950,[340,340,0]],[1709648951,[339,339,0]],[1709648952,[341,341,0]],[1709648953,[340,340,0]],[1709648954,[339,339,0]],[1709648955,[341,341,0]],[1709648956,[339,339,0]],[1709648957,[341,341,0]],[1709648958,[340,340,0]],[1709648959,[340,340,0]],[1709648960,[340,340,0]],[1709648961,[340,340,0]],[1709648962,[340,340,0]],[1709648963,[339,339,0]],[1709648964,[341,341,0]],[1709648965,[340,340,0]],[1709648966,[339,339,0]],[1709648967,[341,341,0]],[1709648968,[340,340,0]],[1709648969,[340,340,0]],[1709648970,[339,339,0]],[1709648971,[341,341,0]],[1709648972,[340,340,0]],[1709648973,[339,339,0]],[1709648974,[341,341,0]],[1709648975,[340,340,0]],[1709648976,[340,340,0]],[1709648977,[340,340,0]],[1709648978,[340,340,0]],[1709648979,[340,340,0]],[1709648980,[339,339,0]],[1709648981,[341,341,0]],[1709648982,[340,340,0]],[1709648983,[340,340,0]],[1709648984,[340,340,0]],[1709648985,[340,340,0]],[1709648986,[340,340,0]],[1709648987,[340,340,0]],[1709648988,[340,340,0]],[1709648989,[340,340,0]],[1709648990,[340,340,0]],[1709648991,[339,339,0]],[1709648992,[340,340,0]],[1709648993,[341,341,0]],[1709648994,[339,339,0]],[1709648995,[341,341,0]],[1709648996,[340,340,0]],[1709648997,[340,340,0]],[1709648998,[340,340,0]],[1709648999,[339,339,0]],[1709649000,[504,504,0]]]);
var requestsChart = new Highcharts.StockChart({
chart: {
renderTo: 'requests',
zoomType: 'x',
marginBottom: 60
},
credits: { enabled: false },
legend: {
enabled: true,
floating: true,
y: -65,
borderWidth: 0,
itemStyle: { fontWeight: "normal" },
symbolRadius: 0
},
title: { text: 'A title to let highcharts reserve the place for the title set later' },
navigator: {
maskInside: false
},
rangeSelector: {
buttonSpacing: 0,
buttonTheme: {
fill: '#CFC9C6',
padding: 1,
stroke: '#000000',
'stroke-width': 0.25,
style: {
color: '#000000',
fontWeight: 'bold',
},
states: {
stroke: '#000000',
'stroke-width': 0.25,
hover: {
fill: '#92918C',
style: { color: 'black' }
},
select: {
fill: '#FFA900',
style: { color: 'white' }
}
}
},
buttons : [
{
type : 'minute',
count : 1,
text : '1m'
}, {
type : 'minute',
count : 10,
text : '10m'