-
Notifications
You must be signed in to change notification settings - Fork 923
/
Copy pathindex.html
1173 lines (1104 loc) · 93.9 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-03 19:46:11 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 - michaelalves204">
<span class="simulation-information-label">Description: </span>
<span>Rinha de Backend - 2024/Q1: Crébito - michaelalves204</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: 'créditos',
data: [
[1709495171000,0],[1709495172000,0],[1709495173000,0],[1709495174000,0],[1709495175000,1],[1709495176000,2],[1709495177000,2],[1709495178000,4],[1709495179000,4],[1709495180000,5],[1709495181000,6],[1709495182000,7],[1709495183000,8],[1709495184000,8],[1709495185000,10],[1709495186000,10],[1709495187000,12],[1709495188000,12],[1709495189000,14],[1709495190000,14],[1709495191000,15],[1709495192000,16],[1709495193000,17],[1709495194000,17],[1709495195000,19],[1709495196000,20],[1709495197000,20],[1709495198000,22],[1709495199000,22],[1709495200000,23],[1709495201000,25],[1709495202000,25],[1709495203000,26],[1709495204000,26],[1709495205000,28],[1709495206000,29],[1709495207000,30],[1709495208000,30],[1709495209000,32],[1709495210000,32],[1709495211000,33],[1709495212000,34],[1709495213000,35],[1709495214000,36],[1709495215000,37],[1709495216000,38],[1709495217000,40],[1709495218000,39],[1709495219000,41],[1709495220000,41],[1709495221000,43],[1709495222000,43],[1709495223000,44],[1709495224000,45],[1709495225000,46],[1709495226000,47],[1709495227000,48],[1709495228000,48],[1709495229000,50],[1709495230000,50],[1709495231000,52],[1709495232000,52],[1709495233000,53],[1709495234000,54],[1709495235000,56],[1709495236000,55],[1709495237000,57],[1709495238000,58],[1709495239000,60],[1709495240000,60],[1709495241000,61],[1709495242000,62],[1709495243000,64],[1709495244000,64],[1709495245000,65],[1709495246000,66],[1709495247000,67],[1709495248000,68],[1709495249000,69],[1709495250000,69],[1709495251000,71],[1709495252000,71],[1709495253000,73],[1709495254000,73],[1709495255000,74],[1709495256000,75],[1709495257000,76],[1709495258000,77],[1709495259000,78],[1709495260000,79],[1709495261000,79],[1709495262000,79],[1709495263000,82],[1709495264000,82],[1709495265000,83],[1709495266000,83],[1709495267000,86],[1709495268000,86],[1709495269000,86],[1709495270000,87],[1709495271000,88],[1709495272000,90],[1709495273000,90],[1709495274000,92],[1709495275000,92],[1709495276000,93],[1709495277000,95],[1709495278000,95],[1709495279000,95],[1709495280000,97],[1709495281000,98],[1709495282000,97],[1709495283000,99],[1709495284000,99],[1709495285000,101],[1709495286000,101],[1709495287000,104],[1709495288000,103],[1709495289000,106],[1709495290000,106],[1709495291000,106],[1709495292000,108],[1709495293000,107],[1709495294000,110],[1709495295000,110],[1709495296000,110],[1709495297000,110],[1709495298000,111],[1709495299000,110],[1709495300000,110],[1709495301000,112],[1709495302000,110],[1709495303000,110],[1709495304000,111],[1709495305000,110],[1709495306000,112],[1709495307000,110],[1709495308000,112],[1709495309000,110],[1709495310000,112],[1709495311000,111],[1709495312000,110],[1709495313000,110],[1709495314000,110],[1709495315000,111],[1709495316000,111],[1709495317000,110],[1709495318000,111],[1709495319000,111],[1709495320000,111],[1709495321000,111],[1709495322000,110],[1709495323000,111],[1709495324000,111],[1709495325000,111],[1709495326000,110],[1709495327000,110],[1709495328000,111],[1709495329000,111],[1709495330000,111],[1709495331000,111],[1709495332000,110],[1709495333000,111],[1709495334000,110],[1709495335000,110],[1709495336000,110],[1709495337000,110],[1709495338000,111],[1709495339000,111],[1709495340000,110],[1709495341000,110],[1709495342000,110],[1709495343000,110],[1709495344000,111],[1709495345000,110],[1709495346000,111],[1709495347000,111],[1709495348000,110],[1709495349000,110],[1709495350000,112],[1709495351000,111],[1709495352000,111],[1709495353000,110],[1709495354000,110],[1709495355000,111],[1709495356000,111],[1709495357000,110],[1709495358000,110],[1709495359000,111],[1709495360000,111],[1709495361000,110],[1709495362000,110],[1709495363000,112],[1709495364000,111],[1709495365000,111],[1709495366000,110],[1709495367000,111],[1709495368000,112],[1709495369000,110],[1709495370000,110],[1709495371000,111],[1709495372000,110],[1709495373000,111],[1709495374000,111],[1709495375000,110],[1709495376000,112],[1709495377000,110],[1709495378000,111],[1709495379000,110],[1709495380000,110],[1709495381000,110],[1709495382000,110],[1709495383000,111],[1709495384000,110],[1709495385000,111],[1709495386000,111],[1709495387000,110],[1709495388000,111],[1709495389000,110],[1709495390000,110],[1709495391000,110],[1709495392000,112],[1709495393000,111],[1709495394000,111],[1709495395000,111],[1709495396000,110],[1709495397000,112],[1709495398000,110],[1709495399000,111],[1709495400000,112],[1709495401000,111],[1709495402000,111],[1709495403000,112],[1709495404000,110],[1709495405000,110],[1709495406000,110],[1709495407000,110],[1709495408000,110],[1709495409000,110],[1709495410000,110],[1709495411000,111],[1709495412000,111],[1709495413000,111],[1709495414000,110],[1709495415000,108]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#68b65c',
name: 'débitos',
data: [
[1709495171000,0],[1709495172000,0],[1709495173000,0],[1709495174000,0],[1709495175000,1],[1709495176000,2],[1709495177000,4],[1709495178000,6],[1709495179000,7],[1709495180000,9],[1709495181000,11],[1709495182000,14],[1709495183000,15],[1709495184000,16],[1709495185000,19],[1709495186000,20],[1709495187000,22],[1709495188000,24],[1709495189000,25],[1709495190000,28],[1709495191000,29],[1709495192000,31],[1709495193000,33],[1709495194000,35],[1709495195000,37],[1709495196000,38],[1709495197000,40],[1709495198000,42],[1709495199000,44],[1709495200000,46],[1709495201000,47],[1709495202000,50],[1709495203000,51],[1709495204000,53],[1709495205000,55],[1709495206000,57],[1709495207000,60],[1709495208000,60],[1709495209000,64],[1709495210000,65],[1709495211000,67],[1709495212000,70],[1709495213000,70],[1709495214000,72],[1709495215000,75],[1709495216000,75],[1709495217000,78],[1709495218000,80],[1709495219000,81],[1709495220000,82],[1709495221000,84],[1709495222000,86],[1709495223000,88],[1709495224000,89],[1709495225000,92],[1709495226000,93],[1709495227000,95],[1709495228000,97],[1709495229000,98],[1709495230000,101],[1709495231000,102],[1709495232000,104],[1709495233000,106],[1709495234000,108],[1709495235000,110],[1709495236000,111],[1709495237000,113],[1709495238000,115],[1709495239000,118],[1709495240000,120],[1709495241000,121],[1709495242000,124],[1709495243000,125],[1709495244000,127],[1709495245000,129],[1709495246000,130],[1709495247000,133],[1709495248000,133],[1709495249000,136],[1709495250000,138],[1709495251000,139],[1709495252000,142],[1709495253000,143],[1709495254000,144],[1709495255000,148],[1709495256000,148],[1709495257000,151],[1709495258000,152],[1709495259000,154],[1709495260000,155],[1709495261000,157],[1709495262000,159],[1709495263000,161],[1709495264000,163],[1709495265000,166],[1709495266000,167],[1709495267000,169],[1709495268000,170],[1709495269000,171],[1709495270000,174],[1709495271000,176],[1709495272000,179],[1709495273000,181],[1709495274000,183],[1709495275000,184],[1709495276000,186],[1709495277000,187],[1709495278000,189],[1709495279000,192],[1709495280000,194],[1709495281000,194],[1709495282000,197],[1709495283000,198],[1709495284000,199],[1709495285000,201],[1709495286000,202],[1709495287000,208],[1709495288000,208],[1709495289000,209],[1709495290000,212],[1709495291000,213],[1709495292000,215],[1709495293000,216],[1709495294000,218],[1709495295000,221],[1709495296000,221],[1709495297000,221],[1709495298000,220],[1709495299000,221],[1709495300000,221],[1709495301000,222],[1709495302000,222],[1709495303000,221],[1709495304000,221],[1709495305000,220],[1709495306000,224],[1709495307000,220],[1709495308000,221],[1709495309000,221],[1709495310000,222],[1709495311000,221],[1709495312000,221],[1709495313000,221],[1709495314000,221],[1709495315000,222],[1709495316000,221],[1709495317000,222],[1709495318000,221],[1709495319000,223],[1709495320000,221],[1709495321000,221],[1709495322000,221],[1709495323000,222],[1709495324000,222],[1709495325000,223],[1709495326000,221],[1709495327000,221],[1709495328000,220],[1709495329000,220],[1709495330000,220],[1709495331000,221],[1709495332000,220],[1709495333000,221],[1709495334000,220],[1709495335000,220],[1709495336000,221],[1709495337000,221],[1709495338000,222],[1709495339000,221],[1709495340000,221],[1709495341000,222],[1709495342000,220],[1709495343000,220],[1709495344000,221],[1709495345000,221],[1709495346000,220],[1709495347000,221],[1709495348000,220],[1709495349000,220],[1709495350000,222],[1709495351000,221],[1709495352000,222],[1709495353000,222],[1709495354000,221],[1709495355000,221],[1709495356000,222],[1709495357000,221],[1709495358000,221],[1709495359000,221],[1709495360000,222],[1709495361000,221],[1709495362000,221],[1709495363000,222],[1709495364000,221],[1709495365000,221],[1709495366000,221],[1709495367000,221],[1709495368000,222],[1709495369000,221],[1709495370000,222],[1709495371000,220],[1709495372000,221],[1709495373000,220],[1709495374000,223],[1709495375000,221],[1709495376000,223],[1709495377000,221],[1709495378000,222],[1709495379000,221],[1709495380000,221],[1709495381000,221],[1709495382000,222],[1709495383000,221],[1709495384000,221],[1709495385000,221],[1709495386000,220],[1709495387000,220],[1709495388000,221],[1709495389000,220],[1709495390000,221],[1709495391000,221],[1709495392000,223],[1709495393000,220],[1709495394000,221],[1709495395000,220],[1709495396000,220],[1709495397000,224],[1709495398000,220],[1709495399000,222],[1709495400000,223],[1709495401000,222],[1709495402000,221],[1709495403000,223],[1709495404000,221],[1709495405000,221],[1709495406000,221],[1709495407000,221],[1709495408000,221],[1709495409000,221],[1709495410000,221],[1709495411000,220],[1709495412000,221],[1709495413000,223],[1709495414000,221],[1709495415000,217]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#f15b4f',
name: 'extratos',
data: [
[1709495171000,0],[1709495172000,0],[1709495173000,0],[1709495174000,0],[1709495175000,1],[1709495176000,2],[1709495177000,1],[1709495178000,1],[1709495179000,1],[1709495180000,1],[1709495181000,2],[1709495182000,1],[1709495183000,2],[1709495184000,2],[1709495185000,1],[1709495186000,2],[1709495187000,2],[1709495188000,2],[1709495189000,2],[1709495190000,2],[1709495191000,2],[1709495192000,2],[1709495193000,3],[1709495194000,2],[1709495195000,3],[1709495196000,2],[1709495197000,3],[1709495198000,2],[1709495199000,3],[1709495200000,3],[1709495201000,3],[1709495202000,3],[1709495203000,3],[1709495204000,3],[1709495205000,3],[1709495206000,4],[1709495207000,3],[1709495208000,3],[1709495209000,4],[1709495210000,3],[1709495211000,4],[1709495212000,4],[1709495213000,4],[1709495214000,4],[1709495215000,4],[1709495216000,4],[1709495217000,4],[1709495218000,4],[1709495219000,4],[1709495220000,4],[1709495221000,5],[1709495222000,4],[1709495223000,5],[1709495224000,5],[1709495225000,4],[1709495226000,5],[1709495227000,5],[1709495228000,5],[1709495229000,5],[1709495230000,5],[1709495231000,5],[1709495232000,5],[1709495233000,6],[1709495234000,5],[1709495235000,6],[1709495236000,5],[1709495237000,6],[1709495238000,5],[1709495239000,6],[1709495240000,6],[1709495241000,6],[1709495242000,6],[1709495243000,6],[1709495244000,6],[1709495245000,6],[1709495246000,7],[1709495247000,6],[1709495248000,6],[1709495249000,7],[1709495250000,6],[1709495251000,7],[1709495252000,7],[1709495253000,7],[1709495254000,7],[1709495255000,7],[1709495256000,7],[1709495257000,7],[1709495258000,7],[1709495259000,7],[1709495260000,7],[1709495261000,8],[1709495262000,7],[1709495263000,8],[1709495264000,8],[1709495265000,7],[1709495266000,8],[1709495267000,8],[1709495268000,8],[1709495269000,8],[1709495270000,8],[1709495271000,8],[1709495272000,8],[1709495273000,9],[1709495274000,8],[1709495275000,9],[1709495276000,8],[1709495277000,9],[1709495278000,8],[1709495279000,9],[1709495280000,9],[1709495281000,9],[1709495282000,9],[1709495283000,9],[1709495284000,9],[1709495285000,9],[1709495286000,10],[1709495287000,9],[1709495288000,9],[1709495289000,10],[1709495290000,9],[1709495291000,10],[1709495292000,10],[1709495293000,10],[1709495294000,10],[1709495295000,10],[1709495296000,10],[1709495297000,10],[1709495298000,10],[1709495299000,10],[1709495300000,10],[1709495301000,10],[1709495302000,10],[1709495303000,10],[1709495304000,10],[1709495305000,10],[1709495306000,10],[1709495307000,10],[1709495308000,10],[1709495309000,10],[1709495310000,10],[1709495311000,10],[1709495312000,10],[1709495313000,10],[1709495314000,10],[1709495315000,10],[1709495316000,10],[1709495317000,10],[1709495318000,10],[1709495319000,10],[1709495320000,10],[1709495321000,10],[1709495322000,10],[1709495323000,10],[1709495324000,10],[1709495325000,10],[1709495326000,10],[1709495327000,10],[1709495328000,10],[1709495329000,10],[1709495330000,10],[1709495331000,10],[1709495332000,10],[1709495333000,10],[1709495334000,10],[1709495335000,10],[1709495336000,10],[1709495337000,10],[1709495338000,10],[1709495339000,10],[1709495340000,10],[1709495341000,10],[1709495342000,10],[1709495343000,10],[1709495344000,10],[1709495345000,10],[1709495346000,10],[1709495347000,10],[1709495348000,10],[1709495349000,10],[1709495350000,10],[1709495351000,10],[1709495352000,10],[1709495353000,10],[1709495354000,10],[1709495355000,10],[1709495356000,10],[1709495357000,10],[1709495358000,10],[1709495359000,10],[1709495360000,10],[1709495361000,10],[1709495362000,10],[1709495363000,10],[1709495364000,10],[1709495365000,10],[1709495366000,10],[1709495367000,10],[1709495368000,10],[1709495369000,10],[1709495370000,10],[1709495371000,10],[1709495372000,10],[1709495373000,10],[1709495374000,10],[1709495375000,10],[1709495376000,10],[1709495377000,10],[1709495378000,10],[1709495379000,10],[1709495380000,10],[1709495381000,10],[1709495382000,10],[1709495383000,10],[1709495384000,10],[1709495385000,10],[1709495386000,10],[1709495387000,10],[1709495388000,10],[1709495389000,10],[1709495390000,10],[1709495391000,10],[1709495392000,10],[1709495393000,10],[1709495394000,10],[1709495395000,10],[1709495396000,10],[1709495397000,10],[1709495398000,10],[1709495399000,10],[1709495400000,10],[1709495401000,10],[1709495402000,10],[1709495403000,10],[1709495404000,10],[1709495405000,10],[1709495406000,10],[1709495407000,10],[1709495408000,10],[1709495409000,10],[1709495410000,10],[1709495411000,10],[1709495412000,10],[1709495413000,10],[1709495414000,10],[1709495415000,9]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FFDD00',
name: 'validações',
data: [
[1709495171000,0],[1709495172000,0],[1709495173000,0],[1709495174000,5],[1709495175000,5],[1709495176000,0],[1709495177000,0],[1709495178000,0],[1709495179000,0],[1709495180000,0],[1709495181000,0],[1709495182000,0],[1709495183000,0],[1709495184000,0],[1709495185000,0],[1709495186000,0],[1709495187000,0],[1709495188000,0],[1709495189000,0],[1709495190000,0],[1709495191000,0],[1709495192000,0],[1709495193000,0],[1709495194000,0],[1709495195000,0],[1709495196000,0],[1709495197000,0],[1709495198000,0],[1709495199000,0],[1709495200000,0],[1709495201000,0],[1709495202000,0],[1709495203000,0],[1709495204000,0],[1709495205000,0],[1709495206000,0],[1709495207000,0],[1709495208000,0],[1709495209000,0],[1709495210000,0],[1709495211000,0],[1709495212000,0],[1709495213000,0],[1709495214000,0],[1709495215000,0],[1709495216000,0],[1709495217000,0],[1709495218000,0],[1709495219000,0],[1709495220000,0],[1709495221000,0],[1709495222000,0],[1709495223000,0],[1709495224000,0],[1709495225000,0],[1709495226000,0],[1709495227000,0],[1709495228000,0],[1709495229000,0],[1709495230000,0],[1709495231000,0],[1709495232000,0],[1709495233000,0],[1709495234000,0],[1709495235000,0],[1709495236000,0],[1709495237000,0],[1709495238000,0],[1709495239000,0],[1709495240000,0],[1709495241000,0],[1709495242000,0],[1709495243000,0],[1709495244000,0],[1709495245000,0],[1709495246000,0],[1709495247000,0],[1709495248000,0],[1709495249000,0],[1709495250000,0],[1709495251000,0],[1709495252000,0],[1709495253000,0],[1709495254000,0],[1709495255000,0],[1709495256000,0],[1709495257000,0],[1709495258000,0],[1709495259000,0],[1709495260000,0],[1709495261000,0],[1709495262000,0],[1709495263000,0],[1709495264000,0],[1709495265000,0],[1709495266000,0],[1709495267000,0],[1709495268000,0],[1709495269000,0],[1709495270000,0],[1709495271000,0],[1709495272000,0],[1709495273000,0],[1709495274000,0],[1709495275000,0],[1709495276000,0],[1709495277000,0],[1709495278000,0],[1709495279000,0],[1709495280000,0],[1709495281000,0],[1709495282000,0],[1709495283000,0],[1709495284000,0],[1709495285000,0],[1709495286000,0],[1709495287000,0],[1709495288000,0],[1709495289000,0],[1709495290000,0],[1709495291000,0],[1709495292000,0],[1709495293000,0],[1709495294000,0],[1709495295000,0],[1709495296000,0],[1709495297000,0],[1709495298000,0],[1709495299000,0],[1709495300000,0],[1709495301000,0],[1709495302000,0],[1709495303000,0],[1709495304000,0],[1709495305000,0],[1709495306000,0],[1709495307000,0],[1709495308000,0],[1709495309000,0],[1709495310000,0],[1709495311000,0],[1709495312000,0],[1709495313000,0],[1709495314000,0],[1709495315000,0],[1709495316000,0],[1709495317000,0],[1709495318000,0],[1709495319000,0],[1709495320000,0],[1709495321000,0],[1709495322000,0],[1709495323000,0],[1709495324000,0],[1709495325000,0],[1709495326000,0],[1709495327000,0],[1709495328000,0],[1709495329000,0],[1709495330000,0],[1709495331000,0],[1709495332000,0],[1709495333000,0],[1709495334000,0],[1709495335000,0],[1709495336000,0],[1709495337000,0],[1709495338000,0],[1709495339000,0],[1709495340000,0],[1709495341000,0],[1709495342000,0],[1709495343000,0],[1709495344000,0],[1709495345000,0],[1709495346000,0],[1709495347000,0],[1709495348000,0],[1709495349000,0],[1709495350000,0],[1709495351000,0],[1709495352000,0],[1709495353000,0],[1709495354000,0],[1709495355000,0],[1709495356000,0],[1709495357000,0],[1709495358000,0],[1709495359000,0],[1709495360000,0],[1709495361000,0],[1709495362000,0],[1709495363000,0],[1709495364000,0],[1709495365000,0],[1709495366000,0],[1709495367000,0],[1709495368000,0],[1709495369000,0],[1709495370000,0],[1709495371000,0],[1709495372000,0],[1709495373000,0],[1709495374000,0],[1709495375000,0],[1709495376000,0],[1709495377000,0],[1709495378000,0],[1709495379000,0],[1709495380000,0],[1709495381000,0],[1709495382000,0],[1709495383000,0],[1709495384000,0],[1709495385000,0],[1709495386000,0],[1709495387000,0],[1709495388000,0],[1709495389000,0],[1709495390000,0],[1709495391000,0],[1709495392000,0],[1709495393000,0],[1709495394000,0],[1709495395000,0],[1709495396000,0],[1709495397000,0],[1709495398000,0],[1709495399000,0],[1709495400000,0],[1709495401000,0],[1709495402000,0],[1709495403000,0],[1709495404000,0],[1709495405000,0],[1709495406000,0],[1709495407000,0],[1709495408000,0],[1709495409000,0],[1709495410000,0],[1709495411000,0],[1709495412000,0],[1709495413000,0],[1709495414000,0],[1709495415000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00D5FF',
name: 'validação HTTP 404',
data: [
[1709495171000,0],[1709495172000,0],[1709495173000,0],[1709495174000,1],[1709495175000,0],[1709495176000,0],[1709495177000,0],[1709495178000,0],[1709495179000,0],[1709495180000,0],[1709495181000,0],[1709495182000,0],[1709495183000,0],[1709495184000,0],[1709495185000,0],[1709495186000,0],[1709495187000,0],[1709495188000,0],[1709495189000,0],[1709495190000,0],[1709495191000,0],[1709495192000,0],[1709495193000,0],[1709495194000,0],[1709495195000,0],[1709495196000,0],[1709495197000,0],[1709495198000,0],[1709495199000,0],[1709495200000,0],[1709495201000,0],[1709495202000,0],[1709495203000,0],[1709495204000,0],[1709495205000,0],[1709495206000,0],[1709495207000,0],[1709495208000,0],[1709495209000,0],[1709495210000,0],[1709495211000,0],[1709495212000,0],[1709495213000,0],[1709495214000,0],[1709495215000,0],[1709495216000,0],[1709495217000,0],[1709495218000,0],[1709495219000,0],[1709495220000,0],[1709495221000,0],[1709495222000,0],[1709495223000,0],[1709495224000,0],[1709495225000,0],[1709495226000,0],[1709495227000,0],[1709495228000,0],[1709495229000,0],[1709495230000,0],[1709495231000,0],[1709495232000,0],[1709495233000,0],[1709495234000,0],[1709495235000,0],[1709495236000,0],[1709495237000,0],[1709495238000,0],[1709495239000,0],[1709495240000,0],[1709495241000,0],[1709495242000,0],[1709495243000,0],[1709495244000,0],[1709495245000,0],[1709495246000,0],[1709495247000,0],[1709495248000,0],[1709495249000,0],[1709495250000,0],[1709495251000,0],[1709495252000,0],[1709495253000,0],[1709495254000,0],[1709495255000,0],[1709495256000,0],[1709495257000,0],[1709495258000,0],[1709495259000,0],[1709495260000,0],[1709495261000,0],[1709495262000,0],[1709495263000,0],[1709495264000,0],[1709495265000,0],[1709495266000,0],[1709495267000,0],[1709495268000,0],[1709495269000,0],[1709495270000,0],[1709495271000,0],[1709495272000,0],[1709495273000,0],[1709495274000,0],[1709495275000,0],[1709495276000,0],[1709495277000,0],[1709495278000,0],[1709495279000,0],[1709495280000,0],[1709495281000,0],[1709495282000,0],[1709495283000,0],[1709495284000,0],[1709495285000,0],[1709495286000,0],[1709495287000,0],[1709495288000,0],[1709495289000,0],[1709495290000,0],[1709495291000,0],[1709495292000,0],[1709495293000,0],[1709495294000,0],[1709495295000,0],[1709495296000,0],[1709495297000,0],[1709495298000,0],[1709495299000,0],[1709495300000,0],[1709495301000,0],[1709495302000,0],[1709495303000,0],[1709495304000,0],[1709495305000,0],[1709495306000,0],[1709495307000,0],[1709495308000,0],[1709495309000,0],[1709495310000,0],[1709495311000,0],[1709495312000,0],[1709495313000,0],[1709495314000,0],[1709495315000,0],[1709495316000,0],[1709495317000,0],[1709495318000,0],[1709495319000,0],[1709495320000,0],[1709495321000,0],[1709495322000,0],[1709495323000,0],[1709495324000,0],[1709495325000,0],[1709495326000,0],[1709495327000,0],[1709495328000,0],[1709495329000,0],[1709495330000,0],[1709495331000,0],[1709495332000,0],[1709495333000,0],[1709495334000,0],[1709495335000,0],[1709495336000,0],[1709495337000,0],[1709495338000,0],[1709495339000,0],[1709495340000,0],[1709495341000,0],[1709495342000,0],[1709495343000,0],[1709495344000,0],[1709495345000,0],[1709495346000,0],[1709495347000,0],[1709495348000,0],[1709495349000,0],[1709495350000,0],[1709495351000,0],[1709495352000,0],[1709495353000,0],[1709495354000,0],[1709495355000,0],[1709495356000,0],[1709495357000,0],[1709495358000,0],[1709495359000,0],[1709495360000,0],[1709495361000,0],[1709495362000,0],[1709495363000,0],[1709495364000,0],[1709495365000,0],[1709495366000,0],[1709495367000,0],[1709495368000,0],[1709495369000,0],[1709495370000,0],[1709495371000,0],[1709495372000,0],[1709495373000,0],[1709495374000,0],[1709495375000,0],[1709495376000,0],[1709495377000,0],[1709495378000,0],[1709495379000,0],[1709495380000,0],[1709495381000,0],[1709495382000,0],[1709495383000,0],[1709495384000,0],[1709495385000,0],[1709495386000,0],[1709495387000,0],[1709495388000,0],[1709495389000,0],[1709495390000,0],[1709495391000,0],[1709495392000,0],[1709495393000,0],[1709495394000,0],[1709495395000,0],[1709495396000,0],[1709495397000,0],[1709495398000,0],[1709495399000,0],[1709495400000,0],[1709495401000,0],[1709495402000,0],[1709495403000,0],[1709495404000,0],[1709495405000,0],[1709495406000,0],[1709495407000,0],[1709495408000,0],[1709495409000,0],[1709495410000,0],[1709495411000,0],[1709495412000,0],[1709495413000,0],[1709495414000,0],[1709495415000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00FF00',
name: 'validação concorrência saldo - 0',
data: [
[1709495171000,0],[1709495172000,0],[1709495173000,1],[1709495174000,0],[1709495175000,0],[1709495176000,0],[1709495177000,0],[1709495178000,0],[1709495179000,0],[1709495180000,0],[1709495181000,0],[1709495182000,0],[1709495183000,0],[1709495184000,0],[1709495185000,0],[1709495186000,0],[1709495187000,0],[1709495188000,0],[1709495189000,0],[1709495190000,0],[1709495191000,0],[1709495192000,0],[1709495193000,0],[1709495194000,0],[1709495195000,0],[1709495196000,0],[1709495197000,0],[1709495198000,0],[1709495199000,0],[1709495200000,0],[1709495201000,0],[1709495202000,0],[1709495203000,0],[1709495204000,0],[1709495205000,0],[1709495206000,0],[1709495207000,0],[1709495208000,0],[1709495209000,0],[1709495210000,0],[1709495211000,0],[1709495212000,0],[1709495213000,0],[1709495214000,0],[1709495215000,0],[1709495216000,0],[1709495217000,0],[1709495218000,0],[1709495219000,0],[1709495220000,0],[1709495221000,0],[1709495222000,0],[1709495223000,0],[1709495224000,0],[1709495225000,0],[1709495226000,0],[1709495227000,0],[1709495228000,0],[1709495229000,0],[1709495230000,0],[1709495231000,0],[1709495232000,0],[1709495233000,0],[1709495234000,0],[1709495235000,0],[1709495236000,0],[1709495237000,0],[1709495238000,0],[1709495239000,0],[1709495240000,0],[1709495241000,0],[1709495242000,0],[1709495243000,0],[1709495244000,0],[1709495245000,0],[1709495246000,0],[1709495247000,0],[1709495248000,0],[1709495249000,0],[1709495250000,0],[1709495251000,0],[1709495252000,0],[1709495253000,0],[1709495254000,0],[1709495255000,0],[1709495256000,0],[1709495257000,0],[1709495258000,0],[1709495259000,0],[1709495260000,0],[1709495261000,0],[1709495262000,0],[1709495263000,0],[1709495264000,0],[1709495265000,0],[1709495266000,0],[1709495267000,0],[1709495268000,0],[1709495269000,0],[1709495270000,0],[1709495271000,0],[1709495272000,0],[1709495273000,0],[1709495274000,0],[1709495275000,0],[1709495276000,0],[1709495277000,0],[1709495278000,0],[1709495279000,0],[1709495280000,0],[1709495281000,0],[1709495282000,0],[1709495283000,0],[1709495284000,0],[1709495285000,0],[1709495286000,0],[1709495287000,0],[1709495288000,0],[1709495289000,0],[1709495290000,0],[1709495291000,0],[1709495292000,0],[1709495293000,0],[1709495294000,0],[1709495295000,0],[1709495296000,0],[1709495297000,0],[1709495298000,0],[1709495299000,0],[1709495300000,0],[1709495301000,0],[1709495302000,0],[1709495303000,0],[1709495304000,0],[1709495305000,0],[1709495306000,0],[1709495307000,0],[1709495308000,0],[1709495309000,0],[1709495310000,0],[1709495311000,0],[1709495312000,0],[1709495313000,0],[1709495314000,0],[1709495315000,0],[1709495316000,0],[1709495317000,0],[1709495318000,0],[1709495319000,0],[1709495320000,0],[1709495321000,0],[1709495322000,0],[1709495323000,0],[1709495324000,0],[1709495325000,0],[1709495326000,0],[1709495327000,0],[1709495328000,0],[1709495329000,0],[1709495330000,0],[1709495331000,0],[1709495332000,0],[1709495333000,0],[1709495334000,0],[1709495335000,0],[1709495336000,0],[1709495337000,0],[1709495338000,0],[1709495339000,0],[1709495340000,0],[1709495341000,0],[1709495342000,0],[1709495343000,0],[1709495344000,0],[1709495345000,0],[1709495346000,0],[1709495347000,0],[1709495348000,0],[1709495349000,0],[1709495350000,0],[1709495351000,0],[1709495352000,0],[1709495353000,0],[1709495354000,0],[1709495355000,0],[1709495356000,0],[1709495357000,0],[1709495358000,0],[1709495359000,0],[1709495360000,0],[1709495361000,0],[1709495362000,0],[1709495363000,0],[1709495364000,0],[1709495365000,0],[1709495366000,0],[1709495367000,0],[1709495368000,0],[1709495369000,0],[1709495370000,0],[1709495371000,0],[1709495372000,0],[1709495373000,0],[1709495374000,0],[1709495375000,0],[1709495376000,0],[1709495377000,0],[1709495378000,0],[1709495379000,0],[1709495380000,0],[1709495381000,0],[1709495382000,0],[1709495383000,0],[1709495384000,0],[1709495385000,0],[1709495386000,0],[1709495387000,0],[1709495388000,0],[1709495389000,0],[1709495390000,0],[1709495391000,0],[1709495392000,0],[1709495393000,0],[1709495394000,0],[1709495395000,0],[1709495396000,0],[1709495397000,0],[1709495398000,0],[1709495399000,0],[1709495400000,0],[1709495401000,0],[1709495402000,0],[1709495403000,0],[1709495404000,0],[1709495405000,0],[1709495406000,0],[1709495407000,0],[1709495408000,0],[1709495409000,0],[1709495410000,0],[1709495411000,0],[1709495412000,0],[1709495413000,0],[1709495414000,0],[1709495415000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#9D00FF',
name: 'validação concorrência transações - c',
data: [
[1709495171000,0],[1709495172000,25],[1709495173000,23],[1709495174000,0],[1709495175000,0],[1709495176000,0],[1709495177000,0],[1709495178000,0],[1709495179000,0],[1709495180000,0],[1709495181000,0],[1709495182000,0],[1709495183000,0],[1709495184000,0],[1709495185000,0],[1709495186000,0],[1709495187000,0],[1709495188000,0],[1709495189000,0],[1709495190000,0],[1709495191000,0],[1709495192000,0],[1709495193000,0],[1709495194000,0],[1709495195000,0],[1709495196000,0],[1709495197000,0],[1709495198000,0],[1709495199000,0],[1709495200000,0],[1709495201000,0],[1709495202000,0],[1709495203000,0],[1709495204000,0],[1709495205000,0],[1709495206000,0],[1709495207000,0],[1709495208000,0],[1709495209000,0],[1709495210000,0],[1709495211000,0],[1709495212000,0],[1709495213000,0],[1709495214000,0],[1709495215000,0],[1709495216000,0],[1709495217000,0],[1709495218000,0],[1709495219000,0],[1709495220000,0],[1709495221000,0],[1709495222000,0],[1709495223000,0],[1709495224000,0],[1709495225000,0],[1709495226000,0],[1709495227000,0],[1709495228000,0],[1709495229000,0],[1709495230000,0],[1709495231000,0],[1709495232000,0],[1709495233000,0],[1709495234000,0],[1709495235000,0],[1709495236000,0],[1709495237000,0],[1709495238000,0],[1709495239000,0],[1709495240000,0],[1709495241000,0],[1709495242000,0],[1709495243000,0],[1709495244000,0],[1709495245000,0],[1709495246000,0],[1709495247000,0],[1709495248000,0],[1709495249000,0],[1709495250000,0],[1709495251000,0],[1709495252000,0],[1709495253000,0],[1709495254000,0],[1709495255000,0],[1709495256000,0],[1709495257000,0],[1709495258000,0],[1709495259000,0],[1709495260000,0],[1709495261000,0],[1709495262000,0],[1709495263000,0],[1709495264000,0],[1709495265000,0],[1709495266000,0],[1709495267000,0],[1709495268000,0],[1709495269000,0],[1709495270000,0],[1709495271000,0],[1709495272000,0],[1709495273000,0],[1709495274000,0],[1709495275000,0],[1709495276000,0],[1709495277000,0],[1709495278000,0],[1709495279000,0],[1709495280000,0],[1709495281000,0],[1709495282000,0],[1709495283000,0],[1709495284000,0],[1709495285000,0],[1709495286000,0],[1709495287000,0],[1709495288000,0],[1709495289000,0],[1709495290000,0],[1709495291000,0],[1709495292000,0],[1709495293000,0],[1709495294000,0],[1709495295000,0],[1709495296000,0],[1709495297000,0],[1709495298000,0],[1709495299000,0],[1709495300000,0],[1709495301000,0],[1709495302000,0],[1709495303000,0],[1709495304000,0],[1709495305000,0],[1709495306000,0],[1709495307000,0],[1709495308000,0],[1709495309000,0],[1709495310000,0],[1709495311000,0],[1709495312000,0],[1709495313000,0],[1709495314000,0],[1709495315000,0],[1709495316000,0],[1709495317000,0],[1709495318000,0],[1709495319000,0],[1709495320000,0],[1709495321000,0],[1709495322000,0],[1709495323000,0],[1709495324000,0],[1709495325000,0],[1709495326000,0],[1709495327000,0],[1709495328000,0],[1709495329000,0],[1709495330000,0],[1709495331000,0],[1709495332000,0],[1709495333000,0],[1709495334000,0],[1709495335000,0],[1709495336000,0],[1709495337000,0],[1709495338000,0],[1709495339000,0],[1709495340000,0],[1709495341000,0],[1709495342000,0],[1709495343000,0],[1709495344000,0],[1709495345000,0],[1709495346000,0],[1709495347000,0],[1709495348000,0],[1709495349000,0],[1709495350000,0],[1709495351000,0],[1709495352000,0],[1709495353000,0],[1709495354000,0],[1709495355000,0],[1709495356000,0],[1709495357000,0],[1709495358000,0],[1709495359000,0],[1709495360000,0],[1709495361000,0],[1709495362000,0],[1709495363000,0],[1709495364000,0],[1709495365000,0],[1709495366000,0],[1709495367000,0],[1709495368000,0],[1709495369000,0],[1709495370000,0],[1709495371000,0],[1709495372000,0],[1709495373000,0],[1709495374000,0],[1709495375000,0],[1709495376000,0],[1709495377000,0],[1709495378000,0],[1709495379000,0],[1709495380000,0],[1709495381000,0],[1709495382000,0],[1709495383000,0],[1709495384000,0],[1709495385000,0],[1709495386000,0],[1709495387000,0],[1709495388000,0],[1709495389000,0],[1709495390000,0],[1709495391000,0],[1709495392000,0],[1709495393000,0],[1709495394000,0],[1709495395000,0],[1709495396000,0],[1709495397000,0],[1709495398000,0],[1709495399000,0],[1709495400000,0],[1709495401000,0],[1709495402000,0],[1709495403000,0],[1709495404000,0],[1709495405000,0],[1709495406000,0],[1709495407000,0],[1709495408000,0],[1709495409000,0],[1709495410000,0],[1709495411000,0],[1709495412000,0],[1709495413000,0],[1709495414000,0],[1709495415000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FF00E1',
name: 'validação concorrência saldo - -25',
data: [
[1709495171000,1],[1709495172000,1],[1709495173000,0],[1709495174000,0],[1709495175000,0],[1709495176000,0],[1709495177000,0],[1709495178000,0],[1709495179000,0],[1709495180000,0],[1709495181000,0],[1709495182000,0],[1709495183000,0],[1709495184000,0],[1709495185000,0],[1709495186000,0],[1709495187000,0],[1709495188000,0],[1709495189000,0],[1709495190000,0],[1709495191000,0],[1709495192000,0],[1709495193000,0],[1709495194000,0],[1709495195000,0],[1709495196000,0],[1709495197000,0],[1709495198000,0],[1709495199000,0],[1709495200000,0],[1709495201000,0],[1709495202000,0],[1709495203000,0],[1709495204000,0],[1709495205000,0],[1709495206000,0],[1709495207000,0],[1709495208000,0],[1709495209000,0],[1709495210000,0],[1709495211000,0],[1709495212000,0],[1709495213000,0],[1709495214000,0],[1709495215000,0],[1709495216000,0],[1709495217000,0],[1709495218000,0],[1709495219000,0],[1709495220000,0],[1709495221000,0],[1709495222000,0],[1709495223000,0],[1709495224000,0],[1709495225000,0],[1709495226000,0],[1709495227000,0],[1709495228000,0],[1709495229000,0],[1709495230000,0],[1709495231000,0],[1709495232000,0],[1709495233000,0],[1709495234000,0],[1709495235000,0],[1709495236000,0],[1709495237000,0],[1709495238000,0],[1709495239000,0],[1709495240000,0],[1709495241000,0],[1709495242000,0],[1709495243000,0],[1709495244000,0],[1709495245000,0],[1709495246000,0],[1709495247000,0],[1709495248000,0],[1709495249000,0],[1709495250000,0],[1709495251000,0],[1709495252000,0],[1709495253000,0],[1709495254000,0],[1709495255000,0],[1709495256000,0],[1709495257000,0],[1709495258000,0],[1709495259000,0],[1709495260000,0],[1709495261000,0],[1709495262000,0],[1709495263000,0],[1709495264000,0],[1709495265000,0],[1709495266000,0],[1709495267000,0],[1709495268000,0],[1709495269000,0],[1709495270000,0],[1709495271000,0],[1709495272000,0],[1709495273000,0],[1709495274000,0],[1709495275000,0],[1709495276000,0],[1709495277000,0],[1709495278000,0],[1709495279000,0],[1709495280000,0],[1709495281000,0],[1709495282000,0],[1709495283000,0],[1709495284000,0],[1709495285000,0],[1709495286000,0],[1709495287000,0],[1709495288000,0],[1709495289000,0],[1709495290000,0],[1709495291000,0],[1709495292000,0],[1709495293000,0],[1709495294000,0],[1709495295000,0],[1709495296000,0],[1709495297000,0],[1709495298000,0],[1709495299000,0],[1709495300000,0],[1709495301000,0],[1709495302000,0],[1709495303000,0],[1709495304000,0],[1709495305000,0],[1709495306000,0],[1709495307000,0],[1709495308000,0],[1709495309000,0],[1709495310000,0],[1709495311000,0],[1709495312000,0],[1709495313000,0],[1709495314000,0],[1709495315000,0],[1709495316000,0],[1709495317000,0],[1709495318000,0],[1709495319000,0],[1709495320000,0],[1709495321000,0],[1709495322000,0],[1709495323000,0],[1709495324000,0],[1709495325000,0],[1709495326000,0],[1709495327000,0],[1709495328000,0],[1709495329000,0],[1709495330000,0],[1709495331000,0],[1709495332000,0],[1709495333000,0],[1709495334000,0],[1709495335000,0],[1709495336000,0],[1709495337000,0],[1709495338000,0],[1709495339000,0],[1709495340000,0],[1709495341000,0],[1709495342000,0],[1709495343000,0],[1709495344000,0],[1709495345000,0],[1709495346000,0],[1709495347000,0],[1709495348000,0],[1709495349000,0],[1709495350000,0],[1709495351000,0],[1709495352000,0],[1709495353000,0],[1709495354000,0],[1709495355000,0],[1709495356000,0],[1709495357000,0],[1709495358000,0],[1709495359000,0],[1709495360000,0],[1709495361000,0],[1709495362000,0],[1709495363000,0],[1709495364000,0],[1709495365000,0],[1709495366000,0],[1709495367000,0],[1709495368000,0],[1709495369000,0],[1709495370000,0],[1709495371000,0],[1709495372000,0],[1709495373000,0],[1709495374000,0],[1709495375000,0],[1709495376000,0],[1709495377000,0],[1709495378000,0],[1709495379000,0],[1709495380000,0],[1709495381000,0],[1709495382000,0],[1709495383000,0],[1709495384000,0],[1709495385000,0],[1709495386000,0],[1709495387000,0],[1709495388000,0],[1709495389000,0],[1709495390000,0],[1709495391000,0],[1709495392000,0],[1709495393000,0],[1709495394000,0],[1709495395000,0],[1709495396000,0],[1709495397000,0],[1709495398000,0],[1709495399000,0],[1709495400000,0],[1709495401000,0],[1709495402000,0],[1709495403000,0],[1709495404000,0],[1709495405000,0],[1709495406000,0],[1709495407000,0],[1709495408000,0],[1709495409000,0],[1709495410000,0],[1709495411000,0],[1709495412000,0],[1709495413000,0],[1709495414000,0],[1709495415000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#AECAEB',
name: 'validação concorrência transações - d',
data: [
[1709495171000,25],[1709495172000,0],[1709495173000,0],[1709495174000,0],[1709495175000,0],[1709495176000,0],[1709495177000,0],[1709495178000,0],[1709495179000,0],[1709495180000,0],[1709495181000,0],[1709495182000,0],[1709495183000,0],[1709495184000,0],[1709495185000,0],[1709495186000,0],[1709495187000,0],[1709495188000,0],[1709495189000,0],[1709495190000,0],[1709495191000,0],[1709495192000,0],[1709495193000,0],[1709495194000,0],[1709495195000,0],[1709495196000,0],[1709495197000,0],[1709495198000,0],[1709495199000,0],[1709495200000,0],[1709495201000,0],[1709495202000,0],[1709495203000,0],[1709495204000,0],[1709495205000,0],[1709495206000,0],[1709495207000,0],[1709495208000,0],[1709495209000,0],[1709495210000,0],[1709495211000,0],[1709495212000,0],[1709495213000,0],[1709495214000,0],[1709495215000,0],[1709495216000,0],[1709495217000,0],[1709495218000,0],[1709495219000,0],[1709495220000,0],[1709495221000,0],[1709495222000,0],[1709495223000,0],[1709495224000,0],[1709495225000,0],[1709495226000,0],[1709495227000,0],[1709495228000,0],[1709495229000,0],[1709495230000,0],[1709495231000,0],[1709495232000,0],[1709495233000,0],[1709495234000,0],[1709495235000,0],[1709495236000,0],[1709495237000,0],[1709495238000,0],[1709495239000,0],[1709495240000,0],[1709495241000,0],[1709495242000,0],[1709495243000,0],[1709495244000,0],[1709495245000,0],[1709495246000,0],[1709495247000,0],[1709495248000,0],[1709495249000,0],[1709495250000,0],[1709495251000,0],[1709495252000,0],[1709495253000,0],[1709495254000,0],[1709495255000,0],[1709495256000,0],[1709495257000,0],[1709495258000,0],[1709495259000,0],[1709495260000,0],[1709495261000,0],[1709495262000,0],[1709495263000,0],[1709495264000,0],[1709495265000,0],[1709495266000,0],[1709495267000,0],[1709495268000,0],[1709495269000,0],[1709495270000,0],[1709495271000,0],[1709495272000,0],[1709495273000,0],[1709495274000,0],[1709495275000,0],[1709495276000,0],[1709495277000,0],[1709495278000,0],[1709495279000,0],[1709495280000,0],[1709495281000,0],[1709495282000,0],[1709495283000,0],[1709495284000,0],[1709495285000,0],[1709495286000,0],[1709495287000,0],[1709495288000,0],[1709495289000,0],[1709495290000,0],[1709495291000,0],[1709495292000,0],[1709495293000,0],[1709495294000,0],[1709495295000,0],[1709495296000,0],[1709495297000,0],[1709495298000,0],[1709495299000,0],[1709495300000,0],[1709495301000,0],[1709495302000,0],[1709495303000,0],[1709495304000,0],[1709495305000,0],[1709495306000,0],[1709495307000,0],[1709495308000,0],[1709495309000,0],[1709495310000,0],[1709495311000,0],[1709495312000,0],[1709495313000,0],[1709495314000,0],[1709495315000,0],[1709495316000,0],[1709495317000,0],[1709495318000,0],[1709495319000,0],[1709495320000,0],[1709495321000,0],[1709495322000,0],[1709495323000,0],[1709495324000,0],[1709495325000,0],[1709495326000,0],[1709495327000,0],[1709495328000,0],[1709495329000,0],[1709495330000,0],[1709495331000,0],[1709495332000,0],[1709495333000,0],[1709495334000,0],[1709495335000,0],[1709495336000,0],[1709495337000,0],[1709495338000,0],[1709495339000,0],[1709495340000,0],[1709495341000,0],[1709495342000,0],[1709495343000,0],[1709495344000,0],[1709495345000,0],[1709495346000,0],[1709495347000,0],[1709495348000,0],[1709495349000,0],[1709495350000,0],[1709495351000,0],[1709495352000,0],[1709495353000,0],[1709495354000,0],[1709495355000,0],[1709495356000,0],[1709495357000,0],[1709495358000,0],[1709495359000,0],[1709495360000,0],[1709495361000,0],[1709495362000,0],[1709495363000,0],[1709495364000,0],[1709495365000,0],[1709495366000,0],[1709495367000,0],[1709495368000,0],[1709495369000,0],[1709495370000,0],[1709495371000,0],[1709495372000,0],[1709495373000,0],[1709495374000,0],[1709495375000,0],[1709495376000,0],[1709495377000,0],[1709495378000,0],[1709495379000,0],[1709495380000,0],[1709495381000,0],[1709495382000,0],[1709495383000,0],[1709495384000,0],[1709495385000,0],[1709495386000,0],[1709495387000,0],[1709495388000,0],[1709495389000,0],[1709495390000,0],[1709495391000,0],[1709495392000,0],[1709495393000,0],[1709495394000,0],[1709495395000,0],[1709495396000,0],[1709495397000,0],[1709495398000,0],[1709495399000,0],[1709495400000,0],[1709495401000,0],[1709495402000,0],[1709495403000,0],[1709495404000,0],[1709495405000,0],[1709495406000,0],[1709495407000,0],[1709495408000,0],[1709495409000,0],[1709495410000,0],[1709495411000,0],[1709495412000,0],[1709495413000,0],[1709495414000,0],[1709495415000,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: ['3', '7', '11', '15', '19', '23', '28', '32', '36', '40', '44', '48', '52', '56', '60', '64', '68', '72', '76', '81', '85', '89', '93', '97', '101', '105', '109', '113', '117', '121', '125', '130', '134', '138', '142', '146', '150', '154', '158', '162', '166', '170', '174', '178', '183', '187', '191', '195', '199', '203', '207', '211', '215', '219', '223', '227', '232', '236', '240', '244', '248', '252', '256', '260', '264', '268', '272', '276', '280', '285', '289', '293', '297', '301', '305', '309', '313', '317', '321', '325', '329', '334', '338', '342', '346', '350', '354', '358', '362', '366', '370', '374', '378', '382', '387', '391', '395', '399', '403', '407'],
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: [
46.57,37.32,9.31,3.01,1.56,0.89,0.5,0.25,0.15,0.07,0.04,0.05,0.03,0.03,0.02,0.01,0.01,0.0,0.0,0.0,0.01,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,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([[1709495171,[32,64,79,96,103,107,115,118,120,121]],[1709495172,[3,3,3,3,3,3,3,3,3,3]],[1709495173,[9,21,36,48,50,52,55,58,60,61]],[1709495174,[4,4,4,4,4,4,4,4,4,4]],[1709495175,[1,4,7,11,12,13,15,17,22,23]],[1709495176,[4,6,8,8,8,8,8,8,8,9]],[1709495177,[3,7,9,10,11,11,11,11,11,11]],[1709495178,[6,7,9,9,9,9,10,10,10,11]],[1709495179,[6,6,8,9,9,9,10,12,13,14]],[1709495180,[5,6,7,8,8,9,9,10,11,12]],[1709495181,[3,6,7,7,8,8,8,8,12,14]],[1709495182,[5,6,7,8,8,9,12,15,15,15]],[1709495183,[2,5,6,6,6,6,6,7,8,9]],[1709495184,[3,6,7,8,10,10,11,11,14,15]],[1709495185,[3,6,6,7,8,9,9,9,10,10]],[1709495186,[3,6,6,7,8,9,16,22,25,26]],[1709495187,[5,6,7,8,8,9,9,13,23,25]],[1709495188,[2,5,6,8,8,9,9,10,12,13]],[1709495189,[2,5,6,6,7,8,9,10,10,11]],[1709495190,[2,5,6,7,7,8,9,10,12,13]],[1709495191,[2,5,6,7,8,8,9,9,9,10]],[1709495192,[1,5,6,6,7,8,9,11,15,16]],[1709495193,[2,5,6,8,9,208,254,332,405,409]],[1709495194,[2,6,7,11,17,50,76,131,174,182]],[1709495195,[2,5,6,6,7,7,8,14,19,21]],[1709495196,[1,4,5,6,6,7,8,9,16,19]],[1709495197,[1,5,6,7,7,8,8,9,9,10]],[1709495198,[1,5,5,7,7,8,8,9,12,13]],[1709495199,[1,5,5,8,8,9,12,21,62,67]],[1709495200,[2,5,6,8,9,9,10,12,14,15]],[1709495201,[1,5,6,7,8,9,9,11,21,22]],[1709495202,[1,4,5,7,7,7,8,9,21,30]],[1709495203,[2,5,6,7,7,8,11,14,27,27]],[1709495204,[1,5,5,6,7,7,8,13,20,21]],[1709495205,[1,4,5,6,6,6,7,7,10,11]],[1709495206,[1,4,5,6,6,6,6,10,12,14]],[1709495207,[1,4,5,5,6,6,7,7,11,12]],[1709495208,[1,2,5,6,6,7,7,9,10,16]],[1709495209,[1,5,6,7,7,8,9,15,18,27]],[1709495210,[1,4,5,7,7,8,8,9,10,14]],[1709495211,[1,4,6,7,7,9,10,14,17,21]],[1709495212,[1,4,6,8,9,10,11,14,21,26]],[1709495213,[1,4,5,6,6,7,10,10,17,19]],[1709495214,[1,4,5,6,6,7,7,7,9,10]],[1709495215,[1,5,5,6,7,7,7,9,9,11]],[1709495216,[1,4,5,6,6,7,8,9,10,11]],[1709495217,[1,4,5,6,7,7,9,10,15,24]],[1709495218,[1,4,5,6,7,7,8,14,28,37]],[1709495219,[1,4,5,6,6,7,7,12,23,25]],[1709495220,[1,4,5,7,7,8,9,10,12,14]],[1709495221,[1,4,5,7,7,8,9,10,15,19]],[1709495222,[1,4,5,7,7,8,9,10,23,29]],[1709495223,[1,2,5,6,7,8,8,11,14,15]],[1709495224,[1,4,5,6,7,7,8,10,20,30]],[1709495225,[1,4,5,7,7,7,10,16,25,30]],[1709495226,[1,2,5,6,6,6,7,7,8,13]],[1709495227,[1,4,4,5,5,6,6,7,9,14]],[1709495228,[1,4,4,6,6,8,10,14,22,31]],[1709495229,[1,4,5,6,6,6,7,9,14,16]],[1709495230,[1,4,5,6,6,6,7,8,16,21]],[1709495231,[1,3,5,5,6,6,7,8,14,15]],[1709495232,[1,4,5,7,8,9,10,13,17,20]],[1709495233,[1,2,5,6,7,7,8,9,12,15]],[1709495234,[1,2,5,7,7,8,10,14,22,23]],[1709495235,[1,2,4,6,7,7,8,10,12,18]],[1709495236,[1,4,5,6,7,8,9,17,23,26]],[1709495237,[1,3,4,5,5,6,7,8,11,15]],[1709495238,[1,2,4,5,6,6,6,7,10,11]],[1709495239,[1,4,5,6,6,6,7,8,11,13]],[1709495240,[1,4,5,6,6,7,8,9,14,24]],[1709495241,[1,2,4,5,6,6,7,7,11,13]],[1709495242,[1,3,4,5,6,6,7,8,12,16]],[1709495243,[1,4,4,5,6,6,7,9,16,17]],[1709495244,[1,4,5,6,6,7,8,12,21,22]],[1709495245,[1,3,5,6,6,7,8,11,17,22]],[1709495246,[1,4,4,5,6,7,7,8,10,13]],[1709495247,[1,4,5,6,6,7,7,8,11,15]],[1709495248,[1,4,5,6,7,7,8,9,25,31]],[1709495249,[1,4,5,6,6,6,7,8,10,11]],[1709495250,[1,4,5,6,6,7,7,10,17,24]],[1709495251,[1,2,5,6,6,6,7,9,16,19]],[1709495252,[1,3,4,5,5,6,6,7,9,11]],[1709495253,[1,4,5,6,6,7,9,23,32,36]],[1709495254,[1,4,5,6,6,7,7,8,11,15]],[1709495255,[1,4,5,6,6,7,8,10,16,17]],[1709495256,[1,4,4,5,6,6,7,7,8,10]],[1709495257,[1,4,5,6,6,7,8,11,24,28]],[1709495258,[1,4,5,6,7,8,9,13,20,23]],[1709495259,[1,4,5,7,7,8,10,12,17,26]],[1709495260,[1,4,5,6,6,6,7,9,23,29]],[1709495261,[1,4,5,6,6,8,10,15,24,29]],[1709495262,[1,4,5,6,6,7,9,14,17,20]],[1709495263,[1,4,5,6,7,7,9,13,23,27]],[1709495264,[1,4,5,7,7,8,10,15,36,41]],[1709495265,[1,4,5,7,8,8,10,18,25,35]],[1709495266,[1,4,5,7,8,9,11,14,27,38]],[1709495267,[1,4,5,6,7,8,10,17,23,25]],[1709495268,[1,4,5,7,7,9,12,20,27,33]],[1709495269,[1,4,5,6,7,7,8,11,15,18]],[1709495270,[1,4,5,5,6,6,7,8,15,19]],[1709495271,[1,4,5,6,7,8,10,17,30,41]],[1709495272,[1,4,5,6,6,7,10,15,22,26]],[1709495273,[1,4,5,6,7,7,8,9,13,17]],[1709495274,[1,4,4,6,6,6,7,9,19,23]],[1709495275,[1,4,5,6,7,8,10,11,17,25]],[1709495276,[1,4,6,7,8,9,10,12,16,20]],[1709495277,[1,4,5,7,7,8,9,11,14,18]],[1709495278,[1,4,5,7,8,9,11,13,24,32]],[1709495279,[1,4,6,7,7,8,9,12,21,28]],[1709495280,[1,4,6,8,9,10,12,16,25,30]],[1709495281,[1,4,5,7,7,8,9,12,21,28]],[1709495282,[1,4,5,6,6,7,9,13,23,30]],[1709495283,[1,4,5,6,7,8,10,13,18,21]],[1709495284,[1,4,6,10,15,23,36,72,118,127]],[1709495285,[1,3,4,6,6,7,8,9,20,26]],[1709495286,[1,4,5,7,7,9,12,30,46,49]],[1709495287,[1,4,5,7,9,11,13,17,21,28]],[1709495288,[1,5,6,8,8,9,9,13,19,21]],[1709495289,[1,4,6,9,9,11,13,18,24,31]],[1709495290,[2,6,8,10,11,12,16,27,38,46]],[1709495291,[1,4,5,7,7,8,10,16,24,28]],[1709495292,[2,6,7,9,9,10,12,14,22,29]],[1709495293,[1,3,5,7,7,8,9,11,19,23]],[1709495294,[1,4,6,7,8,9,9,13,22,29]],[1709495295,[1,5,7,9,10,12,14,18,29,34]],[1709495296,[1,6,7,10,11,13,16,20,27,32]],[1709495297,[1,4,6,10,13,14,18,23,29,35]],[1709495298,[1,5,7,9,10,11,14,19,24,29]],[1709495299,[1,4,6,8,9,10,13,17,33,41]],[1709495300,[1,5,6,9,10,11,13,17,31,41]],[1709495301,[1,5,6,9,10,11,12,15,23,30]],[1709495302,[1,5,7,9,10,11,12,16,24,29]],[1709495303,[1,4,6,8,8,9,10,13,18,21]],[1709495304,[1,5,7,10,10,11,13,15,18,20]],[1709495305,[1,4,6,8,8,9,9,11,13,18]],[1709495306,[1,5,7,11,12,13,17,24,50,59]],[1709495307,[1,4,6,8,9,10,11,12,14,16]],[1709495308,[1,5,8,11,12,13,15,18,26,37]],[1709495309,[1,6,8,10,11,12,14,15,20,25]],[1709495310,[1,6,7,11,13,16,21,26,35,43]],[1709495311,[1,6,8,10,11,13,15,19,25,29]],[1709495312,[1,4,6,8,9,11,13,15,22,31]],[1709495313,[1,5,6,8,9,10,11,16,23,27]],[1709495314,[1,4,5,8,8,9,11,17,23,29]],[1709495315,[1,4,6,8,9,10,13,20,30,34]],[1709495316,[1,6,8,11,12,15,23,33,57,79]],[1709495317,[1,6,8,11,12,13,14,18,29,37]],[1709495318,[1,4,6,8,9,10,11,17,27,36]],[1709495319,[1,6,8,11,12,13,15,19,25,32]],[1709495320,[1,4,6,9,9,10,12,14,21,27]],[1709495321,[1,6,8,10,11,13,16,19,25,27]],[1709495322,[1,5,7,11,12,15,18,25,58,64]],[1709495323,[1,6,7,9,10,11,12,13,19,24]],[1709495324,[1,5,7,10,11,12,14,17,22,32]],[1709495325,[1,5,7,9,11,13,19,25,31,42]],[1709495326,[1,4,6,9,10,11,13,17,22,28]],[1709495327,[1,5,7,9,10,11,12,14,22,25]],[1709495328,[1,4,6,8,9,10,12,16,22,30]],[1709495329,[1,4,6,8,9,10,11,12,18,20]],[1709495330,[1,4,6,9,10,11,13,17,23,31]],[1709495331,[1,4,6,8,8,9,10,13,25,26]],[1709495332,[1,4,5,7,8,10,11,14,22,32]],[1709495333,[1,4,7,12,14,16,19,31,54,61]],[1709495334,[1,4,6,8,9,11,13,15,20,25]],[1709495335,[1,4,6,8,9,10,12,14,27,33]],[1709495336,[1,4,6,9,11,14,17,22,32,41]],[1709495337,[1,3,5,7,7,7,9,11,21,30]],[1709495338,[1,4,6,7,8,9,10,13,19,24]],[1709495339,[1,3,5,7,8,9,11,14,22,26]],[1709495340,[1,4,6,8,9,11,12,15,22,33]],[1709495341,[1,4,6,8,10,11,12,15,19,25]],[1709495342,[1,4,6,8,9,10,12,18,28,37]],[1709495343,[1,3,5,7,8,9,11,13,21,27]],[1709495344,[1,4,5,7,8,8,9,13,21,26]],[1709495345,[1,4,5,7,8,9,11,13,20,29]],[1709495346,[1,4,6,9,10,11,13,19,43,51]],[1709495347,[1,4,5,7,7,8,10,12,17,30]],[1709495348,[1,4,6,8,9,10,12,15,23,30]],[1709495349,[1,4,6,7,8,10,12,16,29,40]],[1709495350,[1,3,5,8,8,8,9,11,16,23]],[1709495351,[1,4,7,10,12,13,15,19,33,41]],[1709495352,[1,4,6,8,9,10,11,12,14,15]],[1709495353,[1,4,6,8,8,9,10,14,28,33]],[1709495354,[1,4,7,9,9,10,12,15,18,22]],[1709495355,[1,4,6,8,9,9,11,13,27,33]],[1709495356,[1,4,7,9,9,10,12,13,19,20]],[1709495357,[1,5,7,10,11,12,13,17,24,29]],[1709495358,[1,5,8,11,12,13,14,16,19,28]],[1709495359,[1,4,7,8,9,10,11,13,17,21]],[1709495360,[1,5,7,10,10,11,13,17,22,24]],[1709495361,[1,4,6,7,8,9,11,14,18,20]],[1709495362,[1,5,8,10,11,12,13,19,30,38]],[1709495363,[1,5,7,10,11,12,16,23,31,36]],[1709495364,[1,5,7,9,10,11,13,16,23,25]],[1709495365,[1,4,6,8,9,11,12,17,25,29]],[1709495366,[1,5,7,9,10,10,12,13,17,23]],[1709495367,[1,4,6,8,9,10,13,17,30,40]],[1709495368,[1,6,8,11,12,13,16,19,26,35]],[1709495369,[1,4,6,7,8,8,9,10,12,17]],[1709495370,[1,5,7,9,9,10,11,14,23,29]],[1709495371,[1,2,5,7,8,8,9,11,18,21]],[1709495372,[1,6,7,10,11,12,14,21,48,60]],[1709495373,[1,3,5,7,7,9,10,12,18,20]],[1709495374,[1,5,7,9,10,11,12,15,20,24]],[1709495375,[1,4,5,7,8,10,12,17,25,30]],[1709495376,[1,5,7,12,19,32,49,70,94,106]],[1709495377,[1,4,6,8,10,11,15,20,30,34]],[1709495378,[1,4,6,8,8,9,11,14,24,29]],[1709495379,[1,4,6,8,8,10,11,14,23,27]],[1709495380,[1,4,6,8,8,9,10,11,14,17]],[1709495381,[1,4,6,9,10,12,17,24,34,39]],[1709495382,[1,4,7,10,11,12,14,18,22,35]],[1709495383,[1,3,6,7,8,9,10,12,21,23]],[1709495384,[1,4,6,8,9,9,11,13,18,24]],[1709495385,[1,4,6,8,9,10,11,13,25,32]],[1709495386,[1,3,5,7,7,8,8,10,12,13]],[1709495387,[1,4,6,8,8,10,11,16,28,33]],[1709495388,[1,4,5,7,8,9,12,15,24,29]],[1709495389,[1,4,6,8,9,11,12,20,35,55]],[1709495390,[1,3,5,7,7,8,9,11,16,19]],[1709495391,[1,4,6,8,8,9,10,13,21,30]],[1709495392,[1,3,6,8,9,11,14,17,31,44]],[1709495393,[1,4,6,8,8,9,12,16,33,44]],[1709495394,[1,3,6,7,8,9,10,12,16,23]],[1709495395,[1,4,6,8,9,10,12,15,20,34]],[1709495396,[1,4,6,7,8,9,10,13,21,22]],[1709495397,[1,4,6,8,9,10,12,17,25,29]],[1709495398,[1,4,6,7,7,8,10,14,25,32]],[1709495399,[1,4,6,8,9,9,11,14,18,25]],[1709495400,[1,4,6,8,10,12,16,25,51,57]],[1709495401,[1,5,7,9,10,12,13,20,32,39]],[1709495402,[1,4,6,8,9,10,11,17,26,36]],[1709495403,[1,4,6,8,9,10,10,12,22,25]],[1709495404,[1,4,5,7,8,8,10,13,16,18]],[1709495405,[1,5,6,9,9,11,13,18,37,53]],[1709495406,[1,4,5,7,7,8,9,12,19,28]],[1709495407,[1,4,5,7,7,8,9,11,15,20]],[1709495408,[1,4,6,8,9,10,13,17,23,27]],[1709495409,[1,3,5,8,9,11,15,18,27,34]],[1709495410,[1,4,6,8,9,10,12,16,29,36]],[1709495411,[1,4,6,8,8,9,9,11,16,25]],[1709495412,[1,4,5,8,9,12,18,26,36,44]],[1709495413,[2,5,7,8,9,9,10,12,18,21]],[1709495414,[1,3,5,6,7,7,8,9,10,11]],[1709495415,[1,4,6,7,8,8,9,11,20,29]]]);
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([[1709495171,[25,25,0]],[1709495172,[1,1,0]],[1709495173,[25,25,0]],[1709495174,[1,1,0]],[1709495175,[71,71,0]],[1709495176,[3,3,0]],[1709495177,[6,6,0]],[1709495178,[9,9,0]],[1709495179,[11,11,0]],[1709495180,[13,13,0]],[1709495181,[18,18,0]],[1709495182,[19,19,0]],[1709495183,[24,24,0]],[1709495184,[26,26,0]],[1709495185,[27,27,0]],[1709495186,[32,32,0]],[1709495187,[34,34,0]],[1709495188,[37,37,0]],[1709495189,[39,39,0]],[1709495190,[43,43,0]],[1709495191,[44,44,0]],[1709495192,[48,48,0]],[1709495193,[51,51,0]],[1709495194,[54,54,0]],[1709495195,[56,56,0]],[1709495196,[60,60,0]],[1709495197,[61,61,0]],[1709495198,[65,65,0]],[1709495199,[67,67,0]],[1709495200,[70,70,0]],[1709495201,[74,74,0]],[1709495202,[76,76,0]],[1709495203,[80,80,0]],[1709495204,[81,81,0]],[1709495205,[84,84,0]],[1709495206,[87,87,0]],[1709495207,[91,91,0]],[1709495208,[92,92,0]],[1709495209,[96,96,0]],[1709495210,[99,99,0]],[1709495211,[102,102,0]],[1709495212,[104,104,0]],[1709495213,[107,107,0]],[1709495214,[109,109,0]],[1709495215,[114,114,0]],[1709495216,[115,115,0]],[1709495217,[118,118,0]],[1709495218,[121,121,0]],[1709495219,[124,124,0]],[1709495220,[126,126,0]],[1709495221,[129,129,0]],[1709495222,[133,133,0]],[1709495223,[134,134,0]],[1709495224,[138,138,0]],[1709495225,[141,141,0]],[1709495226,[143,143,0]],[1709495227,[146,146,0]],[1709495228,[150,150,0]],[1709495229,[151,151,0]],[1709495230,[155,155,0]],[1709495231,[157,157,0]],[1709495232,[160,160,0]],[1709495233,[164,164,0]],[1709495234,[165,165,0]],[1709495235,[170,170,0]],[1709495236,[172,172,0]],[1709495237,[174,174,0]],[1709495238,[176,176,0]],[1709495239,[181,181,0]],[1709495240,[183,183,0]],[1709495241,[185,185,0]],[1709495242,[189,189,0]],[1709495243,[191,191,0]],[1709495244,[195,195,0]],[1709495245,[197,197,0]],[1709495246,[198,198,0]],[1709495247,[204,204,0]],[1709495248,[204,204,0]],[1709495249,[208,208,0]],[1709495250,[211,211,0]],[1709495251,[213,213,0]],[1709495252,[217,217,0]],[1709495253,[220,220,0]],[1709495254,[222,222,0]],[1709495255,[224,224,0]],[1709495256,[228,228,0]],[1709495257,[230,230,0]],[1709495258,[234,234,0]],[1709495259,[235,235,0]],[1709495260,[239,239,0]],[1709495261,[242,242,0]],[1709495262,[245,245,0]],[1709495263,[248,248,0]],[1709495264,[250,250,0]],[1709495265,[252,252,0]],[1709495266,[256,256,0]],[1709495267,[259,259,0]],[1709495268,[262,262,0]],[1709495269,[265,265,0]],[1709495270,[266,266,0]],[1709495271,[270,270,0]],[1709495272,[272,272,0]],[1709495273,[275,275,0]],[1709495274,[279,279,0]],[1709495275,[281,281,0]],[1709495276,[284,284,0]],[1709495277,[286,286,0]],[1709495278,[291,291,0]],[1709495279,[292,292,0]],[1709495280,[295,295,0]],[1709495281,[298,298,0]],[1709495282,[301,301,0]],[1709495283,[303,303,0]],[1709495284,[306,306,0]],[1709495285,[309,309,0]],[1709495286,[313,313,0]],[1709495287,[314,314,0]],[1709495288,[318,318,0]],[1709495289,[320,320,0]],[1709495290,[323,323,0]],[1709495291,[326,326,0]],[1709495292,[330,330,0]],[1709495293,[331,331,0]],[1709495294,[334,334,0]],[1709495295,[338,338,0]],[1709495296,[340,340,0]],[1709495297,[340,340,0]],[1709495298,[340,340,0]],[1709495299,[340,340,0]],[1709495300,[340,340,0]],[1709495301,[340,340,0]],[1709495302,[340,340,0]],[1709495303,[340,340,0]],[1709495304,[340,340,0]],[1709495305,[340,340,0]],[1709495306,[340,340,0]],[1709495307,[340,340,0]],[1709495308,[340,340,0]],[1709495309,[340,340,0]],[1709495310,[340,340,0]],[1709495311,[340,340,0]],[1709495312,[340,340,0]],[1709495313,[340,340,0]],[1709495314,[340,340,0]],[1709495315,[340,340,0]],[1709495316,[340,340,0]],[1709495317,[340,340,0]],[1709495318,[340,340,0]],[1709495319,[340,340,0]],[1709495320,[340,340,0]],[1709495321,[340,340,0]],[1709495322,[340,340,0]],[1709495323,[340,340,0]],[1709495324,[340,340,0]],[1709495325,[340,340,0]],[1709495326,[340,340,0]],[1709495327,[340,340,0]],[1709495328,[340,340,0]],[1709495329,[340,340,0]],[1709495330,[340,340,0]],[1709495331,[340,340,0]],[1709495332,[340,340,0]],[1709495333,[340,340,0]],[1709495334,[340,340,0]],[1709495335,[340,340,0]],[1709495336,[340,340,0]],[1709495337,[340,340,0]],[1709495338,[340,340,0]],[1709495339,[340,340,0]],[1709495340,[340,340,0]],[1709495341,[340,340,0]],[1709495342,[340,340,0]],[1709495343,[340,340,0]],[1709495344,[340,340,0]],[1709495345,[340,340,0]],[1709495346,[340,340,0]],[1709495347,[340,340,0]],[1709495348,[340,340,0]],[1709495349,[340,340,0]],[1709495350,[340,340,0]],[1709495351,[340,340,0]],[1709495352,[340,340,0]],[1709495353,[340,340,0]],[1709495354,[340,340,0]],[1709495355,[340,340,0]],[1709495356,[340,340,0]],[1709495357,[340,340,0]],[1709495358,[340,340,0]],[1709495359,[340,340,0]],[1709495360,[340,340,0]],[1709495361,[340,340,0]],[1709495362,[340,340,0]],[1709495363,[340,340,0]],[1709495364,[340,340,0]],[1709495365,[340,340,0]],[1709495366,[340,340,0]],[1709495367,[340,340,0]],[1709495368,[340,340,0]],[1709495369,[340,340,0]],[1709495370,[340,340,0]],[1709495371,[340,340,0]],[1709495372,[340,340,0]],[1709495373,[340,340,0]],[1709495374,[340,340,0]],[1709495375,[340,340,0]],[1709495376,[340,340,0]],[1709495377,[340,340,0]],[1709495378,[340,340,0]],[1709495379,[340,340,0]],[1709495380,[340,340,0]],[1709495381,[340,340,0]],[1709495382,[340,340,0]],[1709495383,[340,340,0]],[1709495384,[340,340,0]],[1709495385,[340,340,0]],[1709495386,[340,340,0]],[1709495387,[340,340,0]],[1709495388,[340,340,0]],[1709495389,[340,340,0]],[1709495390,[340,340,0]],[1709495391,[340,340,0]],[1709495392,[340,340,0]],[1709495393,[340,340,0]],[1709495394,[340,340,0]],[1709495395,[340,340,0]],[1709495396,[340,340,0]],[1709495397,[340,340,0]],[1709495398,[340,340,0]],[1709495399,[340,340,0]],[1709495400,[340,340,0]],[1709495401,[340,340,0]],[1709495402,[340,340,0]],[1709495403,[340,340,0]],[1709495404,[340,340,0]],[1709495405,[340,340,0]],[1709495406,[340,340,0]],[1709495407,[340,340,0]],[1709495408,[340,340,0]],[1709495409,[340,340,0]],[1709495410,[340,340,0]],[1709495411,[340,340,0]],[1709495412,[340,340,0]],[1709495413,[340,340,0]],[1709495414,[340,340,0]],[1709495415,[503,503,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:[