-
Notifications
You must be signed in to change notification settings - Fork 923
/
Copy pathindex.html
1173 lines (1104 loc) · 93.4 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-06 16:02:47 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 - heitor-jsr">
<span class="simulation-information-label">Description: </span>
<span>Rinha de Backend - 2024/Q1: Crébito - heitor-jsr</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="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: [
[1709740967000,0],[1709740968000,0],[1709740969000,0],[1709740970000,0],[1709740971000,0],[1709740972000,2],[1709740973000,5],[1709740974000,6],[1709740975000,7],[1709740976000,9],[1709740977000,12],[1709740978000,13],[1709740979000,15],[1709740980000,16],[1709740981000,19],[1709740982000,21],[1709740983000,22],[1709740984000,24],[1709740985000,25],[1709740986000,28],[1709740987000,29],[1709740988000,31],[1709740989000,33],[1709740990000,35],[1709740991000,37],[1709740992000,38],[1709740993000,40],[1709740994000,42],[1709740995000,44],[1709740996000,46],[1709740997000,47],[1709740998000,50],[1709740999000,51],[1709741000000,53],[1709741001000,55],[1709741002000,56],[1709741003000,59],[1709741004000,60],[1709741005000,62],[1709741006000,64],[1709741007000,66],[1709741008000,68],[1709741009000,69],[1709741010000,71],[1709741011000,74],[1709741012000,74],[1709741013000,77],[1709741014000,79],[1709741015000,80],[1709741016000,82],[1709741017000,84],[1709741018000,86],[1709741019000,89],[1709741020000,90],[1709741021000,93],[1709741022000,94],[1709741023000,96],[1709741024000,98],[1709741025000,99],[1709741026000,101],[1709741027000,103],[1709741028000,105],[1709741029000,106],[1709741030000,109],[1709741031000,110],[1709741032000,111],[1709741033000,114],[1709741034000,115],[1709741035000,117],[1709741036000,119],[1709741037000,120],[1709741038000,123],[1709741039000,125],[1709741040000,127],[1709741041000,128],[1709741042000,129],[1709741043000,132],[1709741044000,133],[1709741045000,135],[1709741046000,138],[1709741047000,140],[1709741048000,141],[1709741049000,142],[1709741050000,144],[1709741051000,148],[1709741052000,149],[1709741053000,150],[1709741054000,153],[1709741055000,153],[1709741056000,155],[1709741057000,157],[1709741058000,159],[1709741059000,161],[1709741060000,162],[1709741061000,165],[1709741062000,167],[1709741063000,169],[1709741064000,170],[1709741065000,172],[1709741066000,175],[1709741067000,176],[1709741068000,178],[1709741069000,180],[1709741070000,182],[1709741071000,184],[1709741072000,185],[1709741073000,187],[1709741074000,189],[1709741075000,192],[1709741076000,194],[1709741077000,194],[1709741078000,197],[1709741079000,199],[1709741080000,200],[1709741081000,202],[1709741082000,203],[1709741083000,206],[1709741084000,206],[1709741085000,209],[1709741086000,211],[1709741087000,219],[1709741088000,215],[1709741089000,216],[1709741090000,220],[1709741091000,221],[1709741092000,220],[1709741093000,221],[1709741094000,221],[1709741095000,221],[1709741096000,221],[1709741097000,221],[1709741098000,221],[1709741099000,221],[1709741100000,221],[1709741101000,221],[1709741102000,221],[1709741103000,221],[1709741104000,221],[1709741105000,223],[1709741106000,222],[1709741107000,221],[1709741108000,221],[1709741109000,221],[1709741110000,222],[1709741111000,221],[1709741112000,222],[1709741113000,220],[1709741114000,221],[1709741115000,220],[1709741116000,222],[1709741117000,222],[1709741118000,221],[1709741119000,220],[1709741120000,222],[1709741121000,223],[1709741122000,222],[1709741123000,222],[1709741124000,221],[1709741125000,221],[1709741126000,221],[1709741127000,221],[1709741128000,221],[1709741129000,223],[1709741130000,221],[1709741131000,221],[1709741132000,220],[1709741133000,222],[1709741134000,221],[1709741135000,221],[1709741136000,222],[1709741137000,221],[1709741138000,220],[1709741139000,221],[1709741140000,221],[1709741141000,221],[1709741142000,221],[1709741143000,221],[1709741144000,221],[1709741145000,221],[1709741146000,220],[1709741147000,221],[1709741148000,221],[1709741149000,221],[1709741150000,222],[1709741151000,222],[1709741152000,221],[1709741153000,222],[1709741154000,221],[1709741155000,221],[1709741156000,221],[1709741157000,222],[1709741158000,223],[1709741159000,221],[1709741160000,220],[1709741161000,221],[1709741162000,220],[1709741163000,221],[1709741164000,221],[1709741165000,221],[1709741166000,221],[1709741167000,221],[1709741168000,221],[1709741169000,221],[1709741170000,222],[1709741171000,221],[1709741172000,221],[1709741173000,221],[1709741174000,221],[1709741175000,221],[1709741176000,221],[1709741177000,221],[1709741178000,220],[1709741179000,220],[1709741180000,221],[1709741181000,221],[1709741182000,221],[1709741183000,221],[1709741184000,223],[1709741185000,220],[1709741186000,221],[1709741187000,221],[1709741188000,221],[1709741189000,220],[1709741190000,223],[1709741191000,221],[1709741192000,221],[1709741193000,221],[1709741194000,221],[1709741195000,221],[1709741196000,221],[1709741197000,222],[1709741198000,221],[1709741199000,220],[1709741200000,221],[1709741201000,220],[1709741202000,221],[1709741203000,220],[1709741204000,221],[1709741205000,221],[1709741206000,223],[1709741207000,222],[1709741208000,221],[1709741209000,221],[1709741210000,221],[1709741211000,219]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#68b65c',
name: 'créditos',
data: [
[1709740967000,0],[1709740968000,0],[1709740969000,0],[1709740970000,0],[1709740971000,0],[1709740972000,2],[1709740973000,3],[1709740974000,4],[1709740975000,4],[1709740976000,5],[1709740977000,7],[1709740978000,7],[1709740979000,8],[1709740980000,8],[1709740981000,10],[1709740982000,10],[1709740983000,12],[1709740984000,12],[1709740985000,14],[1709740986000,14],[1709740987000,15],[1709740988000,16],[1709740989000,17],[1709740990000,17],[1709740991000,19],[1709740992000,20],[1709740993000,20],[1709740994000,22],[1709740995000,22],[1709740996000,23],[1709740997000,25],[1709740998000,25],[1709740999000,26],[1709741000000,26],[1709741001000,28],[1709741002000,29],[1709741003000,30],[1709741004000,30],[1709741005000,32],[1709741006000,32],[1709741007000,34],[1709741008000,34],[1709741009000,35],[1709741010000,36],[1709741011000,37],[1709741012000,38],[1709741013000,39],[1709741014000,39],[1709741015000,41],[1709741016000,41],[1709741017000,43],[1709741018000,43],[1709741019000,45],[1709741020000,45],[1709741021000,46],[1709741022000,47],[1709741023000,48],[1709741024000,48],[1709741025000,50],[1709741026000,50],[1709741027000,52],[1709741028000,52],[1709741029000,53],[1709741030000,54],[1709741031000,56],[1709741032000,55],[1709741033000,57],[1709741034000,58],[1709741035000,59],[1709741036000,59],[1709741037000,61],[1709741038000,61],[1709741039000,63],[1709741040000,63],[1709741041000,64],[1709741042000,65],[1709741043000,66],[1709741044000,67],[1709741045000,68],[1709741046000,69],[1709741047000,71],[1709741048000,70],[1709741049000,72],[1709741050000,72],[1709741051000,74],[1709741052000,75],[1709741053000,75],[1709741054000,76],[1709741055000,77],[1709741056000,78],[1709741057000,79],[1709741058000,79],[1709741059000,81],[1709741060000,81],[1709741061000,82],[1709741062000,84],[1709741063000,86],[1709741064000,86],[1709741065000,87],[1709741066000,87],[1709741067000,89],[1709741068000,89],[1709741069000,90],[1709741070000,92],[1709741071000,92],[1709741072000,93],[1709741073000,95],[1709741074000,95],[1709741075000,96],[1709741076000,97],[1709741077000,98],[1709741078000,98],[1709741079000,101],[1709741080000,100],[1709741081000,102],[1709741082000,101],[1709741083000,104],[1709741084000,104],[1709741085000,105],[1709741086000,106],[1709741087000,109],[1709741088000,108],[1709741089000,108],[1709741090000,110],[1709741091000,111],[1709741092000,111],[1709741093000,111],[1709741094000,111],[1709741095000,111],[1709741096000,110],[1709741097000,111],[1709741098000,111],[1709741099000,111],[1709741100000,111],[1709741101000,111],[1709741102000,111],[1709741103000,111],[1709741104000,111],[1709741105000,112],[1709741106000,111],[1709741107000,111],[1709741108000,111],[1709741109000,111],[1709741110000,111],[1709741111000,111],[1709741112000,111],[1709741113000,111],[1709741114000,111],[1709741115000,111],[1709741116000,111],[1709741117000,111],[1709741118000,111],[1709741119000,110],[1709741120000,112],[1709741121000,112],[1709741122000,111],[1709741123000,111],[1709741124000,111],[1709741125000,111],[1709741126000,111],[1709741127000,111],[1709741128000,111],[1709741129000,112],[1709741130000,111],[1709741131000,111],[1709741132000,111],[1709741133000,111],[1709741134000,111],[1709741135000,111],[1709741136000,111],[1709741137000,111],[1709741138000,111],[1709741139000,111],[1709741140000,110],[1709741141000,111],[1709741142000,111],[1709741143000,111],[1709741144000,111],[1709741145000,110],[1709741146000,111],[1709741147000,111],[1709741148000,111],[1709741149000,111],[1709741150000,111],[1709741151000,111],[1709741152000,111],[1709741153000,111],[1709741154000,111],[1709741155000,111],[1709741156000,111],[1709741157000,112],[1709741158000,112],[1709741159000,111],[1709741160000,111],[1709741161000,112],[1709741162000,111],[1709741163000,111],[1709741164000,111],[1709741165000,111],[1709741166000,111],[1709741167000,111],[1709741168000,111],[1709741169000,111],[1709741170000,111],[1709741171000,111],[1709741172000,110],[1709741173000,111],[1709741174000,110],[1709741175000,111],[1709741176000,110],[1709741177000,111],[1709741178000,111],[1709741179000,111],[1709741180000,111],[1709741181000,111],[1709741182000,111],[1709741183000,110],[1709741184000,111],[1709741185000,111],[1709741186000,111],[1709741187000,111],[1709741188000,111],[1709741189000,111],[1709741190000,111],[1709741191000,111],[1709741192000,111],[1709741193000,111],[1709741194000,111],[1709741195000,111],[1709741196000,111],[1709741197000,111],[1709741198000,111],[1709741199000,111],[1709741200000,111],[1709741201000,111],[1709741202000,111],[1709741203000,111],[1709741204000,110],[1709741205000,110],[1709741206000,111],[1709741207000,112],[1709741208000,111],[1709741209000,111],[1709741210000,111],[1709741211000,109]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#f15b4f',
name: 'extratos',
data: [
[1709740967000,0],[1709740968000,0],[1709740969000,0],[1709740970000,0],[1709740971000,1],[1709740972000,2],[1709740973000,1],[1709740974000,1],[1709740975000,1],[1709740976000,1],[1709740977000,2],[1709740978000,1],[1709740979000,2],[1709740980000,2],[1709740981000,1],[1709740982000,2],[1709740983000,2],[1709740984000,2],[1709740985000,2],[1709740986000,2],[1709740987000,2],[1709740988000,2],[1709740989000,3],[1709740990000,2],[1709740991000,3],[1709740992000,2],[1709740993000,3],[1709740994000,2],[1709740995000,3],[1709740996000,3],[1709740997000,3],[1709740998000,3],[1709740999000,3],[1709741000000,3],[1709741001000,3],[1709741002000,4],[1709741003000,3],[1709741004000,3],[1709741005000,4],[1709741006000,3],[1709741007000,5],[1709741008000,4],[1709741009000,4],[1709741010000,4],[1709741011000,4],[1709741012000,4],[1709741013000,4],[1709741014000,4],[1709741015000,4],[1709741016000,4],[1709741017000,5],[1709741018000,4],[1709741019000,5],[1709741020000,5],[1709741021000,4],[1709741022000,5],[1709741023000,5],[1709741024000,5],[1709741025000,5],[1709741026000,5],[1709741027000,5],[1709741028000,5],[1709741029000,6],[1709741030000,5],[1709741031000,6],[1709741032000,5],[1709741033000,6],[1709741034000,5],[1709741035000,6],[1709741036000,6],[1709741037000,6],[1709741038000,6],[1709741039000,6],[1709741040000,6],[1709741041000,6],[1709741042000,7],[1709741043000,6],[1709741044000,6],[1709741045000,7],[1709741046000,7],[1709741047000,7],[1709741048000,7],[1709741049000,7],[1709741050000,7],[1709741051000,8],[1709741052000,8],[1709741053000,7],[1709741054000,7],[1709741055000,7],[1709741056000,7],[1709741057000,8],[1709741058000,7],[1709741059000,8],[1709741060000,8],[1709741061000,7],[1709741062000,8],[1709741063000,8],[1709741064000,8],[1709741065000,8],[1709741066000,8],[1709741067000,8],[1709741068000,8],[1709741069000,9],[1709741070000,8],[1709741071000,9],[1709741072000,9],[1709741073000,9],[1709741074000,8],[1709741075000,9],[1709741076000,9],[1709741077000,9],[1709741078000,9],[1709741079000,10],[1709741080000,9],[1709741081000,9],[1709741082000,10],[1709741083000,9],[1709741084000,9],[1709741085000,10],[1709741086000,9],[1709741087000,11],[1709741088000,10],[1709741089000,10],[1709741090000,11],[1709741091000,10],[1709741092000,10],[1709741093000,10],[1709741094000,10],[1709741095000,10],[1709741096000,10],[1709741097000,10],[1709741098000,10],[1709741099000,10],[1709741100000,10],[1709741101000,10],[1709741102000,10],[1709741103000,10],[1709741104000,10],[1709741105000,11],[1709741106000,10],[1709741107000,10],[1709741108000,10],[1709741109000,10],[1709741110000,10],[1709741111000,10],[1709741112000,10],[1709741113000,10],[1709741114000,10],[1709741115000,10],[1709741116000,10],[1709741117000,10],[1709741118000,11],[1709741119000,10],[1709741120000,11],[1709741121000,11],[1709741122000,10],[1709741123000,11],[1709741124000,11],[1709741125000,10],[1709741126000,10],[1709741127000,10],[1709741128000,10],[1709741129000,11],[1709741130000,10],[1709741131000,10],[1709741132000,10],[1709741133000,10],[1709741134000,10],[1709741135000,10],[1709741136000,10],[1709741137000,10],[1709741138000,10],[1709741139000,10],[1709741140000,10],[1709741141000,10],[1709741142000,10],[1709741143000,11],[1709741144000,10],[1709741145000,10],[1709741146000,10],[1709741147000,10],[1709741148000,10],[1709741149000,10],[1709741150000,10],[1709741151000,10],[1709741152000,10],[1709741153000,10],[1709741154000,10],[1709741155000,10],[1709741156000,10],[1709741157000,10],[1709741158000,11],[1709741159000,10],[1709741160000,10],[1709741161000,10],[1709741162000,10],[1709741163000,11],[1709741164000,10],[1709741165000,10],[1709741166000,10],[1709741167000,10],[1709741168000,10],[1709741169000,10],[1709741170000,10],[1709741171000,11],[1709741172000,10],[1709741173000,10],[1709741174000,10],[1709741175000,10],[1709741176000,10],[1709741177000,10],[1709741178000,10],[1709741179000,10],[1709741180000,11],[1709741181000,10],[1709741182000,10],[1709741183000,10],[1709741184000,10],[1709741185000,10],[1709741186000,10],[1709741187000,10],[1709741188000,10],[1709741189000,10],[1709741190000,11],[1709741191000,10],[1709741192000,11],[1709741193000,10],[1709741194000,11],[1709741195000,10],[1709741196000,11],[1709741197000,10],[1709741198000,11],[1709741199000,10],[1709741200000,10],[1709741201000,10],[1709741202000,10],[1709741203000,10],[1709741204000,10],[1709741205000,10],[1709741206000,10],[1709741207000,10],[1709741208000,11],[1709741209000,10],[1709741210000,10],[1709741211000,10]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FFDD00',
name: 'validações',
data: [
[1709740967000,0],[1709740968000,0],[1709740969000,0],[1709740970000,5],[1709740971000,5],[1709740972000,0],[1709740973000,0],[1709740974000,0],[1709740975000,0],[1709740976000,0],[1709740977000,0],[1709740978000,0],[1709740979000,0],[1709740980000,0],[1709740981000,0],[1709740982000,0],[1709740983000,0],[1709740984000,0],[1709740985000,0],[1709740986000,0],[1709740987000,0],[1709740988000,0],[1709740989000,0],[1709740990000,0],[1709740991000,0],[1709740992000,0],[1709740993000,0],[1709740994000,0],[1709740995000,0],[1709740996000,0],[1709740997000,0],[1709740998000,0],[1709740999000,0],[1709741000000,0],[1709741001000,0],[1709741002000,0],[1709741003000,0],[1709741004000,0],[1709741005000,0],[1709741006000,0],[1709741007000,0],[1709741008000,0],[1709741009000,0],[1709741010000,0],[1709741011000,0],[1709741012000,0],[1709741013000,0],[1709741014000,0],[1709741015000,0],[1709741016000,0],[1709741017000,0],[1709741018000,0],[1709741019000,0],[1709741020000,0],[1709741021000,0],[1709741022000,0],[1709741023000,0],[1709741024000,0],[1709741025000,0],[1709741026000,0],[1709741027000,0],[1709741028000,0],[1709741029000,0],[1709741030000,0],[1709741031000,0],[1709741032000,0],[1709741033000,0],[1709741034000,0],[1709741035000,0],[1709741036000,0],[1709741037000,0],[1709741038000,0],[1709741039000,0],[1709741040000,0],[1709741041000,0],[1709741042000,0],[1709741043000,0],[1709741044000,0],[1709741045000,0],[1709741046000,0],[1709741047000,0],[1709741048000,0],[1709741049000,0],[1709741050000,0],[1709741051000,0],[1709741052000,0],[1709741053000,0],[1709741054000,0],[1709741055000,0],[1709741056000,0],[1709741057000,0],[1709741058000,0],[1709741059000,0],[1709741060000,0],[1709741061000,0],[1709741062000,0],[1709741063000,0],[1709741064000,0],[1709741065000,0],[1709741066000,0],[1709741067000,0],[1709741068000,0],[1709741069000,0],[1709741070000,0],[1709741071000,0],[1709741072000,0],[1709741073000,0],[1709741074000,0],[1709741075000,0],[1709741076000,0],[1709741077000,0],[1709741078000,0],[1709741079000,0],[1709741080000,0],[1709741081000,0],[1709741082000,0],[1709741083000,0],[1709741084000,0],[1709741085000,0],[1709741086000,0],[1709741087000,0],[1709741088000,0],[1709741089000,0],[1709741090000,0],[1709741091000,0],[1709741092000,0],[1709741093000,0],[1709741094000,0],[1709741095000,0],[1709741096000,0],[1709741097000,0],[1709741098000,0],[1709741099000,0],[1709741100000,0],[1709741101000,0],[1709741102000,0],[1709741103000,0],[1709741104000,0],[1709741105000,0],[1709741106000,0],[1709741107000,0],[1709741108000,0],[1709741109000,0],[1709741110000,0],[1709741111000,0],[1709741112000,0],[1709741113000,0],[1709741114000,0],[1709741115000,0],[1709741116000,0],[1709741117000,0],[1709741118000,0],[1709741119000,0],[1709741120000,0],[1709741121000,0],[1709741122000,0],[1709741123000,0],[1709741124000,0],[1709741125000,0],[1709741126000,0],[1709741127000,0],[1709741128000,0],[1709741129000,0],[1709741130000,0],[1709741131000,0],[1709741132000,0],[1709741133000,0],[1709741134000,0],[1709741135000,0],[1709741136000,0],[1709741137000,0],[1709741138000,0],[1709741139000,0],[1709741140000,0],[1709741141000,0],[1709741142000,0],[1709741143000,0],[1709741144000,0],[1709741145000,0],[1709741146000,0],[1709741147000,0],[1709741148000,0],[1709741149000,0],[1709741150000,0],[1709741151000,0],[1709741152000,0],[1709741153000,0],[1709741154000,0],[1709741155000,0],[1709741156000,0],[1709741157000,0],[1709741158000,0],[1709741159000,0],[1709741160000,0],[1709741161000,0],[1709741162000,0],[1709741163000,0],[1709741164000,0],[1709741165000,0],[1709741166000,0],[1709741167000,0],[1709741168000,0],[1709741169000,0],[1709741170000,0],[1709741171000,0],[1709741172000,0],[1709741173000,0],[1709741174000,0],[1709741175000,0],[1709741176000,0],[1709741177000,0],[1709741178000,0],[1709741179000,0],[1709741180000,0],[1709741181000,0],[1709741182000,0],[1709741183000,0],[1709741184000,0],[1709741185000,0],[1709741186000,0],[1709741187000,0],[1709741188000,0],[1709741189000,0],[1709741190000,0],[1709741191000,0],[1709741192000,0],[1709741193000,0],[1709741194000,0],[1709741195000,0],[1709741196000,0],[1709741197000,0],[1709741198000,0],[1709741199000,0],[1709741200000,0],[1709741201000,0],[1709741202000,0],[1709741203000,0],[1709741204000,0],[1709741205000,0],[1709741206000,0],[1709741207000,0],[1709741208000,0],[1709741209000,0],[1709741210000,0],[1709741211000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00D5FF',
name: 'validação HTTP 404',
data: [
[1709740967000,0],[1709740968000,0],[1709740969000,0],[1709740970000,1],[1709740971000,0],[1709740972000,0],[1709740973000,0],[1709740974000,0],[1709740975000,0],[1709740976000,0],[1709740977000,0],[1709740978000,0],[1709740979000,0],[1709740980000,0],[1709740981000,0],[1709740982000,0],[1709740983000,0],[1709740984000,0],[1709740985000,0],[1709740986000,0],[1709740987000,0],[1709740988000,0],[1709740989000,0],[1709740990000,0],[1709740991000,0],[1709740992000,0],[1709740993000,0],[1709740994000,0],[1709740995000,0],[1709740996000,0],[1709740997000,0],[1709740998000,0],[1709740999000,0],[1709741000000,0],[1709741001000,0],[1709741002000,0],[1709741003000,0],[1709741004000,0],[1709741005000,0],[1709741006000,0],[1709741007000,0],[1709741008000,0],[1709741009000,0],[1709741010000,0],[1709741011000,0],[1709741012000,0],[1709741013000,0],[1709741014000,0],[1709741015000,0],[1709741016000,0],[1709741017000,0],[1709741018000,0],[1709741019000,0],[1709741020000,0],[1709741021000,0],[1709741022000,0],[1709741023000,0],[1709741024000,0],[1709741025000,0],[1709741026000,0],[1709741027000,0],[1709741028000,0],[1709741029000,0],[1709741030000,0],[1709741031000,0],[1709741032000,0],[1709741033000,0],[1709741034000,0],[1709741035000,0],[1709741036000,0],[1709741037000,0],[1709741038000,0],[1709741039000,0],[1709741040000,0],[1709741041000,0],[1709741042000,0],[1709741043000,0],[1709741044000,0],[1709741045000,0],[1709741046000,0],[1709741047000,0],[1709741048000,0],[1709741049000,0],[1709741050000,0],[1709741051000,0],[1709741052000,0],[1709741053000,0],[1709741054000,0],[1709741055000,0],[1709741056000,0],[1709741057000,0],[1709741058000,0],[1709741059000,0],[1709741060000,0],[1709741061000,0],[1709741062000,0],[1709741063000,0],[1709741064000,0],[1709741065000,0],[1709741066000,0],[1709741067000,0],[1709741068000,0],[1709741069000,0],[1709741070000,0],[1709741071000,0],[1709741072000,0],[1709741073000,0],[1709741074000,0],[1709741075000,0],[1709741076000,0],[1709741077000,0],[1709741078000,0],[1709741079000,0],[1709741080000,0],[1709741081000,0],[1709741082000,0],[1709741083000,0],[1709741084000,0],[1709741085000,0],[1709741086000,0],[1709741087000,0],[1709741088000,0],[1709741089000,0],[1709741090000,0],[1709741091000,0],[1709741092000,0],[1709741093000,0],[1709741094000,0],[1709741095000,0],[1709741096000,0],[1709741097000,0],[1709741098000,0],[1709741099000,0],[1709741100000,0],[1709741101000,0],[1709741102000,0],[1709741103000,0],[1709741104000,0],[1709741105000,0],[1709741106000,0],[1709741107000,0],[1709741108000,0],[1709741109000,0],[1709741110000,0],[1709741111000,0],[1709741112000,0],[1709741113000,0],[1709741114000,0],[1709741115000,0],[1709741116000,0],[1709741117000,0],[1709741118000,0],[1709741119000,0],[1709741120000,0],[1709741121000,0],[1709741122000,0],[1709741123000,0],[1709741124000,0],[1709741125000,0],[1709741126000,0],[1709741127000,0],[1709741128000,0],[1709741129000,0],[1709741130000,0],[1709741131000,0],[1709741132000,0],[1709741133000,0],[1709741134000,0],[1709741135000,0],[1709741136000,0],[1709741137000,0],[1709741138000,0],[1709741139000,0],[1709741140000,0],[1709741141000,0],[1709741142000,0],[1709741143000,0],[1709741144000,0],[1709741145000,0],[1709741146000,0],[1709741147000,0],[1709741148000,0],[1709741149000,0],[1709741150000,0],[1709741151000,0],[1709741152000,0],[1709741153000,0],[1709741154000,0],[1709741155000,0],[1709741156000,0],[1709741157000,0],[1709741158000,0],[1709741159000,0],[1709741160000,0],[1709741161000,0],[1709741162000,0],[1709741163000,0],[1709741164000,0],[1709741165000,0],[1709741166000,0],[1709741167000,0],[1709741168000,0],[1709741169000,0],[1709741170000,0],[1709741171000,0],[1709741172000,0],[1709741173000,0],[1709741174000,0],[1709741175000,0],[1709741176000,0],[1709741177000,0],[1709741178000,0],[1709741179000,0],[1709741180000,0],[1709741181000,0],[1709741182000,0],[1709741183000,0],[1709741184000,0],[1709741185000,0],[1709741186000,0],[1709741187000,0],[1709741188000,0],[1709741189000,0],[1709741190000,0],[1709741191000,0],[1709741192000,0],[1709741193000,0],[1709741194000,0],[1709741195000,0],[1709741196000,0],[1709741197000,0],[1709741198000,0],[1709741199000,0],[1709741200000,0],[1709741201000,0],[1709741202000,0],[1709741203000,0],[1709741204000,0],[1709741205000,0],[1709741206000,0],[1709741207000,0],[1709741208000,0],[1709741209000,0],[1709741210000,0],[1709741211000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00FF00',
name: 'validação concorrência saldo - 0',
data: [
[1709740967000,0],[1709740968000,0],[1709740969000,1],[1709740970000,0],[1709740971000,0],[1709740972000,0],[1709740973000,0],[1709740974000,0],[1709740975000,0],[1709740976000,0],[1709740977000,0],[1709740978000,0],[1709740979000,0],[1709740980000,0],[1709740981000,0],[1709740982000,0],[1709740983000,0],[1709740984000,0],[1709740985000,0],[1709740986000,0],[1709740987000,0],[1709740988000,0],[1709740989000,0],[1709740990000,0],[1709740991000,0],[1709740992000,0],[1709740993000,0],[1709740994000,0],[1709740995000,0],[1709740996000,0],[1709740997000,0],[1709740998000,0],[1709740999000,0],[1709741000000,0],[1709741001000,0],[1709741002000,0],[1709741003000,0],[1709741004000,0],[1709741005000,0],[1709741006000,0],[1709741007000,0],[1709741008000,0],[1709741009000,0],[1709741010000,0],[1709741011000,0],[1709741012000,0],[1709741013000,0],[1709741014000,0],[1709741015000,0],[1709741016000,0],[1709741017000,0],[1709741018000,0],[1709741019000,0],[1709741020000,0],[1709741021000,0],[1709741022000,0],[1709741023000,0],[1709741024000,0],[1709741025000,0],[1709741026000,0],[1709741027000,0],[1709741028000,0],[1709741029000,0],[1709741030000,0],[1709741031000,0],[1709741032000,0],[1709741033000,0],[1709741034000,0],[1709741035000,0],[1709741036000,0],[1709741037000,0],[1709741038000,0],[1709741039000,0],[1709741040000,0],[1709741041000,0],[1709741042000,0],[1709741043000,0],[1709741044000,0],[1709741045000,0],[1709741046000,0],[1709741047000,0],[1709741048000,0],[1709741049000,0],[1709741050000,0],[1709741051000,0],[1709741052000,0],[1709741053000,0],[1709741054000,0],[1709741055000,0],[1709741056000,0],[1709741057000,0],[1709741058000,0],[1709741059000,0],[1709741060000,0],[1709741061000,0],[1709741062000,0],[1709741063000,0],[1709741064000,0],[1709741065000,0],[1709741066000,0],[1709741067000,0],[1709741068000,0],[1709741069000,0],[1709741070000,0],[1709741071000,0],[1709741072000,0],[1709741073000,0],[1709741074000,0],[1709741075000,0],[1709741076000,0],[1709741077000,0],[1709741078000,0],[1709741079000,0],[1709741080000,0],[1709741081000,0],[1709741082000,0],[1709741083000,0],[1709741084000,0],[1709741085000,0],[1709741086000,0],[1709741087000,0],[1709741088000,0],[1709741089000,0],[1709741090000,0],[1709741091000,0],[1709741092000,0],[1709741093000,0],[1709741094000,0],[1709741095000,0],[1709741096000,0],[1709741097000,0],[1709741098000,0],[1709741099000,0],[1709741100000,0],[1709741101000,0],[1709741102000,0],[1709741103000,0],[1709741104000,0],[1709741105000,0],[1709741106000,0],[1709741107000,0],[1709741108000,0],[1709741109000,0],[1709741110000,0],[1709741111000,0],[1709741112000,0],[1709741113000,0],[1709741114000,0],[1709741115000,0],[1709741116000,0],[1709741117000,0],[1709741118000,0],[1709741119000,0],[1709741120000,0],[1709741121000,0],[1709741122000,0],[1709741123000,0],[1709741124000,0],[1709741125000,0],[1709741126000,0],[1709741127000,0],[1709741128000,0],[1709741129000,0],[1709741130000,0],[1709741131000,0],[1709741132000,0],[1709741133000,0],[1709741134000,0],[1709741135000,0],[1709741136000,0],[1709741137000,0],[1709741138000,0],[1709741139000,0],[1709741140000,0],[1709741141000,0],[1709741142000,0],[1709741143000,0],[1709741144000,0],[1709741145000,0],[1709741146000,0],[1709741147000,0],[1709741148000,0],[1709741149000,0],[1709741150000,0],[1709741151000,0],[1709741152000,0],[1709741153000,0],[1709741154000,0],[1709741155000,0],[1709741156000,0],[1709741157000,0],[1709741158000,0],[1709741159000,0],[1709741160000,0],[1709741161000,0],[1709741162000,0],[1709741163000,0],[1709741164000,0],[1709741165000,0],[1709741166000,0],[1709741167000,0],[1709741168000,0],[1709741169000,0],[1709741170000,0],[1709741171000,0],[1709741172000,0],[1709741173000,0],[1709741174000,0],[1709741175000,0],[1709741176000,0],[1709741177000,0],[1709741178000,0],[1709741179000,0],[1709741180000,0],[1709741181000,0],[1709741182000,0],[1709741183000,0],[1709741184000,0],[1709741185000,0],[1709741186000,0],[1709741187000,0],[1709741188000,0],[1709741189000,0],[1709741190000,0],[1709741191000,0],[1709741192000,0],[1709741193000,0],[1709741194000,0],[1709741195000,0],[1709741196000,0],[1709741197000,0],[1709741198000,0],[1709741199000,0],[1709741200000,0],[1709741201000,0],[1709741202000,0],[1709741203000,0],[1709741204000,0],[1709741205000,0],[1709741206000,0],[1709741207000,0],[1709741208000,0],[1709741209000,0],[1709741210000,0],[1709741211000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#9D00FF',
name: 'validação concorrência transações - c',
data: [
[1709740967000,0],[1709740968000,25],[1709740969000,25],[1709740970000,0],[1709740971000,0],[1709740972000,0],[1709740973000,0],[1709740974000,0],[1709740975000,0],[1709740976000,0],[1709740977000,0],[1709740978000,0],[1709740979000,0],[1709740980000,0],[1709740981000,0],[1709740982000,0],[1709740983000,0],[1709740984000,0],[1709740985000,0],[1709740986000,0],[1709740987000,0],[1709740988000,0],[1709740989000,0],[1709740990000,0],[1709740991000,0],[1709740992000,0],[1709740993000,0],[1709740994000,0],[1709740995000,0],[1709740996000,0],[1709740997000,0],[1709740998000,0],[1709740999000,0],[1709741000000,0],[1709741001000,0],[1709741002000,0],[1709741003000,0],[1709741004000,0],[1709741005000,0],[1709741006000,0],[1709741007000,0],[1709741008000,0],[1709741009000,0],[1709741010000,0],[1709741011000,0],[1709741012000,0],[1709741013000,0],[1709741014000,0],[1709741015000,0],[1709741016000,0],[1709741017000,0],[1709741018000,0],[1709741019000,0],[1709741020000,0],[1709741021000,0],[1709741022000,0],[1709741023000,0],[1709741024000,0],[1709741025000,0],[1709741026000,0],[1709741027000,0],[1709741028000,0],[1709741029000,0],[1709741030000,0],[1709741031000,0],[1709741032000,0],[1709741033000,0],[1709741034000,0],[1709741035000,0],[1709741036000,0],[1709741037000,0],[1709741038000,0],[1709741039000,0],[1709741040000,0],[1709741041000,0],[1709741042000,0],[1709741043000,0],[1709741044000,0],[1709741045000,0],[1709741046000,0],[1709741047000,0],[1709741048000,0],[1709741049000,0],[1709741050000,0],[1709741051000,0],[1709741052000,0],[1709741053000,0],[1709741054000,0],[1709741055000,0],[1709741056000,0],[1709741057000,0],[1709741058000,0],[1709741059000,0],[1709741060000,0],[1709741061000,0],[1709741062000,0],[1709741063000,0],[1709741064000,0],[1709741065000,0],[1709741066000,0],[1709741067000,0],[1709741068000,0],[1709741069000,0],[1709741070000,0],[1709741071000,0],[1709741072000,0],[1709741073000,0],[1709741074000,0],[1709741075000,0],[1709741076000,0],[1709741077000,0],[1709741078000,0],[1709741079000,0],[1709741080000,0],[1709741081000,0],[1709741082000,0],[1709741083000,0],[1709741084000,0],[1709741085000,0],[1709741086000,0],[1709741087000,0],[1709741088000,0],[1709741089000,0],[1709741090000,0],[1709741091000,0],[1709741092000,0],[1709741093000,0],[1709741094000,0],[1709741095000,0],[1709741096000,0],[1709741097000,0],[1709741098000,0],[1709741099000,0],[1709741100000,0],[1709741101000,0],[1709741102000,0],[1709741103000,0],[1709741104000,0],[1709741105000,0],[1709741106000,0],[1709741107000,0],[1709741108000,0],[1709741109000,0],[1709741110000,0],[1709741111000,0],[1709741112000,0],[1709741113000,0],[1709741114000,0],[1709741115000,0],[1709741116000,0],[1709741117000,0],[1709741118000,0],[1709741119000,0],[1709741120000,0],[1709741121000,0],[1709741122000,0],[1709741123000,0],[1709741124000,0],[1709741125000,0],[1709741126000,0],[1709741127000,0],[1709741128000,0],[1709741129000,0],[1709741130000,0],[1709741131000,0],[1709741132000,0],[1709741133000,0],[1709741134000,0],[1709741135000,0],[1709741136000,0],[1709741137000,0],[1709741138000,0],[1709741139000,0],[1709741140000,0],[1709741141000,0],[1709741142000,0],[1709741143000,0],[1709741144000,0],[1709741145000,0],[1709741146000,0],[1709741147000,0],[1709741148000,0],[1709741149000,0],[1709741150000,0],[1709741151000,0],[1709741152000,0],[1709741153000,0],[1709741154000,0],[1709741155000,0],[1709741156000,0],[1709741157000,0],[1709741158000,0],[1709741159000,0],[1709741160000,0],[1709741161000,0],[1709741162000,0],[1709741163000,0],[1709741164000,0],[1709741165000,0],[1709741166000,0],[1709741167000,0],[1709741168000,0],[1709741169000,0],[1709741170000,0],[1709741171000,0],[1709741172000,0],[1709741173000,0],[1709741174000,0],[1709741175000,0],[1709741176000,0],[1709741177000,0],[1709741178000,0],[1709741179000,0],[1709741180000,0],[1709741181000,0],[1709741182000,0],[1709741183000,0],[1709741184000,0],[1709741185000,0],[1709741186000,0],[1709741187000,0],[1709741188000,0],[1709741189000,0],[1709741190000,0],[1709741191000,0],[1709741192000,0],[1709741193000,0],[1709741194000,0],[1709741195000,0],[1709741196000,0],[1709741197000,0],[1709741198000,0],[1709741199000,0],[1709741200000,0],[1709741201000,0],[1709741202000,0],[1709741203000,0],[1709741204000,0],[1709741205000,0],[1709741206000,0],[1709741207000,0],[1709741208000,0],[1709741209000,0],[1709741210000,0],[1709741211000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FF00E1',
name: 'validação concorrência saldo - -25',
data: [
[1709740967000,1],[1709740968000,1],[1709740969000,0],[1709740970000,0],[1709740971000,0],[1709740972000,0],[1709740973000,0],[1709740974000,0],[1709740975000,0],[1709740976000,0],[1709740977000,0],[1709740978000,0],[1709740979000,0],[1709740980000,0],[1709740981000,0],[1709740982000,0],[1709740983000,0],[1709740984000,0],[1709740985000,0],[1709740986000,0],[1709740987000,0],[1709740988000,0],[1709740989000,0],[1709740990000,0],[1709740991000,0],[1709740992000,0],[1709740993000,0],[1709740994000,0],[1709740995000,0],[1709740996000,0],[1709740997000,0],[1709740998000,0],[1709740999000,0],[1709741000000,0],[1709741001000,0],[1709741002000,0],[1709741003000,0],[1709741004000,0],[1709741005000,0],[1709741006000,0],[1709741007000,0],[1709741008000,0],[1709741009000,0],[1709741010000,0],[1709741011000,0],[1709741012000,0],[1709741013000,0],[1709741014000,0],[1709741015000,0],[1709741016000,0],[1709741017000,0],[1709741018000,0],[1709741019000,0],[1709741020000,0],[1709741021000,0],[1709741022000,0],[1709741023000,0],[1709741024000,0],[1709741025000,0],[1709741026000,0],[1709741027000,0],[1709741028000,0],[1709741029000,0],[1709741030000,0],[1709741031000,0],[1709741032000,0],[1709741033000,0],[1709741034000,0],[1709741035000,0],[1709741036000,0],[1709741037000,0],[1709741038000,0],[1709741039000,0],[1709741040000,0],[1709741041000,0],[1709741042000,0],[1709741043000,0],[1709741044000,0],[1709741045000,0],[1709741046000,0],[1709741047000,0],[1709741048000,0],[1709741049000,0],[1709741050000,0],[1709741051000,0],[1709741052000,0],[1709741053000,0],[1709741054000,0],[1709741055000,0],[1709741056000,0],[1709741057000,0],[1709741058000,0],[1709741059000,0],[1709741060000,0],[1709741061000,0],[1709741062000,0],[1709741063000,0],[1709741064000,0],[1709741065000,0],[1709741066000,0],[1709741067000,0],[1709741068000,0],[1709741069000,0],[1709741070000,0],[1709741071000,0],[1709741072000,0],[1709741073000,0],[1709741074000,0],[1709741075000,0],[1709741076000,0],[1709741077000,0],[1709741078000,0],[1709741079000,0],[1709741080000,0],[1709741081000,0],[1709741082000,0],[1709741083000,0],[1709741084000,0],[1709741085000,0],[1709741086000,0],[1709741087000,0],[1709741088000,0],[1709741089000,0],[1709741090000,0],[1709741091000,0],[1709741092000,0],[1709741093000,0],[1709741094000,0],[1709741095000,0],[1709741096000,0],[1709741097000,0],[1709741098000,0],[1709741099000,0],[1709741100000,0],[1709741101000,0],[1709741102000,0],[1709741103000,0],[1709741104000,0],[1709741105000,0],[1709741106000,0],[1709741107000,0],[1709741108000,0],[1709741109000,0],[1709741110000,0],[1709741111000,0],[1709741112000,0],[1709741113000,0],[1709741114000,0],[1709741115000,0],[1709741116000,0],[1709741117000,0],[1709741118000,0],[1709741119000,0],[1709741120000,0],[1709741121000,0],[1709741122000,0],[1709741123000,0],[1709741124000,0],[1709741125000,0],[1709741126000,0],[1709741127000,0],[1709741128000,0],[1709741129000,0],[1709741130000,0],[1709741131000,0],[1709741132000,0],[1709741133000,0],[1709741134000,0],[1709741135000,0],[1709741136000,0],[1709741137000,0],[1709741138000,0],[1709741139000,0],[1709741140000,0],[1709741141000,0],[1709741142000,0],[1709741143000,0],[1709741144000,0],[1709741145000,0],[1709741146000,0],[1709741147000,0],[1709741148000,0],[1709741149000,0],[1709741150000,0],[1709741151000,0],[1709741152000,0],[1709741153000,0],[1709741154000,0],[1709741155000,0],[1709741156000,0],[1709741157000,0],[1709741158000,0],[1709741159000,0],[1709741160000,0],[1709741161000,0],[1709741162000,0],[1709741163000,0],[1709741164000,0],[1709741165000,0],[1709741166000,0],[1709741167000,0],[1709741168000,0],[1709741169000,0],[1709741170000,0],[1709741171000,0],[1709741172000,0],[1709741173000,0],[1709741174000,0],[1709741175000,0],[1709741176000,0],[1709741177000,0],[1709741178000,0],[1709741179000,0],[1709741180000,0],[1709741181000,0],[1709741182000,0],[1709741183000,0],[1709741184000,0],[1709741185000,0],[1709741186000,0],[1709741187000,0],[1709741188000,0],[1709741189000,0],[1709741190000,0],[1709741191000,0],[1709741192000,0],[1709741193000,0],[1709741194000,0],[1709741195000,0],[1709741196000,0],[1709741197000,0],[1709741198000,0],[1709741199000,0],[1709741200000,0],[1709741201000,0],[1709741202000,0],[1709741203000,0],[1709741204000,0],[1709741205000,0],[1709741206000,0],[1709741207000,0],[1709741208000,0],[1709741209000,0],[1709741210000,0],[1709741211000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#AECAEB',
name: 'validação concorrência transações - d',
data: [
[1709740967000,25],[1709740968000,0],[1709740969000,0],[1709740970000,0],[1709740971000,0],[1709740972000,0],[1709740973000,0],[1709740974000,0],[1709740975000,0],[1709740976000,0],[1709740977000,0],[1709740978000,0],[1709740979000,0],[1709740980000,0],[1709740981000,0],[1709740982000,0],[1709740983000,0],[1709740984000,0],[1709740985000,0],[1709740986000,0],[1709740987000,0],[1709740988000,0],[1709740989000,0],[1709740990000,0],[1709740991000,0],[1709740992000,0],[1709740993000,0],[1709740994000,0],[1709740995000,0],[1709740996000,0],[1709740997000,0],[1709740998000,0],[1709740999000,0],[1709741000000,0],[1709741001000,0],[1709741002000,0],[1709741003000,0],[1709741004000,0],[1709741005000,0],[1709741006000,0],[1709741007000,0],[1709741008000,0],[1709741009000,0],[1709741010000,0],[1709741011000,0],[1709741012000,0],[1709741013000,0],[1709741014000,0],[1709741015000,0],[1709741016000,0],[1709741017000,0],[1709741018000,0],[1709741019000,0],[1709741020000,0],[1709741021000,0],[1709741022000,0],[1709741023000,0],[1709741024000,0],[1709741025000,0],[1709741026000,0],[1709741027000,0],[1709741028000,0],[1709741029000,0],[1709741030000,0],[1709741031000,0],[1709741032000,0],[1709741033000,0],[1709741034000,0],[1709741035000,0],[1709741036000,0],[1709741037000,0],[1709741038000,0],[1709741039000,0],[1709741040000,0],[1709741041000,0],[1709741042000,0],[1709741043000,0],[1709741044000,0],[1709741045000,0],[1709741046000,0],[1709741047000,0],[1709741048000,0],[1709741049000,0],[1709741050000,0],[1709741051000,0],[1709741052000,0],[1709741053000,0],[1709741054000,0],[1709741055000,0],[1709741056000,0],[1709741057000,0],[1709741058000,0],[1709741059000,0],[1709741060000,0],[1709741061000,0],[1709741062000,0],[1709741063000,0],[1709741064000,0],[1709741065000,0],[1709741066000,0],[1709741067000,0],[1709741068000,0],[1709741069000,0],[1709741070000,0],[1709741071000,0],[1709741072000,0],[1709741073000,0],[1709741074000,0],[1709741075000,0],[1709741076000,0],[1709741077000,0],[1709741078000,0],[1709741079000,0],[1709741080000,0],[1709741081000,0],[1709741082000,0],[1709741083000,0],[1709741084000,0],[1709741085000,0],[1709741086000,0],[1709741087000,0],[1709741088000,0],[1709741089000,0],[1709741090000,0],[1709741091000,0],[1709741092000,0],[1709741093000,0],[1709741094000,0],[1709741095000,0],[1709741096000,0],[1709741097000,0],[1709741098000,0],[1709741099000,0],[1709741100000,0],[1709741101000,0],[1709741102000,0],[1709741103000,0],[1709741104000,0],[1709741105000,0],[1709741106000,0],[1709741107000,0],[1709741108000,0],[1709741109000,0],[1709741110000,0],[1709741111000,0],[1709741112000,0],[1709741113000,0],[1709741114000,0],[1709741115000,0],[1709741116000,0],[1709741117000,0],[1709741118000,0],[1709741119000,0],[1709741120000,0],[1709741121000,0],[1709741122000,0],[1709741123000,0],[1709741124000,0],[1709741125000,0],[1709741126000,0],[1709741127000,0],[1709741128000,0],[1709741129000,0],[1709741130000,0],[1709741131000,0],[1709741132000,0],[1709741133000,0],[1709741134000,0],[1709741135000,0],[1709741136000,0],[1709741137000,0],[1709741138000,0],[1709741139000,0],[1709741140000,0],[1709741141000,0],[1709741142000,0],[1709741143000,0],[1709741144000,0],[1709741145000,0],[1709741146000,0],[1709741147000,0],[1709741148000,0],[1709741149000,0],[1709741150000,0],[1709741151000,0],[1709741152000,0],[1709741153000,0],[1709741154000,0],[1709741155000,0],[1709741156000,0],[1709741157000,0],[1709741158000,0],[1709741159000,0],[1709741160000,0],[1709741161000,0],[1709741162000,0],[1709741163000,0],[1709741164000,0],[1709741165000,0],[1709741166000,0],[1709741167000,0],[1709741168000,0],[1709741169000,0],[1709741170000,0],[1709741171000,0],[1709741172000,0],[1709741173000,0],[1709741174000,0],[1709741175000,0],[1709741176000,0],[1709741177000,0],[1709741178000,0],[1709741179000,0],[1709741180000,0],[1709741181000,0],[1709741182000,0],[1709741183000,0],[1709741184000,0],[1709741185000,0],[1709741186000,0],[1709741187000,0],[1709741188000,0],[1709741189000,0],[1709741190000,0],[1709741191000,0],[1709741192000,0],[1709741193000,0],[1709741194000,0],[1709741195000,0],[1709741196000,0],[1709741197000,0],[1709741198000,0],[1709741199000,0],[1709741200000,0],[1709741201000,0],[1709741202000,0],[1709741203000,0],[1709741204000,0],[1709741205000,0],[1709741206000,0],[1709741207000,0],[1709741208000,0],[1709741209000,0],[1709741210000,0],[1709741211000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
allUsersData
]
});
allUsersChart.setTitle({
text: '<span class="chart_title">Active Users along the Simulation</span>',
useHTML: true
});
allUsersData.yAxis = 1;
var responsetimeDistributionChart = new Highcharts.Chart({
chart: {
renderTo: 'responsetimeDistributionContainer',
type: 'column',
marginBottom: 60
},
credits: { enabled: false },
legend: {
enabled: true,
floating: true,
y: 5,
borderWidth: 0,
itemStyle: { fontWeight: "normal" },
symbolRadius: 0
},
title: { text: 'A title to let highcharts reserve the place for the title set later' },
navigator: {
maskInside: false
},
xAxis: {
categories: ['2', '4', '7', '9', '11', '14', '16', '18', '20', '23', '25', '27', '30', '32', '34', '36', '39', '41', '43', '46', '48', '50', '53', '55', '57', '59', '62', '64', '66', '69', '71', '73', '75', '78', '80', '82', '85', '87', '89', '91', '94', '96', '98', '101', '103', '105', '107', '110', '112', '114', '117', '119', '121', '124', '126', '128', '130', '133', '135', '137', '140', '142', '144', '146', '149', '151', '153', '156', '158', '160', '162', '165', '167', '169', '172', '174', '176', '178', '181', '183', '185', '188', '190', '192', '195', '197', '199', '201', '204', '206', '208', '211', '213', '215', '217', '220', '222', '224', '227', '229'],
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: [
50.7,32.06,8.78,4.51,1.37,0.77,0.67,0.23,0.17,0.13,0.12,0.06,0.03,0.05,0.02,0.02,0.03,0.03,0.01,0.01,0.02,0.0,0.01,0.0,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
],
tooltip: { yDecimals: 0, ySuffix: 'ms' }
},
{
type: 'column',
color: '#f15b4f',
name: 'KO',
data: [
0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
],
tooltip: { yDecimals: 0, ySuffix: 'ms' }
}
]
});
responsetimeDistributionChart.setTitle({
text: '<span class="chart_title">Response Time Distribution</span>',
useHTML: true
});
var responsetimepercentilesovertimeokPercentiles = unpack([[1709740967,[20,46,63,85,86,86,89,90,96,98]],[1709740968,[5,5,5,5,5,5,5,5,5,5]],[1709740969,[7,19,30,50,53,53,55,57,59,60]],[1709740970,[6,6,6,6,6,6,6,6,6,6]],[1709740971,[1,2,5,8,10,15,17,19,22,25]],[1709740972,[5,6,7,7,7,7,7,7,7,7]],[1709740973,[4,5,6,9,10,10,10,10,10,11]],[1709740974,[4,5,5,5,5,6,7,7,7,8]],[1709740975,[4,4,4,5,5,5,5,6,6,7]],[1709740976,[4,4,4,4,4,5,5,6,6,7]],[1709740977,[3,4,5,10,11,61,147,211,226,230]],[1709740978,[3,3,4,5,5,5,6,6,8,9]],[1709740979,[3,4,4,5,5,7,8,8,9,10]],[1709740980,[3,4,4,5,6,6,6,6,8,9]],[1709740981,[3,4,4,5,5,6,6,6,10,12]],[1709740982,[3,4,4,5,6,7,10,14,14,14]],[1709740983,[3,4,4,4,5,5,5,6,6,7]],[1709740984,[3,4,4,6,7,8,8,12,17,20]],[1709740985,[2,3,4,4,4,5,5,6,6,7]],[1709740986,[3,3,4,5,5,5,6,8,9,10]],[1709740987,[2,3,3,4,5,5,6,6,15,22]],[1709740988,[2,3,3,4,4,4,4,5,8,9]],[1709740989,[3,3,3,4,4,4,5,6,9,11]],[1709740990,[2,3,3,4,4,4,4,5,7,7]],[1709740991,[2,3,3,4,4,4,5,7,8,8]],[1709740992,[2,3,3,4,4,4,5,5,8,9]],[1709740993,[2,3,3,4,4,4,5,5,8,10]],[1709740994,[2,3,3,4,4,5,5,6,8,9]],[1709740995,[3,3,3,4,4,5,5,7,11,15]],[1709740996,[2,3,3,4,5,5,6,8,12,13]],[1709740997,[2,3,3,4,4,4,4,5,6,7]],[1709740998,[2,3,3,4,4,5,5,5,6,7]],[1709740999,[2,3,3,4,4,5,6,7,8,8]],[1709741000,[2,3,3,3,4,4,4,6,8,12]],[1709741001,[2,3,3,3,4,4,4,5,5,6]],[1709741002,[2,3,3,4,5,6,10,32,67,80]],[1709741003,[2,3,4,4,5,5,6,8,12,13]],[1709741004,[2,3,3,4,4,4,4,5,6,7]],[1709741005,[2,3,3,4,4,4,5,5,13,15]],[1709741006,[2,3,3,4,4,4,5,5,13,14]],[1709741007,[2,3,4,5,5,5,6,7,11,15]],[1709741008,[2,3,3,4,4,5,5,5,12,14]],[1709741009,[2,3,3,4,4,4,4,5,9,14]],[1709741010,[2,3,3,4,4,5,5,6,9,13]],[1709741011,[2,3,3,4,4,5,5,6,9,9]],[1709741012,[2,3,3,4,4,5,6,7,12,18]],[1709741013,[2,3,3,3,4,4,4,5,7,8]],[1709741014,[2,3,3,4,4,4,4,5,8,11]],[1709741015,[2,2,3,3,3,4,4,5,8,10]],[1709741016,[2,3,3,4,4,5,5,6,9,10]],[1709741017,[2,3,3,4,5,5,5,7,10,11]],[1709741018,[2,2,3,3,4,4,4,4,6,8]],[1709741019,[2,2,3,4,4,4,5,7,11,15]],[1709741020,[2,2,3,3,4,4,5,7,9,15]],[1709741021,[2,2,3,4,5,5,6,7,11,12]],[1709741022,[2,2,3,4,4,4,5,6,9,14]],[1709741023,[2,2,3,3,3,4,4,5,6,8]],[1709741024,[2,3,3,3,4,4,4,7,13,14]],[1709741025,[2,2,3,3,3,4,4,5,6,12]],[1709741026,[2,2,3,3,4,4,4,5,7,7]],[1709741027,[2,3,3,3,4,4,5,6,8,11]],[1709741028,[2,3,3,4,4,4,5,8,11,12]],[1709741029,[2,2,3,4,4,4,4,5,6,7]],[1709741030,[2,3,3,4,4,5,5,7,11,13]],[1709741031,[2,3,3,4,4,5,5,6,9,12]],[1709741032,[2,2,3,3,3,4,4,6,10,11]],[1709741033,[2,3,3,4,4,4,4,6,11,12]],[1709741034,[2,3,3,3,3,4,4,5,6,10]],[1709741035,[2,2,3,3,3,3,4,4,9,11]],[1709741036,[2,2,3,3,3,4,4,4,5,7]],[1709741037,[2,3,3,3,4,4,4,5,9,13]],[1709741038,[2,3,3,3,3,4,4,5,7,8]],[1709741039,[2,3,3,3,3,4,4,6,9,11]],[1709741040,[2,2,3,3,4,4,4,6,9,10]],[1709741041,[2,3,3,4,4,5,5,7,11,16]],[1709741042,[2,3,3,5,5,6,7,9,17,18]],[1709741043,[2,2,3,4,4,4,5,5,7,9]],[1709741044,[2,3,3,4,4,5,6,10,15,30]],[1709741045,[2,3,3,3,4,4,5,7,9,13]],[1709741046,[2,3,3,3,4,4,4,5,10,12]],[1709741047,[2,2,3,3,3,4,4,5,11,14]],[1709741048,[2,3,3,3,3,4,4,5,7,10]],[1709741049,[2,3,3,3,4,4,6,7,10,11]],[1709741050,[2,3,3,3,4,4,5,5,8,9]],[1709741051,[1,3,3,4,4,4,4,5,8,12]],[1709741052,[2,2,3,3,4,5,6,12,19,22]],[1709741053,[2,3,3,3,4,4,4,5,6,8]],[1709741054,[2,3,3,4,4,5,5,7,11,22]],[1709741055,[2,2,3,4,5,5,5,6,8,10]],[1709741056,[2,2,3,4,4,5,6,7,12,14]],[1709741057,[2,2,3,3,4,4,4,5,7,8]],[1709741058,[1,2,3,3,3,4,5,6,10,13]],[1709741059,[2,2,3,3,3,4,4,6,11,13]],[1709741060,[2,2,3,4,4,5,5,6,9,13]],[1709741061,[2,2,3,4,4,4,5,7,10,12]],[1709741062,[2,2,3,3,4,4,4,5,9,11]],[1709741063,[2,3,3,4,4,5,6,14,39,48]],[1709741064,[2,2,3,4,4,5,5,8,16,21]],[1709741065,[2,2,3,3,4,4,4,5,10,13]],[1709741066,[2,2,3,3,4,4,4,6,9,13]],[1709741067,[2,2,3,4,4,5,6,9,19,28]],[1709741068,[2,2,3,3,3,4,4,6,9,14]],[1709741069,[2,2,3,3,4,4,5,6,8,10]],[1709741070,[2,2,3,3,3,4,4,5,7,13]],[1709741071,[2,2,3,4,4,5,7,10,16,22]],[1709741072,[2,2,3,4,4,4,6,9,16,18]],[1709741073,[2,3,3,4,4,5,6,8,15,20]],[1709741074,[2,3,3,5,5,6,7,9,12,14]],[1709741075,[2,2,3,4,5,5,6,8,15,17]],[1709741076,[2,3,3,4,5,5,5,7,14,20]],[1709741077,[2,3,4,5,6,7,8,11,14,19]],[1709741078,[2,2,3,4,4,4,5,6,10,11]],[1709741079,[2,2,3,4,4,5,6,10,16,21]],[1709741080,[2,3,3,4,5,6,6,8,13,22]],[1709741081,[2,3,3,4,4,4,5,6,10,13]],[1709741082,[2,2,3,4,4,5,6,9,18,24]],[1709741083,[1,2,3,4,4,5,5,6,10,14]],[1709741084,[2,3,3,4,5,5,6,7,12,20]],[1709741085,[3,4,5,6,6,7,8,16,26,35]],[1709741086,[2,3,4,5,5,6,7,8,15,22]],[1709741087,[3,4,5,6,7,8,12,39,64,73]],[1709741088,[2,2,3,4,5,5,6,7,10,15]],[1709741089,[2,4,4,6,6,6,7,8,11,16]],[1709741090,[2,3,4,5,5,6,7,9,15,20]],[1709741091,[2,4,4,6,6,7,8,10,14,24]],[1709741092,[2,3,3,4,5,5,6,9,12,14]],[1709741093,[2,4,5,6,6,6,7,9,12,17]],[1709741094,[2,3,4,5,5,5,6,9,13,19]],[1709741095,[2,4,5,6,6,6,7,9,14,20]],[1709741096,[2,3,3,5,5,6,6,8,11,13]],[1709741097,[2,3,4,5,6,6,7,8,10,13]],[1709741098,[2,3,5,8,11,16,42,79,113,119]],[1709741099,[2,4,5,6,7,8,11,15,27,41]],[1709741100,[2,3,4,5,6,6,8,11,21,30]],[1709741101,[2,3,4,5,6,6,7,7,9,12]],[1709741102,[2,3,4,5,6,6,7,8,13,15]],[1709741103,[2,3,4,5,5,6,7,15,42,54]],[1709741104,[2,3,4,5,5,6,7,9,13,18]],[1709741105,[2,3,4,5,6,7,9,13,23,34]],[1709741106,[2,2,4,5,5,6,7,13,23,34]],[1709741107,[2,3,3,5,5,6,6,9,15,24]],[1709741108,[2,3,4,6,6,7,8,12,21,25]],[1709741109,[2,2,4,6,6,7,9,12,18,23]],[1709741110,[2,4,5,6,7,8,9,12,14,18]],[1709741111,[2,3,3,5,5,5,6,9,17,24]],[1709741112,[2,4,5,6,6,7,8,10,17,18]],[1709741113,[2,3,4,5,5,6,7,9,13,16]],[1709741114,[2,4,5,6,6,7,8,11,16,19]],[1709741115,[2,2,3,4,4,5,5,6,9,10]],[1709741116,[2,4,5,6,7,7,9,11,18,29]],[1709741117,[2,2,3,4,4,5,6,7,10,11]],[1709741118,[2,4,5,7,7,8,9,11,15,17]],[1709741119,[2,3,3,4,5,5,6,8,11,14]],[1709741120,[2,4,5,7,7,9,12,17,28,41]],[1709741121,[2,2,3,5,6,7,8,12,18,25]],[1709741122,[2,3,4,6,6,7,8,10,14,18]],[1709741123,[2,2,3,4,4,5,7,9,14,19]],[1709741124,[2,3,4,5,5,6,7,8,11,17]],[1709741125,[2,2,3,4,5,6,8,12,26,33]],[1709741126,[2,3,4,6,7,8,9,14,17,22]],[1709741127,[2,3,3,4,5,5,6,8,10,13]],[1709741128,[2,3,4,6,6,7,9,12,37,42]],[1709741129,[2,3,3,4,5,5,7,13,20,26]],[1709741130,[2,3,4,6,6,7,9,13,18,22]],[1709741131,[2,3,3,4,5,6,8,9,15,20]],[1709741132,[2,3,4,5,5,5,7,9,13,17]],[1709741133,[2,2,3,4,5,6,7,8,14,14]],[1709741134,[2,2,3,4,5,6,7,9,14,20]],[1709741135,[2,3,3,4,5,5,7,10,26,37]],[1709741136,[2,3,3,4,4,4,5,7,9,11]],[1709741137,[2,2,4,4,5,5,6,8,10,13]],[1709741138,[2,3,3,4,5,6,7,9,13,18]],[1709741139,[2,3,4,5,5,6,6,8,10,12]],[1709741140,[2,2,3,4,4,5,6,7,10,11]],[1709741141,[2,2,3,4,5,8,11,15,20,28]],[1709741142,[2,3,3,4,5,6,7,9,13,20]],[1709741143,[2,3,4,5,5,6,7,9,15,22]],[1709741144,[2,3,3,4,5,5,6,7,10,13]],[1709741145,[2,2,3,5,6,6,8,9,12,15]],[1709741146,[2,2,3,5,6,6,7,9,14,20]],[1709741147,[2,3,4,6,6,7,9,11,14,16]],[1709741148,[2,3,4,6,6,7,8,9,12,14]],[1709741149,[2,3,4,5,5,5,6,9,15,24]],[1709741150,[2,3,4,6,6,7,8,10,14,19]],[1709741151,[2,3,4,6,6,8,10,13,18,22]],[1709741152,[2,3,4,6,7,7,9,14,27,33]],[1709741153,[1,3,4,6,6,6,7,9,16,35]],[1709741154,[1,2,3,4,5,5,6,8,16,22]],[1709741155,[2,3,4,5,6,6,8,10,13,16]],[1709741156,[2,3,4,5,6,6,7,9,11,15]],[1709741157,[2,4,4,5,6,7,8,10,15,19]],[1709741158,[2,2,3,5,5,6,7,11,20,32]],[1709741159,[2,4,4,6,6,6,7,9,11,12]],[1709741160,[2,2,3,5,5,6,7,9,12,18]],[1709741161,[2,4,5,6,7,9,13,19,27,31]],[1709741162,[2,2,3,4,4,5,5,8,13,16]],[1709741163,[2,4,5,7,8,9,11,15,23,27]],[1709741164,[1,2,3,5,6,8,9,15,26,34]],[1709741165,[2,3,4,5,5,5,6,7,11,12]],[1709741166,[2,2,3,4,5,6,7,10,15,20]],[1709741167,[2,4,4,6,6,6,7,11,17,31]],[1709741168,[2,3,3,4,4,5,5,8,11,15]],[1709741169,[2,4,5,6,6,7,8,9,12,16]],[1709741170,[2,3,3,4,4,5,6,9,18,24]],[1709741171,[2,3,4,5,6,7,8,11,15,20]],[1709741172,[1,2,3,3,4,4,4,5,9,10]],[1709741173,[2,3,4,6,6,6,8,11,14,18]],[1709741174,[1,2,3,5,5,6,10,16,35,47]],[1709741175,[2,2,3,4,5,5,7,9,12,24]],[1709741176,[2,2,3,4,4,5,8,11,18,25]],[1709741177,[1,2,3,4,5,5,7,9,14,15]],[1709741178,[2,2,3,4,4,5,7,9,13,15]],[1709741179,[2,3,4,5,5,6,6,8,12,15]],[1709741180,[2,3,4,5,5,6,7,12,16,22]],[1709741181,[2,3,4,5,6,6,8,10,20,25]],[1709741182,[2,3,4,5,5,6,6,8,13,18]],[1709741183,[1,2,3,5,6,8,9,12,19,22]],[1709741184,[2,2,3,4,4,5,5,8,11,12]],[1709741185,[2,2,3,4,5,6,7,10,18,20]],[1709741186,[2,2,3,5,6,6,8,12,21,29]],[1709741187,[2,2,3,4,4,5,7,11,43,53]],[1709741188,[2,3,4,5,5,6,6,9,15,16]],[1709741189,[2,2,3,5,6,7,9,15,25,31]],[1709741190,[2,3,4,6,6,7,9,11,17,25]],[1709741191,[2,3,3,4,5,5,6,8,14,23]],[1709741192,[2,3,4,5,6,7,8,11,16,25]],[1709741193,[2,2,3,4,4,4,5,8,10,17]],[1709741194,[2,2,4,5,5,7,9,14,28,38]],[1709741195,[2,2,3,4,4,5,6,9,21,35]],[1709741196,[2,3,4,5,5,5,6,8,11,12]],[1709741197,[2,2,3,4,4,5,6,8,10,13]],[1709741198,[2,3,4,7,8,11,14,22,36,39]],[1709741199,[2,2,3,4,5,6,9,20,50,59]],[1709741200,[2,2,4,5,5,6,7,9,13,18]],[1709741201,[2,2,3,4,5,6,7,11,24,44]],[1709741202,[2,2,4,5,6,6,8,11,19,48]],[1709741203,[2,2,2,4,4,4,5,7,10,13]],[1709741204,[2,2,3,4,4,5,7,9,11,14]],[1709741205,[2,2,2,3,3,4,5,8,9,13]],[1709741206,[2,2,3,5,6,7,9,13,23,26]],[1709741207,[2,2,3,4,5,6,8,13,34,43]],[1709741208,[2,3,4,5,6,7,9,14,22,24]],[1709741209,[2,2,3,4,4,5,6,8,11,13]],[1709741210,[2,4,5,6,6,7,9,12,27,32]],[1709741211,[2,3,4,6,6,7,10,14,32,40]]]);
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([[1709740967,[25,25,0]],[1709740968,[1,1,0]],[1709740969,[25,25,0]],[1709740970,[1,1,0]],[1709740971,[71,71,0]],[1709740972,[3,3,0]],[1709740973,[6,6,0]],[1709740974,[9,9,0]],[1709740975,[11,11,0]],[1709740976,[13,13,0]],[1709740977,[18,18,0]],[1709740978,[19,19,0]],[1709740979,[24,24,0]],[1709740980,[26,26,0]],[1709740981,[27,27,0]],[1709740982,[32,32,0]],[1709740983,[34,34,0]],[1709740984,[37,37,0]],[1709740985,[39,39,0]],[1709740986,[43,43,0]],[1709740987,[44,44,0]],[1709740988,[48,48,0]],[1709740989,[50,50,0]],[1709740990,[54,54,0]],[1709740991,[56,56,0]],[1709740992,[61,61,0]],[1709740993,[61,61,0]],[1709740994,[65,65,0]],[1709740995,[67,67,0]],[1709740996,[70,70,0]],[1709740997,[73,73,0]],[1709740998,[77,77,0]],[1709740999,[80,80,0]],[1709741000,[81,81,0]],[1709741001,[84,84,0]],[1709741002,[87,87,0]],[1709741003,[91,91,0]],[1709741004,[92,92,0]],[1709741005,[96,96,0]],[1709741006,[98,98,0]],[1709741007,[101,101,0]],[1709741008,[105,105,0]],[1709741009,[107,107,0]],[1709741010,[110,110,0]],[1709741011,[112,112,0]],[1709741012,[116,116,0]],[1709741013,[118,118,0]],[1709741014,[121,121,0]],[1709741015,[123,123,0]],[1709741016,[126,126,0]],[1709741017,[129,129,0]],[1709741018,[133,133,0]],[1709741019,[135,135,0]],[1709741020,[138,138,0]],[1709741021,[142,142,0]],[1709741022,[143,143,0]],[1709741023,[146,146,0]],[1709741024,[149,149,0]],[1709741025,[152,152,0]],[1709741026,[154,154,0]],[1709741027,[158,158,0]],[1709741028,[160,160,0]],[1709741029,[164,164,0]],[1709741030,[165,165,0]],[1709741031,[170,170,0]],[1709741032,[171,171,0]],[1709741033,[174,174,0]],[1709741034,[176,176,0]],[1709741035,[181,181,0]],[1709741036,[183,183,0]],[1709741037,[186,186,0]],[1709741038,[188,188,0]],[1709741039,[192,192,0]],[1709741040,[194,194,0]],[1709741041,[196,196,0]],[1709741042,[199,199,0]],[1709741043,[203,203,0]],[1709741044,[205,205,0]],[1709741045,[207,207,0]],[1709741046,[212,212,0]],[1709741047,[213,213,0]],[1709741048,[217,217,0]],[1709741049,[219,219,0]],[1709741050,[222,222,0]],[1709741051,[225,225,0]],[1709741052,[228,228,0]],[1709741053,[230,230,0]],[1709741054,[233,233,0]],[1709741055,[237,237,0]],[1709741056,[238,238,0]],[1709741057,[243,243,0]],[1709741058,[244,244,0]],[1709741059,[248,248,0]],[1709741060,[250,250,0]],[1709741061,[252,252,0]],[1709741062,[256,256,0]],[1709741063,[259,259,0]],[1709741064,[262,262,0]],[1709741065,[264,264,0]],[1709741066,[266,266,0]],[1709741067,[270,270,0]],[1709741068,[273,273,0]],[1709741069,[275,275,0]],[1709741070,[279,279,0]],[1709741071,[281,281,0]],[1709741072,[284,284,0]],[1709741073,[287,287,0]],[1709741074,[290,290,0]],[1709741075,[291,291,0]],[1709741076,[296,296,0]],[1709741077,[297,297,0]],[1709741078,[301,301,0]],[1709741079,[303,303,0]],[1709741080,[306,306,0]],[1709741081,[309,309,0]],[1709741082,[313,313,0]],[1709741083,[314,314,0]],[1709741084,[318,318,0]],[1709741085,[321,321,0]],[1709741086,[322,322,0]],[1709741087,[327,327,0]],[1709741088,[329,329,0]],[1709741089,[331,331,0]],[1709741090,[334,334,0]],[1709741091,[339,339,0]],[1709741092,[340,340,0]],[1709741093,[340,340,0]],[1709741094,[340,340,0]],[1709741095,[340,340,0]],[1709741096,[340,340,0]],[1709741097,[340,340,0]],[1709741098,[340,340,0]],[1709741099,[340,340,0]],[1709741100,[340,340,0]],[1709741101,[340,340,0]],[1709741102,[340,340,0]],[1709741103,[340,340,0]],[1709741104,[340,340,0]],[1709741105,[340,340,0]],[1709741106,[340,340,0]],[1709741107,[340,340,0]],[1709741108,[340,340,0]],[1709741109,[340,340,0]],[1709741110,[340,340,0]],[1709741111,[340,340,0]],[1709741112,[340,340,0]],[1709741113,[340,340,0]],[1709741114,[340,340,0]],[1709741115,[340,340,0]],[1709741116,[340,340,0]],[1709741117,[340,340,0]],[1709741118,[340,340,0]],[1709741119,[340,340,0]],[1709741120,[340,340,0]],[1709741121,[340,340,0]],[1709741122,[340,340,0]],[1709741123,[340,340,0]],[1709741124,[340,340,0]],[1709741125,[340,340,0]],[1709741126,[340,340,0]],[1709741127,[340,340,0]],[1709741128,[340,340,0]],[1709741129,[340,340,0]],[1709741130,[340,340,0]],[1709741131,[340,340,0]],[1709741132,[340,340,0]],[1709741133,[340,340,0]],[1709741134,[340,340,0]],[1709741135,[340,340,0]],[1709741136,[340,340,0]],[1709741137,[340,340,0]],[1709741138,[340,340,0]],[1709741139,[340,340,0]],[1709741140,[340,340,0]],[1709741141,[340,340,0]],[1709741142,[340,340,0]],[1709741143,[340,340,0]],[1709741144,[340,340,0]],[1709741145,[340,340,0]],[1709741146,[340,340,0]],[1709741147,[340,340,0]],[1709741148,[340,340,0]],[1709741149,[340,340,0]],[1709741150,[340,340,0]],[1709741151,[340,340,0]],[1709741152,[340,340,0]],[1709741153,[340,340,0]],[1709741154,[340,340,0]],[1709741155,[340,340,0]],[1709741156,[340,340,0]],[1709741157,[340,340,0]],[1709741158,[340,340,0]],[1709741159,[340,340,0]],[1709741160,[340,340,0]],[1709741161,[340,340,0]],[1709741162,[340,340,0]],[1709741163,[340,340,0]],[1709741164,[340,340,0]],[1709741165,[340,340,0]],[1709741166,[340,340,0]],[1709741167,[340,340,0]],[1709741168,[340,340,0]],[1709741169,[340,340,0]],[1709741170,[340,340,0]],[1709741171,[340,340,0]],[1709741172,[340,340,0]],[1709741173,[340,340,0]],[1709741174,[340,340,0]],[1709741175,[340,340,0]],[1709741176,[340,340,0]],[1709741177,[340,340,0]],[1709741178,[340,340,0]],[1709741179,[340,340,0]],[1709741180,[340,340,0]],[1709741181,[340,340,0]],[1709741182,[340,340,0]],[1709741183,[340,340,0]],[1709741184,[340,340,0]],[1709741185,[340,340,0]],[1709741186,[340,340,0]],[1709741187,[340,340,0]],[1709741188,[340,340,0]],[1709741189,[340,340,0]],[1709741190,[340,340,0]],[1709741191,[340,340,0]],[1709741192,[340,340,0]],[1709741193,[340,340,0]],[1709741194,[340,340,0]],[1709741195,[340,340,0]],[1709741196,[340,340,0]],[1709741197,[340,340,0]],[1709741198,[340,340,0]],[1709741199,[340,340,0]],[1709741200,[340,340,0]],[1709741201,[340,340,0]],[1709741202,[340,340,0]],[1709741203,[340,340,0]],[1709741204,[340,340,0]],[1709741205,[340,340,0]],[1709741206,[340,340,0]],[1709741207,[340,340,0]],[1709741208,[340,340,0]],[1709741209,[340,340,0]],[1709741210,[340,340,0]],[1709741211,[504,504,0]]]);
var requestsChart = new Highcharts.StockChart({
chart: {
renderTo: 'requests',
zoomType: 'x',
marginBottom: 60
},
credits: { enabled: false },
legend: {
enabled: true,
floating: true,
y: -65,
borderWidth: 0,
itemStyle: { fontWeight: "normal" },
symbolRadius: 0
},
title: { text: 'A title to let highcharts reserve the place for the title set later' },
navigator: {
maskInside: false
},
rangeSelector: {
buttonSpacing: 0,
buttonTheme: {
fill: '#CFC9C6',
padding: 1,
stroke: '#000000',
'stroke-width': 0.25,
style: {
color: '#000000',
fontWeight: 'bold',
},
states: {
stroke: '#000000',
'stroke-width': 0.25,
hover: {
fill: '#92918C',
style: { color: 'black' }
},
select: {
fill: '#FFA900',
style: { color: 'white' }
}
}
},
buttons : [
{
type : 'minute',
count : 1,
text : '1m'
}, {
type : 'minute',
count : 10,
text : '10m'
}, {
type : 'hour',
count : 1,
text : '1h'
}, {
type : 'all',
count : 1,
text : 'All'
}
],
selected : 3,
inputEnabled : false
},
plotOptions: {
series: {
dataGrouping: { enabled: false }
},
area: {
stacking: 'normal'
}
},
xAxis: {
type: 'datetime',
ordinal: false,
maxZoom: 10000 // three days
},
yAxis:[