-
Notifications
You must be signed in to change notification settings - Fork 923
/
Copy pathindex.html
1205 lines (1135 loc) · 93.3 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="shortcut icon" type="image/x-icon" href="style/favicon.ico"/>
<link href="style/style.css" rel="stylesheet" type="text/css" />
<link href="style/bootstrap.min.css" rel="stylesheet" type="text/css" />
<script src="js/jquery-3.5.1.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/gatling.js"></script>
<script src="js/menu.js"></script>
<script src="js/ellipsis.js"></script>
<script src="js/all_sessions.js"></script>
<script src="js/stats.js"></script>
<script src="js/highstock.js"></script>
<script src="js/highcharts-more.js"></script>
<script src="js/theme.js"></script>
<script src="js/unpack.js"></script>
<title>Gatling Stats - Global Information</title>
</head>
<body>
<script>
const storedTheme = localStorage.getItem('theme') || (window.matchMedia("(prefers-color-scheme: dark)").matches ? "dark" : "light");
if (storedTheme) document.documentElement.setAttribute('data-theme', storedTheme)
function toggleTheme() {
const currentTheme = document.documentElement.getAttribute("data-theme");
const targetTheme = currentTheme === "light" ? "dark" : "light";
document.documentElement.setAttribute('data-theme', targetTheme)
localStorage.setItem('theme', targetTheme);
};
</script>
<div class="app-container">
<div class="frise"></div>
<div class="head">
<div class="gatling-open-source">
<a class="gatling-logo gatling-logo-light" href="https://gatling.io" target="blank_" title="Gatling Home Page"><img alt="Gatling" src="style/logo-light.svg"/></a>
<a class="gatling-logo gatling-logo-dark" href="https://gatling.io" target="blank_" title="Gatling Home Page"><img alt="Gatling" src="style/logo-dark.svg"/></a>
<a class="gatling-documentation" href="https://gatling.io/docs/" target="_blank">Documentation</a>
</div>
<div class="nav spacer"></div>
<a class="enterprise" href="https://gatling.io/enterprise/next-step/" target="_blank"><strong>Try</strong>
<img class="logo-enterprise-light" alt="Gatling Enterprise" src="style/logo-enterprise-light.svg"/>
<img class="logo-enterprise-dark" alt="Gatling Enterprise" src="style/logo-enterprise-dark.svg"/>
</a>
<button id="theme-toggle" class="theme-toggle" type="button" onclick="toggleTheme()" aria-label="Toggle user interface mode">
<span class="toggle-dark"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-moon"><path d="M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z"></path></svg></span>
<span class="toggle-light"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-sun"><circle cx="12" cy="12" r="5"></circle><line x1="12" y1="1" x2="12" y2="3"></line><line x1="12" y1="21" x2="12" y2="23"></line><line x1="4.22" y1="4.22" x2="5.64" y2="5.64"></line><line x1="18.36" y1="18.36" x2="19.78" y2="19.78"></line><line x1="1" y1="12" x2="3" y2="12"></line><line x1="21" y1="12" x2="23" y2="12"></line><line x1="4.22" y1="19.78" x2="5.64" y2="18.36"></line><line x1="18.36" y1="5.64" x2="19.78" y2="4.22"></line></svg></span>
</button>
</div>
<div class="container details">
<div class="nav">
<ul></ul>
</div>
<div class="cadre">
<div class="content">
<div class="content-header">
<div class="onglet">
RinhaBackendCrebitosSimulation
</div>
<div class="sous-menu" id="sousMenu">
<div class="sous-menu-spacer">
<div class="item ouvert"><a href="index.html">Global</a></div>
<div class="item "><a id="details_link" href="#">Details</a></div>
</div>
</div>
</div>
<div class="content-in">
<div class="container-article">
<div class="article">
<div class="schema-container">
<div id="ranges" class="schema ranges">
</div>
<div class="schema polar">
<div id="container_number_of_requests"></div>
</div>
<div class="simulation-card">
<div class="simulation-version-information">
<span class="simulation-information-title">Gatling Version</span>
<span class="simulation-information-item">
<span class="simulation-information-label">Version: </span>
<span>3.10.3</span>
</span>
<span class="simulation-information-item">
<span class="simulation-information-label">Released: </span>
<span>2023-12-20</span>
</span>
</div>
<div id="simulation-information" class="simulation-version-information">
<span class="simulation-information-title">Run Information</span>
<div class="simulation-information-container">
<span class="simulation-information-item">
<span class="simulation-information-label">Date: </span>
<span>2024-03-10 18:30: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 - alexandrepossebom-golang">
<span class="simulation-information-label">Description: </span>
<span>Rinha de Backend - 2024/Q1: Crébito - alexandrepossebom-golang</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">status.find.is(200), but actually found 502<span class="value" style="display:none">0</span></td>
<td class="value error-col-2 total ko">13</td>
<td class="value error-col-3 total ko">81.25 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">status.find.in([200, 209], 304), found 502<span class="value" style="display:none">1</span></td>
<td class="value error-col-2 total ko">2</td>
<td class="value error-col-3 total ko">12.5 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">jmesPath(saldo.total).find.is(0), but actually found 5<span class="value" style="display:none">2</span></td>
<td class="value error-col-2 total ko">1</td>
<td class="value error-col-3 total ko">6.25 %</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: [
[1710095456000,0],[1710095457000,0],[1710095458000,0],[1710095459000,0],[1710095460000,1],[1710095461000,1],[1710095462000,2],[1710095463000,4],[1710095464000,4],[1710095465000,5],[1710095466000,6],[1710095467000,7],[1710095468000,8],[1710095469000,8],[1710095470000,10],[1710095471000,10],[1710095472000,12],[1710095473000,12],[1710095474000,14],[1710095475000,14],[1710095476000,15],[1710095477000,16],[1710095478000,17],[1710095479000,17],[1710095480000,19],[1710095481000,20],[1710095482000,20],[1710095483000,22],[1710095484000,22],[1710095485000,23],[1710095486000,25],[1710095487000,25],[1710095488000,26],[1710095489000,26],[1710095490000,28],[1710095491000,29],[1710095492000,30],[1710095493000,30],[1710095494000,32],[1710095495000,32],[1710095496000,33],[1710095497000,34],[1710095498000,35],[1710095499000,36],[1710095500000,37],[1710095501000,38],[1710095502000,39],[1710095503000,39],[1710095504000,41],[1710095505000,41],[1710095506000,43],[1710095507000,43],[1710095508000,44],[1710095509000,45],[1710095510000,46],[1710095511000,47],[1710095512000,49],[1710095513000,49],[1710095514000,50],[1710095515000,51],[1710095516000,52],[1710095517000,52],[1710095518000,53],[1710095519000,54],[1710095520000,56],[1710095521000,55],[1710095522000,57],[1710095523000,58],[1710095524000,59],[1710095525000,59],[1710095526000,61],[1710095527000,61],[1710095528000,63],[1710095529000,63],[1710095530000,64],[1710095531000,65],[1710095532000,66],[1710095533000,67],[1710095534000,68],[1710095535000,68],[1710095536000,70],[1710095537000,70],[1710095538000,72],[1710095539000,72],[1710095540000,73],[1710095541000,74],[1710095542000,75],[1710095543000,76],[1710095544000,77],[1710095545000,78],[1710095546000,79],[1710095547000,79],[1710095548000,81],[1710095549000,81],[1710095550000,82],[1710095551000,83],[1710095552000,85],[1710095553000,85],[1710095554000,86],[1710095555000,86],[1710095556000,88],[1710095557000,89],[1710095558000,89],[1710095559000,91],[1710095560000,91],[1710095561000,92],[1710095562000,94],[1710095563000,94],[1710095564000,96],[1710095565000,96],[1710095566000,98],[1710095567000,98],[1710095568000,100],[1710095569000,100],[1710095570000,101],[1710095571000,101],[1710095572000,103],[1710095573000,104],[1710095574000,104],[1710095575000,106],[1710095576000,106],[1710095577000,108],[1710095578000,107],[1710095579000,110],[1710095580000,111],[1710095581000,110],[1710095582000,111],[1710095583000,110],[1710095584000,111],[1710095585000,110],[1710095586000,111],[1710095587000,110],[1710095588000,111],[1710095589000,110],[1710095590000,111],[1710095591000,110],[1710095592000,111],[1710095593000,110],[1710095594000,111],[1710095595000,110],[1710095596000,111],[1710095597000,110],[1710095598000,110],[1710095599000,110],[1710095600000,110],[1710095601000,110],[1710095602000,111],[1710095603000,110],[1710095604000,110],[1710095605000,110],[1710095606000,110],[1710095607000,110],[1710095608000,110],[1710095609000,110],[1710095610000,110],[1710095611000,110],[1710095612000,110],[1710095613000,110],[1710095614000,110],[1710095615000,110],[1710095616000,110],[1710095617000,110],[1710095618000,110],[1710095619000,110],[1710095620000,110],[1710095621000,110],[1710095622000,110],[1710095623000,111],[1710095624000,110],[1710095625000,110],[1710095626000,110],[1710095627000,111],[1710095628000,110],[1710095629000,111],[1710095630000,110],[1710095631000,111],[1710095632000,110],[1710095633000,110],[1710095634000,110],[1710095635000,110],[1710095636000,110],[1710095637000,110],[1710095638000,110],[1710095639000,110],[1710095640000,110],[1710095641000,110],[1710095642000,110],[1710095643000,111],[1710095644000,110],[1710095645000,110],[1710095646000,110],[1710095647000,110],[1710095648000,110],[1710095649000,111],[1710095650000,110],[1710095651000,111],[1710095652000,110],[1710095653000,111],[1710095654000,110],[1710095655000,111],[1710095656000,110],[1710095657000,110],[1710095658000,110],[1710095659000,110],[1710095660000,110],[1710095661000,110],[1710095662000,110],[1710095663000,110],[1710095664000,110],[1710095665000,110],[1710095666000,111],[1710095667000,110],[1710095668000,111],[1710095669000,110],[1710095670000,111],[1710095671000,110],[1710095672000,110],[1710095673000,110],[1710095674000,111],[1710095675000,110],[1710095676000,111],[1710095677000,110],[1710095678000,110],[1710095679000,110],[1710095680000,111],[1710095681000,110],[1710095682000,111],[1710095683000,110],[1710095684000,110],[1710095685000,110],[1710095686000,110],[1710095687000,110],[1710095688000,110],[1710095689000,110],[1710095690000,110],[1710095691000,110],[1710095692000,110],[1710095693000,110],[1710095694000,110],[1710095695000,110],[1710095696000,110],[1710095697000,110],[1710095698000,111],[1710095699000,110],[1710095700000,108]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#68b65c',
name: 'débitos',
data: [
[1710095456000,0],[1710095457000,0],[1710095458000,0],[1710095459000,0],[1710095460000,1],[1710095461000,1],[1710095462000,4],[1710095463000,6],[1710095464000,7],[1710095465000,9],[1710095466000,11],[1710095467000,13],[1710095468000,15],[1710095469000,16],[1710095470000,19],[1710095471000,20],[1710095472000,22],[1710095473000,24],[1710095474000,25],[1710095475000,28],[1710095476000,29],[1710095477000,31],[1710095478000,33],[1710095479000,35],[1710095480000,37],[1710095481000,38],[1710095482000,40],[1710095483000,42],[1710095484000,44],[1710095485000,46],[1710095486000,48],[1710095487000,51],[1710095488000,52],[1710095489000,53],[1710095490000,55],[1710095491000,56],[1710095492000,59],[1710095493000,60],[1710095494000,62],[1710095495000,64],[1710095496000,66],[1710095497000,68],[1710095498000,69],[1710095499000,71],[1710095500000,74],[1710095501000,74],[1710095502000,77],[1710095503000,79],[1710095504000,80],[1710095505000,82],[1710095506000,84],[1710095507000,86],[1710095508000,88],[1710095509000,89],[1710095510000,92],[1710095511000,93],[1710095512000,96],[1710095513000,97],[1710095514000,99],[1710095515000,101],[1710095516000,103],[1710095517000,104],[1710095518000,106],[1710095519000,108],[1710095520000,110],[1710095521000,111],[1710095522000,113],[1710095523000,115],[1710095524000,117],[1710095525000,119],[1710095526000,120],[1710095527000,123],[1710095528000,124],[1710095529000,126],[1710095530000,128],[1710095531000,129],[1710095532000,132],[1710095533000,133],[1710095534000,135],[1710095535000,137],[1710095536000,139],[1710095537000,141],[1710095538000,143],[1710095539000,145],[1710095540000,147],[1710095541000,148],[1710095542000,151],[1710095543000,153],[1710095544000,153],[1710095545000,155],[1710095546000,158],[1710095547000,159],[1710095548000,161],[1710095549000,162],[1710095550000,165],[1710095551000,166],[1710095552000,168],[1710095553000,170],[1710095554000,171],[1710095555000,174],[1710095556000,175],[1710095557000,177],[1710095558000,179],[1710095559000,181],[1710095560000,183],[1710095561000,184],[1710095562000,186],[1710095563000,188],[1710095564000,191],[1710095565000,192],[1710095566000,193],[1710095567000,197],[1710095568000,198],[1710095569000,200],[1710095570000,201],[1710095571000,203],[1710095572000,205],[1710095573000,207],[1710095574000,208],[1710095575000,211],[1710095576000,212],[1710095577000,215],[1710095578000,215],[1710095579000,218],[1710095580000,221],[1710095581000,220],[1710095582000,221],[1710095583000,220],[1710095584000,221],[1710095585000,220],[1710095586000,221],[1710095587000,220],[1710095588000,220],[1710095589000,220],[1710095590000,220],[1710095591000,220],[1710095592000,220],[1710095593000,220],[1710095594000,221],[1710095595000,220],[1710095596000,221],[1710095597000,220],[1710095598000,221],[1710095599000,220],[1710095600000,221],[1710095601000,220],[1710095602000,221],[1710095603000,220],[1710095604000,221],[1710095605000,220],[1710095606000,220],[1710095607000,220],[1710095608000,220],[1710095609000,220],[1710095610000,220],[1710095611000,220],[1710095612000,220],[1710095613000,220],[1710095614000,220],[1710095615000,220],[1710095616000,220],[1710095617000,220],[1710095618000,220],[1710095619000,220],[1710095620000,220],[1710095621000,220],[1710095622000,220],[1710095623000,221],[1710095624000,220],[1710095625000,220],[1710095626000,220],[1710095627000,221],[1710095628000,220],[1710095629000,220],[1710095630000,220],[1710095631000,221],[1710095632000,220],[1710095633000,220],[1710095634000,220],[1710095635000,221],[1710095636000,220],[1710095637000,221],[1710095638000,220],[1710095639000,220],[1710095640000,220],[1710095641000,220],[1710095642000,220],[1710095643000,221],[1710095644000,220],[1710095645000,221],[1710095646000,220],[1710095647000,221],[1710095648000,220],[1710095649000,221],[1710095650000,220],[1710095651000,220],[1710095652000,220],[1710095653000,220],[1710095654000,220],[1710095655000,220],[1710095656000,220],[1710095657000,220],[1710095658000,220],[1710095659000,220],[1710095660000,220],[1710095661000,220],[1710095662000,220],[1710095663000,220],[1710095664000,220],[1710095665000,220],[1710095666000,221],[1710095667000,220],[1710095668000,221],[1710095669000,220],[1710095670000,221],[1710095671000,220],[1710095672000,220],[1710095673000,220],[1710095674000,221],[1710095675000,220],[1710095676000,221],[1710095677000,220],[1710095678000,221],[1710095679000,220],[1710095680000,221],[1710095681000,220],[1710095682000,221],[1710095683000,220],[1710095684000,220],[1710095685000,220],[1710095686000,220],[1710095687000,220],[1710095688000,220],[1710095689000,220],[1710095690000,220],[1710095691000,220],[1710095692000,220],[1710095693000,220],[1710095694000,220],[1710095695000,220],[1710095696000,220],[1710095697000,220],[1710095698000,220],[1710095699000,220],[1710095700000,216]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#f15b4f',
name: 'extratos',
data: [
[1710095456000,0],[1710095457000,0],[1710095458000,0],[1710095459000,0],[1710095460000,1],[1710095461000,1],[1710095462000,1],[1710095463000,1],[1710095464000,1],[1710095465000,1],[1710095466000,2],[1710095467000,1],[1710095468000,2],[1710095469000,2],[1710095470000,1],[1710095471000,2],[1710095472000,2],[1710095473000,2],[1710095474000,2],[1710095475000,2],[1710095476000,2],[1710095477000,2],[1710095478000,3],[1710095479000,2],[1710095480000,3],[1710095481000,2],[1710095482000,3],[1710095483000,2],[1710095484000,3],[1710095485000,3],[1710095486000,3],[1710095487000,3],[1710095488000,3],[1710095489000,3],[1710095490000,3],[1710095491000,4],[1710095492000,3],[1710095493000,3],[1710095494000,4],[1710095495000,3],[1710095496000,4],[1710095497000,4],[1710095498000,4],[1710095499000,4],[1710095500000,4],[1710095501000,4],[1710095502000,4],[1710095503000,4],[1710095504000,4],[1710095505000,4],[1710095506000,5],[1710095507000,4],[1710095508000,5],[1710095509000,5],[1710095510000,4],[1710095511000,5],[1710095512000,5],[1710095513000,5],[1710095514000,5],[1710095515000,5],[1710095516000,5],[1710095517000,5],[1710095518000,6],[1710095519000,5],[1710095520000,6],[1710095521000,5],[1710095522000,6],[1710095523000,5],[1710095524000,6],[1710095525000,6],[1710095526000,6],[1710095527000,6],[1710095528000,6],[1710095529000,6],[1710095530000,6],[1710095531000,7],[1710095532000,6],[1710095533000,6],[1710095534000,7],[1710095535000,6],[1710095536000,7],[1710095537000,7],[1710095538000,7],[1710095539000,7],[1710095540000,7],[1710095541000,7],[1710095542000,7],[1710095543000,7],[1710095544000,7],[1710095545000,7],[1710095546000,8],[1710095547000,7],[1710095548000,8],[1710095549000,8],[1710095550000,7],[1710095551000,8],[1710095552000,8],[1710095553000,8],[1710095554000,8],[1710095555000,8],[1710095556000,8],[1710095557000,8],[1710095558000,9],[1710095559000,8],[1710095560000,9],[1710095561000,8],[1710095562000,9],[1710095563000,8],[1710095564000,9],[1710095565000,9],[1710095566000,9],[1710095567000,9],[1710095568000,9],[1710095569000,9],[1710095570000,9],[1710095571000,10],[1710095572000,9],[1710095573000,9],[1710095574000,10],[1710095575000,9],[1710095576000,10],[1710095577000,10],[1710095578000,10],[1710095579000,10],[1710095580000,10],[1710095581000,10],[1710095582000,10],[1710095583000,10],[1710095584000,10],[1710095585000,10],[1710095586000,10],[1710095587000,10],[1710095588000,10],[1710095589000,10],[1710095590000,10],[1710095591000,10],[1710095592000,10],[1710095593000,10],[1710095594000,10],[1710095595000,10],[1710095596000,10],[1710095597000,10],[1710095598000,10],[1710095599000,10],[1710095600000,10],[1710095601000,10],[1710095602000,10],[1710095603000,10],[1710095604000,10],[1710095605000,10],[1710095606000,10],[1710095607000,10],[1710095608000,10],[1710095609000,10],[1710095610000,10],[1710095611000,10],[1710095612000,10],[1710095613000,10],[1710095614000,10],[1710095615000,10],[1710095616000,10],[1710095617000,10],[1710095618000,10],[1710095619000,10],[1710095620000,10],[1710095621000,10],[1710095622000,10],[1710095623000,10],[1710095624000,10],[1710095625000,10],[1710095626000,10],[1710095627000,10],[1710095628000,10],[1710095629000,10],[1710095630000,10],[1710095631000,10],[1710095632000,10],[1710095633000,10],[1710095634000,10],[1710095635000,10],[1710095636000,10],[1710095637000,10],[1710095638000,10],[1710095639000,10],[1710095640000,10],[1710095641000,10],[1710095642000,10],[1710095643000,10],[1710095644000,10],[1710095645000,10],[1710095646000,10],[1710095647000,10],[1710095648000,10],[1710095649000,10],[1710095650000,10],[1710095651000,10],[1710095652000,10],[1710095653000,10],[1710095654000,10],[1710095655000,10],[1710095656000,10],[1710095657000,10],[1710095658000,10],[1710095659000,10],[1710095660000,10],[1710095661000,10],[1710095662000,10],[1710095663000,10],[1710095664000,10],[1710095665000,10],[1710095666000,10],[1710095667000,10],[1710095668000,10],[1710095669000,10],[1710095670000,10],[1710095671000,10],[1710095672000,10],[1710095673000,10],[1710095674000,10],[1710095675000,10],[1710095676000,10],[1710095677000,10],[1710095678000,10],[1710095679000,10],[1710095680000,10],[1710095681000,10],[1710095682000,10],[1710095683000,10],[1710095684000,10],[1710095685000,10],[1710095686000,10],[1710095687000,10],[1710095688000,10],[1710095689000,10],[1710095690000,10],[1710095691000,10],[1710095692000,10],[1710095693000,10],[1710095694000,10],[1710095695000,10],[1710095696000,10],[1710095697000,10],[1710095698000,10],[1710095699000,10],[1710095700000,9]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FFDD00',
name: 'validação HTTP 404',
data: [
[1710095456000,0],[1710095457000,0],[1710095458000,0],[1710095459000,1],[1710095460000,0],[1710095461000,0],[1710095462000,0],[1710095463000,0],[1710095464000,0],[1710095465000,0],[1710095466000,0],[1710095467000,0],[1710095468000,0],[1710095469000,0],[1710095470000,0],[1710095471000,0],[1710095472000,0],[1710095473000,0],[1710095474000,0],[1710095475000,0],[1710095476000,0],[1710095477000,0],[1710095478000,0],[1710095479000,0],[1710095480000,0],[1710095481000,0],[1710095482000,0],[1710095483000,0],[1710095484000,0],[1710095485000,0],[1710095486000,0],[1710095487000,0],[1710095488000,0],[1710095489000,0],[1710095490000,0],[1710095491000,0],[1710095492000,0],[1710095493000,0],[1710095494000,0],[1710095495000,0],[1710095496000,0],[1710095497000,0],[1710095498000,0],[1710095499000,0],[1710095500000,0],[1710095501000,0],[1710095502000,0],[1710095503000,0],[1710095504000,0],[1710095505000,0],[1710095506000,0],[1710095507000,0],[1710095508000,0],[1710095509000,0],[1710095510000,0],[1710095511000,0],[1710095512000,0],[1710095513000,0],[1710095514000,0],[1710095515000,0],[1710095516000,0],[1710095517000,0],[1710095518000,0],[1710095519000,0],[1710095520000,0],[1710095521000,0],[1710095522000,0],[1710095523000,0],[1710095524000,0],[1710095525000,0],[1710095526000,0],[1710095527000,0],[1710095528000,0],[1710095529000,0],[1710095530000,0],[1710095531000,0],[1710095532000,0],[1710095533000,0],[1710095534000,0],[1710095535000,0],[1710095536000,0],[1710095537000,0],[1710095538000,0],[1710095539000,0],[1710095540000,0],[1710095541000,0],[1710095542000,0],[1710095543000,0],[1710095544000,0],[1710095545000,0],[1710095546000,0],[1710095547000,0],[1710095548000,0],[1710095549000,0],[1710095550000,0],[1710095551000,0],[1710095552000,0],[1710095553000,0],[1710095554000,0],[1710095555000,0],[1710095556000,0],[1710095557000,0],[1710095558000,0],[1710095559000,0],[1710095560000,0],[1710095561000,0],[1710095562000,0],[1710095563000,0],[1710095564000,0],[1710095565000,0],[1710095566000,0],[1710095567000,0],[1710095568000,0],[1710095569000,0],[1710095570000,0],[1710095571000,0],[1710095572000,0],[1710095573000,0],[1710095574000,0],[1710095575000,0],[1710095576000,0],[1710095577000,0],[1710095578000,0],[1710095579000,0],[1710095580000,0],[1710095581000,0],[1710095582000,0],[1710095583000,0],[1710095584000,0],[1710095585000,0],[1710095586000,0],[1710095587000,0],[1710095588000,0],[1710095589000,0],[1710095590000,0],[1710095591000,0],[1710095592000,0],[1710095593000,0],[1710095594000,0],[1710095595000,0],[1710095596000,0],[1710095597000,0],[1710095598000,0],[1710095599000,0],[1710095600000,0],[1710095601000,0],[1710095602000,0],[1710095603000,0],[1710095604000,0],[1710095605000,0],[1710095606000,0],[1710095607000,0],[1710095608000,0],[1710095609000,0],[1710095610000,0],[1710095611000,0],[1710095612000,0],[1710095613000,0],[1710095614000,0],[1710095615000,0],[1710095616000,0],[1710095617000,0],[1710095618000,0],[1710095619000,0],[1710095620000,0],[1710095621000,0],[1710095622000,0],[1710095623000,0],[1710095624000,0],[1710095625000,0],[1710095626000,0],[1710095627000,0],[1710095628000,0],[1710095629000,0],[1710095630000,0],[1710095631000,0],[1710095632000,0],[1710095633000,0],[1710095634000,0],[1710095635000,0],[1710095636000,0],[1710095637000,0],[1710095638000,0],[1710095639000,0],[1710095640000,0],[1710095641000,0],[1710095642000,0],[1710095643000,0],[1710095644000,0],[1710095645000,0],[1710095646000,0],[1710095647000,0],[1710095648000,0],[1710095649000,0],[1710095650000,0],[1710095651000,0],[1710095652000,0],[1710095653000,0],[1710095654000,0],[1710095655000,0],[1710095656000,0],[1710095657000,0],[1710095658000,0],[1710095659000,0],[1710095660000,0],[1710095661000,0],[1710095662000,0],[1710095663000,0],[1710095664000,0],[1710095665000,0],[1710095666000,0],[1710095667000,0],[1710095668000,0],[1710095669000,0],[1710095670000,0],[1710095671000,0],[1710095672000,0],[1710095673000,0],[1710095674000,0],[1710095675000,0],[1710095676000,0],[1710095677000,0],[1710095678000,0],[1710095679000,0],[1710095680000,0],[1710095681000,0],[1710095682000,0],[1710095683000,0],[1710095684000,0],[1710095685000,0],[1710095686000,0],[1710095687000,0],[1710095688000,0],[1710095689000,0],[1710095690000,0],[1710095691000,0],[1710095692000,0],[1710095693000,0],[1710095694000,0],[1710095695000,0],[1710095696000,0],[1710095697000,0],[1710095698000,0],[1710095699000,0],[1710095700000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00D5FF',
name: 'validações',
data: [
[1710095456000,0],[1710095457000,0],[1710095458000,0],[1710095459000,5],[1710095460000,5],[1710095461000,0],[1710095462000,0],[1710095463000,0],[1710095464000,0],[1710095465000,0],[1710095466000,0],[1710095467000,0],[1710095468000,0],[1710095469000,0],[1710095470000,0],[1710095471000,0],[1710095472000,0],[1710095473000,0],[1710095474000,0],[1710095475000,0],[1710095476000,0],[1710095477000,0],[1710095478000,0],[1710095479000,0],[1710095480000,0],[1710095481000,0],[1710095482000,0],[1710095483000,0],[1710095484000,0],[1710095485000,0],[1710095486000,0],[1710095487000,0],[1710095488000,0],[1710095489000,0],[1710095490000,0],[1710095491000,0],[1710095492000,0],[1710095493000,0],[1710095494000,0],[1710095495000,0],[1710095496000,0],[1710095497000,0],[1710095498000,0],[1710095499000,0],[1710095500000,0],[1710095501000,0],[1710095502000,0],[1710095503000,0],[1710095504000,0],[1710095505000,0],[1710095506000,0],[1710095507000,0],[1710095508000,0],[1710095509000,0],[1710095510000,0],[1710095511000,0],[1710095512000,0],[1710095513000,0],[1710095514000,0],[1710095515000,0],[1710095516000,0],[1710095517000,0],[1710095518000,0],[1710095519000,0],[1710095520000,0],[1710095521000,0],[1710095522000,0],[1710095523000,0],[1710095524000,0],[1710095525000,0],[1710095526000,0],[1710095527000,0],[1710095528000,0],[1710095529000,0],[1710095530000,0],[1710095531000,0],[1710095532000,0],[1710095533000,0],[1710095534000,0],[1710095535000,0],[1710095536000,0],[1710095537000,0],[1710095538000,0],[1710095539000,0],[1710095540000,0],[1710095541000,0],[1710095542000,0],[1710095543000,0],[1710095544000,0],[1710095545000,0],[1710095546000,0],[1710095547000,0],[1710095548000,0],[1710095549000,0],[1710095550000,0],[1710095551000,0],[1710095552000,0],[1710095553000,0],[1710095554000,0],[1710095555000,0],[1710095556000,0],[1710095557000,0],[1710095558000,0],[1710095559000,0],[1710095560000,0],[1710095561000,0],[1710095562000,0],[1710095563000,0],[1710095564000,0],[1710095565000,0],[1710095566000,0],[1710095567000,0],[1710095568000,0],[1710095569000,0],[1710095570000,0],[1710095571000,0],[1710095572000,0],[1710095573000,0],[1710095574000,0],[1710095575000,0],[1710095576000,0],[1710095577000,0],[1710095578000,0],[1710095579000,0],[1710095580000,0],[1710095581000,0],[1710095582000,0],[1710095583000,0],[1710095584000,0],[1710095585000,0],[1710095586000,0],[1710095587000,0],[1710095588000,0],[1710095589000,0],[1710095590000,0],[1710095591000,0],[1710095592000,0],[1710095593000,0],[1710095594000,0],[1710095595000,0],[1710095596000,0],[1710095597000,0],[1710095598000,0],[1710095599000,0],[1710095600000,0],[1710095601000,0],[1710095602000,0],[1710095603000,0],[1710095604000,0],[1710095605000,0],[1710095606000,0],[1710095607000,0],[1710095608000,0],[1710095609000,0],[1710095610000,0],[1710095611000,0],[1710095612000,0],[1710095613000,0],[1710095614000,0],[1710095615000,0],[1710095616000,0],[1710095617000,0],[1710095618000,0],[1710095619000,0],[1710095620000,0],[1710095621000,0],[1710095622000,0],[1710095623000,0],[1710095624000,0],[1710095625000,0],[1710095626000,0],[1710095627000,0],[1710095628000,0],[1710095629000,0],[1710095630000,0],[1710095631000,0],[1710095632000,0],[1710095633000,0],[1710095634000,0],[1710095635000,0],[1710095636000,0],[1710095637000,0],[1710095638000,0],[1710095639000,0],[1710095640000,0],[1710095641000,0],[1710095642000,0],[1710095643000,0],[1710095644000,0],[1710095645000,0],[1710095646000,0],[1710095647000,0],[1710095648000,0],[1710095649000,0],[1710095650000,0],[1710095651000,0],[1710095652000,0],[1710095653000,0],[1710095654000,0],[1710095655000,0],[1710095656000,0],[1710095657000,0],[1710095658000,0],[1710095659000,0],[1710095660000,0],[1710095661000,0],[1710095662000,0],[1710095663000,0],[1710095664000,0],[1710095665000,0],[1710095666000,0],[1710095667000,0],[1710095668000,0],[1710095669000,0],[1710095670000,0],[1710095671000,0],[1710095672000,0],[1710095673000,0],[1710095674000,0],[1710095675000,0],[1710095676000,0],[1710095677000,0],[1710095678000,0],[1710095679000,0],[1710095680000,0],[1710095681000,0],[1710095682000,0],[1710095683000,0],[1710095684000,0],[1710095685000,0],[1710095686000,0],[1710095687000,0],[1710095688000,0],[1710095689000,0],[1710095690000,0],[1710095691000,0],[1710095692000,0],[1710095693000,0],[1710095694000,0],[1710095695000,0],[1710095696000,0],[1710095697000,0],[1710095698000,0],[1710095699000,0],[1710095700000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00FF00',
name: 'validação concorrência saldo - 0',
data: [
[1710095456000,0],[1710095457000,0],[1710095458000,1],[1710095459000,0],[1710095460000,0],[1710095461000,0],[1710095462000,0],[1710095463000,0],[1710095464000,0],[1710095465000,0],[1710095466000,0],[1710095467000,0],[1710095468000,0],[1710095469000,0],[1710095470000,0],[1710095471000,0],[1710095472000,0],[1710095473000,0],[1710095474000,0],[1710095475000,0],[1710095476000,0],[1710095477000,0],[1710095478000,0],[1710095479000,0],[1710095480000,0],[1710095481000,0],[1710095482000,0],[1710095483000,0],[1710095484000,0],[1710095485000,0],[1710095486000,0],[1710095487000,0],[1710095488000,0],[1710095489000,0],[1710095490000,0],[1710095491000,0],[1710095492000,0],[1710095493000,0],[1710095494000,0],[1710095495000,0],[1710095496000,0],[1710095497000,0],[1710095498000,0],[1710095499000,0],[1710095500000,0],[1710095501000,0],[1710095502000,0],[1710095503000,0],[1710095504000,0],[1710095505000,0],[1710095506000,0],[1710095507000,0],[1710095508000,0],[1710095509000,0],[1710095510000,0],[1710095511000,0],[1710095512000,0],[1710095513000,0],[1710095514000,0],[1710095515000,0],[1710095516000,0],[1710095517000,0],[1710095518000,0],[1710095519000,0],[1710095520000,0],[1710095521000,0],[1710095522000,0],[1710095523000,0],[1710095524000,0],[1710095525000,0],[1710095526000,0],[1710095527000,0],[1710095528000,0],[1710095529000,0],[1710095530000,0],[1710095531000,0],[1710095532000,0],[1710095533000,0],[1710095534000,0],[1710095535000,0],[1710095536000,0],[1710095537000,0],[1710095538000,0],[1710095539000,0],[1710095540000,0],[1710095541000,0],[1710095542000,0],[1710095543000,0],[1710095544000,0],[1710095545000,0],[1710095546000,0],[1710095547000,0],[1710095548000,0],[1710095549000,0],[1710095550000,0],[1710095551000,0],[1710095552000,0],[1710095553000,0],[1710095554000,0],[1710095555000,0],[1710095556000,0],[1710095557000,0],[1710095558000,0],[1710095559000,0],[1710095560000,0],[1710095561000,0],[1710095562000,0],[1710095563000,0],[1710095564000,0],[1710095565000,0],[1710095566000,0],[1710095567000,0],[1710095568000,0],[1710095569000,0],[1710095570000,0],[1710095571000,0],[1710095572000,0],[1710095573000,0],[1710095574000,0],[1710095575000,0],[1710095576000,0],[1710095577000,0],[1710095578000,0],[1710095579000,0],[1710095580000,0],[1710095581000,0],[1710095582000,0],[1710095583000,0],[1710095584000,0],[1710095585000,0],[1710095586000,0],[1710095587000,0],[1710095588000,0],[1710095589000,0],[1710095590000,0],[1710095591000,0],[1710095592000,0],[1710095593000,0],[1710095594000,0],[1710095595000,0],[1710095596000,0],[1710095597000,0],[1710095598000,0],[1710095599000,0],[1710095600000,0],[1710095601000,0],[1710095602000,0],[1710095603000,0],[1710095604000,0],[1710095605000,0],[1710095606000,0],[1710095607000,0],[1710095608000,0],[1710095609000,0],[1710095610000,0],[1710095611000,0],[1710095612000,0],[1710095613000,0],[1710095614000,0],[1710095615000,0],[1710095616000,0],[1710095617000,0],[1710095618000,0],[1710095619000,0],[1710095620000,0],[1710095621000,0],[1710095622000,0],[1710095623000,0],[1710095624000,0],[1710095625000,0],[1710095626000,0],[1710095627000,0],[1710095628000,0],[1710095629000,0],[1710095630000,0],[1710095631000,0],[1710095632000,0],[1710095633000,0],[1710095634000,0],[1710095635000,0],[1710095636000,0],[1710095637000,0],[1710095638000,0],[1710095639000,0],[1710095640000,0],[1710095641000,0],[1710095642000,0],[1710095643000,0],[1710095644000,0],[1710095645000,0],[1710095646000,0],[1710095647000,0],[1710095648000,0],[1710095649000,0],[1710095650000,0],[1710095651000,0],[1710095652000,0],[1710095653000,0],[1710095654000,0],[1710095655000,0],[1710095656000,0],[1710095657000,0],[1710095658000,0],[1710095659000,0],[1710095660000,0],[1710095661000,0],[1710095662000,0],[1710095663000,0],[1710095664000,0],[1710095665000,0],[1710095666000,0],[1710095667000,0],[1710095668000,0],[1710095669000,0],[1710095670000,0],[1710095671000,0],[1710095672000,0],[1710095673000,0],[1710095674000,0],[1710095675000,0],[1710095676000,0],[1710095677000,0],[1710095678000,0],[1710095679000,0],[1710095680000,0],[1710095681000,0],[1710095682000,0],[1710095683000,0],[1710095684000,0],[1710095685000,0],[1710095686000,0],[1710095687000,0],[1710095688000,0],[1710095689000,0],[1710095690000,0],[1710095691000,0],[1710095692000,0],[1710095693000,0],[1710095694000,0],[1710095695000,0],[1710095696000,0],[1710095697000,0],[1710095698000,0],[1710095699000,0],[1710095700000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#9D00FF',
name: 'validação concorrência transações - c',
data: [
[1710095456000,0],[1710095457000,25],[1710095458000,2],[1710095459000,0],[1710095460000,0],[1710095461000,0],[1710095462000,0],[1710095463000,0],[1710095464000,0],[1710095465000,0],[1710095466000,0],[1710095467000,0],[1710095468000,0],[1710095469000,0],[1710095470000,0],[1710095471000,0],[1710095472000,0],[1710095473000,0],[1710095474000,0],[1710095475000,0],[1710095476000,0],[1710095477000,0],[1710095478000,0],[1710095479000,0],[1710095480000,0],[1710095481000,0],[1710095482000,0],[1710095483000,0],[1710095484000,0],[1710095485000,0],[1710095486000,0],[1710095487000,0],[1710095488000,0],[1710095489000,0],[1710095490000,0],[1710095491000,0],[1710095492000,0],[1710095493000,0],[1710095494000,0],[1710095495000,0],[1710095496000,0],[1710095497000,0],[1710095498000,0],[1710095499000,0],[1710095500000,0],[1710095501000,0],[1710095502000,0],[1710095503000,0],[1710095504000,0],[1710095505000,0],[1710095506000,0],[1710095507000,0],[1710095508000,0],[1710095509000,0],[1710095510000,0],[1710095511000,0],[1710095512000,0],[1710095513000,0],[1710095514000,0],[1710095515000,0],[1710095516000,0],[1710095517000,0],[1710095518000,0],[1710095519000,0],[1710095520000,0],[1710095521000,0],[1710095522000,0],[1710095523000,0],[1710095524000,0],[1710095525000,0],[1710095526000,0],[1710095527000,0],[1710095528000,0],[1710095529000,0],[1710095530000,0],[1710095531000,0],[1710095532000,0],[1710095533000,0],[1710095534000,0],[1710095535000,0],[1710095536000,0],[1710095537000,0],[1710095538000,0],[1710095539000,0],[1710095540000,0],[1710095541000,0],[1710095542000,0],[1710095543000,0],[1710095544000,0],[1710095545000,0],[1710095546000,0],[1710095547000,0],[1710095548000,0],[1710095549000,0],[1710095550000,0],[1710095551000,0],[1710095552000,0],[1710095553000,0],[1710095554000,0],[1710095555000,0],[1710095556000,0],[1710095557000,0],[1710095558000,0],[1710095559000,0],[1710095560000,0],[1710095561000,0],[1710095562000,0],[1710095563000,0],[1710095564000,0],[1710095565000,0],[1710095566000,0],[1710095567000,0],[1710095568000,0],[1710095569000,0],[1710095570000,0],[1710095571000,0],[1710095572000,0],[1710095573000,0],[1710095574000,0],[1710095575000,0],[1710095576000,0],[1710095577000,0],[1710095578000,0],[1710095579000,0],[1710095580000,0],[1710095581000,0],[1710095582000,0],[1710095583000,0],[1710095584000,0],[1710095585000,0],[1710095586000,0],[1710095587000,0],[1710095588000,0],[1710095589000,0],[1710095590000,0],[1710095591000,0],[1710095592000,0],[1710095593000,0],[1710095594000,0],[1710095595000,0],[1710095596000,0],[1710095597000,0],[1710095598000,0],[1710095599000,0],[1710095600000,0],[1710095601000,0],[1710095602000,0],[1710095603000,0],[1710095604000,0],[1710095605000,0],[1710095606000,0],[1710095607000,0],[1710095608000,0],[1710095609000,0],[1710095610000,0],[1710095611000,0],[1710095612000,0],[1710095613000,0],[1710095614000,0],[1710095615000,0],[1710095616000,0],[1710095617000,0],[1710095618000,0],[1710095619000,0],[1710095620000,0],[1710095621000,0],[1710095622000,0],[1710095623000,0],[1710095624000,0],[1710095625000,0],[1710095626000,0],[1710095627000,0],[1710095628000,0],[1710095629000,0],[1710095630000,0],[1710095631000,0],[1710095632000,0],[1710095633000,0],[1710095634000,0],[1710095635000,0],[1710095636000,0],[1710095637000,0],[1710095638000,0],[1710095639000,0],[1710095640000,0],[1710095641000,0],[1710095642000,0],[1710095643000,0],[1710095644000,0],[1710095645000,0],[1710095646000,0],[1710095647000,0],[1710095648000,0],[1710095649000,0],[1710095650000,0],[1710095651000,0],[1710095652000,0],[1710095653000,0],[1710095654000,0],[1710095655000,0],[1710095656000,0],[1710095657000,0],[1710095658000,0],[1710095659000,0],[1710095660000,0],[1710095661000,0],[1710095662000,0],[1710095663000,0],[1710095664000,0],[1710095665000,0],[1710095666000,0],[1710095667000,0],[1710095668000,0],[1710095669000,0],[1710095670000,0],[1710095671000,0],[1710095672000,0],[1710095673000,0],[1710095674000,0],[1710095675000,0],[1710095676000,0],[1710095677000,0],[1710095678000,0],[1710095679000,0],[1710095680000,0],[1710095681000,0],[1710095682000,0],[1710095683000,0],[1710095684000,0],[1710095685000,0],[1710095686000,0],[1710095687000,0],[1710095688000,0],[1710095689000,0],[1710095690000,0],[1710095691000,0],[1710095692000,0],[1710095693000,0],[1710095694000,0],[1710095695000,0],[1710095696000,0],[1710095697000,0],[1710095698000,0],[1710095699000,0],[1710095700000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FF00E1',
name: 'validação concorrência saldo - -25',
data: [
[1710095456000,1],[1710095457000,0],[1710095458000,0],[1710095459000,0],[1710095460000,0],[1710095461000,0],[1710095462000,0],[1710095463000,0],[1710095464000,0],[1710095465000,0],[1710095466000,0],[1710095467000,0],[1710095468000,0],[1710095469000,0],[1710095470000,0],[1710095471000,0],[1710095472000,0],[1710095473000,0],[1710095474000,0],[1710095475000,0],[1710095476000,0],[1710095477000,0],[1710095478000,0],[1710095479000,0],[1710095480000,0],[1710095481000,0],[1710095482000,0],[1710095483000,0],[1710095484000,0],[1710095485000,0],[1710095486000,0],[1710095487000,0],[1710095488000,0],[1710095489000,0],[1710095490000,0],[1710095491000,0],[1710095492000,0],[1710095493000,0],[1710095494000,0],[1710095495000,0],[1710095496000,0],[1710095497000,0],[1710095498000,0],[1710095499000,0],[1710095500000,0],[1710095501000,0],[1710095502000,0],[1710095503000,0],[1710095504000,0],[1710095505000,0],[1710095506000,0],[1710095507000,0],[1710095508000,0],[1710095509000,0],[1710095510000,0],[1710095511000,0],[1710095512000,0],[1710095513000,0],[1710095514000,0],[1710095515000,0],[1710095516000,0],[1710095517000,0],[1710095518000,0],[1710095519000,0],[1710095520000,0],[1710095521000,0],[1710095522000,0],[1710095523000,0],[1710095524000,0],[1710095525000,0],[1710095526000,0],[1710095527000,0],[1710095528000,0],[1710095529000,0],[1710095530000,0],[1710095531000,0],[1710095532000,0],[1710095533000,0],[1710095534000,0],[1710095535000,0],[1710095536000,0],[1710095537000,0],[1710095538000,0],[1710095539000,0],[1710095540000,0],[1710095541000,0],[1710095542000,0],[1710095543000,0],[1710095544000,0],[1710095545000,0],[1710095546000,0],[1710095547000,0],[1710095548000,0],[1710095549000,0],[1710095550000,0],[1710095551000,0],[1710095552000,0],[1710095553000,0],[1710095554000,0],[1710095555000,0],[1710095556000,0],[1710095557000,0],[1710095558000,0],[1710095559000,0],[1710095560000,0],[1710095561000,0],[1710095562000,0],[1710095563000,0],[1710095564000,0],[1710095565000,0],[1710095566000,0],[1710095567000,0],[1710095568000,0],[1710095569000,0],[1710095570000,0],[1710095571000,0],[1710095572000,0],[1710095573000,0],[1710095574000,0],[1710095575000,0],[1710095576000,0],[1710095577000,0],[1710095578000,0],[1710095579000,0],[1710095580000,0],[1710095581000,0],[1710095582000,0],[1710095583000,0],[1710095584000,0],[1710095585000,0],[1710095586000,0],[1710095587000,0],[1710095588000,0],[1710095589000,0],[1710095590000,0],[1710095591000,0],[1710095592000,0],[1710095593000,0],[1710095594000,0],[1710095595000,0],[1710095596000,0],[1710095597000,0],[1710095598000,0],[1710095599000,0],[1710095600000,0],[1710095601000,0],[1710095602000,0],[1710095603000,0],[1710095604000,0],[1710095605000,0],[1710095606000,0],[1710095607000,0],[1710095608000,0],[1710095609000,0],[1710095610000,0],[1710095611000,0],[1710095612000,0],[1710095613000,0],[1710095614000,0],[1710095615000,0],[1710095616000,0],[1710095617000,0],[1710095618000,0],[1710095619000,0],[1710095620000,0],[1710095621000,0],[1710095622000,0],[1710095623000,0],[1710095624000,0],[1710095625000,0],[1710095626000,0],[1710095627000,0],[1710095628000,0],[1710095629000,0],[1710095630000,0],[1710095631000,0],[1710095632000,0],[1710095633000,0],[1710095634000,0],[1710095635000,0],[1710095636000,0],[1710095637000,0],[1710095638000,0],[1710095639000,0],[1710095640000,0],[1710095641000,0],[1710095642000,0],[1710095643000,0],[1710095644000,0],[1710095645000,0],[1710095646000,0],[1710095647000,0],[1710095648000,0],[1710095649000,0],[1710095650000,0],[1710095651000,0],[1710095652000,0],[1710095653000,0],[1710095654000,0],[1710095655000,0],[1710095656000,0],[1710095657000,0],[1710095658000,0],[1710095659000,0],[1710095660000,0],[1710095661000,0],[1710095662000,0],[1710095663000,0],[1710095664000,0],[1710095665000,0],[1710095666000,0],[1710095667000,0],[1710095668000,0],[1710095669000,0],[1710095670000,0],[1710095671000,0],[1710095672000,0],[1710095673000,0],[1710095674000,0],[1710095675000,0],[1710095676000,0],[1710095677000,0],[1710095678000,0],[1710095679000,0],[1710095680000,0],[1710095681000,0],[1710095682000,0],[1710095683000,0],[1710095684000,0],[1710095685000,0],[1710095686000,0],[1710095687000,0],[1710095688000,0],[1710095689000,0],[1710095690000,0],[1710095691000,0],[1710095692000,0],[1710095693000,0],[1710095694000,0],[1710095695000,0],[1710095696000,0],[1710095697000,0],[1710095698000,0],[1710095699000,0],[1710095700000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#AECAEB',
name: 'validação concorrência transações - d',
data: [
[1710095456000,25],[1710095457000,0],[1710095458000,0],[1710095459000,0],[1710095460000,0],[1710095461000,0],[1710095462000,0],[1710095463000,0],[1710095464000,0],[1710095465000,0],[1710095466000,0],[1710095467000,0],[1710095468000,0],[1710095469000,0],[1710095470000,0],[1710095471000,0],[1710095472000,0],[1710095473000,0],[1710095474000,0],[1710095475000,0],[1710095476000,0],[1710095477000,0],[1710095478000,0],[1710095479000,0],[1710095480000,0],[1710095481000,0],[1710095482000,0],[1710095483000,0],[1710095484000,0],[1710095485000,0],[1710095486000,0],[1710095487000,0],[1710095488000,0],[1710095489000,0],[1710095490000,0],[1710095491000,0],[1710095492000,0],[1710095493000,0],[1710095494000,0],[1710095495000,0],[1710095496000,0],[1710095497000,0],[1710095498000,0],[1710095499000,0],[1710095500000,0],[1710095501000,0],[1710095502000,0],[1710095503000,0],[1710095504000,0],[1710095505000,0],[1710095506000,0],[1710095507000,0],[1710095508000,0],[1710095509000,0],[1710095510000,0],[1710095511000,0],[1710095512000,0],[1710095513000,0],[1710095514000,0],[1710095515000,0],[1710095516000,0],[1710095517000,0],[1710095518000,0],[1710095519000,0],[1710095520000,0],[1710095521000,0],[1710095522000,0],[1710095523000,0],[1710095524000,0],[1710095525000,0],[1710095526000,0],[1710095527000,0],[1710095528000,0],[1710095529000,0],[1710095530000,0],[1710095531000,0],[1710095532000,0],[1710095533000,0],[1710095534000,0],[1710095535000,0],[1710095536000,0],[1710095537000,0],[1710095538000,0],[1710095539000,0],[1710095540000,0],[1710095541000,0],[1710095542000,0],[1710095543000,0],[1710095544000,0],[1710095545000,0],[1710095546000,0],[1710095547000,0],[1710095548000,0],[1710095549000,0],[1710095550000,0],[1710095551000,0],[1710095552000,0],[1710095553000,0],[1710095554000,0],[1710095555000,0],[1710095556000,0],[1710095557000,0],[1710095558000,0],[1710095559000,0],[1710095560000,0],[1710095561000,0],[1710095562000,0],[1710095563000,0],[1710095564000,0],[1710095565000,0],[1710095566000,0],[1710095567000,0],[1710095568000,0],[1710095569000,0],[1710095570000,0],[1710095571000,0],[1710095572000,0],[1710095573000,0],[1710095574000,0],[1710095575000,0],[1710095576000,0],[1710095577000,0],[1710095578000,0],[1710095579000,0],[1710095580000,0],[1710095581000,0],[1710095582000,0],[1710095583000,0],[1710095584000,0],[1710095585000,0],[1710095586000,0],[1710095587000,0],[1710095588000,0],[1710095589000,0],[1710095590000,0],[1710095591000,0],[1710095592000,0],[1710095593000,0],[1710095594000,0],[1710095595000,0],[1710095596000,0],[1710095597000,0],[1710095598000,0],[1710095599000,0],[1710095600000,0],[1710095601000,0],[1710095602000,0],[1710095603000,0],[1710095604000,0],[1710095605000,0],[1710095606000,0],[1710095607000,0],[1710095608000,0],[1710095609000,0],[1710095610000,0],[1710095611000,0],[1710095612000,0],[1710095613000,0],[1710095614000,0],[1710095615000,0],[1710095616000,0],[1710095617000,0],[1710095618000,0],[1710095619000,0],[1710095620000,0],[1710095621000,0],[1710095622000,0],[1710095623000,0],[1710095624000,0],[1710095625000,0],[1710095626000,0],[1710095627000,0],[1710095628000,0],[1710095629000,0],[1710095630000,0],[1710095631000,0],[1710095632000,0],[1710095633000,0],[1710095634000,0],[1710095635000,0],[1710095636000,0],[1710095637000,0],[1710095638000,0],[1710095639000,0],[1710095640000,0],[1710095641000,0],[1710095642000,0],[1710095643000,0],[1710095644000,0],[1710095645000,0],[1710095646000,0],[1710095647000,0],[1710095648000,0],[1710095649000,0],[1710095650000,0],[1710095651000,0],[1710095652000,0],[1710095653000,0],[1710095654000,0],[1710095655000,0],[1710095656000,0],[1710095657000,0],[1710095658000,0],[1710095659000,0],[1710095660000,0],[1710095661000,0],[1710095662000,0],[1710095663000,0],[1710095664000,0],[1710095665000,0],[1710095666000,0],[1710095667000,0],[1710095668000,0],[1710095669000,0],[1710095670000,0],[1710095671000,0],[1710095672000,0],[1710095673000,0],[1710095674000,0],[1710095675000,0],[1710095676000,0],[1710095677000,0],[1710095678000,0],[1710095679000,0],[1710095680000,0],[1710095681000,0],[1710095682000,0],[1710095683000,0],[1710095684000,0],[1710095685000,0],[1710095686000,0],[1710095687000,0],[1710095688000,0],[1710095689000,0],[1710095690000,0],[1710095691000,0],[1710095692000,0],[1710095693000,0],[1710095694000,0],[1710095695000,0],[1710095696000,0],[1710095697000,0],[1710095698000,0],[1710095699000,0],[1710095700000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
allUsersData
]
});
allUsersChart.setTitle({
text: '<span class="chart_title">Active Users along the Simulation</span>',
useHTML: true
});
allUsersData.yAxis = 1;
var responsetimeDistributionChart = new Highcharts.Chart({
chart: {
renderTo: 'responsetimeDistributionContainer',
type: 'column',
marginBottom: 60
},
credits: { enabled: false },
legend: {
enabled: true,
floating: true,
y: 5,
borderWidth: 0,
itemStyle: { fontWeight: "normal" },
symbolRadius: 0
},
title: { text: 'A title to let highcharts reserve the place for the title set later' },
navigator: {
maskInside: false
},
xAxis: {
categories: ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '10', '11', '12', '13', '14', '15', '16', '18', '19', '20', '21', '22', '23', '25', '26', '28', '31', '40', '42', '45', '54', '55', '56', '59', '64', '69', '89'],
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: [
8.14,60.99,19.49,8.76,1.31,0.53,0.36,0.17,0.08,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
],
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
],
tooltip: { yDecimals: 0, ySuffix: 'ms' }
}
]
});
responsetimeDistributionChart.setTitle({
text: '<span class="chart_title">Response Time Distribution</span>',
useHTML: true
});
var responsetimepercentilesovertimeokPercentiles = unpack([[1710095456,[20,30,49,60,64,64,66,74,85,89]],[1710095457,null],[1710095458,[8,11,13,15,15,15,16,16,18,19]],[1710095459,null],[1710095460,[1,1,2,9,14,17,20,22,25,25]],[1710095461,[3,3,3,4,4,4,4,4,4,5]],[1710095462,[2,2,2,3,3,3,4,4,4,5]],[1710095463,[2,2,2,3,3,3,3,3,3,3]],[1710095464,[2,2,2,3,3,3,3,3,3,3]],[1710095465,[2,2,2,2,2,2,2,2,2,3]],[1710095466,[1,2,2,2,2,2,2,2,2,3]],[1710095467,[1,2,2,2,2,2,2,2,2,2]],[1710095468,[1,2,2,2,2,2,2,2,2,3]],[1710095469,[1,2,2,2,2,2,2,3,3,3]],[1710095470,[1,2,2,2,2,2,2,2,2,3]],[1710095471,[1,1,2,2,2,2,2,3,3,3]],[1710095472,[1,1,2,2,2,2,2,2,2,2]],[1710095473,[1,1,1,2,2,2,2,2,2,3]],[1710095474,[1,1,2,2,2,2,2,2,2,2]],[1710095475,[1,2,2,2,2,2,2,2,2,3]],[1710095476,[1,1,2,2,2,2,2,3,3,3]],[1710095477,[1,1,1,2,2,2,2,2,2,2]],[1710095478,[1,1,1,1,1,2,2,2,2,2]],[1710095479,[1,1,1,1,1,1,1,2,2,2]],[1710095480,[1,1,1,2,2,2,2,2,2,2]],[1710095481,[1,1,1,2,2,2,2,2,2,2]],[1710095482,[1,1,1,2,2,2,2,2,2,2]],[1710095483,[1,1,1,1,1,1,2,2,2,2]],[1710095484,[1,1,1,1,1,2,2,2,2,2]],[1710095485,[1,1,1,1,2,2,2,2,2,2]],[1710095486,[1,1,1,1,2,2,2,2,2,2]],[1710095487,[1,1,1,1,1,2,2,2,2,2]],[1710095488,[0,1,1,1,1,1,2,2,2,3]],[1710095489,[0,1,1,1,1,1,1,2,2,2]],[1710095490,[1,1,1,1,1,1,1,1,2,2]],[1710095491,[1,1,1,1,1,2,2,2,2,2]],[1710095492,[0,1,1,1,1,2,2,2,2,2]],[1710095493,[0,1,1,1,2,2,2,2,2,2]],[1710095494,[0,1,1,1,1,1,1,1,2,2]],[1710095495,[0,1,1,1,1,1,1,1,2,2]],[1710095496,[0,1,1,1,1,1,1,1,2,2]],[1710095497,[0,1,1,1,1,1,1,2,2,3]],[1710095498,[0,1,1,1,1,1,1,2,2,2]],[1710095499,[1,1,1,1,1,1,1,2,2,2]],[1710095500,[1,1,1,1,1,1,2,2,2,2]],[1710095501,[0,1,1,1,1,2,2,2,2,2]],[1710095502,[0,1,1,1,1,1,2,2,2,2]],[1710095503,[0,1,1,2,2,2,2,2,2,2]],[1710095504,[0,1,1,1,1,1,2,2,2,2]],[1710095505,[1,1,1,1,1,2,2,2,2,2]],[1710095506,[1,1,1,1,1,1,2,2,2,2]],[1710095507,[0,1,1,1,1,1,2,2,2,2]],[1710095508,[0,1,1,1,1,1,2,2,2,3]],[1710095509,[1,1,1,1,1,1,2,2,2,3]],[1710095510,[0,1,1,1,1,1,2,2,2,2]],[1710095511,[1,1,1,1,1,1,1,2,2,2]],[1710095512,[0,1,1,1,1,1,1,2,2,2]],[1710095513,[0,1,1,1,1,1,2,2,2,2]],[1710095514,[0,1,1,1,1,1,2,2,2,2]],[1710095515,[0,0,1,1,1,1,1,1,2,2]],[1710095516,[0,0,1,1,1,1,1,1,2,2]],[1710095517,[0,1,1,1,1,1,1,2,2,2]],[1710095518,[1,1,1,1,1,1,1,2,2,2]],[1710095519,[1,1,1,1,1,1,2,2,2,2]],[1710095520,[0,1,1,1,1,1,2,2,2,3]],[1710095521,[0,1,1,1,1,1,1,1,2,3]],[1710095522,[0,1,1,1,1,1,1,1,2,2]],[1710095523,[0,1,1,1,1,1,1,2,2,2]],[1710095524,[1,1,1,1,1,1,1,2,2,3]],[1710095525,[1,1,1,1,1,1,1,2,2,3]],[1710095526,[1,1,1,1,1,2,2,2,2,2]],[1710095527,[0,1,1,1,1,1,1,2,2,3]],[1710095528,[0,1,1,1,1,1,1,1,2,3]],[1710095529,[0,1,1,1,1,1,1,1,2,2]],[1710095530,[1,1,1,1,1,1,2,2,2,2]],[1710095531,[1,1,1,1,1,1,2,2,2,3]],[1710095532,[0,1,1,1,1,1,1,2,2,2]],[1710095533,[0,1,1,1,1,1,1,2,2,2]],[1710095534,[1,1,1,1,1,1,2,2,2,2]],[1710095535,[1,1,1,1,1,1,2,2,2,3]],[1710095536,[0,1,1,1,1,1,2,2,2,2]],[1710095537,[0,0,1,1,1,1,1,1,2,2]],[1710095538,[0,1,1,1,1,1,1,1,2,2]],[1710095539,[0,1,1,1,1,1,1,2,2,2]],[1710095540,[0,1,1,1,1,1,2,2,2,2]],[1710095541,[0,1,1,1,1,1,1,2,2,3]],[1710095542,[0,1,1,1,1,1,2,2,2,2]],[1710095543,[0,1,1,1,1,1,1,2,2,2]],[1710095544,[0,1,1,1,1,1,1,1,2,2]],[1710095545,[0,1,1,1,1,1,1,1,2,2]],[1710095546,[0,1,1,1,1,1,1,2,2,2]],[1710095547,[0,1,1,1,1,1,1,2,2,5]],[1710095548,[0,1,1,1,1,1,1,1,2,2]],[1710095549,[0,1,1,1,1,1,2,2,2,3]],[1710095550,[0,1,1,1,1,1,1,2,2,2]],[1710095551,[1,1,1,1,1,1,1,1,2,3]],[1710095552,[0,1,1,1,1,1,1,1,2,3]],[1710095553,[0,1,1,1,1,1,1,1,2,2]],[1710095554,[0,1,1,1,1,1,1,1,1,2]],[1710095555,[0,1,1,1,1,1,1,1,2,3]],[1710095556,[0,1,1,1,1,1,1,1,3,3]],[1710095557,[0,1,1,1,1,1,1,2,2,2]],[1710095558,[0,1,1,1,1,1,1,1,2,3]],[1710095559,[1,1,1,1,1,1,1,1,2,2]],[1710095560,[0,1,1,1,1,1,1,1,2,3]],[1710095561,[0,0,1,1,1,1,1,1,2,3]],[1710095562,[0,0,1,1,1,1,1,1,2,2]],[1710095563,[0,1,1,1,1,1,1,1,2,3]],[1710095564,[0,1,1,1,1,1,1,2,2,2]],[1710095565,[1,1,1,1,1,1,2,2,2,3]],[1710095566,[0,1,1,1,1,2,2,2,2,3]],[1710095567,[0,0,1,1,1,1,1,2,2,3]],[1710095568,[0,1,1,1,1,1,1,2,2,3]],[1710095569,[0,1,1,1,1,1,1,2,2,3]],[1710095570,[1,1,1,1,1,1,2,2,3,3]],[1710095571,[0,1,1,1,1,1,1,2,3,3]],[1710095572,[0,1,1,1,1,1,1,2,3,4]],[1710095573,[0,1,2,3,3,3,3,3,4,5]],[1710095574,[1,1,1,2,3,3,3,3,4,4]],[1710095575,[1,1,2,3,3,3,3,3,4,5]],[1710095576,[0,1,1,2,2,3,3,3,4,5]],[1710095577,[0,1,2,3,3,3,3,3,4,6]],[1710095578,[0,1,1,2,2,2,3,3,4,4]],[1710095579,[0,1,2,2,2,2,3,3,4,5]],[1710095580,[0,1,2,2,2,2,3,3,4,5]],[1710095581,[0,1,2,3,3,3,3,3,4,5]],[1710095582,[0,1,2,3,3,3,3,3,4,5]],[1710095583,[1,1,1,2,3,3,3,3,5,6]],[1710095584,[1,1,2,3,3,3,3,3,5,5]],[1710095585,[0,1,1,3,3,3,3,3,5,7]],[1710095586,[0,1,2,3,3,3,3,3,5,6]],[1710095587,[0,1,1,2,2,2,3,3,4,5]],[1710095588,[0,1,2,3,3,3,3,3,4,5]],[1710095589,[0,1,1,2,2,2,3,3,4,5]],[1710095590,[1,2,2,3,3,3,3,3,5,6]],[1710095591,[1,1,1,1,2,2,2,3,4,4]],[1710095592,[1,2,2,3,3,3,3,4,5,6]],[1710095593,[0,1,1,1,1,1,1,2,3,4]],[1710095594,[1,2,2,3,3,3,3,3,5,6]],[1710095595,[0,1,1,1,1,1,1,1,3,4]],[1710095596,[1,2,2,3,3,3,3,4,5,6]],[1710095597,[0,1,1,1,1,1,2,2,4,5]],[1710095598,[0,2,2,3,3,3,3,3,5,6]],[1710095599,[0,1,1,1,1,1,1,2,4,5]],[1710095600,[0,1,2,2,2,3,3,4,5,6]],[1710095601,[0,1,1,1,1,1,1,1,4,4]],[1710095602,[1,1,2,3,3,3,3,3,5,6]],[1710095603,[1,1,1,1,1,1,1,2,3,4]],[1710095604,[1,1,2,2,2,2,2,3,5,8]],[1710095605,[0,0,1,1,1,1,2,2,3,5]],[1710095606,[0,1,2,3,3,3,3,3,5,7]],[1710095607,[0,1,1,1,1,2,2,3,4,6]],[1710095608,[1,1,1,2,3,3,3,3,5,6]],[1710095609,[1,1,1,2,2,2,3,3,4,6]],[1710095610,[0,1,1,2,2,2,2,3,5,6]],[1710095611,[0,1,1,2,2,2,2,3,4,5]],[1710095612,[0,1,1,2,2,3,3,4,4,8]],[1710095613,[0,0,1,2,2,3,3,3,4,6]],[1710095614,[0,0,1,1,1,2,2,3,4,6]],[1710095615,[0,1,1,2,2,2,2,3,4,7]],[1710095616,[0,1,1,2,2,2,2,3,4,5]],[1710095617,[0,1,1,2,2,3,3,3,4,5]],[1710095618,[0,1,1,1,1,1,1,2,4,7]],[1710095619,[0,1,1,2,2,3,3,3,5,6]],[1710095620,[0,1,1,1,1,1,1,2,4,5]],[1710095621,[0,0,1,2,2,2,3,3,5,6]],[1710095622,[0,0,1,1,1,1,1,2,3,4]],[1710095623,[0,1,1,2,2,3,3,3,5,7]],[1710095624,[1,1,1,1,1,1,1,2,4,7]],[1710095625,[0,1,1,2,2,2,3,3,5,7]],[1710095626,[0,1,1,1,1,1,1,2,3,5]],[1710095627,[0,1,1,2,2,3,3,3,4,7]],[1710095628,[0,1,1,1,1,1,1,2,3,4]],[1710095629,[0,1,1,2,2,2,3,3,4,7]],[1710095630,[1,1,1,1,1,1,1,2,4,4]],[1710095631,[1,1,1,2,2,3,3,3,4,6]],[1710095632,[0,1,1,1,2,2,2,2,4,5]],[1710095633,[0,1,1,2,2,2,2,3,4,7]],[1710095634,[0,0,1,1,1,1,1,1,4,4]],[1710095635,[0,1,2,2,2,2,2,3,5,6]],[1710095636,[0,0,1,2,2,2,2,3,5,7]],[1710095637,[0,2,2,2,2,2,2,2,5,6]],[1710095638,[0,1,1,2,2,2,3,3,4,7]],[1710095639,[1,2,2,3,3,3,3,3,6,7]],[1710095640,[1,1,1,1,2,2,3,3,4,8]],[1710095641,[1,2,3,3,3,3,3,4,7,7]],[1710095642,[0,1,1,1,1,2,2,2,4,6]],[1710095643,[1,2,2,3,3,3,3,3,6,7]],[1710095644,[0,1,1,1,1,1,2,2,4,5]],[1710095645,[1,2,2,3,3,3,3,4,7,8]],[1710095646,[0,1,1,1,1,1,1,2,5,5]],[1710095647,[0,2,2,2,2,3,3,3,7,7]],[1710095648,[0,1,1,1,2,2,2,2,5,8]],[1710095649,[1,2,3,3,3,3,4,4,7,8]],[1710095650,[0,0,1,2,2,2,3,3,5,8]],[1710095651,[0,1,2,2,2,3,3,3,6,10]],[1710095652,[0,1,1,1,2,2,2,3,5,7]],[1710095653,[0,1,2,3,3,3,3,4,6,9]],[1710095654,[0,1,1,2,2,2,3,3,5,6]],[1710095655,[1,1,2,2,2,3,3,3,7,7]],[1710095656,[0,1,1,2,2,2,2,3,5,7]],[1710095657,[1,1,2,3,3,3,3,4,5,7]],[1710095658,[1,1,1,2,3,3,3,3,5,7]],[1710095659,[1,1,1,2,3,3,3,3,6,7]],[1710095660,[0,0,1,2,3,3,3,4,5,8]],[1710095661,[0,1,1,2,2,3,3,4,5,8]],[1710095662,[0,1,1,2,3,3,3,3,6,7]],[1710095663,[0,0,1,2,2,2,2,3,5,8]],[1710095664,[1,1,2,2,2,2,2,3,6,8]],[1710095665,[0,1,1,1,2,2,2,3,5,7]],[1710095666,[0,1,2,2,2,3,3,3,5,8]],[1710095667,[0,1,1,1,1,2,2,3,5,8]],[1710095668,[1,1,2,3,3,3,3,4,6,8]],[1710095669,[0,1,1,1,1,2,2,2,5,5]],[1710095670,[0,1,2,3,3,3,3,4,7,8]],[1710095671,[0,0,0,1,1,1,1,1,5,6]],[1710095672,[0,1,2,2,2,2,3,3,7,10]],[1710095673,[0,1,1,1,1,1,1,1,5,6]],[1710095674,[1,1,2,3,3,3,3,4,7,9]],[1710095675,[1,1,1,1,1,2,2,2,6,6]],[1710095676,[1,1,2,3,3,3,3,4,7,9]],[1710095677,[1,1,1,1,2,2,2,2,6,6]],[1710095678,[0,1,2,2,2,3,3,4,7,10]],[1710095679,[0,1,1,1,1,1,1,2,5,5]],[1710095680,[0,1,2,2,3,3,3,4,6,9]],[1710095681,[1,1,1,1,1,2,2,2,6,6]],[1710095682,[1,1,2,3,3,3,3,4,6,8]],[1710095683,[0,1,1,1,1,1,2,2,6,6]],[1710095684,[0,1,1,2,3,3,3,4,7,8]],[1710095685,[1,1,1,1,1,1,1,2,6,6]],[1710095686,[1,1,1,2,2,3,3,3,6,9]],[1710095687,[1,1,1,1,1,2,2,2,6,6]],[1710095688,[1,1,1,2,3,3,3,3,6,9]],[1710095689,[0,1,1,1,1,2,2,2,3,6]],[1710095690,[0,0,1,1,1,2,2,2,5,7]],[1710095691,[0,0,1,1,1,1,2,2,5,7]],[1710095692,[0,0,1,1,1,1,1,2,2,3]],[1710095693,[0,1,1,1,1,1,2,2,6,7]],[1710095694,[1,1,1,1,1,1,1,2,6,6]],[1710095695,[0,1,1,1,2,2,2,3,6,8]],[1710095696,[0,0,1,1,1,1,1,1,6,6]],[1710095697,[0,1,1,1,1,2,2,3,6,7]],[1710095698,[1,2,2,3,3,3,3,3,8,9]],[1710095699,[1,1,1,2,2,2,3,3,6,8]],[1710095700,[0,1,2,2,3,3,3,3,8,10]]]);
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([[1710095456,[25,16,9]],[1710095457,[1,0,1]],[1710095458,[25,21,4]],[1710095459,[1,0,1]],[1710095460,[71,70,1]],[1710095461,[3,3,0]],[1710095462,[6,6,0]],[1710095463,[9,9,0]],[1710095464,[11,11,0]],[1710095465,[13,13,0]],[1710095466,[18,18,0]],[1710095467,[19,19,0]],[1710095468,[24,24,0]],[1710095469,[26,26,0]],[1710095470,[27,27,0]],[1710095471,[32,32,0]],[1710095472,[34,34,0]],[1710095473,[37,37,0]],[1710095474,[39,39,0]],[1710095475,[43,43,0]],[1710095476,[45,45,0]],[1710095477,[48,48,0]],[1710095478,[50,50,0]],[1710095479,[54,54,0]],[1710095480,[56,56,0]],[1710095481,[60,60,0]],[1710095482,[61,61,0]],[1710095483,[65,65,0]],[1710095484,[67,67,0]],[1710095485,[70,70,0]],[1710095486,[74,74,0]],[1710095487,[76,76,0]],[1710095488,[80,80,0]],[1710095489,[81,81,0]],[1710095490,[84,84,0]],[1710095491,[89,89,0]],[1710095492,[89,89,0]],[1710095493,[93,93,0]],[1710095494,[96,96,0]],[1710095495,[98,98,0]],[1710095496,[102,102,0]],[1710095497,[104,104,0]],[1710095498,[107,107,0]],[1710095499,[109,109,0]],[1710095500,[114,114,0]],[1710095501,[115,115,0]],[1710095502,[119,119,0]],[1710095503,[121,121,0]],[1710095504,[123,123,0]],[1710095505,[126,126,0]],[1710095506,[129,129,0]],[1710095507,[133,133,0]],[1710095508,[134,134,0]],[1710095509,[139,139,0]],[1710095510,[140,140,0]],[1710095511,[144,144,0]],[1710095512,[146,146,0]],[1710095513,[149,149,0]],[1710095514,[151,151,0]],[1710095515,[155,155,0]],[1710095516,[158,158,0]],[1710095517,[161,161,0]],[1710095518,[163,163,0]],[1710095519,[166,166,0]],[1710095520,[170,170,0]],[1710095521,[170,170,0]],[1710095522,[174,174,0]],[1710095523,[177,177,0]],[1710095524,[180,180,0]],[1710095525,[183,183,0]],[1710095526,[186,186,0]],[1710095527,[188,188,0]],[1710095528,[192,192,0]],[1710095529,[194,194,0]],[1710095530,[197,197,0]],[1710095531,[199,199,0]],[1710095532,[203,203,0]],[1710095533,[205,205,0]],[1710095534,[208,208,0]],[1710095535,[211,211,0]],[1710095536,[213,213,0]],[1710095537,[217,217,0]],[1710095538,[219,219,0]],[1710095539,[222,222,0]],[1710095540,[225,225,0]],[1710095541,[228,228,0]],[1710095542,[229,229,0]],[1710095543,[234,234,0]],[1710095544,[237,237,0]],[1710095545,[238,238,0]],[1710095546,[243,243,0]],[1710095547,[244,244,0]],[1710095548,[248,248,0]],[1710095549,[251,251,0]],[1710095550,[251,251,0]],[1710095551,[257,257,0]],[1710095552,[259,259,0]],[1710095553,[262,262,0]],[1710095554,[263,263,0]],[1710095555,[267,267,0]],[1710095556,[269,269,0]],[1710095557,[274,274,0]],[1710095558,[275,275,0]],[1710095559,[279,279,0]],[1710095560,[280,280,0]],[1710095561,[284,284,0]],[1710095562,[286,286,0]],[1710095563,[290,290,0]],[1710095564,[292,292,0]],[1710095565,[295,295,0]],[1710095566,[299,299,0]],[1710095567,[300,300,0]],[1710095568,[304,304,0]],[1710095569,[306,306,0]],[1710095570,[309,309,0]],[1710095571,[312,312,0]],[1710095572,[315,315,0]],[1710095573,[318,318,0]],[1710095574,[321,321,0]],[1710095575,[322,322,0]],[1710095576,[327,327,0]],[1710095577,[329,329,0]],[1710095578,[331,331,0]],[1710095579,[334,334,0]],[1710095580,[339,339,0]],[1710095581,[340,340,0]],[1710095582,[340,340,0]],[1710095583,[340,340,0]],[1710095584,[340,340,0]],[1710095585,[340,340,0]],[1710095586,[340,340,0]],[1710095587,[340,340,0]],[1710095588,[340,340,0]],[1710095589,[340,340,0]],[1710095590,[340,340,0]],[1710095591,[340,340,0]],[1710095592,[340,340,0]],[1710095593,[340,340,0]],[1710095594,[340,340,0]],[1710095595,[340,340,0]],[1710095596,[340,340,0]],[1710095597,[340,340,0]],[1710095598,[340,340,0]],[1710095599,[340,340,0]],[1710095600,[340,340,0]],[1710095601,[340,340,0]],[1710095602,[340,340,0]],[1710095603,[340,340,0]],[1710095604,[340,340,0]],[1710095605,[340,340,0]],[1710095606,[340,340,0]],[1710095607,[340,340,0]],[1710095608,[340,340,0]],[1710095609,[340,340,0]],[1710095610,[340,340,0]],[1710095611,[340,340,0]],[1710095612,[340,340,0]],[1710095613,[340,340,0]],[1710095614,[340,340,0]],[1710095615,[340,340,0]],[1710095616,[340,340,0]],[1710095617,[340,340,0]],[1710095618,[340,340,0]],[1710095619,[340,340,0]],[1710095620,[340,340,0]],[1710095621,[340,340,0]],[1710095622,[340,340,0]],[1710095623,[340,340,0]],[1710095624,[340,340,0]],[1710095625,[340,340,0]],[1710095626,[340,340,0]],[1710095627,[340,340,0]],[1710095628,[340,340,0]],[1710095629,[340,340,0]],[1710095630,[340,340,0]],[1710095631,[340,340,0]],[1710095632,[340,340,0]],[1710095633,[340,340,0]],[1710095634,[340,340,0]],[1710095635,[340,340,0]],[1710095636,[340,340,0]],[1710095637,[340,340,0]],[1710095638,[340,340,0]],[1710095639,[340,340,0]],[1710095640,[340,340,0]],[1710095641,[340,340,0]],[1710095642,[340,340,0]],[1710095643,[340,340,0]],[1710095644,[340,340,0]],[1710095645,[340,340,0]],[1710095646,[340,340,0]],[1710095647,[340,340,0]],[1710095648,[340,340,0]],[1710095649,[340,340,0]],[1710095650,[340,340,0]],[1710095651,[340,340,0]],[1710095652,[340,340,0]],[1710095653,[340,340,0]],[1710095654,[340,340,0]],[1710095655,[340,340,0]],[1710095656,[340,340,0]],[1710095657,[340,340,0]],[1710095658,[340,340,0]],[1710095659,[340,340,0]],[1710095660,[340,340,0]],[1710095661,[340,340,0]],[1710095662,[340,340,0]],[1710095663,[340,340,0]],[1710095664,[340,340,0]],[1710095665,[340,340,0]],[1710095666,[340,340,0]],[1710095667,[340,340,0]],[1710095668,[340,340,0]],[1710095669,[340,340,0]],[1710095670,[340,340,0]],[1710095671,[340,340,0]],[1710095672,[340,340,0]],[1710095673,[340,340,0]],[1710095674,[340,340,0]],[1710095675,[340,340,0]],[1710095676,[340,340,0]],[1710095677,[340,340,0]],[1710095678,[340,340,0]],[1710095679,[340,340,0]],[1710095680,[340,340,0]],[1710095681,[340,340,0]],[1710095682,[340,340,0]],[1710095683,[340,340,0]],[1710095684,[340,340,0]],[1710095685,[340,340,0]],[1710095686,[340,340,0]],[1710095687,[340,340,0]],[1710095688,[340,340,0]],[1710095689,[340,340,0]],[1710095690,[340,340,0]],[1710095691,[340,340,0]],[1710095692,[340,340,0]],[1710095693,[340,340,0]],[1710095694,[340,340,0]],[1710095695,[340,340,0]],[1710095696,[340,340,0]],[1710095697,[340,340,0]],[1710095698,[340,340,0]],[1710095699,[340,340,0]],[1710095700,[501,501,0]]]);
var requestsChart = new Highcharts.StockChart({
chart: {
renderTo: 'requests',
zoomType: 'x',
marginBottom: 60
},
credits: { enabled: false },
legend: {
enabled: true,
floating: true,
y: -65,
borderWidth: 0,
itemStyle: { fontWeight: "normal" },
symbolRadius: 0
},
title: { text: 'A title to let highcharts reserve the place for the title set later' },
navigator: {
maskInside: false
},
rangeSelector: {
buttonSpacing: 0,
buttonTheme: {
fill: '#CFC9C6',
padding: 1,
stroke: '#000000',
'stroke-width': 0.25,
style: {
color: '#000000',
fontWeight: 'bold',
},
states: {
stroke: '#000000',
'stroke-width': 0.25,
hover: {
fill: '#92918C',
style: { color: 'black' }
},
select: {
fill: '#FFA900',
style: { color: 'white' }
}
}
},
buttons : [
{
type : 'minute',
count : 1,