-
Notifications
You must be signed in to change notification settings - Fork 923
/
Copy pathindex.html
1173 lines (1104 loc) · 93.6 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-08 16:58:24 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 - densyy-bun">
<span class="simulation-information-label">Description: </span>
<span>Rinha de Backend - 2024/Q1: Crébito - densyy-bun</span>
</span>
</div>
</div>
</div>
</div>
<div id="statistics_table_container">
<div id="stats" class="statistics extensible-geant collapsed">
<div class="title">
<div id="statistics_title" class="title_base"><span class="title_base_stats">Stats</span><span class="expand-table">Fixed height</span><span id="toggle-stats" class="toggle-table"></span><span class="collapse-table">Full size</span></div>
<div class="right">
<button class="statistics-button expand-all-button">Expand all groups</button>
<button class="statistics-button collapse-all-button">Collapse all groups</button>
<button id="statistics_full_screen" class="statistics-button" onclick="openStatisticsTableModal()"><img alt="Fullscreen" src="style/fullscreen.svg"></button>
</div>
</div>
<div class="scrollable">
<table id="container_statistics_head" class="statistics-in extensible-geant">
<thead>
<tr>
<th rowspan="2" id="col-1" class="header sortable sorted-up"><span>Requests</span></th>
<th colspan="5" class="header"><span class="executions">Executions</span></th>
<th colspan="8" class="header"><span class="response-time">Response Time (ms)</span></th>
</tr>
<tr>
<th id="col-2" class="header sortable"><span>Total</span></th>
<th id="col-3" class="header sortable"><span>OK</span></th>
<th id="col-4" class="header sortable"><span>KO</span></th>
<th id="col-5" class="header sortable"><span>% KO</span></th>
<th id="col-6" class="header sortable"><span><abbr title="Count of events per second">Cnt/s</abbr></span></th>
<th id="col-7" class="header sortable"><span>Min</span></th>
<th id="col-8" class="header sortable"><span>50th pct</span></th>
<th id="col-9" class="header sortable"><span>75th pct</span></th>
<th id="col-10" class="header sortable"><span>95th pct</span></th>
<th id="col-11" class="header sortable"><span>99th pct</span></th>
<th id="col-12" class="header sortable"><span>Max</span></th>
<th id="col-13" class="header sortable"><span>Mean</span></th>
<th id="col-14" class="header sortable"><span><abbr title="Standard Deviation">Std Dev</abbr></span></th>
</tr>
</thead>
<tbody></tbody>
</table>
<table id="container_statistics_body" class="statistics-in extensible-geant">
<tbody></tbody>
</table>
</div>
</div>
</div>
<dialog id="statistics_table_modal" class="statistics-table-modal">
<div class="statistics-table-modal-header"><button class="button-modal" onclick="closeStatisticsTableModal()"><img alt="Close" src="style/close.svg"></button></div>
<div class="statistics-table-modal-container">
<div id="statistics_table_modal_content" class="statistics-table-modal-content"></div>
</div>
</dialog>
<script>
function openStatisticsTableModal () {
const statsTable = document.getElementById("stats");
const statsTableModal = document.getElementById("statistics_table_modal");
const fullScreenButton = document.getElementById("statistics_full_screen");
fullScreenButton.disabled = true;
if (typeof statsTableModal.showModal === "function") {
const statsTableModalContent = document.getElementById("statistics_table_modal_content");
statsTableModalContent.innerHTML = "";
statsTableModalContent.appendChild(statsTable);
statsTableModal.showModal();
statsTableModal.addEventListener("close", function () {
const container = document.getElementById("statistics_table_container");
container.appendChild(statsTable);
fullScreenButton.disabled = false;
});
} else {
const incompatibleBrowserVersionMessage = document.createElement("div");
incompatibleBrowserVersionMessage.innerText = "Sorry, the <dialog> API is not supported by this browser.";
statsTable.insertBefore(incompatibleBrowserVersionMessage, statsTable.children[0]);
}
}
function closeStatisticsTableModal () {
const statsTableModal = document.getElementById("statistics_table_modal");
statsTableModal.close();
}
</script>
<div class="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: [
[1709917105000,0],[1709917106000,0],[1709917107000,0],[1709917108000,0],[1709917109000,0],[1709917110000,2],[1709917111000,4],[1709917112000,6],[1709917113000,7],[1709917114000,9],[1709917115000,11],[1709917116000,13],[1709917117000,15],[1709917118000,16],[1709917119000,19],[1709917120000,20],[1709917121000,22],[1709917122000,24],[1709917123000,25],[1709917124000,28],[1709917125000,29],[1709917126000,31],[1709917127000,33],[1709917128000,35],[1709917129000,37],[1709917130000,38],[1709917131000,40],[1709917132000,42],[1709917133000,44],[1709917134000,46],[1709917135000,47],[1709917136000,50],[1709917137000,51],[1709917138000,53],[1709917139000,55],[1709917140000,56],[1709917141000,59],[1709917142000,60],[1709917143000,62],[1709917144000,64],[1709917145000,66],[1709917146000,68],[1709917147000,69],[1709917148000,72],[1709917149000,75],[1709917150000,75],[1709917151000,78],[1709917152000,80],[1709917153000,81],[1709917154000,83],[1709917155000,85],[1709917156000,87],[1709917157000,89],[1709917158000,90],[1709917159000,92],[1709917160000,94],[1709917161000,95],[1709917162000,97],[1709917163000,98],[1709917164000,101],[1709917165000,102],[1709917166000,104],[1709917167000,106],[1709917168000,108],[1709917169000,110],[1709917170000,111],[1709917171000,113],[1709917172000,115],[1709917173000,117],[1709917174000,119],[1709917175000,120],[1709917176000,123],[1709917177000,124],[1709917178000,126],[1709917179000,128],[1709917180000,129],[1709917181000,132],[1709917182000,133],[1709917183000,135],[1709917184000,137],[1709917185000,139],[1709917186000,141],[1709917187000,143],[1709917188000,145],[1709917189000,147],[1709917190000,148],[1709917191000,151],[1709917192000,152],[1709917193000,154],[1709917194000,155],[1709917195000,158],[1709917196000,160],[1709917197000,162],[1709917198000,163],[1709917199000,166],[1709917200000,166],[1709917201000,169],[1709917202000,170],[1709917203000,172],[1709917204000,175],[1709917205000,175],[1709917206000,177],[1709917207000,180],[1709917208000,182],[1709917209000,183],[1709917210000,184],[1709917211000,186],[1709917212000,188],[1709917213000,190],[1709917214000,192],[1709917215000,193],[1709917216000,196],[1709917217000,197],[1709917218000,199],[1709917219000,201],[1709917220000,202],[1709917221000,205],[1709917222000,206],[1709917223000,208],[1709917224000,210],[1709917225000,212],[1709917226000,215],[1709917227000,215],[1709917228000,218],[1709917229000,220],[1709917230000,221],[1709917231000,221],[1709917232000,220],[1709917233000,220],[1709917234000,221],[1709917235000,220],[1709917236000,221],[1709917237000,221],[1709917238000,221],[1709917239000,221],[1709917240000,221],[1709917241000,221],[1709917242000,222],[1709917243000,220],[1709917244000,222],[1709917245000,221],[1709917246000,221],[1709917247000,221],[1709917248000,221],[1709917249000,239],[1709917250000,260],[1709917251000,221],[1709917252000,222],[1709917253000,222],[1709917254000,220],[1709917255000,222],[1709917256000,220],[1709917257000,222],[1709917258000,221],[1709917259000,221],[1709917260000,221],[1709917261000,220],[1709917262000,223],[1709917263000,221],[1709917264000,220],[1709917265000,224],[1709917266000,221],[1709917267000,221],[1709917268000,220],[1709917269000,221],[1709917270000,222],[1709917271000,222],[1709917272000,223],[1709917273000,220],[1709917274000,221],[1709917275000,221],[1709917276000,220],[1709917277000,221],[1709917278000,221],[1709917279000,221],[1709917280000,221],[1709917281000,220],[1709917282000,223],[1709917283000,221],[1709917284000,220],[1709917285000,221],[1709917286000,221],[1709917287000,222],[1709917288000,221],[1709917289000,221],[1709917290000,221],[1709917291000,222],[1709917292000,221],[1709917293000,220],[1709917294000,220],[1709917295000,221],[1709917296000,221],[1709917297000,221],[1709917298000,221],[1709917299000,220],[1709917300000,221],[1709917301000,221],[1709917302000,221],[1709917303000,220],[1709917304000,220],[1709917305000,221],[1709917306000,222],[1709917307000,221],[1709917308000,221],[1709917309000,221],[1709917310000,221],[1709917311000,221],[1709917312000,221],[1709917313000,221],[1709917314000,220],[1709917315000,221],[1709917316000,220],[1709917317000,221],[1709917318000,221],[1709917319000,263],[1709917320000,327],[1709917321000,375],[1709917322000,221],[1709917323000,222],[1709917324000,222],[1709917325000,221],[1709917326000,222],[1709917327000,224],[1709917328000,220],[1709917329000,222],[1709917330000,221],[1709917331000,222],[1709917332000,222],[1709917333000,224],[1709917334000,222],[1709917335000,224],[1709917336000,223],[1709917337000,220],[1709917338000,221],[1709917339000,222],[1709917340000,221],[1709917341000,221],[1709917342000,222],[1709917343000,222],[1709917344000,222],[1709917345000,221],[1709917346000,220],[1709917347000,221],[1709917348000,222],[1709917349000,218]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#68b65c',
name: 'créditos',
data: [
[1709917105000,0],[1709917106000,0],[1709917107000,0],[1709917108000,0],[1709917109000,0],[1709917110000,2],[1709917111000,2],[1709917112000,4],[1709917113000,4],[1709917114000,5],[1709917115000,6],[1709917116000,7],[1709917117000,8],[1709917118000,8],[1709917119000,10],[1709917120000,10],[1709917121000,12],[1709917122000,12],[1709917123000,14],[1709917124000,14],[1709917125000,15],[1709917126000,16],[1709917127000,17],[1709917128000,17],[1709917129000,19],[1709917130000,20],[1709917131000,20],[1709917132000,22],[1709917133000,22],[1709917134000,23],[1709917135000,25],[1709917136000,25],[1709917137000,26],[1709917138000,26],[1709917139000,28],[1709917140000,29],[1709917141000,30],[1709917142000,30],[1709917143000,32],[1709917144000,32],[1709917145000,33],[1709917146000,34],[1709917147000,35],[1709917148000,36],[1709917149000,37],[1709917150000,38],[1709917151000,39],[1709917152000,39],[1709917153000,41],[1709917154000,41],[1709917155000,43],[1709917156000,43],[1709917157000,44],[1709917158000,45],[1709917159000,46],[1709917160000,47],[1709917161000,48],[1709917162000,48],[1709917163000,50],[1709917164000,50],[1709917165000,52],[1709917166000,52],[1709917167000,53],[1709917168000,54],[1709917169000,56],[1709917170000,55],[1709917171000,57],[1709917172000,58],[1709917173000,59],[1709917174000,59],[1709917175000,61],[1709917176000,61],[1709917177000,63],[1709917178000,63],[1709917179000,64],[1709917180000,65],[1709917181000,66],[1709917182000,67],[1709917183000,68],[1709917184000,68],[1709917185000,70],[1709917186000,70],[1709917187000,73],[1709917188000,73],[1709917189000,74],[1709917190000,75],[1709917191000,76],[1709917192000,77],[1709917193000,78],[1709917194000,79],[1709917195000,80],[1709917196000,80],[1709917197000,82],[1709917198000,82],[1709917199000,83],[1709917200000,84],[1709917201000,85],[1709917202000,86],[1709917203000,87],[1709917204000,87],[1709917205000,89],[1709917206000,90],[1709917207000,90],[1709917208000,92],[1709917209000,91],[1709917210000,92],[1709917211000,94],[1709917212000,94],[1709917213000,95],[1709917214000,96],[1709917215000,97],[1709917216000,98],[1709917217000,99],[1709917218000,99],[1709917219000,101],[1709917220000,101],[1709917221000,103],[1709917222000,103],[1709917223000,104],[1709917224000,105],[1709917225000,106],[1709917226000,107],[1709917227000,107],[1709917228000,109],[1709917229000,111],[1709917230000,110],[1709917231000,110],[1709917232000,110],[1709917233000,110],[1709917234000,110],[1709917235000,110],[1709917236000,110],[1709917237000,110],[1709917238000,110],[1709917239000,110],[1709917240000,110],[1709917241000,110],[1709917242000,111],[1709917243000,110],[1709917244000,110],[1709917245000,110],[1709917246000,110],[1709917247000,110],[1709917248000,110],[1709917249000,119],[1709917250000,135],[1709917251000,110],[1709917252000,111],[1709917253000,110],[1709917254000,110],[1709917255000,111],[1709917256000,110],[1709917257000,110],[1709917258000,110],[1709917259000,110],[1709917260000,110],[1709917261000,111],[1709917262000,110],[1709917263000,110],[1709917264000,110],[1709917265000,111],[1709917266000,110],[1709917267000,110],[1709917268000,110],[1709917269000,110],[1709917270000,110],[1709917271000,111],[1709917272000,110],[1709917273000,110],[1709917274000,110],[1709917275000,110],[1709917276000,110],[1709917277000,110],[1709917278000,110],[1709917279000,110],[1709917280000,110],[1709917281000,110],[1709917282000,110],[1709917283000,110],[1709917284000,110],[1709917285000,110],[1709917286000,110],[1709917287000,110],[1709917288000,110],[1709917289000,110],[1709917290000,110],[1709917291000,111],[1709917292000,110],[1709917293000,110],[1709917294000,110],[1709917295000,110],[1709917296000,110],[1709917297000,110],[1709917298000,110],[1709917299000,110],[1709917300000,110],[1709917301000,110],[1709917302000,111],[1709917303000,110],[1709917304000,110],[1709917305000,110],[1709917306000,110],[1709917307000,110],[1709917308000,110],[1709917309000,110],[1709917310000,110],[1709917311000,110],[1709917312000,110],[1709917313000,110],[1709917314000,111],[1709917315000,110],[1709917316000,110],[1709917317000,110],[1709917318000,110],[1709917319000,129],[1709917320000,160],[1709917321000,188],[1709917322000,111],[1709917323000,110],[1709917324000,110],[1709917325000,111],[1709917326000,110],[1709917327000,112],[1709917328000,110],[1709917329000,110],[1709917330000,110],[1709917331000,111],[1709917332000,110],[1709917333000,112],[1709917334000,111],[1709917335000,112],[1709917336000,110],[1709917337000,110],[1709917338000,110],[1709917339000,110],[1709917340000,110],[1709917341000,110],[1709917342000,111],[1709917343000,110],[1709917344000,111],[1709917345000,110],[1709917346000,110],[1709917347000,110],[1709917348000,111],[1709917349000,108]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#f15b4f',
name: 'extratos',
data: [
[1709917105000,0],[1709917106000,0],[1709917107000,0],[1709917108000,0],[1709917109000,1],[1709917110000,2],[1709917111000,1],[1709917112000,1],[1709917113000,1],[1709917114000,1],[1709917115000,2],[1709917116000,1],[1709917117000,2],[1709917118000,2],[1709917119000,1],[1709917120000,2],[1709917121000,2],[1709917122000,2],[1709917123000,2],[1709917124000,2],[1709917125000,2],[1709917126000,2],[1709917127000,3],[1709917128000,2],[1709917129000,3],[1709917130000,2],[1709917131000,3],[1709917132000,2],[1709917133000,3],[1709917134000,3],[1709917135000,3],[1709917136000,3],[1709917137000,3],[1709917138000,3],[1709917139000,3],[1709917140000,4],[1709917141000,3],[1709917142000,3],[1709917143000,4],[1709917144000,3],[1709917145000,4],[1709917146000,4],[1709917147000,4],[1709917148000,4],[1709917149000,4],[1709917150000,4],[1709917151000,4],[1709917152000,4],[1709917153000,4],[1709917154000,4],[1709917155000,5],[1709917156000,4],[1709917157000,5],[1709917158000,5],[1709917159000,4],[1709917160000,5],[1709917161000,5],[1709917162000,5],[1709917163000,5],[1709917164000,5],[1709917165000,5],[1709917166000,5],[1709917167000,6],[1709917168000,5],[1709917169000,6],[1709917170000,5],[1709917171000,6],[1709917172000,5],[1709917173000,6],[1709917174000,6],[1709917175000,6],[1709917176000,6],[1709917177000,6],[1709917178000,6],[1709917179000,6],[1709917180000,7],[1709917181000,6],[1709917182000,6],[1709917183000,7],[1709917184000,6],[1709917185000,7],[1709917186000,7],[1709917187000,7],[1709917188000,7],[1709917189000,7],[1709917190000,7],[1709917191000,7],[1709917192000,7],[1709917193000,7],[1709917194000,7],[1709917195000,8],[1709917196000,7],[1709917197000,8],[1709917198000,8],[1709917199000,7],[1709917200000,8],[1709917201000,8],[1709917202000,8],[1709917203000,8],[1709917204000,8],[1709917205000,8],[1709917206000,8],[1709917207000,9],[1709917208000,8],[1709917209000,9],[1709917210000,8],[1709917211000,9],[1709917212000,8],[1709917213000,9],[1709917214000,9],[1709917215000,9],[1709917216000,9],[1709917217000,9],[1709917218000,9],[1709917219000,9],[1709917220000,10],[1709917221000,9],[1709917222000,9],[1709917223000,10],[1709917224000,9],[1709917225000,10],[1709917226000,10],[1709917227000,10],[1709917228000,10],[1709917229000,10],[1709917230000,10],[1709917231000,10],[1709917232000,10],[1709917233000,10],[1709917234000,10],[1709917235000,10],[1709917236000,10],[1709917237000,10],[1709917238000,10],[1709917239000,10],[1709917240000,10],[1709917241000,10],[1709917242000,10],[1709917243000,10],[1709917244000,10],[1709917245000,10],[1709917246000,10],[1709917247000,10],[1709917248000,10],[1709917249000,11],[1709917250000,12],[1709917251000,10],[1709917252000,11],[1709917253000,11],[1709917254000,10],[1709917255000,11],[1709917256000,10],[1709917257000,11],[1709917258000,10],[1709917259000,10],[1709917260000,10],[1709917261000,10],[1709917262000,10],[1709917263000,10],[1709917264000,10],[1709917265000,11],[1709917266000,10],[1709917267000,10],[1709917268000,10],[1709917269000,10],[1709917270000,10],[1709917271000,10],[1709917272000,10],[1709917273000,10],[1709917274000,10],[1709917275000,10],[1709917276000,10],[1709917277000,10],[1709917278000,10],[1709917279000,10],[1709917280000,10],[1709917281000,10],[1709917282000,11],[1709917283000,10],[1709917284000,10],[1709917285000,10],[1709917286000,10],[1709917287000,10],[1709917288000,10],[1709917289000,10],[1709917290000,10],[1709917291000,10],[1709917292000,10],[1709917293000,10],[1709917294000,10],[1709917295000,10],[1709917296000,10],[1709917297000,10],[1709917298000,10],[1709917299000,10],[1709917300000,10],[1709917301000,10],[1709917302000,10],[1709917303000,10],[1709917304000,10],[1709917305000,10],[1709917306000,10],[1709917307000,10],[1709917308000,10],[1709917309000,10],[1709917310000,10],[1709917311000,10],[1709917312000,10],[1709917313000,10],[1709917314000,10],[1709917315000,10],[1709917316000,10],[1709917317000,10],[1709917318000,10],[1709917319000,14],[1709917320000,18],[1709917321000,17],[1709917322000,10],[1709917323000,11],[1709917324000,10],[1709917325000,11],[1709917326000,10],[1709917327000,11],[1709917328000,10],[1709917329000,11],[1709917330000,10],[1709917331000,10],[1709917332000,11],[1709917333000,11],[1709917334000,10],[1709917335000,11],[1709917336000,11],[1709917337000,10],[1709917338000,11],[1709917339000,10],[1709917340000,10],[1709917341000,10],[1709917342000,10],[1709917343000,10],[1709917344000,11],[1709917345000,10],[1709917346000,10],[1709917347000,10],[1709917348000,11],[1709917349000,9]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FFDD00',
name: 'validações',
data: [
[1709917105000,0],[1709917106000,0],[1709917107000,0],[1709917108000,5],[1709917109000,5],[1709917110000,0],[1709917111000,0],[1709917112000,0],[1709917113000,0],[1709917114000,0],[1709917115000,0],[1709917116000,0],[1709917117000,0],[1709917118000,0],[1709917119000,0],[1709917120000,0],[1709917121000,0],[1709917122000,0],[1709917123000,0],[1709917124000,0],[1709917125000,0],[1709917126000,0],[1709917127000,0],[1709917128000,0],[1709917129000,0],[1709917130000,0],[1709917131000,0],[1709917132000,0],[1709917133000,0],[1709917134000,0],[1709917135000,0],[1709917136000,0],[1709917137000,0],[1709917138000,0],[1709917139000,0],[1709917140000,0],[1709917141000,0],[1709917142000,0],[1709917143000,0],[1709917144000,0],[1709917145000,0],[1709917146000,0],[1709917147000,0],[1709917148000,0],[1709917149000,0],[1709917150000,0],[1709917151000,0],[1709917152000,0],[1709917153000,0],[1709917154000,0],[1709917155000,0],[1709917156000,0],[1709917157000,0],[1709917158000,0],[1709917159000,0],[1709917160000,0],[1709917161000,0],[1709917162000,0],[1709917163000,0],[1709917164000,0],[1709917165000,0],[1709917166000,0],[1709917167000,0],[1709917168000,0],[1709917169000,0],[1709917170000,0],[1709917171000,0],[1709917172000,0],[1709917173000,0],[1709917174000,0],[1709917175000,0],[1709917176000,0],[1709917177000,0],[1709917178000,0],[1709917179000,0],[1709917180000,0],[1709917181000,0],[1709917182000,0],[1709917183000,0],[1709917184000,0],[1709917185000,0],[1709917186000,0],[1709917187000,0],[1709917188000,0],[1709917189000,0],[1709917190000,0],[1709917191000,0],[1709917192000,0],[1709917193000,0],[1709917194000,0],[1709917195000,0],[1709917196000,0],[1709917197000,0],[1709917198000,0],[1709917199000,0],[1709917200000,0],[1709917201000,0],[1709917202000,0],[1709917203000,0],[1709917204000,0],[1709917205000,0],[1709917206000,0],[1709917207000,0],[1709917208000,0],[1709917209000,0],[1709917210000,0],[1709917211000,0],[1709917212000,0],[1709917213000,0],[1709917214000,0],[1709917215000,0],[1709917216000,0],[1709917217000,0],[1709917218000,0],[1709917219000,0],[1709917220000,0],[1709917221000,0],[1709917222000,0],[1709917223000,0],[1709917224000,0],[1709917225000,0],[1709917226000,0],[1709917227000,0],[1709917228000,0],[1709917229000,0],[1709917230000,0],[1709917231000,0],[1709917232000,0],[1709917233000,0],[1709917234000,0],[1709917235000,0],[1709917236000,0],[1709917237000,0],[1709917238000,0],[1709917239000,0],[1709917240000,0],[1709917241000,0],[1709917242000,0],[1709917243000,0],[1709917244000,0],[1709917245000,0],[1709917246000,0],[1709917247000,0],[1709917248000,0],[1709917249000,0],[1709917250000,0],[1709917251000,0],[1709917252000,0],[1709917253000,0],[1709917254000,0],[1709917255000,0],[1709917256000,0],[1709917257000,0],[1709917258000,0],[1709917259000,0],[1709917260000,0],[1709917261000,0],[1709917262000,0],[1709917263000,0],[1709917264000,0],[1709917265000,0],[1709917266000,0],[1709917267000,0],[1709917268000,0],[1709917269000,0],[1709917270000,0],[1709917271000,0],[1709917272000,0],[1709917273000,0],[1709917274000,0],[1709917275000,0],[1709917276000,0],[1709917277000,0],[1709917278000,0],[1709917279000,0],[1709917280000,0],[1709917281000,0],[1709917282000,0],[1709917283000,0],[1709917284000,0],[1709917285000,0],[1709917286000,0],[1709917287000,0],[1709917288000,0],[1709917289000,0],[1709917290000,0],[1709917291000,0],[1709917292000,0],[1709917293000,0],[1709917294000,0],[1709917295000,0],[1709917296000,0],[1709917297000,0],[1709917298000,0],[1709917299000,0],[1709917300000,0],[1709917301000,0],[1709917302000,0],[1709917303000,0],[1709917304000,0],[1709917305000,0],[1709917306000,0],[1709917307000,0],[1709917308000,0],[1709917309000,0],[1709917310000,0],[1709917311000,0],[1709917312000,0],[1709917313000,0],[1709917314000,0],[1709917315000,0],[1709917316000,0],[1709917317000,0],[1709917318000,0],[1709917319000,0],[1709917320000,0],[1709917321000,0],[1709917322000,0],[1709917323000,0],[1709917324000,0],[1709917325000,0],[1709917326000,0],[1709917327000,0],[1709917328000,0],[1709917329000,0],[1709917330000,0],[1709917331000,0],[1709917332000,0],[1709917333000,0],[1709917334000,0],[1709917335000,0],[1709917336000,0],[1709917337000,0],[1709917338000,0],[1709917339000,0],[1709917340000,0],[1709917341000,0],[1709917342000,0],[1709917343000,0],[1709917344000,0],[1709917345000,0],[1709917346000,0],[1709917347000,0],[1709917348000,0],[1709917349000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00D5FF',
name: 'validação HTTP 404',
data: [
[1709917105000,0],[1709917106000,0],[1709917107000,0],[1709917108000,1],[1709917109000,0],[1709917110000,0],[1709917111000,0],[1709917112000,0],[1709917113000,0],[1709917114000,0],[1709917115000,0],[1709917116000,0],[1709917117000,0],[1709917118000,0],[1709917119000,0],[1709917120000,0],[1709917121000,0],[1709917122000,0],[1709917123000,0],[1709917124000,0],[1709917125000,0],[1709917126000,0],[1709917127000,0],[1709917128000,0],[1709917129000,0],[1709917130000,0],[1709917131000,0],[1709917132000,0],[1709917133000,0],[1709917134000,0],[1709917135000,0],[1709917136000,0],[1709917137000,0],[1709917138000,0],[1709917139000,0],[1709917140000,0],[1709917141000,0],[1709917142000,0],[1709917143000,0],[1709917144000,0],[1709917145000,0],[1709917146000,0],[1709917147000,0],[1709917148000,0],[1709917149000,0],[1709917150000,0],[1709917151000,0],[1709917152000,0],[1709917153000,0],[1709917154000,0],[1709917155000,0],[1709917156000,0],[1709917157000,0],[1709917158000,0],[1709917159000,0],[1709917160000,0],[1709917161000,0],[1709917162000,0],[1709917163000,0],[1709917164000,0],[1709917165000,0],[1709917166000,0],[1709917167000,0],[1709917168000,0],[1709917169000,0],[1709917170000,0],[1709917171000,0],[1709917172000,0],[1709917173000,0],[1709917174000,0],[1709917175000,0],[1709917176000,0],[1709917177000,0],[1709917178000,0],[1709917179000,0],[1709917180000,0],[1709917181000,0],[1709917182000,0],[1709917183000,0],[1709917184000,0],[1709917185000,0],[1709917186000,0],[1709917187000,0],[1709917188000,0],[1709917189000,0],[1709917190000,0],[1709917191000,0],[1709917192000,0],[1709917193000,0],[1709917194000,0],[1709917195000,0],[1709917196000,0],[1709917197000,0],[1709917198000,0],[1709917199000,0],[1709917200000,0],[1709917201000,0],[1709917202000,0],[1709917203000,0],[1709917204000,0],[1709917205000,0],[1709917206000,0],[1709917207000,0],[1709917208000,0],[1709917209000,0],[1709917210000,0],[1709917211000,0],[1709917212000,0],[1709917213000,0],[1709917214000,0],[1709917215000,0],[1709917216000,0],[1709917217000,0],[1709917218000,0],[1709917219000,0],[1709917220000,0],[1709917221000,0],[1709917222000,0],[1709917223000,0],[1709917224000,0],[1709917225000,0],[1709917226000,0],[1709917227000,0],[1709917228000,0],[1709917229000,0],[1709917230000,0],[1709917231000,0],[1709917232000,0],[1709917233000,0],[1709917234000,0],[1709917235000,0],[1709917236000,0],[1709917237000,0],[1709917238000,0],[1709917239000,0],[1709917240000,0],[1709917241000,0],[1709917242000,0],[1709917243000,0],[1709917244000,0],[1709917245000,0],[1709917246000,0],[1709917247000,0],[1709917248000,0],[1709917249000,0],[1709917250000,0],[1709917251000,0],[1709917252000,0],[1709917253000,0],[1709917254000,0],[1709917255000,0],[1709917256000,0],[1709917257000,0],[1709917258000,0],[1709917259000,0],[1709917260000,0],[1709917261000,0],[1709917262000,0],[1709917263000,0],[1709917264000,0],[1709917265000,0],[1709917266000,0],[1709917267000,0],[1709917268000,0],[1709917269000,0],[1709917270000,0],[1709917271000,0],[1709917272000,0],[1709917273000,0],[1709917274000,0],[1709917275000,0],[1709917276000,0],[1709917277000,0],[1709917278000,0],[1709917279000,0],[1709917280000,0],[1709917281000,0],[1709917282000,0],[1709917283000,0],[1709917284000,0],[1709917285000,0],[1709917286000,0],[1709917287000,0],[1709917288000,0],[1709917289000,0],[1709917290000,0],[1709917291000,0],[1709917292000,0],[1709917293000,0],[1709917294000,0],[1709917295000,0],[1709917296000,0],[1709917297000,0],[1709917298000,0],[1709917299000,0],[1709917300000,0],[1709917301000,0],[1709917302000,0],[1709917303000,0],[1709917304000,0],[1709917305000,0],[1709917306000,0],[1709917307000,0],[1709917308000,0],[1709917309000,0],[1709917310000,0],[1709917311000,0],[1709917312000,0],[1709917313000,0],[1709917314000,0],[1709917315000,0],[1709917316000,0],[1709917317000,0],[1709917318000,0],[1709917319000,0],[1709917320000,0],[1709917321000,0],[1709917322000,0],[1709917323000,0],[1709917324000,0],[1709917325000,0],[1709917326000,0],[1709917327000,0],[1709917328000,0],[1709917329000,0],[1709917330000,0],[1709917331000,0],[1709917332000,0],[1709917333000,0],[1709917334000,0],[1709917335000,0],[1709917336000,0],[1709917337000,0],[1709917338000,0],[1709917339000,0],[1709917340000,0],[1709917341000,0],[1709917342000,0],[1709917343000,0],[1709917344000,0],[1709917345000,0],[1709917346000,0],[1709917347000,0],[1709917348000,0],[1709917349000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00FF00',
name: 'validação concorrência saldo - 0',
data: [
[1709917105000,0],[1709917106000,0],[1709917107000,1],[1709917108000,0],[1709917109000,0],[1709917110000,0],[1709917111000,0],[1709917112000,0],[1709917113000,0],[1709917114000,0],[1709917115000,0],[1709917116000,0],[1709917117000,0],[1709917118000,0],[1709917119000,0],[1709917120000,0],[1709917121000,0],[1709917122000,0],[1709917123000,0],[1709917124000,0],[1709917125000,0],[1709917126000,0],[1709917127000,0],[1709917128000,0],[1709917129000,0],[1709917130000,0],[1709917131000,0],[1709917132000,0],[1709917133000,0],[1709917134000,0],[1709917135000,0],[1709917136000,0],[1709917137000,0],[1709917138000,0],[1709917139000,0],[1709917140000,0],[1709917141000,0],[1709917142000,0],[1709917143000,0],[1709917144000,0],[1709917145000,0],[1709917146000,0],[1709917147000,0],[1709917148000,0],[1709917149000,0],[1709917150000,0],[1709917151000,0],[1709917152000,0],[1709917153000,0],[1709917154000,0],[1709917155000,0],[1709917156000,0],[1709917157000,0],[1709917158000,0],[1709917159000,0],[1709917160000,0],[1709917161000,0],[1709917162000,0],[1709917163000,0],[1709917164000,0],[1709917165000,0],[1709917166000,0],[1709917167000,0],[1709917168000,0],[1709917169000,0],[1709917170000,0],[1709917171000,0],[1709917172000,0],[1709917173000,0],[1709917174000,0],[1709917175000,0],[1709917176000,0],[1709917177000,0],[1709917178000,0],[1709917179000,0],[1709917180000,0],[1709917181000,0],[1709917182000,0],[1709917183000,0],[1709917184000,0],[1709917185000,0],[1709917186000,0],[1709917187000,0],[1709917188000,0],[1709917189000,0],[1709917190000,0],[1709917191000,0],[1709917192000,0],[1709917193000,0],[1709917194000,0],[1709917195000,0],[1709917196000,0],[1709917197000,0],[1709917198000,0],[1709917199000,0],[1709917200000,0],[1709917201000,0],[1709917202000,0],[1709917203000,0],[1709917204000,0],[1709917205000,0],[1709917206000,0],[1709917207000,0],[1709917208000,0],[1709917209000,0],[1709917210000,0],[1709917211000,0],[1709917212000,0],[1709917213000,0],[1709917214000,0],[1709917215000,0],[1709917216000,0],[1709917217000,0],[1709917218000,0],[1709917219000,0],[1709917220000,0],[1709917221000,0],[1709917222000,0],[1709917223000,0],[1709917224000,0],[1709917225000,0],[1709917226000,0],[1709917227000,0],[1709917228000,0],[1709917229000,0],[1709917230000,0],[1709917231000,0],[1709917232000,0],[1709917233000,0],[1709917234000,0],[1709917235000,0],[1709917236000,0],[1709917237000,0],[1709917238000,0],[1709917239000,0],[1709917240000,0],[1709917241000,0],[1709917242000,0],[1709917243000,0],[1709917244000,0],[1709917245000,0],[1709917246000,0],[1709917247000,0],[1709917248000,0],[1709917249000,0],[1709917250000,0],[1709917251000,0],[1709917252000,0],[1709917253000,0],[1709917254000,0],[1709917255000,0],[1709917256000,0],[1709917257000,0],[1709917258000,0],[1709917259000,0],[1709917260000,0],[1709917261000,0],[1709917262000,0],[1709917263000,0],[1709917264000,0],[1709917265000,0],[1709917266000,0],[1709917267000,0],[1709917268000,0],[1709917269000,0],[1709917270000,0],[1709917271000,0],[1709917272000,0],[1709917273000,0],[1709917274000,0],[1709917275000,0],[1709917276000,0],[1709917277000,0],[1709917278000,0],[1709917279000,0],[1709917280000,0],[1709917281000,0],[1709917282000,0],[1709917283000,0],[1709917284000,0],[1709917285000,0],[1709917286000,0],[1709917287000,0],[1709917288000,0],[1709917289000,0],[1709917290000,0],[1709917291000,0],[1709917292000,0],[1709917293000,0],[1709917294000,0],[1709917295000,0],[1709917296000,0],[1709917297000,0],[1709917298000,0],[1709917299000,0],[1709917300000,0],[1709917301000,0],[1709917302000,0],[1709917303000,0],[1709917304000,0],[1709917305000,0],[1709917306000,0],[1709917307000,0],[1709917308000,0],[1709917309000,0],[1709917310000,0],[1709917311000,0],[1709917312000,0],[1709917313000,0],[1709917314000,0],[1709917315000,0],[1709917316000,0],[1709917317000,0],[1709917318000,0],[1709917319000,0],[1709917320000,0],[1709917321000,0],[1709917322000,0],[1709917323000,0],[1709917324000,0],[1709917325000,0],[1709917326000,0],[1709917327000,0],[1709917328000,0],[1709917329000,0],[1709917330000,0],[1709917331000,0],[1709917332000,0],[1709917333000,0],[1709917334000,0],[1709917335000,0],[1709917336000,0],[1709917337000,0],[1709917338000,0],[1709917339000,0],[1709917340000,0],[1709917341000,0],[1709917342000,0],[1709917343000,0],[1709917344000,0],[1709917345000,0],[1709917346000,0],[1709917347000,0],[1709917348000,0],[1709917349000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#9D00FF',
name: 'validação concorrência transações - c',
data: [
[1709917105000,0],[1709917106000,25],[1709917107000,24],[1709917108000,0],[1709917109000,0],[1709917110000,0],[1709917111000,0],[1709917112000,0],[1709917113000,0],[1709917114000,0],[1709917115000,0],[1709917116000,0],[1709917117000,0],[1709917118000,0],[1709917119000,0],[1709917120000,0],[1709917121000,0],[1709917122000,0],[1709917123000,0],[1709917124000,0],[1709917125000,0],[1709917126000,0],[1709917127000,0],[1709917128000,0],[1709917129000,0],[1709917130000,0],[1709917131000,0],[1709917132000,0],[1709917133000,0],[1709917134000,0],[1709917135000,0],[1709917136000,0],[1709917137000,0],[1709917138000,0],[1709917139000,0],[1709917140000,0],[1709917141000,0],[1709917142000,0],[1709917143000,0],[1709917144000,0],[1709917145000,0],[1709917146000,0],[1709917147000,0],[1709917148000,0],[1709917149000,0],[1709917150000,0],[1709917151000,0],[1709917152000,0],[1709917153000,0],[1709917154000,0],[1709917155000,0],[1709917156000,0],[1709917157000,0],[1709917158000,0],[1709917159000,0],[1709917160000,0],[1709917161000,0],[1709917162000,0],[1709917163000,0],[1709917164000,0],[1709917165000,0],[1709917166000,0],[1709917167000,0],[1709917168000,0],[1709917169000,0],[1709917170000,0],[1709917171000,0],[1709917172000,0],[1709917173000,0],[1709917174000,0],[1709917175000,0],[1709917176000,0],[1709917177000,0],[1709917178000,0],[1709917179000,0],[1709917180000,0],[1709917181000,0],[1709917182000,0],[1709917183000,0],[1709917184000,0],[1709917185000,0],[1709917186000,0],[1709917187000,0],[1709917188000,0],[1709917189000,0],[1709917190000,0],[1709917191000,0],[1709917192000,0],[1709917193000,0],[1709917194000,0],[1709917195000,0],[1709917196000,0],[1709917197000,0],[1709917198000,0],[1709917199000,0],[1709917200000,0],[1709917201000,0],[1709917202000,0],[1709917203000,0],[1709917204000,0],[1709917205000,0],[1709917206000,0],[1709917207000,0],[1709917208000,0],[1709917209000,0],[1709917210000,0],[1709917211000,0],[1709917212000,0],[1709917213000,0],[1709917214000,0],[1709917215000,0],[1709917216000,0],[1709917217000,0],[1709917218000,0],[1709917219000,0],[1709917220000,0],[1709917221000,0],[1709917222000,0],[1709917223000,0],[1709917224000,0],[1709917225000,0],[1709917226000,0],[1709917227000,0],[1709917228000,0],[1709917229000,0],[1709917230000,0],[1709917231000,0],[1709917232000,0],[1709917233000,0],[1709917234000,0],[1709917235000,0],[1709917236000,0],[1709917237000,0],[1709917238000,0],[1709917239000,0],[1709917240000,0],[1709917241000,0],[1709917242000,0],[1709917243000,0],[1709917244000,0],[1709917245000,0],[1709917246000,0],[1709917247000,0],[1709917248000,0],[1709917249000,0],[1709917250000,0],[1709917251000,0],[1709917252000,0],[1709917253000,0],[1709917254000,0],[1709917255000,0],[1709917256000,0],[1709917257000,0],[1709917258000,0],[1709917259000,0],[1709917260000,0],[1709917261000,0],[1709917262000,0],[1709917263000,0],[1709917264000,0],[1709917265000,0],[1709917266000,0],[1709917267000,0],[1709917268000,0],[1709917269000,0],[1709917270000,0],[1709917271000,0],[1709917272000,0],[1709917273000,0],[1709917274000,0],[1709917275000,0],[1709917276000,0],[1709917277000,0],[1709917278000,0],[1709917279000,0],[1709917280000,0],[1709917281000,0],[1709917282000,0],[1709917283000,0],[1709917284000,0],[1709917285000,0],[1709917286000,0],[1709917287000,0],[1709917288000,0],[1709917289000,0],[1709917290000,0],[1709917291000,0],[1709917292000,0],[1709917293000,0],[1709917294000,0],[1709917295000,0],[1709917296000,0],[1709917297000,0],[1709917298000,0],[1709917299000,0],[1709917300000,0],[1709917301000,0],[1709917302000,0],[1709917303000,0],[1709917304000,0],[1709917305000,0],[1709917306000,0],[1709917307000,0],[1709917308000,0],[1709917309000,0],[1709917310000,0],[1709917311000,0],[1709917312000,0],[1709917313000,0],[1709917314000,0],[1709917315000,0],[1709917316000,0],[1709917317000,0],[1709917318000,0],[1709917319000,0],[1709917320000,0],[1709917321000,0],[1709917322000,0],[1709917323000,0],[1709917324000,0],[1709917325000,0],[1709917326000,0],[1709917327000,0],[1709917328000,0],[1709917329000,0],[1709917330000,0],[1709917331000,0],[1709917332000,0],[1709917333000,0],[1709917334000,0],[1709917335000,0],[1709917336000,0],[1709917337000,0],[1709917338000,0],[1709917339000,0],[1709917340000,0],[1709917341000,0],[1709917342000,0],[1709917343000,0],[1709917344000,0],[1709917345000,0],[1709917346000,0],[1709917347000,0],[1709917348000,0],[1709917349000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FF00E1',
name: 'validação concorrência saldo - -25',
data: [
[1709917105000,1],[1709917106000,1],[1709917107000,0],[1709917108000,0],[1709917109000,0],[1709917110000,0],[1709917111000,0],[1709917112000,0],[1709917113000,0],[1709917114000,0],[1709917115000,0],[1709917116000,0],[1709917117000,0],[1709917118000,0],[1709917119000,0],[1709917120000,0],[1709917121000,0],[1709917122000,0],[1709917123000,0],[1709917124000,0],[1709917125000,0],[1709917126000,0],[1709917127000,0],[1709917128000,0],[1709917129000,0],[1709917130000,0],[1709917131000,0],[1709917132000,0],[1709917133000,0],[1709917134000,0],[1709917135000,0],[1709917136000,0],[1709917137000,0],[1709917138000,0],[1709917139000,0],[1709917140000,0],[1709917141000,0],[1709917142000,0],[1709917143000,0],[1709917144000,0],[1709917145000,0],[1709917146000,0],[1709917147000,0],[1709917148000,0],[1709917149000,0],[1709917150000,0],[1709917151000,0],[1709917152000,0],[1709917153000,0],[1709917154000,0],[1709917155000,0],[1709917156000,0],[1709917157000,0],[1709917158000,0],[1709917159000,0],[1709917160000,0],[1709917161000,0],[1709917162000,0],[1709917163000,0],[1709917164000,0],[1709917165000,0],[1709917166000,0],[1709917167000,0],[1709917168000,0],[1709917169000,0],[1709917170000,0],[1709917171000,0],[1709917172000,0],[1709917173000,0],[1709917174000,0],[1709917175000,0],[1709917176000,0],[1709917177000,0],[1709917178000,0],[1709917179000,0],[1709917180000,0],[1709917181000,0],[1709917182000,0],[1709917183000,0],[1709917184000,0],[1709917185000,0],[1709917186000,0],[1709917187000,0],[1709917188000,0],[1709917189000,0],[1709917190000,0],[1709917191000,0],[1709917192000,0],[1709917193000,0],[1709917194000,0],[1709917195000,0],[1709917196000,0],[1709917197000,0],[1709917198000,0],[1709917199000,0],[1709917200000,0],[1709917201000,0],[1709917202000,0],[1709917203000,0],[1709917204000,0],[1709917205000,0],[1709917206000,0],[1709917207000,0],[1709917208000,0],[1709917209000,0],[1709917210000,0],[1709917211000,0],[1709917212000,0],[1709917213000,0],[1709917214000,0],[1709917215000,0],[1709917216000,0],[1709917217000,0],[1709917218000,0],[1709917219000,0],[1709917220000,0],[1709917221000,0],[1709917222000,0],[1709917223000,0],[1709917224000,0],[1709917225000,0],[1709917226000,0],[1709917227000,0],[1709917228000,0],[1709917229000,0],[1709917230000,0],[1709917231000,0],[1709917232000,0],[1709917233000,0],[1709917234000,0],[1709917235000,0],[1709917236000,0],[1709917237000,0],[1709917238000,0],[1709917239000,0],[1709917240000,0],[1709917241000,0],[1709917242000,0],[1709917243000,0],[1709917244000,0],[1709917245000,0],[1709917246000,0],[1709917247000,0],[1709917248000,0],[1709917249000,0],[1709917250000,0],[1709917251000,0],[1709917252000,0],[1709917253000,0],[1709917254000,0],[1709917255000,0],[1709917256000,0],[1709917257000,0],[1709917258000,0],[1709917259000,0],[1709917260000,0],[1709917261000,0],[1709917262000,0],[1709917263000,0],[1709917264000,0],[1709917265000,0],[1709917266000,0],[1709917267000,0],[1709917268000,0],[1709917269000,0],[1709917270000,0],[1709917271000,0],[1709917272000,0],[1709917273000,0],[1709917274000,0],[1709917275000,0],[1709917276000,0],[1709917277000,0],[1709917278000,0],[1709917279000,0],[1709917280000,0],[1709917281000,0],[1709917282000,0],[1709917283000,0],[1709917284000,0],[1709917285000,0],[1709917286000,0],[1709917287000,0],[1709917288000,0],[1709917289000,0],[1709917290000,0],[1709917291000,0],[1709917292000,0],[1709917293000,0],[1709917294000,0],[1709917295000,0],[1709917296000,0],[1709917297000,0],[1709917298000,0],[1709917299000,0],[1709917300000,0],[1709917301000,0],[1709917302000,0],[1709917303000,0],[1709917304000,0],[1709917305000,0],[1709917306000,0],[1709917307000,0],[1709917308000,0],[1709917309000,0],[1709917310000,0],[1709917311000,0],[1709917312000,0],[1709917313000,0],[1709917314000,0],[1709917315000,0],[1709917316000,0],[1709917317000,0],[1709917318000,0],[1709917319000,0],[1709917320000,0],[1709917321000,0],[1709917322000,0],[1709917323000,0],[1709917324000,0],[1709917325000,0],[1709917326000,0],[1709917327000,0],[1709917328000,0],[1709917329000,0],[1709917330000,0],[1709917331000,0],[1709917332000,0],[1709917333000,0],[1709917334000,0],[1709917335000,0],[1709917336000,0],[1709917337000,0],[1709917338000,0],[1709917339000,0],[1709917340000,0],[1709917341000,0],[1709917342000,0],[1709917343000,0],[1709917344000,0],[1709917345000,0],[1709917346000,0],[1709917347000,0],[1709917348000,0],[1709917349000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#AECAEB',
name: 'validação concorrência transações - d',
data: [
[1709917105000,25],[1709917106000,0],[1709917107000,0],[1709917108000,0],[1709917109000,0],[1709917110000,0],[1709917111000,0],[1709917112000,0],[1709917113000,0],[1709917114000,0],[1709917115000,0],[1709917116000,0],[1709917117000,0],[1709917118000,0],[1709917119000,0],[1709917120000,0],[1709917121000,0],[1709917122000,0],[1709917123000,0],[1709917124000,0],[1709917125000,0],[1709917126000,0],[1709917127000,0],[1709917128000,0],[1709917129000,0],[1709917130000,0],[1709917131000,0],[1709917132000,0],[1709917133000,0],[1709917134000,0],[1709917135000,0],[1709917136000,0],[1709917137000,0],[1709917138000,0],[1709917139000,0],[1709917140000,0],[1709917141000,0],[1709917142000,0],[1709917143000,0],[1709917144000,0],[1709917145000,0],[1709917146000,0],[1709917147000,0],[1709917148000,0],[1709917149000,0],[1709917150000,0],[1709917151000,0],[1709917152000,0],[1709917153000,0],[1709917154000,0],[1709917155000,0],[1709917156000,0],[1709917157000,0],[1709917158000,0],[1709917159000,0],[1709917160000,0],[1709917161000,0],[1709917162000,0],[1709917163000,0],[1709917164000,0],[1709917165000,0],[1709917166000,0],[1709917167000,0],[1709917168000,0],[1709917169000,0],[1709917170000,0],[1709917171000,0],[1709917172000,0],[1709917173000,0],[1709917174000,0],[1709917175000,0],[1709917176000,0],[1709917177000,0],[1709917178000,0],[1709917179000,0],[1709917180000,0],[1709917181000,0],[1709917182000,0],[1709917183000,0],[1709917184000,0],[1709917185000,0],[1709917186000,0],[1709917187000,0],[1709917188000,0],[1709917189000,0],[1709917190000,0],[1709917191000,0],[1709917192000,0],[1709917193000,0],[1709917194000,0],[1709917195000,0],[1709917196000,0],[1709917197000,0],[1709917198000,0],[1709917199000,0],[1709917200000,0],[1709917201000,0],[1709917202000,0],[1709917203000,0],[1709917204000,0],[1709917205000,0],[1709917206000,0],[1709917207000,0],[1709917208000,0],[1709917209000,0],[1709917210000,0],[1709917211000,0],[1709917212000,0],[1709917213000,0],[1709917214000,0],[1709917215000,0],[1709917216000,0],[1709917217000,0],[1709917218000,0],[1709917219000,0],[1709917220000,0],[1709917221000,0],[1709917222000,0],[1709917223000,0],[1709917224000,0],[1709917225000,0],[1709917226000,0],[1709917227000,0],[1709917228000,0],[1709917229000,0],[1709917230000,0],[1709917231000,0],[1709917232000,0],[1709917233000,0],[1709917234000,0],[1709917235000,0],[1709917236000,0],[1709917237000,0],[1709917238000,0],[1709917239000,0],[1709917240000,0],[1709917241000,0],[1709917242000,0],[1709917243000,0],[1709917244000,0],[1709917245000,0],[1709917246000,0],[1709917247000,0],[1709917248000,0],[1709917249000,0],[1709917250000,0],[1709917251000,0],[1709917252000,0],[1709917253000,0],[1709917254000,0],[1709917255000,0],[1709917256000,0],[1709917257000,0],[1709917258000,0],[1709917259000,0],[1709917260000,0],[1709917261000,0],[1709917262000,0],[1709917263000,0],[1709917264000,0],[1709917265000,0],[1709917266000,0],[1709917267000,0],[1709917268000,0],[1709917269000,0],[1709917270000,0],[1709917271000,0],[1709917272000,0],[1709917273000,0],[1709917274000,0],[1709917275000,0],[1709917276000,0],[1709917277000,0],[1709917278000,0],[1709917279000,0],[1709917280000,0],[1709917281000,0],[1709917282000,0],[1709917283000,0],[1709917284000,0],[1709917285000,0],[1709917286000,0],[1709917287000,0],[1709917288000,0],[1709917289000,0],[1709917290000,0],[1709917291000,0],[1709917292000,0],[1709917293000,0],[1709917294000,0],[1709917295000,0],[1709917296000,0],[1709917297000,0],[1709917298000,0],[1709917299000,0],[1709917300000,0],[1709917301000,0],[1709917302000,0],[1709917303000,0],[1709917304000,0],[1709917305000,0],[1709917306000,0],[1709917307000,0],[1709917308000,0],[1709917309000,0],[1709917310000,0],[1709917311000,0],[1709917312000,0],[1709917313000,0],[1709917314000,0],[1709917315000,0],[1709917316000,0],[1709917317000,0],[1709917318000,0],[1709917319000,0],[1709917320000,0],[1709917321000,0],[1709917322000,0],[1709917323000,0],[1709917324000,0],[1709917325000,0],[1709917326000,0],[1709917327000,0],[1709917328000,0],[1709917329000,0],[1709917330000,0],[1709917331000,0],[1709917332000,0],[1709917333000,0],[1709917334000,0],[1709917335000,0],[1709917336000,0],[1709917337000,0],[1709917338000,0],[1709917339000,0],[1709917340000,0],[1709917341000,0],[1709917342000,0],[1709917343000,0],[1709917344000,0],[1709917345000,0],[1709917346000,0],[1709917347000,0],[1709917348000,0],[1709917349000,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: ['11', '32', '54', '75', '97', '118', '139', '161', '182', '204', '225', '247', '268', '290', '311', '333', '354', '376', '397', '418', '440', '461', '483', '504', '526', '547', '569', '590', '612', '633', '655', '676', '697', '719', '740', '762', '783', '805', '826', '848', '869', '891', '912', '934', '955', '976', '998', '1019', '1041', '1062', '1084', '1105', '1127', '1148', '1170', '1191', '1212', '1234', '1255', '1277', '1298', '1320', '1341', '1363', '1384', '1406', '1427', '1449', '1470', '1491', '1513', '1534', '1556', '1577', '1599', '1620', '1642', '1663', '1685', '1706', '1728', '1749', '1770', '1792', '1813', '1835', '1856', '1878', '1899', '1921', '1942', '1964', '1985', '2007', '2028', '2049', '2071', '2092', '2114', '2135'],
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: [
95.37,2.15,0.3,0.25,0.15,0.1,0.07,0.08,0.08,0.06,0.07,0.07,0.04,0.04,0.06,0.03,0.06,0.06,0.05,0.04,0.04,0.02,0.03,0.04,0.05,0.04,0.03,0.02,0.03,0.03,0.03,0.01,0.02,0.02,0.02,0.02,0.01,0.01,0.03,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
],
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([[1709917105,[26,64,105,133,136,158,197,204,216,220]],[1709917106,[5,5,5,5,5,5,5,5,5,5]],[1709917107,[10,19,25,29,31,34,35,35,37,38]],[1709917108,[4,4,4,4,4,4,4,4,4,4]],[1709917109,[1,5,7,16,19,20,23,26,31,33]],[1709917110,[6,6,6,6,6,6,6,6,6,7]],[1709917111,[3,6,8,8,8,8,8,8,8,9]],[1709917112,[5,5,6,8,8,9,10,10,10,11]],[1709917113,[4,5,5,5,6,6,7,7,7,8]],[1709917114,[4,4,5,5,5,6,6,6,6,7]],[1709917115,[4,5,5,5,6,6,8,8,8,8]],[1709917116,[4,4,5,5,6,6,6,7,7,7]],[1709917117,[4,4,4,5,5,5,6,6,7,8]],[1709917118,[3,4,5,5,6,6,6,6,7,7]],[1709917119,[4,4,4,6,6,6,6,6,7,8]],[1709917120,[4,4,5,5,6,6,6,7,7,8]],[1709917121,[4,4,4,6,6,6,6,6,7,7]],[1709917122,[3,4,4,5,5,6,6,6,7,7]],[1709917123,[3,4,5,5,6,6,6,7,7,7]],[1709917124,[2,4,5,5,5,5,6,6,7,7]],[1709917125,[3,4,4,5,5,6,6,6,7,7]],[1709917126,[1,4,4,5,5,5,5,6,6,6]],[1709917127,[1,4,4,4,5,5,5,6,7,8]],[1709917128,[2,3,4,4,4,4,4,5,5,5]],[1709917129,[2,3,4,4,4,4,5,5,6,6]],[1709917130,[3,3,4,4,4,5,5,5,5,6]],[1709917131,[2,3,4,4,4,5,5,5,6,7]],[1709917132,[2,3,4,5,5,5,5,5,6,6]],[1709917133,[2,3,4,4,4,5,5,5,6,6]],[1709917134,[2,4,4,5,5,5,5,5,6,6]],[1709917135,[1,3,3,4,4,4,5,5,6,7]],[1709917136,[1,3,3,4,4,4,5,5,6,7]],[1709917137,[1,3,4,4,5,5,5,5,6,7]],[1709917138,[1,3,4,4,4,4,5,5,7,7]],[1709917139,[1,3,3,4,4,4,4,5,6,7]],[1709917140,[1,3,3,4,4,4,5,5,6,7]],[1709917141,[1,3,4,4,4,4,4,5,5,7]],[1709917142,[1,3,4,4,5,5,5,6,7,7]],[1709917143,[1,2,4,4,5,5,5,6,7,8]],[1709917144,[1,3,4,4,5,5,6,6,7,7]],[1709917145,[0,2,4,4,5,5,5,6,7,8]],[1709917146,[1,2,3,4,4,5,5,5,5,7]],[1709917147,[1,2,3,4,4,4,5,5,6,7]],[1709917148,[0,2,3,4,4,4,5,5,6,8]],[1709917149,[0,2,3,4,4,5,5,5,6,7]],[1709917150,[1,2,3,4,4,4,5,5,6,6]],[1709917151,[0,2,3,4,4,4,4,5,6,6]],[1709917152,[1,2,3,4,4,5,5,6,6,7]],[1709917153,[1,3,4,4,4,4,5,5,7,10]],[1709917154,[0,2,3,4,4,5,5,6,6,7]],[1709917155,[1,3,3,4,4,5,5,5,6,7]],[1709917156,[1,3,3,4,4,5,5,5,6,8]],[1709917157,[1,3,4,4,4,5,5,5,6,7]],[1709917158,[0,2,3,4,4,4,4,5,5,5]],[1709917159,[0,2,3,4,4,4,4,5,6,6]],[1709917160,[0,2,3,3,4,4,4,4,5,7]],[1709917161,[0,2,3,3,3,4,4,4,5,5]],[1709917162,[1,2,3,3,4,4,4,5,6,7]],[1709917163,[1,2,3,4,4,4,4,5,6,7]],[1709917164,[0,2,3,3,4,4,4,4,6,8]],[1709917165,[0,2,3,3,3,4,4,4,6,7]],[1709917166,[0,1,3,3,3,4,4,4,5,7]],[1709917167,[0,1,3,4,4,4,4,5,7,8]],[1709917168,[1,2,3,4,4,4,4,5,8,11]],[1709917169,[0,1,3,3,3,4,4,4,5,5]],[1709917170,[1,2,3,3,4,4,4,4,6,7]],[1709917171,[1,2,3,4,4,4,5,6,10,22]],[1709917172,[1,2,3,4,4,4,5,5,6,6]],[1709917173,[0,1,3,3,4,4,4,5,6,9]],[1709917174,[1,1,3,3,3,4,4,4,5,9]],[1709917175,[1,1,3,3,4,4,4,5,8,21]],[1709917176,[1,1,3,3,3,4,4,4,5,5]],[1709917177,[0,1,3,4,4,4,4,5,6,7]],[1709917178,[0,1,3,3,3,4,4,4,5,8]],[1709917179,[0,1,3,3,4,4,4,4,5,13]],[1709917180,[0,1,2,3,3,3,4,4,5,6]],[1709917181,[0,1,3,3,3,4,4,4,5,16]],[1709917182,[0,1,3,4,4,4,4,5,6,11]],[1709917183,[0,1,2,3,3,3,3,4,5,8]],[1709917184,[0,1,3,3,3,4,4,4,5,11]],[1709917185,[0,1,2,3,4,4,4,4,5,13]],[1709917186,[0,1,2,3,3,3,4,4,5,5]],[1709917187,[0,1,2,3,3,3,4,4,5,5]],[1709917188,[0,1,2,3,3,3,4,4,5,6]],[1709917189,[0,1,2,3,3,4,4,4,5,5]],[1709917190,[0,1,2,3,3,3,3,4,4,4]],[1709917191,[0,1,2,3,3,3,4,4,5,6]],[1709917192,[1,1,2,3,4,4,4,4,7,9]],[1709917193,[0,1,2,3,3,3,4,4,5,15]],[1709917194,[0,1,2,3,3,3,4,4,5,9]],[1709917195,[0,1,2,3,3,4,4,4,4,5]],[1709917196,[0,1,2,3,3,3,4,4,4,6]],[1709917197,[0,1,2,3,3,3,4,4,5,10]],[1709917198,[0,1,2,3,4,4,4,4,5,6]],[1709917199,[0,1,2,3,3,3,4,4,5,6]],[1709917200,[0,1,2,3,3,3,4,4,5,5]],[1709917201,[0,1,2,3,3,4,4,4,10,17]],[1709917202,[0,1,2,3,3,4,4,5,11,18]],[1709917203,[0,1,2,3,3,3,4,5,13,18]],[1709917204,[0,1,2,3,3,3,4,4,12,20]],[1709917205,[1,1,2,3,3,3,4,4,5,10]],[1709917206,[1,1,2,3,3,3,4,4,5,12]],[1709917207,[0,1,2,3,3,4,4,6,17,23]],[1709917208,[0,0,1,3,3,3,3,4,9,16]],[1709917209,[0,1,2,3,4,4,4,8,22,28]],[1709917210,[0,0,2,3,3,4,4,6,17,29]],[1709917211,[0,0,1,3,3,3,4,4,13,18]],[1709917212,[0,1,2,3,3,4,4,15,32,45]],[1709917213,[0,1,2,3,3,3,4,4,7,13]],[1709917214,[0,1,2,3,3,4,4,5,11,19]],[1709917215,[0,1,2,3,4,4,4,4,6,9]],[1709917216,[0,1,1,3,3,3,4,4,8,11]],[1709917217,[0,1,2,3,3,3,4,4,8,13]],[1709917218,[0,1,2,3,3,3,4,5,13,17]],[1709917219,[0,0,1,3,3,4,4,8,13,20]],[1709917220,[0,1,2,3,4,4,4,5,17,22]],[1709917221,[0,1,2,3,4,4,5,6,16,23]],[1709917222,[0,1,1,3,3,3,4,4,5,8]],[1709917223,[0,1,1,3,3,3,4,5,13,27]],[1709917224,[0,1,1,3,3,3,4,9,17,21]],[1709917225,[0,1,2,3,3,4,5,11,20,30]],[1709917226,[0,1,2,4,4,4,6,13,22,35]],[1709917227,[0,1,2,3,3,4,4,4,15,27]],[1709917228,[0,0,1,3,3,3,3,4,10,19]],[1709917229,[0,1,1,3,3,3,4,5,16,29]],[1709917230,[0,1,1,3,3,3,4,4,8,12]],[1709917231,[0,1,2,3,4,4,5,9,37,45]],[1709917232,[0,1,2,2,4,4,5,10,25,33]],[1709917233,[0,1,2,4,4,5,5,9,18,28]],[1709917234,[0,1,2,3,3,4,4,7,24,34]],[1709917235,[0,0,1,3,3,3,4,6,15,30]],[1709917236,[0,1,1,3,3,4,4,8,18,25]],[1709917237,[0,1,2,3,3,4,5,11,18,21]],[1709917238,[1,1,2,3,3,4,5,8,17,24]],[1709917239,[1,1,2,3,4,4,4,8,18,26]],[1709917240,[1,1,2,3,3,4,4,5,13,25]],[1709917241,[1,1,2,3,3,4,4,5,9,18]],[1709917242,[1,1,2,3,4,4,5,8,20,28]],[1709917243,[0,1,2,3,3,4,4,5,8,15]],[1709917244,[0,0,1,3,3,4,4,6,18,26]],[1709917245,[0,1,2,3,3,4,5,10,19,30]],[1709917246,[0,1,2,3,3,4,4,8,30,37]],[1709917247,[0,1,1,3,3,4,5,9,20,27]],[1709917248,[0,1,2,3,3,4,5,9,21,27]],[1709917249,[1,3,41,85,111,162,227,444,690,943]],[1709917250,[1,47,81,152,178,208,279,508,828,921]],[1709917251,[0,1,2,4,6,11,15,21,33,40]],[1709917252,[0,0,2,5,10,15,20,28,35,43]],[1709917253,[0,1,2,4,6,11,17,24,35,39]],[1709917254,[0,1,2,5,6,10,16,22,36,40]],[1709917255,[0,1,2,5,7,11,19,29,37,41]],[1709917256,[0,1,1,3,4,5,7,12,20,28]],[1709917257,[0,1,2,5,6,11,19,27,37,42]],[1709917258,[0,1,3,11,15,20,26,39,69,81]],[1709917259,[0,1,3,13,18,24,34,46,77,89]],[1709917260,[0,1,2,4,6,10,15,21,30,36]],[1709917261,[0,1,2,4,6,9,13,19,32,41]],[1709917262,[0,1,2,4,5,7,14,22,32,37]],[1709917263,[0,1,2,3,4,7,11,22,37,44]],[1709917264,[0,1,2,3,4,5,11,18,25,34]],[1709917265,[0,1,2,4,5,6,10,17,32,38]],[1709917266,[1,1,2,4,5,6,11,18,32,36]],[1709917267,[1,1,2,4,4,5,6,10,18,25]],[1709917268,[0,1,2,3,4,5,10,15,20,23]],[1709917269,[0,1,2,4,5,7,12,18,24,30]],[1709917270,[0,1,2,4,5,7,13,21,35,41]],[1709917271,[0,1,2,4,6,8,14,23,33,38]],[1709917272,[0,1,2,4,5,8,12,20,30,38]],[1709917273,[0,1,2,3,4,5,8,14,21,34]],[1709917274,[0,1,2,4,6,11,16,23,34,43]],[1709917275,[1,1,2,3,4,5,8,16,31,36]],[1709917276,[0,1,2,3,4,5,7,10,22,34]],[1709917277,[0,1,2,4,5,7,12,19,27,41]],[1709917278,[0,1,2,4,4,5,10,16,24,35]],[1709917279,[0,1,2,4,4,5,9,15,26,34]],[1709917280,[0,1,2,3,5,8,12,19,33,37]],[1709917281,[0,1,2,2,4,4,7,12,24,38]],[1709917282,[0,1,2,4,6,10,16,24,37,42]],[1709917283,[0,1,2,3,3,4,5,8,18,25]],[1709917284,[0,1,2,4,4,4,5,10,20,24]],[1709917285,[0,1,2,3,3,4,4,5,11,21]],[1709917286,[0,0,1,3,3,3,4,6,15,21]],[1709917287,[0,0,1,3,3,4,4,8,14,20]],[1709917288,[0,1,2,4,4,5,6,11,19,26]],[1709917289,[0,1,2,3,3,4,4,8,14,25]],[1709917290,[0,1,2,3,3,4,5,7,16,20]],[1709917291,[0,1,2,3,4,5,7,15,25,29]],[1709917292,[0,1,2,4,4,5,7,13,21,22]],[1709917293,[0,1,2,3,3,4,5,8,16,21]],[1709917294,[0,1,2,3,3,4,4,6,12,27]],[1709917295,[0,0,1,3,3,4,4,5,12,21]],[1709917296,[0,1,2,3,3,4,5,9,22,39]],[1709917297,[0,1,2,3,4,4,5,9,18,23]],[1709917298,[0,1,2,3,3,4,4,8,16,21]],[1709917299,[0,1,2,3,3,4,5,8,20,27]],[1709917300,[0,1,2,3,3,3,4,6,9,23]],[1709917301,[0,1,1,3,3,3,3,5,8,18]],[1709917302,[0,1,2,3,4,4,5,7,20,28]],[1709917303,[0,1,2,3,3,4,4,5,10,18]],[1709917304,[0,1,2,3,3,3,4,6,13,20]],[1709917305,[0,1,2,3,3,4,4,5,11,26]],[1709917306,[0,1,1,3,3,3,5,8,19,29]],[1709917307,[0,1,2,3,4,4,5,8,16,21]],[1709917308,[0,1,2,3,3,4,4,5,11,17]],[1709917309,[1,1,2,3,3,4,5,8,17,35]],[1709917310,[1,1,2,3,3,4,4,5,8,13]],[1709917311,[0,1,2,3,3,4,4,5,8,13]],[1709917312,[1,1,2,3,3,4,4,7,12,17]],[1709917313,[1,1,2,3,3,4,4,7,10,18]],[1709917314,[0,1,2,3,3,4,4,5,7,9]],[1709917315,[0,0,1,3,4,4,4,6,15,27]],[1709917316,[0,0,1,3,3,4,4,8,15,22]],[1709917317,[0,1,1,3,3,4,4,8,15,22]],[1709917318,[0,1,2,3,3,4,6,9,17,21]],[1709917319,[1,50,113,436,644,1039,1244,1636,1934,2146]],[1709917320,[63,326,527,699,725,763,809,847,918,954]],[1709917321,[54,266,391,513,552,582,630,728,804,829]],[1709917322,[0,2,4,32,38,55,95,135,201,222]],[1709917323,[0,1,3,7,12,17,24,31,39,43]],[1709917324,[0,1,2,5,6,10,16,22,34,40]],[1709917325,[0,1,2,6,10,16,22,30,36,44]],[1709917326,[0,1,2,5,6,10,16,22,36,41]],[1709917327,[0,1,2,5,7,11,18,24,35,39]],[1709917328,[0,1,2,5,8,12,16,25,35,42]],[1709917329,[0,1,2,5,8,13,19,28,38,40]],[1709917330,[0,1,2,4,6,10,15,22,29,36]],[1709917331,[0,1,2,6,7,11,16,23,38,49]],[1709917332,[0,1,2,5,8,12,19,26,36,42]],[1709917333,[0,1,3,7,13,19,26,34,43,44]],[1709917334,[0,1,2,5,6,11,15,20,29,35]],[1709917335,[0,1,3,10,15,20,27,33,36,41]],[1709917336,[0,1,2,4,6,7,12,20,25,42]],[1709917337,[0,1,2,4,5,6,11,19,30,36]],[1709917338,[0,1,2,5,7,10,15,23,33,40]],[1709917339,[0,1,2,5,7,10,18,24,36,42]],[1709917340,[0,1,2,4,5,6,11,18,28,29]],[1709917341,[0,1,2,4,5,7,11,18,25,42]],[1709917342,[0,1,2,4,6,10,16,24,36,43]],[1709917343,[0,1,2,4,5,8,11,18,32,37]],[1709917344,[0,1,2,5,10,15,20,29,36,41]],[1709917345,[0,1,2,5,7,11,16,23,34,36]],[1709917346,[0,1,2,5,7,11,17,23,35,40]],[1709917347,[0,1,2,3,4,5,9,17,28,38]],[1709917348,[1,1,2,5,7,11,17,23,36,43]],[1709917349,[0,1,2,4,5,6,10,17,29,44]]]);
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([[1709917105,[25,25,0]],[1709917106,[1,1,0]],[1709917107,[25,25,0]],[1709917108,[1,1,0]],[1709917109,[71,71,0]],[1709917110,[3,3,0]],[1709917111,[6,6,0]],[1709917112,[9,9,0]],[1709917113,[11,11,0]],[1709917114,[13,13,0]],[1709917115,[18,18,0]],[1709917116,[19,19,0]],[1709917117,[24,24,0]],[1709917118,[26,26,0]],[1709917119,[27,27,0]],[1709917120,[32,32,0]],[1709917121,[34,34,0]],[1709917122,[37,37,0]],[1709917123,[39,39,0]],[1709917124,[43,43,0]],[1709917125,[44,44,0]],[1709917126,[48,48,0]],[1709917127,[50,50,0]],[1709917128,[54,54,0]],[1709917129,[56,56,0]],[1709917130,[61,61,0]],[1709917131,[61,61,0]],[1709917132,[65,65,0]],[1709917133,[67,67,0]],[1709917134,[70,70,0]],[1709917135,[74,74,0]],[1709917136,[76,76,0]],[1709917137,[80,80,0]],[1709917138,[81,81,0]],[1709917139,[84,84,0]],[1709917140,[87,87,0]],[1709917141,[91,91,0]],[1709917142,[92,92,0]],[1709917143,[96,96,0]],[1709917144,[98,98,0]],[1709917145,[101,101,0]],[1709917146,[105,105,0]],[1709917147,[107,107,0]],[1709917148,[110,110,0]],[1709917149,[112,112,0]],[1709917150,[116,116,0]],[1709917151,[119,119,0]],[1709917152,[120,120,0]],[1709917153,[123,123,0]],[1709917154,[128,128,0]],[1709917155,[129,129,0]],[1709917156,[133,133,0]],[1709917157,[134,134,0]],[1709917158,[138,138,0]],[1709917159,[141,141,0]],[1709917160,[143,143,0]],[1709917161,[146,146,0]],[1709917162,[149,149,0]],[1709917163,[152,152,0]],[1709917164,[154,154,0]],[1709917165,[158,158,0]],[1709917166,[160,160,0]],[1709917167,[164,164,0]],[1709917168,[165,165,0]],[1709917169,[170,170,0]],[1709917170,[171,171,0]],[1709917171,[174,174,0]],[1709917172,[176,176,0]],[1709917173,[182,182,0]],[1709917174,[183,183,0]],[1709917175,[185,185,0]],[1709917176,[189,189,0]],[1709917177,[191,191,0]],[1709917178,[194,194,0]],[1709917179,[196,196,0]],[1709917180,[200,200,0]],[1709917181,[202,202,0]],[1709917182,[206,206,0]],[1709917183,[207,207,0]],[1709917184,[211,211,0]],[1709917185,[213,213,0]],[1709917186,[217,217,0]],[1709917187,[219,219,0]],[1709917188,[222,222,0]],[1709917189,[226,226,0]],[1709917190,[227,227,0]],[1709917191,[230,230,0]],[1709917192,[233,233,0]],[1709917193,[237,237,0]],[1709917194,[238,238,0]],[1709917195,[243,243,0]],[1709917196,[244,244,0]],[1709917197,[248,248,0]],[1709917198,[251,251,0]],[1709917199,[252,252,0]],[1709917200,[256,256,0]],[1709917201,[259,259,0]],[1709917202,[262,262,0]],[1709917203,[264,264,0]],[1709917204,[267,267,0]],[1709917205,[269,269,0]],[1709917206,[272,272,0]],[1709917207,[275,275,0]],[1709917208,[279,279,0]],[1709917209,[281,281,0]],[1709917210,[285,285,0]],[1709917211,[286,286,0]],[1709917212,[290,290,0]],[1709917213,[291,291,0]],[1709917214,[296,296,0]],[1709917215,[298,298,0]],[1709917216,[300,300,0]],[1709917217,[304,304,0]],[1709917218,[305,305,0]],[1709917219,[310,310,0]],[1709917220,[312,312,0]],[1709917221,[315,315,0]],[1709917222,[317,317,0]],[1709917223,[321,321,0]],[1709917224,[322,322,0]],[1709917225,[327,327,0]],[1709917226,[329,329,0]],[1709917227,[332,332,0]],[1709917228,[334,334,0]],[1709917229,[338,338,0]],[1709917230,[340,340,0]],[1709917231,[340,340,0]],[1709917232,[340,340,0]],[1709917233,[340,340,0]],[1709917234,[340,340,0]],[1709917235,[340,340,0]],[1709917236,[340,340,0]],[1709917237,[340,340,0]],[1709917238,[340,340,0]],[1709917239,[340,340,0]],[1709917240,[340,340,0]],[1709917241,[340,340,0]],[1709917242,[340,340,0]],[1709917243,[340,340,0]],[1709917244,[340,340,0]],[1709917245,[340,340,0]],[1709917246,[340,340,0]],[1709917247,[340,340,0]],[1709917248,[340,340,0]],[1709917249,[340,340,0]],[1709917250,[340,340,0]],[1709917251,[340,340,0]],[1709917252,[340,340,0]],[1709917253,[340,340,0]],[1709917254,[340,340,0]],[1709917255,[340,340,0]],[1709917256,[340,340,0]],[1709917257,[340,340,0]],[1709917258,[340,340,0]],[1709917259,[340,340,0]],[1709917260,[340,340,0]],[1709917261,[340,340,0]],[1709917262,[340,340,0]],[1709917263,[340,340,0]],[1709917264,[340,340,0]],[1709917265,[340,340,0]],[1709917266,[340,340,0]],[1709917267,[340,340,0]],[1709917268,[340,340,0]],[1709917269,[340,340,0]],[1709917270,[340,340,0]],[1709917271,[340,340,0]],[1709917272,[340,340,0]],[1709917273,[340,340,0]],[1709917274,[340,340,0]],[1709917275,[340,340,0]],[1709917276,[340,340,0]],[1709917277,[340,340,0]],[1709917278,[340,340,0]],[1709917279,[340,340,0]],[1709917280,[340,340,0]],[1709917281,[340,340,0]],[1709917282,[340,340,0]],[1709917283,[340,340,0]],[1709917284,[340,340,0]],[1709917285,[340,340,0]],[1709917286,[340,340,0]],[1709917287,[340,340,0]],[1709917288,[340,340,0]],[1709917289,[340,340,0]],[1709917290,[340,340,0]],[1709917291,[340,340,0]],[1709917292,[340,340,0]],[1709917293,[340,340,0]],[1709917294,[340,340,0]],[1709917295,[340,340,0]],[1709917296,[340,340,0]],[1709917297,[340,340,0]],[1709917298,[340,340,0]],[1709917299,[340,340,0]],[1709917300,[340,340,0]],[1709917301,[340,340,0]],[1709917302,[340,340,0]],[1709917303,[340,340,0]],[1709917304,[340,340,0]],[1709917305,[340,340,0]],[1709917306,[340,340,0]],[1709917307,[340,340,0]],[1709917308,[340,340,0]],[1709917309,[340,340,0]],[1709917310,[340,340,0]],[1709917311,[340,340,0]],[1709917312,[340,340,0]],[1709917313,[340,340,0]],[1709917314,[340,340,0]],[1709917315,[340,340,0]],[1709917316,[340,340,0]],[1709917317,[340,340,0]],[1709917318,[340,340,0]],[1709917319,[340,340,0]],[1709917320,[340,340,0]],[1709917321,[340,340,0]],[1709917322,[340,340,0]],[1709917323,[340,340,0]],[1709917324,[340,340,0]],[1709917325,[340,340,0]],[1709917326,[340,340,0]],[1709917327,[340,340,0]],[1709917328,[340,340,0]],[1709917329,[340,340,0]],[1709917330,[340,340,0]],[1709917331,[340,340,0]],[1709917332,[340,340,0]],[1709917333,[340,340,0]],[1709917334,[340,340,0]],[1709917335,[340,340,0]],[1709917336,[340,340,0]],[1709917337,[340,340,0]],[1709917338,[340,340,0]],[1709917339,[340,340,0]],[1709917340,[340,340,0]],[1709917341,[340,340,0]],[1709917342,[340,340,0]],[1709917343,[340,340,0]],[1709917344,[340,340,0]],[1709917345,[340,340,0]],[1709917346,[340,340,0]],[1709917347,[340,340,0]],[1709917348,[340,340,0]],[1709917349,[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:[