-
Notifications
You must be signed in to change notification settings - Fork 925
/
index.html
1210 lines (1140 loc) · 92.5 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-09 20:05:22 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 - adamatti-bun">
<span class="simulation-information-label">Description: </span>
<span>Rinha de Backend - 2024/Q1: Crébito - adamatti-bun</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">55475</td>
<td class="value error-col-3 total ko">97.966 %</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">950</td>
<td class="value error-col-3 total ko">1.678 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">status.find.in(200,422), but actually found 502<span class="value" style="display:none">2</span></td>
<td class="value error-col-2 total ko">128</td>
<td class="value error-col-3 total ko">0.226 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">status.find.in(200), but actually found 502<span class="value" style="display:none">3</span></td>
<td class="value error-col-2 total ko">74</td>
<td class="value error-col-3 total ko">0.131 %</td>
</tr>
</tbody>
</table>
</div>
<div class="schema geant">
<div id="active_users" class="geant"></div>
</div>
<div class="schema geant">
<div id="responsetimeDistributionContainer" class="geant"></div>
</div>
<div class="schema geant">
<div id="responsetimepercentilesovertimeokPercentilesContainer" class="geant"></div>
</div>
<div class="schema geant">
<div id="requests" class="geant"></div>
</div>
<div class="schema geant">
<div id="responses" class="geant"></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<script>
var pageStats = stats.stats;
$(document).ready(function() {
$('.simulation-tooltip').popover({trigger:'hover', placement:'left'});
setDetailsLinkUrl();
setGlobalMenu();
setActiveMenu();
fillStats(pageStats);
Highcharts.setOptions({
global: { useUTC: false }
});
var rangesChart = new Highcharts.Chart({
chart: {
renderTo: 'ranges',
marginRight: 100
},
credits: { enabled: false },
legend: { enabled: false },
title: { text: 'A title to let highcharts reserve the place for the title set later' },
xAxis: {
categories: [
pageStats.group1.htmlName,
pageStats.group2.htmlName,
pageStats.group3.htmlName,
pageStats.group4.htmlName
]
},
yAxis: {
title: { text: 'Number of Requests' },
reversedStacks: false
},
tooltip: {
formatter: function() {
var s;
if (this.point.name) { // the pie chart
s = ''+ this.point.name +': '+ this.y +'% requests';
} else {
s = ''+ this.y + ' requests';
}
return s;
}
},
plotOptions: {
series: {
stacking: 'normal',
shadow: true
}
},
series: [
{
type: 'column',
data: [{
color: '#68b65c',
y: pageStats.group1.count
},
{
color: '#FFDD00',
y: pageStats.group2.count
},
{
color: '#FFA900',
y: pageStats.group3.count
},
{
color: '#f15b4f',
y: pageStats.group4.count
}]
},
{
type: 'pie',
name: 'Percentages',
data: [
{
name: pageStats.group1.name,
y: pageStats.group1.percentage,
color: '#68b65c'
},
{
name: pageStats.group2.name,
y: pageStats.group2.percentage,
color: '#FFDD00'
},
{
name: pageStats.group3.name,
y: pageStats.group3.percentage,
color: '#FFA900'
},
{
name: pageStats.group4.name,
y: pageStats.group4.percentage,
color: '#f15b4f'
}
],
center: [345, 0],
size: 90,
showInLegend: false,
dataLabels: { enabled: false }
}
]
});
rangesChart.setTitle({
text: '<span class="chart_title">Response Time Ranges</span>',
useHTML: true
});
function numberOfRequestsDataForGroup(group) {
var data = {names: [], oks: [], kos: []};
$.each(group.contents, function(contentName, content) {
if (content.type == 'GROUP') {
var result = numberOfRequestsDataForGroup(content);
data.names = data.names.concat(result.names);
data.oks = data.oks.concat(result.oks);
data.kos = data.kos.concat(result.kos);
}
else if (content.type == 'REQUEST') {
data.names.push(content.path);
data.oks.push(parseInt(content.stats.numberOfRequests.ok));
data.kos.push(parseInt(content.stats.numberOfRequests.ko));
}
});
return data;
}
var numberOfRequestsData = numberOfRequestsDataForGroup(stats);
var tickInterval = Math.ceil(numberOfRequestsData.names.length / 1000);
new Highcharts.Chart({
chart: {
renderTo:'container_number_of_requests',
polar:true,
type:'column',
height:330
},
credits:{
enabled:false
},
title:{
text:'<span class="chart_title">Number of requests</span>',
useHTML: true,
widthAdjust:-20
},
xAxis:{
tickmarkPlacement:'on',
tickInterval: tickInterval,
categories:numberOfRequestsData.names,
labels:{ enabled:false }
},
yAxis:{
min:0,
reversedStacks: false
},
plotOptions:{
series:{
stacking:'normal',
groupPadding:0,
pointPlacement:'on',
shadow: true
}
},
legend: {
borderWidth: 0,
itemStyle: { fontWeight: "normal" },
symbolRadius: 0
},
series:[
{
name:'OK',
data:numberOfRequestsData.oks,
color:"#68b65c"
},
{
name:'KO',
data:numberOfRequestsData.kos,
color:"#f15b4f"
}
]
});
$('#container_exceptions').sortable('#container_exceptions');
function generateHtmlRow(request, level, index, parent, group) {
if (request.name == 'All Requests')
var url = 'index.html';
else
var url = request.pathFormatted + '.html';
if (group)
var expandButtonStyle = '';
else
var expandButtonStyle = ' hidden';
if (request.stats.numberOfRequests.total != 0)
var koPercent = (request.stats.numberOfRequests.ko * 100 / request.stats.numberOfRequests.total).toFixed(0) + '%';
else
var koPercent = '-'
return '<tr id="' + request.pathFormatted + '" data-parent=' + parent + '> \
<td class="total col-1"> \
<div class="expandable-container"> \
<span id="' + request.pathFormatted + '" style="margin-left: ' + (level * 10) + 'px;" class="expand-button' + expandButtonStyle + '"> </span> \
<a href="' + url +'" class="withTooltip">' + ellipsedLabel({ name: request.name, parentClass: "table-cell-tooltip" }) + '</a><span class="value" style="display:none;">' + index + '</span> \
</div> \
</td> \
<td class="value total col-2">' + request.stats.numberOfRequests.total + '</td> \
<td class="value ok col-3">' + request.stats.numberOfRequests.ok + '</td> \
<td class="value ko col-4">' + request.stats.numberOfRequests.ko + '</td> \
<td class="value ko col-5">' + koPercent + '</td> \
<td class="value total col-6">' + request.stats.meanNumberOfRequestsPerSecond.total + '</td> \
<td class="value total col-7">' + request.stats.minResponseTime.total + '</td> \
<td class="value total col-8">' + request.stats.percentiles1.total + '</td> \
<td class="value total col-9">' + request.stats.percentiles2.total + '</td> \
<td class="value total col-10">' + request.stats.percentiles3.total + '</td> \
<td class="value total col-11">' + request.stats.percentiles4.total + '</td> \
<td class="value total col-12">' + request.stats.maxResponseTime.total + '</td> \
<td class="value total col-13">' + request.stats.meanResponseTime.total + '</td> \
<td class="value total col-14">' + request.stats.standardDeviation.total + '</td> \
</tr>';
}
function generateHtmlRowsForGroup(group, level, index, parent) {
var buffer = '';
if (!parent)
parent = 'ROOT';
else {
buffer += generateHtmlRow(group, level - 1, index, parent, true);
index++;
parent = group.pathFormatted;
}
$.each(group.contents, function(contentName, content) {
if (content.type == 'GROUP') {
var result = generateHtmlRowsForGroup(content, level + 1, index, parent);
buffer += result.html;
index = result.index;
}
else if (content.type == 'REQUEST') {
buffer += generateHtmlRow(content, level, index, parent);
index++;
}
});
return { html: buffer, index: index };
}
$('#container_statistics_head tbody').append(generateHtmlRow(stats, 0, 0));
var lines = generateHtmlRowsForGroup(stats, 0, 0);
$('#container_statistics_body tbody').append(lines.html);
$('#container_statistics_head').sortable('#container_statistics_body');
$('.statistics').expandable();
if (lines.index < 30) {
$('#statistics_title span').attr('style', 'display: none;');
} else {
$('#statistics_title').addClass('title_collapsed');
$('#statistics_title').click(function() {
$('#toggle-stats').toggleClass("off");
$(this).toggleClass('title_collapsed').toggleClass('title_expanded');
$('#container_statistics_body').parent().toggleClass('scrollable').toggleClass('');
});
}
$('.table-cell-tooltip').popover({trigger:'hover'});
$('#container_errors').sortable('#container_errors');
allUsersData.yAxis = 0;
var allUsersChart = new Highcharts.StockChart({
chart: {
renderTo: 'active_users',
zoomType: 'x'
},
credits: { enabled: false },
legend: {
enabled: true,
floating: true,
align: 'right',
verticalAlign: 'top',
layout: 'vertical',
borderWidth: 0,
itemStyle: { fontWeight: "normal" },
symbolRadius: 0
},
title: { text: 'A title to let highcharts reserve the place for the title set later' },
navigator: {
maskInside: false
},
rangeSelector: {
buttonSpacing: 0,
buttonTheme: {
fill: '#CFC9C6',
padding: 1,
stroke: '#000000',
'stroke-width': 0.25,
style: {
color: '#000000',
fontWeight: 'bold',
},
states: {
stroke: '#000000',
'stroke-width': 0.25,
hover: {
fill: '#92918C',
style: { color: 'black' }
},
select: {
fill: '#FFA900',
style: { color: 'white' }
}
}
},
buttons : [
{
type : 'minute',
count : 1,
text : '1m'
}, {
type : 'minute',
count : 10,
text : '10m'
}, {
type : 'hour',
count : 1,
text : '1h'
}, {
type : 'all',
count : 1,
text : 'All'
}
],
selected : 3,
inputEnabled : false
},
xAxis: {
type: 'datetime',
ordinal: false,
maxZoom: 10000 // three days
},
yAxis: {
title: { text: 'Number of Active Users' },
opposite: false,
min: 0
},
series: [
{
color: '#5E7BE2',
name: 'débitos',
data: [
[1710014722000,0],[1710014723000,0],[1710014724000,0],[1710014725000,0],[1710014726000,1],[1710014727000,2],[1710014728000,4],[1710014729000,6],[1710014730000,7],[1710014731000,9],[1710014732000,11],[1710014733000,13],[1710014734000,15],[1710014735000,16],[1710014736000,19],[1710014737000,20],[1710014738000,22],[1710014739000,24],[1710014740000,25],[1710014741000,28],[1710014742000,29],[1710014743000,32],[1710014744000,34],[1710014745000,35],[1710014746000,37],[1710014747000,38],[1710014748000,41],[1710014749000,43],[1710014750000,45],[1710014751000,48],[1710014752000,48],[1710014753000,52],[1710014754000,53],[1710014755000,55],[1710014756000,56],[1710014757000,56],[1710014758000,60],[1710014759000,62],[1710014760000,64],[1710014761000,67],[1710014762000,69],[1710014763000,71],[1710014764000,72],[1710014765000,72],[1710014766000,77],[1710014767000,77],[1710014768000,82],[1710014769000,81],[1710014770000,96],[1710014771000,96],[1710014772000,97],[1710014773000,95],[1710014774000,90],[1710014775000,96],[1710014776000,100],[1710014777000,106],[1710014778000,107],[1710014779000,117],[1710014780000,142],[1710014781000,165],[1710014782000,205],[1710014783000,240],[1710014784000,285],[1710014785000,351],[1710014786000,393],[1710014787000,340],[1710014788000,442],[1710014789000,536],[1710014790000,644],[1710014791000,119],[1710014792000,120],[1710014793000,123],[1710014794000,124],[1710014795000,126],[1710014796000,128],[1710014797000,129],[1710014798000,132],[1710014799000,133],[1710014800000,135],[1710014801000,137],[1710014802000,139],[1710014803000,141],[1710014804000,143],[1710014805000,144],[1710014806000,148],[1710014807000,149],[1710014808000,151],[1710014809000,153],[1710014810000,154],[1710014811000,155],[1710014812000,157],[1710014813000,159],[1710014814000,161],[1710014815000,162],[1710014816000,165],[1710014817000,166],[1710014818000,168],[1710014819000,170],[1710014820000,171],[1710014821000,174],[1710014822000,175],[1710014823000,177],[1710014824000,179],[1710014825000,182],[1710014826000,183],[1710014827000,184],[1710014828000,186],[1710014829000,188],[1710014830000,191],[1710014831000,193],[1710014832000,193],[1710014833000,196],[1710014834000,196],[1710014835000,200],[1710014836000,201],[1710014837000,202],[1710014838000,205],[1710014839000,206],[1710014840000,209],[1710014841000,210],[1710014842000,212],[1710014843000,214],[1710014844000,215],[1710014845000,217],[1710014846000,220],[1710014847000,220],[1710014848000,220],[1710014849000,220],[1710014850000,220],[1710014851000,220],[1710014852000,220],[1710014853000,220],[1710014854000,220],[1710014855000,220],[1710014856000,220],[1710014857000,220],[1710014858000,220],[1710014859000,220],[1710014860000,220],[1710014861000,220],[1710014862000,220],[1710014863000,220],[1710014864000,220],[1710014865000,220],[1710014866000,220],[1710014867000,220],[1710014868000,220],[1710014869000,220],[1710014870000,220],[1710014871000,220],[1710014872000,220],[1710014873000,220],[1710014874000,220],[1710014875000,220],[1710014876000,220],[1710014877000,220],[1710014878000,220],[1710014879000,220],[1710014880000,220],[1710014881000,220],[1710014882000,220],[1710014883000,220],[1710014884000,220],[1710014885000,220],[1710014886000,220],[1710014887000,220],[1710014888000,220],[1710014889000,220],[1710014890000,220],[1710014891000,220],[1710014892000,220],[1710014893000,220],[1710014894000,220],[1710014895000,220],[1710014896000,220],[1710014897000,220],[1710014898000,220],[1710014899000,220],[1710014900000,220],[1710014901000,220],[1710014902000,220],[1710014903000,220],[1710014904000,220],[1710014905000,220],[1710014906000,220],[1710014907000,220],[1710014908000,220],[1710014909000,220],[1710014910000,220],[1710014911000,220],[1710014912000,220],[1710014913000,220],[1710014914000,220],[1710014915000,220],[1710014916000,220],[1710014917000,220],[1710014918000,220],[1710014919000,220],[1710014920000,220],[1710014921000,220],[1710014922000,220],[1710014923000,220],[1710014924000,220],[1710014925000,220],[1710014926000,220],[1710014927000,220],[1710014928000,220],[1710014929000,220],[1710014930000,220],[1710014931000,220],[1710014932000,220],[1710014933000,220],[1710014934000,220],[1710014935000,220],[1710014936000,220],[1710014937000,220],[1710014938000,220],[1710014939000,220],[1710014940000,220],[1710014941000,220],[1710014942000,220],[1710014943000,220],[1710014944000,220],[1710014945000,220],[1710014946000,220],[1710014947000,220],[1710014948000,220],[1710014949000,220],[1710014950000,220],[1710014951000,219],[1710014952000,221],[1710014953000,220],[1710014954000,220],[1710014955000,220],[1710014956000,220],[1710014957000,220],[1710014958000,220],[1710014959000,220],[1710014960000,220],[1710014961000,220],[1710014962000,220],[1710014963000,220],[1710014964000,220],[1710014965000,220],[1710014966000,215]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#68b65c',
name: 'créditos',
data: [
[1710014722000,0],[1710014723000,0],[1710014724000,0],[1710014725000,0],[1710014726000,1],[1710014727000,2],[1710014728000,2],[1710014729000,4],[1710014730000,4],[1710014731000,5],[1710014732000,6],[1710014733000,7],[1710014734000,8],[1710014735000,8],[1710014736000,10],[1710014737000,10],[1710014738000,12],[1710014739000,12],[1710014740000,14],[1710014741000,14],[1710014742000,15],[1710014743000,16],[1710014744000,17],[1710014745000,17],[1710014746000,20],[1710014747000,20],[1710014748000,20],[1710014749000,22],[1710014750000,22],[1710014751000,24],[1710014752000,25],[1710014753000,25],[1710014754000,27],[1710014755000,27],[1710014756000,28],[1710014757000,29],[1710014758000,30],[1710014759000,31],[1710014760000,32],[1710014761000,33],[1710014762000,34],[1710014763000,35],[1710014764000,37],[1710014765000,37],[1710014766000,38],[1710014767000,39],[1710014768000,43],[1710014769000,40],[1710014770000,48],[1710014771000,46],[1710014772000,50],[1710014773000,49],[1710014774000,45],[1710014775000,49],[1710014776000,50],[1710014777000,51],[1710014778000,56],[1710014779000,59],[1710014780000,72],[1710014781000,89],[1710014782000,105],[1710014783000,128],[1710014784000,150],[1710014785000,178],[1710014786000,205],[1710014787000,172],[1710014788000,223],[1710014789000,275],[1710014790000,332],[1710014791000,59],[1710014792000,61],[1710014793000,61],[1710014794000,63],[1710014795000,63],[1710014796000,64],[1710014797000,65],[1710014798000,66],[1710014799000,67],[1710014800000,68],[1710014801000,68],[1710014802000,70],[1710014803000,70],[1710014804000,72],[1710014805000,72],[1710014806000,73],[1710014807000,75],[1710014808000,76],[1710014809000,76],[1710014810000,77],[1710014811000,78],[1710014812000,79],[1710014813000,79],[1710014814000,81],[1710014815000,81],[1710014816000,82],[1710014817000,83],[1710014818000,85],[1710014819000,85],[1710014820000,86],[1710014821000,86],[1710014822000,88],[1710014823000,89],[1710014824000,89],[1710014825000,91],[1710014826000,91],[1710014827000,92],[1710014828000,94],[1710014829000,94],[1710014830000,96],[1710014831000,96],[1710014832000,98],[1710014833000,96],[1710014834000,100],[1710014835000,99],[1710014836000,101],[1710014837000,101],[1710014838000,103],[1710014839000,104],[1710014840000,104],[1710014841000,105],[1710014842000,106],[1710014843000,107],[1710014844000,107],[1710014845000,109],[1710014846000,110],[1710014847000,110],[1710014848000,110],[1710014849000,110],[1710014850000,110],[1710014851000,112],[1710014852000,110],[1710014853000,110],[1710014854000,110],[1710014855000,110],[1710014856000,110],[1710014857000,110],[1710014858000,110],[1710014859000,110],[1710014860000,110],[1710014861000,110],[1710014862000,110],[1710014863000,110],[1710014864000,110],[1710014865000,110],[1710014866000,110],[1710014867000,110],[1710014868000,110],[1710014869000,110],[1710014870000,110],[1710014871000,110],[1710014872000,110],[1710014873000,110],[1710014874000,110],[1710014875000,110],[1710014876000,110],[1710014877000,110],[1710014878000,110],[1710014879000,110],[1710014880000,110],[1710014881000,110],[1710014882000,110],[1710014883000,110],[1710014884000,110],[1710014885000,110],[1710014886000,110],[1710014887000,110],[1710014888000,110],[1710014889000,110],[1710014890000,110],[1710014891000,110],[1710014892000,110],[1710014893000,110],[1710014894000,110],[1710014895000,110],[1710014896000,110],[1710014897000,110],[1710014898000,110],[1710014899000,110],[1710014900000,110],[1710014901000,110],[1710014902000,110],[1710014903000,110],[1710014904000,110],[1710014905000,110],[1710014906000,110],[1710014907000,110],[1710014908000,110],[1710014909000,110],[1710014910000,110],[1710014911000,110],[1710014912000,110],[1710014913000,110],[1710014914000,110],[1710014915000,110],[1710014916000,110],[1710014917000,110],[1710014918000,110],[1710014919000,110],[1710014920000,110],[1710014921000,110],[1710014922000,110],[1710014923000,110],[1710014924000,110],[1710014925000,110],[1710014926000,110],[1710014927000,110],[1710014928000,110],[1710014929000,110],[1710014930000,110],[1710014931000,110],[1710014932000,110],[1710014933000,110],[1710014934000,110],[1710014935000,110],[1710014936000,110],[1710014937000,110],[1710014938000,110],[1710014939000,110],[1710014940000,110],[1710014941000,110],[1710014942000,110],[1710014943000,110],[1710014944000,110],[1710014945000,110],[1710014946000,110],[1710014947000,110],[1710014948000,110],[1710014949000,110],[1710014950000,110],[1710014951000,110],[1710014952000,110],[1710014953000,110],[1710014954000,110],[1710014955000,110],[1710014956000,110],[1710014957000,110],[1710014958000,110],[1710014959000,110],[1710014960000,110],[1710014961000,110],[1710014962000,110],[1710014963000,110],[1710014964000,110],[1710014965000,110],[1710014966000,107]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#f15b4f',
name: 'extratos',
data: [
[1710014722000,0],[1710014723000,0],[1710014724000,0],[1710014725000,0],[1710014726000,1],[1710014727000,2],[1710014728000,1],[1710014729000,1],[1710014730000,1],[1710014731000,1],[1710014732000,2],[1710014733000,1],[1710014734000,2],[1710014735000,2],[1710014736000,1],[1710014737000,2],[1710014738000,2],[1710014739000,2],[1710014740000,2],[1710014741000,2],[1710014742000,2],[1710014743000,3],[1710014744000,3],[1710014745000,2],[1710014746000,3],[1710014747000,3],[1710014748000,3],[1710014749000,2],[1710014750000,3],[1710014751000,4],[1710014752000,3],[1710014753000,4],[1710014754000,3],[1710014755000,3],[1710014756000,3],[1710014757000,4],[1710014758000,3],[1710014759000,3],[1710014760000,5],[1710014761000,4],[1710014762000,5],[1710014763000,5],[1710014764000,5],[1710014765000,5],[1710014766000,5],[1710014767000,5],[1710014768000,5],[1710014769000,4],[1710014770000,5],[1710014771000,5],[1710014772000,6],[1710014773000,5],[1710014774000,5],[1710014775000,6],[1710014776000,5],[1710014777000,5],[1710014778000,6],[1710014779000,7],[1710014780000,8],[1710014781000,8],[1710014782000,9],[1710014783000,11],[1710014784000,10],[1710014785000,14],[1710014786000,15],[1710014787000,16],[1710014788000,22],[1710014789000,27],[1710014790000,33],[1710014791000,6],[1710014792000,6],[1710014793000,6],[1710014794000,6],[1710014795000,6],[1710014796000,6],[1710014797000,7],[1710014798000,6],[1710014799000,6],[1710014800000,7],[1710014801000,6],[1710014802000,7],[1710014803000,7],[1710014804000,7],[1710014805000,7],[1710014806000,7],[1710014807000,7],[1710014808000,7],[1710014809000,7],[1710014810000,7],[1710014811000,7],[1710014812000,8],[1710014813000,7],[1710014814000,8],[1710014815000,8],[1710014816000,7],[1710014817000,8],[1710014818000,8],[1710014819000,8],[1710014820000,8],[1710014821000,8],[1710014822000,8],[1710014823000,8],[1710014824000,9],[1710014825000,8],[1710014826000,9],[1710014827000,8],[1710014828000,9],[1710014829000,8],[1710014830000,9],[1710014831000,9],[1710014832000,9],[1710014833000,9],[1710014834000,9],[1710014835000,9],[1710014836000,9],[1710014837000,10],[1710014838000,9],[1710014839000,9],[1710014840000,10],[1710014841000,9],[1710014842000,10],[1710014843000,10],[1710014844000,10],[1710014845000,10],[1710014846000,10],[1710014847000,10],[1710014848000,10],[1710014849000,10],[1710014850000,10],[1710014851000,10],[1710014852000,10],[1710014853000,10],[1710014854000,10],[1710014855000,10],[1710014856000,10],[1710014857000,10],[1710014858000,10],[1710014859000,10],[1710014860000,10],[1710014861000,10],[1710014862000,10],[1710014863000,10],[1710014864000,10],[1710014865000,10],[1710014866000,10],[1710014867000,10],[1710014868000,10],[1710014869000,10],[1710014870000,10],[1710014871000,10],[1710014872000,10],[1710014873000,10],[1710014874000,10],[1710014875000,10],[1710014876000,10],[1710014877000,10],[1710014878000,10],[1710014879000,10],[1710014880000,10],[1710014881000,10],[1710014882000,10],[1710014883000,10],[1710014884000,10],[1710014885000,10],[1710014886000,10],[1710014887000,10],[1710014888000,10],[1710014889000,10],[1710014890000,10],[1710014891000,10],[1710014892000,10],[1710014893000,10],[1710014894000,10],[1710014895000,10],[1710014896000,10],[1710014897000,10],[1710014898000,10],[1710014899000,10],[1710014900000,10],[1710014901000,10],[1710014902000,10],[1710014903000,10],[1710014904000,10],[1710014905000,10],[1710014906000,10],[1710014907000,10],[1710014908000,10],[1710014909000,10],[1710014910000,10],[1710014911000,10],[1710014912000,10],[1710014913000,10],[1710014914000,10],[1710014915000,10],[1710014916000,10],[1710014917000,10],[1710014918000,10],[1710014919000,10],[1710014920000,10],[1710014921000,10],[1710014922000,10],[1710014923000,10],[1710014924000,10],[1710014925000,10],[1710014926000,10],[1710014927000,10],[1710014928000,10],[1710014929000,10],[1710014930000,10],[1710014931000,10],[1710014932000,10],[1710014933000,10],[1710014934000,10],[1710014935000,10],[1710014936000,10],[1710014937000,10],[1710014938000,10],[1710014939000,10],[1710014940000,10],[1710014941000,10],[1710014942000,10],[1710014943000,10],[1710014944000,10],[1710014945000,10],[1710014946000,10],[1710014947000,10],[1710014948000,10],[1710014949000,10],[1710014950000,10],[1710014951000,10],[1710014952000,10],[1710014953000,10],[1710014954000,10],[1710014955000,10],[1710014956000,10],[1710014957000,10],[1710014958000,10],[1710014959000,10],[1710014960000,10],[1710014961000,10],[1710014962000,10],[1710014963000,10],[1710014964000,10],[1710014965000,10],[1710014966000,9]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FFDD00',
name: 'validações',
data: [
[1710014722000,0],[1710014723000,0],[1710014724000,0],[1710014725000,5],[1710014726000,5],[1710014727000,0],[1710014728000,0],[1710014729000,0],[1710014730000,0],[1710014731000,0],[1710014732000,0],[1710014733000,0],[1710014734000,0],[1710014735000,0],[1710014736000,0],[1710014737000,0],[1710014738000,0],[1710014739000,0],[1710014740000,0],[1710014741000,0],[1710014742000,0],[1710014743000,0],[1710014744000,0],[1710014745000,0],[1710014746000,0],[1710014747000,0],[1710014748000,0],[1710014749000,0],[1710014750000,0],[1710014751000,0],[1710014752000,0],[1710014753000,0],[1710014754000,0],[1710014755000,0],[1710014756000,0],[1710014757000,0],[1710014758000,0],[1710014759000,0],[1710014760000,0],[1710014761000,0],[1710014762000,0],[1710014763000,0],[1710014764000,0],[1710014765000,0],[1710014766000,0],[1710014767000,0],[1710014768000,0],[1710014769000,0],[1710014770000,0],[1710014771000,0],[1710014772000,0],[1710014773000,0],[1710014774000,0],[1710014775000,0],[1710014776000,0],[1710014777000,0],[1710014778000,0],[1710014779000,0],[1710014780000,0],[1710014781000,0],[1710014782000,0],[1710014783000,0],[1710014784000,0],[1710014785000,0],[1710014786000,0],[1710014787000,0],[1710014788000,0],[1710014789000,0],[1710014790000,0],[1710014791000,0],[1710014792000,0],[1710014793000,0],[1710014794000,0],[1710014795000,0],[1710014796000,0],[1710014797000,0],[1710014798000,0],[1710014799000,0],[1710014800000,0],[1710014801000,0],[1710014802000,0],[1710014803000,0],[1710014804000,0],[1710014805000,0],[1710014806000,0],[1710014807000,0],[1710014808000,0],[1710014809000,0],[1710014810000,0],[1710014811000,0],[1710014812000,0],[1710014813000,0],[1710014814000,0],[1710014815000,0],[1710014816000,0],[1710014817000,0],[1710014818000,0],[1710014819000,0],[1710014820000,0],[1710014821000,0],[1710014822000,0],[1710014823000,0],[1710014824000,0],[1710014825000,0],[1710014826000,0],[1710014827000,0],[1710014828000,0],[1710014829000,0],[1710014830000,0],[1710014831000,0],[1710014832000,0],[1710014833000,0],[1710014834000,0],[1710014835000,0],[1710014836000,0],[1710014837000,0],[1710014838000,0],[1710014839000,0],[1710014840000,0],[1710014841000,0],[1710014842000,0],[1710014843000,0],[1710014844000,0],[1710014845000,0],[1710014846000,0],[1710014847000,0],[1710014848000,0],[1710014849000,0],[1710014850000,0],[1710014851000,0],[1710014852000,0],[1710014853000,0],[1710014854000,0],[1710014855000,0],[1710014856000,0],[1710014857000,0],[1710014858000,0],[1710014859000,0],[1710014860000,0],[1710014861000,0],[1710014862000,0],[1710014863000,0],[1710014864000,0],[1710014865000,0],[1710014866000,0],[1710014867000,0],[1710014868000,0],[1710014869000,0],[1710014870000,0],[1710014871000,0],[1710014872000,0],[1710014873000,0],[1710014874000,0],[1710014875000,0],[1710014876000,0],[1710014877000,0],[1710014878000,0],[1710014879000,0],[1710014880000,0],[1710014881000,0],[1710014882000,0],[1710014883000,0],[1710014884000,0],[1710014885000,0],[1710014886000,0],[1710014887000,0],[1710014888000,0],[1710014889000,0],[1710014890000,0],[1710014891000,0],[1710014892000,0],[1710014893000,0],[1710014894000,0],[1710014895000,0],[1710014896000,0],[1710014897000,0],[1710014898000,0],[1710014899000,0],[1710014900000,0],[1710014901000,0],[1710014902000,0],[1710014903000,0],[1710014904000,0],[1710014905000,0],[1710014906000,0],[1710014907000,0],[1710014908000,0],[1710014909000,0],[1710014910000,0],[1710014911000,0],[1710014912000,0],[1710014913000,0],[1710014914000,0],[1710014915000,0],[1710014916000,0],[1710014917000,0],[1710014918000,0],[1710014919000,0],[1710014920000,0],[1710014921000,0],[1710014922000,0],[1710014923000,0],[1710014924000,0],[1710014925000,0],[1710014926000,0],[1710014927000,0],[1710014928000,0],[1710014929000,0],[1710014930000,0],[1710014931000,0],[1710014932000,0],[1710014933000,0],[1710014934000,0],[1710014935000,0],[1710014936000,0],[1710014937000,0],[1710014938000,0],[1710014939000,0],[1710014940000,0],[1710014941000,0],[1710014942000,0],[1710014943000,0],[1710014944000,0],[1710014945000,0],[1710014946000,0],[1710014947000,0],[1710014948000,0],[1710014949000,0],[1710014950000,0],[1710014951000,0],[1710014952000,0],[1710014953000,0],[1710014954000,0],[1710014955000,0],[1710014956000,0],[1710014957000,0],[1710014958000,0],[1710014959000,0],[1710014960000,0],[1710014961000,0],[1710014962000,0],[1710014963000,0],[1710014964000,0],[1710014965000,0],[1710014966000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00D5FF',
name: 'validação HTTP 404',
data: [
[1710014722000,0],[1710014723000,0],[1710014724000,0],[1710014725000,1],[1710014726000,0],[1710014727000,0],[1710014728000,0],[1710014729000,0],[1710014730000,0],[1710014731000,0],[1710014732000,0],[1710014733000,0],[1710014734000,0],[1710014735000,0],[1710014736000,0],[1710014737000,0],[1710014738000,0],[1710014739000,0],[1710014740000,0],[1710014741000,0],[1710014742000,0],[1710014743000,0],[1710014744000,0],[1710014745000,0],[1710014746000,0],[1710014747000,0],[1710014748000,0],[1710014749000,0],[1710014750000,0],[1710014751000,0],[1710014752000,0],[1710014753000,0],[1710014754000,0],[1710014755000,0],[1710014756000,0],[1710014757000,0],[1710014758000,0],[1710014759000,0],[1710014760000,0],[1710014761000,0],[1710014762000,0],[1710014763000,0],[1710014764000,0],[1710014765000,0],[1710014766000,0],[1710014767000,0],[1710014768000,0],[1710014769000,0],[1710014770000,0],[1710014771000,0],[1710014772000,0],[1710014773000,0],[1710014774000,0],[1710014775000,0],[1710014776000,0],[1710014777000,0],[1710014778000,0],[1710014779000,0],[1710014780000,0],[1710014781000,0],[1710014782000,0],[1710014783000,0],[1710014784000,0],[1710014785000,0],[1710014786000,0],[1710014787000,0],[1710014788000,0],[1710014789000,0],[1710014790000,0],[1710014791000,0],[1710014792000,0],[1710014793000,0],[1710014794000,0],[1710014795000,0],[1710014796000,0],[1710014797000,0],[1710014798000,0],[1710014799000,0],[1710014800000,0],[1710014801000,0],[1710014802000,0],[1710014803000,0],[1710014804000,0],[1710014805000,0],[1710014806000,0],[1710014807000,0],[1710014808000,0],[1710014809000,0],[1710014810000,0],[1710014811000,0],[1710014812000,0],[1710014813000,0],[1710014814000,0],[1710014815000,0],[1710014816000,0],[1710014817000,0],[1710014818000,0],[1710014819000,0],[1710014820000,0],[1710014821000,0],[1710014822000,0],[1710014823000,0],[1710014824000,0],[1710014825000,0],[1710014826000,0],[1710014827000,0],[1710014828000,0],[1710014829000,0],[1710014830000,0],[1710014831000,0],[1710014832000,0],[1710014833000,0],[1710014834000,0],[1710014835000,0],[1710014836000,0],[1710014837000,0],[1710014838000,0],[1710014839000,0],[1710014840000,0],[1710014841000,0],[1710014842000,0],[1710014843000,0],[1710014844000,0],[1710014845000,0],[1710014846000,0],[1710014847000,0],[1710014848000,0],[1710014849000,0],[1710014850000,0],[1710014851000,0],[1710014852000,0],[1710014853000,0],[1710014854000,0],[1710014855000,0],[1710014856000,0],[1710014857000,0],[1710014858000,0],[1710014859000,0],[1710014860000,0],[1710014861000,0],[1710014862000,0],[1710014863000,0],[1710014864000,0],[1710014865000,0],[1710014866000,0],[1710014867000,0],[1710014868000,0],[1710014869000,0],[1710014870000,0],[1710014871000,0],[1710014872000,0],[1710014873000,0],[1710014874000,0],[1710014875000,0],[1710014876000,0],[1710014877000,0],[1710014878000,0],[1710014879000,0],[1710014880000,0],[1710014881000,0],[1710014882000,0],[1710014883000,0],[1710014884000,0],[1710014885000,0],[1710014886000,0],[1710014887000,0],[1710014888000,0],[1710014889000,0],[1710014890000,0],[1710014891000,0],[1710014892000,0],[1710014893000,0],[1710014894000,0],[1710014895000,0],[1710014896000,0],[1710014897000,0],[1710014898000,0],[1710014899000,0],[1710014900000,0],[1710014901000,0],[1710014902000,0],[1710014903000,0],[1710014904000,0],[1710014905000,0],[1710014906000,0],[1710014907000,0],[1710014908000,0],[1710014909000,0],[1710014910000,0],[1710014911000,0],[1710014912000,0],[1710014913000,0],[1710014914000,0],[1710014915000,0],[1710014916000,0],[1710014917000,0],[1710014918000,0],[1710014919000,0],[1710014920000,0],[1710014921000,0],[1710014922000,0],[1710014923000,0],[1710014924000,0],[1710014925000,0],[1710014926000,0],[1710014927000,0],[1710014928000,0],[1710014929000,0],[1710014930000,0],[1710014931000,0],[1710014932000,0],[1710014933000,0],[1710014934000,0],[1710014935000,0],[1710014936000,0],[1710014937000,0],[1710014938000,0],[1710014939000,0],[1710014940000,0],[1710014941000,0],[1710014942000,0],[1710014943000,0],[1710014944000,0],[1710014945000,0],[1710014946000,0],[1710014947000,0],[1710014948000,0],[1710014949000,0],[1710014950000,0],[1710014951000,0],[1710014952000,0],[1710014953000,0],[1710014954000,0],[1710014955000,0],[1710014956000,0],[1710014957000,0],[1710014958000,0],[1710014959000,0],[1710014960000,0],[1710014961000,0],[1710014962000,0],[1710014963000,0],[1710014964000,0],[1710014965000,0],[1710014966000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00FF00',
name: 'validação concorrência saldo - 0',
data: [
[1710014722000,0],[1710014723000,0],[1710014724000,1],[1710014725000,0],[1710014726000,0],[1710014727000,0],[1710014728000,0],[1710014729000,0],[1710014730000,0],[1710014731000,0],[1710014732000,0],[1710014733000,0],[1710014734000,0],[1710014735000,0],[1710014736000,0],[1710014737000,0],[1710014738000,0],[1710014739000,0],[1710014740000,0],[1710014741000,0],[1710014742000,0],[1710014743000,0],[1710014744000,0],[1710014745000,0],[1710014746000,0],[1710014747000,0],[1710014748000,0],[1710014749000,0],[1710014750000,0],[1710014751000,0],[1710014752000,0],[1710014753000,0],[1710014754000,0],[1710014755000,0],[1710014756000,0],[1710014757000,0],[1710014758000,0],[1710014759000,0],[1710014760000,0],[1710014761000,0],[1710014762000,0],[1710014763000,0],[1710014764000,0],[1710014765000,0],[1710014766000,0],[1710014767000,0],[1710014768000,0],[1710014769000,0],[1710014770000,0],[1710014771000,0],[1710014772000,0],[1710014773000,0],[1710014774000,0],[1710014775000,0],[1710014776000,0],[1710014777000,0],[1710014778000,0],[1710014779000,0],[1710014780000,0],[1710014781000,0],[1710014782000,0],[1710014783000,0],[1710014784000,0],[1710014785000,0],[1710014786000,0],[1710014787000,0],[1710014788000,0],[1710014789000,0],[1710014790000,0],[1710014791000,0],[1710014792000,0],[1710014793000,0],[1710014794000,0],[1710014795000,0],[1710014796000,0],[1710014797000,0],[1710014798000,0],[1710014799000,0],[1710014800000,0],[1710014801000,0],[1710014802000,0],[1710014803000,0],[1710014804000,0],[1710014805000,0],[1710014806000,0],[1710014807000,0],[1710014808000,0],[1710014809000,0],[1710014810000,0],[1710014811000,0],[1710014812000,0],[1710014813000,0],[1710014814000,0],[1710014815000,0],[1710014816000,0],[1710014817000,0],[1710014818000,0],[1710014819000,0],[1710014820000,0],[1710014821000,0],[1710014822000,0],[1710014823000,0],[1710014824000,0],[1710014825000,0],[1710014826000,0],[1710014827000,0],[1710014828000,0],[1710014829000,0],[1710014830000,0],[1710014831000,0],[1710014832000,0],[1710014833000,0],[1710014834000,0],[1710014835000,0],[1710014836000,0],[1710014837000,0],[1710014838000,0],[1710014839000,0],[1710014840000,0],[1710014841000,0],[1710014842000,0],[1710014843000,0],[1710014844000,0],[1710014845000,0],[1710014846000,0],[1710014847000,0],[1710014848000,0],[1710014849000,0],[1710014850000,0],[1710014851000,0],[1710014852000,0],[1710014853000,0],[1710014854000,0],[1710014855000,0],[1710014856000,0],[1710014857000,0],[1710014858000,0],[1710014859000,0],[1710014860000,0],[1710014861000,0],[1710014862000,0],[1710014863000,0],[1710014864000,0],[1710014865000,0],[1710014866000,0],[1710014867000,0],[1710014868000,0],[1710014869000,0],[1710014870000,0],[1710014871000,0],[1710014872000,0],[1710014873000,0],[1710014874000,0],[1710014875000,0],[1710014876000,0],[1710014877000,0],[1710014878000,0],[1710014879000,0],[1710014880000,0],[1710014881000,0],[1710014882000,0],[1710014883000,0],[1710014884000,0],[1710014885000,0],[1710014886000,0],[1710014887000,0],[1710014888000,0],[1710014889000,0],[1710014890000,0],[1710014891000,0],[1710014892000,0],[1710014893000,0],[1710014894000,0],[1710014895000,0],[1710014896000,0],[1710014897000,0],[1710014898000,0],[1710014899000,0],[1710014900000,0],[1710014901000,0],[1710014902000,0],[1710014903000,0],[1710014904000,0],[1710014905000,0],[1710014906000,0],[1710014907000,0],[1710014908000,0],[1710014909000,0],[1710014910000,0],[1710014911000,0],[1710014912000,0],[1710014913000,0],[1710014914000,0],[1710014915000,0],[1710014916000,0],[1710014917000,0],[1710014918000,0],[1710014919000,0],[1710014920000,0],[1710014921000,0],[1710014922000,0],[1710014923000,0],[1710014924000,0],[1710014925000,0],[1710014926000,0],[1710014927000,0],[1710014928000,0],[1710014929000,0],[1710014930000,0],[1710014931000,0],[1710014932000,0],[1710014933000,0],[1710014934000,0],[1710014935000,0],[1710014936000,0],[1710014937000,0],[1710014938000,0],[1710014939000,0],[1710014940000,0],[1710014941000,0],[1710014942000,0],[1710014943000,0],[1710014944000,0],[1710014945000,0],[1710014946000,0],[1710014947000,0],[1710014948000,0],[1710014949000,0],[1710014950000,0],[1710014951000,0],[1710014952000,0],[1710014953000,0],[1710014954000,0],[1710014955000,0],[1710014956000,0],[1710014957000,0],[1710014958000,0],[1710014959000,0],[1710014960000,0],[1710014961000,0],[1710014962000,0],[1710014963000,0],[1710014964000,0],[1710014965000,0],[1710014966000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#9D00FF',
name: 'validação concorrência transações - c',
data: [
[1710014722000,0],[1710014723000,25],[1710014724000,25],[1710014725000,0],[1710014726000,0],[1710014727000,0],[1710014728000,0],[1710014729000,0],[1710014730000,0],[1710014731000,0],[1710014732000,0],[1710014733000,0],[1710014734000,0],[1710014735000,0],[1710014736000,0],[1710014737000,0],[1710014738000,0],[1710014739000,0],[1710014740000,0],[1710014741000,0],[1710014742000,0],[1710014743000,0],[1710014744000,0],[1710014745000,0],[1710014746000,0],[1710014747000,0],[1710014748000,0],[1710014749000,0],[1710014750000,0],[1710014751000,0],[1710014752000,0],[1710014753000,0],[1710014754000,0],[1710014755000,0],[1710014756000,0],[1710014757000,0],[1710014758000,0],[1710014759000,0],[1710014760000,0],[1710014761000,0],[1710014762000,0],[1710014763000,0],[1710014764000,0],[1710014765000,0],[1710014766000,0],[1710014767000,0],[1710014768000,0],[1710014769000,0],[1710014770000,0],[1710014771000,0],[1710014772000,0],[1710014773000,0],[1710014774000,0],[1710014775000,0],[1710014776000,0],[1710014777000,0],[1710014778000,0],[1710014779000,0],[1710014780000,0],[1710014781000,0],[1710014782000,0],[1710014783000,0],[1710014784000,0],[1710014785000,0],[1710014786000,0],[1710014787000,0],[1710014788000,0],[1710014789000,0],[1710014790000,0],[1710014791000,0],[1710014792000,0],[1710014793000,0],[1710014794000,0],[1710014795000,0],[1710014796000,0],[1710014797000,0],[1710014798000,0],[1710014799000,0],[1710014800000,0],[1710014801000,0],[1710014802000,0],[1710014803000,0],[1710014804000,0],[1710014805000,0],[1710014806000,0],[1710014807000,0],[1710014808000,0],[1710014809000,0],[1710014810000,0],[1710014811000,0],[1710014812000,0],[1710014813000,0],[1710014814000,0],[1710014815000,0],[1710014816000,0],[1710014817000,0],[1710014818000,0],[1710014819000,0],[1710014820000,0],[1710014821000,0],[1710014822000,0],[1710014823000,0],[1710014824000,0],[1710014825000,0],[1710014826000,0],[1710014827000,0],[1710014828000,0],[1710014829000,0],[1710014830000,0],[1710014831000,0],[1710014832000,0],[1710014833000,0],[1710014834000,0],[1710014835000,0],[1710014836000,0],[1710014837000,0],[1710014838000,0],[1710014839000,0],[1710014840000,0],[1710014841000,0],[1710014842000,0],[1710014843000,0],[1710014844000,0],[1710014845000,0],[1710014846000,0],[1710014847000,0],[1710014848000,0],[1710014849000,0],[1710014850000,0],[1710014851000,0],[1710014852000,0],[1710014853000,0],[1710014854000,0],[1710014855000,0],[1710014856000,0],[1710014857000,0],[1710014858000,0],[1710014859000,0],[1710014860000,0],[1710014861000,0],[1710014862000,0],[1710014863000,0],[1710014864000,0],[1710014865000,0],[1710014866000,0],[1710014867000,0],[1710014868000,0],[1710014869000,0],[1710014870000,0],[1710014871000,0],[1710014872000,0],[1710014873000,0],[1710014874000,0],[1710014875000,0],[1710014876000,0],[1710014877000,0],[1710014878000,0],[1710014879000,0],[1710014880000,0],[1710014881000,0],[1710014882000,0],[1710014883000,0],[1710014884000,0],[1710014885000,0],[1710014886000,0],[1710014887000,0],[1710014888000,0],[1710014889000,0],[1710014890000,0],[1710014891000,0],[1710014892000,0],[1710014893000,0],[1710014894000,0],[1710014895000,0],[1710014896000,0],[1710014897000,0],[1710014898000,0],[1710014899000,0],[1710014900000,0],[1710014901000,0],[1710014902000,0],[1710014903000,0],[1710014904000,0],[1710014905000,0],[1710014906000,0],[1710014907000,0],[1710014908000,0],[1710014909000,0],[1710014910000,0],[1710014911000,0],[1710014912000,0],[1710014913000,0],[1710014914000,0],[1710014915000,0],[1710014916000,0],[1710014917000,0],[1710014918000,0],[1710014919000,0],[1710014920000,0],[1710014921000,0],[1710014922000,0],[1710014923000,0],[1710014924000,0],[1710014925000,0],[1710014926000,0],[1710014927000,0],[1710014928000,0],[1710014929000,0],[1710014930000,0],[1710014931000,0],[1710014932000,0],[1710014933000,0],[1710014934000,0],[1710014935000,0],[1710014936000,0],[1710014937000,0],[1710014938000,0],[1710014939000,0],[1710014940000,0],[1710014941000,0],[1710014942000,0],[1710014943000,0],[1710014944000,0],[1710014945000,0],[1710014946000,0],[1710014947000,0],[1710014948000,0],[1710014949000,0],[1710014950000,0],[1710014951000,0],[1710014952000,0],[1710014953000,0],[1710014954000,0],[1710014955000,0],[1710014956000,0],[1710014957000,0],[1710014958000,0],[1710014959000,0],[1710014960000,0],[1710014961000,0],[1710014962000,0],[1710014963000,0],[1710014964000,0],[1710014965000,0],[1710014966000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FF00E1',
name: 'validação concorrência saldo - -25',
data: [
[1710014722000,1],[1710014723000,1],[1710014724000,0],[1710014725000,0],[1710014726000,0],[1710014727000,0],[1710014728000,0],[1710014729000,0],[1710014730000,0],[1710014731000,0],[1710014732000,0],[1710014733000,0],[1710014734000,0],[1710014735000,0],[1710014736000,0],[1710014737000,0],[1710014738000,0],[1710014739000,0],[1710014740000,0],[1710014741000,0],[1710014742000,0],[1710014743000,0],[1710014744000,0],[1710014745000,0],[1710014746000,0],[1710014747000,0],[1710014748000,0],[1710014749000,0],[1710014750000,0],[1710014751000,0],[1710014752000,0],[1710014753000,0],[1710014754000,0],[1710014755000,0],[1710014756000,0],[1710014757000,0],[1710014758000,0],[1710014759000,0],[1710014760000,0],[1710014761000,0],[1710014762000,0],[1710014763000,0],[1710014764000,0],[1710014765000,0],[1710014766000,0],[1710014767000,0],[1710014768000,0],[1710014769000,0],[1710014770000,0],[1710014771000,0],[1710014772000,0],[1710014773000,0],[1710014774000,0],[1710014775000,0],[1710014776000,0],[1710014777000,0],[1710014778000,0],[1710014779000,0],[1710014780000,0],[1710014781000,0],[1710014782000,0],[1710014783000,0],[1710014784000,0],[1710014785000,0],[1710014786000,0],[1710014787000,0],[1710014788000,0],[1710014789000,0],[1710014790000,0],[1710014791000,0],[1710014792000,0],[1710014793000,0],[1710014794000,0],[1710014795000,0],[1710014796000,0],[1710014797000,0],[1710014798000,0],[1710014799000,0],[1710014800000,0],[1710014801000,0],[1710014802000,0],[1710014803000,0],[1710014804000,0],[1710014805000,0],[1710014806000,0],[1710014807000,0],[1710014808000,0],[1710014809000,0],[1710014810000,0],[1710014811000,0],[1710014812000,0],[1710014813000,0],[1710014814000,0],[1710014815000,0],[1710014816000,0],[1710014817000,0],[1710014818000,0],[1710014819000,0],[1710014820000,0],[1710014821000,0],[1710014822000,0],[1710014823000,0],[1710014824000,0],[1710014825000,0],[1710014826000,0],[1710014827000,0],[1710014828000,0],[1710014829000,0],[1710014830000,0],[1710014831000,0],[1710014832000,0],[1710014833000,0],[1710014834000,0],[1710014835000,0],[1710014836000,0],[1710014837000,0],[1710014838000,0],[1710014839000,0],[1710014840000,0],[1710014841000,0],[1710014842000,0],[1710014843000,0],[1710014844000,0],[1710014845000,0],[1710014846000,0],[1710014847000,0],[1710014848000,0],[1710014849000,0],[1710014850000,0],[1710014851000,0],[1710014852000,0],[1710014853000,0],[1710014854000,0],[1710014855000,0],[1710014856000,0],[1710014857000,0],[1710014858000,0],[1710014859000,0],[1710014860000,0],[1710014861000,0],[1710014862000,0],[1710014863000,0],[1710014864000,0],[1710014865000,0],[1710014866000,0],[1710014867000,0],[1710014868000,0],[1710014869000,0],[1710014870000,0],[1710014871000,0],[1710014872000,0],[1710014873000,0],[1710014874000,0],[1710014875000,0],[1710014876000,0],[1710014877000,0],[1710014878000,0],[1710014879000,0],[1710014880000,0],[1710014881000,0],[1710014882000,0],[1710014883000,0],[1710014884000,0],[1710014885000,0],[1710014886000,0],[1710014887000,0],[1710014888000,0],[1710014889000,0],[1710014890000,0],[1710014891000,0],[1710014892000,0],[1710014893000,0],[1710014894000,0],[1710014895000,0],[1710014896000,0],[1710014897000,0],[1710014898000,0],[1710014899000,0],[1710014900000,0],[1710014901000,0],[1710014902000,0],[1710014903000,0],[1710014904000,0],[1710014905000,0],[1710014906000,0],[1710014907000,0],[1710014908000,0],[1710014909000,0],[1710014910000,0],[1710014911000,0],[1710014912000,0],[1710014913000,0],[1710014914000,0],[1710014915000,0],[1710014916000,0],[1710014917000,0],[1710014918000,0],[1710014919000,0],[1710014920000,0],[1710014921000,0],[1710014922000,0],[1710014923000,0],[1710014924000,0],[1710014925000,0],[1710014926000,0],[1710014927000,0],[1710014928000,0],[1710014929000,0],[1710014930000,0],[1710014931000,0],[1710014932000,0],[1710014933000,0],[1710014934000,0],[1710014935000,0],[1710014936000,0],[1710014937000,0],[1710014938000,0],[1710014939000,0],[1710014940000,0],[1710014941000,0],[1710014942000,0],[1710014943000,0],[1710014944000,0],[1710014945000,0],[1710014946000,0],[1710014947000,0],[1710014948000,0],[1710014949000,0],[1710014950000,0],[1710014951000,0],[1710014952000,0],[1710014953000,0],[1710014954000,0],[1710014955000,0],[1710014956000,0],[1710014957000,0],[1710014958000,0],[1710014959000,0],[1710014960000,0],[1710014961000,0],[1710014962000,0],[1710014963000,0],[1710014964000,0],[1710014965000,0],[1710014966000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#AECAEB',
name: 'validação concorrência transações - d',
data: [
[1710014722000,25],[1710014723000,0],[1710014724000,0],[1710014725000,0],[1710014726000,0],[1710014727000,0],[1710014728000,0],[1710014729000,0],[1710014730000,0],[1710014731000,0],[1710014732000,0],[1710014733000,0],[1710014734000,0],[1710014735000,0],[1710014736000,0],[1710014737000,0],[1710014738000,0],[1710014739000,0],[1710014740000,0],[1710014741000,0],[1710014742000,0],[1710014743000,0],[1710014744000,0],[1710014745000,0],[1710014746000,0],[1710014747000,0],[1710014748000,0],[1710014749000,0],[1710014750000,0],[1710014751000,0],[1710014752000,0],[1710014753000,0],[1710014754000,0],[1710014755000,0],[1710014756000,0],[1710014757000,0],[1710014758000,0],[1710014759000,0],[1710014760000,0],[1710014761000,0],[1710014762000,0],[1710014763000,0],[1710014764000,0],[1710014765000,0],[1710014766000,0],[1710014767000,0],[1710014768000,0],[1710014769000,0],[1710014770000,0],[1710014771000,0],[1710014772000,0],[1710014773000,0],[1710014774000,0],[1710014775000,0],[1710014776000,0],[1710014777000,0],[1710014778000,0],[1710014779000,0],[1710014780000,0],[1710014781000,0],[1710014782000,0],[1710014783000,0],[1710014784000,0],[1710014785000,0],[1710014786000,0],[1710014787000,0],[1710014788000,0],[1710014789000,0],[1710014790000,0],[1710014791000,0],[1710014792000,0],[1710014793000,0],[1710014794000,0],[1710014795000,0],[1710014796000,0],[1710014797000,0],[1710014798000,0],[1710014799000,0],[1710014800000,0],[1710014801000,0],[1710014802000,0],[1710014803000,0],[1710014804000,0],[1710014805000,0],[1710014806000,0],[1710014807000,0],[1710014808000,0],[1710014809000,0],[1710014810000,0],[1710014811000,0],[1710014812000,0],[1710014813000,0],[1710014814000,0],[1710014815000,0],[1710014816000,0],[1710014817000,0],[1710014818000,0],[1710014819000,0],[1710014820000,0],[1710014821000,0],[1710014822000,0],[1710014823000,0],[1710014824000,0],[1710014825000,0],[1710014826000,0],[1710014827000,0],[1710014828000,0],[1710014829000,0],[1710014830000,0],[1710014831000,0],[1710014832000,0],[1710014833000,0],[1710014834000,0],[1710014835000,0],[1710014836000,0],[1710014837000,0],[1710014838000,0],[1710014839000,0],[1710014840000,0],[1710014841000,0],[1710014842000,0],[1710014843000,0],[1710014844000,0],[1710014845000,0],[1710014846000,0],[1710014847000,0],[1710014848000,0],[1710014849000,0],[1710014850000,0],[1710014851000,0],[1710014852000,0],[1710014853000,0],[1710014854000,0],[1710014855000,0],[1710014856000,0],[1710014857000,0],[1710014858000,0],[1710014859000,0],[1710014860000,0],[1710014861000,0],[1710014862000,0],[1710014863000,0],[1710014864000,0],[1710014865000,0],[1710014866000,0],[1710014867000,0],[1710014868000,0],[1710014869000,0],[1710014870000,0],[1710014871000,0],[1710014872000,0],[1710014873000,0],[1710014874000,0],[1710014875000,0],[1710014876000,0],[1710014877000,0],[1710014878000,0],[1710014879000,0],[1710014880000,0],[1710014881000,0],[1710014882000,0],[1710014883000,0],[1710014884000,0],[1710014885000,0],[1710014886000,0],[1710014887000,0],[1710014888000,0],[1710014889000,0],[1710014890000,0],[1710014891000,0],[1710014892000,0],[1710014893000,0],[1710014894000,0],[1710014895000,0],[1710014896000,0],[1710014897000,0],[1710014898000,0],[1710014899000,0],[1710014900000,0],[1710014901000,0],[1710014902000,0],[1710014903000,0],[1710014904000,0],[1710014905000,0],[1710014906000,0],[1710014907000,0],[1710014908000,0],[1710014909000,0],[1710014910000,0],[1710014911000,0],[1710014912000,0],[1710014913000,0],[1710014914000,0],[1710014915000,0],[1710014916000,0],[1710014917000,0],[1710014918000,0],[1710014919000,0],[1710014920000,0],[1710014921000,0],[1710014922000,0],[1710014923000,0],[1710014924000,0],[1710014925000,0],[1710014926000,0],[1710014927000,0],[1710014928000,0],[1710014929000,0],[1710014930000,0],[1710014931000,0],[1710014932000,0],[1710014933000,0],[1710014934000,0],[1710014935000,0],[1710014936000,0],[1710014937000,0],[1710014938000,0],[1710014939000,0],[1710014940000,0],[1710014941000,0],[1710014942000,0],[1710014943000,0],[1710014944000,0],[1710014945000,0],[1710014946000,0],[1710014947000,0],[1710014948000,0],[1710014949000,0],[1710014950000,0],[1710014951000,0],[1710014952000,0],[1710014953000,0],[1710014954000,0],[1710014955000,0],[1710014956000,0],[1710014957000,0],[1710014958000,0],[1710014959000,0],[1710014960000,0],[1710014961000,0],[1710014962000,0],[1710014963000,0],[1710014964000,0],[1710014965000,0],[1710014966000,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: ['35', '104', '173', '242', '311', '380', '449', '518', '587', '656', '725', '794', '863', '932', '1001', '1070', '1139', '1208', '1277', '1346', '1415', '1484', '1553', '1622', '1691', '1761', '1830', '1899', '1968', '2037', '2106', '2175', '2244', '2313', '2382', '2451', '2520', '2589', '2658', '2727', '2796', '2865', '2934', '3003', '3072', '3141', '3210', '3279', '3348', '3417', '3487', '3556', '3625', '3694', '3763', '3832', '3901', '3970', '4039', '4108', '4177', '4246', '4315', '4384', '4453', '4522', '4591', '4660', '4729', '4798', '4867', '4936', '5005', '5074', '5143', '5213', '5282', '5351', '5420', '5489', '5558', '5627', '5696', '5765', '5834', '5903', '5972', '6041', '6110', '6179', '6248', '6317', '6386', '6455', '6524', '6593', '6662', '6731', '6800', '6869'],
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: [
4.79,0.95,0.31,0.33,0.22,0.11,0.08,0.05,0.04,0.03,0.08,0.05,0.02,0.04,0.03,0.03,0.03,0.02,0.04,0.03,0.02,0.02,0.01,0.01,0.0,0.02,0.01,0.02,0.02,0.02,0.0,0.0,0.01,0.01,0.02,0.02,0.01,0.02,0.0,0.0,0.01,0.01,0.0,0.0,0.0,0.02,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.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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: [
90.23,0.04,0.02,0.02,0.02,0.03,0.02,0.02,0.02,0.03,0.03,0.02,0.03,0.02,0.02,0.03,0.03,0.02,0.02,0.02,0.02,0.03,0.03,0.01,0.02,0.02,0.02,0.03,0.02,0.01,0.03,0.03,0.03,0.02,0.02,0.01,0.02,0.02,0.02,0.02,0.02,0.01,0.02,0.02,0.01,0.0,0.02,0.02,0.01,0.01,0.01,0.01,0.03,0.01,0.01,0.01,0.0,0.03,0.01,0.01,0.0,0.0,0.0,0.01,0.0,0.01,0.0,0.0,0.01,0.0,0.0,0.0,0.0,0.0,0.01,0.0,0.01,0.0,0.0,0.01,0.0,0.0,0.0,0.0,0.01,0.0,0.0,0.0,0.0,0.0,0.01,0.0,0.0,0.0,0.0,0.0,0.01,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([[1710014722,[238,346,528,822,827,839,843,850,892,905]],[1710014723,[7,7,7,7,7,7,7,7,7,7]],[1710014724,[56,70,157,174,191,256,257,258,262,264]],[1710014725,[7,7,7,7,7,7,7,7,7,7]],[1710014726,[2,10,43,92,100,101,134,182,242,292]],[1710014727,[2,3,8,12,12,13,27,72,72,72]],[1710014728,[7,7,10,14,15,15,15,15,15,16]],[1710014729,[8,8,11,14,14,14,15,15,15,16]],[1710014730,[8,8,8,10,11,11,12,13,13,14]],[1710014731,[7,8,8,9,10,12,12,13,14,15]],[1710014732,[7,8,8,8,9,11,13,14,14,15]],[1710014733,[7,7,8,8,9,10,11,13,13,14]],[1710014734,[7,7,8,8,8,10,11,11,43,53]],[1710014735,[6,7,8,10,11,11,11,12,25,29]],[1710014736,[5,7,8,9,10,11,12,12,23,28]],[1710014737,[6,7,8,11,11,11,11,12,12,12]],[1710014738,[5,6,7,9,10,11,11,11,12,13]],[1710014739,[4,7,7,9,9,10,10,10,11,11]],[1710014740,[4,6,7,10,10,10,10,11,12,13]],[1710014741,[3,6,7,8,9,9,12,15,42,56]],[1710014742,[2,6,7,14,17,24,34,55,70,80]],[1710014743,[3,6,8,28,32,44,54,63,72,75]],[1710014744,[2,5,6,8,10,15,28,50,69,70]],[1710014745,[2,5,7,29,33,42,48,59,83,94]],[1710014746,[2,5,7,23,28,40,48,60,65,70]],[1710014747,[2,5,7,18,26,34,49,54,65,75]],[1710014748,[2,5,8,13,24,34,36,54,58,61]],[1710014749,[2,5,8,23,30,35,45,62,73,75]],[1710014750,[2,6,9,34,38,48,58,78,87,94]],[1710014751,[1,7,15,43,47,55,65,73,98,125]],[1710014752,[2,5,17,42,47,58,63,72,80,89]],[1710014753,[1,5,17,41,46,58,68,77,86,99]],[1710014754,[2,4,9,42,46,58,62,77,82,86]],[1710014755,[1,6,19,47,53,57,64,75,77,79]],[1710014756,[1,3,7,35,44,51,63,71,87,92]],[1710014757,[1,3,8,30,36,46,51,66,79,84]],[1710014758,[1,3,8,32,40,44,59,70,84,90]],[1710014759,[1,3,11,41,49,59,60,64,79,96]],[1710014760,[1,5,23,54,60,65,71,81,148,176]],[1710014761,[1,7,30,52,60,65,72,77,89,89]],[1710014762,[2,6,27,53,57,64,70,74,83,84]],[1710014763,[2,7,26,53,59,64,73,80,88,94]],[1710014764,[1,16,41,67,70,78,82,92,142,165]],[1710014765,[1,7,27,54,60,65,75,87,112,127]],[1710014766,[1,10,33,57,64,71,77,88,160,177]],[1710014767,[2,6,25,54,59,64,69,74,90,95]],[1710014768,[2,23,56,79,83,93,109,123,176,202]],[1710014769,[1,38,78,146,160,170,187,205,270,281]],[1710014770,[18,174,217,255,265,276,291,303,345,360]],[1710014771,[1,57,129,314,338,361,393,420,448,472]],[1710014772,[2,50,96,267,278,289,311,334,374,383]],[1710014773,[2,33,66,120,156,184,217,244,277,284]],[1710014774,[1,13,41,71,76,85,93,107,147,156]],[1710014775,[3,41,66,96,108,117,136,164,181,190]],[1710014776,[2,58,101,160,175,227,255,291,309,362]],[1710014777,[2,47,112,267,280,298,321,343,360,377]],[1710014778,[1,55,116,264,275,306,342,371,402,407]],[1710014779,[1,82,172,503,554,589,649,691,720,746]],[1710014780,[109,329,467,966,1003,1038,1071,1158,1249,1300]],[1710014781,[229,720,816,1740,1825,1897,1955,2042,2145,2270]],[1710014782,[449,969,1321,2547,2626,2772,2842,3064,3152,3180]],[1710014783,[548,1767,2363,3975,4419,4659,5264,5405,5470,5490]],[1710014784,[1034,1482,2424,2590,5945,6149,6726,6816,6862,6875]],[1710014785,[1239,1409,2340,4668,4690,4717,4752,4770,4782,4785]],[1710014786,[4592,4628,4665,4678,4681,4683,4686,4689,4691,4692]],[1710014787,null],[1710014788,null],[1710014789,null],[1710014790,null],[1710014791,null],[1710014792,null],[1710014793,null],[1710014794,null],[1710014795,null],[1710014796,null],[1710014797,null],[1710014798,null],[1710014799,null],[1710014800,null],[1710014801,null],[1710014802,null],[1710014803,null],[1710014804,null],[1710014805,null],[1710014806,null],[1710014807,null],[1710014808,null],[1710014809,null],[1710014810,null],[1710014811,null],[1710014812,null],[1710014813,null],[1710014814,null],[1710014815,null],[1710014816,null],[1710014817,null],[1710014818,null],[1710014819,null],[1710014820,null],[1710014821,null],[1710014822,null],[1710014823,null],[1710014824,null],[1710014825,null],[1710014826,null],[1710014827,null],[1710014828,null],[1710014829,null],[1710014830,null],[1710014831,null],[1710014832,null],[1710014833,null],[1710014834,null],[1710014835,null],[1710014836,null],[1710014837,null],[1710014838,null],[1710014839,null],[1710014840,null],[1710014841,null],[1710014842,null],[1710014843,null],[1710014844,null],[1710014845,null],[1710014846,null],[1710014847,null],[1710014848,null],[1710014849,null],[1710014850,null],[1710014851,null],[1710014852,null],[1710014853,null],[1710014854,null],[1710014855,null],[1710014856,null],[1710014857,null],[1710014858,null],[1710014859,null],[1710014860,null],[1710014861,null],[1710014862,null],[1710014863,null],[1710014864,null],[1710014865,null],[1710014866,null],[1710014867,null],[1710014868,null],[1710014869,null],[1710014870,null],[1710014871,null],[1710014872,null],[1710014873,null],[1710014874,null],[1710014875,null],[1710014876,null],[1710014877,null],[1710014878,null],[1710014879,null],[1710014880,null],[1710014881,null],[1710014882,null],[1710014883,null],[1710014884,null],[1710014885,null],[1710014886,null],[1710014887,null],[1710014888,null],[1710014889,null],[1710014890,null],[1710014891,null],[1710014892,null],[1710014893,null],[1710014894,null],[1710014895,null],[1710014896,null],[1710014897,null],[1710014898,null],[1710014899,null],[1710014900,null],[1710014901,null],[1710014902,null],[1710014903,null],[1710014904,null],[1710014905,null],[1710014906,null],[1710014907,null],[1710014908,null],[1710014909,null],[1710014910,null],[1710014911,null],[1710014912,null],[1710014913,null],[1710014914,null],[1710014915,null],[1710014916,null],[1710014917,null],[1710014918,null],[1710014919,null],[1710014920,null],[1710014921,null],[1710014922,null],[1710014923,null],[1710014924,null],[1710014925,null],[1710014926,null],[1710014927,null],[1710014928,null],[1710014929,null],[1710014930,null],[1710014931,null],[1710014932,null],[1710014933,null],[1710014934,null],[1710014935,null],[1710014936,null],[1710014937,null],[1710014938,null],[1710014939,null],[1710014940,null],[1710014941,null],[1710014942,null],[1710014943,null],[1710014944,null],[1710014945,null],[1710014946,null],[1710014947,null],[1710014948,null],[1710014949,null],[1710014950,null],[1710014951,null],[1710014952,null],[1710014953,null],[1710014954,null],[1710014955,null],[1710014956,null],[1710014957,null],[1710014958,null],[1710014959,null],[1710014960,null],[1710014961,null],[1710014962,null],[1710014963,null],[1710014964,null],[1710014965,null],[1710014966,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([[1710014722,[25,25,0]],[1710014723,[1,1,0]],[1710014724,[25,25,0]],[1710014725,[1,1,0]],[1710014726,[55,55,0]],[1710014727,[19,19,0]],[1710014728,[6,6,0]],[1710014729,[9,9,0]],[1710014730,[11,11,0]],[1710014731,[13,13,0]],[1710014732,[18,18,0]],[1710014733,[19,19,0]],[1710014734,[24,24,0]],[1710014735,[26,26,0]],[1710014736,[27,27,0]],[1710014737,[32,32,0]],[1710014738,[34,34,0]],[1710014739,[37,37,0]],[1710014740,[39,39,0]],[1710014741,[43,43,0]],[1710014742,[45,45,0]],[1710014743,[48,48,0]],[1710014744,[50,50,0]],[1710014745,[54,54,0]],[1710014746,[56,56,0]],[1710014747,[60,60,0]],[1710014748,[61,61,0]],[1710014749,[65,65,0]],[1710014750,[67,67,0]],[1710014751,[70,70,0]],[1710014752,[74,74,0]],[1710014753,[76,76,0]],[1710014754,[80,80,0]],[1710014755,[81,81,0]],[1710014756,[84,84,0]],[1710014757,[89,89,0]],[1710014758,[89,89,0]],[1710014759,[93,93,0]],[1710014760,[96,96,0]],[1710014761,[98,98,0]],[1710014762,[102,102,0]],[1710014763,[104,104,0]],[1710014764,[107,107,0]],[1710014765,[109,109,0]],[1710014766,[114,114,0]],[1710014767,[115,115,0]],[1710014768,[119,119,0]],[1710014769,[121,121,0]],[1710014770,[123,123,0]],[1710014771,[126,126,0]],[1710014772,[129,129,0]],[1710014773,[133,133,0]],[1710014774,[134,134,0]],[1710014775,[139,139,0]],[1710014776,[140,140,0]],[1710014777,[144,144,0]],[1710014778,[146,146,0]],[1710014779,[149,149,0]],[1710014780,[151,151,0]],[1710014781,[155,155,0]],[1710014782,[159,159,0]],[1710014783,[159,159,0]],[1710014784,[164,75,89]],[1710014785,[166,20,146]],[1710014786,[170,3,167]],[1710014787,[170,0,170]],[1710014788,[174,0,174]],[1710014789,[177,0,177]],[1710014790,[180,0,180]],[1710014791,[183,0,183]],[1710014792,[186,0,186]],[1710014793,[188,0,188]],[1710014794,[192,0,192]],[1710014795,[194,0,194]],[1710014796,[197,0,197]],[1710014797,[199,0,199]],[1710014798,[203,0,203]],[1710014799,[205,0,205]],[1710014800,[208,0,208]],[1710014801,[211,0,211]],[1710014802,[213,0,213]],[1710014803,[217,0,217]],[1710014804,[219,0,219]],[1710014805,[222,0,222]],[1710014806,[225,0,225]],[1710014807,[228,0,228]],[1710014808,[229,0,229]],[1710014809,[234,0,234]],[1710014810,[237,0,237]],[1710014811,[238,0,238]],[1710014812,[243,0,243]],[1710014813,[244,0,244]],[1710014814,[248,0,248]],[1710014815,[251,0,251]],[1710014816,[251,0,251]],[1710014817,[257,0,257]],[1710014818,[259,0,259]],[1710014819,[262,0,262]],[1710014820,[263,0,263]],[1710014821,[267,0,267]],[1710014822,[269,0,269]],[1710014823,[274,0,274]],[1710014824,[275,0,275]],[1710014825,[278,0,278]],[1710014826,[282,0,282]],[1710014827,[283,0,283]],[1710014828,[286,0,286]],[1710014829,[290,0,290]],[1710014830,[292,0,292]],[1710014831,[295,0,295]],[1710014832,[299,0,299]],[1710014833,[300,0,300]],[1710014834,[304,0,304]],[1710014835,[306,0,306]],[1710014836,[309,0,309]],[1710014837,[313,0,313]],[1710014838,[314,0,314]],[1710014839,[318,0,318]],[1710014840,[321,0,321]],[1710014841,[322,0,322]],[1710014842,[327,0,327]],[1710014843,[329,0,329]],[1710014844,[331,0,331]],[1710014845,[334,0,334]],[1710014846,[339,0,339]],[1710014847,[339,0,339]],[1710014848,[341,0,341]],[1710014849,[340,0,340]],[1710014850,[340,0,340]],[1710014851,[340,0,340]],[1710014852,[340,0,340]],[1710014853,[340,0,340]],[1710014854,[340,0,340]],[1710014855,[340,0,340]],[1710014856,[340,0,340]],[1710014857,[340,0,340]],[1710014858,[340,0,340]],[1710014859,[340,0,340]],[1710014860,[340,0,340]],[1710014861,[340,0,340]],[1710014862,[340,0,340]],[1710014863,[340,0,340]],[1710014864,[340,0,340]],[1710014865,[340,0,340]],[1710014866,[340,0,340]],[1710014867,[340,0,340]],[1710014868,[340,0,340]],[1710014869,[340,0,340]],[1710014870,[340,0,340]],[1710014871,[340,0,340]],[1710014872,[340,0,340]],[1710014873,[340,0,340]],[1710014874,[340,0,340]],[1710014875,[340,0,340]],[1710014876,[340,0,340]],[1710014877,[340,0,340]],[1710014878,[340,0,340]],[1710014879,[340,0,340]],[1710014880,[340,0,340]],[1710014881,[340,0,340]],[1710014882,[340,0,340]],[1710014883,[340,0,340]],[1710014884,[340,0,340]],[1710014885,[340,0,340]],[1710014886,[340,0,340]],[1710014887,[340,0,340]],[1710014888,[340,0,340]],[1710014889,[340,0,340]],[1710014890,[340,0,340]],[1710014891,[340,0,340]],[1710014892,[340,0,340]],[1710014893,[340,0,340]],[1710014894,[340,0,340]],[1710014895,[340,0,340]],[1710014896,[340,0,340]],[1710014897,[340,0,340]],[1710014898,[340,0,340]],[1710014899,[340,0,340]],[1710014900,[340,0,340]],[1710014901,[340,0,340]],[1710014902,[340,0,340]],[1710014903,[340,0,340]],[1710014904,[340,0,340]],[1710014905,[340,0,340]],[1710014906,[340,0,340]],[1710014907,[340,0,340]],[1710014908,[340,0,340]],[1710014909,[340,0,340]],[1710014910,[340,0,340]],[1710014911,[340,0,340]],[1710014912,[340,0,340]],[1710014913,[340,0,340]],[1710014914,[340,0,340]],[1710014915,[340,0,340]],[1710014916,[340,0,340]],[1710014917,[340,0,340]],[1710014918,[340,0,340]],[1710014919,[340,0,340]],[1710014920,[340,0,340]],[1710014921,[340,0,340]],[1710014922,[340,0,340]],[1710014923,[340,0,340]],[1710014924,[340,0,340]],[1710014925,[340,0,340]],[1710014926,[340,0,340]],[1710014927,[340,0,340]],[1710014928,[340,0,340]],[1710014929,[340,0,340]],[1710014930,[340,0,340]],[1710014931,[340,0,340]],[1710014932,[340,0,340]],[1710014933,[340,0,340]],[1710014934,[340,0,340]],[1710014935,[340,0,340]],[1710014936,[340,0,340]],[1710014937,[340,0,340]],[1710014938,[340,0,340]],[1710014939,[340,0,340]],[1710014940,[340,0,340]],[1710014941,[340,0,340]],[1710014942,[340,0,340]],[1710014943,[340,0,340]],[1710014944,[340,0,340]],[1710014945,[340,0,340]],[1710014946,[340,0,340]],[1710014947,[340,0,340]],[1710014948,[340,0,340]],[1710014949,[340,0,340]],[1710014950,[340,0,340]],[1710014951,[340,0,340]],[1710014952,[339,0,339]],[1710014953,[341,0,341]],[1710014954,[340,0,340]],[1710014955,[340,0,340]],[1710014956,[340,0,340]],[1710014957,[340,0,340]],[1710014958,[340,0,340]],[1710014959,[340,0,340]],[1710014960,[340,0,340]],[1710014961,[340,0,340]],[1710014962,[340,0,340]],[1710014963,[340,0,340]],[1710014964,[340,0,340]],[1710014965,[340,0,340]],[1710014966,[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' }
}
}