-
Notifications
You must be signed in to change notification settings - Fork 928
/
index.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-09 04:37:14 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 - jefersonbaixo">
<span class="simulation-information-label">Description: </span>
<span>Rinha de Backend - 2024/Q1: Crébito - jefersonbaixo</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: [
[1709959034000,0],[1709959035000,0],[1709959036000,0],[1709959037000,0],[1709959038000,1],[1709959039000,2],[1709959040000,4],[1709959041000,6],[1709959042000,7],[1709959043000,9],[1709959044000,11],[1709959045000,13],[1709959046000,15],[1709959047000,16],[1709959048000,19],[1709959049000,20],[1709959050000,22],[1709959051000,24],[1709959052000,25],[1709959053000,28],[1709959054000,30],[1709959055000,31],[1709959056000,33],[1709959057000,35],[1709959058000,37],[1709959059000,38],[1709959060000,40],[1709959061000,42],[1709959062000,44],[1709959063000,46],[1709959064000,47],[1709959065000,51],[1709959066000,52],[1709959067000,54],[1709959068000,56],[1709959069000,56],[1709959070000,60],[1709959071000,61],[1709959072000,63],[1709959073000,64],[1709959074000,66],[1709959075000,68],[1709959076000,69],[1709959077000,71],[1709959078000,74],[1709959079000,74],[1709959080000,77],[1709959081000,79],[1709959082000,80],[1709959083000,82],[1709959084000,84],[1709959085000,86],[1709959086000,88],[1709959087000,89],[1709959088000,92],[1709959089000,93],[1709959090000,95],[1709959091000,97],[1709959092000,99],[1709959093000,102],[1709959094000,103],[1709959095000,105],[1709959096000,107],[1709959097000,109],[1709959098000,111],[1709959099000,112],[1709959100000,114],[1709959101000,116],[1709959102000,117],[1709959103000,120],[1709959104000,121],[1709959105000,124],[1709959106000,125],[1709959107000,127],[1709959108000,128],[1709959109000,130],[1709959110000,133],[1709959111000,134],[1709959112000,135],[1709959113000,137],[1709959114000,139],[1709959115000,141],[1709959116000,142],[1709959117000,144],[1709959118000,148],[1709959119000,147],[1709959120000,151],[1709959121000,153],[1709959122000,154],[1709959123000,156],[1709959124000,159],[1709959125000,159],[1709959126000,162],[1709959127000,163],[1709959128000,165],[1709959129000,167],[1709959130000,169],[1709959131000,170],[1709959132000,172],[1709959133000,174],[1709959134000,176],[1709959135000,177],[1709959136000,179],[1709959137000,182],[1709959138000,184],[1709959139000,184],[1709959140000,186],[1709959141000,188],[1709959142000,190],[1709959143000,192],[1709959144000,193],[1709959145000,196],[1709959146000,197],[1709959147000,201],[1709959148000,202],[1709959149000,203],[1709959150000,206],[1709959151000,207],[1709959152000,209],[1709959153000,211],[1709959154000,213],[1709959155000,215],[1709959156000,216],[1709959157000,218],[1709959158000,221],[1709959159000,221],[1709959160000,221],[1709959161000,221],[1709959162000,221],[1709959163000,221],[1709959164000,221],[1709959165000,221],[1709959166000,221],[1709959167000,221],[1709959168000,221],[1709959169000,221],[1709959170000,221],[1709959171000,221],[1709959172000,221],[1709959173000,221],[1709959174000,222],[1709959175000,221],[1709959176000,221],[1709959177000,221],[1709959178000,221],[1709959179000,221],[1709959180000,221],[1709959181000,221],[1709959182000,221],[1709959183000,221],[1709959184000,221],[1709959185000,221],[1709959186000,221],[1709959187000,221],[1709959188000,221],[1709959189000,221],[1709959190000,221],[1709959191000,221],[1709959192000,221],[1709959193000,225],[1709959194000,221],[1709959195000,222],[1709959196000,221],[1709959197000,222],[1709959198000,221],[1709959199000,221],[1709959200000,221],[1709959201000,221],[1709959202000,221],[1709959203000,221],[1709959204000,221],[1709959205000,221],[1709959206000,221],[1709959207000,221],[1709959208000,221],[1709959209000,221],[1709959210000,221],[1709959211000,221],[1709959212000,221],[1709959213000,221],[1709959214000,221],[1709959215000,221],[1709959216000,221],[1709959217000,222],[1709959218000,221],[1709959219000,221],[1709959220000,221],[1709959221000,221],[1709959222000,220],[1709959223000,221],[1709959224000,221],[1709959225000,221],[1709959226000,221],[1709959227000,221],[1709959228000,221],[1709959229000,221],[1709959230000,221],[1709959231000,221],[1709959232000,221],[1709959233000,221],[1709959234000,222],[1709959235000,221],[1709959236000,222],[1709959237000,221],[1709959238000,221],[1709959239000,221],[1709959240000,221],[1709959241000,221],[1709959242000,223],[1709959243000,221],[1709959244000,221],[1709959245000,221],[1709959246000,221],[1709959247000,221],[1709959248000,221],[1709959249000,220],[1709959250000,221],[1709959251000,221],[1709959252000,221],[1709959253000,221],[1709959254000,222],[1709959255000,221],[1709959256000,221],[1709959257000,221],[1709959258000,222],[1709959259000,221],[1709959260000,221],[1709959261000,221],[1709959262000,221],[1709959263000,221],[1709959264000,221],[1709959265000,221],[1709959266000,221],[1709959267000,221],[1709959268000,221],[1709959269000,221],[1709959270000,221],[1709959271000,221],[1709959272000,221],[1709959273000,221],[1709959274000,221],[1709959275000,223],[1709959276000,221],[1709959277000,221],[1709959278000,216]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#68b65c',
name: 'créditos',
data: [
[1709959034000,0],[1709959035000,0],[1709959036000,0],[1709959037000,0],[1709959038000,1],[1709959039000,1],[1709959040000,2],[1709959041000,4],[1709959042000,4],[1709959043000,5],[1709959044000,6],[1709959045000,7],[1709959046000,8],[1709959047000,8],[1709959048000,10],[1709959049000,10],[1709959050000,12],[1709959051000,12],[1709959052000,14],[1709959053000,14],[1709959054000,16],[1709959055000,16],[1709959056000,17],[1709959057000,17],[1709959058000,19],[1709959059000,20],[1709959060000,20],[1709959061000,22],[1709959062000,22],[1709959063000,23],[1709959064000,25],[1709959065000,25],[1709959066000,26],[1709959067000,26],[1709959068000,28],[1709959069000,29],[1709959070000,30],[1709959071000,30],[1709959072000,32],[1709959073000,32],[1709959074000,33],[1709959075000,34],[1709959076000,35],[1709959077000,36],[1709959078000,37],[1709959079000,38],[1709959080000,39],[1709959081000,39],[1709959082000,41],[1709959083000,41],[1709959084000,43],[1709959085000,43],[1709959086000,44],[1709959087000,45],[1709959088000,46],[1709959089000,47],[1709959090000,48],[1709959091000,48],[1709959092000,50],[1709959093000,51],[1709959094000,53],[1709959095000,53],[1709959096000,54],[1709959097000,55],[1709959098000,57],[1709959099000,56],[1709959100000,58],[1709959101000,59],[1709959102000,60],[1709959103000,60],[1709959104000,61],[1709959105000,62],[1709959106000,64],[1709959107000,63],[1709959108000,64],[1709959109000,65],[1709959110000,66],[1709959111000,67],[1709959112000,68],[1709959113000,68],[1709959114000,70],[1709959115000,70],[1709959116000,72],[1709959117000,72],[1709959118000,74],[1709959119000,74],[1709959120000,75],[1709959121000,76],[1709959122000,77],[1709959123000,79],[1709959124000,79],[1709959125000,79],[1709959126000,81],[1709959127000,82],[1709959128000,82],[1709959129000,83],[1709959130000,85],[1709959131000,85],[1709959132000,86],[1709959133000,86],[1709959134000,88],[1709959135000,89],[1709959136000,89],[1709959137000,91],[1709959138000,91],[1709959139000,92],[1709959140000,94],[1709959141000,94],[1709959142000,95],[1709959143000,96],[1709959144000,97],[1709959145000,97],[1709959146000,99],[1709959147000,101],[1709959148000,101],[1709959149000,102],[1709959150000,104],[1709959151000,103],[1709959152000,105],[1709959153000,106],[1709959154000,107],[1709959155000,108],[1709959156000,108],[1709959157000,110],[1709959158000,111],[1709959159000,111],[1709959160000,111],[1709959161000,111],[1709959162000,111],[1709959163000,111],[1709959164000,111],[1709959165000,111],[1709959166000,111],[1709959167000,111],[1709959168000,111],[1709959169000,111],[1709959170000,111],[1709959171000,111],[1709959172000,111],[1709959173000,111],[1709959174000,111],[1709959175000,111],[1709959176000,111],[1709959177000,111],[1709959178000,111],[1709959179000,111],[1709959180000,111],[1709959181000,111],[1709959182000,111],[1709959183000,111],[1709959184000,111],[1709959185000,111],[1709959186000,111],[1709959187000,111],[1709959188000,111],[1709959189000,111],[1709959190000,111],[1709959191000,111],[1709959192000,111],[1709959193000,113],[1709959194000,111],[1709959195000,111],[1709959196000,111],[1709959197000,111],[1709959198000,112],[1709959199000,111],[1709959200000,111],[1709959201000,111],[1709959202000,111],[1709959203000,111],[1709959204000,111],[1709959205000,111],[1709959206000,111],[1709959207000,111],[1709959208000,111],[1709959209000,111],[1709959210000,111],[1709959211000,111],[1709959212000,111],[1709959213000,111],[1709959214000,111],[1709959215000,111],[1709959216000,111],[1709959217000,111],[1709959218000,111],[1709959219000,111],[1709959220000,111],[1709959221000,111],[1709959222000,111],[1709959223000,111],[1709959224000,111],[1709959225000,111],[1709959226000,111],[1709959227000,111],[1709959228000,111],[1709959229000,111],[1709959230000,111],[1709959231000,112],[1709959232000,111],[1709959233000,111],[1709959234000,111],[1709959235000,111],[1709959236000,112],[1709959237000,111],[1709959238000,111],[1709959239000,111],[1709959240000,111],[1709959241000,111],[1709959242000,111],[1709959243000,111],[1709959244000,111],[1709959245000,111],[1709959246000,111],[1709959247000,111],[1709959248000,111],[1709959249000,111],[1709959250000,111],[1709959251000,111],[1709959252000,111],[1709959253000,111],[1709959254000,111],[1709959255000,111],[1709959256000,111],[1709959257000,111],[1709959258000,111],[1709959259000,111],[1709959260000,111],[1709959261000,111],[1709959262000,111],[1709959263000,111],[1709959264000,111],[1709959265000,111],[1709959266000,111],[1709959267000,111],[1709959268000,111],[1709959269000,111],[1709959270000,111],[1709959271000,111],[1709959272000,111],[1709959273000,111],[1709959274000,111],[1709959275000,113],[1709959276000,111],[1709959277000,111],[1709959278000,108]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#f15b4f',
name: 'extratos',
data: [
[1709959034000,0],[1709959035000,0],[1709959036000,0],[1709959037000,0],[1709959038000,1],[1709959039000,1],[1709959040000,1],[1709959041000,1],[1709959042000,1],[1709959043000,1],[1709959044000,2],[1709959045000,1],[1709959046000,2],[1709959047000,2],[1709959048000,1],[1709959049000,2],[1709959050000,2],[1709959051000,2],[1709959052000,2],[1709959053000,2],[1709959054000,2],[1709959055000,2],[1709959056000,3],[1709959057000,2],[1709959058000,3],[1709959059000,2],[1709959060000,3],[1709959061000,2],[1709959062000,3],[1709959063000,3],[1709959064000,3],[1709959065000,3],[1709959066000,3],[1709959067000,3],[1709959068000,3],[1709959069000,4],[1709959070000,3],[1709959071000,3],[1709959072000,4],[1709959073000,3],[1709959074000,4],[1709959075000,4],[1709959076000,4],[1709959077000,4],[1709959078000,4],[1709959079000,4],[1709959080000,4],[1709959081000,4],[1709959082000,4],[1709959083000,4],[1709959084000,5],[1709959085000,4],[1709959086000,5],[1709959087000,5],[1709959088000,4],[1709959089000,5],[1709959090000,5],[1709959091000,5],[1709959092000,5],[1709959093000,5],[1709959094000,5],[1709959095000,5],[1709959096000,6],[1709959097000,5],[1709959098000,6],[1709959099000,5],[1709959100000,6],[1709959101000,5],[1709959102000,6],[1709959103000,6],[1709959104000,6],[1709959105000,6],[1709959106000,6],[1709959107000,6],[1709959108000,6],[1709959109000,7],[1709959110000,6],[1709959111000,6],[1709959112000,7],[1709959113000,6],[1709959114000,7],[1709959115000,7],[1709959116000,7],[1709959117000,7],[1709959118000,7],[1709959119000,7],[1709959120000,7],[1709959121000,7],[1709959122000,7],[1709959123000,7],[1709959124000,8],[1709959125000,7],[1709959126000,8],[1709959127000,8],[1709959128000,7],[1709959129000,8],[1709959130000,8],[1709959131000,8],[1709959132000,8],[1709959133000,8],[1709959134000,8],[1709959135000,8],[1709959136000,9],[1709959137000,8],[1709959138000,9],[1709959139000,8],[1709959140000,9],[1709959141000,8],[1709959142000,9],[1709959143000,9],[1709959144000,9],[1709959145000,9],[1709959146000,9],[1709959147000,9],[1709959148000,9],[1709959149000,10],[1709959150000,9],[1709959151000,9],[1709959152000,10],[1709959153000,9],[1709959154000,10],[1709959155000,10],[1709959156000,10],[1709959157000,10],[1709959158000,10],[1709959159000,10],[1709959160000,10],[1709959161000,10],[1709959162000,10],[1709959163000,10],[1709959164000,10],[1709959165000,10],[1709959166000,10],[1709959167000,10],[1709959168000,10],[1709959169000,10],[1709959170000,10],[1709959171000,10],[1709959172000,10],[1709959173000,10],[1709959174000,10],[1709959175000,10],[1709959176000,10],[1709959177000,10],[1709959178000,10],[1709959179000,10],[1709959180000,10],[1709959181000,10],[1709959182000,10],[1709959183000,10],[1709959184000,10],[1709959185000,10],[1709959186000,10],[1709959187000,10],[1709959188000,10],[1709959189000,10],[1709959190000,10],[1709959191000,10],[1709959192000,10],[1709959193000,10],[1709959194000,10],[1709959195000,10],[1709959196000,10],[1709959197000,10],[1709959198000,10],[1709959199000,10],[1709959200000,10],[1709959201000,10],[1709959202000,10],[1709959203000,10],[1709959204000,10],[1709959205000,10],[1709959206000,10],[1709959207000,10],[1709959208000,10],[1709959209000,10],[1709959210000,10],[1709959211000,10],[1709959212000,10],[1709959213000,10],[1709959214000,10],[1709959215000,10],[1709959216000,10],[1709959217000,10],[1709959218000,10],[1709959219000,10],[1709959220000,10],[1709959221000,10],[1709959222000,10],[1709959223000,10],[1709959224000,10],[1709959225000,10],[1709959226000,10],[1709959227000,10],[1709959228000,10],[1709959229000,10],[1709959230000,10],[1709959231000,10],[1709959232000,10],[1709959233000,10],[1709959234000,10],[1709959235000,10],[1709959236000,10],[1709959237000,10],[1709959238000,10],[1709959239000,10],[1709959240000,10],[1709959241000,10],[1709959242000,10],[1709959243000,10],[1709959244000,10],[1709959245000,10],[1709959246000,10],[1709959247000,10],[1709959248000,10],[1709959249000,10],[1709959250000,10],[1709959251000,10],[1709959252000,10],[1709959253000,10],[1709959254000,10],[1709959255000,10],[1709959256000,10],[1709959257000,10],[1709959258000,10],[1709959259000,10],[1709959260000,10],[1709959261000,10],[1709959262000,10],[1709959263000,10],[1709959264000,10],[1709959265000,10],[1709959266000,10],[1709959267000,10],[1709959268000,10],[1709959269000,10],[1709959270000,10],[1709959271000,10],[1709959272000,10],[1709959273000,10],[1709959274000,10],[1709959275000,10],[1709959276000,10],[1709959277000,10],[1709959278000,9]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FFDD00',
name: 'validações',
data: [
[1709959034000,0],[1709959035000,0],[1709959036000,0],[1709959037000,5],[1709959038000,5],[1709959039000,0],[1709959040000,0],[1709959041000,0],[1709959042000,0],[1709959043000,0],[1709959044000,0],[1709959045000,0],[1709959046000,0],[1709959047000,0],[1709959048000,0],[1709959049000,0],[1709959050000,0],[1709959051000,0],[1709959052000,0],[1709959053000,0],[1709959054000,0],[1709959055000,0],[1709959056000,0],[1709959057000,0],[1709959058000,0],[1709959059000,0],[1709959060000,0],[1709959061000,0],[1709959062000,0],[1709959063000,0],[1709959064000,0],[1709959065000,0],[1709959066000,0],[1709959067000,0],[1709959068000,0],[1709959069000,0],[1709959070000,0],[1709959071000,0],[1709959072000,0],[1709959073000,0],[1709959074000,0],[1709959075000,0],[1709959076000,0],[1709959077000,0],[1709959078000,0],[1709959079000,0],[1709959080000,0],[1709959081000,0],[1709959082000,0],[1709959083000,0],[1709959084000,0],[1709959085000,0],[1709959086000,0],[1709959087000,0],[1709959088000,0],[1709959089000,0],[1709959090000,0],[1709959091000,0],[1709959092000,0],[1709959093000,0],[1709959094000,0],[1709959095000,0],[1709959096000,0],[1709959097000,0],[1709959098000,0],[1709959099000,0],[1709959100000,0],[1709959101000,0],[1709959102000,0],[1709959103000,0],[1709959104000,0],[1709959105000,0],[1709959106000,0],[1709959107000,0],[1709959108000,0],[1709959109000,0],[1709959110000,0],[1709959111000,0],[1709959112000,0],[1709959113000,0],[1709959114000,0],[1709959115000,0],[1709959116000,0],[1709959117000,0],[1709959118000,0],[1709959119000,0],[1709959120000,0],[1709959121000,0],[1709959122000,0],[1709959123000,0],[1709959124000,0],[1709959125000,0],[1709959126000,0],[1709959127000,0],[1709959128000,0],[1709959129000,0],[1709959130000,0],[1709959131000,0],[1709959132000,0],[1709959133000,0],[1709959134000,0],[1709959135000,0],[1709959136000,0],[1709959137000,0],[1709959138000,0],[1709959139000,0],[1709959140000,0],[1709959141000,0],[1709959142000,0],[1709959143000,0],[1709959144000,0],[1709959145000,0],[1709959146000,0],[1709959147000,0],[1709959148000,0],[1709959149000,0],[1709959150000,0],[1709959151000,0],[1709959152000,0],[1709959153000,0],[1709959154000,0],[1709959155000,0],[1709959156000,0],[1709959157000,0],[1709959158000,0],[1709959159000,0],[1709959160000,0],[1709959161000,0],[1709959162000,0],[1709959163000,0],[1709959164000,0],[1709959165000,0],[1709959166000,0],[1709959167000,0],[1709959168000,0],[1709959169000,0],[1709959170000,0],[1709959171000,0],[1709959172000,0],[1709959173000,0],[1709959174000,0],[1709959175000,0],[1709959176000,0],[1709959177000,0],[1709959178000,0],[1709959179000,0],[1709959180000,0],[1709959181000,0],[1709959182000,0],[1709959183000,0],[1709959184000,0],[1709959185000,0],[1709959186000,0],[1709959187000,0],[1709959188000,0],[1709959189000,0],[1709959190000,0],[1709959191000,0],[1709959192000,0],[1709959193000,0],[1709959194000,0],[1709959195000,0],[1709959196000,0],[1709959197000,0],[1709959198000,0],[1709959199000,0],[1709959200000,0],[1709959201000,0],[1709959202000,0],[1709959203000,0],[1709959204000,0],[1709959205000,0],[1709959206000,0],[1709959207000,0],[1709959208000,0],[1709959209000,0],[1709959210000,0],[1709959211000,0],[1709959212000,0],[1709959213000,0],[1709959214000,0],[1709959215000,0],[1709959216000,0],[1709959217000,0],[1709959218000,0],[1709959219000,0],[1709959220000,0],[1709959221000,0],[1709959222000,0],[1709959223000,0],[1709959224000,0],[1709959225000,0],[1709959226000,0],[1709959227000,0],[1709959228000,0],[1709959229000,0],[1709959230000,0],[1709959231000,0],[1709959232000,0],[1709959233000,0],[1709959234000,0],[1709959235000,0],[1709959236000,0],[1709959237000,0],[1709959238000,0],[1709959239000,0],[1709959240000,0],[1709959241000,0],[1709959242000,0],[1709959243000,0],[1709959244000,0],[1709959245000,0],[1709959246000,0],[1709959247000,0],[1709959248000,0],[1709959249000,0],[1709959250000,0],[1709959251000,0],[1709959252000,0],[1709959253000,0],[1709959254000,0],[1709959255000,0],[1709959256000,0],[1709959257000,0],[1709959258000,0],[1709959259000,0],[1709959260000,0],[1709959261000,0],[1709959262000,0],[1709959263000,0],[1709959264000,0],[1709959265000,0],[1709959266000,0],[1709959267000,0],[1709959268000,0],[1709959269000,0],[1709959270000,0],[1709959271000,0],[1709959272000,0],[1709959273000,0],[1709959274000,0],[1709959275000,0],[1709959276000,0],[1709959277000,0],[1709959278000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00D5FF',
name: 'validação HTTP 404',
data: [
[1709959034000,0],[1709959035000,0],[1709959036000,0],[1709959037000,1],[1709959038000,1],[1709959039000,0],[1709959040000,0],[1709959041000,0],[1709959042000,0],[1709959043000,0],[1709959044000,0],[1709959045000,0],[1709959046000,0],[1709959047000,0],[1709959048000,0],[1709959049000,0],[1709959050000,0],[1709959051000,0],[1709959052000,0],[1709959053000,0],[1709959054000,0],[1709959055000,0],[1709959056000,0],[1709959057000,0],[1709959058000,0],[1709959059000,0],[1709959060000,0],[1709959061000,0],[1709959062000,0],[1709959063000,0],[1709959064000,0],[1709959065000,0],[1709959066000,0],[1709959067000,0],[1709959068000,0],[1709959069000,0],[1709959070000,0],[1709959071000,0],[1709959072000,0],[1709959073000,0],[1709959074000,0],[1709959075000,0],[1709959076000,0],[1709959077000,0],[1709959078000,0],[1709959079000,0],[1709959080000,0],[1709959081000,0],[1709959082000,0],[1709959083000,0],[1709959084000,0],[1709959085000,0],[1709959086000,0],[1709959087000,0],[1709959088000,0],[1709959089000,0],[1709959090000,0],[1709959091000,0],[1709959092000,0],[1709959093000,0],[1709959094000,0],[1709959095000,0],[1709959096000,0],[1709959097000,0],[1709959098000,0],[1709959099000,0],[1709959100000,0],[1709959101000,0],[1709959102000,0],[1709959103000,0],[1709959104000,0],[1709959105000,0],[1709959106000,0],[1709959107000,0],[1709959108000,0],[1709959109000,0],[1709959110000,0],[1709959111000,0],[1709959112000,0],[1709959113000,0],[1709959114000,0],[1709959115000,0],[1709959116000,0],[1709959117000,0],[1709959118000,0],[1709959119000,0],[1709959120000,0],[1709959121000,0],[1709959122000,0],[1709959123000,0],[1709959124000,0],[1709959125000,0],[1709959126000,0],[1709959127000,0],[1709959128000,0],[1709959129000,0],[1709959130000,0],[1709959131000,0],[1709959132000,0],[1709959133000,0],[1709959134000,0],[1709959135000,0],[1709959136000,0],[1709959137000,0],[1709959138000,0],[1709959139000,0],[1709959140000,0],[1709959141000,0],[1709959142000,0],[1709959143000,0],[1709959144000,0],[1709959145000,0],[1709959146000,0],[1709959147000,0],[1709959148000,0],[1709959149000,0],[1709959150000,0],[1709959151000,0],[1709959152000,0],[1709959153000,0],[1709959154000,0],[1709959155000,0],[1709959156000,0],[1709959157000,0],[1709959158000,0],[1709959159000,0],[1709959160000,0],[1709959161000,0],[1709959162000,0],[1709959163000,0],[1709959164000,0],[1709959165000,0],[1709959166000,0],[1709959167000,0],[1709959168000,0],[1709959169000,0],[1709959170000,0],[1709959171000,0],[1709959172000,0],[1709959173000,0],[1709959174000,0],[1709959175000,0],[1709959176000,0],[1709959177000,0],[1709959178000,0],[1709959179000,0],[1709959180000,0],[1709959181000,0],[1709959182000,0],[1709959183000,0],[1709959184000,0],[1709959185000,0],[1709959186000,0],[1709959187000,0],[1709959188000,0],[1709959189000,0],[1709959190000,0],[1709959191000,0],[1709959192000,0],[1709959193000,0],[1709959194000,0],[1709959195000,0],[1709959196000,0],[1709959197000,0],[1709959198000,0],[1709959199000,0],[1709959200000,0],[1709959201000,0],[1709959202000,0],[1709959203000,0],[1709959204000,0],[1709959205000,0],[1709959206000,0],[1709959207000,0],[1709959208000,0],[1709959209000,0],[1709959210000,0],[1709959211000,0],[1709959212000,0],[1709959213000,0],[1709959214000,0],[1709959215000,0],[1709959216000,0],[1709959217000,0],[1709959218000,0],[1709959219000,0],[1709959220000,0],[1709959221000,0],[1709959222000,0],[1709959223000,0],[1709959224000,0],[1709959225000,0],[1709959226000,0],[1709959227000,0],[1709959228000,0],[1709959229000,0],[1709959230000,0],[1709959231000,0],[1709959232000,0],[1709959233000,0],[1709959234000,0],[1709959235000,0],[1709959236000,0],[1709959237000,0],[1709959238000,0],[1709959239000,0],[1709959240000,0],[1709959241000,0],[1709959242000,0],[1709959243000,0],[1709959244000,0],[1709959245000,0],[1709959246000,0],[1709959247000,0],[1709959248000,0],[1709959249000,0],[1709959250000,0],[1709959251000,0],[1709959252000,0],[1709959253000,0],[1709959254000,0],[1709959255000,0],[1709959256000,0],[1709959257000,0],[1709959258000,0],[1709959259000,0],[1709959260000,0],[1709959261000,0],[1709959262000,0],[1709959263000,0],[1709959264000,0],[1709959265000,0],[1709959266000,0],[1709959267000,0],[1709959268000,0],[1709959269000,0],[1709959270000,0],[1709959271000,0],[1709959272000,0],[1709959273000,0],[1709959274000,0],[1709959275000,0],[1709959276000,0],[1709959277000,0],[1709959278000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00FF00',
name: 'validação concorrência saldo - 0',
data: [
[1709959034000,0],[1709959035000,0],[1709959036000,1],[1709959037000,0],[1709959038000,0],[1709959039000,0],[1709959040000,0],[1709959041000,0],[1709959042000,0],[1709959043000,0],[1709959044000,0],[1709959045000,0],[1709959046000,0],[1709959047000,0],[1709959048000,0],[1709959049000,0],[1709959050000,0],[1709959051000,0],[1709959052000,0],[1709959053000,0],[1709959054000,0],[1709959055000,0],[1709959056000,0],[1709959057000,0],[1709959058000,0],[1709959059000,0],[1709959060000,0],[1709959061000,0],[1709959062000,0],[1709959063000,0],[1709959064000,0],[1709959065000,0],[1709959066000,0],[1709959067000,0],[1709959068000,0],[1709959069000,0],[1709959070000,0],[1709959071000,0],[1709959072000,0],[1709959073000,0],[1709959074000,0],[1709959075000,0],[1709959076000,0],[1709959077000,0],[1709959078000,0],[1709959079000,0],[1709959080000,0],[1709959081000,0],[1709959082000,0],[1709959083000,0],[1709959084000,0],[1709959085000,0],[1709959086000,0],[1709959087000,0],[1709959088000,0],[1709959089000,0],[1709959090000,0],[1709959091000,0],[1709959092000,0],[1709959093000,0],[1709959094000,0],[1709959095000,0],[1709959096000,0],[1709959097000,0],[1709959098000,0],[1709959099000,0],[1709959100000,0],[1709959101000,0],[1709959102000,0],[1709959103000,0],[1709959104000,0],[1709959105000,0],[1709959106000,0],[1709959107000,0],[1709959108000,0],[1709959109000,0],[1709959110000,0],[1709959111000,0],[1709959112000,0],[1709959113000,0],[1709959114000,0],[1709959115000,0],[1709959116000,0],[1709959117000,0],[1709959118000,0],[1709959119000,0],[1709959120000,0],[1709959121000,0],[1709959122000,0],[1709959123000,0],[1709959124000,0],[1709959125000,0],[1709959126000,0],[1709959127000,0],[1709959128000,0],[1709959129000,0],[1709959130000,0],[1709959131000,0],[1709959132000,0],[1709959133000,0],[1709959134000,0],[1709959135000,0],[1709959136000,0],[1709959137000,0],[1709959138000,0],[1709959139000,0],[1709959140000,0],[1709959141000,0],[1709959142000,0],[1709959143000,0],[1709959144000,0],[1709959145000,0],[1709959146000,0],[1709959147000,0],[1709959148000,0],[1709959149000,0],[1709959150000,0],[1709959151000,0],[1709959152000,0],[1709959153000,0],[1709959154000,0],[1709959155000,0],[1709959156000,0],[1709959157000,0],[1709959158000,0],[1709959159000,0],[1709959160000,0],[1709959161000,0],[1709959162000,0],[1709959163000,0],[1709959164000,0],[1709959165000,0],[1709959166000,0],[1709959167000,0],[1709959168000,0],[1709959169000,0],[1709959170000,0],[1709959171000,0],[1709959172000,0],[1709959173000,0],[1709959174000,0],[1709959175000,0],[1709959176000,0],[1709959177000,0],[1709959178000,0],[1709959179000,0],[1709959180000,0],[1709959181000,0],[1709959182000,0],[1709959183000,0],[1709959184000,0],[1709959185000,0],[1709959186000,0],[1709959187000,0],[1709959188000,0],[1709959189000,0],[1709959190000,0],[1709959191000,0],[1709959192000,0],[1709959193000,0],[1709959194000,0],[1709959195000,0],[1709959196000,0],[1709959197000,0],[1709959198000,0],[1709959199000,0],[1709959200000,0],[1709959201000,0],[1709959202000,0],[1709959203000,0],[1709959204000,0],[1709959205000,0],[1709959206000,0],[1709959207000,0],[1709959208000,0],[1709959209000,0],[1709959210000,0],[1709959211000,0],[1709959212000,0],[1709959213000,0],[1709959214000,0],[1709959215000,0],[1709959216000,0],[1709959217000,0],[1709959218000,0],[1709959219000,0],[1709959220000,0],[1709959221000,0],[1709959222000,0],[1709959223000,0],[1709959224000,0],[1709959225000,0],[1709959226000,0],[1709959227000,0],[1709959228000,0],[1709959229000,0],[1709959230000,0],[1709959231000,0],[1709959232000,0],[1709959233000,0],[1709959234000,0],[1709959235000,0],[1709959236000,0],[1709959237000,0],[1709959238000,0],[1709959239000,0],[1709959240000,0],[1709959241000,0],[1709959242000,0],[1709959243000,0],[1709959244000,0],[1709959245000,0],[1709959246000,0],[1709959247000,0],[1709959248000,0],[1709959249000,0],[1709959250000,0],[1709959251000,0],[1709959252000,0],[1709959253000,0],[1709959254000,0],[1709959255000,0],[1709959256000,0],[1709959257000,0],[1709959258000,0],[1709959259000,0],[1709959260000,0],[1709959261000,0],[1709959262000,0],[1709959263000,0],[1709959264000,0],[1709959265000,0],[1709959266000,0],[1709959267000,0],[1709959268000,0],[1709959269000,0],[1709959270000,0],[1709959271000,0],[1709959272000,0],[1709959273000,0],[1709959274000,0],[1709959275000,0],[1709959276000,0],[1709959277000,0],[1709959278000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#9D00FF',
name: 'validação concorrência transações - c',
data: [
[1709959034000,0],[1709959035000,25],[1709959036000,25],[1709959037000,0],[1709959038000,0],[1709959039000,0],[1709959040000,0],[1709959041000,0],[1709959042000,0],[1709959043000,0],[1709959044000,0],[1709959045000,0],[1709959046000,0],[1709959047000,0],[1709959048000,0],[1709959049000,0],[1709959050000,0],[1709959051000,0],[1709959052000,0],[1709959053000,0],[1709959054000,0],[1709959055000,0],[1709959056000,0],[1709959057000,0],[1709959058000,0],[1709959059000,0],[1709959060000,0],[1709959061000,0],[1709959062000,0],[1709959063000,0],[1709959064000,0],[1709959065000,0],[1709959066000,0],[1709959067000,0],[1709959068000,0],[1709959069000,0],[1709959070000,0],[1709959071000,0],[1709959072000,0],[1709959073000,0],[1709959074000,0],[1709959075000,0],[1709959076000,0],[1709959077000,0],[1709959078000,0],[1709959079000,0],[1709959080000,0],[1709959081000,0],[1709959082000,0],[1709959083000,0],[1709959084000,0],[1709959085000,0],[1709959086000,0],[1709959087000,0],[1709959088000,0],[1709959089000,0],[1709959090000,0],[1709959091000,0],[1709959092000,0],[1709959093000,0],[1709959094000,0],[1709959095000,0],[1709959096000,0],[1709959097000,0],[1709959098000,0],[1709959099000,0],[1709959100000,0],[1709959101000,0],[1709959102000,0],[1709959103000,0],[1709959104000,0],[1709959105000,0],[1709959106000,0],[1709959107000,0],[1709959108000,0],[1709959109000,0],[1709959110000,0],[1709959111000,0],[1709959112000,0],[1709959113000,0],[1709959114000,0],[1709959115000,0],[1709959116000,0],[1709959117000,0],[1709959118000,0],[1709959119000,0],[1709959120000,0],[1709959121000,0],[1709959122000,0],[1709959123000,0],[1709959124000,0],[1709959125000,0],[1709959126000,0],[1709959127000,0],[1709959128000,0],[1709959129000,0],[1709959130000,0],[1709959131000,0],[1709959132000,0],[1709959133000,0],[1709959134000,0],[1709959135000,0],[1709959136000,0],[1709959137000,0],[1709959138000,0],[1709959139000,0],[1709959140000,0],[1709959141000,0],[1709959142000,0],[1709959143000,0],[1709959144000,0],[1709959145000,0],[1709959146000,0],[1709959147000,0],[1709959148000,0],[1709959149000,0],[1709959150000,0],[1709959151000,0],[1709959152000,0],[1709959153000,0],[1709959154000,0],[1709959155000,0],[1709959156000,0],[1709959157000,0],[1709959158000,0],[1709959159000,0],[1709959160000,0],[1709959161000,0],[1709959162000,0],[1709959163000,0],[1709959164000,0],[1709959165000,0],[1709959166000,0],[1709959167000,0],[1709959168000,0],[1709959169000,0],[1709959170000,0],[1709959171000,0],[1709959172000,0],[1709959173000,0],[1709959174000,0],[1709959175000,0],[1709959176000,0],[1709959177000,0],[1709959178000,0],[1709959179000,0],[1709959180000,0],[1709959181000,0],[1709959182000,0],[1709959183000,0],[1709959184000,0],[1709959185000,0],[1709959186000,0],[1709959187000,0],[1709959188000,0],[1709959189000,0],[1709959190000,0],[1709959191000,0],[1709959192000,0],[1709959193000,0],[1709959194000,0],[1709959195000,0],[1709959196000,0],[1709959197000,0],[1709959198000,0],[1709959199000,0],[1709959200000,0],[1709959201000,0],[1709959202000,0],[1709959203000,0],[1709959204000,0],[1709959205000,0],[1709959206000,0],[1709959207000,0],[1709959208000,0],[1709959209000,0],[1709959210000,0],[1709959211000,0],[1709959212000,0],[1709959213000,0],[1709959214000,0],[1709959215000,0],[1709959216000,0],[1709959217000,0],[1709959218000,0],[1709959219000,0],[1709959220000,0],[1709959221000,0],[1709959222000,0],[1709959223000,0],[1709959224000,0],[1709959225000,0],[1709959226000,0],[1709959227000,0],[1709959228000,0],[1709959229000,0],[1709959230000,0],[1709959231000,0],[1709959232000,0],[1709959233000,0],[1709959234000,0],[1709959235000,0],[1709959236000,0],[1709959237000,0],[1709959238000,0],[1709959239000,0],[1709959240000,0],[1709959241000,0],[1709959242000,0],[1709959243000,0],[1709959244000,0],[1709959245000,0],[1709959246000,0],[1709959247000,0],[1709959248000,0],[1709959249000,0],[1709959250000,0],[1709959251000,0],[1709959252000,0],[1709959253000,0],[1709959254000,0],[1709959255000,0],[1709959256000,0],[1709959257000,0],[1709959258000,0],[1709959259000,0],[1709959260000,0],[1709959261000,0],[1709959262000,0],[1709959263000,0],[1709959264000,0],[1709959265000,0],[1709959266000,0],[1709959267000,0],[1709959268000,0],[1709959269000,0],[1709959270000,0],[1709959271000,0],[1709959272000,0],[1709959273000,0],[1709959274000,0],[1709959275000,0],[1709959276000,0],[1709959277000,0],[1709959278000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FF00E1',
name: 'validação concorrência saldo - -25',
data: [
[1709959034000,1],[1709959035000,1],[1709959036000,0],[1709959037000,0],[1709959038000,0],[1709959039000,0],[1709959040000,0],[1709959041000,0],[1709959042000,0],[1709959043000,0],[1709959044000,0],[1709959045000,0],[1709959046000,0],[1709959047000,0],[1709959048000,0],[1709959049000,0],[1709959050000,0],[1709959051000,0],[1709959052000,0],[1709959053000,0],[1709959054000,0],[1709959055000,0],[1709959056000,0],[1709959057000,0],[1709959058000,0],[1709959059000,0],[1709959060000,0],[1709959061000,0],[1709959062000,0],[1709959063000,0],[1709959064000,0],[1709959065000,0],[1709959066000,0],[1709959067000,0],[1709959068000,0],[1709959069000,0],[1709959070000,0],[1709959071000,0],[1709959072000,0],[1709959073000,0],[1709959074000,0],[1709959075000,0],[1709959076000,0],[1709959077000,0],[1709959078000,0],[1709959079000,0],[1709959080000,0],[1709959081000,0],[1709959082000,0],[1709959083000,0],[1709959084000,0],[1709959085000,0],[1709959086000,0],[1709959087000,0],[1709959088000,0],[1709959089000,0],[1709959090000,0],[1709959091000,0],[1709959092000,0],[1709959093000,0],[1709959094000,0],[1709959095000,0],[1709959096000,0],[1709959097000,0],[1709959098000,0],[1709959099000,0],[1709959100000,0],[1709959101000,0],[1709959102000,0],[1709959103000,0],[1709959104000,0],[1709959105000,0],[1709959106000,0],[1709959107000,0],[1709959108000,0],[1709959109000,0],[1709959110000,0],[1709959111000,0],[1709959112000,0],[1709959113000,0],[1709959114000,0],[1709959115000,0],[1709959116000,0],[1709959117000,0],[1709959118000,0],[1709959119000,0],[1709959120000,0],[1709959121000,0],[1709959122000,0],[1709959123000,0],[1709959124000,0],[1709959125000,0],[1709959126000,0],[1709959127000,0],[1709959128000,0],[1709959129000,0],[1709959130000,0],[1709959131000,0],[1709959132000,0],[1709959133000,0],[1709959134000,0],[1709959135000,0],[1709959136000,0],[1709959137000,0],[1709959138000,0],[1709959139000,0],[1709959140000,0],[1709959141000,0],[1709959142000,0],[1709959143000,0],[1709959144000,0],[1709959145000,0],[1709959146000,0],[1709959147000,0],[1709959148000,0],[1709959149000,0],[1709959150000,0],[1709959151000,0],[1709959152000,0],[1709959153000,0],[1709959154000,0],[1709959155000,0],[1709959156000,0],[1709959157000,0],[1709959158000,0],[1709959159000,0],[1709959160000,0],[1709959161000,0],[1709959162000,0],[1709959163000,0],[1709959164000,0],[1709959165000,0],[1709959166000,0],[1709959167000,0],[1709959168000,0],[1709959169000,0],[1709959170000,0],[1709959171000,0],[1709959172000,0],[1709959173000,0],[1709959174000,0],[1709959175000,0],[1709959176000,0],[1709959177000,0],[1709959178000,0],[1709959179000,0],[1709959180000,0],[1709959181000,0],[1709959182000,0],[1709959183000,0],[1709959184000,0],[1709959185000,0],[1709959186000,0],[1709959187000,0],[1709959188000,0],[1709959189000,0],[1709959190000,0],[1709959191000,0],[1709959192000,0],[1709959193000,0],[1709959194000,0],[1709959195000,0],[1709959196000,0],[1709959197000,0],[1709959198000,0],[1709959199000,0],[1709959200000,0],[1709959201000,0],[1709959202000,0],[1709959203000,0],[1709959204000,0],[1709959205000,0],[1709959206000,0],[1709959207000,0],[1709959208000,0],[1709959209000,0],[1709959210000,0],[1709959211000,0],[1709959212000,0],[1709959213000,0],[1709959214000,0],[1709959215000,0],[1709959216000,0],[1709959217000,0],[1709959218000,0],[1709959219000,0],[1709959220000,0],[1709959221000,0],[1709959222000,0],[1709959223000,0],[1709959224000,0],[1709959225000,0],[1709959226000,0],[1709959227000,0],[1709959228000,0],[1709959229000,0],[1709959230000,0],[1709959231000,0],[1709959232000,0],[1709959233000,0],[1709959234000,0],[1709959235000,0],[1709959236000,0],[1709959237000,0],[1709959238000,0],[1709959239000,0],[1709959240000,0],[1709959241000,0],[1709959242000,0],[1709959243000,0],[1709959244000,0],[1709959245000,0],[1709959246000,0],[1709959247000,0],[1709959248000,0],[1709959249000,0],[1709959250000,0],[1709959251000,0],[1709959252000,0],[1709959253000,0],[1709959254000,0],[1709959255000,0],[1709959256000,0],[1709959257000,0],[1709959258000,0],[1709959259000,0],[1709959260000,0],[1709959261000,0],[1709959262000,0],[1709959263000,0],[1709959264000,0],[1709959265000,0],[1709959266000,0],[1709959267000,0],[1709959268000,0],[1709959269000,0],[1709959270000,0],[1709959271000,0],[1709959272000,0],[1709959273000,0],[1709959274000,0],[1709959275000,0],[1709959276000,0],[1709959277000,0],[1709959278000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#AECAEB',
name: 'validação concorrência transações - d',
data: [
[1709959034000,25],[1709959035000,0],[1709959036000,0],[1709959037000,0],[1709959038000,0],[1709959039000,0],[1709959040000,0],[1709959041000,0],[1709959042000,0],[1709959043000,0],[1709959044000,0],[1709959045000,0],[1709959046000,0],[1709959047000,0],[1709959048000,0],[1709959049000,0],[1709959050000,0],[1709959051000,0],[1709959052000,0],[1709959053000,0],[1709959054000,0],[1709959055000,0],[1709959056000,0],[1709959057000,0],[1709959058000,0],[1709959059000,0],[1709959060000,0],[1709959061000,0],[1709959062000,0],[1709959063000,0],[1709959064000,0],[1709959065000,0],[1709959066000,0],[1709959067000,0],[1709959068000,0],[1709959069000,0],[1709959070000,0],[1709959071000,0],[1709959072000,0],[1709959073000,0],[1709959074000,0],[1709959075000,0],[1709959076000,0],[1709959077000,0],[1709959078000,0],[1709959079000,0],[1709959080000,0],[1709959081000,0],[1709959082000,0],[1709959083000,0],[1709959084000,0],[1709959085000,0],[1709959086000,0],[1709959087000,0],[1709959088000,0],[1709959089000,0],[1709959090000,0],[1709959091000,0],[1709959092000,0],[1709959093000,0],[1709959094000,0],[1709959095000,0],[1709959096000,0],[1709959097000,0],[1709959098000,0],[1709959099000,0],[1709959100000,0],[1709959101000,0],[1709959102000,0],[1709959103000,0],[1709959104000,0],[1709959105000,0],[1709959106000,0],[1709959107000,0],[1709959108000,0],[1709959109000,0],[1709959110000,0],[1709959111000,0],[1709959112000,0],[1709959113000,0],[1709959114000,0],[1709959115000,0],[1709959116000,0],[1709959117000,0],[1709959118000,0],[1709959119000,0],[1709959120000,0],[1709959121000,0],[1709959122000,0],[1709959123000,0],[1709959124000,0],[1709959125000,0],[1709959126000,0],[1709959127000,0],[1709959128000,0],[1709959129000,0],[1709959130000,0],[1709959131000,0],[1709959132000,0],[1709959133000,0],[1709959134000,0],[1709959135000,0],[1709959136000,0],[1709959137000,0],[1709959138000,0],[1709959139000,0],[1709959140000,0],[1709959141000,0],[1709959142000,0],[1709959143000,0],[1709959144000,0],[1709959145000,0],[1709959146000,0],[1709959147000,0],[1709959148000,0],[1709959149000,0],[1709959150000,0],[1709959151000,0],[1709959152000,0],[1709959153000,0],[1709959154000,0],[1709959155000,0],[1709959156000,0],[1709959157000,0],[1709959158000,0],[1709959159000,0],[1709959160000,0],[1709959161000,0],[1709959162000,0],[1709959163000,0],[1709959164000,0],[1709959165000,0],[1709959166000,0],[1709959167000,0],[1709959168000,0],[1709959169000,0],[1709959170000,0],[1709959171000,0],[1709959172000,0],[1709959173000,0],[1709959174000,0],[1709959175000,0],[1709959176000,0],[1709959177000,0],[1709959178000,0],[1709959179000,0],[1709959180000,0],[1709959181000,0],[1709959182000,0],[1709959183000,0],[1709959184000,0],[1709959185000,0],[1709959186000,0],[1709959187000,0],[1709959188000,0],[1709959189000,0],[1709959190000,0],[1709959191000,0],[1709959192000,0],[1709959193000,0],[1709959194000,0],[1709959195000,0],[1709959196000,0],[1709959197000,0],[1709959198000,0],[1709959199000,0],[1709959200000,0],[1709959201000,0],[1709959202000,0],[1709959203000,0],[1709959204000,0],[1709959205000,0],[1709959206000,0],[1709959207000,0],[1709959208000,0],[1709959209000,0],[1709959210000,0],[1709959211000,0],[1709959212000,0],[1709959213000,0],[1709959214000,0],[1709959215000,0],[1709959216000,0],[1709959217000,0],[1709959218000,0],[1709959219000,0],[1709959220000,0],[1709959221000,0],[1709959222000,0],[1709959223000,0],[1709959224000,0],[1709959225000,0],[1709959226000,0],[1709959227000,0],[1709959228000,0],[1709959229000,0],[1709959230000,0],[1709959231000,0],[1709959232000,0],[1709959233000,0],[1709959234000,0],[1709959235000,0],[1709959236000,0],[1709959237000,0],[1709959238000,0],[1709959239000,0],[1709959240000,0],[1709959241000,0],[1709959242000,0],[1709959243000,0],[1709959244000,0],[1709959245000,0],[1709959246000,0],[1709959247000,0],[1709959248000,0],[1709959249000,0],[1709959250000,0],[1709959251000,0],[1709959252000,0],[1709959253000,0],[1709959254000,0],[1709959255000,0],[1709959256000,0],[1709959257000,0],[1709959258000,0],[1709959259000,0],[1709959260000,0],[1709959261000,0],[1709959262000,0],[1709959263000,0],[1709959264000,0],[1709959265000,0],[1709959266000,0],[1709959267000,0],[1709959268000,0],[1709959269000,0],[1709959270000,0],[1709959271000,0],[1709959272000,0],[1709959273000,0],[1709959274000,0],[1709959275000,0],[1709959276000,0],[1709959277000,0],[1709959278000,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', '5', '8', '11', '14', '17', '19', '22', '25', '28', '31', '34', '37', '39', '42', '45', '48', '51', '54', '56', '59', '62', '65', '68', '71', '73', '76', '79', '82', '85', '88', '90', '93', '96', '99', '102', '105', '108', '110', '113', '116', '119', '122', '125', '127', '130', '133', '136', '139', '142', '144', '147', '150', '153', '156', '159', '161', '164', '167', '170', '173', '176', '178', '181', '184', '187', '190', '193', '196', '198', '201', '204', '207', '210', '213', '215', '218', '221', '224', '227', '230', '232', '235', '238', '241', '244', '247', '249', '252', '255', '258', '261', '264', '267', '269', '272', '275', '278', '281', '284'],
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: [
43.73,47.78,5.71,1.05,0.49,0.25,0.13,0.12,0.08,0.06,0.05,0.03,0.01,0.04,0.03,0.03,0.02,0.01,0.01,0.01,0.01,0.01,0.02,0.01,0.01,0.01,0.01,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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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([[1709959034,[122,136,145,155,158,162,167,176,259,285]],[1709959035,[6,6,6,6,6,6,6,6,6,6]],[1709959036,[22,37,46,59,65,67,69,71,73,74]],[1709959037,[4,4,4,4,4,4,4,4,4,4]],[1709959038,[1,4,7,12,14,16,19,21,22,23]],[1709959039,[6,6,7,7,7,7,7,7,7,7]],[1709959040,[5,6,8,9,10,10,10,10,10,11]],[1709959041,[5,6,6,8,10,13,15,16,16,17]],[1709959042,[4,5,5,6,6,6,6,6,6,7]],[1709959043,[3,5,5,6,6,6,6,7,10,11]],[1709959044,[3,5,5,6,6,7,7,8,8,8]],[1709959045,[4,5,5,6,6,6,7,7,14,16]],[1709959046,[3,4,5,5,5,6,7,8,10,11]],[1709959047,[3,5,5,5,7,7,7,8,9,10]],[1709959048,[4,4,5,6,7,9,9,10,16,18]],[1709959049,[3,5,5,6,7,7,7,10,14,16]],[1709959050,[3,4,4,5,6,7,7,9,9,10]],[1709959051,[3,4,5,5,6,6,6,7,8,10]],[1709959052,[3,4,5,6,6,7,8,8,20,26]],[1709959053,[3,4,5,5,6,6,6,7,11,14]],[1709959054,[3,4,5,6,7,7,16,41,79,79]],[1709959055,[3,4,5,5,5,5,6,7,10,10]],[1709959056,[2,4,4,5,5,5,6,6,26,27]],[1709959057,[2,3,4,4,5,5,5,6,9,12]],[1709959058,[1,4,4,5,5,5,5,6,6,7]],[1709959059,[2,4,4,5,5,5,5,6,11,14]],[1709959060,[2,4,4,5,5,5,6,7,35,35]],[1709959061,[2,4,4,5,5,5,5,5,9,14]],[1709959062,[2,4,4,4,5,5,5,6,7,8]],[1709959063,[1,4,4,5,5,6,6,6,7,8]],[1709959064,[1,3,4,4,5,5,12,55,94,97]],[1709959065,[2,4,4,5,5,6,6,6,8,11]],[1709959066,[2,4,4,5,5,5,5,6,6,7]],[1709959067,[2,4,4,5,5,5,7,8,12,12]],[1709959068,[1,3,4,4,4,5,5,5,22,26]],[1709959069,[1,3,4,4,4,4,5,5,10,12]],[1709959070,[1,4,4,4,4,4,4,5,6,6]],[1709959071,[1,4,4,5,5,5,6,6,7,8]],[1709959072,[2,3,4,4,5,5,5,6,16,18]],[1709959073,[2,4,4,5,5,5,6,7,8,11]],[1709959074,[2,4,4,5,6,6,6,8,12,19]],[1709959075,[2,4,4,5,5,6,6,7,9,19]],[1709959076,[1,4,4,5,5,6,6,7,7,15]],[1709959077,[2,4,4,4,4,5,5,8,15,18]],[1709959078,[1,3,4,5,5,6,6,7,9,10]],[1709959079,[1,3,4,5,5,6,6,7,35,41]],[1709959080,[1,3,4,5,5,5,7,7,19,24]],[1709959081,[1,3,4,4,5,5,6,6,16,19]],[1709959082,[1,3,4,4,5,5,6,6,11,14]],[1709959083,[1,3,4,5,5,6,6,7,10,13]],[1709959084,[1,3,4,5,5,5,6,7,14,18]],[1709959085,[2,4,4,5,5,6,6,8,14,19]],[1709959086,[1,3,4,5,5,6,6,7,11,14]],[1709959087,[1,3,4,5,5,5,6,7,9,14]],[1709959088,[1,3,4,4,4,5,5,5,10,11]],[1709959089,[1,3,4,5,5,5,6,7,14,20]],[1709959090,[1,2,3,4,4,4,5,5,9,11]],[1709959091,[1,3,4,4,5,5,5,6,7,12]],[1709959092,[1,3,3,4,4,5,5,6,8,10]],[1709959093,[1,3,4,4,5,5,5,8,20,30]],[1709959094,[1,3,3,4,4,5,5,6,8,10]],[1709959095,[1,3,4,4,4,5,5,6,7,12]],[1709959096,[1,3,4,5,5,5,6,7,10,15]],[1709959097,[1,3,4,5,5,5,6,7,16,27]],[1709959098,[1,2,3,4,4,5,5,6,9,10]],[1709959099,[1,3,4,4,4,5,5,6,11,15]],[1709959100,[1,2,4,4,5,5,5,7,11,15]],[1709959101,[1,3,3,4,4,4,5,6,12,22]],[1709959102,[1,3,4,4,4,5,5,6,8,10]],[1709959103,[1,3,4,4,4,5,5,6,9,11]],[1709959104,[1,3,4,4,4,5,5,6,7,11]],[1709959105,[1,3,3,4,4,4,5,5,17,25]],[1709959106,[1,3,4,4,4,5,5,5,9,12]],[1709959107,[1,2,3,4,4,4,4,5,6,13]],[1709959108,[1,2,3,4,4,5,5,6,7,10]],[1709959109,[1,3,3,4,5,5,5,6,10,12]],[1709959110,[1,3,4,4,5,5,5,6,11,16]],[1709959111,[1,2,3,4,4,5,5,6,9,14]],[1709959112,[1,2,3,4,4,4,4,5,8,14]],[1709959113,[1,3,3,4,4,4,5,6,9,17]],[1709959114,[1,3,3,3,4,4,4,5,8,10]],[1709959115,[1,3,3,4,4,5,5,6,10,16]],[1709959116,[1,3,3,4,4,5,5,7,12,15]],[1709959117,[1,3,4,4,5,5,6,6,7,8]],[1709959118,[1,3,4,4,5,6,6,8,26,35]],[1709959119,[1,2,3,4,4,4,5,6,11,13]],[1709959120,[1,3,4,5,5,5,6,7,11,14]],[1709959121,[1,3,4,5,6,6,7,8,9,14]],[1709959122,[1,2,4,4,5,5,6,7,10,13]],[1709959123,[1,2,4,4,5,5,6,7,12,14]],[1709959124,[1,3,3,4,4,4,4,5,7,17]],[1709959125,[1,3,3,4,4,4,5,5,6,8]],[1709959126,[1,3,3,4,4,4,5,6,17,24]],[1709959127,[1,3,3,4,5,5,6,7,12,15]],[1709959128,[1,3,3,4,5,5,5,6,8,13]],[1709959129,[1,3,3,4,4,5,5,6,12,16]],[1709959130,[1,3,3,4,5,5,6,7,8,15]],[1709959131,[1,3,4,5,6,7,9,29,49,66]],[1709959132,[1,3,3,4,4,5,5,6,10,17]],[1709959133,[1,3,3,4,4,4,5,5,9,13]],[1709959134,[1,3,3,4,4,4,5,6,18,28]],[1709959135,[1,3,4,4,4,5,5,6,8,11]],[1709959136,[1,3,3,4,4,5,5,6,7,9]],[1709959137,[1,3,3,4,4,4,5,5,9,12]],[1709959138,[1,3,3,4,4,4,5,6,25,33]],[1709959139,[1,3,3,4,4,5,5,5,7,8]],[1709959140,[1,2,3,4,4,4,5,6,9,10]],[1709959141,[1,3,3,4,5,5,5,6,8,13]],[1709959142,[1,3,4,5,5,5,6,10,19,39]],[1709959143,[1,3,3,4,5,5,5,6,8,10]],[1709959144,[1,3,3,4,4,5,5,6,10,13]],[1709959145,[1,3,3,4,4,4,5,5,10,11]],[1709959146,[1,3,3,4,4,4,5,7,15,20]],[1709959147,[1,3,3,4,4,5,6,12,49,58]],[1709959148,[1,2,3,4,4,4,5,6,8,14]],[1709959149,[1,3,4,4,5,5,5,6,7,8]],[1709959150,[1,3,4,5,5,5,6,7,13,15]],[1709959151,[1,3,4,5,5,6,6,7,8,10]],[1709959152,[1,3,5,6,6,6,7,7,8,10]],[1709959153,[1,3,4,5,5,5,5,6,7,8]],[1709959154,[1,4,5,6,6,6,7,7,11,28]],[1709959155,[1,3,4,5,5,6,7,8,12,16]],[1709959156,[1,3,4,5,6,6,6,7,8,10]],[1709959157,[1,3,3,4,4,5,5,5,8,12]],[1709959158,[1,4,5,5,6,6,6,7,8,10]],[1709959159,[1,3,3,4,5,5,6,9,24,31]],[1709959160,[1,4,5,6,6,7,8,13,23,49]],[1709959161,[1,3,3,5,5,5,5,7,25,36]],[1709959162,[2,5,5,6,6,7,7,8,14,22]],[1709959163,[1,3,3,4,5,5,6,7,10,15]],[1709959164,[1,3,5,5,6,6,6,7,9,13]],[1709959165,[1,3,4,5,5,5,5,6,8,11]],[1709959166,[1,4,5,6,6,7,7,8,18,23]],[1709959167,[1,2,4,5,5,5,6,6,9,14]],[1709959168,[1,3,4,5,6,7,28,79,121,130]],[1709959169,[1,3,3,4,5,5,5,7,11,19]],[1709959170,[1,4,5,6,6,7,7,8,12,18]],[1709959171,[1,3,4,5,5,6,6,8,14,19]],[1709959172,[1,4,5,6,7,8,10,18,44,70]],[1709959173,[1,3,4,5,6,6,6,7,8,12]],[1709959174,[2,4,5,7,8,11,24,45,66,76]],[1709959175,[1,3,4,5,5,6,6,7,13,21]],[1709959176,[1,3,4,5,5,6,6,8,11,12]],[1709959177,[1,3,4,5,5,5,6,7,10,12]],[1709959178,[1,3,4,5,5,6,6,7,10,14]],[1709959179,[1,3,4,5,5,6,7,8,12,15]],[1709959180,[1,3,3,5,5,6,6,7,11,18]],[1709959181,[1,3,4,5,5,6,6,7,10,13]],[1709959182,[1,3,4,5,6,6,8,17,29,43]],[1709959183,[1,3,4,6,6,7,7,8,14,22]],[1709959184,[1,3,3,4,5,5,5,7,11,16]],[1709959185,[2,3,5,6,6,6,7,8,11,13]],[1709959186,[1,3,4,5,5,5,6,8,29,34]],[1709959187,[1,3,5,6,6,6,7,7,14,19]],[1709959188,[1,3,4,5,5,5,6,7,9,19]],[1709959189,[1,3,5,6,6,7,7,8,12,17]],[1709959190,[1,2,4,5,5,5,6,6,7,7]],[1709959191,[1,3,4,6,6,6,7,8,11,20]],[1709959192,[1,2,3,4,5,5,6,6,7,12]],[1709959193,[1,3,4,5,5,6,6,7,13,32]],[1709959194,[1,2,3,4,5,5,6,7,13,16]],[1709959195,[1,3,4,5,6,6,7,8,9,14]],[1709959196,[1,2,3,4,5,5,6,8,14,16]],[1709959197,[1,3,4,5,6,6,6,7,9,15]],[1709959198,[1,2,4,4,5,5,5,6,8,11]],[1709959199,[1,3,4,5,5,6,7,10,18,34]],[1709959200,[1,2,3,4,5,5,6,7,12,17]],[1709959201,[1,3,4,6,6,6,7,8,11,13]],[1709959202,[1,2,3,4,4,5,5,6,13,19]],[1709959203,[1,3,3,4,5,5,5,7,9,14]],[1709959204,[1,3,3,5,5,5,6,7,14,24]],[1709959205,[1,3,4,5,5,6,6,7,12,19]],[1709959206,[1,3,4,5,5,5,6,6,8,11]],[1709959207,[1,3,4,5,5,5,6,7,13,19]],[1709959208,[1,2,3,4,5,5,5,6,8,9]],[1709959209,[1,3,4,5,6,6,7,11,52,68]],[1709959210,[1,3,4,5,5,5,6,7,8,13]],[1709959211,[1,3,3,4,5,5,5,6,8,14]],[1709959212,[2,3,4,5,5,5,6,7,7,14]],[1709959213,[1,4,5,5,6,6,6,7,8,12]],[1709959214,[1,3,4,5,5,5,6,6,7,8]],[1709959215,[1,3,4,5,6,6,7,8,15,21]],[1709959216,[1,2,3,4,4,5,5,6,9,11]],[1709959217,[1,3,4,5,5,5,5,6,11,17]],[1709959218,[1,2,3,4,4,4,5,6,7,8]],[1709959219,[1,3,4,5,6,6,7,8,13,15]],[1709959220,[1,3,4,5,6,6,6,7,10,15]],[1709959221,[2,3,4,5,5,6,6,7,9,11]],[1709959222,[1,3,3,4,5,5,5,6,9,15]],[1709959223,[1,3,4,5,5,6,6,7,11,25]],[1709959224,[1,3,4,5,5,6,6,7,16,25]],[1709959225,[1,3,4,5,6,6,7,8,13,21]],[1709959226,[2,3,4,5,5,6,6,7,8,11]],[1709959227,[1,3,4,5,5,6,7,8,10,17]],[1709959228,[1,3,4,5,6,6,7,8,21,28]],[1709959229,[1,3,4,5,5,6,6,7,8,10]],[1709959230,[1,3,4,5,6,6,6,7,12,22]],[1709959231,[1,3,3,5,5,6,6,7,10,14]],[1709959232,[1,3,5,6,6,7,7,8,12,26]],[1709959233,[1,3,4,5,5,6,6,7,9,15]],[1709959234,[1,3,6,39,48,63,75,97,163,263]],[1709959235,[1,3,4,5,5,6,6,7,18,26]],[1709959236,[2,4,5,6,7,7,9,12,16,19]],[1709959237,[1,2,4,5,5,6,6,9,17,26]],[1709959238,[1,3,5,6,6,6,7,8,15,19]],[1709959239,[1,3,4,5,5,5,6,7,12,17]],[1709959240,[1,3,4,5,6,6,7,8,11,16]],[1709959241,[1,2,3,4,4,5,6,20,54,60]],[1709959242,[1,3,4,5,6,6,7,9,29,43]],[1709959243,[1,1,3,4,4,4,4,5,6,6]],[1709959244,[1,3,4,5,5,6,6,7,8,11]],[1709959245,[1,2,3,5,5,5,6,8,15,21]],[1709959246,[1,3,5,5,6,6,7,7,11,17]],[1709959247,[1,2,3,5,5,5,5,6,8,14]],[1709959248,[1,3,5,6,6,6,7,8,16,19]],[1709959249,[1,2,3,4,5,5,5,6,9,15]],[1709959250,[1,3,4,6,6,7,7,14,28,35]],[1709959251,[1,2,4,5,5,5,6,6,8,12]],[1709959252,[1,3,4,5,5,6,6,7,8,10]],[1709959253,[1,2,3,5,5,5,6,7,15,19]],[1709959254,[1,3,4,5,5,6,6,7,8,8]],[1709959255,[1,3,4,4,5,5,6,6,8,8]],[1709959256,[1,3,4,6,6,8,18,59,105,122]],[1709959257,[1,3,4,5,5,6,6,7,14,29]],[1709959258,[1,3,4,5,5,6,7,8,11,16]],[1709959259,[1,3,4,5,5,5,6,6,8,11]],[1709959260,[1,3,4,5,5,6,6,8,12,18]],[1709959261,[1,3,4,5,6,6,6,7,11,14]],[1709959262,[1,3,4,5,5,6,6,7,11,17]],[1709959263,[1,3,4,5,6,6,7,9,20,27]],[1709959264,[1,2,3,4,4,5,5,6,9,13]],[1709959265,[1,3,4,5,6,6,7,8,11,12]],[1709959266,[1,3,3,4,5,5,5,6,12,16]],[1709959267,[1,3,4,5,5,6,6,8,13,18]],[1709959268,[1,2,3,4,5,5,5,8,25,41]],[1709959269,[1,3,4,5,6,6,7,9,23,38]],[1709959270,[1,3,3,4,5,5,5,6,9,15]],[1709959271,[1,3,4,5,6,6,7,10,27,44]],[1709959272,[1,2,3,4,5,5,5,7,13,17]],[1709959273,[1,3,4,5,5,6,7,9,21,30]],[1709959274,[1,2,3,4,5,5,6,6,7,9]],[1709959275,[1,3,3,5,5,5,6,7,17,22]],[1709959276,[1,3,4,5,6,6,7,8,11,13]],[1709959277,[1,3,5,6,6,7,7,9,11,19]],[1709959278,[1,3,5,6,6,7,7,8,24,36]]]);
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([[1709959034,[25,25,0]],[1709959035,[1,1,0]],[1709959036,[25,25,0]],[1709959037,[1,1,0]],[1709959038,[71,71,0]],[1709959039,[3,3,0]],[1709959040,[6,6,0]],[1709959041,[9,9,0]],[1709959042,[11,11,0]],[1709959043,[13,13,0]],[1709959044,[18,18,0]],[1709959045,[19,19,0]],[1709959046,[24,24,0]],[1709959047,[26,26,0]],[1709959048,[27,27,0]],[1709959049,[32,32,0]],[1709959050,[34,34,0]],[1709959051,[37,37,0]],[1709959052,[39,39,0]],[1709959053,[43,43,0]],[1709959054,[45,45,0]],[1709959055,[48,48,0]],[1709959056,[50,50,0]],[1709959057,[54,54,0]],[1709959058,[56,56,0]],[1709959059,[60,60,0]],[1709959060,[61,61,0]],[1709959061,[65,65,0]],[1709959062,[67,67,0]],[1709959063,[70,70,0]],[1709959064,[74,74,0]],[1709959065,[76,76,0]],[1709959066,[80,80,0]],[1709959067,[81,81,0]],[1709959068,[84,84,0]],[1709959069,[89,89,0]],[1709959070,[89,89,0]],[1709959071,[93,93,0]],[1709959072,[96,96,0]],[1709959073,[98,98,0]],[1709959074,[102,102,0]],[1709959075,[104,104,0]],[1709959076,[107,107,0]],[1709959077,[109,109,0]],[1709959078,[114,114,0]],[1709959079,[115,115,0]],[1709959080,[118,118,0]],[1709959081,[122,122,0]],[1709959082,[123,123,0]],[1709959083,[126,126,0]],[1709959084,[129,129,0]],[1709959085,[133,133,0]],[1709959086,[134,134,0]],[1709959087,[139,139,0]],[1709959088,[140,140,0]],[1709959089,[144,144,0]],[1709959090,[146,146,0]],[1709959091,[149,149,0]],[1709959092,[151,151,0]],[1709959093,[155,155,0]],[1709959094,[157,157,0]],[1709959095,[160,160,0]],[1709959096,[165,165,0]],[1709959097,[165,165,0]],[1709959098,[170,170,0]],[1709959099,[171,171,0]],[1709959100,[174,174,0]],[1709959101,[177,177,0]],[1709959102,[180,180,0]],[1709959103,[183,183,0]],[1709959104,[186,186,0]],[1709959105,[188,188,0]],[1709959106,[192,192,0]],[1709959107,[194,194,0]],[1709959108,[197,197,0]],[1709959109,[198,198,0]],[1709959110,[204,204,0]],[1709959111,[205,205,0]],[1709959112,[208,208,0]],[1709959113,[210,210,0]],[1709959114,[214,214,0]],[1709959115,[217,217,0]],[1709959116,[219,219,0]],[1709959117,[222,222,0]],[1709959118,[225,225,0]],[1709959119,[228,228,0]],[1709959120,[229,229,0]],[1709959121,[234,234,0]],[1709959122,[236,236,0]],[1709959123,[239,239,0]],[1709959124,[243,243,0]],[1709959125,[244,244,0]],[1709959126,[248,248,0]],[1709959127,[251,251,0]],[1709959128,[251,251,0]],[1709959129,[257,257,0]],[1709959130,[259,259,0]],[1709959131,[262,262,0]],[1709959132,[263,263,0]],[1709959133,[267,267,0]],[1709959134,[269,269,0]],[1709959135,[273,273,0]],[1709959136,[275,275,0]],[1709959137,[279,279,0]],[1709959138,[281,281,0]],[1709959139,[284,284,0]],[1709959140,[286,286,0]],[1709959141,[290,290,0]],[1709959142,[292,292,0]],[1709959143,[295,295,0]],[1709959144,[299,299,0]],[1709959145,[300,300,0]],[1709959146,[304,304,0]],[1709959147,[306,306,0]],[1709959148,[309,309,0]],[1709959149,[312,312,0]],[1709959150,[315,315,0]],[1709959151,[317,317,0]],[1709959152,[320,320,0]],[1709959153,[323,323,0]],[1709959154,[328,328,0]],[1709959155,[329,329,0]],[1709959156,[331,331,0]],[1709959157,[334,334,0]],[1709959158,[339,339,0]],[1709959159,[339,339,0]],[1709959160,[341,341,0]],[1709959161,[340,340,0]],[1709959162,[340,340,0]],[1709959163,[339,339,0]],[1709959164,[341,341,0]],[1709959165,[340,340,0]],[1709959166,[340,340,0]],[1709959167,[339,339,0]],[1709959168,[340,340,0]],[1709959169,[341,341,0]],[1709959170,[339,339,0]],[1709959171,[341,341,0]],[1709959172,[340,340,0]],[1709959173,[340,340,0]],[1709959174,[340,340,0]],[1709959175,[340,340,0]],[1709959176,[339,339,0]],[1709959177,[341,341,0]],[1709959178,[338,338,0]],[1709959179,[341,341,0]],[1709959180,[341,341,0]],[1709959181,[339,339,0]],[1709959182,[341,341,0]],[1709959183,[339,339,0]],[1709959184,[341,341,0]],[1709959185,[340,340,0]],[1709959186,[340,340,0]],[1709959187,[340,340,0]],[1709959188,[340,340,0]],[1709959189,[340,340,0]],[1709959190,[340,340,0]],[1709959191,[340,340,0]],[1709959192,[340,340,0]],[1709959193,[338,338,0]],[1709959194,[342,342,0]],[1709959195,[340,340,0]],[1709959196,[340,340,0]],[1709959197,[340,340,0]],[1709959198,[340,340,0]],[1709959199,[340,340,0]],[1709959200,[340,340,0]],[1709959201,[340,340,0]],[1709959202,[339,339,0]],[1709959203,[341,341,0]],[1709959204,[340,340,0]],[1709959205,[339,339,0]],[1709959206,[341,341,0]],[1709959207,[338,338,0]],[1709959208,[342,342,0]],[1709959209,[339,339,0]],[1709959210,[341,341,0]],[1709959211,[340,340,0]],[1709959212,[340,340,0]],[1709959213,[340,340,0]],[1709959214,[338,338,0]],[1709959215,[340,340,0]],[1709959216,[341,341,0]],[1709959217,[340,340,0]],[1709959218,[340,340,0]],[1709959219,[341,341,0]],[1709959220,[340,340,0]],[1709959221,[339,339,0]],[1709959222,[341,341,0]],[1709959223,[338,338,0]],[1709959224,[342,342,0]],[1709959225,[340,340,0]],[1709959226,[340,340,0]],[1709959227,[338,338,0]],[1709959228,[342,342,0]],[1709959229,[340,340,0]],[1709959230,[339,339,0]],[1709959231,[341,341,0]],[1709959232,[340,340,0]],[1709959233,[340,340,0]],[1709959234,[340,340,0]],[1709959235,[340,340,0]],[1709959236,[340,340,0]],[1709959237,[339,339,0]],[1709959238,[341,341,0]],[1709959239,[340,340,0]],[1709959240,[339,339,0]],[1709959241,[341,341,0]],[1709959242,[339,339,0]],[1709959243,[340,340,0]],[1709959244,[340,340,0]],[1709959245,[341,341,0]],[1709959246,[340,340,0]],[1709959247,[340,340,0]],[1709959248,[340,340,0]],[1709959249,[340,340,0]],[1709959250,[340,340,0]],[1709959251,[340,340,0]],[1709959252,[340,340,0]],[1709959253,[340,340,0]],[1709959254,[340,340,0]],[1709959255,[339,339,0]],[1709959256,[341,341,0]],[1709959257,[340,340,0]],[1709959258,[339,339,0]],[1709959259,[340,340,0]],[1709959260,[341,341,0]],[1709959261,[340,340,0]],[1709959262,[340,340,0]],[1709959263,[340,340,0]],[1709959264,[339,339,0]],[1709959265,[341,341,0]],[1709959266,[338,338,0]],[1709959267,[340,340,0]],[1709959268,[342,342,0]],[1709959269,[340,340,0]],[1709959270,[340,340,0]],[1709959271,[340,340,0]],[1709959272,[340,340,0]],[1709959273,[340,340,0]],[1709959274,[338,338,0]],[1709959275,[342,342,0]],[1709959276,[340,340,0]],[1709959277,[340,340,0]],[1709959278,[501,501,0]]]);
var requestsChart = new Highcharts.StockChart({
chart: {
renderTo: 'requests',
zoomType: 'x',
marginBottom: 60
},
credits: { enabled: false },
legend: {
enabled: true,
floating: true,
y: -65,
borderWidth: 0,
itemStyle: { fontWeight: "normal" },
symbolRadius: 0
},
title: { text: 'A title to let highcharts reserve the place for the title set later' },
navigator: {
maskInside: false
},
rangeSelector: {
buttonSpacing: 0,
buttonTheme: {
fill: '#CFC9C6',
padding: 1,
stroke: '#000000',
'stroke-width': 0.25,
style: {
color: '#000000',
fontWeight: 'bold',
},
states: {
stroke: '#000000',
'stroke-width': 0.25,
hover: {
fill: '#92918C',
style: { color: 'black' }
},
select: {
fill: '#FFA900',
style: { color: 'white' }
}
}
},
buttons : [
{
type : 'minute',
count : 1,
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:[