-
Notifications
You must be signed in to change notification settings - Fork 923
/
Copy pathindex.html
1173 lines (1104 loc) · 93.3 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-02-19 03:30:39 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 - danielwisky">
<span class="simulation-information-label">Description: </span>
<span>Rinha de Backend - 2024/Q1: Crébito - danielwisky</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: [
[1708313440000,0],[1708313441000,0],[1708313442000,0],[1708313443000,0],[1708313444000,1],[1708313445000,2],[1708313446000,2],[1708313447000,4],[1708313448000,4],[1708313449000,5],[1708313450000,6],[1708313451000,7],[1708313452000,8],[1708313453000,8],[1708313454000,10],[1708313455000,10],[1708313456000,12],[1708313457000,12],[1708313458000,14],[1708313459000,14],[1708313460000,15],[1708313461000,16],[1708313462000,17],[1708313463000,17],[1708313464000,19],[1708313465000,20],[1708313466000,20],[1708313467000,22],[1708313468000,22],[1708313469000,23],[1708313470000,25],[1708313471000,25],[1708313472000,26],[1708313473000,26],[1708313474000,28],[1708313475000,29],[1708313476000,30],[1708313477000,30],[1708313478000,32],[1708313479000,32],[1708313480000,33],[1708313481000,34],[1708313482000,35],[1708313483000,36],[1708313484000,37],[1708313485000,38],[1708313486000,39],[1708313487000,39],[1708313488000,43],[1708313489000,41],[1708313490000,43],[1708313491000,43],[1708313492000,44],[1708313493000,45],[1708313494000,46],[1708313495000,47],[1708313496000,48],[1708313497000,48],[1708313498000,50],[1708313499000,50],[1708313500000,52],[1708313501000,52],[1708313502000,53],[1708313503000,54],[1708313504000,56],[1708313505000,55],[1708313506000,57],[1708313507000,58],[1708313508000,59],[1708313509000,59],[1708313510000,61],[1708313511000,61],[1708313512000,63],[1708313513000,63],[1708313514000,64],[1708313515000,65],[1708313516000,67],[1708313517000,68],[1708313518000,69],[1708313519000,69],[1708313520000,71],[1708313521000,71],[1708313522000,73],[1708313523000,73],[1708313524000,77],[1708313525000,75],[1708313526000,76],[1708313527000,77],[1708313528000,78],[1708313529000,79],[1708313530000,80],[1708313531000,80],[1708313532000,81],[1708313533000,81],[1708313534000,82],[1708313535000,83],[1708313536000,85],[1708313537000,85],[1708313538000,86],[1708313539000,86],[1708313540000,88],[1708313541000,89],[1708313542000,89],[1708313543000,91],[1708313544000,91],[1708313545000,92],[1708313546000,94],[1708313547000,94],[1708313548000,95],[1708313549000,96],[1708313550000,101],[1708313551000,97],[1708313552000,99],[1708313553000,99],[1708313554000,101],[1708313555000,101],[1708313556000,103],[1708313557000,103],[1708313558000,104],[1708313559000,105],[1708313560000,106],[1708313561000,107],[1708313562000,107],[1708313563000,109],[1708313564000,110],[1708313565000,110],[1708313566000,110],[1708313567000,110],[1708313568000,110],[1708313569000,110],[1708313570000,110],[1708313571000,114],[1708313572000,110],[1708313573000,110],[1708313574000,110],[1708313575000,110],[1708313576000,110],[1708313577000,110],[1708313578000,110],[1708313579000,110],[1708313580000,110],[1708313581000,110],[1708313582000,110],[1708313583000,110],[1708313584000,110],[1708313585000,110],[1708313586000,110],[1708313587000,110],[1708313588000,110],[1708313589000,110],[1708313590000,110],[1708313591000,122],[1708313592000,110],[1708313593000,110],[1708313594000,110],[1708313595000,110],[1708313596000,110],[1708313597000,111],[1708313598000,110],[1708313599000,110],[1708313600000,110],[1708313601000,110],[1708313602000,110],[1708313603000,110],[1708313604000,110],[1708313605000,110],[1708313606000,110],[1708313607000,110],[1708313608000,110],[1708313609000,110],[1708313610000,110],[1708313611000,110],[1708313612000,110],[1708313613000,123],[1708313614000,110],[1708313615000,110],[1708313616000,110],[1708313617000,110],[1708313618000,110],[1708313619000,110],[1708313620000,110],[1708313621000,110],[1708313622000,110],[1708313623000,110],[1708313624000,110],[1708313625000,110],[1708313626000,110],[1708313627000,110],[1708313628000,110],[1708313629000,110],[1708313630000,110],[1708313631000,110],[1708313632000,110],[1708313633000,110],[1708313634000,110],[1708313635000,110],[1708313636000,110],[1708313637000,110],[1708313638000,110],[1708313639000,112],[1708313640000,110],[1708313641000,110],[1708313642000,110],[1708313643000,110],[1708313644000,110],[1708313645000,110],[1708313646000,110],[1708313647000,110],[1708313648000,110],[1708313649000,110],[1708313650000,110],[1708313651000,134],[1708313652000,110],[1708313653000,110],[1708313654000,110],[1708313655000,110],[1708313656000,110],[1708313657000,110],[1708313658000,110],[1708313659000,110],[1708313660000,115],[1708313661000,110],[1708313662000,110],[1708313663000,110],[1708313664000,110],[1708313665000,110],[1708313666000,110],[1708313667000,110],[1708313668000,110],[1708313669000,110],[1708313670000,110],[1708313671000,110],[1708313672000,110],[1708313673000,110],[1708313674000,110],[1708313675000,110],[1708313676000,110],[1708313677000,110],[1708313678000,110],[1708313679000,111],[1708313680000,110],[1708313681000,114],[1708313682000,110],[1708313683000,110],[1708313684000,108]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#68b65c',
name: 'débitos',
data: [
[1708313440000,0],[1708313441000,0],[1708313442000,0],[1708313443000,0],[1708313444000,1],[1708313445000,2],[1708313446000,4],[1708313447000,6],[1708313448000,7],[1708313449000,9],[1708313450000,11],[1708313451000,13],[1708313452000,15],[1708313453000,16],[1708313454000,19],[1708313455000,20],[1708313456000,22],[1708313457000,24],[1708313458000,25],[1708313459000,28],[1708313460000,29],[1708313461000,31],[1708313462000,33],[1708313463000,35],[1708313464000,37],[1708313465000,38],[1708313466000,40],[1708313467000,42],[1708313468000,44],[1708313469000,46],[1708313470000,47],[1708313471000,50],[1708313472000,51],[1708313473000,53],[1708313474000,55],[1708313475000,56],[1708313476000,59],[1708313477000,60],[1708313478000,62],[1708313479000,64],[1708313480000,67],[1708313481000,69],[1708313482000,70],[1708313483000,72],[1708313484000,75],[1708313485000,75],[1708313486000,78],[1708313487000,80],[1708313488000,83],[1708313489000,82],[1708313490000,84],[1708313491000,86],[1708313492000,88],[1708313493000,89],[1708313494000,92],[1708313495000,93],[1708313496000,95],[1708313497000,97],[1708313498000,98],[1708313499000,101],[1708313500000,102],[1708313501000,104],[1708313502000,106],[1708313503000,108],[1708313504000,110],[1708313505000,111],[1708313506000,113],[1708313507000,115],[1708313508000,117],[1708313509000,119],[1708313510000,120],[1708313511000,123],[1708313512000,124],[1708313513000,126],[1708313514000,128],[1708313515000,129],[1708313516000,132],[1708313517000,133],[1708313518000,136],[1708313519000,138],[1708313520000,140],[1708313521000,142],[1708313522000,143],[1708313523000,145],[1708313524000,152],[1708313525000,148],[1708313526000,151],[1708313527000,153],[1708313528000,154],[1708313529000,156],[1708313530000,157],[1708313531000,160],[1708313532000,161],[1708313533000,162],[1708313534000,165],[1708313535000,166],[1708313536000,168],[1708313537000,170],[1708313538000,171],[1708313539000,174],[1708313540000,175],[1708313541000,177],[1708313542000,179],[1708313543000,181],[1708313544000,183],[1708313545000,184],[1708313546000,186],[1708313547000,188],[1708313548000,190],[1708313549000,192],[1708313550000,198],[1708313551000,196],[1708313552000,197],[1708313553000,199],[1708313554000,201],[1708313555000,203],[1708313556000,206],[1708313557000,207],[1708313558000,209],[1708313559000,211],[1708313560000,213],[1708313561000,215],[1708313562000,216],[1708313563000,218],[1708313564000,221],[1708313565000,220],[1708313566000,221],[1708313567000,221],[1708313568000,221],[1708313569000,221],[1708313570000,221],[1708313571000,230],[1708313572000,221],[1708313573000,221],[1708313574000,221],[1708313575000,221],[1708313576000,221],[1708313577000,221],[1708313578000,223],[1708313579000,220],[1708313580000,221],[1708313581000,220],[1708313582000,221],[1708313583000,221],[1708313584000,221],[1708313585000,220],[1708313586000,221],[1708313587000,220],[1708313588000,220],[1708313589000,221],[1708313590000,221],[1708313591000,248],[1708313592000,220],[1708313593000,221],[1708313594000,220],[1708313595000,221],[1708313596000,220],[1708313597000,223],[1708313598000,220],[1708313599000,221],[1708313600000,221],[1708313601000,222],[1708313602000,221],[1708313603000,221],[1708313604000,220],[1708313605000,220],[1708313606000,220],[1708313607000,221],[1708313608000,221],[1708313609000,221],[1708313610000,221],[1708313611000,221],[1708313612000,220],[1708313613000,247],[1708313614000,220],[1708313615000,221],[1708313616000,221],[1708313617000,220],[1708313618000,221],[1708313619000,221],[1708313620000,221],[1708313621000,221],[1708313622000,221],[1708313623000,221],[1708313624000,221],[1708313625000,221],[1708313626000,221],[1708313627000,221],[1708313628000,221],[1708313629000,221],[1708313630000,221],[1708313631000,221],[1708313632000,221],[1708313633000,221],[1708313634000,221],[1708313635000,221],[1708313636000,221],[1708313637000,221],[1708313638000,221],[1708313639000,223],[1708313640000,221],[1708313641000,221],[1708313642000,221],[1708313643000,221],[1708313644000,221],[1708313645000,220],[1708313646000,221],[1708313647000,221],[1708313648000,221],[1708313649000,221],[1708313650000,221],[1708313651000,261],[1708313652000,221],[1708313653000,220],[1708313654000,221],[1708313655000,220],[1708313656000,220],[1708313657000,220],[1708313658000,221],[1708313659000,221],[1708313660000,231],[1708313661000,221],[1708313662000,221],[1708313663000,221],[1708313664000,221],[1708313665000,221],[1708313666000,221],[1708313667000,221],[1708313668000,220],[1708313669000,220],[1708313670000,221],[1708313671000,221],[1708313672000,220],[1708313673000,221],[1708313674000,221],[1708313675000,221],[1708313676000,221],[1708313677000,221],[1708313678000,221],[1708313679000,221],[1708313680000,221],[1708313681000,228],[1708313682000,221],[1708313683000,221],[1708313684000,217]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#f15b4f',
name: 'extratos',
data: [
[1708313440000,0],[1708313441000,0],[1708313442000,0],[1708313443000,0],[1708313444000,1],[1708313445000,2],[1708313446000,1],[1708313447000,1],[1708313448000,1],[1708313449000,1],[1708313450000,2],[1708313451000,1],[1708313452000,2],[1708313453000,2],[1708313454000,1],[1708313455000,2],[1708313456000,2],[1708313457000,2],[1708313458000,2],[1708313459000,2],[1708313460000,2],[1708313461000,2],[1708313462000,3],[1708313463000,2],[1708313464000,3],[1708313465000,2],[1708313466000,3],[1708313467000,2],[1708313468000,3],[1708313469000,3],[1708313470000,3],[1708313471000,3],[1708313472000,3],[1708313473000,3],[1708313474000,3],[1708313475000,4],[1708313476000,3],[1708313477000,3],[1708313478000,4],[1708313479000,3],[1708313480000,4],[1708313481000,4],[1708313482000,4],[1708313483000,4],[1708313484000,4],[1708313485000,4],[1708313486000,4],[1708313487000,4],[1708313488000,4],[1708313489000,4],[1708313490000,5],[1708313491000,4],[1708313492000,5],[1708313493000,5],[1708313494000,4],[1708313495000,5],[1708313496000,5],[1708313497000,5],[1708313498000,5],[1708313499000,5],[1708313500000,5],[1708313501000,5],[1708313502000,6],[1708313503000,5],[1708313504000,6],[1708313505000,5],[1708313506000,6],[1708313507000,5],[1708313508000,6],[1708313509000,6],[1708313510000,6],[1708313511000,6],[1708313512000,6],[1708313513000,6],[1708313514000,6],[1708313515000,7],[1708313516000,6],[1708313517000,6],[1708313518000,7],[1708313519000,6],[1708313520000,7],[1708313521000,7],[1708313522000,7],[1708313523000,7],[1708313524000,8],[1708313525000,7],[1708313526000,7],[1708313527000,7],[1708313528000,7],[1708313529000,7],[1708313530000,8],[1708313531000,7],[1708313532000,8],[1708313533000,8],[1708313534000,7],[1708313535000,8],[1708313536000,8],[1708313537000,8],[1708313538000,8],[1708313539000,8],[1708313540000,8],[1708313541000,8],[1708313542000,9],[1708313543000,8],[1708313544000,9],[1708313545000,8],[1708313546000,9],[1708313547000,8],[1708313548000,9],[1708313549000,9],[1708313550000,10],[1708313551000,9],[1708313552000,9],[1708313553000,9],[1708313554000,9],[1708313555000,10],[1708313556000,9],[1708313557000,9],[1708313558000,10],[1708313559000,9],[1708313560000,10],[1708313561000,10],[1708313562000,10],[1708313563000,10],[1708313564000,10],[1708313565000,10],[1708313566000,10],[1708313567000,10],[1708313568000,10],[1708313569000,10],[1708313570000,10],[1708313571000,11],[1708313572000,10],[1708313573000,10],[1708313574000,10],[1708313575000,10],[1708313576000,10],[1708313577000,10],[1708313578000,10],[1708313579000,10],[1708313580000,10],[1708313581000,10],[1708313582000,10],[1708313583000,10],[1708313584000,10],[1708313585000,10],[1708313586000,10],[1708313587000,10],[1708313588000,10],[1708313589000,10],[1708313590000,10],[1708313591000,11],[1708313592000,10],[1708313593000,10],[1708313594000,10],[1708313595000,10],[1708313596000,10],[1708313597000,11],[1708313598000,10],[1708313599000,10],[1708313600000,10],[1708313601000,10],[1708313602000,10],[1708313603000,10],[1708313604000,10],[1708313605000,10],[1708313606000,10],[1708313607000,10],[1708313608000,10],[1708313609000,10],[1708313610000,10],[1708313611000,10],[1708313612000,10],[1708313613000,12],[1708313614000,10],[1708313615000,10],[1708313616000,10],[1708313617000,10],[1708313618000,10],[1708313619000,10],[1708313620000,10],[1708313621000,10],[1708313622000,10],[1708313623000,10],[1708313624000,10],[1708313625000,10],[1708313626000,10],[1708313627000,10],[1708313628000,10],[1708313629000,10],[1708313630000,10],[1708313631000,10],[1708313632000,10],[1708313633000,10],[1708313634000,10],[1708313635000,10],[1708313636000,10],[1708313637000,10],[1708313638000,10],[1708313639000,10],[1708313640000,10],[1708313641000,10],[1708313642000,10],[1708313643000,10],[1708313644000,10],[1708313645000,10],[1708313646000,10],[1708313647000,10],[1708313648000,10],[1708313649000,10],[1708313650000,10],[1708313651000,12],[1708313652000,10],[1708313653000,10],[1708313654000,10],[1708313655000,10],[1708313656000,10],[1708313657000,10],[1708313658000,10],[1708313659000,10],[1708313660000,10],[1708313661000,10],[1708313662000,10],[1708313663000,10],[1708313664000,10],[1708313665000,10],[1708313666000,10],[1708313667000,10],[1708313668000,10],[1708313669000,10],[1708313670000,10],[1708313671000,10],[1708313672000,10],[1708313673000,10],[1708313674000,10],[1708313675000,10],[1708313676000,10],[1708313677000,10],[1708313678000,10],[1708313679000,10],[1708313680000,10],[1708313681000,11],[1708313682000,10],[1708313683000,10],[1708313684000,9]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FFDD00',
name: 'validações',
data: [
[1708313440000,0],[1708313441000,0],[1708313442000,0],[1708313443000,5],[1708313444000,5],[1708313445000,0],[1708313446000,0],[1708313447000,0],[1708313448000,0],[1708313449000,0],[1708313450000,0],[1708313451000,0],[1708313452000,0],[1708313453000,0],[1708313454000,0],[1708313455000,0],[1708313456000,0],[1708313457000,0],[1708313458000,0],[1708313459000,0],[1708313460000,0],[1708313461000,0],[1708313462000,0],[1708313463000,0],[1708313464000,0],[1708313465000,0],[1708313466000,0],[1708313467000,0],[1708313468000,0],[1708313469000,0],[1708313470000,0],[1708313471000,0],[1708313472000,0],[1708313473000,0],[1708313474000,0],[1708313475000,0],[1708313476000,0],[1708313477000,0],[1708313478000,0],[1708313479000,0],[1708313480000,0],[1708313481000,0],[1708313482000,0],[1708313483000,0],[1708313484000,0],[1708313485000,0],[1708313486000,0],[1708313487000,0],[1708313488000,0],[1708313489000,0],[1708313490000,0],[1708313491000,0],[1708313492000,0],[1708313493000,0],[1708313494000,0],[1708313495000,0],[1708313496000,0],[1708313497000,0],[1708313498000,0],[1708313499000,0],[1708313500000,0],[1708313501000,0],[1708313502000,0],[1708313503000,0],[1708313504000,0],[1708313505000,0],[1708313506000,0],[1708313507000,0],[1708313508000,0],[1708313509000,0],[1708313510000,0],[1708313511000,0],[1708313512000,0],[1708313513000,0],[1708313514000,0],[1708313515000,0],[1708313516000,0],[1708313517000,0],[1708313518000,0],[1708313519000,0],[1708313520000,0],[1708313521000,0],[1708313522000,0],[1708313523000,0],[1708313524000,0],[1708313525000,0],[1708313526000,0],[1708313527000,0],[1708313528000,0],[1708313529000,0],[1708313530000,0],[1708313531000,0],[1708313532000,0],[1708313533000,0],[1708313534000,0],[1708313535000,0],[1708313536000,0],[1708313537000,0],[1708313538000,0],[1708313539000,0],[1708313540000,0],[1708313541000,0],[1708313542000,0],[1708313543000,0],[1708313544000,0],[1708313545000,0],[1708313546000,0],[1708313547000,0],[1708313548000,0],[1708313549000,0],[1708313550000,0],[1708313551000,0],[1708313552000,0],[1708313553000,0],[1708313554000,0],[1708313555000,0],[1708313556000,0],[1708313557000,0],[1708313558000,0],[1708313559000,0],[1708313560000,0],[1708313561000,0],[1708313562000,0],[1708313563000,0],[1708313564000,0],[1708313565000,0],[1708313566000,0],[1708313567000,0],[1708313568000,0],[1708313569000,0],[1708313570000,0],[1708313571000,0],[1708313572000,0],[1708313573000,0],[1708313574000,0],[1708313575000,0],[1708313576000,0],[1708313577000,0],[1708313578000,0],[1708313579000,0],[1708313580000,0],[1708313581000,0],[1708313582000,0],[1708313583000,0],[1708313584000,0],[1708313585000,0],[1708313586000,0],[1708313587000,0],[1708313588000,0],[1708313589000,0],[1708313590000,0],[1708313591000,0],[1708313592000,0],[1708313593000,0],[1708313594000,0],[1708313595000,0],[1708313596000,0],[1708313597000,0],[1708313598000,0],[1708313599000,0],[1708313600000,0],[1708313601000,0],[1708313602000,0],[1708313603000,0],[1708313604000,0],[1708313605000,0],[1708313606000,0],[1708313607000,0],[1708313608000,0],[1708313609000,0],[1708313610000,0],[1708313611000,0],[1708313612000,0],[1708313613000,0],[1708313614000,0],[1708313615000,0],[1708313616000,0],[1708313617000,0],[1708313618000,0],[1708313619000,0],[1708313620000,0],[1708313621000,0],[1708313622000,0],[1708313623000,0],[1708313624000,0],[1708313625000,0],[1708313626000,0],[1708313627000,0],[1708313628000,0],[1708313629000,0],[1708313630000,0],[1708313631000,0],[1708313632000,0],[1708313633000,0],[1708313634000,0],[1708313635000,0],[1708313636000,0],[1708313637000,0],[1708313638000,0],[1708313639000,0],[1708313640000,0],[1708313641000,0],[1708313642000,0],[1708313643000,0],[1708313644000,0],[1708313645000,0],[1708313646000,0],[1708313647000,0],[1708313648000,0],[1708313649000,0],[1708313650000,0],[1708313651000,0],[1708313652000,0],[1708313653000,0],[1708313654000,0],[1708313655000,0],[1708313656000,0],[1708313657000,0],[1708313658000,0],[1708313659000,0],[1708313660000,0],[1708313661000,0],[1708313662000,0],[1708313663000,0],[1708313664000,0],[1708313665000,0],[1708313666000,0],[1708313667000,0],[1708313668000,0],[1708313669000,0],[1708313670000,0],[1708313671000,0],[1708313672000,0],[1708313673000,0],[1708313674000,0],[1708313675000,0],[1708313676000,0],[1708313677000,0],[1708313678000,0],[1708313679000,0],[1708313680000,0],[1708313681000,0],[1708313682000,0],[1708313683000,0],[1708313684000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00D5FF',
name: 'validação HTTP 404',
data: [
[1708313440000,0],[1708313441000,0],[1708313442000,0],[1708313443000,1],[1708313444000,0],[1708313445000,0],[1708313446000,0],[1708313447000,0],[1708313448000,0],[1708313449000,0],[1708313450000,0],[1708313451000,0],[1708313452000,0],[1708313453000,0],[1708313454000,0],[1708313455000,0],[1708313456000,0],[1708313457000,0],[1708313458000,0],[1708313459000,0],[1708313460000,0],[1708313461000,0],[1708313462000,0],[1708313463000,0],[1708313464000,0],[1708313465000,0],[1708313466000,0],[1708313467000,0],[1708313468000,0],[1708313469000,0],[1708313470000,0],[1708313471000,0],[1708313472000,0],[1708313473000,0],[1708313474000,0],[1708313475000,0],[1708313476000,0],[1708313477000,0],[1708313478000,0],[1708313479000,0],[1708313480000,0],[1708313481000,0],[1708313482000,0],[1708313483000,0],[1708313484000,0],[1708313485000,0],[1708313486000,0],[1708313487000,0],[1708313488000,0],[1708313489000,0],[1708313490000,0],[1708313491000,0],[1708313492000,0],[1708313493000,0],[1708313494000,0],[1708313495000,0],[1708313496000,0],[1708313497000,0],[1708313498000,0],[1708313499000,0],[1708313500000,0],[1708313501000,0],[1708313502000,0],[1708313503000,0],[1708313504000,0],[1708313505000,0],[1708313506000,0],[1708313507000,0],[1708313508000,0],[1708313509000,0],[1708313510000,0],[1708313511000,0],[1708313512000,0],[1708313513000,0],[1708313514000,0],[1708313515000,0],[1708313516000,0],[1708313517000,0],[1708313518000,0],[1708313519000,0],[1708313520000,0],[1708313521000,0],[1708313522000,0],[1708313523000,0],[1708313524000,0],[1708313525000,0],[1708313526000,0],[1708313527000,0],[1708313528000,0],[1708313529000,0],[1708313530000,0],[1708313531000,0],[1708313532000,0],[1708313533000,0],[1708313534000,0],[1708313535000,0],[1708313536000,0],[1708313537000,0],[1708313538000,0],[1708313539000,0],[1708313540000,0],[1708313541000,0],[1708313542000,0],[1708313543000,0],[1708313544000,0],[1708313545000,0],[1708313546000,0],[1708313547000,0],[1708313548000,0],[1708313549000,0],[1708313550000,0],[1708313551000,0],[1708313552000,0],[1708313553000,0],[1708313554000,0],[1708313555000,0],[1708313556000,0],[1708313557000,0],[1708313558000,0],[1708313559000,0],[1708313560000,0],[1708313561000,0],[1708313562000,0],[1708313563000,0],[1708313564000,0],[1708313565000,0],[1708313566000,0],[1708313567000,0],[1708313568000,0],[1708313569000,0],[1708313570000,0],[1708313571000,0],[1708313572000,0],[1708313573000,0],[1708313574000,0],[1708313575000,0],[1708313576000,0],[1708313577000,0],[1708313578000,0],[1708313579000,0],[1708313580000,0],[1708313581000,0],[1708313582000,0],[1708313583000,0],[1708313584000,0],[1708313585000,0],[1708313586000,0],[1708313587000,0],[1708313588000,0],[1708313589000,0],[1708313590000,0],[1708313591000,0],[1708313592000,0],[1708313593000,0],[1708313594000,0],[1708313595000,0],[1708313596000,0],[1708313597000,0],[1708313598000,0],[1708313599000,0],[1708313600000,0],[1708313601000,0],[1708313602000,0],[1708313603000,0],[1708313604000,0],[1708313605000,0],[1708313606000,0],[1708313607000,0],[1708313608000,0],[1708313609000,0],[1708313610000,0],[1708313611000,0],[1708313612000,0],[1708313613000,0],[1708313614000,0],[1708313615000,0],[1708313616000,0],[1708313617000,0],[1708313618000,0],[1708313619000,0],[1708313620000,0],[1708313621000,0],[1708313622000,0],[1708313623000,0],[1708313624000,0],[1708313625000,0],[1708313626000,0],[1708313627000,0],[1708313628000,0],[1708313629000,0],[1708313630000,0],[1708313631000,0],[1708313632000,0],[1708313633000,0],[1708313634000,0],[1708313635000,0],[1708313636000,0],[1708313637000,0],[1708313638000,0],[1708313639000,0],[1708313640000,0],[1708313641000,0],[1708313642000,0],[1708313643000,0],[1708313644000,0],[1708313645000,0],[1708313646000,0],[1708313647000,0],[1708313648000,0],[1708313649000,0],[1708313650000,0],[1708313651000,0],[1708313652000,0],[1708313653000,0],[1708313654000,0],[1708313655000,0],[1708313656000,0],[1708313657000,0],[1708313658000,0],[1708313659000,0],[1708313660000,0],[1708313661000,0],[1708313662000,0],[1708313663000,0],[1708313664000,0],[1708313665000,0],[1708313666000,0],[1708313667000,0],[1708313668000,0],[1708313669000,0],[1708313670000,0],[1708313671000,0],[1708313672000,0],[1708313673000,0],[1708313674000,0],[1708313675000,0],[1708313676000,0],[1708313677000,0],[1708313678000,0],[1708313679000,0],[1708313680000,0],[1708313681000,0],[1708313682000,0],[1708313683000,0],[1708313684000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00FF00',
name: 'validação concorrência saldo - 0',
data: [
[1708313440000,0],[1708313441000,0],[1708313442000,1],[1708313443000,0],[1708313444000,0],[1708313445000,0],[1708313446000,0],[1708313447000,0],[1708313448000,0],[1708313449000,0],[1708313450000,0],[1708313451000,0],[1708313452000,0],[1708313453000,0],[1708313454000,0],[1708313455000,0],[1708313456000,0],[1708313457000,0],[1708313458000,0],[1708313459000,0],[1708313460000,0],[1708313461000,0],[1708313462000,0],[1708313463000,0],[1708313464000,0],[1708313465000,0],[1708313466000,0],[1708313467000,0],[1708313468000,0],[1708313469000,0],[1708313470000,0],[1708313471000,0],[1708313472000,0],[1708313473000,0],[1708313474000,0],[1708313475000,0],[1708313476000,0],[1708313477000,0],[1708313478000,0],[1708313479000,0],[1708313480000,0],[1708313481000,0],[1708313482000,0],[1708313483000,0],[1708313484000,0],[1708313485000,0],[1708313486000,0],[1708313487000,0],[1708313488000,0],[1708313489000,0],[1708313490000,0],[1708313491000,0],[1708313492000,0],[1708313493000,0],[1708313494000,0],[1708313495000,0],[1708313496000,0],[1708313497000,0],[1708313498000,0],[1708313499000,0],[1708313500000,0],[1708313501000,0],[1708313502000,0],[1708313503000,0],[1708313504000,0],[1708313505000,0],[1708313506000,0],[1708313507000,0],[1708313508000,0],[1708313509000,0],[1708313510000,0],[1708313511000,0],[1708313512000,0],[1708313513000,0],[1708313514000,0],[1708313515000,0],[1708313516000,0],[1708313517000,0],[1708313518000,0],[1708313519000,0],[1708313520000,0],[1708313521000,0],[1708313522000,0],[1708313523000,0],[1708313524000,0],[1708313525000,0],[1708313526000,0],[1708313527000,0],[1708313528000,0],[1708313529000,0],[1708313530000,0],[1708313531000,0],[1708313532000,0],[1708313533000,0],[1708313534000,0],[1708313535000,0],[1708313536000,0],[1708313537000,0],[1708313538000,0],[1708313539000,0],[1708313540000,0],[1708313541000,0],[1708313542000,0],[1708313543000,0],[1708313544000,0],[1708313545000,0],[1708313546000,0],[1708313547000,0],[1708313548000,0],[1708313549000,0],[1708313550000,0],[1708313551000,0],[1708313552000,0],[1708313553000,0],[1708313554000,0],[1708313555000,0],[1708313556000,0],[1708313557000,0],[1708313558000,0],[1708313559000,0],[1708313560000,0],[1708313561000,0],[1708313562000,0],[1708313563000,0],[1708313564000,0],[1708313565000,0],[1708313566000,0],[1708313567000,0],[1708313568000,0],[1708313569000,0],[1708313570000,0],[1708313571000,0],[1708313572000,0],[1708313573000,0],[1708313574000,0],[1708313575000,0],[1708313576000,0],[1708313577000,0],[1708313578000,0],[1708313579000,0],[1708313580000,0],[1708313581000,0],[1708313582000,0],[1708313583000,0],[1708313584000,0],[1708313585000,0],[1708313586000,0],[1708313587000,0],[1708313588000,0],[1708313589000,0],[1708313590000,0],[1708313591000,0],[1708313592000,0],[1708313593000,0],[1708313594000,0],[1708313595000,0],[1708313596000,0],[1708313597000,0],[1708313598000,0],[1708313599000,0],[1708313600000,0],[1708313601000,0],[1708313602000,0],[1708313603000,0],[1708313604000,0],[1708313605000,0],[1708313606000,0],[1708313607000,0],[1708313608000,0],[1708313609000,0],[1708313610000,0],[1708313611000,0],[1708313612000,0],[1708313613000,0],[1708313614000,0],[1708313615000,0],[1708313616000,0],[1708313617000,0],[1708313618000,0],[1708313619000,0],[1708313620000,0],[1708313621000,0],[1708313622000,0],[1708313623000,0],[1708313624000,0],[1708313625000,0],[1708313626000,0],[1708313627000,0],[1708313628000,0],[1708313629000,0],[1708313630000,0],[1708313631000,0],[1708313632000,0],[1708313633000,0],[1708313634000,0],[1708313635000,0],[1708313636000,0],[1708313637000,0],[1708313638000,0],[1708313639000,0],[1708313640000,0],[1708313641000,0],[1708313642000,0],[1708313643000,0],[1708313644000,0],[1708313645000,0],[1708313646000,0],[1708313647000,0],[1708313648000,0],[1708313649000,0],[1708313650000,0],[1708313651000,0],[1708313652000,0],[1708313653000,0],[1708313654000,0],[1708313655000,0],[1708313656000,0],[1708313657000,0],[1708313658000,0],[1708313659000,0],[1708313660000,0],[1708313661000,0],[1708313662000,0],[1708313663000,0],[1708313664000,0],[1708313665000,0],[1708313666000,0],[1708313667000,0],[1708313668000,0],[1708313669000,0],[1708313670000,0],[1708313671000,0],[1708313672000,0],[1708313673000,0],[1708313674000,0],[1708313675000,0],[1708313676000,0],[1708313677000,0],[1708313678000,0],[1708313679000,0],[1708313680000,0],[1708313681000,0],[1708313682000,0],[1708313683000,0],[1708313684000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#9D00FF',
name: 'validação concorrência transações - c',
data: [
[1708313440000,0],[1708313441000,25],[1708313442000,25],[1708313443000,0],[1708313444000,0],[1708313445000,0],[1708313446000,0],[1708313447000,0],[1708313448000,0],[1708313449000,0],[1708313450000,0],[1708313451000,0],[1708313452000,0],[1708313453000,0],[1708313454000,0],[1708313455000,0],[1708313456000,0],[1708313457000,0],[1708313458000,0],[1708313459000,0],[1708313460000,0],[1708313461000,0],[1708313462000,0],[1708313463000,0],[1708313464000,0],[1708313465000,0],[1708313466000,0],[1708313467000,0],[1708313468000,0],[1708313469000,0],[1708313470000,0],[1708313471000,0],[1708313472000,0],[1708313473000,0],[1708313474000,0],[1708313475000,0],[1708313476000,0],[1708313477000,0],[1708313478000,0],[1708313479000,0],[1708313480000,0],[1708313481000,0],[1708313482000,0],[1708313483000,0],[1708313484000,0],[1708313485000,0],[1708313486000,0],[1708313487000,0],[1708313488000,0],[1708313489000,0],[1708313490000,0],[1708313491000,0],[1708313492000,0],[1708313493000,0],[1708313494000,0],[1708313495000,0],[1708313496000,0],[1708313497000,0],[1708313498000,0],[1708313499000,0],[1708313500000,0],[1708313501000,0],[1708313502000,0],[1708313503000,0],[1708313504000,0],[1708313505000,0],[1708313506000,0],[1708313507000,0],[1708313508000,0],[1708313509000,0],[1708313510000,0],[1708313511000,0],[1708313512000,0],[1708313513000,0],[1708313514000,0],[1708313515000,0],[1708313516000,0],[1708313517000,0],[1708313518000,0],[1708313519000,0],[1708313520000,0],[1708313521000,0],[1708313522000,0],[1708313523000,0],[1708313524000,0],[1708313525000,0],[1708313526000,0],[1708313527000,0],[1708313528000,0],[1708313529000,0],[1708313530000,0],[1708313531000,0],[1708313532000,0],[1708313533000,0],[1708313534000,0],[1708313535000,0],[1708313536000,0],[1708313537000,0],[1708313538000,0],[1708313539000,0],[1708313540000,0],[1708313541000,0],[1708313542000,0],[1708313543000,0],[1708313544000,0],[1708313545000,0],[1708313546000,0],[1708313547000,0],[1708313548000,0],[1708313549000,0],[1708313550000,0],[1708313551000,0],[1708313552000,0],[1708313553000,0],[1708313554000,0],[1708313555000,0],[1708313556000,0],[1708313557000,0],[1708313558000,0],[1708313559000,0],[1708313560000,0],[1708313561000,0],[1708313562000,0],[1708313563000,0],[1708313564000,0],[1708313565000,0],[1708313566000,0],[1708313567000,0],[1708313568000,0],[1708313569000,0],[1708313570000,0],[1708313571000,0],[1708313572000,0],[1708313573000,0],[1708313574000,0],[1708313575000,0],[1708313576000,0],[1708313577000,0],[1708313578000,0],[1708313579000,0],[1708313580000,0],[1708313581000,0],[1708313582000,0],[1708313583000,0],[1708313584000,0],[1708313585000,0],[1708313586000,0],[1708313587000,0],[1708313588000,0],[1708313589000,0],[1708313590000,0],[1708313591000,0],[1708313592000,0],[1708313593000,0],[1708313594000,0],[1708313595000,0],[1708313596000,0],[1708313597000,0],[1708313598000,0],[1708313599000,0],[1708313600000,0],[1708313601000,0],[1708313602000,0],[1708313603000,0],[1708313604000,0],[1708313605000,0],[1708313606000,0],[1708313607000,0],[1708313608000,0],[1708313609000,0],[1708313610000,0],[1708313611000,0],[1708313612000,0],[1708313613000,0],[1708313614000,0],[1708313615000,0],[1708313616000,0],[1708313617000,0],[1708313618000,0],[1708313619000,0],[1708313620000,0],[1708313621000,0],[1708313622000,0],[1708313623000,0],[1708313624000,0],[1708313625000,0],[1708313626000,0],[1708313627000,0],[1708313628000,0],[1708313629000,0],[1708313630000,0],[1708313631000,0],[1708313632000,0],[1708313633000,0],[1708313634000,0],[1708313635000,0],[1708313636000,0],[1708313637000,0],[1708313638000,0],[1708313639000,0],[1708313640000,0],[1708313641000,0],[1708313642000,0],[1708313643000,0],[1708313644000,0],[1708313645000,0],[1708313646000,0],[1708313647000,0],[1708313648000,0],[1708313649000,0],[1708313650000,0],[1708313651000,0],[1708313652000,0],[1708313653000,0],[1708313654000,0],[1708313655000,0],[1708313656000,0],[1708313657000,0],[1708313658000,0],[1708313659000,0],[1708313660000,0],[1708313661000,0],[1708313662000,0],[1708313663000,0],[1708313664000,0],[1708313665000,0],[1708313666000,0],[1708313667000,0],[1708313668000,0],[1708313669000,0],[1708313670000,0],[1708313671000,0],[1708313672000,0],[1708313673000,0],[1708313674000,0],[1708313675000,0],[1708313676000,0],[1708313677000,0],[1708313678000,0],[1708313679000,0],[1708313680000,0],[1708313681000,0],[1708313682000,0],[1708313683000,0],[1708313684000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FF00E1',
name: 'validação concorrência saldo - -25',
data: [
[1708313440000,1],[1708313441000,1],[1708313442000,0],[1708313443000,0],[1708313444000,0],[1708313445000,0],[1708313446000,0],[1708313447000,0],[1708313448000,0],[1708313449000,0],[1708313450000,0],[1708313451000,0],[1708313452000,0],[1708313453000,0],[1708313454000,0],[1708313455000,0],[1708313456000,0],[1708313457000,0],[1708313458000,0],[1708313459000,0],[1708313460000,0],[1708313461000,0],[1708313462000,0],[1708313463000,0],[1708313464000,0],[1708313465000,0],[1708313466000,0],[1708313467000,0],[1708313468000,0],[1708313469000,0],[1708313470000,0],[1708313471000,0],[1708313472000,0],[1708313473000,0],[1708313474000,0],[1708313475000,0],[1708313476000,0],[1708313477000,0],[1708313478000,0],[1708313479000,0],[1708313480000,0],[1708313481000,0],[1708313482000,0],[1708313483000,0],[1708313484000,0],[1708313485000,0],[1708313486000,0],[1708313487000,0],[1708313488000,0],[1708313489000,0],[1708313490000,0],[1708313491000,0],[1708313492000,0],[1708313493000,0],[1708313494000,0],[1708313495000,0],[1708313496000,0],[1708313497000,0],[1708313498000,0],[1708313499000,0],[1708313500000,0],[1708313501000,0],[1708313502000,0],[1708313503000,0],[1708313504000,0],[1708313505000,0],[1708313506000,0],[1708313507000,0],[1708313508000,0],[1708313509000,0],[1708313510000,0],[1708313511000,0],[1708313512000,0],[1708313513000,0],[1708313514000,0],[1708313515000,0],[1708313516000,0],[1708313517000,0],[1708313518000,0],[1708313519000,0],[1708313520000,0],[1708313521000,0],[1708313522000,0],[1708313523000,0],[1708313524000,0],[1708313525000,0],[1708313526000,0],[1708313527000,0],[1708313528000,0],[1708313529000,0],[1708313530000,0],[1708313531000,0],[1708313532000,0],[1708313533000,0],[1708313534000,0],[1708313535000,0],[1708313536000,0],[1708313537000,0],[1708313538000,0],[1708313539000,0],[1708313540000,0],[1708313541000,0],[1708313542000,0],[1708313543000,0],[1708313544000,0],[1708313545000,0],[1708313546000,0],[1708313547000,0],[1708313548000,0],[1708313549000,0],[1708313550000,0],[1708313551000,0],[1708313552000,0],[1708313553000,0],[1708313554000,0],[1708313555000,0],[1708313556000,0],[1708313557000,0],[1708313558000,0],[1708313559000,0],[1708313560000,0],[1708313561000,0],[1708313562000,0],[1708313563000,0],[1708313564000,0],[1708313565000,0],[1708313566000,0],[1708313567000,0],[1708313568000,0],[1708313569000,0],[1708313570000,0],[1708313571000,0],[1708313572000,0],[1708313573000,0],[1708313574000,0],[1708313575000,0],[1708313576000,0],[1708313577000,0],[1708313578000,0],[1708313579000,0],[1708313580000,0],[1708313581000,0],[1708313582000,0],[1708313583000,0],[1708313584000,0],[1708313585000,0],[1708313586000,0],[1708313587000,0],[1708313588000,0],[1708313589000,0],[1708313590000,0],[1708313591000,0],[1708313592000,0],[1708313593000,0],[1708313594000,0],[1708313595000,0],[1708313596000,0],[1708313597000,0],[1708313598000,0],[1708313599000,0],[1708313600000,0],[1708313601000,0],[1708313602000,0],[1708313603000,0],[1708313604000,0],[1708313605000,0],[1708313606000,0],[1708313607000,0],[1708313608000,0],[1708313609000,0],[1708313610000,0],[1708313611000,0],[1708313612000,0],[1708313613000,0],[1708313614000,0],[1708313615000,0],[1708313616000,0],[1708313617000,0],[1708313618000,0],[1708313619000,0],[1708313620000,0],[1708313621000,0],[1708313622000,0],[1708313623000,0],[1708313624000,0],[1708313625000,0],[1708313626000,0],[1708313627000,0],[1708313628000,0],[1708313629000,0],[1708313630000,0],[1708313631000,0],[1708313632000,0],[1708313633000,0],[1708313634000,0],[1708313635000,0],[1708313636000,0],[1708313637000,0],[1708313638000,0],[1708313639000,0],[1708313640000,0],[1708313641000,0],[1708313642000,0],[1708313643000,0],[1708313644000,0],[1708313645000,0],[1708313646000,0],[1708313647000,0],[1708313648000,0],[1708313649000,0],[1708313650000,0],[1708313651000,0],[1708313652000,0],[1708313653000,0],[1708313654000,0],[1708313655000,0],[1708313656000,0],[1708313657000,0],[1708313658000,0],[1708313659000,0],[1708313660000,0],[1708313661000,0],[1708313662000,0],[1708313663000,0],[1708313664000,0],[1708313665000,0],[1708313666000,0],[1708313667000,0],[1708313668000,0],[1708313669000,0],[1708313670000,0],[1708313671000,0],[1708313672000,0],[1708313673000,0],[1708313674000,0],[1708313675000,0],[1708313676000,0],[1708313677000,0],[1708313678000,0],[1708313679000,0],[1708313680000,0],[1708313681000,0],[1708313682000,0],[1708313683000,0],[1708313684000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#AECAEB',
name: 'validação concorrência transações - d',
data: [
[1708313440000,25],[1708313441000,0],[1708313442000,0],[1708313443000,0],[1708313444000,0],[1708313445000,0],[1708313446000,0],[1708313447000,0],[1708313448000,0],[1708313449000,0],[1708313450000,0],[1708313451000,0],[1708313452000,0],[1708313453000,0],[1708313454000,0],[1708313455000,0],[1708313456000,0],[1708313457000,0],[1708313458000,0],[1708313459000,0],[1708313460000,0],[1708313461000,0],[1708313462000,0],[1708313463000,0],[1708313464000,0],[1708313465000,0],[1708313466000,0],[1708313467000,0],[1708313468000,0],[1708313469000,0],[1708313470000,0],[1708313471000,0],[1708313472000,0],[1708313473000,0],[1708313474000,0],[1708313475000,0],[1708313476000,0],[1708313477000,0],[1708313478000,0],[1708313479000,0],[1708313480000,0],[1708313481000,0],[1708313482000,0],[1708313483000,0],[1708313484000,0],[1708313485000,0],[1708313486000,0],[1708313487000,0],[1708313488000,0],[1708313489000,0],[1708313490000,0],[1708313491000,0],[1708313492000,0],[1708313493000,0],[1708313494000,0],[1708313495000,0],[1708313496000,0],[1708313497000,0],[1708313498000,0],[1708313499000,0],[1708313500000,0],[1708313501000,0],[1708313502000,0],[1708313503000,0],[1708313504000,0],[1708313505000,0],[1708313506000,0],[1708313507000,0],[1708313508000,0],[1708313509000,0],[1708313510000,0],[1708313511000,0],[1708313512000,0],[1708313513000,0],[1708313514000,0],[1708313515000,0],[1708313516000,0],[1708313517000,0],[1708313518000,0],[1708313519000,0],[1708313520000,0],[1708313521000,0],[1708313522000,0],[1708313523000,0],[1708313524000,0],[1708313525000,0],[1708313526000,0],[1708313527000,0],[1708313528000,0],[1708313529000,0],[1708313530000,0],[1708313531000,0],[1708313532000,0],[1708313533000,0],[1708313534000,0],[1708313535000,0],[1708313536000,0],[1708313537000,0],[1708313538000,0],[1708313539000,0],[1708313540000,0],[1708313541000,0],[1708313542000,0],[1708313543000,0],[1708313544000,0],[1708313545000,0],[1708313546000,0],[1708313547000,0],[1708313548000,0],[1708313549000,0],[1708313550000,0],[1708313551000,0],[1708313552000,0],[1708313553000,0],[1708313554000,0],[1708313555000,0],[1708313556000,0],[1708313557000,0],[1708313558000,0],[1708313559000,0],[1708313560000,0],[1708313561000,0],[1708313562000,0],[1708313563000,0],[1708313564000,0],[1708313565000,0],[1708313566000,0],[1708313567000,0],[1708313568000,0],[1708313569000,0],[1708313570000,0],[1708313571000,0],[1708313572000,0],[1708313573000,0],[1708313574000,0],[1708313575000,0],[1708313576000,0],[1708313577000,0],[1708313578000,0],[1708313579000,0],[1708313580000,0],[1708313581000,0],[1708313582000,0],[1708313583000,0],[1708313584000,0],[1708313585000,0],[1708313586000,0],[1708313587000,0],[1708313588000,0],[1708313589000,0],[1708313590000,0],[1708313591000,0],[1708313592000,0],[1708313593000,0],[1708313594000,0],[1708313595000,0],[1708313596000,0],[1708313597000,0],[1708313598000,0],[1708313599000,0],[1708313600000,0],[1708313601000,0],[1708313602000,0],[1708313603000,0],[1708313604000,0],[1708313605000,0],[1708313606000,0],[1708313607000,0],[1708313608000,0],[1708313609000,0],[1708313610000,0],[1708313611000,0],[1708313612000,0],[1708313613000,0],[1708313614000,0],[1708313615000,0],[1708313616000,0],[1708313617000,0],[1708313618000,0],[1708313619000,0],[1708313620000,0],[1708313621000,0],[1708313622000,0],[1708313623000,0],[1708313624000,0],[1708313625000,0],[1708313626000,0],[1708313627000,0],[1708313628000,0],[1708313629000,0],[1708313630000,0],[1708313631000,0],[1708313632000,0],[1708313633000,0],[1708313634000,0],[1708313635000,0],[1708313636000,0],[1708313637000,0],[1708313638000,0],[1708313639000,0],[1708313640000,0],[1708313641000,0],[1708313642000,0],[1708313643000,0],[1708313644000,0],[1708313645000,0],[1708313646000,0],[1708313647000,0],[1708313648000,0],[1708313649000,0],[1708313650000,0],[1708313651000,0],[1708313652000,0],[1708313653000,0],[1708313654000,0],[1708313655000,0],[1708313656000,0],[1708313657000,0],[1708313658000,0],[1708313659000,0],[1708313660000,0],[1708313661000,0],[1708313662000,0],[1708313663000,0],[1708313664000,0],[1708313665000,0],[1708313666000,0],[1708313667000,0],[1708313668000,0],[1708313669000,0],[1708313670000,0],[1708313671000,0],[1708313672000,0],[1708313673000,0],[1708313674000,0],[1708313675000,0],[1708313676000,0],[1708313677000,0],[1708313678000,0],[1708313679000,0],[1708313680000,0],[1708313681000,0],[1708313682000,0],[1708313683000,0],[1708313684000,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', '10', '14', '18', '22', '25', '29', '33', '36', '40', '44', '48', '51', '55', '59', '63', '66', '70', '74', '77', '81', '85', '89', '92', '96', '100', '104', '107', '111', '115', '118', '122', '126', '130', '133', '137', '141', '145', '148', '152', '156', '160', '163', '167', '171', '174', '178', '182', '186', '189', '193', '197', '201', '204', '208', '212', '215', '219', '223', '227', '230', '234', '238', '242', '245', '249', '253', '257', '260', '264', '268', '271', '275', '279', '283', '286', '290', '294', '298', '301', '305', '309', '312', '316', '320', '324', '327', '331', '335', '339', '342', '346', '350', '353', '357', '361', '365', '368', '372'],
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: [
92.11,3.73,0.31,0.2,0.28,0.26,0.24,0.2,0.19,0.15,0.16,0.11,0.21,0.2,0.09,0.13,0.13,0.13,0.09,0.08,0.11,0.08,0.09,0.05,0.04,0.03,0.03,0.02,0.03,0.02,0.01,0.02,0.0,0.01,0.01,0.01,0.0,0.0,0.01,0.02,0.01,0.01,0.01,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
],
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([[1708313440,[29,43,53,63,64,66,67,68,68,69]],[1708313441,[4,4,4,4,4,4,4,4,4,4]],[1708313442,[12,48,55,62,62,62,65,67,68,69]],[1708313443,[4,4,4,4,4,4,4,4,4,4]],[1708313444,[1,3,4,10,11,12,16,19,25,28]],[1708313445,[6,6,6,6,6,6,6,6,6,6]],[1708313446,[4,4,4,4,5,5,5,5,5,5]],[1708313447,[4,5,5,5,5,6,7,7,7,7]],[1708313448,[4,4,4,4,5,5,5,5,5,5]],[1708313449,[3,4,4,4,4,4,4,4,4,5]],[1708313450,[3,3,4,4,4,5,5,6,6,7]],[1708313451,[3,3,3,4,4,4,4,4,4,4]],[1708313452,[3,3,3,4,4,4,4,11,19,22]],[1708313453,[2,3,3,3,4,4,4,4,4,4]],[1708313454,[3,3,3,3,3,4,4,4,5,5]],[1708313455,[3,3,4,6,6,6,6,7,8,8]],[1708313456,[2,3,3,3,3,3,4,4,20,29]],[1708313457,[2,3,3,3,3,4,4,4,7,9]],[1708313458,[2,3,3,3,3,4,4,4,4,5]],[1708313459,[2,3,3,3,3,3,4,4,4,4]],[1708313460,[2,3,3,3,3,3,3,4,4,5]],[1708313461,[2,2,3,3,3,3,3,3,4,4]],[1708313462,[2,3,3,3,3,3,3,4,17,21]],[1708313463,[2,2,3,3,3,3,3,3,3,3]],[1708313464,[1,2,2,3,3,3,3,3,4,4]],[1708313465,[1,2,2,3,3,3,3,3,3,3]],[1708313466,[1,2,2,3,3,3,3,3,3,4]],[1708313467,[1,2,2,3,3,3,3,3,21,44]],[1708313468,[1,2,2,2,2,3,3,3,9,22]],[1708313469,[1,2,2,3,3,3,3,3,3,4]],[1708313470,[2,2,2,3,3,3,3,3,3,4]],[1708313471,[1,2,3,3,3,3,3,3,3,4]],[1708313472,[1,2,2,2,2,3,3,3,3,3]],[1708313473,[1,2,2,2,2,3,3,3,9,16]],[1708313474,[1,2,2,2,2,2,2,2,3,3]],[1708313475,[1,2,2,2,2,2,2,3,3,3]],[1708313476,[1,2,2,2,2,2,2,2,3,4]],[1708313477,[1,2,2,3,3,3,3,3,3,3]],[1708313478,[2,2,2,3,3,3,3,4,30,46]],[1708313479,[2,2,2,3,3,3,3,3,3,9]],[1708313480,[2,2,3,3,3,3,3,4,4,4]],[1708313481,[2,2,3,3,3,3,3,3,4,4]],[1708313482,[1,2,2,3,3,3,3,3,3,3]],[1708313483,[1,2,2,3,3,3,7,34,63,78]],[1708313484,[1,2,2,2,2,3,3,3,3,9]],[1708313485,[1,2,2,2,2,2,2,3,3,4]],[1708313486,[1,2,2,2,2,2,2,2,3,3]],[1708313487,[1,2,2,2,2,3,3,3,3,4]],[1708313488,[1,2,2,2,2,2,3,19,57,74]],[1708313489,[1,2,2,2,2,2,3,3,3,3]],[1708313490,[1,2,2,2,2,2,2,3,3,3]],[1708313491,[1,2,2,2,2,2,2,3,3,3]],[1708313492,[1,2,2,2,3,3,3,3,6,9]],[1708313493,[1,2,2,3,3,3,6,35,64,70]],[1708313494,[1,1,2,2,2,2,2,2,3,3]],[1708313495,[1,1,2,2,2,2,2,2,11,27]],[1708313496,[1,1,2,2,2,2,2,2,2,3]],[1708313497,[1,1,1,2,2,2,2,2,3,3]],[1708313498,[1,1,2,2,2,2,2,6,58,81]],[1708313499,[1,1,2,2,2,2,2,2,2,3]],[1708313500,[1,2,2,2,2,2,2,2,3,3]],[1708313501,[1,2,2,2,2,2,2,3,3,3]],[1708313502,[1,2,2,2,2,2,3,3,3,3]],[1708313503,[1,2,2,2,2,2,2,22,69,78]],[1708313504,[1,1,2,2,2,2,2,2,3,3]],[1708313505,[1,1,2,2,2,2,3,3,3,4]],[1708313506,[1,1,2,2,2,2,2,2,3,3]],[1708313507,[1,1,2,2,2,2,2,2,3,3]],[1708313508,[1,1,2,2,2,2,2,4,48,56]],[1708313509,[1,1,2,2,2,2,2,2,18,27]],[1708313510,[1,1,2,2,2,2,2,2,3,3]],[1708313511,[1,1,2,2,2,2,2,2,2,3]],[1708313512,[1,1,2,2,2,2,2,2,3,3]],[1708313513,[1,2,2,2,2,3,3,3,4,4]],[1708313514,[2,2,2,2,3,3,3,16,60,81]],[1708313515,[1,1,2,3,3,3,3,4,4,5]],[1708313516,[1,2,2,2,2,3,3,3,3,6]],[1708313517,[1,2,2,2,2,2,2,3,3,3]],[1708313518,[1,1,1,2,2,2,2,2,3,3]],[1708313519,[1,1,2,2,2,2,9,35,78,89]],[1708313520,[1,1,2,2,2,2,2,2,2,3]],[1708313521,[1,1,2,2,2,2,2,2,2,2]],[1708313522,[1,1,2,2,2,2,2,2,3,5]],[1708313523,[1,1,2,2,2,2,2,2,2,2]],[1708313524,[1,1,2,2,2,2,2,23,64,86]],[1708313525,[1,1,1,2,2,2,2,2,2,3]],[1708313526,[1,1,2,2,2,2,2,2,2,3]],[1708313527,[1,1,2,2,2,2,2,2,3,3]],[1708313528,[1,2,2,2,2,2,2,3,3,3]],[1708313529,[1,2,2,2,2,3,4,30,68,85]],[1708313530,[1,2,2,2,2,2,2,2,2,3]],[1708313531,[1,2,2,2,2,2,3,22,57,72]],[1708313532,[1,2,2,2,2,2,2,2,3,3]],[1708313533,[1,2,2,2,2,2,2,2,3,3]],[1708313534,[1,2,2,2,2,3,13,34,75,84]],[1708313535,[1,2,2,2,2,2,2,3,3,3]],[1708313536,[1,2,2,2,2,2,2,3,3,6]],[1708313537,[1,2,2,2,2,2,2,2,3,3]],[1708313538,[1,2,2,2,2,2,2,2,3,3]],[1708313539,[1,2,2,2,2,2,2,2,3,36]],[1708313540,[1,2,2,2,2,2,7,29,66,85]],[1708313541,[1,2,2,2,2,2,2,2,3,4]],[1708313542,[1,1,2,2,2,2,2,3,3,3]],[1708313543,[1,1,2,2,2,2,2,2,4,23]],[1708313544,[1,1,1,2,2,2,2,2,3,3]],[1708313545,[1,1,2,2,2,3,11,34,72,81]],[1708313546,[1,2,2,2,2,2,2,3,4,25]],[1708313547,[1,2,2,2,2,2,3,3,3,4]],[1708313548,[1,2,2,2,2,3,3,3,6,24]],[1708313549,[1,2,2,2,2,2,3,3,3,4]],[1708313550,[1,2,2,3,3,18,37,51,77,85]],[1708313551,[1,2,2,2,2,2,2,3,3,4]],[1708313552,[1,2,2,2,2,2,3,3,6,26]],[1708313553,[1,1,2,2,2,2,2,3,4,24]],[1708313554,[1,1,1,2,2,2,2,2,3,3]],[1708313555,[1,1,2,2,8,23,40,64,104,165]],[1708313556,[1,1,2,2,2,3,3,3,4,6]],[1708313557,[1,2,2,3,3,3,4,4,5,25]],[1708313558,[1,3,3,4,4,4,4,4,7,25]],[1708313559,[1,2,2,3,3,3,4,5,6,6]],[1708313560,[2,3,3,4,4,5,22,54,77,96]],[1708313561,[1,2,2,3,3,3,4,5,28,41]],[1708313562,[1,3,3,4,4,4,4,4,9,29]],[1708313563,[1,1,2,2,2,2,3,3,5,6]],[1708313564,[1,2,3,3,3,3,4,4,8,28]],[1708313565,[1,1,2,2,2,2,3,3,11,25]],[1708313566,[2,3,3,5,5,8,25,45,67,89]],[1708313567,[1,2,2,2,2,3,3,3,6,26]],[1708313568,[1,3,3,4,4,4,4,4,5,6]],[1708313569,[1,2,2,2,2,3,3,3,5,25]],[1708313570,[1,3,3,4,4,4,5,5,18,30]],[1708313571,[1,2,2,3,4,8,30,53,80,84]],[1708313572,[1,3,3,4,4,4,4,5,10,29]],[1708313573,[1,2,2,3,3,3,3,4,4,5]],[1708313574,[1,2,3,3,3,4,4,4,7,27]],[1708313575,[1,2,2,2,3,3,3,3,12,26]],[1708313576,[1,2,3,5,5,15,39,60,84,99]],[1708313577,[1,2,2,3,3,4,4,4,7,26]],[1708313578,[1,1,2,3,3,3,4,4,9,28]],[1708313579,[1,2,2,3,3,3,3,4,9,29]],[1708313580,[1,2,3,4,4,4,4,5,11,29]],[1708313581,[1,2,3,4,4,7,51,77,134,178]],[1708313582,[1,2,2,4,4,4,5,6,33,48]],[1708313583,[1,2,2,4,4,4,4,5,10,31]],[1708313584,[1,2,2,3,3,4,4,4,5,7]],[1708313585,[1,2,2,4,4,4,4,5,12,32]],[1708313586,[1,2,2,3,3,4,5,5,13,30]],[1708313587,[1,2,3,4,7,25,43,61,97,107]],[1708313588,[1,2,2,3,3,3,3,4,7,25]],[1708313589,[2,2,3,4,4,4,4,5,5,6]],[1708313590,[1,1,2,2,2,3,3,4,8,26]],[1708313591,[1,2,28,90,102,117,141,163,212,323]],[1708313592,[1,2,2,3,3,13,32,53,79,96]],[1708313593,[1,2,3,4,4,5,5,5,6,7]],[1708313594,[1,1,2,2,2,2,2,2,3,4]],[1708313595,[1,2,2,3,3,4,4,4,5,5]],[1708313596,[1,1,2,2,2,2,2,3,3,6]],[1708313597,[1,2,3,5,14,31,47,67,87,94]],[1708313598,[1,2,2,2,2,2,2,3,3,4]],[1708313599,[1,2,3,4,4,4,5,5,6,6]],[1708313600,[1,2,2,2,2,2,2,3,3,4]],[1708313601,[1,2,3,4,4,4,5,5,6,6]],[1708313602,[1,2,2,3,3,4,32,52,85,106]],[1708313603,[1,2,3,5,5,5,6,6,28,34]],[1708313604,[1,2,2,2,2,2,2,3,3,4]],[1708313605,[1,2,2,3,3,3,4,4,4,6]],[1708313606,[1,1,2,2,2,2,2,3,3,4]],[1708313607,[1,2,2,3,4,4,4,4,5,6]],[1708313608,[1,2,2,3,3,12,31,59,96,144]],[1708313609,[1,2,2,3,3,3,4,4,5,5]],[1708313610,[1,1,2,2,2,2,2,3,3,4]],[1708313611,[1,1,1,2,3,3,3,3,6,23]],[1708313612,[1,1,2,2,2,2,2,3,3,4]],[1708313613,[1,2,2,4,20,58,86,118,168,178]],[1708313614,[1,2,2,2,2,3,3,4,5,26]],[1708313615,[1,2,2,2,3,3,3,4,5,7]],[1708313616,[1,2,2,3,3,3,3,4,10,26]],[1708313617,[1,1,2,2,2,2,3,3,4,27]],[1708313618,[1,2,2,3,4,5,11,38,69,73]],[1708313619,[1,2,3,4,4,4,5,6,8,27]],[1708313620,[1,2,2,3,3,3,3,4,8,27]],[1708313621,[1,3,3,4,4,4,4,5,6,10]],[1708313622,[1,2,2,3,3,3,3,4,9,26]],[1708313623,[1,2,3,4,5,12,39,62,96,121]],[1708313624,[1,2,2,3,3,3,3,4,4,5]],[1708313625,[1,2,3,4,4,4,4,5,11,31]],[1708313626,[1,2,2,3,4,4,4,4,5,6]],[1708313627,[1,2,2,3,3,3,3,4,6,26]],[1708313628,[1,2,2,3,3,3,4,27,74,168]],[1708313629,[1,3,5,6,7,25,38,63,95,165]],[1708313630,[1,2,3,5,5,5,5,5,6,9]],[1708313631,[1,2,3,5,5,5,6,6,7,7]],[1708313632,[1,2,3,4,4,5,5,6,22,34]],[1708313633,[1,2,2,3,4,4,4,5,5,6]],[1708313634,[1,2,3,5,6,16,29,50,71,86]],[1708313635,[1,2,2,3,3,3,3,4,15,29]],[1708313636,[1,2,3,3,3,3,4,4,5,5]],[1708313637,[1,2,2,2,3,3,3,4,7,26]],[1708313638,[1,2,2,3,3,3,3,4,5,5]],[1708313639,[1,1,2,4,11,32,46,79,116,151]],[1708313640,[1,3,3,4,4,4,4,5,8,29]],[1708313641,[1,2,2,3,3,3,3,4,5,6]],[1708313642,[1,2,3,4,4,4,4,5,9,29]],[1708313643,[1,1,2,2,2,2,2,3,3,3]],[1708313644,[1,3,3,5,8,29,47,67,90,128]],[1708313645,[1,2,2,2,2,3,3,3,8,27]],[1708313646,[1,2,3,4,4,4,4,5,6,6]],[1708313647,[1,2,2,2,3,3,3,3,6,27]],[1708313648,[1,3,3,4,4,4,5,5,6,7]],[1708313649,[1,2,2,3,3,3,4,27,76,154]],[1708313650,[1,2,3,4,4,4,6,25,61,78]],[1708313651,[1,2,67,153,175,198,221,252,326,374]],[1708313652,[1,2,3,3,3,3,4,4,4,6]],[1708313653,[1,1,2,2,2,2,2,2,4,4]],[1708313654,[1,2,2,3,3,4,4,4,5,7]],[1708313655,[1,1,2,2,3,4,11,31,70,84]],[1708313656,[1,2,2,3,3,3,4,4,5,5]],[1708313657,[1,1,2,2,2,3,3,3,4,4]],[1708313658,[1,2,2,3,4,4,4,4,5,6]],[1708313659,[1,2,2,3,3,3,3,4,8,24]],[1708313660,[1,2,3,4,4,12,30,60,86,95]],[1708313661,[1,2,2,3,3,3,3,4,4,5]],[1708313662,[1,2,2,3,4,4,4,5,13,31]],[1708313663,[1,2,2,3,3,4,4,4,8,28]],[1708313664,[1,2,2,3,3,4,5,6,7,7]],[1708313665,[2,3,4,6,7,16,33,71,102,151]],[1708313666,[1,2,2,3,3,4,4,6,17,30]],[1708313667,[1,2,2,5,5,5,6,6,7,7]],[1708313668,[1,1,2,2,2,2,2,3,7,27]],[1708313669,[1,2,2,3,3,3,3,4,5,5]],[1708313670,[1,2,2,3,6,25,49,90,172,205]],[1708313671,[1,2,2,4,4,5,30,52,92,126]],[1708313672,[1,1,2,2,2,2,2,2,3,3]],[1708313673,[1,2,2,3,3,3,4,4,5,5]],[1708313674,[1,2,2,2,2,3,3,3,3,4]],[1708313675,[1,2,2,3,3,4,4,4,5,6]],[1708313676,[1,1,2,3,4,20,39,59,84,92]],[1708313677,[1,1,2,2,2,3,3,3,5,5]],[1708313678,[1,2,2,2,2,3,3,3,7,28]],[1708313679,[1,2,2,3,3,4,4,5,9,29]],[1708313680,[1,2,2,2,2,2,3,3,3,4]],[1708313681,[1,2,2,4,4,13,32,56,77,84]],[1708313682,[1,1,2,4,4,4,5,5,12,34]],[1708313683,[1,2,3,4,4,4,5,5,6,6]],[1708313684,[1,2,3,4,4,4,5,5,6,30]]]);
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([[1708313440,[25,25,0]],[1708313441,[1,1,0]],[1708313442,[25,25,0]],[1708313443,[1,1,0]],[1708313444,[71,71,0]],[1708313445,[3,3,0]],[1708313446,[6,6,0]],[1708313447,[9,9,0]],[1708313448,[11,11,0]],[1708313449,[13,13,0]],[1708313450,[18,18,0]],[1708313451,[19,19,0]],[1708313452,[24,24,0]],[1708313453,[26,26,0]],[1708313454,[27,27,0]],[1708313455,[32,32,0]],[1708313456,[34,34,0]],[1708313457,[37,37,0]],[1708313458,[39,39,0]],[1708313459,[43,43,0]],[1708313460,[44,44,0]],[1708313461,[48,48,0]],[1708313462,[50,50,0]],[1708313463,[54,54,0]],[1708313464,[56,56,0]],[1708313465,[61,61,0]],[1708313466,[61,61,0]],[1708313467,[65,65,0]],[1708313468,[67,67,0]],[1708313469,[70,70,0]],[1708313470,[74,74,0]],[1708313471,[76,76,0]],[1708313472,[80,80,0]],[1708313473,[81,81,0]],[1708313474,[84,84,0]],[1708313475,[87,87,0]],[1708313476,[91,91,0]],[1708313477,[92,92,0]],[1708313478,[96,96,0]],[1708313479,[98,98,0]],[1708313480,[101,101,0]],[1708313481,[105,105,0]],[1708313482,[107,107,0]],[1708313483,[110,110,0]],[1708313484,[114,114,0]],[1708313485,[115,115,0]],[1708313486,[118,118,0]],[1708313487,[121,121,0]],[1708313488,[124,124,0]],[1708313489,[126,126,0]],[1708313490,[129,129,0]],[1708313491,[133,133,0]],[1708313492,[134,134,0]],[1708313493,[138,138,0]],[1708313494,[141,141,0]],[1708313495,[143,143,0]],[1708313496,[146,146,0]],[1708313497,[149,149,0]],[1708313498,[152,152,0]],[1708313499,[154,154,0]],[1708313500,[158,158,0]],[1708313501,[160,160,0]],[1708313502,[164,164,0]],[1708313503,[165,165,0]],[1708313504,[170,170,0]],[1708313505,[171,171,0]],[1708313506,[175,175,0]],[1708313507,[176,176,0]],[1708313508,[181,181,0]],[1708313509,[183,183,0]],[1708313510,[185,185,0]],[1708313511,[189,189,0]],[1708313512,[191,191,0]],[1708313513,[194,194,0]],[1708313514,[196,196,0]],[1708313515,[200,200,0]],[1708313516,[202,202,0]],[1708313517,[206,206,0]],[1708313518,[207,207,0]],[1708313519,[211,211,0]],[1708313520,[213,213,0]],[1708313521,[217,217,0]],[1708313522,[220,220,0]],[1708313523,[222,222,0]],[1708313524,[225,225,0]],[1708313525,[228,228,0]],[1708313526,[229,229,0]],[1708313527,[235,235,0]],[1708313528,[235,235,0]],[1708313529,[239,239,0]],[1708313530,[242,242,0]],[1708313531,[244,244,0]],[1708313532,[248,248,0]],[1708313533,[251,251,0]],[1708313534,[252,252,0]],[1708313535,[256,256,0]],[1708313536,[259,259,0]],[1708313537,[262,262,0]],[1708313538,[264,264,0]],[1708313539,[267,267,0]],[1708313540,[269,269,0]],[1708313541,[272,272,0]],[1708313542,[276,276,0]],[1708313543,[279,279,0]],[1708313544,[280,280,0]],[1708313545,[285,285,0]],[1708313546,[286,286,0]],[1708313547,[290,290,0]],[1708313548,[291,291,0]],[1708313549,[296,296,0]],[1708313550,[298,298,0]],[1708313551,[300,300,0]],[1708313552,[304,304,0]],[1708313553,[306,306,0]],[1708313554,[309,309,0]],[1708313555,[312,312,0]],[1708313556,[315,315,0]],[1708313557,[317,317,0]],[1708313558,[321,321,0]],[1708313559,[322,322,0]],[1708313560,[327,327,0]],[1708313561,[329,329,0]],[1708313562,[332,332,0]],[1708313563,[335,335,0]],[1708313564,[337,337,0]],[1708313565,[341,341,0]],[1708313566,[340,340,0]],[1708313567,[340,340,0]],[1708313568,[340,340,0]],[1708313569,[340,340,0]],[1708313570,[340,340,0]],[1708313571,[340,340,0]],[1708313572,[340,340,0]],[1708313573,[340,340,0]],[1708313574,[339,339,0]],[1708313575,[341,341,0]],[1708313576,[340,340,0]],[1708313577,[339,339,0]],[1708313578,[340,340,0]],[1708313579,[341,341,0]],[1708313580,[340,340,0]],[1708313581,[340,340,0]],[1708313582,[340,340,0]],[1708313583,[340,340,0]],[1708313584,[340,340,0]],[1708313585,[340,340,0]],[1708313586,[340,340,0]],[1708313587,[340,340,0]],[1708313588,[340,340,0]],[1708313589,[340,340,0]],[1708313590,[339,339,0]],[1708313591,[341,341,0]],[1708313592,[340,340,0]],[1708313593,[340,340,0]],[1708313594,[340,340,0]],[1708313595,[340,340,0]],[1708313596,[340,340,0]],[1708313597,[340,340,0]],[1708313598,[340,340,0]],[1708313599,[340,340,0]],[1708313600,[340,340,0]],[1708313601,[340,340,0]],[1708313602,[340,340,0]],[1708313603,[340,340,0]],[1708313604,[340,340,0]],[1708313605,[340,340,0]],[1708313606,[340,340,0]],[1708313607,[340,340,0]],[1708313608,[340,340,0]],[1708313609,[340,340,0]],[1708313610,[339,339,0]],[1708313611,[340,340,0]],[1708313612,[341,341,0]],[1708313613,[340,340,0]],[1708313614,[340,340,0]],[1708313615,[340,340,0]],[1708313616,[339,339,0]],[1708313617,[341,341,0]],[1708313618,[340,340,0]],[1708313619,[340,340,0]],[1708313620,[340,340,0]],[1708313621,[340,340,0]],[1708313622,[340,340,0]],[1708313623,[340,340,0]],[1708313624,[340,340,0]],[1708313625,[340,340,0]],[1708313626,[340,340,0]],[1708313627,[339,339,0]],[1708313628,[341,341,0]],[1708313629,[340,340,0]],[1708313630,[339,339,0]],[1708313631,[341,341,0]],[1708313632,[340,340,0]],[1708313633,[340,340,0]],[1708313634,[340,340,0]],[1708313635,[339,339,0]],[1708313636,[341,341,0]],[1708313637,[339,339,0]],[1708313638,[340,340,0]],[1708313639,[341,341,0]],[1708313640,[340,340,0]],[1708313641,[340,340,0]],[1708313642,[339,339,0]],[1708313643,[341,341,0]],[1708313644,[340,340,0]],[1708313645,[340,340,0]],[1708313646,[340,340,0]],[1708313647,[340,340,0]],[1708313648,[340,340,0]],[1708313649,[340,340,0]],[1708313650,[340,340,0]],[1708313651,[340,340,0]],[1708313652,[339,339,0]],[1708313653,[341,341,0]],[1708313654,[340,340,0]],[1708313655,[340,340,0]],[1708313656,[340,340,0]],[1708313657,[340,340,0]],[1708313658,[340,340,0]],[1708313659,[340,340,0]],[1708313660,[340,340,0]],[1708313661,[340,340,0]],[1708313662,[340,340,0]],[1708313663,[340,340,0]],[1708313664,[340,340,0]],[1708313665,[340,340,0]],[1708313666,[340,340,0]],[1708313667,[339,339,0]],[1708313668,[341,341,0]],[1708313669,[340,340,0]],[1708313670,[340,340,0]],[1708313671,[340,340,0]],[1708313672,[340,340,0]],[1708313673,[340,340,0]],[1708313674,[340,340,0]],[1708313675,[340,340,0]],[1708313676,[339,339,0]],[1708313677,[341,341,0]],[1708313678,[340,340,0]],[1708313679,[339,339,0]],[1708313680,[341,341,0]],[1708313681,[339,339,0]],[1708313682,[341,341,0]],[1708313683,[340,340,0]],[1708313684,[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:[