-
Notifications
You must be signed in to change notification settings - Fork 923
/
Copy pathindex.html
1173 lines (1104 loc) · 93.4 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="shortcut icon" type="image/x-icon" href="style/favicon.ico"/>
<link href="style/style.css" rel="stylesheet" type="text/css" />
<link href="style/bootstrap.min.css" rel="stylesheet" type="text/css" />
<script src="js/jquery-3.5.1.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/gatling.js"></script>
<script src="js/menu.js"></script>
<script src="js/ellipsis.js"></script>
<script src="js/all_sessions.js"></script>
<script src="js/stats.js"></script>
<script src="js/highstock.js"></script>
<script src="js/highcharts-more.js"></script>
<script src="js/theme.js"></script>
<script src="js/unpack.js"></script>
<title>Gatling Stats - Global Information</title>
</head>
<body>
<script>
const storedTheme = localStorage.getItem('theme') || (window.matchMedia("(prefers-color-scheme: dark)").matches ? "dark" : "light");
if (storedTheme) document.documentElement.setAttribute('data-theme', storedTheme)
function toggleTheme() {
const currentTheme = document.documentElement.getAttribute("data-theme");
const targetTheme = currentTheme === "light" ? "dark" : "light";
document.documentElement.setAttribute('data-theme', targetTheme)
localStorage.setItem('theme', targetTheme);
};
</script>
<div class="app-container">
<div class="frise"></div>
<div class="head">
<div class="gatling-open-source">
<a class="gatling-logo gatling-logo-light" href="https://gatling.io" target="blank_" title="Gatling Home Page"><img alt="Gatling" src="style/logo-light.svg"/></a>
<a class="gatling-logo gatling-logo-dark" href="https://gatling.io" target="blank_" title="Gatling Home Page"><img alt="Gatling" src="style/logo-dark.svg"/></a>
<a class="gatling-documentation" href="https://gatling.io/docs/" target="_blank">Documentation</a>
</div>
<div class="nav spacer"></div>
<a class="enterprise" href="https://gatling.io/enterprise/next-step/" target="_blank"><strong>Try</strong>
<img class="logo-enterprise-light" alt="Gatling Enterprise" src="style/logo-enterprise-light.svg"/>
<img class="logo-enterprise-dark" alt="Gatling Enterprise" src="style/logo-enterprise-dark.svg"/>
</a>
<button id="theme-toggle" class="theme-toggle" type="button" onclick="toggleTheme()" aria-label="Toggle user interface mode">
<span class="toggle-dark"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-moon"><path d="M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z"></path></svg></span>
<span class="toggle-light"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-sun"><circle cx="12" cy="12" r="5"></circle><line x1="12" y1="1" x2="12" y2="3"></line><line x1="12" y1="21" x2="12" y2="23"></line><line x1="4.22" y1="4.22" x2="5.64" y2="5.64"></line><line x1="18.36" y1="18.36" x2="19.78" y2="19.78"></line><line x1="1" y1="12" x2="3" y2="12"></line><line x1="21" y1="12" x2="23" y2="12"></line><line x1="4.22" y1="19.78" x2="5.64" y2="18.36"></line><line x1="18.36" y1="5.64" x2="19.78" y2="4.22"></line></svg></span>
</button>
</div>
<div class="container details">
<div class="nav">
<ul></ul>
</div>
<div class="cadre">
<div class="content">
<div class="content-header">
<div class="onglet">
RinhaBackendCrebitosSimulation
</div>
<div class="sous-menu" id="sousMenu">
<div class="sous-menu-spacer">
<div class="item ouvert"><a href="index.html">Global</a></div>
<div class="item "><a id="details_link" href="#">Details</a></div>
</div>
</div>
</div>
<div class="content-in">
<div class="container-article">
<div class="article">
<div class="schema-container">
<div id="ranges" class="schema ranges">
</div>
<div class="schema polar">
<div id="container_number_of_requests"></div>
</div>
<div class="simulation-card">
<div class="simulation-version-information">
<span class="simulation-information-title">Gatling Version</span>
<span class="simulation-information-item">
<span class="simulation-information-label">Version: </span>
<span>3.10.3</span>
</span>
<span class="simulation-information-item">
<span class="simulation-information-label">Released: </span>
<span>2023-12-20</span>
</span>
</div>
<div id="simulation-information" class="simulation-version-information">
<span class="simulation-information-title">Run Information</span>
<div class="simulation-information-container">
<span class="simulation-information-item">
<span class="simulation-information-label">Date: </span>
<span>2024-03-09 04:46:52 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 - juliotsutsui-node">
<span class="simulation-information-label">Description: </span>
<span>Rinha de Backend - 2024/Q1: Crébito - juliotsutsui-node</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: [
[1709959612000,0],[1709959613000,0],[1709959614000,0],[1709959615000,0],[1709959616000,1],[1709959617000,2],[1709959618000,2],[1709959619000,5],[1709959620000,4],[1709959621000,5],[1709959622000,6],[1709959623000,7],[1709959624000,8],[1709959625000,8],[1709959626000,10],[1709959627000,10],[1709959628000,12],[1709959629000,12],[1709959630000,14],[1709959631000,14],[1709959632000,15],[1709959633000,16],[1709959634000,17],[1709959635000,17],[1709959636000,19],[1709959637000,20],[1709959638000,20],[1709959639000,22],[1709959640000,22],[1709959641000,23],[1709959642000,25],[1709959643000,25],[1709959644000,26],[1709959645000,26],[1709959646000,28],[1709959647000,29],[1709959648000,30],[1709959649000,31],[1709959650000,32],[1709959651000,32],[1709959652000,33],[1709959653000,34],[1709959654000,35],[1709959655000,36],[1709959656000,37],[1709959657000,38],[1709959658000,39],[1709959659000,39],[1709959660000,41],[1709959661000,41],[1709959662000,43],[1709959663000,43],[1709959664000,44],[1709959665000,45],[1709959666000,46],[1709959667000,47],[1709959668000,48],[1709959669000,48],[1709959670000,50],[1709959671000,50],[1709959672000,52],[1709959673000,52],[1709959674000,53],[1709959675000,54],[1709959676000,56],[1709959677000,55],[1709959678000,57],[1709959679000,58],[1709959680000,59],[1709959681000,74],[1709959682000,61],[1709959683000,61],[1709959684000,63],[1709959685000,63],[1709959686000,64],[1709959687000,65],[1709959688000,66],[1709959689000,67],[1709959690000,68],[1709959691000,68],[1709959692000,70],[1709959693000,70],[1709959694000,72],[1709959695000,72],[1709959696000,73],[1709959697000,74],[1709959698000,75],[1709959699000,77],[1709959700000,78],[1709959701000,79],[1709959702000,80],[1709959703000,79],[1709959704000,81],[1709959705000,82],[1709959706000,83],[1709959707000,84],[1709959708000,86],[1709959709000,86],[1709959710000,87],[1709959711000,87],[1709959712000,89],[1709959713000,90],[1709959714000,90],[1709959715000,92],[1709959716000,92],[1709959717000,93],[1709959718000,95],[1709959719000,95],[1709959720000,96],[1709959721000,97],[1709959722000,98],[1709959723000,99],[1709959724000,100],[1709959725000,100],[1709959726000,101],[1709959727000,101],[1709959728000,104],[1709959729000,104],[1709959730000,104],[1709959731000,106],[1709959732000,107],[1709959733000,108],[1709959734000,108],[1709959735000,110],[1709959736000,111],[1709959737000,111],[1709959738000,111],[1709959739000,111],[1709959740000,111],[1709959741000,110],[1709959742000,111],[1709959743000,111],[1709959744000,111],[1709959745000,111],[1709959746000,111],[1709959747000,111],[1709959748000,111],[1709959749000,111],[1709959750000,111],[1709959751000,110],[1709959752000,111],[1709959753000,111],[1709959754000,111],[1709959755000,110],[1709959756000,111],[1709959757000,111],[1709959758000,111],[1709959759000,110],[1709959760000,110],[1709959761000,110],[1709959762000,110],[1709959763000,111],[1709959764000,111],[1709959765000,110],[1709959766000,111],[1709959767000,111],[1709959768000,111],[1709959769000,111],[1709959770000,111],[1709959771000,111],[1709959772000,110],[1709959773000,111],[1709959774000,111],[1709959775000,111],[1709959776000,111],[1709959777000,111],[1709959778000,111],[1709959779000,111],[1709959780000,111],[1709959781000,111],[1709959782000,110],[1709959783000,111],[1709959784000,111],[1709959785000,111],[1709959786000,111],[1709959787000,110],[1709959788000,111],[1709959789000,111],[1709959790000,110],[1709959791000,111],[1709959792000,111],[1709959793000,111],[1709959794000,111],[1709959795000,111],[1709959796000,111],[1709959797000,111],[1709959798000,111],[1709959799000,111],[1709959800000,111],[1709959801000,111],[1709959802000,111],[1709959803000,111],[1709959804000,111],[1709959805000,111],[1709959806000,110],[1709959807000,111],[1709959808000,111],[1709959809000,111],[1709959810000,111],[1709959811000,111],[1709959812000,111],[1709959813000,110],[1709959814000,111],[1709959815000,111],[1709959816000,111],[1709959817000,110],[1709959818000,111],[1709959819000,111],[1709959820000,111],[1709959821000,110],[1709959822000,111],[1709959823000,110],[1709959824000,111],[1709959825000,111],[1709959826000,111],[1709959827000,111],[1709959828000,111],[1709959829000,111],[1709959830000,111],[1709959831000,111],[1709959832000,111],[1709959833000,111],[1709959834000,111],[1709959835000,111],[1709959836000,110],[1709959837000,111],[1709959838000,110],[1709959839000,110],[1709959840000,111],[1709959841000,110],[1709959842000,111],[1709959843000,110],[1709959844000,111],[1709959845000,111],[1709959846000,110],[1709959847000,110],[1709959848000,111],[1709959849000,111],[1709959850000,110],[1709959851000,111],[1709959852000,111],[1709959853000,110],[1709959854000,111],[1709959855000,111],[1709959856000,109]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#68b65c',
name: 'débitos',
data: [
[1709959612000,0],[1709959613000,0],[1709959614000,0],[1709959615000,0],[1709959616000,1],[1709959617000,2],[1709959618000,4],[1709959619000,7],[1709959620000,7],[1709959621000,9],[1709959622000,11],[1709959623000,13],[1709959624000,15],[1709959625000,16],[1709959626000,19],[1709959627000,20],[1709959628000,22],[1709959629000,24],[1709959630000,25],[1709959631000,28],[1709959632000,29],[1709959633000,31],[1709959634000,33],[1709959635000,35],[1709959636000,37],[1709959637000,38],[1709959638000,40],[1709959639000,42],[1709959640000,44],[1709959641000,46],[1709959642000,47],[1709959643000,50],[1709959644000,51],[1709959645000,53],[1709959646000,55],[1709959647000,56],[1709959648000,59],[1709959649000,61],[1709959650000,62],[1709959651000,64],[1709959652000,66],[1709959653000,68],[1709959654000,69],[1709959655000,71],[1709959656000,74],[1709959657000,74],[1709959658000,78],[1709959659000,79],[1709959660000,81],[1709959661000,83],[1709959662000,85],[1709959663000,87],[1709959664000,89],[1709959665000,90],[1709959666000,93],[1709959667000,94],[1709959668000,95],[1709959669000,98],[1709959670000,98],[1709959671000,101],[1709959672000,102],[1709959673000,104],[1709959674000,106],[1709959675000,109],[1709959676000,110],[1709959677000,111],[1709959678000,113],[1709959679000,115],[1709959680000,118],[1709959681000,146],[1709959682000,120],[1709959683000,123],[1709959684000,124],[1709959685000,126],[1709959686000,128],[1709959687000,129],[1709959688000,132],[1709959689000,134],[1709959690000,135],[1709959691000,137],[1709959692000,139],[1709959693000,141],[1709959694000,142],[1709959695000,144],[1709959696000,147],[1709959697000,147],[1709959698000,150],[1709959699000,152],[1709959700000,154],[1709959701000,156],[1709959702000,158],[1709959703000,160],[1709959704000,161],[1709959705000,163],[1709959706000,166],[1709959707000,167],[1709959708000,169],[1709959709000,171],[1709959710000,172],[1709959711000,175],[1709959712000,176],[1709959713000,178],[1709959714000,180],[1709959715000,182],[1709959716000,184],[1709959717000,184],[1709959718000,187],[1709959719000,188],[1709959720000,190],[1709959721000,193],[1709959722000,194],[1709959723000,198],[1709959724000,198],[1709959725000,200],[1709959726000,201],[1709959727000,203],[1709959728000,205],[1709959729000,207],[1709959730000,209],[1709959731000,211],[1709959732000,213],[1709959733000,215],[1709959734000,216],[1709959735000,217],[1709959736000,221],[1709959737000,220],[1709959738000,220],[1709959739000,220],[1709959740000,221],[1709959741000,220],[1709959742000,221],[1709959743000,221],[1709959744000,221],[1709959745000,221],[1709959746000,221],[1709959747000,221],[1709959748000,221],[1709959749000,220],[1709959750000,221],[1709959751000,220],[1709959752000,221],[1709959753000,221],[1709959754000,221],[1709959755000,221],[1709959756000,221],[1709959757000,220],[1709959758000,221],[1709959759000,221],[1709959760000,220],[1709959761000,220],[1709959762000,221],[1709959763000,220],[1709959764000,221],[1709959765000,221],[1709959766000,221],[1709959767000,221],[1709959768000,221],[1709959769000,220],[1709959770000,220],[1709959771000,220],[1709959772000,221],[1709959773000,221],[1709959774000,221],[1709959775000,221],[1709959776000,221],[1709959777000,221],[1709959778000,221],[1709959779000,221],[1709959780000,221],[1709959781000,221],[1709959782000,220],[1709959783000,221],[1709959784000,220],[1709959785000,220],[1709959786000,221],[1709959787000,220],[1709959788000,220],[1709959789000,221],[1709959790000,220],[1709959791000,221],[1709959792000,221],[1709959793000,221],[1709959794000,220],[1709959795000,221],[1709959796000,221],[1709959797000,220],[1709959798000,221],[1709959799000,222],[1709959800000,220],[1709959801000,221],[1709959802000,220],[1709959803000,221],[1709959804000,221],[1709959805000,221],[1709959806000,220],[1709959807000,220],[1709959808000,220],[1709959809000,221],[1709959810000,220],[1709959811000,221],[1709959812000,220],[1709959813000,221],[1709959814000,221],[1709959815000,220],[1709959816000,220],[1709959817000,220],[1709959818000,221],[1709959819000,220],[1709959820000,221],[1709959821000,221],[1709959822000,220],[1709959823000,220],[1709959824000,221],[1709959825000,220],[1709959826000,222],[1709959827000,221],[1709959828000,220],[1709959829000,220],[1709959830000,221],[1709959831000,220],[1709959832000,221],[1709959833000,220],[1709959834000,221],[1709959835000,220],[1709959836000,220],[1709959837000,220],[1709959838000,220],[1709959839000,221],[1709959840000,220],[1709959841000,220],[1709959842000,221],[1709959843000,221],[1709959844000,220],[1709959845000,220],[1709959846000,221],[1709959847000,221],[1709959848000,221],[1709959849000,220],[1709959850000,220],[1709959851000,221],[1709959852000,221],[1709959853000,221],[1709959854000,221],[1709959855000,220],[1709959856000,218]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#f15b4f',
name: 'extratos',
data: [
[1709959612000,0],[1709959613000,0],[1709959614000,0],[1709959615000,0],[1709959616000,1],[1709959617000,2],[1709959618000,1],[1709959619000,1],[1709959620000,1],[1709959621000,1],[1709959622000,2],[1709959623000,1],[1709959624000,2],[1709959625000,2],[1709959626000,1],[1709959627000,2],[1709959628000,2],[1709959629000,2],[1709959630000,2],[1709959631000,2],[1709959632000,2],[1709959633000,2],[1709959634000,3],[1709959635000,2],[1709959636000,3],[1709959637000,2],[1709959638000,3],[1709959639000,2],[1709959640000,3],[1709959641000,3],[1709959642000,3],[1709959643000,3],[1709959644000,3],[1709959645000,3],[1709959646000,3],[1709959647000,4],[1709959648000,3],[1709959649000,3],[1709959650000,4],[1709959651000,3],[1709959652000,4],[1709959653000,4],[1709959654000,4],[1709959655000,4],[1709959656000,4],[1709959657000,4],[1709959658000,4],[1709959659000,4],[1709959660000,4],[1709959661000,4],[1709959662000,5],[1709959663000,4],[1709959664000,5],[1709959665000,5],[1709959666000,4],[1709959667000,5],[1709959668000,5],[1709959669000,5],[1709959670000,5],[1709959671000,5],[1709959672000,5],[1709959673000,5],[1709959674000,6],[1709959675000,5],[1709959676000,6],[1709959677000,5],[1709959678000,6],[1709959679000,5],[1709959680000,6],[1709959681000,8],[1709959682000,6],[1709959683000,6],[1709959684000,6],[1709959685000,6],[1709959686000,6],[1709959687000,7],[1709959688000,6],[1709959689000,6],[1709959690000,7],[1709959691000,6],[1709959692000,7],[1709959693000,7],[1709959694000,7],[1709959695000,7],[1709959696000,7],[1709959697000,7],[1709959698000,7],[1709959699000,7],[1709959700000,7],[1709959701000,7],[1709959702000,8],[1709959703000,7],[1709959704000,8],[1709959705000,8],[1709959706000,7],[1709959707000,8],[1709959708000,8],[1709959709000,8],[1709959710000,8],[1709959711000,8],[1709959712000,8],[1709959713000,8],[1709959714000,9],[1709959715000,8],[1709959716000,9],[1709959717000,8],[1709959718000,9],[1709959719000,8],[1709959720000,9],[1709959721000,9],[1709959722000,9],[1709959723000,9],[1709959724000,9],[1709959725000,9],[1709959726000,9],[1709959727000,10],[1709959728000,9],[1709959729000,9],[1709959730000,10],[1709959731000,9],[1709959732000,10],[1709959733000,10],[1709959734000,10],[1709959735000,10],[1709959736000,10],[1709959737000,10],[1709959738000,10],[1709959739000,10],[1709959740000,10],[1709959741000,10],[1709959742000,10],[1709959743000,10],[1709959744000,10],[1709959745000,10],[1709959746000,10],[1709959747000,10],[1709959748000,10],[1709959749000,10],[1709959750000,10],[1709959751000,10],[1709959752000,10],[1709959753000,10],[1709959754000,10],[1709959755000,10],[1709959756000,10],[1709959757000,10],[1709959758000,10],[1709959759000,10],[1709959760000,10],[1709959761000,10],[1709959762000,10],[1709959763000,10],[1709959764000,10],[1709959765000,10],[1709959766000,10],[1709959767000,10],[1709959768000,10],[1709959769000,10],[1709959770000,10],[1709959771000,10],[1709959772000,10],[1709959773000,10],[1709959774000,10],[1709959775000,10],[1709959776000,10],[1709959777000,10],[1709959778000,10],[1709959779000,10],[1709959780000,10],[1709959781000,10],[1709959782000,10],[1709959783000,10],[1709959784000,10],[1709959785000,10],[1709959786000,10],[1709959787000,10],[1709959788000,10],[1709959789000,10],[1709959790000,10],[1709959791000,10],[1709959792000,10],[1709959793000,10],[1709959794000,10],[1709959795000,10],[1709959796000,10],[1709959797000,10],[1709959798000,10],[1709959799000,10],[1709959800000,10],[1709959801000,10],[1709959802000,10],[1709959803000,10],[1709959804000,10],[1709959805000,10],[1709959806000,10],[1709959807000,10],[1709959808000,10],[1709959809000,10],[1709959810000,10],[1709959811000,10],[1709959812000,10],[1709959813000,10],[1709959814000,10],[1709959815000,10],[1709959816000,10],[1709959817000,10],[1709959818000,10],[1709959819000,10],[1709959820000,10],[1709959821000,10],[1709959822000,10],[1709959823000,10],[1709959824000,10],[1709959825000,10],[1709959826000,10],[1709959827000,10],[1709959828000,10],[1709959829000,10],[1709959830000,10],[1709959831000,10],[1709959832000,10],[1709959833000,10],[1709959834000,10],[1709959835000,10],[1709959836000,10],[1709959837000,10],[1709959838000,10],[1709959839000,10],[1709959840000,10],[1709959841000,10],[1709959842000,10],[1709959843000,10],[1709959844000,10],[1709959845000,10],[1709959846000,10],[1709959847000,10],[1709959848000,10],[1709959849000,10],[1709959850000,10],[1709959851000,10],[1709959852000,10],[1709959853000,10],[1709959854000,10],[1709959855000,10],[1709959856000,9]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FFDD00',
name: 'validações',
data: [
[1709959612000,0],[1709959613000,0],[1709959614000,0],[1709959615000,5],[1709959616000,5],[1709959617000,0],[1709959618000,0],[1709959619000,0],[1709959620000,0],[1709959621000,0],[1709959622000,0],[1709959623000,0],[1709959624000,0],[1709959625000,0],[1709959626000,0],[1709959627000,0],[1709959628000,0],[1709959629000,0],[1709959630000,0],[1709959631000,0],[1709959632000,0],[1709959633000,0],[1709959634000,0],[1709959635000,0],[1709959636000,0],[1709959637000,0],[1709959638000,0],[1709959639000,0],[1709959640000,0],[1709959641000,0],[1709959642000,0],[1709959643000,0],[1709959644000,0],[1709959645000,0],[1709959646000,0],[1709959647000,0],[1709959648000,0],[1709959649000,0],[1709959650000,0],[1709959651000,0],[1709959652000,0],[1709959653000,0],[1709959654000,0],[1709959655000,0],[1709959656000,0],[1709959657000,0],[1709959658000,0],[1709959659000,0],[1709959660000,0],[1709959661000,0],[1709959662000,0],[1709959663000,0],[1709959664000,0],[1709959665000,0],[1709959666000,0],[1709959667000,0],[1709959668000,0],[1709959669000,0],[1709959670000,0],[1709959671000,0],[1709959672000,0],[1709959673000,0],[1709959674000,0],[1709959675000,0],[1709959676000,0],[1709959677000,0],[1709959678000,0],[1709959679000,0],[1709959680000,0],[1709959681000,0],[1709959682000,0],[1709959683000,0],[1709959684000,0],[1709959685000,0],[1709959686000,0],[1709959687000,0],[1709959688000,0],[1709959689000,0],[1709959690000,0],[1709959691000,0],[1709959692000,0],[1709959693000,0],[1709959694000,0],[1709959695000,0],[1709959696000,0],[1709959697000,0],[1709959698000,0],[1709959699000,0],[1709959700000,0],[1709959701000,0],[1709959702000,0],[1709959703000,0],[1709959704000,0],[1709959705000,0],[1709959706000,0],[1709959707000,0],[1709959708000,0],[1709959709000,0],[1709959710000,0],[1709959711000,0],[1709959712000,0],[1709959713000,0],[1709959714000,0],[1709959715000,0],[1709959716000,0],[1709959717000,0],[1709959718000,0],[1709959719000,0],[1709959720000,0],[1709959721000,0],[1709959722000,0],[1709959723000,0],[1709959724000,0],[1709959725000,0],[1709959726000,0],[1709959727000,0],[1709959728000,0],[1709959729000,0],[1709959730000,0],[1709959731000,0],[1709959732000,0],[1709959733000,0],[1709959734000,0],[1709959735000,0],[1709959736000,0],[1709959737000,0],[1709959738000,0],[1709959739000,0],[1709959740000,0],[1709959741000,0],[1709959742000,0],[1709959743000,0],[1709959744000,0],[1709959745000,0],[1709959746000,0],[1709959747000,0],[1709959748000,0],[1709959749000,0],[1709959750000,0],[1709959751000,0],[1709959752000,0],[1709959753000,0],[1709959754000,0],[1709959755000,0],[1709959756000,0],[1709959757000,0],[1709959758000,0],[1709959759000,0],[1709959760000,0],[1709959761000,0],[1709959762000,0],[1709959763000,0],[1709959764000,0],[1709959765000,0],[1709959766000,0],[1709959767000,0],[1709959768000,0],[1709959769000,0],[1709959770000,0],[1709959771000,0],[1709959772000,0],[1709959773000,0],[1709959774000,0],[1709959775000,0],[1709959776000,0],[1709959777000,0],[1709959778000,0],[1709959779000,0],[1709959780000,0],[1709959781000,0],[1709959782000,0],[1709959783000,0],[1709959784000,0],[1709959785000,0],[1709959786000,0],[1709959787000,0],[1709959788000,0],[1709959789000,0],[1709959790000,0],[1709959791000,0],[1709959792000,0],[1709959793000,0],[1709959794000,0],[1709959795000,0],[1709959796000,0],[1709959797000,0],[1709959798000,0],[1709959799000,0],[1709959800000,0],[1709959801000,0],[1709959802000,0],[1709959803000,0],[1709959804000,0],[1709959805000,0],[1709959806000,0],[1709959807000,0],[1709959808000,0],[1709959809000,0],[1709959810000,0],[1709959811000,0],[1709959812000,0],[1709959813000,0],[1709959814000,0],[1709959815000,0],[1709959816000,0],[1709959817000,0],[1709959818000,0],[1709959819000,0],[1709959820000,0],[1709959821000,0],[1709959822000,0],[1709959823000,0],[1709959824000,0],[1709959825000,0],[1709959826000,0],[1709959827000,0],[1709959828000,0],[1709959829000,0],[1709959830000,0],[1709959831000,0],[1709959832000,0],[1709959833000,0],[1709959834000,0],[1709959835000,0],[1709959836000,0],[1709959837000,0],[1709959838000,0],[1709959839000,0],[1709959840000,0],[1709959841000,0],[1709959842000,0],[1709959843000,0],[1709959844000,0],[1709959845000,0],[1709959846000,0],[1709959847000,0],[1709959848000,0],[1709959849000,0],[1709959850000,0],[1709959851000,0],[1709959852000,0],[1709959853000,0],[1709959854000,0],[1709959855000,0],[1709959856000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00D5FF',
name: 'validação HTTP 404',
data: [
[1709959612000,0],[1709959613000,0],[1709959614000,0],[1709959615000,1],[1709959616000,0],[1709959617000,0],[1709959618000,0],[1709959619000,0],[1709959620000,0],[1709959621000,0],[1709959622000,0],[1709959623000,0],[1709959624000,0],[1709959625000,0],[1709959626000,0],[1709959627000,0],[1709959628000,0],[1709959629000,0],[1709959630000,0],[1709959631000,0],[1709959632000,0],[1709959633000,0],[1709959634000,0],[1709959635000,0],[1709959636000,0],[1709959637000,0],[1709959638000,0],[1709959639000,0],[1709959640000,0],[1709959641000,0],[1709959642000,0],[1709959643000,0],[1709959644000,0],[1709959645000,0],[1709959646000,0],[1709959647000,0],[1709959648000,0],[1709959649000,0],[1709959650000,0],[1709959651000,0],[1709959652000,0],[1709959653000,0],[1709959654000,0],[1709959655000,0],[1709959656000,0],[1709959657000,0],[1709959658000,0],[1709959659000,0],[1709959660000,0],[1709959661000,0],[1709959662000,0],[1709959663000,0],[1709959664000,0],[1709959665000,0],[1709959666000,0],[1709959667000,0],[1709959668000,0],[1709959669000,0],[1709959670000,0],[1709959671000,0],[1709959672000,0],[1709959673000,0],[1709959674000,0],[1709959675000,0],[1709959676000,0],[1709959677000,0],[1709959678000,0],[1709959679000,0],[1709959680000,0],[1709959681000,0],[1709959682000,0],[1709959683000,0],[1709959684000,0],[1709959685000,0],[1709959686000,0],[1709959687000,0],[1709959688000,0],[1709959689000,0],[1709959690000,0],[1709959691000,0],[1709959692000,0],[1709959693000,0],[1709959694000,0],[1709959695000,0],[1709959696000,0],[1709959697000,0],[1709959698000,0],[1709959699000,0],[1709959700000,0],[1709959701000,0],[1709959702000,0],[1709959703000,0],[1709959704000,0],[1709959705000,0],[1709959706000,0],[1709959707000,0],[1709959708000,0],[1709959709000,0],[1709959710000,0],[1709959711000,0],[1709959712000,0],[1709959713000,0],[1709959714000,0],[1709959715000,0],[1709959716000,0],[1709959717000,0],[1709959718000,0],[1709959719000,0],[1709959720000,0],[1709959721000,0],[1709959722000,0],[1709959723000,0],[1709959724000,0],[1709959725000,0],[1709959726000,0],[1709959727000,0],[1709959728000,0],[1709959729000,0],[1709959730000,0],[1709959731000,0],[1709959732000,0],[1709959733000,0],[1709959734000,0],[1709959735000,0],[1709959736000,0],[1709959737000,0],[1709959738000,0],[1709959739000,0],[1709959740000,0],[1709959741000,0],[1709959742000,0],[1709959743000,0],[1709959744000,0],[1709959745000,0],[1709959746000,0],[1709959747000,0],[1709959748000,0],[1709959749000,0],[1709959750000,0],[1709959751000,0],[1709959752000,0],[1709959753000,0],[1709959754000,0],[1709959755000,0],[1709959756000,0],[1709959757000,0],[1709959758000,0],[1709959759000,0],[1709959760000,0],[1709959761000,0],[1709959762000,0],[1709959763000,0],[1709959764000,0],[1709959765000,0],[1709959766000,0],[1709959767000,0],[1709959768000,0],[1709959769000,0],[1709959770000,0],[1709959771000,0],[1709959772000,0],[1709959773000,0],[1709959774000,0],[1709959775000,0],[1709959776000,0],[1709959777000,0],[1709959778000,0],[1709959779000,0],[1709959780000,0],[1709959781000,0],[1709959782000,0],[1709959783000,0],[1709959784000,0],[1709959785000,0],[1709959786000,0],[1709959787000,0],[1709959788000,0],[1709959789000,0],[1709959790000,0],[1709959791000,0],[1709959792000,0],[1709959793000,0],[1709959794000,0],[1709959795000,0],[1709959796000,0],[1709959797000,0],[1709959798000,0],[1709959799000,0],[1709959800000,0],[1709959801000,0],[1709959802000,0],[1709959803000,0],[1709959804000,0],[1709959805000,0],[1709959806000,0],[1709959807000,0],[1709959808000,0],[1709959809000,0],[1709959810000,0],[1709959811000,0],[1709959812000,0],[1709959813000,0],[1709959814000,0],[1709959815000,0],[1709959816000,0],[1709959817000,0],[1709959818000,0],[1709959819000,0],[1709959820000,0],[1709959821000,0],[1709959822000,0],[1709959823000,0],[1709959824000,0],[1709959825000,0],[1709959826000,0],[1709959827000,0],[1709959828000,0],[1709959829000,0],[1709959830000,0],[1709959831000,0],[1709959832000,0],[1709959833000,0],[1709959834000,0],[1709959835000,0],[1709959836000,0],[1709959837000,0],[1709959838000,0],[1709959839000,0],[1709959840000,0],[1709959841000,0],[1709959842000,0],[1709959843000,0],[1709959844000,0],[1709959845000,0],[1709959846000,0],[1709959847000,0],[1709959848000,0],[1709959849000,0],[1709959850000,0],[1709959851000,0],[1709959852000,0],[1709959853000,0],[1709959854000,0],[1709959855000,0],[1709959856000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00FF00',
name: 'validação concorrência saldo - 0',
data: [
[1709959612000,0],[1709959613000,0],[1709959614000,1],[1709959615000,0],[1709959616000,0],[1709959617000,0],[1709959618000,0],[1709959619000,0],[1709959620000,0],[1709959621000,0],[1709959622000,0],[1709959623000,0],[1709959624000,0],[1709959625000,0],[1709959626000,0],[1709959627000,0],[1709959628000,0],[1709959629000,0],[1709959630000,0],[1709959631000,0],[1709959632000,0],[1709959633000,0],[1709959634000,0],[1709959635000,0],[1709959636000,0],[1709959637000,0],[1709959638000,0],[1709959639000,0],[1709959640000,0],[1709959641000,0],[1709959642000,0],[1709959643000,0],[1709959644000,0],[1709959645000,0],[1709959646000,0],[1709959647000,0],[1709959648000,0],[1709959649000,0],[1709959650000,0],[1709959651000,0],[1709959652000,0],[1709959653000,0],[1709959654000,0],[1709959655000,0],[1709959656000,0],[1709959657000,0],[1709959658000,0],[1709959659000,0],[1709959660000,0],[1709959661000,0],[1709959662000,0],[1709959663000,0],[1709959664000,0],[1709959665000,0],[1709959666000,0],[1709959667000,0],[1709959668000,0],[1709959669000,0],[1709959670000,0],[1709959671000,0],[1709959672000,0],[1709959673000,0],[1709959674000,0],[1709959675000,0],[1709959676000,0],[1709959677000,0],[1709959678000,0],[1709959679000,0],[1709959680000,0],[1709959681000,0],[1709959682000,0],[1709959683000,0],[1709959684000,0],[1709959685000,0],[1709959686000,0],[1709959687000,0],[1709959688000,0],[1709959689000,0],[1709959690000,0],[1709959691000,0],[1709959692000,0],[1709959693000,0],[1709959694000,0],[1709959695000,0],[1709959696000,0],[1709959697000,0],[1709959698000,0],[1709959699000,0],[1709959700000,0],[1709959701000,0],[1709959702000,0],[1709959703000,0],[1709959704000,0],[1709959705000,0],[1709959706000,0],[1709959707000,0],[1709959708000,0],[1709959709000,0],[1709959710000,0],[1709959711000,0],[1709959712000,0],[1709959713000,0],[1709959714000,0],[1709959715000,0],[1709959716000,0],[1709959717000,0],[1709959718000,0],[1709959719000,0],[1709959720000,0],[1709959721000,0],[1709959722000,0],[1709959723000,0],[1709959724000,0],[1709959725000,0],[1709959726000,0],[1709959727000,0],[1709959728000,0],[1709959729000,0],[1709959730000,0],[1709959731000,0],[1709959732000,0],[1709959733000,0],[1709959734000,0],[1709959735000,0],[1709959736000,0],[1709959737000,0],[1709959738000,0],[1709959739000,0],[1709959740000,0],[1709959741000,0],[1709959742000,0],[1709959743000,0],[1709959744000,0],[1709959745000,0],[1709959746000,0],[1709959747000,0],[1709959748000,0],[1709959749000,0],[1709959750000,0],[1709959751000,0],[1709959752000,0],[1709959753000,0],[1709959754000,0],[1709959755000,0],[1709959756000,0],[1709959757000,0],[1709959758000,0],[1709959759000,0],[1709959760000,0],[1709959761000,0],[1709959762000,0],[1709959763000,0],[1709959764000,0],[1709959765000,0],[1709959766000,0],[1709959767000,0],[1709959768000,0],[1709959769000,0],[1709959770000,0],[1709959771000,0],[1709959772000,0],[1709959773000,0],[1709959774000,0],[1709959775000,0],[1709959776000,0],[1709959777000,0],[1709959778000,0],[1709959779000,0],[1709959780000,0],[1709959781000,0],[1709959782000,0],[1709959783000,0],[1709959784000,0],[1709959785000,0],[1709959786000,0],[1709959787000,0],[1709959788000,0],[1709959789000,0],[1709959790000,0],[1709959791000,0],[1709959792000,0],[1709959793000,0],[1709959794000,0],[1709959795000,0],[1709959796000,0],[1709959797000,0],[1709959798000,0],[1709959799000,0],[1709959800000,0],[1709959801000,0],[1709959802000,0],[1709959803000,0],[1709959804000,0],[1709959805000,0],[1709959806000,0],[1709959807000,0],[1709959808000,0],[1709959809000,0],[1709959810000,0],[1709959811000,0],[1709959812000,0],[1709959813000,0],[1709959814000,0],[1709959815000,0],[1709959816000,0],[1709959817000,0],[1709959818000,0],[1709959819000,0],[1709959820000,0],[1709959821000,0],[1709959822000,0],[1709959823000,0],[1709959824000,0],[1709959825000,0],[1709959826000,0],[1709959827000,0],[1709959828000,0],[1709959829000,0],[1709959830000,0],[1709959831000,0],[1709959832000,0],[1709959833000,0],[1709959834000,0],[1709959835000,0],[1709959836000,0],[1709959837000,0],[1709959838000,0],[1709959839000,0],[1709959840000,0],[1709959841000,0],[1709959842000,0],[1709959843000,0],[1709959844000,0],[1709959845000,0],[1709959846000,0],[1709959847000,0],[1709959848000,0],[1709959849000,0],[1709959850000,0],[1709959851000,0],[1709959852000,0],[1709959853000,0],[1709959854000,0],[1709959855000,0],[1709959856000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#9D00FF',
name: 'validação concorrência transações - c',
data: [
[1709959612000,0],[1709959613000,25],[1709959614000,25],[1709959615000,0],[1709959616000,0],[1709959617000,0],[1709959618000,0],[1709959619000,0],[1709959620000,0],[1709959621000,0],[1709959622000,0],[1709959623000,0],[1709959624000,0],[1709959625000,0],[1709959626000,0],[1709959627000,0],[1709959628000,0],[1709959629000,0],[1709959630000,0],[1709959631000,0],[1709959632000,0],[1709959633000,0],[1709959634000,0],[1709959635000,0],[1709959636000,0],[1709959637000,0],[1709959638000,0],[1709959639000,0],[1709959640000,0],[1709959641000,0],[1709959642000,0],[1709959643000,0],[1709959644000,0],[1709959645000,0],[1709959646000,0],[1709959647000,0],[1709959648000,0],[1709959649000,0],[1709959650000,0],[1709959651000,0],[1709959652000,0],[1709959653000,0],[1709959654000,0],[1709959655000,0],[1709959656000,0],[1709959657000,0],[1709959658000,0],[1709959659000,0],[1709959660000,0],[1709959661000,0],[1709959662000,0],[1709959663000,0],[1709959664000,0],[1709959665000,0],[1709959666000,0],[1709959667000,0],[1709959668000,0],[1709959669000,0],[1709959670000,0],[1709959671000,0],[1709959672000,0],[1709959673000,0],[1709959674000,0],[1709959675000,0],[1709959676000,0],[1709959677000,0],[1709959678000,0],[1709959679000,0],[1709959680000,0],[1709959681000,0],[1709959682000,0],[1709959683000,0],[1709959684000,0],[1709959685000,0],[1709959686000,0],[1709959687000,0],[1709959688000,0],[1709959689000,0],[1709959690000,0],[1709959691000,0],[1709959692000,0],[1709959693000,0],[1709959694000,0],[1709959695000,0],[1709959696000,0],[1709959697000,0],[1709959698000,0],[1709959699000,0],[1709959700000,0],[1709959701000,0],[1709959702000,0],[1709959703000,0],[1709959704000,0],[1709959705000,0],[1709959706000,0],[1709959707000,0],[1709959708000,0],[1709959709000,0],[1709959710000,0],[1709959711000,0],[1709959712000,0],[1709959713000,0],[1709959714000,0],[1709959715000,0],[1709959716000,0],[1709959717000,0],[1709959718000,0],[1709959719000,0],[1709959720000,0],[1709959721000,0],[1709959722000,0],[1709959723000,0],[1709959724000,0],[1709959725000,0],[1709959726000,0],[1709959727000,0],[1709959728000,0],[1709959729000,0],[1709959730000,0],[1709959731000,0],[1709959732000,0],[1709959733000,0],[1709959734000,0],[1709959735000,0],[1709959736000,0],[1709959737000,0],[1709959738000,0],[1709959739000,0],[1709959740000,0],[1709959741000,0],[1709959742000,0],[1709959743000,0],[1709959744000,0],[1709959745000,0],[1709959746000,0],[1709959747000,0],[1709959748000,0],[1709959749000,0],[1709959750000,0],[1709959751000,0],[1709959752000,0],[1709959753000,0],[1709959754000,0],[1709959755000,0],[1709959756000,0],[1709959757000,0],[1709959758000,0],[1709959759000,0],[1709959760000,0],[1709959761000,0],[1709959762000,0],[1709959763000,0],[1709959764000,0],[1709959765000,0],[1709959766000,0],[1709959767000,0],[1709959768000,0],[1709959769000,0],[1709959770000,0],[1709959771000,0],[1709959772000,0],[1709959773000,0],[1709959774000,0],[1709959775000,0],[1709959776000,0],[1709959777000,0],[1709959778000,0],[1709959779000,0],[1709959780000,0],[1709959781000,0],[1709959782000,0],[1709959783000,0],[1709959784000,0],[1709959785000,0],[1709959786000,0],[1709959787000,0],[1709959788000,0],[1709959789000,0],[1709959790000,0],[1709959791000,0],[1709959792000,0],[1709959793000,0],[1709959794000,0],[1709959795000,0],[1709959796000,0],[1709959797000,0],[1709959798000,0],[1709959799000,0],[1709959800000,0],[1709959801000,0],[1709959802000,0],[1709959803000,0],[1709959804000,0],[1709959805000,0],[1709959806000,0],[1709959807000,0],[1709959808000,0],[1709959809000,0],[1709959810000,0],[1709959811000,0],[1709959812000,0],[1709959813000,0],[1709959814000,0],[1709959815000,0],[1709959816000,0],[1709959817000,0],[1709959818000,0],[1709959819000,0],[1709959820000,0],[1709959821000,0],[1709959822000,0],[1709959823000,0],[1709959824000,0],[1709959825000,0],[1709959826000,0],[1709959827000,0],[1709959828000,0],[1709959829000,0],[1709959830000,0],[1709959831000,0],[1709959832000,0],[1709959833000,0],[1709959834000,0],[1709959835000,0],[1709959836000,0],[1709959837000,0],[1709959838000,0],[1709959839000,0],[1709959840000,0],[1709959841000,0],[1709959842000,0],[1709959843000,0],[1709959844000,0],[1709959845000,0],[1709959846000,0],[1709959847000,0],[1709959848000,0],[1709959849000,0],[1709959850000,0],[1709959851000,0],[1709959852000,0],[1709959853000,0],[1709959854000,0],[1709959855000,0],[1709959856000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FF00E1',
name: 'validação concorrência saldo - -25',
data: [
[1709959612000,1],[1709959613000,1],[1709959614000,0],[1709959615000,0],[1709959616000,0],[1709959617000,0],[1709959618000,0],[1709959619000,0],[1709959620000,0],[1709959621000,0],[1709959622000,0],[1709959623000,0],[1709959624000,0],[1709959625000,0],[1709959626000,0],[1709959627000,0],[1709959628000,0],[1709959629000,0],[1709959630000,0],[1709959631000,0],[1709959632000,0],[1709959633000,0],[1709959634000,0],[1709959635000,0],[1709959636000,0],[1709959637000,0],[1709959638000,0],[1709959639000,0],[1709959640000,0],[1709959641000,0],[1709959642000,0],[1709959643000,0],[1709959644000,0],[1709959645000,0],[1709959646000,0],[1709959647000,0],[1709959648000,0],[1709959649000,0],[1709959650000,0],[1709959651000,0],[1709959652000,0],[1709959653000,0],[1709959654000,0],[1709959655000,0],[1709959656000,0],[1709959657000,0],[1709959658000,0],[1709959659000,0],[1709959660000,0],[1709959661000,0],[1709959662000,0],[1709959663000,0],[1709959664000,0],[1709959665000,0],[1709959666000,0],[1709959667000,0],[1709959668000,0],[1709959669000,0],[1709959670000,0],[1709959671000,0],[1709959672000,0],[1709959673000,0],[1709959674000,0],[1709959675000,0],[1709959676000,0],[1709959677000,0],[1709959678000,0],[1709959679000,0],[1709959680000,0],[1709959681000,0],[1709959682000,0],[1709959683000,0],[1709959684000,0],[1709959685000,0],[1709959686000,0],[1709959687000,0],[1709959688000,0],[1709959689000,0],[1709959690000,0],[1709959691000,0],[1709959692000,0],[1709959693000,0],[1709959694000,0],[1709959695000,0],[1709959696000,0],[1709959697000,0],[1709959698000,0],[1709959699000,0],[1709959700000,0],[1709959701000,0],[1709959702000,0],[1709959703000,0],[1709959704000,0],[1709959705000,0],[1709959706000,0],[1709959707000,0],[1709959708000,0],[1709959709000,0],[1709959710000,0],[1709959711000,0],[1709959712000,0],[1709959713000,0],[1709959714000,0],[1709959715000,0],[1709959716000,0],[1709959717000,0],[1709959718000,0],[1709959719000,0],[1709959720000,0],[1709959721000,0],[1709959722000,0],[1709959723000,0],[1709959724000,0],[1709959725000,0],[1709959726000,0],[1709959727000,0],[1709959728000,0],[1709959729000,0],[1709959730000,0],[1709959731000,0],[1709959732000,0],[1709959733000,0],[1709959734000,0],[1709959735000,0],[1709959736000,0],[1709959737000,0],[1709959738000,0],[1709959739000,0],[1709959740000,0],[1709959741000,0],[1709959742000,0],[1709959743000,0],[1709959744000,0],[1709959745000,0],[1709959746000,0],[1709959747000,0],[1709959748000,0],[1709959749000,0],[1709959750000,0],[1709959751000,0],[1709959752000,0],[1709959753000,0],[1709959754000,0],[1709959755000,0],[1709959756000,0],[1709959757000,0],[1709959758000,0],[1709959759000,0],[1709959760000,0],[1709959761000,0],[1709959762000,0],[1709959763000,0],[1709959764000,0],[1709959765000,0],[1709959766000,0],[1709959767000,0],[1709959768000,0],[1709959769000,0],[1709959770000,0],[1709959771000,0],[1709959772000,0],[1709959773000,0],[1709959774000,0],[1709959775000,0],[1709959776000,0],[1709959777000,0],[1709959778000,0],[1709959779000,0],[1709959780000,0],[1709959781000,0],[1709959782000,0],[1709959783000,0],[1709959784000,0],[1709959785000,0],[1709959786000,0],[1709959787000,0],[1709959788000,0],[1709959789000,0],[1709959790000,0],[1709959791000,0],[1709959792000,0],[1709959793000,0],[1709959794000,0],[1709959795000,0],[1709959796000,0],[1709959797000,0],[1709959798000,0],[1709959799000,0],[1709959800000,0],[1709959801000,0],[1709959802000,0],[1709959803000,0],[1709959804000,0],[1709959805000,0],[1709959806000,0],[1709959807000,0],[1709959808000,0],[1709959809000,0],[1709959810000,0],[1709959811000,0],[1709959812000,0],[1709959813000,0],[1709959814000,0],[1709959815000,0],[1709959816000,0],[1709959817000,0],[1709959818000,0],[1709959819000,0],[1709959820000,0],[1709959821000,0],[1709959822000,0],[1709959823000,0],[1709959824000,0],[1709959825000,0],[1709959826000,0],[1709959827000,0],[1709959828000,0],[1709959829000,0],[1709959830000,0],[1709959831000,0],[1709959832000,0],[1709959833000,0],[1709959834000,0],[1709959835000,0],[1709959836000,0],[1709959837000,0],[1709959838000,0],[1709959839000,0],[1709959840000,0],[1709959841000,0],[1709959842000,0],[1709959843000,0],[1709959844000,0],[1709959845000,0],[1709959846000,0],[1709959847000,0],[1709959848000,0],[1709959849000,0],[1709959850000,0],[1709959851000,0],[1709959852000,0],[1709959853000,0],[1709959854000,0],[1709959855000,0],[1709959856000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#AECAEB',
name: 'validação concorrência transações - d',
data: [
[1709959612000,25],[1709959613000,0],[1709959614000,0],[1709959615000,0],[1709959616000,0],[1709959617000,0],[1709959618000,0],[1709959619000,0],[1709959620000,0],[1709959621000,0],[1709959622000,0],[1709959623000,0],[1709959624000,0],[1709959625000,0],[1709959626000,0],[1709959627000,0],[1709959628000,0],[1709959629000,0],[1709959630000,0],[1709959631000,0],[1709959632000,0],[1709959633000,0],[1709959634000,0],[1709959635000,0],[1709959636000,0],[1709959637000,0],[1709959638000,0],[1709959639000,0],[1709959640000,0],[1709959641000,0],[1709959642000,0],[1709959643000,0],[1709959644000,0],[1709959645000,0],[1709959646000,0],[1709959647000,0],[1709959648000,0],[1709959649000,0],[1709959650000,0],[1709959651000,0],[1709959652000,0],[1709959653000,0],[1709959654000,0],[1709959655000,0],[1709959656000,0],[1709959657000,0],[1709959658000,0],[1709959659000,0],[1709959660000,0],[1709959661000,0],[1709959662000,0],[1709959663000,0],[1709959664000,0],[1709959665000,0],[1709959666000,0],[1709959667000,0],[1709959668000,0],[1709959669000,0],[1709959670000,0],[1709959671000,0],[1709959672000,0],[1709959673000,0],[1709959674000,0],[1709959675000,0],[1709959676000,0],[1709959677000,0],[1709959678000,0],[1709959679000,0],[1709959680000,0],[1709959681000,0],[1709959682000,0],[1709959683000,0],[1709959684000,0],[1709959685000,0],[1709959686000,0],[1709959687000,0],[1709959688000,0],[1709959689000,0],[1709959690000,0],[1709959691000,0],[1709959692000,0],[1709959693000,0],[1709959694000,0],[1709959695000,0],[1709959696000,0],[1709959697000,0],[1709959698000,0],[1709959699000,0],[1709959700000,0],[1709959701000,0],[1709959702000,0],[1709959703000,0],[1709959704000,0],[1709959705000,0],[1709959706000,0],[1709959707000,0],[1709959708000,0],[1709959709000,0],[1709959710000,0],[1709959711000,0],[1709959712000,0],[1709959713000,0],[1709959714000,0],[1709959715000,0],[1709959716000,0],[1709959717000,0],[1709959718000,0],[1709959719000,0],[1709959720000,0],[1709959721000,0],[1709959722000,0],[1709959723000,0],[1709959724000,0],[1709959725000,0],[1709959726000,0],[1709959727000,0],[1709959728000,0],[1709959729000,0],[1709959730000,0],[1709959731000,0],[1709959732000,0],[1709959733000,0],[1709959734000,0],[1709959735000,0],[1709959736000,0],[1709959737000,0],[1709959738000,0],[1709959739000,0],[1709959740000,0],[1709959741000,0],[1709959742000,0],[1709959743000,0],[1709959744000,0],[1709959745000,0],[1709959746000,0],[1709959747000,0],[1709959748000,0],[1709959749000,0],[1709959750000,0],[1709959751000,0],[1709959752000,0],[1709959753000,0],[1709959754000,0],[1709959755000,0],[1709959756000,0],[1709959757000,0],[1709959758000,0],[1709959759000,0],[1709959760000,0],[1709959761000,0],[1709959762000,0],[1709959763000,0],[1709959764000,0],[1709959765000,0],[1709959766000,0],[1709959767000,0],[1709959768000,0],[1709959769000,0],[1709959770000,0],[1709959771000,0],[1709959772000,0],[1709959773000,0],[1709959774000,0],[1709959775000,0],[1709959776000,0],[1709959777000,0],[1709959778000,0],[1709959779000,0],[1709959780000,0],[1709959781000,0],[1709959782000,0],[1709959783000,0],[1709959784000,0],[1709959785000,0],[1709959786000,0],[1709959787000,0],[1709959788000,0],[1709959789000,0],[1709959790000,0],[1709959791000,0],[1709959792000,0],[1709959793000,0],[1709959794000,0],[1709959795000,0],[1709959796000,0],[1709959797000,0],[1709959798000,0],[1709959799000,0],[1709959800000,0],[1709959801000,0],[1709959802000,0],[1709959803000,0],[1709959804000,0],[1709959805000,0],[1709959806000,0],[1709959807000,0],[1709959808000,0],[1709959809000,0],[1709959810000,0],[1709959811000,0],[1709959812000,0],[1709959813000,0],[1709959814000,0],[1709959815000,0],[1709959816000,0],[1709959817000,0],[1709959818000,0],[1709959819000,0],[1709959820000,0],[1709959821000,0],[1709959822000,0],[1709959823000,0],[1709959824000,0],[1709959825000,0],[1709959826000,0],[1709959827000,0],[1709959828000,0],[1709959829000,0],[1709959830000,0],[1709959831000,0],[1709959832000,0],[1709959833000,0],[1709959834000,0],[1709959835000,0],[1709959836000,0],[1709959837000,0],[1709959838000,0],[1709959839000,0],[1709959840000,0],[1709959841000,0],[1709959842000,0],[1709959843000,0],[1709959844000,0],[1709959845000,0],[1709959846000,0],[1709959847000,0],[1709959848000,0],[1709959849000,0],[1709959850000,0],[1709959851000,0],[1709959852000,0],[1709959853000,0],[1709959854000,0],[1709959855000,0],[1709959856000,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', '8', '14', '20', '25', '31', '37', '42', '48', '54', '59', '65', '70', '76', '82', '87', '93', '99', '104', '110', '116', '121', '127', '133', '138', '144', '149', '155', '161', '166', '172', '178', '183', '189', '195', '200', '206', '211', '217', '223', '228', '234', '240', '245', '251', '257', '262', '268', '274', '279', '285', '290', '296', '302', '307', '313', '319', '324', '330', '336', '341', '347', '353', '358', '364', '369', '375', '381', '386', '392', '398', '403', '409', '415', '420', '426', '431', '437', '443', '448', '454', '460', '465', '471', '477', '482', '488', '493', '499', '505', '510', '516', '522', '527', '533', '539', '544', '550', '556', '561'],
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: [
86.16,11.65,0.75,0.34,0.15,0.09,0.1,0.07,0.06,0.06,0.04,0.03,0.03,0.01,0.03,0.02,0.01,0.02,0.01,0.0,0.0,0.01,0.0,0.0,0.01,0.0,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
],
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([[1709959612,[55,151,170,190,192,196,196,208,212,213]],[1709959613,[5,5,5,5,5,5,5,5,5,5]],[1709959614,[14,32,46,61,67,68,71,74,75,75]],[1709959615,[4,4,4,4,4,4,4,4,4,4]],[1709959616,[1,3,7,11,12,13,17,18,23,26]],[1709959617,[5,5,5,6,6,7,7,7,7,8]],[1709959618,[5,6,6,6,6,6,7,7,7,8]],[1709959619,[5,5,6,8,9,10,51,131,195,212]],[1709959620,[3,5,6,6,6,6,7,7,7,8]],[1709959621,[5,6,7,7,7,7,8,9,9,10]],[1709959622,[3,5,6,6,6,6,6,6,6,7]],[1709959623,[4,5,5,6,6,6,7,7,7,8]],[1709959624,[3,5,5,6,6,6,6,7,11,13]],[1709959625,[3,5,5,6,7,7,8,8,8,8]],[1709959626,[3,4,5,6,7,7,8,8,12,14]],[1709959627,[2,4,5,7,7,8,8,10,16,17]],[1709959628,[3,5,5,6,6,7,7,7,10,11]],[1709959629,[2,4,5,6,7,8,9,11,12,13]],[1709959630,[3,4,5,6,6,6,6,7,7,8]],[1709959631,[2,4,5,5,5,6,6,6,8,8]],[1709959632,[2,4,5,5,6,7,8,10,13,15]],[1709959633,[2,4,4,5,5,5,6,6,8,11]],[1709959634,[2,4,4,5,5,5,6,10,24,31]],[1709959635,[1,4,4,5,5,5,7,12,14,14]],[1709959636,[2,4,4,5,5,5,5,6,8,9]],[1709959637,[1,3,4,5,5,5,5,6,8,9]],[1709959638,[2,4,4,5,5,5,6,6,7,9]],[1709959639,[1,3,4,4,5,5,6,6,8,9]],[1709959640,[1,4,4,4,5,5,5,6,6,6]],[1709959641,[1,3,4,5,5,5,5,6,7,10]],[1709959642,[1,3,4,4,4,5,5,5,7,9]],[1709959643,[1,3,4,4,5,5,6,7,9,10]],[1709959644,[1,3,4,4,5,5,6,7,12,12]],[1709959645,[2,3,4,4,4,5,5,6,15,30]],[1709959646,[1,3,3,4,4,4,5,6,10,11]],[1709959647,[1,3,4,4,4,4,5,5,7,8]],[1709959648,[2,3,4,4,4,4,5,5,6,6]],[1709959649,[2,3,4,5,5,5,6,7,17,18]],[1709959650,[1,3,4,5,5,5,5,7,9,16]],[1709959651,[1,3,4,5,5,5,5,8,44,44]],[1709959652,[1,3,4,5,5,5,6,7,8,10]],[1709959653,[2,3,4,5,5,6,6,6,7,8]],[1709959654,[1,3,4,5,5,5,6,8,59,77]],[1709959655,[1,3,3,4,4,5,5,14,52,66]],[1709959656,[1,3,4,4,4,4,5,6,8,9]],[1709959657,[1,3,4,4,4,4,5,6,7,7]],[1709959658,[1,3,3,4,4,4,4,5,6,7]],[1709959659,[1,3,4,4,4,4,5,6,7,9]],[1709959660,[1,2,3,4,4,4,4,4,5,7]],[1709959661,[1,3,4,5,5,6,7,33,76,80]],[1709959662,[1,3,4,4,4,5,5,6,6,7]],[1709959663,[1,3,4,4,5,5,5,6,7,11]],[1709959664,[1,3,4,4,4,5,5,6,7,10]],[1709959665,[1,2,3,4,4,4,4,6,40,66]],[1709959666,[1,3,3,4,4,4,5,5,6,9]],[1709959667,[1,3,4,4,4,4,5,6,10,20]],[1709959668,[1,2,3,4,4,4,4,5,9,18]],[1709959669,[1,2,3,4,4,4,4,5,6,6]],[1709959670,[1,2,3,4,4,4,5,7,10,11]],[1709959671,[1,3,3,3,3,4,4,4,5,9]],[1709959672,[1,3,3,4,4,4,4,5,6,12]],[1709959673,[1,3,4,4,5,5,5,6,7,10]],[1709959674,[1,2,3,4,4,5,5,6,9,13]],[1709959675,[1,3,3,4,4,5,5,5,10,14]],[1709959676,[1,3,3,4,4,5,5,6,7,8]],[1709959677,[1,2,3,4,4,4,5,5,8,10]],[1709959678,[1,3,3,4,4,5,5,5,6,7]],[1709959679,[1,3,3,4,4,4,5,6,13,14]],[1709959680,[1,3,3,4,4,5,5,7,10,13]],[1709959681,[1,27,154,273,295,323,358,388,514,564]],[1709959682,[1,3,3,4,5,11,23,61,84,95]],[1709959683,[1,3,3,4,4,5,5,6,10,12]],[1709959684,[1,2,3,4,4,4,4,5,7,8]],[1709959685,[1,3,3,4,4,4,5,6,33,55]],[1709959686,[1,2,3,4,4,5,5,6,19,42]],[1709959687,[1,3,3,4,4,5,5,8,17,22]],[1709959688,[1,3,3,4,4,4,5,5,6,9]],[1709959689,[1,3,4,60,87,107,132,163,205,236]],[1709959690,[1,3,3,4,5,6,10,38,63,75]],[1709959691,[1,3,3,4,4,4,4,5,11,18]],[1709959692,[1,3,3,4,4,4,5,7,12,24]],[1709959693,[1,2,3,4,4,4,4,5,5,6]],[1709959694,[1,2,3,4,4,4,4,5,10,12]],[1709959695,[1,2,3,4,4,4,4,7,17,27]],[1709959696,[1,2,3,3,3,4,5,18,163,183]],[1709959697,[1,2,3,3,4,5,28,79,129,154]],[1709959698,[1,2,3,3,4,4,5,6,8,11]],[1709959699,[1,2,3,3,4,4,4,5,6,8]],[1709959700,[1,2,3,3,3,3,4,4,5,6]],[1709959701,[1,2,3,3,3,4,4,5,8,11]],[1709959702,[1,3,3,3,4,4,4,5,7,9]],[1709959703,[1,3,3,5,5,9,14,39,89,105]],[1709959704,[1,3,3,4,4,4,4,4,6,10]],[1709959705,[1,3,3,4,4,4,5,5,6,8]],[1709959706,[1,2,3,3,3,4,4,5,7,10]],[1709959707,[1,2,3,3,4,4,5,5,6,8]],[1709959708,[1,3,3,4,4,5,5,5,8,12]],[1709959709,[1,3,3,4,4,4,5,7,11,17]],[1709959710,[1,2,3,4,4,5,6,9,17,24]],[1709959711,[1,2,3,3,3,4,4,5,9,21]],[1709959712,[1,2,3,3,3,4,4,5,12,15]],[1709959713,[1,2,3,3,4,4,5,8,15,30]],[1709959714,[1,2,3,3,4,4,4,6,13,24]],[1709959715,[1,3,3,3,4,4,4,5,8,22]],[1709959716,[1,3,3,4,4,4,5,6,8,12]],[1709959717,[1,3,3,4,4,5,5,5,7,8]],[1709959718,[1,2,3,4,4,4,5,7,11,13]],[1709959719,[1,2,3,3,3,4,4,5,8,12]],[1709959720,[1,2,3,3,3,4,4,5,6,7]],[1709959721,[1,2,3,4,4,4,5,5,10,14]],[1709959722,[1,2,3,3,3,4,4,5,11,15]],[1709959723,[1,3,3,3,3,4,4,5,10,16]],[1709959724,[1,3,3,3,4,4,4,5,15,19]],[1709959725,[1,2,3,3,3,3,4,5,7,10]],[1709959726,[1,2,3,3,3,4,4,6,35,52]],[1709959727,[1,2,3,3,4,4,4,5,11,14]],[1709959728,[1,2,3,3,4,4,4,5,6,10]],[1709959729,[1,3,4,5,6,6,7,8,23,37]],[1709959730,[1,3,4,5,6,6,7,13,41,51]],[1709959731,[1,3,4,5,6,6,6,7,10,13]],[1709959732,[1,3,4,5,6,6,7,9,26,41]],[1709959733,[1,3,4,5,5,6,6,7,10,13]],[1709959734,[1,3,4,5,5,6,6,7,12,17]],[1709959735,[1,3,4,5,5,6,6,7,10,13]],[1709959736,[1,3,4,5,5,5,6,7,15,53]],[1709959737,[1,2,3,5,5,6,7,8,35,53]],[1709959738,[1,3,4,5,6,6,6,8,20,34]],[1709959739,[1,3,4,5,5,6,7,8,12,20]],[1709959740,[1,3,4,5,6,6,6,7,9,12]],[1709959741,[1,2,3,4,4,5,6,6,8,13]],[1709959742,[1,3,4,5,6,6,7,7,10,13]],[1709959743,[1,3,3,5,5,5,6,8,12,22]],[1709959744,[1,4,5,6,6,6,7,7,9,13]],[1709959745,[1,3,3,4,4,5,5,6,10,13]],[1709959746,[1,3,4,5,5,6,6,8,13,20]],[1709959747,[1,2,3,3,3,3,4,4,7,13]],[1709959748,[1,3,4,5,6,6,7,9,23,27]],[1709959749,[1,3,3,4,5,5,5,26,61,71]],[1709959750,[1,4,5,6,6,7,7,8,10,13]],[1709959751,[1,3,3,4,5,5,6,10,29,47]],[1709959752,[1,3,5,6,6,7,7,8,10,19]],[1709959753,[1,3,3,5,5,5,5,6,9,10]],[1709959754,[1,3,4,5,5,6,6,7,9,12]],[1709959755,[1,2,3,3,4,4,5,5,7,13]],[1709959756,[1,3,4,6,6,6,7,8,9,15]],[1709959757,[1,3,3,4,5,5,5,5,7,11]],[1709959758,[1,3,5,6,6,7,8,12,37,40]],[1709959759,[1,2,3,4,4,5,5,6,8,12]],[1709959760,[1,3,3,5,5,5,6,6,8,10]],[1709959761,[1,3,3,5,5,6,12,34,90,101]],[1709959762,[1,3,4,5,6,6,7,11,14,24]],[1709959763,[1,3,3,5,5,5,6,8,12,20]],[1709959764,[1,3,3,4,5,6,6,8,14,16]],[1709959765,[1,3,3,5,5,5,6,9,17,22]],[1709959766,[1,2,3,4,4,5,5,6,10,15]],[1709959767,[1,3,4,5,5,5,6,6,8,10]],[1709959768,[1,2,3,5,5,5,6,7,10,14]],[1709959769,[1,3,4,5,5,5,6,7,10,11]],[1709959770,[1,2,3,4,4,5,5,8,12,17]],[1709959771,[1,3,4,5,6,6,7,8,20,25]],[1709959772,[1,2,3,4,4,4,5,6,8,10]],[1709959773,[1,2,3,4,5,5,5,6,7,8]],[1709959774,[1,3,3,4,4,5,5,6,9,14]],[1709959775,[1,3,4,6,6,7,7,9,18,20]],[1709959776,[1,3,3,4,4,5,6,8,15,18]],[1709959777,[1,3,4,5,5,6,6,7,9,18]],[1709959778,[1,3,3,4,4,5,5,6,10,18]],[1709959779,[1,3,4,6,6,7,7,8,10,12]],[1709959780,[1,3,3,4,5,5,6,8,39,54]],[1709959781,[1,3,4,5,6,6,7,8,11,13]],[1709959782,[1,2,3,4,4,4,5,5,6,11]],[1709959783,[1,3,3,5,5,5,6,7,9,10]],[1709959784,[1,2,3,4,4,4,5,5,7,11]],[1709959785,[1,3,3,5,5,6,7,9,18,31]],[1709959786,[1,3,3,4,5,5,5,8,15,22]],[1709959787,[1,2,3,4,4,5,5,6,8,13]],[1709959788,[1,2,3,3,3,4,4,5,7,10]],[1709959789,[1,2,3,4,5,5,6,7,11,18]],[1709959790,[1,3,3,4,4,5,5,5,7,13]],[1709959791,[1,3,4,5,5,6,6,7,8,12]],[1709959792,[1,2,3,4,5,5,5,6,7,10]],[1709959793,[2,4,5,5,6,6,7,8,12,18]],[1709959794,[1,3,3,4,5,5,6,8,25,39]],[1709959795,[2,4,5,6,7,7,8,13,36,51]],[1709959796,[1,2,3,4,4,5,5,6,8,9]],[1709959797,[2,4,5,6,6,7,7,15,40,71]],[1709959798,[1,2,3,4,5,5,5,6,9,10]],[1709959799,[1,4,5,6,6,7,7,9,12,21]],[1709959800,[1,3,4,5,6,7,11,32,51,65]],[1709959801,[1,4,5,6,6,6,7,7,12,18]],[1709959802,[1,3,3,5,5,5,6,7,9,18]],[1709959803,[1,3,5,6,6,7,7,9,16,20]],[1709959804,[1,3,3,4,5,5,5,6,7,7]],[1709959805,[1,3,5,7,7,8,11,21,66,80]],[1709959806,[1,3,3,5,5,5,6,6,7,8]],[1709959807,[1,3,4,5,6,6,7,7,11,15]],[1709959808,[1,3,3,5,5,6,7,10,16,20]],[1709959809,[0,3,4,6,6,6,7,8,9,11]],[1709959810,[1,3,3,5,5,6,7,9,14,25]],[1709959811,[1,3,4,5,6,6,6,7,8,9]],[1709959812,[1,3,4,5,6,6,7,9,16,21]],[1709959813,[1,3,4,5,5,6,6,7,10,15]],[1709959814,[1,2,3,5,5,5,6,7,9,11]],[1709959815,[1,2,3,5,5,5,6,8,49,67]],[1709959816,[1,3,4,5,5,6,6,8,19,22]],[1709959817,[1,3,4,5,5,6,7,9,26,36]],[1709959818,[1,3,4,5,5,6,6,7,11,13]],[1709959819,[1,3,3,5,5,5,6,6,8,9]],[1709959820,[1,3,4,5,6,6,7,8,12,18]],[1709959821,[1,2,3,4,4,5,5,5,7,10]],[1709959822,[1,3,4,5,6,6,7,8,17,26]],[1709959823,[1,2,3,4,4,5,5,6,8,12]],[1709959824,[1,3,4,5,5,6,6,8,18,32]],[1709959825,[1,2,3,4,5,5,6,7,10,14]],[1709959826,[1,3,4,6,6,7,7,9,25,44]],[1709959827,[1,2,3,4,4,5,5,7,40,50]],[1709959828,[1,3,4,5,5,6,7,8,19,29]],[1709959829,[1,2,3,4,4,5,5,8,14,19]],[1709959830,[1,3,5,6,6,7,8,9,12,15]],[1709959831,[1,2,3,4,4,5,5,6,8,20]],[1709959832,[1,3,4,5,5,6,6,7,9,15]],[1709959833,[1,2,3,4,4,5,5,6,6,8]],[1709959834,[1,3,4,6,6,7,7,9,13,29]],[1709959835,[1,2,3,4,4,5,5,6,8,11]],[1709959836,[1,3,4,5,6,6,7,7,10,10]],[1709959837,[1,3,3,4,5,5,5,6,9,13]],[1709959838,[1,3,4,5,5,6,6,7,8,12]],[1709959839,[1,3,4,5,6,9,17,31,44,53]],[1709959840,[1,3,4,5,5,6,6,7,12,25]],[1709959841,[1,2,3,4,4,5,5,6,8,12]],[1709959842,[1,2,3,5,5,5,6,7,9,10]],[1709959843,[1,2,3,5,5,5,6,8,11,15]],[1709959844,[1,3,3,5,5,6,7,8,14,17]],[1709959845,[1,3,3,4,5,5,5,7,9,17]],[1709959846,[1,2,3,4,4,5,5,7,14,18]],[1709959847,[1,3,3,5,5,5,6,7,13,17]],[1709959848,[1,2,3,4,4,5,5,6,9,13]],[1709959849,[1,2,3,4,4,5,5,6,8,11]],[1709959850,[1,2,3,4,4,5,5,6,9,12]],[1709959851,[1,2,3,4,5,5,6,7,9,11]],[1709959852,[1,1,3,3,4,4,4,5,8,9]],[1709959853,[1,2,3,4,4,5,5,6,7,12]],[1709959854,[1,2,4,5,5,6,7,10,35,44]],[1709959855,[1,2,3,4,5,5,6,7,9,12]],[1709959856,[1,3,4,5,6,7,9,37,92,102]]]);
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([[1709959612,[25,25,0]],[1709959613,[1,1,0]],[1709959614,[25,25,0]],[1709959615,[1,1,0]],[1709959616,[71,71,0]],[1709959617,[3,3,0]],[1709959618,[6,6,0]],[1709959619,[9,9,0]],[1709959620,[11,11,0]],[1709959621,[13,13,0]],[1709959622,[18,18,0]],[1709959623,[19,19,0]],[1709959624,[24,24,0]],[1709959625,[26,26,0]],[1709959626,[27,27,0]],[1709959627,[32,32,0]],[1709959628,[34,34,0]],[1709959629,[37,37,0]],[1709959630,[39,39,0]],[1709959631,[43,43,0]],[1709959632,[44,44,0]],[1709959633,[48,48,0]],[1709959634,[50,50,0]],[1709959635,[54,54,0]],[1709959636,[56,56,0]],[1709959637,[61,61,0]],[1709959638,[61,61,0]],[1709959639,[65,65,0]],[1709959640,[67,67,0]],[1709959641,[70,70,0]],[1709959642,[74,74,0]],[1709959643,[76,76,0]],[1709959644,[80,80,0]],[1709959645,[81,81,0]],[1709959646,[84,84,0]],[1709959647,[87,87,0]],[1709959648,[91,91,0]],[1709959649,[92,92,0]],[1709959650,[96,96,0]],[1709959651,[98,98,0]],[1709959652,[101,101,0]],[1709959653,[105,105,0]],[1709959654,[107,107,0]],[1709959655,[110,110,0]],[1709959656,[112,112,0]],[1709959657,[116,116,0]],[1709959658,[118,118,0]],[1709959659,[121,121,0]],[1709959660,[123,123,0]],[1709959661,[126,126,0]],[1709959662,[130,130,0]],[1709959663,[134,134,0]],[1709959664,[133,133,0]],[1709959665,[139,139,0]],[1709959666,[141,141,0]],[1709959667,[143,143,0]],[1709959668,[146,146,0]],[1709959669,[149,149,0]],[1709959670,[152,152,0]],[1709959671,[154,154,0]],[1709959672,[158,158,0]],[1709959673,[160,160,0]],[1709959674,[164,164,0]],[1709959675,[165,165,0]],[1709959676,[170,170,0]],[1709959677,[171,171,0]],[1709959678,[174,174,0]],[1709959679,[176,176,0]],[1709959680,[181,181,0]],[1709959681,[183,183,0]],[1709959682,[186,186,0]],[1709959683,[188,188,0]],[1709959684,[192,192,0]],[1709959685,[194,194,0]],[1709959686,[196,196,0]],[1709959687,[200,200,0]],[1709959688,[202,202,0]],[1709959689,[206,206,0]],[1709959690,[207,207,0]],[1709959691,[211,211,0]],[1709959692,[213,213,0]],[1709959693,[217,217,0]],[1709959694,[219,219,0]],[1709959695,[222,222,0]],[1709959696,[226,226,0]],[1709959697,[227,227,0]],[1709959698,[230,230,0]],[1709959699,[233,233,0]],[1709959700,[237,237,0]],[1709959701,[238,238,0]],[1709959702,[243,243,0]],[1709959703,[244,244,0]],[1709959704,[248,248,0]],[1709959705,[250,250,0]],[1709959706,[252,252,0]],[1709959707,[256,256,0]],[1709959708,[260,260,0]],[1709959709,[262,262,0]],[1709959710,[263,263,0]],[1709959711,[267,267,0]],[1709959712,[270,270,0]],[1709959713,[272,272,0]],[1709959714,[275,275,0]],[1709959715,[279,279,0]],[1709959716,[281,281,0]],[1709959717,[285,285,0]],[1709959718,[286,286,0]],[1709959719,[290,290,0]],[1709959720,[291,291,0]],[1709959721,[296,296,0]],[1709959722,[297,297,0]],[1709959723,[301,301,0]],[1709959724,[303,303,0]],[1709959725,[306,306,0]],[1709959726,[309,309,0]],[1709959727,[313,313,0]],[1709959728,[314,314,0]],[1709959729,[318,318,0]],[1709959730,[321,321,0]],[1709959731,[322,322,0]],[1709959732,[327,327,0]],[1709959733,[329,329,0]],[1709959734,[332,332,0]],[1709959735,[334,334,0]],[1709959736,[338,338,0]],[1709959737,[340,340,0]],[1709959738,[340,340,0]],[1709959739,[340,340,0]],[1709959740,[340,340,0]],[1709959741,[340,340,0]],[1709959742,[340,340,0]],[1709959743,[340,340,0]],[1709959744,[340,340,0]],[1709959745,[340,340,0]],[1709959746,[340,340,0]],[1709959747,[340,340,0]],[1709959748,[340,340,0]],[1709959749,[340,340,0]],[1709959750,[340,340,0]],[1709959751,[340,340,0]],[1709959752,[340,340,0]],[1709959753,[340,340,0]],[1709959754,[340,340,0]],[1709959755,[340,340,0]],[1709959756,[340,340,0]],[1709959757,[340,340,0]],[1709959758,[340,340,0]],[1709959759,[340,340,0]],[1709959760,[340,340,0]],[1709959761,[340,340,0]],[1709959762,[340,340,0]],[1709959763,[340,340,0]],[1709959764,[340,340,0]],[1709959765,[340,340,0]],[1709959766,[340,340,0]],[1709959767,[340,340,0]],[1709959768,[340,340,0]],[1709959769,[340,340,0]],[1709959770,[340,340,0]],[1709959771,[340,340,0]],[1709959772,[340,340,0]],[1709959773,[340,340,0]],[1709959774,[340,340,0]],[1709959775,[340,340,0]],[1709959776,[340,340,0]],[1709959777,[340,340,0]],[1709959778,[340,340,0]],[1709959779,[340,340,0]],[1709959780,[340,340,0]],[1709959781,[340,340,0]],[1709959782,[340,340,0]],[1709959783,[340,340,0]],[1709959784,[340,340,0]],[1709959785,[340,340,0]],[1709959786,[340,340,0]],[1709959787,[340,340,0]],[1709959788,[340,340,0]],[1709959789,[340,340,0]],[1709959790,[340,340,0]],[1709959791,[340,340,0]],[1709959792,[340,340,0]],[1709959793,[340,340,0]],[1709959794,[340,340,0]],[1709959795,[340,340,0]],[1709959796,[340,340,0]],[1709959797,[340,340,0]],[1709959798,[340,340,0]],[1709959799,[340,340,0]],[1709959800,[340,340,0]],[1709959801,[340,340,0]],[1709959802,[340,340,0]],[1709959803,[340,340,0]],[1709959804,[340,340,0]],[1709959805,[340,340,0]],[1709959806,[340,340,0]],[1709959807,[340,340,0]],[1709959808,[340,340,0]],[1709959809,[340,340,0]],[1709959810,[340,340,0]],[1709959811,[340,340,0]],[1709959812,[340,340,0]],[1709959813,[340,340,0]],[1709959814,[340,340,0]],[1709959815,[340,340,0]],[1709959816,[340,340,0]],[1709959817,[340,340,0]],[1709959818,[340,340,0]],[1709959819,[340,340,0]],[1709959820,[340,340,0]],[1709959821,[340,340,0]],[1709959822,[340,340,0]],[1709959823,[340,340,0]],[1709959824,[340,340,0]],[1709959825,[340,340,0]],[1709959826,[340,340,0]],[1709959827,[340,340,0]],[1709959828,[340,340,0]],[1709959829,[340,340,0]],[1709959830,[340,340,0]],[1709959831,[340,340,0]],[1709959832,[340,340,0]],[1709959833,[340,340,0]],[1709959834,[340,340,0]],[1709959835,[340,340,0]],[1709959836,[340,340,0]],[1709959837,[340,340,0]],[1709959838,[340,340,0]],[1709959839,[340,340,0]],[1709959840,[340,340,0]],[1709959841,[340,340,0]],[1709959842,[340,340,0]],[1709959843,[340,340,0]],[1709959844,[340,340,0]],[1709959845,[340,340,0]],[1709959846,[340,340,0]],[1709959847,[340,340,0]],[1709959848,[340,340,0]],[1709959849,[340,340,0]],[1709959850,[340,340,0]],[1709959851,[340,340,0]],[1709959852,[340,340,0]],[1709959853,[340,340,0]],[1709959854,[340,340,0]],[1709959855,[340,340,0]],[1709959856,[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:[