-
Notifications
You must be signed in to change notification settings - Fork 923
/
Copy pathindex.html
1200 lines (1130 loc) · 92 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-10 18:55:19 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 - jairoandre-maggie">
<span class="simulation-information-label">Description: </span>
<span>Rinha de Backend - 2024/Q1: Crébito - jairoandre-maggie</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">j.n.ConnectException: finishConnect(..) failed: Connection refused<span class="value" style="display:none">0</span></td>
<td class="value error-col-2 total ko">49630</td>
<td class="value error-col-3 total ko">93.282 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">j.i.IOException: Premature close<span class="value" style="display:none">1</span></td>
<td class="value error-col-2 total ko">3574</td>
<td class="value error-col-3 total ko">6.718 %</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: [
[1710096919000,0],[1710096920000,0],[1710096921000,0],[1710096922000,0],[1710096923000,1],[1710096924000,1],[1710096925000,2],[1710096926000,4],[1710096927000,4],[1710096928000,5],[1710096929000,6],[1710096930000,7],[1710096931000,8],[1710096932000,8],[1710096933000,10],[1710096934000,10],[1710096935000,12],[1710096936000,12],[1710096937000,14],[1710096938000,14],[1710096939000,15],[1710096940000,16],[1710096941000,17],[1710096942000,17],[1710096943000,19],[1710096944000,20],[1710096945000,20],[1710096946000,22],[1710096947000,22],[1710096948000,23],[1710096949000,25],[1710096950000,25],[1710096951000,26],[1710096952000,26],[1710096953000,28],[1710096954000,29],[1710096955000,30],[1710096956000,30],[1710096957000,32],[1710096958000,32],[1710096959000,33],[1710096960000,34],[1710096961000,35],[1710096962000,36],[1710096963000,37],[1710096964000,38],[1710096965000,39],[1710096966000,39],[1710096967000,41],[1710096968000,41],[1710096969000,43],[1710096970000,43],[1710096971000,44],[1710096972000,46],[1710096973000,47],[1710096974000,48],[1710096975000,49],[1710096976000,49],[1710096977000,51],[1710096978000,51],[1710096979000,53],[1710096980000,53],[1710096981000,54],[1710096982000,55],[1710096983000,56],[1710096984000,56],[1710096985000,58],[1710096986000,58],[1710096987000,59],[1710096988000,59],[1710096989000,61],[1710096990000,62],[1710096991000,63],[1710096992000,63],[1710096993000,64],[1710096994000,73],[1710096995000,93],[1710096996000,110],[1710096997000,129],[1710096998000,147],[1710096999000,171],[1710097000000,190],[1710097001000,169],[1710097002000,148],[1710097003000,221],[1710097004000,147],[1710097005000,222],[1710097006000,153],[1710097007000,86],[1710097008000,161],[1710097009000,90],[1710097010000,166],[1710097011000,93],[1710097012000,174],[1710097013000,114],[1710097014000,197],[1710097015000,85],[1710097016000,85],[1710097017000,86],[1710097018000,86],[1710097019000,88],[1710097020000,89],[1710097021000,90],[1710097022000,92],[1710097023000,93],[1710097024000,94],[1710097025000,94],[1710097026000,95],[1710097027000,96],[1710097028000,96],[1710097029000,98],[1710097030000,97],[1710097031000,99],[1710097032000,99],[1710097033000,101],[1710097034000,102],[1710097035000,103],[1710097036000,103],[1710097037000,104],[1710097038000,106],[1710097039000,106],[1710097040000,107],[1710097041000,107],[1710097042000,109],[1710097043000,110],[1710097044000,110],[1710097045000,110],[1710097046000,110],[1710097047000,110],[1710097048000,110],[1710097049000,110],[1710097050000,111],[1710097051000,110],[1710097052000,110],[1710097053000,110],[1710097054000,110],[1710097055000,110],[1710097056000,110],[1710097057000,110],[1710097058000,110],[1710097059000,110],[1710097060000,110],[1710097061000,110],[1710097062000,110],[1710097063000,110],[1710097064000,110],[1710097065000,110],[1710097066000,110],[1710097067000,110],[1710097068000,110],[1710097069000,110],[1710097070000,110],[1710097071000,110],[1710097072000,110],[1710097073000,110],[1710097074000,110],[1710097075000,110],[1710097076000,110],[1710097077000,110],[1710097078000,110],[1710097079000,110],[1710097080000,110],[1710097081000,110],[1710097082000,110],[1710097083000,110],[1710097084000,110],[1710097085000,110],[1710097086000,110],[1710097087000,110],[1710097088000,110],[1710097089000,110],[1710097090000,110],[1710097091000,110],[1710097092000,110],[1710097093000,110],[1710097094000,110],[1710097095000,110],[1710097096000,110],[1710097097000,110],[1710097098000,110],[1710097099000,110],[1710097100000,110],[1710097101000,110],[1710097102000,110],[1710097103000,110],[1710097104000,110],[1710097105000,110],[1710097106000,110],[1710097107000,110],[1710097108000,110],[1710097109000,110],[1710097110000,110],[1710097111000,110],[1710097112000,110],[1710097113000,110],[1710097114000,110],[1710097115000,110],[1710097116000,110],[1710097117000,110],[1710097118000,110],[1710097119000,110],[1710097120000,110],[1710097121000,110],[1710097122000,110],[1710097123000,110],[1710097124000,110],[1710097125000,110],[1710097126000,110],[1710097127000,110],[1710097128000,110],[1710097129000,110],[1710097130000,110],[1710097131000,110],[1710097132000,110],[1710097133000,110],[1710097134000,110],[1710097135000,110],[1710097136000,110],[1710097137000,110],[1710097138000,110],[1710097139000,110],[1710097140000,110],[1710097141000,110],[1710097142000,110],[1710097143000,110],[1710097144000,110],[1710097145000,110],[1710097146000,110],[1710097147000,110],[1710097148000,110],[1710097149000,110],[1710097150000,110],[1710097151000,110],[1710097152000,110],[1710097153000,110],[1710097154000,110],[1710097155000,110],[1710097156000,110],[1710097157000,110],[1710097158000,110],[1710097159000,110],[1710097160000,110],[1710097161000,110],[1710097162000,110],[1710097163000,107]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#68b65c',
name: 'débitos',
data: [
[1710096919000,0],[1710096920000,0],[1710096921000,0],[1710096922000,0],[1710096923000,1],[1710096924000,1],[1710096925000,4],[1710096926000,6],[1710096927000,7],[1710096928000,9],[1710096929000,11],[1710096930000,13],[1710096931000,15],[1710096932000,16],[1710096933000,19],[1710096934000,20],[1710096935000,22],[1710096936000,25],[1710096937000,25],[1710096938000,28],[1710096939000,29],[1710096940000,31],[1710096941000,33],[1710096942000,35],[1710096943000,37],[1710096944000,38],[1710096945000,40],[1710096946000,42],[1710096947000,44],[1710096948000,47],[1710096949000,48],[1710096950000,51],[1710096951000,51],[1710096952000,53],[1710096953000,56],[1710096954000,56],[1710096955000,59],[1710096956000,60],[1710096957000,62],[1710096958000,64],[1710096959000,66],[1710096960000,68],[1710096961000,69],[1710096962000,71],[1710096963000,74],[1710096964000,74],[1710096965000,77],[1710096966000,79],[1710096967000,80],[1710096968000,82],[1710096969000,84],[1710096970000,86],[1710096971000,88],[1710096972000,89],[1710096973000,92],[1710096974000,93],[1710096975000,96],[1710096976000,98],[1710096977000,99],[1710096978000,102],[1710096979000,102],[1710096980000,104],[1710096981000,106],[1710096982000,109],[1710096983000,110],[1710096984000,112],[1710096985000,113],[1710096986000,115],[1710096987000,118],[1710096988000,120],[1710096989000,120],[1710096990000,124],[1710096991000,124],[1710096992000,126],[1710096993000,128],[1710096994000,143],[1710096995000,184],[1710096996000,213],[1710096997000,258],[1710096998000,295],[1710096999000,341],[1710097000000,382],[1710097001000,332],[1710097002000,295],[1710097003000,442],[1710097004000,295],[1710097005000,445],[1710097006000,306],[1710097007000,172],[1710097008000,319],[1710097009000,183],[1710097010000,326],[1710097011000,185],[1710097012000,347],[1710097013000,231],[1710097014000,397],[1710097015000,168],[1710097016000,170],[1710097017000,171],[1710097018000,175],[1710097019000,177],[1710097020000,178],[1710097021000,181],[1710097022000,183],[1710097023000,185],[1710097024000,185],[1710097025000,188],[1710097026000,189],[1710097027000,191],[1710097028000,192],[1710097029000,194],[1710097030000,196],[1710097031000,197],[1710097032000,199],[1710097033000,202],[1710097034000,202],[1710097035000,206],[1710097036000,207],[1710097037000,210],[1710097038000,211],[1710097039000,212],[1710097040000,215],[1710097041000,216],[1710097042000,217],[1710097043000,221],[1710097044000,220],[1710097045000,220],[1710097046000,220],[1710097047000,220],[1710097048000,221],[1710097049000,221],[1710097050000,220],[1710097051000,220],[1710097052000,220],[1710097053000,221],[1710097054000,220],[1710097055000,220],[1710097056000,220],[1710097057000,220],[1710097058000,221],[1710097059000,220],[1710097060000,220],[1710097061000,220],[1710097062000,220],[1710097063000,220],[1710097064000,220],[1710097065000,221],[1710097066000,220],[1710097067000,220],[1710097068000,220],[1710097069000,220],[1710097070000,220],[1710097071000,220],[1710097072000,220],[1710097073000,220],[1710097074000,220],[1710097075000,220],[1710097076000,220],[1710097077000,220],[1710097078000,220],[1710097079000,220],[1710097080000,220],[1710097081000,220],[1710097082000,220],[1710097083000,220],[1710097084000,220],[1710097085000,220],[1710097086000,220],[1710097087000,220],[1710097088000,220],[1710097089000,220],[1710097090000,220],[1710097091000,220],[1710097092000,220],[1710097093000,220],[1710097094000,220],[1710097095000,220],[1710097096000,220],[1710097097000,220],[1710097098000,220],[1710097099000,220],[1710097100000,220],[1710097101000,220],[1710097102000,220],[1710097103000,220],[1710097104000,220],[1710097105000,220],[1710097106000,220],[1710097107000,220],[1710097108000,220],[1710097109000,220],[1710097110000,220],[1710097111000,220],[1710097112000,220],[1710097113000,220],[1710097114000,220],[1710097115000,220],[1710097116000,220],[1710097117000,220],[1710097118000,220],[1710097119000,220],[1710097120000,220],[1710097121000,220],[1710097122000,220],[1710097123000,220],[1710097124000,220],[1710097125000,220],[1710097126000,220],[1710097127000,220],[1710097128000,220],[1710097129000,220],[1710097130000,220],[1710097131000,220],[1710097132000,220],[1710097133000,220],[1710097134000,220],[1710097135000,220],[1710097136000,220],[1710097137000,220],[1710097138000,220],[1710097139000,220],[1710097140000,220],[1710097141000,220],[1710097142000,220],[1710097143000,220],[1710097144000,220],[1710097145000,220],[1710097146000,220],[1710097147000,220],[1710097148000,220],[1710097149000,220],[1710097150000,220],[1710097151000,220],[1710097152000,220],[1710097153000,220],[1710097154000,220],[1710097155000,220],[1710097156000,220],[1710097157000,220],[1710097158000,220],[1710097159000,220],[1710097160000,220],[1710097161000,220],[1710097162000,220],[1710097163000,215]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#f15b4f',
name: 'extratos',
data: [
[1710096919000,0],[1710096920000,0],[1710096921000,0],[1710096922000,0],[1710096923000,1],[1710096924000,1],[1710096925000,1],[1710096926000,1],[1710096927000,1],[1710096928000,1],[1710096929000,2],[1710096930000,1],[1710096931000,2],[1710096932000,2],[1710096933000,1],[1710096934000,2],[1710096935000,2],[1710096936000,2],[1710096937000,2],[1710096938000,2],[1710096939000,2],[1710096940000,2],[1710096941000,3],[1710096942000,2],[1710096943000,3],[1710096944000,2],[1710096945000,3],[1710096946000,2],[1710096947000,3],[1710096948000,3],[1710096949000,3],[1710096950000,3],[1710096951000,3],[1710096952000,3],[1710096953000,3],[1710096954000,4],[1710096955000,3],[1710096956000,3],[1710096957000,4],[1710096958000,3],[1710096959000,4],[1710096960000,4],[1710096961000,4],[1710096962000,4],[1710096963000,4],[1710096964000,4],[1710096965000,4],[1710096966000,4],[1710096967000,4],[1710096968000,4],[1710096969000,5],[1710096970000,4],[1710096971000,5],[1710096972000,5],[1710096973000,4],[1710096974000,5],[1710096975000,5],[1710096976000,5],[1710096977000,5],[1710096978000,5],[1710096979000,5],[1710096980000,5],[1710096981000,6],[1710096982000,5],[1710096983000,6],[1710096984000,5],[1710096985000,6],[1710096986000,5],[1710096987000,6],[1710096988000,6],[1710096989000,6],[1710096990000,6],[1710096991000,6],[1710096992000,6],[1710096993000,6],[1710096994000,7],[1710096995000,9],[1710096996000,10],[1710096997000,12],[1710096998000,14],[1710096999000,15],[1710097000000,19],[1710097001000,16],[1710097002000,15],[1710097003000,22],[1710097004000,14],[1710097005000,21],[1710097006000,15],[1710097007000,8],[1710097008000,15],[1710097009000,10],[1710097010000,14],[1710097011000,9],[1710097012000,17],[1710097013000,11],[1710097014000,19],[1710097015000,8],[1710097016000,8],[1710097017000,8],[1710097018000,8],[1710097019000,8],[1710097020000,8],[1710097021000,9],[1710097022000,8],[1710097023000,9],[1710097024000,8],[1710097025000,9],[1710097026000,8],[1710097027000,9],[1710097028000,9],[1710097029000,9],[1710097030000,9],[1710097031000,9],[1710097032000,9],[1710097033000,9],[1710097034000,10],[1710097035000,9],[1710097036000,9],[1710097037000,10],[1710097038000,9],[1710097039000,10],[1710097040000,10],[1710097041000,10],[1710097042000,10],[1710097043000,10],[1710097044000,10],[1710097045000,10],[1710097046000,10],[1710097047000,10],[1710097048000,10],[1710097049000,10],[1710097050000,10],[1710097051000,10],[1710097052000,10],[1710097053000,10],[1710097054000,10],[1710097055000,10],[1710097056000,10],[1710097057000,10],[1710097058000,10],[1710097059000,10],[1710097060000,10],[1710097061000,10],[1710097062000,10],[1710097063000,10],[1710097064000,10],[1710097065000,10],[1710097066000,10],[1710097067000,10],[1710097068000,10],[1710097069000,10],[1710097070000,10],[1710097071000,10],[1710097072000,10],[1710097073000,10],[1710097074000,10],[1710097075000,10],[1710097076000,10],[1710097077000,10],[1710097078000,10],[1710097079000,10],[1710097080000,10],[1710097081000,10],[1710097082000,10],[1710097083000,10],[1710097084000,10],[1710097085000,10],[1710097086000,10],[1710097087000,10],[1710097088000,10],[1710097089000,10],[1710097090000,10],[1710097091000,10],[1710097092000,10],[1710097093000,10],[1710097094000,10],[1710097095000,10],[1710097096000,10],[1710097097000,10],[1710097098000,10],[1710097099000,10],[1710097100000,10],[1710097101000,10],[1710097102000,10],[1710097103000,10],[1710097104000,10],[1710097105000,10],[1710097106000,10],[1710097107000,10],[1710097108000,10],[1710097109000,10],[1710097110000,10],[1710097111000,10],[1710097112000,10],[1710097113000,10],[1710097114000,10],[1710097115000,10],[1710097116000,10],[1710097117000,10],[1710097118000,10],[1710097119000,10],[1710097120000,10],[1710097121000,10],[1710097122000,10],[1710097123000,10],[1710097124000,10],[1710097125000,10],[1710097126000,10],[1710097127000,10],[1710097128000,10],[1710097129000,10],[1710097130000,10],[1710097131000,10],[1710097132000,10],[1710097133000,10],[1710097134000,10],[1710097135000,10],[1710097136000,10],[1710097137000,10],[1710097138000,10],[1710097139000,10],[1710097140000,10],[1710097141000,10],[1710097142000,10],[1710097143000,10],[1710097144000,10],[1710097145000,10],[1710097146000,10],[1710097147000,10],[1710097148000,10],[1710097149000,10],[1710097150000,10],[1710097151000,10],[1710097152000,10],[1710097153000,10],[1710097154000,10],[1710097155000,10],[1710097156000,10],[1710097157000,10],[1710097158000,10],[1710097159000,10],[1710097160000,10],[1710097161000,10],[1710097162000,10],[1710097163000,9]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FFDD00',
name: 'validação HTTP 404',
data: [
[1710096919000,0],[1710096920000,0],[1710096921000,0],[1710096922000,1],[1710096923000,0],[1710096924000,0],[1710096925000,0],[1710096926000,0],[1710096927000,0],[1710096928000,0],[1710096929000,0],[1710096930000,0],[1710096931000,0],[1710096932000,0],[1710096933000,0],[1710096934000,0],[1710096935000,0],[1710096936000,0],[1710096937000,0],[1710096938000,0],[1710096939000,0],[1710096940000,0],[1710096941000,0],[1710096942000,0],[1710096943000,0],[1710096944000,0],[1710096945000,0],[1710096946000,0],[1710096947000,0],[1710096948000,0],[1710096949000,0],[1710096950000,0],[1710096951000,0],[1710096952000,0],[1710096953000,0],[1710096954000,0],[1710096955000,0],[1710096956000,0],[1710096957000,0],[1710096958000,0],[1710096959000,0],[1710096960000,0],[1710096961000,0],[1710096962000,0],[1710096963000,0],[1710096964000,0],[1710096965000,0],[1710096966000,0],[1710096967000,0],[1710096968000,0],[1710096969000,0],[1710096970000,0],[1710096971000,0],[1710096972000,0],[1710096973000,0],[1710096974000,0],[1710096975000,0],[1710096976000,0],[1710096977000,0],[1710096978000,0],[1710096979000,0],[1710096980000,0],[1710096981000,0],[1710096982000,0],[1710096983000,0],[1710096984000,0],[1710096985000,0],[1710096986000,0],[1710096987000,0],[1710096988000,0],[1710096989000,0],[1710096990000,0],[1710096991000,0],[1710096992000,0],[1710096993000,0],[1710096994000,0],[1710096995000,0],[1710096996000,0],[1710096997000,0],[1710096998000,0],[1710096999000,0],[1710097000000,0],[1710097001000,0],[1710097002000,0],[1710097003000,0],[1710097004000,0],[1710097005000,0],[1710097006000,0],[1710097007000,0],[1710097008000,0],[1710097009000,0],[1710097010000,0],[1710097011000,0],[1710097012000,0],[1710097013000,0],[1710097014000,0],[1710097015000,0],[1710097016000,0],[1710097017000,0],[1710097018000,0],[1710097019000,0],[1710097020000,0],[1710097021000,0],[1710097022000,0],[1710097023000,0],[1710097024000,0],[1710097025000,0],[1710097026000,0],[1710097027000,0],[1710097028000,0],[1710097029000,0],[1710097030000,0],[1710097031000,0],[1710097032000,0],[1710097033000,0],[1710097034000,0],[1710097035000,0],[1710097036000,0],[1710097037000,0],[1710097038000,0],[1710097039000,0],[1710097040000,0],[1710097041000,0],[1710097042000,0],[1710097043000,0],[1710097044000,0],[1710097045000,0],[1710097046000,0],[1710097047000,0],[1710097048000,0],[1710097049000,0],[1710097050000,0],[1710097051000,0],[1710097052000,0],[1710097053000,0],[1710097054000,0],[1710097055000,0],[1710097056000,0],[1710097057000,0],[1710097058000,0],[1710097059000,0],[1710097060000,0],[1710097061000,0],[1710097062000,0],[1710097063000,0],[1710097064000,0],[1710097065000,0],[1710097066000,0],[1710097067000,0],[1710097068000,0],[1710097069000,0],[1710097070000,0],[1710097071000,0],[1710097072000,0],[1710097073000,0],[1710097074000,0],[1710097075000,0],[1710097076000,0],[1710097077000,0],[1710097078000,0],[1710097079000,0],[1710097080000,0],[1710097081000,0],[1710097082000,0],[1710097083000,0],[1710097084000,0],[1710097085000,0],[1710097086000,0],[1710097087000,0],[1710097088000,0],[1710097089000,0],[1710097090000,0],[1710097091000,0],[1710097092000,0],[1710097093000,0],[1710097094000,0],[1710097095000,0],[1710097096000,0],[1710097097000,0],[1710097098000,0],[1710097099000,0],[1710097100000,0],[1710097101000,0],[1710097102000,0],[1710097103000,0],[1710097104000,0],[1710097105000,0],[1710097106000,0],[1710097107000,0],[1710097108000,0],[1710097109000,0],[1710097110000,0],[1710097111000,0],[1710097112000,0],[1710097113000,0],[1710097114000,0],[1710097115000,0],[1710097116000,0],[1710097117000,0],[1710097118000,0],[1710097119000,0],[1710097120000,0],[1710097121000,0],[1710097122000,0],[1710097123000,0],[1710097124000,0],[1710097125000,0],[1710097126000,0],[1710097127000,0],[1710097128000,0],[1710097129000,0],[1710097130000,0],[1710097131000,0],[1710097132000,0],[1710097133000,0],[1710097134000,0],[1710097135000,0],[1710097136000,0],[1710097137000,0],[1710097138000,0],[1710097139000,0],[1710097140000,0],[1710097141000,0],[1710097142000,0],[1710097143000,0],[1710097144000,0],[1710097145000,0],[1710097146000,0],[1710097147000,0],[1710097148000,0],[1710097149000,0],[1710097150000,0],[1710097151000,0],[1710097152000,0],[1710097153000,0],[1710097154000,0],[1710097155000,0],[1710097156000,0],[1710097157000,0],[1710097158000,0],[1710097159000,0],[1710097160000,0],[1710097161000,0],[1710097162000,0],[1710097163000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00D5FF',
name: 'validações',
data: [
[1710096919000,0],[1710096920000,0],[1710096921000,0],[1710096922000,5],[1710096923000,5],[1710096924000,0],[1710096925000,0],[1710096926000,0],[1710096927000,0],[1710096928000,0],[1710096929000,0],[1710096930000,0],[1710096931000,0],[1710096932000,0],[1710096933000,0],[1710096934000,0],[1710096935000,0],[1710096936000,0],[1710096937000,0],[1710096938000,0],[1710096939000,0],[1710096940000,0],[1710096941000,0],[1710096942000,0],[1710096943000,0],[1710096944000,0],[1710096945000,0],[1710096946000,0],[1710096947000,0],[1710096948000,0],[1710096949000,0],[1710096950000,0],[1710096951000,0],[1710096952000,0],[1710096953000,0],[1710096954000,0],[1710096955000,0],[1710096956000,0],[1710096957000,0],[1710096958000,0],[1710096959000,0],[1710096960000,0],[1710096961000,0],[1710096962000,0],[1710096963000,0],[1710096964000,0],[1710096965000,0],[1710096966000,0],[1710096967000,0],[1710096968000,0],[1710096969000,0],[1710096970000,0],[1710096971000,0],[1710096972000,0],[1710096973000,0],[1710096974000,0],[1710096975000,0],[1710096976000,0],[1710096977000,0],[1710096978000,0],[1710096979000,0],[1710096980000,0],[1710096981000,0],[1710096982000,0],[1710096983000,0],[1710096984000,0],[1710096985000,0],[1710096986000,0],[1710096987000,0],[1710096988000,0],[1710096989000,0],[1710096990000,0],[1710096991000,0],[1710096992000,0],[1710096993000,0],[1710096994000,0],[1710096995000,0],[1710096996000,0],[1710096997000,0],[1710096998000,0],[1710096999000,0],[1710097000000,0],[1710097001000,0],[1710097002000,0],[1710097003000,0],[1710097004000,0],[1710097005000,0],[1710097006000,0],[1710097007000,0],[1710097008000,0],[1710097009000,0],[1710097010000,0],[1710097011000,0],[1710097012000,0],[1710097013000,0],[1710097014000,0],[1710097015000,0],[1710097016000,0],[1710097017000,0],[1710097018000,0],[1710097019000,0],[1710097020000,0],[1710097021000,0],[1710097022000,0],[1710097023000,0],[1710097024000,0],[1710097025000,0],[1710097026000,0],[1710097027000,0],[1710097028000,0],[1710097029000,0],[1710097030000,0],[1710097031000,0],[1710097032000,0],[1710097033000,0],[1710097034000,0],[1710097035000,0],[1710097036000,0],[1710097037000,0],[1710097038000,0],[1710097039000,0],[1710097040000,0],[1710097041000,0],[1710097042000,0],[1710097043000,0],[1710097044000,0],[1710097045000,0],[1710097046000,0],[1710097047000,0],[1710097048000,0],[1710097049000,0],[1710097050000,0],[1710097051000,0],[1710097052000,0],[1710097053000,0],[1710097054000,0],[1710097055000,0],[1710097056000,0],[1710097057000,0],[1710097058000,0],[1710097059000,0],[1710097060000,0],[1710097061000,0],[1710097062000,0],[1710097063000,0],[1710097064000,0],[1710097065000,0],[1710097066000,0],[1710097067000,0],[1710097068000,0],[1710097069000,0],[1710097070000,0],[1710097071000,0],[1710097072000,0],[1710097073000,0],[1710097074000,0],[1710097075000,0],[1710097076000,0],[1710097077000,0],[1710097078000,0],[1710097079000,0],[1710097080000,0],[1710097081000,0],[1710097082000,0],[1710097083000,0],[1710097084000,0],[1710097085000,0],[1710097086000,0],[1710097087000,0],[1710097088000,0],[1710097089000,0],[1710097090000,0],[1710097091000,0],[1710097092000,0],[1710097093000,0],[1710097094000,0],[1710097095000,0],[1710097096000,0],[1710097097000,0],[1710097098000,0],[1710097099000,0],[1710097100000,0],[1710097101000,0],[1710097102000,0],[1710097103000,0],[1710097104000,0],[1710097105000,0],[1710097106000,0],[1710097107000,0],[1710097108000,0],[1710097109000,0],[1710097110000,0],[1710097111000,0],[1710097112000,0],[1710097113000,0],[1710097114000,0],[1710097115000,0],[1710097116000,0],[1710097117000,0],[1710097118000,0],[1710097119000,0],[1710097120000,0],[1710097121000,0],[1710097122000,0],[1710097123000,0],[1710097124000,0],[1710097125000,0],[1710097126000,0],[1710097127000,0],[1710097128000,0],[1710097129000,0],[1710097130000,0],[1710097131000,0],[1710097132000,0],[1710097133000,0],[1710097134000,0],[1710097135000,0],[1710097136000,0],[1710097137000,0],[1710097138000,0],[1710097139000,0],[1710097140000,0],[1710097141000,0],[1710097142000,0],[1710097143000,0],[1710097144000,0],[1710097145000,0],[1710097146000,0],[1710097147000,0],[1710097148000,0],[1710097149000,0],[1710097150000,0],[1710097151000,0],[1710097152000,0],[1710097153000,0],[1710097154000,0],[1710097155000,0],[1710097156000,0],[1710097157000,0],[1710097158000,0],[1710097159000,0],[1710097160000,0],[1710097161000,0],[1710097162000,0],[1710097163000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00FF00',
name: 'validação concorrência saldo - 0',
data: [
[1710096919000,0],[1710096920000,0],[1710096921000,1],[1710096922000,0],[1710096923000,0],[1710096924000,0],[1710096925000,0],[1710096926000,0],[1710096927000,0],[1710096928000,0],[1710096929000,0],[1710096930000,0],[1710096931000,0],[1710096932000,0],[1710096933000,0],[1710096934000,0],[1710096935000,0],[1710096936000,0],[1710096937000,0],[1710096938000,0],[1710096939000,0],[1710096940000,0],[1710096941000,0],[1710096942000,0],[1710096943000,0],[1710096944000,0],[1710096945000,0],[1710096946000,0],[1710096947000,0],[1710096948000,0],[1710096949000,0],[1710096950000,0],[1710096951000,0],[1710096952000,0],[1710096953000,0],[1710096954000,0],[1710096955000,0],[1710096956000,0],[1710096957000,0],[1710096958000,0],[1710096959000,0],[1710096960000,0],[1710096961000,0],[1710096962000,0],[1710096963000,0],[1710096964000,0],[1710096965000,0],[1710096966000,0],[1710096967000,0],[1710096968000,0],[1710096969000,0],[1710096970000,0],[1710096971000,0],[1710096972000,0],[1710096973000,0],[1710096974000,0],[1710096975000,0],[1710096976000,0],[1710096977000,0],[1710096978000,0],[1710096979000,0],[1710096980000,0],[1710096981000,0],[1710096982000,0],[1710096983000,0],[1710096984000,0],[1710096985000,0],[1710096986000,0],[1710096987000,0],[1710096988000,0],[1710096989000,0],[1710096990000,0],[1710096991000,0],[1710096992000,0],[1710096993000,0],[1710096994000,0],[1710096995000,0],[1710096996000,0],[1710096997000,0],[1710096998000,0],[1710096999000,0],[1710097000000,0],[1710097001000,0],[1710097002000,0],[1710097003000,0],[1710097004000,0],[1710097005000,0],[1710097006000,0],[1710097007000,0],[1710097008000,0],[1710097009000,0],[1710097010000,0],[1710097011000,0],[1710097012000,0],[1710097013000,0],[1710097014000,0],[1710097015000,0],[1710097016000,0],[1710097017000,0],[1710097018000,0],[1710097019000,0],[1710097020000,0],[1710097021000,0],[1710097022000,0],[1710097023000,0],[1710097024000,0],[1710097025000,0],[1710097026000,0],[1710097027000,0],[1710097028000,0],[1710097029000,0],[1710097030000,0],[1710097031000,0],[1710097032000,0],[1710097033000,0],[1710097034000,0],[1710097035000,0],[1710097036000,0],[1710097037000,0],[1710097038000,0],[1710097039000,0],[1710097040000,0],[1710097041000,0],[1710097042000,0],[1710097043000,0],[1710097044000,0],[1710097045000,0],[1710097046000,0],[1710097047000,0],[1710097048000,0],[1710097049000,0],[1710097050000,0],[1710097051000,0],[1710097052000,0],[1710097053000,0],[1710097054000,0],[1710097055000,0],[1710097056000,0],[1710097057000,0],[1710097058000,0],[1710097059000,0],[1710097060000,0],[1710097061000,0],[1710097062000,0],[1710097063000,0],[1710097064000,0],[1710097065000,0],[1710097066000,0],[1710097067000,0],[1710097068000,0],[1710097069000,0],[1710097070000,0],[1710097071000,0],[1710097072000,0],[1710097073000,0],[1710097074000,0],[1710097075000,0],[1710097076000,0],[1710097077000,0],[1710097078000,0],[1710097079000,0],[1710097080000,0],[1710097081000,0],[1710097082000,0],[1710097083000,0],[1710097084000,0],[1710097085000,0],[1710097086000,0],[1710097087000,0],[1710097088000,0],[1710097089000,0],[1710097090000,0],[1710097091000,0],[1710097092000,0],[1710097093000,0],[1710097094000,0],[1710097095000,0],[1710097096000,0],[1710097097000,0],[1710097098000,0],[1710097099000,0],[1710097100000,0],[1710097101000,0],[1710097102000,0],[1710097103000,0],[1710097104000,0],[1710097105000,0],[1710097106000,0],[1710097107000,0],[1710097108000,0],[1710097109000,0],[1710097110000,0],[1710097111000,0],[1710097112000,0],[1710097113000,0],[1710097114000,0],[1710097115000,0],[1710097116000,0],[1710097117000,0],[1710097118000,0],[1710097119000,0],[1710097120000,0],[1710097121000,0],[1710097122000,0],[1710097123000,0],[1710097124000,0],[1710097125000,0],[1710097126000,0],[1710097127000,0],[1710097128000,0],[1710097129000,0],[1710097130000,0],[1710097131000,0],[1710097132000,0],[1710097133000,0],[1710097134000,0],[1710097135000,0],[1710097136000,0],[1710097137000,0],[1710097138000,0],[1710097139000,0],[1710097140000,0],[1710097141000,0],[1710097142000,0],[1710097143000,0],[1710097144000,0],[1710097145000,0],[1710097146000,0],[1710097147000,0],[1710097148000,0],[1710097149000,0],[1710097150000,0],[1710097151000,0],[1710097152000,0],[1710097153000,0],[1710097154000,0],[1710097155000,0],[1710097156000,0],[1710097157000,0],[1710097158000,0],[1710097159000,0],[1710097160000,0],[1710097161000,0],[1710097162000,0],[1710097163000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#9D00FF',
name: 'validação concorrência transações - c',
data: [
[1710096919000,0],[1710096920000,25],[1710096921000,22],[1710096922000,0],[1710096923000,0],[1710096924000,0],[1710096925000,0],[1710096926000,0],[1710096927000,0],[1710096928000,0],[1710096929000,0],[1710096930000,0],[1710096931000,0],[1710096932000,0],[1710096933000,0],[1710096934000,0],[1710096935000,0],[1710096936000,0],[1710096937000,0],[1710096938000,0],[1710096939000,0],[1710096940000,0],[1710096941000,0],[1710096942000,0],[1710096943000,0],[1710096944000,0],[1710096945000,0],[1710096946000,0],[1710096947000,0],[1710096948000,0],[1710096949000,0],[1710096950000,0],[1710096951000,0],[1710096952000,0],[1710096953000,0],[1710096954000,0],[1710096955000,0],[1710096956000,0],[1710096957000,0],[1710096958000,0],[1710096959000,0],[1710096960000,0],[1710096961000,0],[1710096962000,0],[1710096963000,0],[1710096964000,0],[1710096965000,0],[1710096966000,0],[1710096967000,0],[1710096968000,0],[1710096969000,0],[1710096970000,0],[1710096971000,0],[1710096972000,0],[1710096973000,0],[1710096974000,0],[1710096975000,0],[1710096976000,0],[1710096977000,0],[1710096978000,0],[1710096979000,0],[1710096980000,0],[1710096981000,0],[1710096982000,0],[1710096983000,0],[1710096984000,0],[1710096985000,0],[1710096986000,0],[1710096987000,0],[1710096988000,0],[1710096989000,0],[1710096990000,0],[1710096991000,0],[1710096992000,0],[1710096993000,0],[1710096994000,0],[1710096995000,0],[1710096996000,0],[1710096997000,0],[1710096998000,0],[1710096999000,0],[1710097000000,0],[1710097001000,0],[1710097002000,0],[1710097003000,0],[1710097004000,0],[1710097005000,0],[1710097006000,0],[1710097007000,0],[1710097008000,0],[1710097009000,0],[1710097010000,0],[1710097011000,0],[1710097012000,0],[1710097013000,0],[1710097014000,0],[1710097015000,0],[1710097016000,0],[1710097017000,0],[1710097018000,0],[1710097019000,0],[1710097020000,0],[1710097021000,0],[1710097022000,0],[1710097023000,0],[1710097024000,0],[1710097025000,0],[1710097026000,0],[1710097027000,0],[1710097028000,0],[1710097029000,0],[1710097030000,0],[1710097031000,0],[1710097032000,0],[1710097033000,0],[1710097034000,0],[1710097035000,0],[1710097036000,0],[1710097037000,0],[1710097038000,0],[1710097039000,0],[1710097040000,0],[1710097041000,0],[1710097042000,0],[1710097043000,0],[1710097044000,0],[1710097045000,0],[1710097046000,0],[1710097047000,0],[1710097048000,0],[1710097049000,0],[1710097050000,0],[1710097051000,0],[1710097052000,0],[1710097053000,0],[1710097054000,0],[1710097055000,0],[1710097056000,0],[1710097057000,0],[1710097058000,0],[1710097059000,0],[1710097060000,0],[1710097061000,0],[1710097062000,0],[1710097063000,0],[1710097064000,0],[1710097065000,0],[1710097066000,0],[1710097067000,0],[1710097068000,0],[1710097069000,0],[1710097070000,0],[1710097071000,0],[1710097072000,0],[1710097073000,0],[1710097074000,0],[1710097075000,0],[1710097076000,0],[1710097077000,0],[1710097078000,0],[1710097079000,0],[1710097080000,0],[1710097081000,0],[1710097082000,0],[1710097083000,0],[1710097084000,0],[1710097085000,0],[1710097086000,0],[1710097087000,0],[1710097088000,0],[1710097089000,0],[1710097090000,0],[1710097091000,0],[1710097092000,0],[1710097093000,0],[1710097094000,0],[1710097095000,0],[1710097096000,0],[1710097097000,0],[1710097098000,0],[1710097099000,0],[1710097100000,0],[1710097101000,0],[1710097102000,0],[1710097103000,0],[1710097104000,0],[1710097105000,0],[1710097106000,0],[1710097107000,0],[1710097108000,0],[1710097109000,0],[1710097110000,0],[1710097111000,0],[1710097112000,0],[1710097113000,0],[1710097114000,0],[1710097115000,0],[1710097116000,0],[1710097117000,0],[1710097118000,0],[1710097119000,0],[1710097120000,0],[1710097121000,0],[1710097122000,0],[1710097123000,0],[1710097124000,0],[1710097125000,0],[1710097126000,0],[1710097127000,0],[1710097128000,0],[1710097129000,0],[1710097130000,0],[1710097131000,0],[1710097132000,0],[1710097133000,0],[1710097134000,0],[1710097135000,0],[1710097136000,0],[1710097137000,0],[1710097138000,0],[1710097139000,0],[1710097140000,0],[1710097141000,0],[1710097142000,0],[1710097143000,0],[1710097144000,0],[1710097145000,0],[1710097146000,0],[1710097147000,0],[1710097148000,0],[1710097149000,0],[1710097150000,0],[1710097151000,0],[1710097152000,0],[1710097153000,0],[1710097154000,0],[1710097155000,0],[1710097156000,0],[1710097157000,0],[1710097158000,0],[1710097159000,0],[1710097160000,0],[1710097161000,0],[1710097162000,0],[1710097163000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FF00E1',
name: 'validação concorrência saldo - -25',
data: [
[1710096919000,1],[1710096920000,1],[1710096921000,0],[1710096922000,0],[1710096923000,0],[1710096924000,0],[1710096925000,0],[1710096926000,0],[1710096927000,0],[1710096928000,0],[1710096929000,0],[1710096930000,0],[1710096931000,0],[1710096932000,0],[1710096933000,0],[1710096934000,0],[1710096935000,0],[1710096936000,0],[1710096937000,0],[1710096938000,0],[1710096939000,0],[1710096940000,0],[1710096941000,0],[1710096942000,0],[1710096943000,0],[1710096944000,0],[1710096945000,0],[1710096946000,0],[1710096947000,0],[1710096948000,0],[1710096949000,0],[1710096950000,0],[1710096951000,0],[1710096952000,0],[1710096953000,0],[1710096954000,0],[1710096955000,0],[1710096956000,0],[1710096957000,0],[1710096958000,0],[1710096959000,0],[1710096960000,0],[1710096961000,0],[1710096962000,0],[1710096963000,0],[1710096964000,0],[1710096965000,0],[1710096966000,0],[1710096967000,0],[1710096968000,0],[1710096969000,0],[1710096970000,0],[1710096971000,0],[1710096972000,0],[1710096973000,0],[1710096974000,0],[1710096975000,0],[1710096976000,0],[1710096977000,0],[1710096978000,0],[1710096979000,0],[1710096980000,0],[1710096981000,0],[1710096982000,0],[1710096983000,0],[1710096984000,0],[1710096985000,0],[1710096986000,0],[1710096987000,0],[1710096988000,0],[1710096989000,0],[1710096990000,0],[1710096991000,0],[1710096992000,0],[1710096993000,0],[1710096994000,0],[1710096995000,0],[1710096996000,0],[1710096997000,0],[1710096998000,0],[1710096999000,0],[1710097000000,0],[1710097001000,0],[1710097002000,0],[1710097003000,0],[1710097004000,0],[1710097005000,0],[1710097006000,0],[1710097007000,0],[1710097008000,0],[1710097009000,0],[1710097010000,0],[1710097011000,0],[1710097012000,0],[1710097013000,0],[1710097014000,0],[1710097015000,0],[1710097016000,0],[1710097017000,0],[1710097018000,0],[1710097019000,0],[1710097020000,0],[1710097021000,0],[1710097022000,0],[1710097023000,0],[1710097024000,0],[1710097025000,0],[1710097026000,0],[1710097027000,0],[1710097028000,0],[1710097029000,0],[1710097030000,0],[1710097031000,0],[1710097032000,0],[1710097033000,0],[1710097034000,0],[1710097035000,0],[1710097036000,0],[1710097037000,0],[1710097038000,0],[1710097039000,0],[1710097040000,0],[1710097041000,0],[1710097042000,0],[1710097043000,0],[1710097044000,0],[1710097045000,0],[1710097046000,0],[1710097047000,0],[1710097048000,0],[1710097049000,0],[1710097050000,0],[1710097051000,0],[1710097052000,0],[1710097053000,0],[1710097054000,0],[1710097055000,0],[1710097056000,0],[1710097057000,0],[1710097058000,0],[1710097059000,0],[1710097060000,0],[1710097061000,0],[1710097062000,0],[1710097063000,0],[1710097064000,0],[1710097065000,0],[1710097066000,0],[1710097067000,0],[1710097068000,0],[1710097069000,0],[1710097070000,0],[1710097071000,0],[1710097072000,0],[1710097073000,0],[1710097074000,0],[1710097075000,0],[1710097076000,0],[1710097077000,0],[1710097078000,0],[1710097079000,0],[1710097080000,0],[1710097081000,0],[1710097082000,0],[1710097083000,0],[1710097084000,0],[1710097085000,0],[1710097086000,0],[1710097087000,0],[1710097088000,0],[1710097089000,0],[1710097090000,0],[1710097091000,0],[1710097092000,0],[1710097093000,0],[1710097094000,0],[1710097095000,0],[1710097096000,0],[1710097097000,0],[1710097098000,0],[1710097099000,0],[1710097100000,0],[1710097101000,0],[1710097102000,0],[1710097103000,0],[1710097104000,0],[1710097105000,0],[1710097106000,0],[1710097107000,0],[1710097108000,0],[1710097109000,0],[1710097110000,0],[1710097111000,0],[1710097112000,0],[1710097113000,0],[1710097114000,0],[1710097115000,0],[1710097116000,0],[1710097117000,0],[1710097118000,0],[1710097119000,0],[1710097120000,0],[1710097121000,0],[1710097122000,0],[1710097123000,0],[1710097124000,0],[1710097125000,0],[1710097126000,0],[1710097127000,0],[1710097128000,0],[1710097129000,0],[1710097130000,0],[1710097131000,0],[1710097132000,0],[1710097133000,0],[1710097134000,0],[1710097135000,0],[1710097136000,0],[1710097137000,0],[1710097138000,0],[1710097139000,0],[1710097140000,0],[1710097141000,0],[1710097142000,0],[1710097143000,0],[1710097144000,0],[1710097145000,0],[1710097146000,0],[1710097147000,0],[1710097148000,0],[1710097149000,0],[1710097150000,0],[1710097151000,0],[1710097152000,0],[1710097153000,0],[1710097154000,0],[1710097155000,0],[1710097156000,0],[1710097157000,0],[1710097158000,0],[1710097159000,0],[1710097160000,0],[1710097161000,0],[1710097162000,0],[1710097163000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#AECAEB',
name: 'validação concorrência transações - d',
data: [
[1710096919000,25],[1710096920000,0],[1710096921000,0],[1710096922000,0],[1710096923000,0],[1710096924000,0],[1710096925000,0],[1710096926000,0],[1710096927000,0],[1710096928000,0],[1710096929000,0],[1710096930000,0],[1710096931000,0],[1710096932000,0],[1710096933000,0],[1710096934000,0],[1710096935000,0],[1710096936000,0],[1710096937000,0],[1710096938000,0],[1710096939000,0],[1710096940000,0],[1710096941000,0],[1710096942000,0],[1710096943000,0],[1710096944000,0],[1710096945000,0],[1710096946000,0],[1710096947000,0],[1710096948000,0],[1710096949000,0],[1710096950000,0],[1710096951000,0],[1710096952000,0],[1710096953000,0],[1710096954000,0],[1710096955000,0],[1710096956000,0],[1710096957000,0],[1710096958000,0],[1710096959000,0],[1710096960000,0],[1710096961000,0],[1710096962000,0],[1710096963000,0],[1710096964000,0],[1710096965000,0],[1710096966000,0],[1710096967000,0],[1710096968000,0],[1710096969000,0],[1710096970000,0],[1710096971000,0],[1710096972000,0],[1710096973000,0],[1710096974000,0],[1710096975000,0],[1710096976000,0],[1710096977000,0],[1710096978000,0],[1710096979000,0],[1710096980000,0],[1710096981000,0],[1710096982000,0],[1710096983000,0],[1710096984000,0],[1710096985000,0],[1710096986000,0],[1710096987000,0],[1710096988000,0],[1710096989000,0],[1710096990000,0],[1710096991000,0],[1710096992000,0],[1710096993000,0],[1710096994000,0],[1710096995000,0],[1710096996000,0],[1710096997000,0],[1710096998000,0],[1710096999000,0],[1710097000000,0],[1710097001000,0],[1710097002000,0],[1710097003000,0],[1710097004000,0],[1710097005000,0],[1710097006000,0],[1710097007000,0],[1710097008000,0],[1710097009000,0],[1710097010000,0],[1710097011000,0],[1710097012000,0],[1710097013000,0],[1710097014000,0],[1710097015000,0],[1710097016000,0],[1710097017000,0],[1710097018000,0],[1710097019000,0],[1710097020000,0],[1710097021000,0],[1710097022000,0],[1710097023000,0],[1710097024000,0],[1710097025000,0],[1710097026000,0],[1710097027000,0],[1710097028000,0],[1710097029000,0],[1710097030000,0],[1710097031000,0],[1710097032000,0],[1710097033000,0],[1710097034000,0],[1710097035000,0],[1710097036000,0],[1710097037000,0],[1710097038000,0],[1710097039000,0],[1710097040000,0],[1710097041000,0],[1710097042000,0],[1710097043000,0],[1710097044000,0],[1710097045000,0],[1710097046000,0],[1710097047000,0],[1710097048000,0],[1710097049000,0],[1710097050000,0],[1710097051000,0],[1710097052000,0],[1710097053000,0],[1710097054000,0],[1710097055000,0],[1710097056000,0],[1710097057000,0],[1710097058000,0],[1710097059000,0],[1710097060000,0],[1710097061000,0],[1710097062000,0],[1710097063000,0],[1710097064000,0],[1710097065000,0],[1710097066000,0],[1710097067000,0],[1710097068000,0],[1710097069000,0],[1710097070000,0],[1710097071000,0],[1710097072000,0],[1710097073000,0],[1710097074000,0],[1710097075000,0],[1710097076000,0],[1710097077000,0],[1710097078000,0],[1710097079000,0],[1710097080000,0],[1710097081000,0],[1710097082000,0],[1710097083000,0],[1710097084000,0],[1710097085000,0],[1710097086000,0],[1710097087000,0],[1710097088000,0],[1710097089000,0],[1710097090000,0],[1710097091000,0],[1710097092000,0],[1710097093000,0],[1710097094000,0],[1710097095000,0],[1710097096000,0],[1710097097000,0],[1710097098000,0],[1710097099000,0],[1710097100000,0],[1710097101000,0],[1710097102000,0],[1710097103000,0],[1710097104000,0],[1710097105000,0],[1710097106000,0],[1710097107000,0],[1710097108000,0],[1710097109000,0],[1710097110000,0],[1710097111000,0],[1710097112000,0],[1710097113000,0],[1710097114000,0],[1710097115000,0],[1710097116000,0],[1710097117000,0],[1710097118000,0],[1710097119000,0],[1710097120000,0],[1710097121000,0],[1710097122000,0],[1710097123000,0],[1710097124000,0],[1710097125000,0],[1710097126000,0],[1710097127000,0],[1710097128000,0],[1710097129000,0],[1710097130000,0],[1710097131000,0],[1710097132000,0],[1710097133000,0],[1710097134000,0],[1710097135000,0],[1710097136000,0],[1710097137000,0],[1710097138000,0],[1710097139000,0],[1710097140000,0],[1710097141000,0],[1710097142000,0],[1710097143000,0],[1710097144000,0],[1710097145000,0],[1710097146000,0],[1710097147000,0],[1710097148000,0],[1710097149000,0],[1710097150000,0],[1710097151000,0],[1710097152000,0],[1710097153000,0],[1710097154000,0],[1710097155000,0],[1710097156000,0],[1710097157000,0],[1710097158000,0],[1710097159000,0],[1710097160000,0],[1710097161000,0],[1710097162000,0],[1710097163000,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: ['14', '43', '71', '100', '128', '157', '185', '214', '242', '271', '299', '328', '356', '385', '413', '442', '470', '499', '527', '556', '584', '613', '641', '670', '698', '727', '756', '784', '813', '841', '870', '898', '927', '955', '984', '1012', '1041', '1069', '1098', '1126', '1155', '1183', '1212', '1240', '1269', '1297', '1326', '1354', '1383', '1411', '1440', '1468', '1497', '1525', '1554', '1582', '1611', '1639', '1668', '1696', '1725', '1753', '1782', '1810', '1839', '1867', '1896', '1924', '1953', '1981', '2010', '2038', '2067', '2095', '2124', '2153', '2181', '2210', '2238', '2267', '2295', '2324', '2352', '2381', '2409', '2438', '2466', '2495', '2523', '2552', '2580', '2609', '2637', '2666', '2694', '2723', '2751', '2780', '2808', '2837'],
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: [
11.57,0.03,0.04,0.02,0.01,0.03,0.04,0.03,0.04,0.03,0.01,0.02,0.01,0.02,0.02,0.02,0.03,0.03,0.02,0.02,0.03,0.03,0.03,0.02,0.02,0.03,0.03,0.03,0.03,0.02,0.03,0.01,0.02,0.04,0.04,0.04,0.03,0.03,0.02,0.03,0.01,0.02,0.03,0.03,0.02,0.02,0.03,0.02,0.02,0.02,0.02,0.02,0.03,0.02,0.02,0.02,0.01,0.01,0.02,0.01,0.01,0.01,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.01,0.01,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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: [
80.71,0.04,0.09,0.09,0.07,0.08,0.08,0.08,0.09,0.08,0.08,0.09,0.08,0.07,0.07,0.09,0.08,0.09,0.08,0.09,0.08,0.07,0.08,0.08,0.07,0.07,0.09,0.08,0.08,0.09,0.07,0.08,0.08,0.08,0.08,0.07,0.08,0.08,0.08,0.07,0.09,0.08,0.08,0.08,0.08,0.08,0.07,0.08,0.07,0.08,0.08,0.08,0.08,0.08,0.08,0.07,0.08,0.07,0.08,0.07,0.08,0.08,0.07,0.07,0.06,0.05,0.06,0.05,0.05,0.04,0.03,0.03,0.01,0.01,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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([[1710096919,[20,45,169,188,247,250,256,263,266,267]],[1710096920,[3,3,3,3,3,3,3,3,3,3]],[1710096921,[10,77,89,180,180,181,186,190,191,192]],[1710096922,[3,3,3,3,3,3,3,3,3,3]],[1710096923,[1,2,5,12,15,41,54,83,86,86]],[1710096924,[4,4,5,6,6,6,6,6,6,7]],[1710096925,[4,4,5,5,6,6,7,8,8,9]],[1710096926,[4,5,6,6,6,6,7,7,7,8]],[1710096927,[4,4,5,5,5,5,5,5,5,6]],[1710096928,[3,4,5,5,5,5,5,5,6,7]],[1710096929,[2,4,5,5,5,6,6,7,10,11]],[1710096930,[3,4,4,4,5,5,5,6,6,6]],[1710096931,[2,4,4,5,5,5,5,5,5,6]],[1710096932,[2,4,4,4,5,5,5,5,6,7]],[1710096933,[2,4,5,6,6,6,6,7,9,10]],[1710096934,[3,4,4,5,5,5,5,6,6,6]],[1710096935,[3,4,4,5,5,6,6,28,67,82]],[1710096936,[2,4,4,5,6,6,7,9,20,24]],[1710096937,[2,4,4,5,6,6,7,8,12,13]],[1710096938,[2,4,4,5,5,5,6,6,7,8]],[1710096939,[2,4,4,5,5,5,6,10,13,15]],[1710096940,[1,3,4,4,4,4,5,6,8,10]],[1710096941,[1,3,3,4,4,4,5,7,9,11]],[1710096942,[1,3,3,4,4,4,4,4,6,8]],[1710096943,[1,3,3,4,4,4,4,5,5,5]],[1710096944,[1,3,3,4,4,4,4,4,4,5]],[1710096945,[1,3,3,4,4,5,5,5,7,9]],[1710096946,[2,3,3,4,4,4,5,5,6,6]],[1710096947,[1,3,3,4,4,5,5,5,5,7]],[1710096948,[1,3,4,4,5,5,5,5,6,7]],[1710096949,[1,3,3,4,4,4,4,5,6,7]],[1710096950,[1,3,3,4,4,5,5,7,16,16]],[1710096951,[1,3,3,4,4,4,5,6,9,11]],[1710096952,[1,2,3,3,4,4,4,4,5,6]],[1710096953,[1,3,3,4,4,4,4,4,5,5]],[1710096954,[1,3,3,4,4,4,4,4,5,6]],[1710096955,[1,2,3,4,4,4,4,4,4,5]],[1710096956,[1,2,3,4,4,4,4,5,6,6]],[1710096957,[1,3,3,4,4,4,4,5,7,7]],[1710096958,[1,3,3,4,4,4,4,5,6,7]],[1710096959,[1,2,3,4,4,4,5,11,52,82]],[1710096960,[1,3,4,4,4,5,5,5,6,10]],[1710096961,[1,2,3,4,4,4,5,5,6,9]],[1710096962,[1,2,3,3,4,4,4,5,11,13]],[1710096963,[1,2,3,4,4,4,5,6,7,11]],[1710096964,[1,3,3,4,4,4,4,5,6,6]],[1710096965,[1,3,3,4,4,4,5,6,7,16]],[1710096966,[1,3,3,4,4,4,4,5,5,6]],[1710096967,[1,3,3,4,4,5,6,9,15,18]],[1710096968,[1,2,3,4,4,4,4,6,9,18]],[1710096969,[1,3,3,4,4,5,5,7,15,17]],[1710096970,[1,2,3,4,4,4,4,5,9,15]],[1710096971,[1,3,3,4,4,4,4,5,6,7]],[1710096972,[1,3,3,4,4,4,4,5,7,9]],[1710096973,[1,2,3,3,4,4,4,5,8,9]],[1710096974,[1,2,3,3,3,3,4,5,7,13]],[1710096975,[1,2,3,3,3,3,4,5,9,11]],[1710096976,[1,2,3,3,3,3,4,4,5,6]],[1710096977,[1,3,3,3,3,4,4,5,6,11]],[1710096978,[1,3,3,3,4,4,4,5,8,9]],[1710096979,[1,3,3,3,4,4,4,5,7,19]],[1710096980,[1,3,3,4,4,4,5,5,6,7]],[1710096981,[1,2,3,4,4,4,5,5,11,19]],[1710096982,[1,1,3,4,4,4,5,5,9,16]],[1710096983,[1,2,3,4,4,5,5,8,14,17]],[1710096984,[1,3,3,4,4,4,4,5,20,34]],[1710096985,[1,2,3,4,4,4,4,5,9,12]],[1710096986,[1,2,3,4,4,4,4,4,6,6]],[1710096987,[1,3,3,3,4,4,4,5,10,17]],[1710096988,[0,2,3,4,4,4,5,6,8,9]],[1710096989,[1,2,3,3,3,3,4,4,5,6]],[1710096990,[1,3,3,4,5,9,16,50,84,96]],[1710096991,[1,2,3,4,4,4,5,6,14,23]],[1710096992,[1,3,3,4,4,5,5,6,8,11]],[1710096993,[1,3,3,4,4,4,5,5,6,8]],[1710096994,[1,4,173,261,294,352,400,508,668,812]],[1710096995,[206,422,530,645,668,710,747,799,925,1222]],[1710096996,[497,768,865,976,997,1023,1072,1197,1411,1527]],[1710096997,[931,1067,1211,1491,1542,1606,1657,1736,1852,1872]],[1710096998,[1124,1340,1670,1978,2049,2137,2205,2264,2478,2715]],[1710096999,[198,1504,1570,1659,1702,1758,2218,2248,2318,2355]],[1710097000,[4,4,4,4,4,4,4,4,4,4]],[1710097001,null],[1710097002,null],[1710097003,[72,72,72,72,72,72,72,72,72,72]],[1710097004,null],[1710097005,null],[1710097006,null],[1710097007,[9,9,9,9,9,9,9,9,9,9]],[1710097008,[71,163,220,422,435,447,455,469,549,573]],[1710097009,[118,452,659,1062,1123,1171,1276,1391,1648,1721]],[1710097010,[600,694,774,825,847,871,881,887,900,904]],[1710097011,[1344,1477,1567,1575,1581,1588,1595,1602,1607,1609]],[1710097012,null],[1710097013,null],[1710097014,null],[1710097015,null],[1710097016,null],[1710097017,null],[1710097018,null],[1710097019,null],[1710097020,null],[1710097021,null],[1710097022,null],[1710097023,null],[1710097024,null],[1710097025,null],[1710097026,null],[1710097027,null],[1710097028,null],[1710097029,null],[1710097030,null],[1710097031,null],[1710097032,null],[1710097033,null],[1710097034,null],[1710097035,null],[1710097036,null],[1710097037,null],[1710097038,null],[1710097039,null],[1710097040,null],[1710097041,null],[1710097042,null],[1710097043,null],[1710097044,null],[1710097045,null],[1710097046,null],[1710097047,null],[1710097048,null],[1710097049,null],[1710097050,null],[1710097051,null],[1710097052,null],[1710097053,null],[1710097054,null],[1710097055,null],[1710097056,null],[1710097057,null],[1710097058,null],[1710097059,null],[1710097060,null],[1710097061,null],[1710097062,null],[1710097063,null],[1710097064,null],[1710097065,null],[1710097066,null],[1710097067,null],[1710097068,null],[1710097069,null],[1710097070,null],[1710097071,null],[1710097072,null],[1710097073,null],[1710097074,null],[1710097075,null],[1710097076,null],[1710097077,null],[1710097078,null],[1710097079,null],[1710097080,null],[1710097081,null],[1710097082,null],[1710097083,null],[1710097084,null],[1710097085,null],[1710097086,null],[1710097087,null],[1710097088,null],[1710097089,null],[1710097090,null],[1710097091,null],[1710097092,null],[1710097093,null],[1710097094,null],[1710097095,null],[1710097096,null],[1710097097,null],[1710097098,null],[1710097099,null],[1710097100,null],[1710097101,null],[1710097102,null],[1710097103,null],[1710097104,null],[1710097105,null],[1710097106,null],[1710097107,null],[1710097108,null],[1710097109,null],[1710097110,null],[1710097111,null],[1710097112,null],[1710097113,null],[1710097114,null],[1710097115,null],[1710097116,null],[1710097117,null],[1710097118,null],[1710097119,null],[1710097120,null],[1710097121,null],[1710097122,null],[1710097123,null],[1710097124,null],[1710097125,null],[1710097126,null],[1710097127,null],[1710097128,null],[1710097129,null],[1710097130,null],[1710097131,null],[1710097132,null],[1710097133,null],[1710097134,null],[1710097135,null],[1710097136,null],[1710097137,null],[1710097138,null],[1710097139,null],[1710097140,null],[1710097141,null],[1710097142,null],[1710097143,null],[1710097144,null],[1710097145,null],[1710097146,null],[1710097147,null],[1710097148,null],[1710097149,null],[1710097150,null],[1710097151,null],[1710097152,null],[1710097153,null],[1710097154,null],[1710097155,null],[1710097156,null],[1710097157,null],[1710097158,null],[1710097159,null],[1710097160,null],[1710097161,null],[1710097162,null],[1710097163,null]]);
var responsetimepercentilesovertimeokPercentilesChart = new Highcharts.StockChart({
chart: {
renderTo: 'responsetimepercentilesovertimeokPercentilesContainer',
zoomType: 'x',
marginBottom: 60
},
colors: ['#c4fd90', '#7ff77f', '#6ff2ad', '#61ede6', '#58c7e0', '#4ea1d4', '#487ad9', '#3f52cc', '#7335dc', '#c73905', '#FFA900'],
credits: { enabled: false },
legend: {
enabled: true,
floating: true,
y: -65,
borderWidth: 0,
itemStyle: { fontWeight: "normal" },
symbolRadius: 0
},
title: { text: 'A title to let highcharts reserve the place for the title set later' },
navigator: {
maskInside: false,
baseSeries: 9
},
rangeSelector: {
rangeSelector: { align: "left" },
buttonSpacing: 0,
buttonTheme: {
fill: '#CFC9C6',
padding: 1,
stroke: '#000000',
'stroke-width': 0.25,
style: {
color: '#000000',
fontWeight: 'bold',
},
states: {
stroke: '#92918C',
'stroke-width': 0.25,
hover: {
fill: '#92918C',
style: { color: 'black' }
},
select: {
fill: '#FFA900',
style: { color: 'white' }
}
}
},
buttons : [
{
type : 'minute',
count : 1,
text : '1m'
}, {
type : 'minute',
count : 10,
text : '10m'
}, {
type : 'hour',
count : 1,
text : '1h'
}, {
type : 'all',
count : 1,
text : 'All'
}
],
selected : 3,
inputEnabled : false
},
xAxis: {
type: 'datetime',
ordinal: false,
maxZoom: 10000 // three days
},
yAxis:[
{
min: 0,
title: { text: 'Response Time (ms)' },
opposite: false
}, {
min: 0,
title: {
text: 'Active Users',
style: { color: '#FFA900' }
},
opposite: true
}
],
plotOptions: {
arearange: { lineWidth: 1 },
series: {
dataGrouping: { enabled: false }
}
},
series: [
{
pointInterval: 1000,
name: 'min',
data: responsetimepercentilesovertimeokPercentiles[0],
tooltip: { yDecimals: 0, ySuffix: 'ms' },
type : 'area',
yAxis: 0,
zIndex: 10
},
{
pointInterval: 1000,
name: '25%',
data: responsetimepercentilesovertimeokPercentiles[1],
tooltip: { yDecimals: 0, ySuffix: 'ms' },
type : 'area',
yAxis: 0,
zIndex: 9
},
{
pointInterval: 1000,
name: '50%',
data: responsetimepercentilesovertimeokPercentiles[2],
tooltip: { yDecimals: 0, ySuffix: 'ms' },
type : 'area',
yAxis: 0,
zIndex: 8
},
{
pointInterval: 1000,
name: '75%',
data: responsetimepercentilesovertimeokPercentiles[3],
tooltip: { yDecimals: 0, ySuffix: 'ms' },
type : 'area',
yAxis: 0,
zIndex: 7
},
{
pointInterval: 1000,
name: '80%',
data: responsetimepercentilesovertimeokPercentiles[4],
tooltip: { yDecimals: 0, ySuffix: 'ms' },
type : 'area',
yAxis: 0,
zIndex: 6
},
{
pointInterval: 1000,
name: '85%',
data: responsetimepercentilesovertimeokPercentiles[5],
tooltip: { yDecimals: 0, ySuffix: 'ms' },
type : 'area',
yAxis: 0,
zIndex: 5
},
{
pointInterval: 1000,
name: '90%',
data: responsetimepercentilesovertimeokPercentiles[6],
tooltip: { yDecimals: 0, ySuffix: 'ms' },
type : 'area',
yAxis: 0,
zIndex: 4
},
{
pointInterval: 1000,
name: '95%',
data: responsetimepercentilesovertimeokPercentiles[7],
tooltip: { yDecimals: 0, ySuffix: 'ms' },
type : 'area',
yAxis: 0,
zIndex: 3
},
{
pointInterval: 1000,
name: '99%',
data: responsetimepercentilesovertimeokPercentiles[8],
tooltip: { yDecimals: 0, ySuffix: 'ms' },
type : 'area',
yAxis: 0,
zIndex: 2
},
{
pointInterval: 1000,
name: 'max',
data: responsetimepercentilesovertimeokPercentiles[9],
tooltip: { yDecimals: 0, ySuffix: 'ms' },
type : 'area',
yAxis: 0,
zIndex: 1
},
allUsersData
]
});
responsetimepercentilesovertimeokPercentilesChart.setTitle({
text: '<span class="chart_title chart_title_">Response Time Percentiles over Time (OK)</span>',
useHTML: true
});
var requests = unpack([[1710096919,[25,25,0]],[1710096920,[1,1,0]],[1710096921,[25,25,0]],[1710096922,[1,1,0]],[1710096923,[71,71,0]],[1710096924,[3,3,0]],[1710096925,[6,6,0]],[1710096926,[9,9,0]],[1710096927,[11,11,0]],[1710096928,[13,13,0]],[1710096929,[18,18,0]],[1710096930,[19,19,0]],[1710096931,[24,24,0]],[1710096932,[26,26,0]],[1710096933,[27,27,0]],[1710096934,[32,32,0]],[1710096935,[34,34,0]],[1710096936,[37,37,0]],[1710096937,[39,39,0]],[1710096938,[43,43,0]],[1710096939,[45,45,0]],[1710096940,[48,48,0]],[1710096941,[50,50,0]],[1710096942,[54,54,0]],[1710096943,[56,56,0]],[1710096944,[60,60,0]],[1710096945,[61,61,0]],[1710096946,[65,65,0]],[1710096947,[67,67,0]],[1710096948,[70,70,0]],[1710096949,[75,75,0]],[1710096950,[76,76,0]],[1710096951,[79,79,0]],[1710096952,[81,81,0]],[1710096953,[84,84,0]],[1710096954,[89,89,0]],[1710096955,[89,89,0]],[1710096956,[93,93,0]],[1710096957,[96,96,0]],[1710096958,[98,98,0]],[1710096959,[102,102,0]],[1710096960,[104,104,0]],[1710096961,[107,107,0]],[1710096962,[109,109,0]],[1710096963,[114,114,0]],[1710096964,[115,115,0]],[1710096965,[119,119,0]],[1710096966,[121,121,0]],[1710096967,[123,123,0]],[1710096968,[126,126,0]],[1710096969,[129,129,0]],[1710096970,[133,133,0]],[1710096971,[134,134,0]],[1710096972,[139,139,0]],[1710096973,[140,140,0]],[1710096974,[144,144,0]],[1710096975,[147,147,0]],[1710096976,[149,149,0]],[1710096977,[152,152,0]],[1710096978,[154,154,0]],[1710096979,[158,158,0]],[1710096980,[160,160,0]],[1710096981,[163,163,0]],[1710096982,[166,166,0]],[1710096983,[170,170,0]],[1710096984,[170,170,0]],[1710096985,[174,174,0]],[1710096986,[177,177,0]],[1710096987,[180,180,0]],[1710096988,[183,183,0]],[1710096989,[186,186,0]],[1710096990,[189,189,0]],[1710096991,[191,191,0]],[1710096992,[194,194,0]],[1710096993,[197,197,0]],[1710096994,[199,199,0]],[1710096995,[203,203,0]],[1710096996,[205,205,0]],[1710096997,[208,208,0]],[1710096998,[211,206,5]],[1710096999,[213,69,144]],[1710097000,[217,1,216]],[1710097001,[219,0,219]],[1710097002,[223,0,223]],[1710097003,[224,1,223]],[1710097004,[228,0,228]],[1710097005,[231,0,231]],[1710097006,[233,0,233]],[1710097007,[236,1,235]],[1710097008,[238,24,214]],[1710097009,[243,42,201]],[1710097010,[244,16,228]],[1710097011,[248,5,243]],[1710097012,[251,0,251]],[1710097013,[251,0,251]],[1710097014,[257,0,257]],[1710097015,[259,0,259]],[1710097016,[262,0,262]],[1710097017,[264,0,264]],[1710097018,[266,0,266]],[1710097019,[270,0,270]],[1710097020,[273,0,273]],[1710097021,[275,0,275]],[1710097022,[279,0,279]],[1710097023,[281,0,281]],[1710097024,[283,0,283]],[1710097025,[286,0,286]],[1710097026,[290,0,290]],[1710097027,[292,0,292]],[1710097028,[297,0,297]],[1710097029,[297,0,297]],[1710097030,[300,0,300]],[1710097031,[304,0,304]],[1710097032,[306,0,306]],[1710097033,[309,0,309]],[1710097034,[313,0,313]],[1710097035,[314,0,314]],[1710097036,[318,0,318]],[1710097037,[321,0,321]],[1710097038,[322,0,322]],[1710097039,[327,0,327]],[1710097040,[329,0,329]],[1710097041,[332,0,332]],[1710097042,[334,0,334]],[1710097043,[338,0,338]],[1710097044,[340,0,340]],[1710097045,[340,0,340]],[1710097046,[340,0,340]],[1710097047,[340,0,340]],[1710097048,[340,0,340]],[1710097049,[340,0,340]],[1710097050,[340,0,340]],[1710097051,[340,0,340]],[1710097052,[340,0,340]],[1710097053,[340,0,340]],[1710097054,[340,0,340]],[1710097055,[340,0,340]],[1710097056,[339,0,339]],[1710097057,[341,0,341]],[1710097058,[340,0,340]],[1710097059,[340,0,340]],[1710097060,[340,0,340]],[1710097061,[340,0,340]],[1710097062,[340,0,340]],[1710097063,[340,0,340]],[1710097064,[340,0,340]],[1710097065,[340,0,340]],[1710097066,[340,0,340]],[1710097067,[340,0,340]],[1710097068,[340,0,340]],[1710097069,[340,0,340]],[1710097070,[340,0,340]],[1710097071,[340,0,340]],[1710097072,[340,0,340]],[1710097073,[340,0,340]],[1710097074,[340,0,340]],[1710097075,[340,0,340]],[1710097076,[340,0,340]],[1710097077,[340,0,340]],[1710097078,[340,0,340]],[1710097079,[340,0,340]],[1710097080,[340,0,340]],[1710097081,[340,0,340]],[1710097082,[340,0,340]],[1710097083,[340,0,340]],[1710097084,[340,0,340]],[1710097085,[340,0,340]],[1710097086,[340,0,340]],[1710097087,[340,0,340]],[1710097088,[340,0,340]],[1710097089,[340,0,340]],[1710097090,[340,0,340]],[1710097091,[340,0,340]],[1710097092,[340,0,340]],[1710097093,[340,0,340]],[1710097094,[340,0,340]],[1710097095,[340,0,340]],[1710097096,[340,0,340]],[1710097097,[340,0,340]],[1710097098,[340,0,340]],[1710097099,[340,0,340]],[1710097100,[340,0,340]],[1710097101,[340,0,340]],[1710097102,[340,0,340]],[1710097103,[340,0,340]],[1710097104,[340,0,340]],[1710097105,[340,0,340]],[1710097106,[340,0,340]],[1710097107,[340,0,340]],[1710097108,[340,0,340]],[1710097109,[340,0,340]],[1710097110,[340,0,340]],[1710097111,[340,0,340]],[1710097112,[340,0,340]],[1710097113,[340,0,340]],[1710097114,[340,0,340]],[1710097115,[340,0,340]],[1710097116,[340,0,340]],[1710097117,[340,0,340]],[1710097118,[340,0,340]],[1710097119,[340,0,340]],[1710097120,[340,0,340]],[1710097121,[340,0,340]],[1710097122,[340,0,340]],[1710097123,[340,0,340]],[1710097124,[340,0,340]],[1710097125,[340,0,340]],[1710097126,[340,0,340]],[1710097127,[340,0,340]],[1710097128,[340,0,340]],[1710097129,[340,0,340]],[1710097130,[340,0,340]],[1710097131,[340,0,340]],[1710097132,[340,0,340]],[1710097133,[340,0,340]],[1710097134,[340,0,340]],[1710097135,[340,0,340]],[1710097136,[340,0,340]],[1710097137,[340,0,340]],[1710097138,[340,0,340]],[1710097139,[340,0,340]],[1710097140,[340,0,340]],[1710097141,[340,0,340]],[1710097142,[340,0,340]],[1710097143,[340,0,340]],[1710097144,[340,0,340]],[1710097145,[340,0,340]],[1710097146,[340,0,340]],[1710097147,[340,0,340]],[1710097148,[340,0,340]],[1710097149,[340,0,340]],[1710097150,[340,0,340]],[1710097151,[340,0,340]],[1710097152,[340,0,340]],[1710097153,[340,0,340]],[1710097154,[340,0,340]],[1710097155,[340,0,340]],[1710097156,[340,0,340]],[1710097157,[340,0,340]],[1710097158,[340,0,340]],[1710097159,[340,0,340]],[1710097160,[340,0,340]],[1710097161,[340,0,340]],[1710097162,[340,0,340]],[1710097163,[501,0,501]]]);
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'