-
Notifications
You must be signed in to change notification settings - Fork 923
/
Copy pathindex.html
1173 lines (1103 loc) · 91.9 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="shortcut icon" type="image/x-icon" href="style/favicon.ico"/>
<link href="style/style.css" rel="stylesheet" type="text/css" />
<link href="style/bootstrap.min.css" rel="stylesheet" type="text/css" />
<script src="js/jquery-3.5.1.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/gatling.js"></script>
<script src="js/menu.js"></script>
<script src="js/ellipsis.js"></script>
<script src="js/all_sessions.js"></script>
<script src="js/stats.js"></script>
<script src="js/highstock.js"></script>
<script src="js/highcharts-more.js"></script>
<script src="js/theme.js"></script>
<script src="js/unpack.js"></script>
<title>Gatling Stats - Global Information</title>
</head>
<body>
<script>
const storedTheme = localStorage.getItem('theme') || (window.matchMedia("(prefers-color-scheme: dark)").matches ? "dark" : "light");
if (storedTheme) document.documentElement.setAttribute('data-theme', storedTheme)
function toggleTheme() {
const currentTheme = document.documentElement.getAttribute("data-theme");
const targetTheme = currentTheme === "light" ? "dark" : "light";
document.documentElement.setAttribute('data-theme', targetTheme)
localStorage.setItem('theme', targetTheme);
};
</script>
<div class="app-container">
<div class="frise"></div>
<div class="head">
<div class="gatling-open-source">
<a class="gatling-logo gatling-logo-light" href="https://gatling.io" target="blank_" title="Gatling Home Page"><img alt="Gatling" src="style/logo-light.svg"/></a>
<a class="gatling-logo gatling-logo-dark" href="https://gatling.io" target="blank_" title="Gatling Home Page"><img alt="Gatling" src="style/logo-dark.svg"/></a>
<a class="gatling-documentation" href="https://gatling.io/docs/" target="_blank">Documentation</a>
</div>
<div class="nav spacer"></div>
<a class="enterprise" href="https://gatling.io/enterprise/next-step/" target="_blank"><strong>Try</strong>
<img class="logo-enterprise-light" alt="Gatling Enterprise" src="style/logo-enterprise-light.svg"/>
<img class="logo-enterprise-dark" alt="Gatling Enterprise" src="style/logo-enterprise-dark.svg"/>
</a>
<button id="theme-toggle" class="theme-toggle" type="button" onclick="toggleTheme()" aria-label="Toggle user interface mode">
<span class="toggle-dark"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-moon"><path d="M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z"></path></svg></span>
<span class="toggle-light"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-sun"><circle cx="12" cy="12" r="5"></circle><line x1="12" y1="1" x2="12" y2="3"></line><line x1="12" y1="21" x2="12" y2="23"></line><line x1="4.22" y1="4.22" x2="5.64" y2="5.64"></line><line x1="18.36" y1="18.36" x2="19.78" y2="19.78"></line><line x1="1" y1="12" x2="3" y2="12"></line><line x1="21" y1="12" x2="23" y2="12"></line><line x1="4.22" y1="19.78" x2="5.64" y2="18.36"></line><line x1="18.36" y1="5.64" x2="19.78" y2="4.22"></line></svg></span>
</button>
</div>
<div class="container details">
<div class="nav">
<ul></ul>
</div>
<div class="cadre">
<div class="content">
<div class="content-header">
<div class="onglet">
RinhaBackendCrebitosSimulation
</div>
<div class="sous-menu" id="sousMenu">
<div class="sous-menu-spacer">
<div class="item ouvert"><a href="index.html">Global</a></div>
<div class="item "><a id="details_link" href="#">Details</a></div>
</div>
</div>
</div>
<div class="content-in">
<div class="container-article">
<div class="article">
<div class="schema-container">
<div id="ranges" class="schema ranges">
</div>
<div class="schema polar">
<div id="container_number_of_requests"></div>
</div>
<div class="simulation-card">
<div class="simulation-version-information">
<span class="simulation-information-title">Gatling Version</span>
<span class="simulation-information-item">
<span class="simulation-information-label">Version: </span>
<span>3.10.3</span>
</span>
<span class="simulation-information-item">
<span class="simulation-information-label">Released: </span>
<span>2023-12-20</span>
</span>
</div>
<div id="simulation-information" class="simulation-version-information">
<span class="simulation-information-title">Run Information</span>
<div class="simulation-information-container">
<span class="simulation-information-item">
<span class="simulation-information-label">Date: </span>
<span>2024-03-07 03:02:17 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 - felipma-rust-rataria-version">
<span class="simulation-information-label">Description: </span>
<span>Rinha de Backend - 2024/Q1: Crébito - felipma-rust-rataria-version</span>
</span>
</div>
</div>
</div>
</div>
<div id="statistics_table_container">
<div id="stats" class="statistics extensible-geant collapsed">
<div class="title">
<div id="statistics_title" class="title_base"><span class="title_base_stats">Stats</span><span class="expand-table">Fixed height</span><span id="toggle-stats" class="toggle-table"></span><span class="collapse-table">Full size</span></div>
<div class="right">
<button class="statistics-button expand-all-button">Expand all groups</button>
<button class="statistics-button collapse-all-button">Collapse all groups</button>
<button id="statistics_full_screen" class="statistics-button" onclick="openStatisticsTableModal()"><img alt="Fullscreen" src="style/fullscreen.svg"></button>
</div>
</div>
<div class="scrollable">
<table id="container_statistics_head" class="statistics-in extensible-geant">
<thead>
<tr>
<th rowspan="2" id="col-1" class="header sortable sorted-up"><span>Requests</span></th>
<th colspan="5" class="header"><span class="executions">Executions</span></th>
<th colspan="8" class="header"><span class="response-time">Response Time (ms)</span></th>
</tr>
<tr>
<th id="col-2" class="header sortable"><span>Total</span></th>
<th id="col-3" class="header sortable"><span>OK</span></th>
<th id="col-4" class="header sortable"><span>KO</span></th>
<th id="col-5" class="header sortable"><span>% KO</span></th>
<th id="col-6" class="header sortable"><span><abbr title="Count of events per second">Cnt/s</abbr></span></th>
<th id="col-7" class="header sortable"><span>Min</span></th>
<th id="col-8" class="header sortable"><span>50th pct</span></th>
<th id="col-9" class="header sortable"><span>75th pct</span></th>
<th id="col-10" class="header sortable"><span>95th pct</span></th>
<th id="col-11" class="header sortable"><span>99th pct</span></th>
<th id="col-12" class="header sortable"><span>Max</span></th>
<th id="col-13" class="header sortable"><span>Mean</span></th>
<th id="col-14" class="header sortable"><span><abbr title="Standard Deviation">Std Dev</abbr></span></th>
</tr>
</thead>
<tbody></tbody>
</table>
<table id="container_statistics_body" class="statistics-in extensible-geant">
<tbody></tbody>
</table>
</div>
</div>
</div>
<dialog id="statistics_table_modal" class="statistics-table-modal">
<div class="statistics-table-modal-header"><button class="button-modal" onclick="closeStatisticsTableModal()"><img alt="Close" src="style/close.svg"></button></div>
<div class="statistics-table-modal-container">
<div id="statistics_table_modal_content" class="statistics-table-modal-content"></div>
</div>
</dialog>
<script>
function openStatisticsTableModal () {
const statsTable = document.getElementById("stats");
const statsTableModal = document.getElementById("statistics_table_modal");
const fullScreenButton = document.getElementById("statistics_full_screen");
fullScreenButton.disabled = true;
if (typeof statsTableModal.showModal === "function") {
const statsTableModalContent = document.getElementById("statistics_table_modal_content");
statsTableModalContent.innerHTML = "";
statsTableModalContent.appendChild(statsTable);
statsTableModal.showModal();
statsTableModal.addEventListener("close", function () {
const container = document.getElementById("statistics_table_container");
container.appendChild(statsTable);
fullScreenButton.disabled = false;
});
} else {
const incompatibleBrowserVersionMessage = document.createElement("div");
incompatibleBrowserVersionMessage.innerText = "Sorry, the <dialog> API is not supported by this browser.";
statsTable.insertBefore(incompatibleBrowserVersionMessage, statsTable.children[0]);
}
}
function closeStatisticsTableModal () {
const statsTableModal = document.getElementById("statistics_table_modal");
statsTableModal.close();
}
</script>
<div class="schema geant">
<div id="active_users" class="geant"></div>
</div>
<div class="schema geant">
<div id="responsetimeDistributionContainer" class="geant"></div>
</div>
<div class="schema geant">
<div id="responsetimepercentilesovertimeokPercentilesContainer" class="geant"></div>
</div>
<div class="schema geant">
<div id="requests" class="geant"></div>
</div>
<div class="schema geant">
<div id="responses" class="geant"></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<script>
var pageStats = stats.stats;
$(document).ready(function() {
$('.simulation-tooltip').popover({trigger:'hover', placement:'left'});
setDetailsLinkUrl();
setGlobalMenu();
setActiveMenu();
fillStats(pageStats);
Highcharts.setOptions({
global: { useUTC: false }
});
var rangesChart = new Highcharts.Chart({
chart: {
renderTo: 'ranges',
marginRight: 100
},
credits: { enabled: false },
legend: { enabled: false },
title: { text: 'A title to let highcharts reserve the place for the title set later' },
xAxis: {
categories: [
pageStats.group1.htmlName,
pageStats.group2.htmlName,
pageStats.group3.htmlName,
pageStats.group4.htmlName
]
},
yAxis: {
title: { text: 'Number of Requests' },
reversedStacks: false
},
tooltip: {
formatter: function() {
var s;
if (this.point.name) { // the pie chart
s = ''+ this.point.name +': '+ this.y +'% requests';
} else {
s = ''+ this.y + ' requests';
}
return s;
}
},
plotOptions: {
series: {
stacking: 'normal',
shadow: true
}
},
series: [
{
type: 'column',
data: [{
color: '#68b65c',
y: pageStats.group1.count
},
{
color: '#FFDD00',
y: pageStats.group2.count
},
{
color: '#FFA900',
y: pageStats.group3.count
},
{
color: '#f15b4f',
y: pageStats.group4.count
}]
},
{
type: 'pie',
name: 'Percentages',
data: [
{
name: pageStats.group1.name,
y: pageStats.group1.percentage,
color: '#68b65c'
},
{
name: pageStats.group2.name,
y: pageStats.group2.percentage,
color: '#FFDD00'
},
{
name: pageStats.group3.name,
y: pageStats.group3.percentage,
color: '#FFA900'
},
{
name: pageStats.group4.name,
y: pageStats.group4.percentage,
color: '#f15b4f'
}
],
center: [345, 0],
size: 90,
showInLegend: false,
dataLabels: { enabled: false }
}
]
});
rangesChart.setTitle({
text: '<span class="chart_title">Response Time Ranges</span>',
useHTML: true
});
function numberOfRequestsDataForGroup(group) {
var data = {names: [], oks: [], kos: []};
$.each(group.contents, function(contentName, content) {
if (content.type == 'GROUP') {
var result = numberOfRequestsDataForGroup(content);
data.names = data.names.concat(result.names);
data.oks = data.oks.concat(result.oks);
data.kos = data.kos.concat(result.kos);
}
else if (content.type == 'REQUEST') {
data.names.push(content.path);
data.oks.push(parseInt(content.stats.numberOfRequests.ok));
data.kos.push(parseInt(content.stats.numberOfRequests.ko));
}
});
return data;
}
var numberOfRequestsData = numberOfRequestsDataForGroup(stats);
var tickInterval = Math.ceil(numberOfRequestsData.names.length / 1000);
new Highcharts.Chart({
chart: {
renderTo:'container_number_of_requests',
polar:true,
type:'column',
height:330
},
credits:{
enabled:false
},
title:{
text:'<span class="chart_title">Number of requests</span>',
useHTML: true,
widthAdjust:-20
},
xAxis:{
tickmarkPlacement:'on',
tickInterval: tickInterval,
categories:numberOfRequestsData.names,
labels:{ enabled:false }
},
yAxis:{
min:0,
reversedStacks: false
},
plotOptions:{
series:{
stacking:'normal',
groupPadding:0,
pointPlacement:'on',
shadow: true
}
},
legend: {
borderWidth: 0,
itemStyle: { fontWeight: "normal" },
symbolRadius: 0
},
series:[
{
name:'OK',
data:numberOfRequestsData.oks,
color:"#68b65c"
},
{
name:'KO',
data:numberOfRequestsData.kos,
color:"#f15b4f"
}
]
});
$('#container_exceptions').sortable('#container_exceptions');
function generateHtmlRow(request, level, index, parent, group) {
if (request.name == 'All Requests')
var url = 'index.html';
else
var url = request.pathFormatted + '.html';
if (group)
var expandButtonStyle = '';
else
var expandButtonStyle = ' hidden';
if (request.stats.numberOfRequests.total != 0)
var koPercent = (request.stats.numberOfRequests.ko * 100 / request.stats.numberOfRequests.total).toFixed(0) + '%';
else
var koPercent = '-'
return '<tr id="' + request.pathFormatted + '" data-parent=' + parent + '> \
<td class="total col-1"> \
<div class="expandable-container"> \
<span id="' + request.pathFormatted + '" style="margin-left: ' + (level * 10) + 'px;" class="expand-button' + expandButtonStyle + '"> </span> \
<a href="' + url +'" class="withTooltip">' + ellipsedLabel({ name: request.name, parentClass: "table-cell-tooltip" }) + '</a><span class="value" style="display:none;">' + index + '</span> \
</div> \
</td> \
<td class="value total col-2">' + request.stats.numberOfRequests.total + '</td> \
<td class="value ok col-3">' + request.stats.numberOfRequests.ok + '</td> \
<td class="value ko col-4">' + request.stats.numberOfRequests.ko + '</td> \
<td class="value ko col-5">' + koPercent + '</td> \
<td class="value total col-6">' + request.stats.meanNumberOfRequestsPerSecond.total + '</td> \
<td class="value total col-7">' + request.stats.minResponseTime.total + '</td> \
<td class="value total col-8">' + request.stats.percentiles1.total + '</td> \
<td class="value total col-9">' + request.stats.percentiles2.total + '</td> \
<td class="value total col-10">' + request.stats.percentiles3.total + '</td> \
<td class="value total col-11">' + request.stats.percentiles4.total + '</td> \
<td class="value total col-12">' + request.stats.maxResponseTime.total + '</td> \
<td class="value total col-13">' + request.stats.meanResponseTime.total + '</td> \
<td class="value total col-14">' + request.stats.standardDeviation.total + '</td> \
</tr>';
}
function generateHtmlRowsForGroup(group, level, index, parent) {
var buffer = '';
if (!parent)
parent = 'ROOT';
else {
buffer += generateHtmlRow(group, level - 1, index, parent, true);
index++;
parent = group.pathFormatted;
}
$.each(group.contents, function(contentName, content) {
if (content.type == 'GROUP') {
var result = generateHtmlRowsForGroup(content, level + 1, index, parent);
buffer += result.html;
index = result.index;
}
else if (content.type == 'REQUEST') {
buffer += generateHtmlRow(content, level, index, parent);
index++;
}
});
return { html: buffer, index: index };
}
$('#container_statistics_head tbody').append(generateHtmlRow(stats, 0, 0));
var lines = generateHtmlRowsForGroup(stats, 0, 0);
$('#container_statistics_body tbody').append(lines.html);
$('#container_statistics_head').sortable('#container_statistics_body');
$('.statistics').expandable();
if (lines.index < 30) {
$('#statistics_title span').attr('style', 'display: none;');
} else {
$('#statistics_title').addClass('title_collapsed');
$('#statistics_title').click(function() {
$('#toggle-stats').toggleClass("off");
$(this).toggleClass('title_collapsed').toggleClass('title_expanded');
$('#container_statistics_body').parent().toggleClass('scrollable').toggleClass('');
});
}
$('.table-cell-tooltip').popover({trigger:'hover'});
$('#container_errors').sortable('#container_errors');
allUsersData.yAxis = 0;
var allUsersChart = new Highcharts.StockChart({
chart: {
renderTo: 'active_users',
zoomType: 'x'
},
credits: { enabled: false },
legend: {
enabled: true,
floating: true,
align: 'right',
verticalAlign: 'top',
layout: 'vertical',
borderWidth: 0,
itemStyle: { fontWeight: "normal" },
symbolRadius: 0
},
title: { text: 'A title to let highcharts reserve the place for the title set later' },
navigator: {
maskInside: false
},
rangeSelector: {
buttonSpacing: 0,
buttonTheme: {
fill: '#CFC9C6',
padding: 1,
stroke: '#000000',
'stroke-width': 0.25,
style: {
color: '#000000',
fontWeight: 'bold',
},
states: {
stroke: '#000000',
'stroke-width': 0.25,
hover: {
fill: '#92918C',
style: { color: 'black' }
},
select: {
fill: '#FFA900',
style: { color: 'white' }
}
}
},
buttons : [
{
type : 'minute',
count : 1,
text : '1m'
}, {
type : 'minute',
count : 10,
text : '10m'
}, {
type : 'hour',
count : 1,
text : '1h'
}, {
type : 'all',
count : 1,
text : 'All'
}
],
selected : 3,
inputEnabled : false
},
xAxis: {
type: 'datetime',
ordinal: false,
maxZoom: 10000 // three days
},
yAxis: {
title: { text: 'Number of Active Users' },
opposite: false,
min: 0
},
series: [
{
color: '#5E7BE2',
name: 'débitos',
data: [
[1709780538000,0],[1709780539000,0],[1709780540000,0],[1709780541000,0],[1709780542000,1],[1709780543000,1],[1709780544000,4],[1709780545000,6],[1709780546000,7],[1709780547000,9],[1709780548000,11],[1709780549000,13],[1709780550000,15],[1709780551000,16],[1709780552000,19],[1709780553000,20],[1709780554000,22],[1709780555000,24],[1709780556000,25],[1709780557000,28],[1709780558000,29],[1709780559000,31],[1709780560000,33],[1709780561000,35],[1709780562000,37],[1709780563000,38],[1709780564000,40],[1709780565000,42],[1709780566000,44],[1709780567000,46],[1709780568000,48],[1709780569000,50],[1709780570000,52],[1709780571000,53],[1709780572000,55],[1709780573000,56],[1709780574000,59],[1709780575000,60],[1709780576000,62],[1709780577000,64],[1709780578000,66],[1709780579000,68],[1709780580000,69],[1709780581000,71],[1709780582000,74],[1709780583000,74],[1709780584000,77],[1709780585000,79],[1709780586000,80],[1709780587000,82],[1709780588000,84],[1709780589000,86],[1709780590000,88],[1709780591000,89],[1709780592000,92],[1709780593000,93],[1709780594000,96],[1709780595000,98],[1709780596000,99],[1709780597000,101],[1709780598000,102],[1709780599000,104],[1709780600000,106],[1709780601000,108],[1709780602000,110],[1709780603000,111],[1709780604000,113],[1709780605000,115],[1709780606000,117],[1709780607000,119],[1709780608000,120],[1709780609000,123],[1709780610000,124],[1709780611000,126],[1709780612000,128],[1709780613000,129],[1709780614000,132],[1709780615000,133],[1709780616000,135],[1709780617000,137],[1709780618000,139],[1709780619000,141],[1709780620000,143],[1709780621000,145],[1709780622000,148],[1709780623000,148],[1709780624000,151],[1709780625000,152],[1709780626000,153],[1709780627000,155],[1709780628000,157],[1709780629000,159],[1709780630000,161],[1709780631000,162],[1709780632000,165],[1709780633000,166],[1709780634000,168],[1709780635000,170],[1709780636000,171],[1709780637000,174],[1709780638000,175],[1709780639000,177],[1709780640000,179],[1709780641000,181],[1709780642000,183],[1709780643000,184],[1709780644000,186],[1709780645000,188],[1709780646000,190],[1709780647000,192],[1709780648000,194],[1709780649000,197],[1709780650000,198],[1709780651000,200],[1709780652000,201],[1709780653000,202],[1709780654000,205],[1709780655000,206],[1709780656000,208],[1709780657000,210],[1709780658000,212],[1709780659000,214],[1709780660000,215],[1709780661000,217],[1709780662000,220],[1709780663000,220],[1709780664000,220],[1709780665000,220],[1709780666000,220],[1709780667000,220],[1709780668000,220],[1709780669000,220],[1709780670000,220],[1709780671000,220],[1709780672000,220],[1709780673000,220],[1709780674000,220],[1709780675000,220],[1709780676000,220],[1709780677000,220],[1709780678000,220],[1709780679000,220],[1709780680000,220],[1709780681000,220],[1709780682000,220],[1709780683000,220],[1709780684000,220],[1709780685000,220],[1709780686000,220],[1709780687000,220],[1709780688000,220],[1709780689000,220],[1709780690000,220],[1709780691000,220],[1709780692000,220],[1709780693000,220],[1709780694000,220],[1709780695000,220],[1709780696000,220],[1709780697000,220],[1709780698000,220],[1709780699000,220],[1709780700000,220],[1709780701000,220],[1709780702000,220],[1709780703000,220],[1709780704000,220],[1709780705000,220],[1709780706000,220],[1709780707000,220],[1709780708000,220],[1709780709000,220],[1709780710000,220],[1709780711000,220],[1709780712000,220],[1709780713000,220],[1709780714000,220],[1709780715000,220],[1709780716000,220],[1709780717000,220],[1709780718000,220],[1709780719000,220],[1709780720000,220],[1709780721000,220],[1709780722000,220],[1709780723000,220],[1709780724000,220],[1709780725000,220],[1709780726000,220],[1709780727000,220],[1709780728000,220],[1709780729000,220],[1709780730000,220],[1709780731000,220],[1709780732000,220],[1709780733000,220],[1709780734000,220],[1709780735000,220],[1709780736000,220],[1709780737000,220],[1709780738000,220],[1709780739000,220],[1709780740000,220],[1709780741000,220],[1709780742000,220],[1709780743000,220],[1709780744000,220],[1709780745000,220],[1709780746000,220],[1709780747000,220],[1709780748000,220],[1709780749000,220],[1709780750000,220],[1709780751000,220],[1709780752000,220],[1709780753000,220],[1709780754000,220],[1709780755000,220],[1709780756000,220],[1709780757000,220],[1709780758000,220],[1709780759000,220],[1709780760000,220],[1709780761000,220],[1709780762000,220],[1709780763000,220],[1709780764000,220],[1709780765000,220],[1709780766000,220],[1709780767000,220],[1709780768000,220],[1709780769000,220],[1709780770000,220],[1709780771000,220],[1709780772000,220],[1709780773000,220],[1709780774000,220],[1709780775000,220],[1709780776000,220],[1709780777000,220],[1709780778000,220],[1709780779000,220],[1709780780000,220],[1709780781000,220],[1709780782000,215]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#68b65c',
name: 'créditos',
data: [
[1709780538000,0],[1709780539000,0],[1709780540000,0],[1709780541000,0],[1709780542000,1],[1709780543000,1],[1709780544000,2],[1709780545000,4],[1709780546000,4],[1709780547000,5],[1709780548000,6],[1709780549000,7],[1709780550000,8],[1709780551000,8],[1709780552000,10],[1709780553000,10],[1709780554000,12],[1709780555000,12],[1709780556000,14],[1709780557000,14],[1709780558000,15],[1709780559000,16],[1709780560000,17],[1709780561000,17],[1709780562000,19],[1709780563000,20],[1709780564000,20],[1709780565000,22],[1709780566000,22],[1709780567000,23],[1709780568000,25],[1709780569000,25],[1709780570000,26],[1709780571000,26],[1709780572000,28],[1709780573000,29],[1709780574000,30],[1709780575000,30],[1709780576000,32],[1709780577000,32],[1709780578000,33],[1709780579000,34],[1709780580000,35],[1709780581000,36],[1709780582000,37],[1709780583000,38],[1709780584000,39],[1709780585000,39],[1709780586000,41],[1709780587000,41],[1709780588000,43],[1709780589000,43],[1709780590000,44],[1709780591000,45],[1709780592000,46],[1709780593000,47],[1709780594000,49],[1709780595000,49],[1709780596000,51],[1709780597000,51],[1709780598000,52],[1709780599000,52],[1709780600000,53],[1709780601000,54],[1709780602000,56],[1709780603000,55],[1709780604000,57],[1709780605000,58],[1709780606000,59],[1709780607000,59],[1709780608000,61],[1709780609000,61],[1709780610000,63],[1709780611000,63],[1709780612000,64],[1709780613000,65],[1709780614000,66],[1709780615000,67],[1709780616000,68],[1709780617000,68],[1709780618000,70],[1709780619000,70],[1709780620000,72],[1709780621000,72],[1709780622000,73],[1709780623000,74],[1709780624000,75],[1709780625000,76],[1709780626000,77],[1709780627000,78],[1709780628000,79],[1709780629000,79],[1709780630000,81],[1709780631000,81],[1709780632000,82],[1709780633000,83],[1709780634000,85],[1709780635000,85],[1709780636000,86],[1709780637000,86],[1709780638000,88],[1709780639000,89],[1709780640000,89],[1709780641000,91],[1709780642000,91],[1709780643000,92],[1709780644000,94],[1709780645000,94],[1709780646000,96],[1709780647000,97],[1709780648000,97],[1709780649000,98],[1709780650000,99],[1709780651000,100],[1709780652000,101],[1709780653000,101],[1709780654000,103],[1709780655000,103],[1709780656000,104],[1709780657000,105],[1709780658000,106],[1709780659000,107],[1709780660000,107],[1709780661000,109],[1709780662000,110],[1709780663000,110],[1709780664000,110],[1709780665000,110],[1709780666000,110],[1709780667000,110],[1709780668000,110],[1709780669000,110],[1709780670000,110],[1709780671000,110],[1709780672000,110],[1709780673000,110],[1709780674000,110],[1709780675000,110],[1709780676000,110],[1709780677000,110],[1709780678000,110],[1709780679000,110],[1709780680000,110],[1709780681000,110],[1709780682000,110],[1709780683000,110],[1709780684000,110],[1709780685000,110],[1709780686000,110],[1709780687000,110],[1709780688000,110],[1709780689000,110],[1709780690000,110],[1709780691000,110],[1709780692000,110],[1709780693000,110],[1709780694000,110],[1709780695000,110],[1709780696000,110],[1709780697000,110],[1709780698000,110],[1709780699000,110],[1709780700000,110],[1709780701000,110],[1709780702000,110],[1709780703000,110],[1709780704000,110],[1709780705000,110],[1709780706000,110],[1709780707000,110],[1709780708000,110],[1709780709000,110],[1709780710000,110],[1709780711000,110],[1709780712000,110],[1709780713000,110],[1709780714000,110],[1709780715000,110],[1709780716000,110],[1709780717000,110],[1709780718000,110],[1709780719000,110],[1709780720000,110],[1709780721000,110],[1709780722000,110],[1709780723000,110],[1709780724000,110],[1709780725000,110],[1709780726000,110],[1709780727000,110],[1709780728000,110],[1709780729000,110],[1709780730000,110],[1709780731000,110],[1709780732000,110],[1709780733000,110],[1709780734000,110],[1709780735000,110],[1709780736000,110],[1709780737000,110],[1709780738000,110],[1709780739000,110],[1709780740000,110],[1709780741000,110],[1709780742000,110],[1709780743000,110],[1709780744000,110],[1709780745000,110],[1709780746000,110],[1709780747000,110],[1709780748000,110],[1709780749000,110],[1709780750000,110],[1709780751000,110],[1709780752000,110],[1709780753000,110],[1709780754000,110],[1709780755000,110],[1709780756000,110],[1709780757000,110],[1709780758000,110],[1709780759000,110],[1709780760000,110],[1709780761000,110],[1709780762000,110],[1709780763000,110],[1709780764000,110],[1709780765000,110],[1709780766000,110],[1709780767000,110],[1709780768000,110],[1709780769000,110],[1709780770000,110],[1709780771000,110],[1709780772000,110],[1709780773000,110],[1709780774000,110],[1709780775000,110],[1709780776000,110],[1709780777000,110],[1709780778000,110],[1709780779000,110],[1709780780000,110],[1709780781000,110],[1709780782000,107]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#f15b4f',
name: 'extratos',
data: [
[1709780538000,0],[1709780539000,0],[1709780540000,0],[1709780541000,0],[1709780542000,1],[1709780543000,1],[1709780544000,1],[1709780545000,1],[1709780546000,1],[1709780547000,1],[1709780548000,2],[1709780549000,1],[1709780550000,2],[1709780551000,2],[1709780552000,1],[1709780553000,2],[1709780554000,2],[1709780555000,2],[1709780556000,2],[1709780557000,2],[1709780558000,2],[1709780559000,2],[1709780560000,3],[1709780561000,2],[1709780562000,3],[1709780563000,2],[1709780564000,3],[1709780565000,2],[1709780566000,3],[1709780567000,3],[1709780568000,3],[1709780569000,3],[1709780570000,3],[1709780571000,3],[1709780572000,3],[1709780573000,4],[1709780574000,3],[1709780575000,3],[1709780576000,4],[1709780577000,3],[1709780578000,4],[1709780579000,4],[1709780580000,4],[1709780581000,4],[1709780582000,4],[1709780583000,4],[1709780584000,4],[1709780585000,4],[1709780586000,4],[1709780587000,4],[1709780588000,5],[1709780589000,4],[1709780590000,5],[1709780591000,5],[1709780592000,4],[1709780593000,5],[1709780594000,5],[1709780595000,5],[1709780596000,5],[1709780597000,5],[1709780598000,5],[1709780599000,5],[1709780600000,6],[1709780601000,5],[1709780602000,6],[1709780603000,5],[1709780604000,6],[1709780605000,5],[1709780606000,6],[1709780607000,6],[1709780608000,6],[1709780609000,6],[1709780610000,6],[1709780611000,6],[1709780612000,6],[1709780613000,7],[1709780614000,6],[1709780615000,6],[1709780616000,7],[1709780617000,6],[1709780618000,7],[1709780619000,7],[1709780620000,7],[1709780621000,7],[1709780622000,7],[1709780623000,7],[1709780624000,7],[1709780625000,7],[1709780626000,7],[1709780627000,7],[1709780628000,8],[1709780629000,7],[1709780630000,8],[1709780631000,8],[1709780632000,7],[1709780633000,8],[1709780634000,8],[1709780635000,8],[1709780636000,8],[1709780637000,8],[1709780638000,8],[1709780639000,8],[1709780640000,9],[1709780641000,8],[1709780642000,9],[1709780643000,8],[1709780644000,9],[1709780645000,8],[1709780646000,9],[1709780647000,9],[1709780648000,9],[1709780649000,9],[1709780650000,9],[1709780651000,9],[1709780652000,9],[1709780653000,10],[1709780654000,9],[1709780655000,9],[1709780656000,10],[1709780657000,9],[1709780658000,10],[1709780659000,10],[1709780660000,10],[1709780661000,10],[1709780662000,10],[1709780663000,10],[1709780664000,10],[1709780665000,10],[1709780666000,10],[1709780667000,10],[1709780668000,10],[1709780669000,10],[1709780670000,10],[1709780671000,10],[1709780672000,10],[1709780673000,10],[1709780674000,10],[1709780675000,10],[1709780676000,10],[1709780677000,10],[1709780678000,10],[1709780679000,10],[1709780680000,10],[1709780681000,10],[1709780682000,10],[1709780683000,10],[1709780684000,10],[1709780685000,10],[1709780686000,10],[1709780687000,10],[1709780688000,10],[1709780689000,10],[1709780690000,10],[1709780691000,10],[1709780692000,10],[1709780693000,10],[1709780694000,10],[1709780695000,10],[1709780696000,10],[1709780697000,10],[1709780698000,10],[1709780699000,10],[1709780700000,10],[1709780701000,10],[1709780702000,10],[1709780703000,10],[1709780704000,10],[1709780705000,10],[1709780706000,10],[1709780707000,10],[1709780708000,10],[1709780709000,10],[1709780710000,10],[1709780711000,10],[1709780712000,10],[1709780713000,10],[1709780714000,10],[1709780715000,10],[1709780716000,10],[1709780717000,10],[1709780718000,10],[1709780719000,10],[1709780720000,10],[1709780721000,10],[1709780722000,10],[1709780723000,10],[1709780724000,10],[1709780725000,10],[1709780726000,10],[1709780727000,10],[1709780728000,10],[1709780729000,10],[1709780730000,10],[1709780731000,10],[1709780732000,10],[1709780733000,10],[1709780734000,10],[1709780735000,10],[1709780736000,10],[1709780737000,10],[1709780738000,10],[1709780739000,10],[1709780740000,10],[1709780741000,10],[1709780742000,10],[1709780743000,10],[1709780744000,10],[1709780745000,10],[1709780746000,10],[1709780747000,10],[1709780748000,10],[1709780749000,10],[1709780750000,10],[1709780751000,10],[1709780752000,10],[1709780753000,10],[1709780754000,10],[1709780755000,10],[1709780756000,10],[1709780757000,10],[1709780758000,10],[1709780759000,10],[1709780760000,10],[1709780761000,10],[1709780762000,10],[1709780763000,10],[1709780764000,10],[1709780765000,10],[1709780766000,10],[1709780767000,10],[1709780768000,10],[1709780769000,10],[1709780770000,10],[1709780771000,10],[1709780772000,10],[1709780773000,10],[1709780774000,10],[1709780775000,10],[1709780776000,10],[1709780777000,10],[1709780778000,10],[1709780779000,10],[1709780780000,10],[1709780781000,10],[1709780782000,9]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FFDD00',
name: 'validações',
data: [
[1709780538000,0],[1709780539000,0],[1709780540000,0],[1709780541000,5],[1709780542000,5],[1709780543000,0],[1709780544000,0],[1709780545000,0],[1709780546000,0],[1709780547000,0],[1709780548000,0],[1709780549000,0],[1709780550000,0],[1709780551000,0],[1709780552000,0],[1709780553000,0],[1709780554000,0],[1709780555000,0],[1709780556000,0],[1709780557000,0],[1709780558000,0],[1709780559000,0],[1709780560000,0],[1709780561000,0],[1709780562000,0],[1709780563000,0],[1709780564000,0],[1709780565000,0],[1709780566000,0],[1709780567000,0],[1709780568000,0],[1709780569000,0],[1709780570000,0],[1709780571000,0],[1709780572000,0],[1709780573000,0],[1709780574000,0],[1709780575000,0],[1709780576000,0],[1709780577000,0],[1709780578000,0],[1709780579000,0],[1709780580000,0],[1709780581000,0],[1709780582000,0],[1709780583000,0],[1709780584000,0],[1709780585000,0],[1709780586000,0],[1709780587000,0],[1709780588000,0],[1709780589000,0],[1709780590000,0],[1709780591000,0],[1709780592000,0],[1709780593000,0],[1709780594000,0],[1709780595000,0],[1709780596000,0],[1709780597000,0],[1709780598000,0],[1709780599000,0],[1709780600000,0],[1709780601000,0],[1709780602000,0],[1709780603000,0],[1709780604000,0],[1709780605000,0],[1709780606000,0],[1709780607000,0],[1709780608000,0],[1709780609000,0],[1709780610000,0],[1709780611000,0],[1709780612000,0],[1709780613000,0],[1709780614000,0],[1709780615000,0],[1709780616000,0],[1709780617000,0],[1709780618000,0],[1709780619000,0],[1709780620000,0],[1709780621000,0],[1709780622000,0],[1709780623000,0],[1709780624000,0],[1709780625000,0],[1709780626000,0],[1709780627000,0],[1709780628000,0],[1709780629000,0],[1709780630000,0],[1709780631000,0],[1709780632000,0],[1709780633000,0],[1709780634000,0],[1709780635000,0],[1709780636000,0],[1709780637000,0],[1709780638000,0],[1709780639000,0],[1709780640000,0],[1709780641000,0],[1709780642000,0],[1709780643000,0],[1709780644000,0],[1709780645000,0],[1709780646000,0],[1709780647000,0],[1709780648000,0],[1709780649000,0],[1709780650000,0],[1709780651000,0],[1709780652000,0],[1709780653000,0],[1709780654000,0],[1709780655000,0],[1709780656000,0],[1709780657000,0],[1709780658000,0],[1709780659000,0],[1709780660000,0],[1709780661000,0],[1709780662000,0],[1709780663000,0],[1709780664000,0],[1709780665000,0],[1709780666000,0],[1709780667000,0],[1709780668000,0],[1709780669000,0],[1709780670000,0],[1709780671000,0],[1709780672000,0],[1709780673000,0],[1709780674000,0],[1709780675000,0],[1709780676000,0],[1709780677000,0],[1709780678000,0],[1709780679000,0],[1709780680000,0],[1709780681000,0],[1709780682000,0],[1709780683000,0],[1709780684000,0],[1709780685000,0],[1709780686000,0],[1709780687000,0],[1709780688000,0],[1709780689000,0],[1709780690000,0],[1709780691000,0],[1709780692000,0],[1709780693000,0],[1709780694000,0],[1709780695000,0],[1709780696000,0],[1709780697000,0],[1709780698000,0],[1709780699000,0],[1709780700000,0],[1709780701000,0],[1709780702000,0],[1709780703000,0],[1709780704000,0],[1709780705000,0],[1709780706000,0],[1709780707000,0],[1709780708000,0],[1709780709000,0],[1709780710000,0],[1709780711000,0],[1709780712000,0],[1709780713000,0],[1709780714000,0],[1709780715000,0],[1709780716000,0],[1709780717000,0],[1709780718000,0],[1709780719000,0],[1709780720000,0],[1709780721000,0],[1709780722000,0],[1709780723000,0],[1709780724000,0],[1709780725000,0],[1709780726000,0],[1709780727000,0],[1709780728000,0],[1709780729000,0],[1709780730000,0],[1709780731000,0],[1709780732000,0],[1709780733000,0],[1709780734000,0],[1709780735000,0],[1709780736000,0],[1709780737000,0],[1709780738000,0],[1709780739000,0],[1709780740000,0],[1709780741000,0],[1709780742000,0],[1709780743000,0],[1709780744000,0],[1709780745000,0],[1709780746000,0],[1709780747000,0],[1709780748000,0],[1709780749000,0],[1709780750000,0],[1709780751000,0],[1709780752000,0],[1709780753000,0],[1709780754000,0],[1709780755000,0],[1709780756000,0],[1709780757000,0],[1709780758000,0],[1709780759000,0],[1709780760000,0],[1709780761000,0],[1709780762000,0],[1709780763000,0],[1709780764000,0],[1709780765000,0],[1709780766000,0],[1709780767000,0],[1709780768000,0],[1709780769000,0],[1709780770000,0],[1709780771000,0],[1709780772000,0],[1709780773000,0],[1709780774000,0],[1709780775000,0],[1709780776000,0],[1709780777000,0],[1709780778000,0],[1709780779000,0],[1709780780000,0],[1709780781000,0],[1709780782000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00D5FF',
name: 'validação HTTP 404',
data: [
[1709780538000,0],[1709780539000,0],[1709780540000,0],[1709780541000,1],[1709780542000,0],[1709780543000,0],[1709780544000,0],[1709780545000,0],[1709780546000,0],[1709780547000,0],[1709780548000,0],[1709780549000,0],[1709780550000,0],[1709780551000,0],[1709780552000,0],[1709780553000,0],[1709780554000,0],[1709780555000,0],[1709780556000,0],[1709780557000,0],[1709780558000,0],[1709780559000,0],[1709780560000,0],[1709780561000,0],[1709780562000,0],[1709780563000,0],[1709780564000,0],[1709780565000,0],[1709780566000,0],[1709780567000,0],[1709780568000,0],[1709780569000,0],[1709780570000,0],[1709780571000,0],[1709780572000,0],[1709780573000,0],[1709780574000,0],[1709780575000,0],[1709780576000,0],[1709780577000,0],[1709780578000,0],[1709780579000,0],[1709780580000,0],[1709780581000,0],[1709780582000,0],[1709780583000,0],[1709780584000,0],[1709780585000,0],[1709780586000,0],[1709780587000,0],[1709780588000,0],[1709780589000,0],[1709780590000,0],[1709780591000,0],[1709780592000,0],[1709780593000,0],[1709780594000,0],[1709780595000,0],[1709780596000,0],[1709780597000,0],[1709780598000,0],[1709780599000,0],[1709780600000,0],[1709780601000,0],[1709780602000,0],[1709780603000,0],[1709780604000,0],[1709780605000,0],[1709780606000,0],[1709780607000,0],[1709780608000,0],[1709780609000,0],[1709780610000,0],[1709780611000,0],[1709780612000,0],[1709780613000,0],[1709780614000,0],[1709780615000,0],[1709780616000,0],[1709780617000,0],[1709780618000,0],[1709780619000,0],[1709780620000,0],[1709780621000,0],[1709780622000,0],[1709780623000,0],[1709780624000,0],[1709780625000,0],[1709780626000,0],[1709780627000,0],[1709780628000,0],[1709780629000,0],[1709780630000,0],[1709780631000,0],[1709780632000,0],[1709780633000,0],[1709780634000,0],[1709780635000,0],[1709780636000,0],[1709780637000,0],[1709780638000,0],[1709780639000,0],[1709780640000,0],[1709780641000,0],[1709780642000,0],[1709780643000,0],[1709780644000,0],[1709780645000,0],[1709780646000,0],[1709780647000,0],[1709780648000,0],[1709780649000,0],[1709780650000,0],[1709780651000,0],[1709780652000,0],[1709780653000,0],[1709780654000,0],[1709780655000,0],[1709780656000,0],[1709780657000,0],[1709780658000,0],[1709780659000,0],[1709780660000,0],[1709780661000,0],[1709780662000,0],[1709780663000,0],[1709780664000,0],[1709780665000,0],[1709780666000,0],[1709780667000,0],[1709780668000,0],[1709780669000,0],[1709780670000,0],[1709780671000,0],[1709780672000,0],[1709780673000,0],[1709780674000,0],[1709780675000,0],[1709780676000,0],[1709780677000,0],[1709780678000,0],[1709780679000,0],[1709780680000,0],[1709780681000,0],[1709780682000,0],[1709780683000,0],[1709780684000,0],[1709780685000,0],[1709780686000,0],[1709780687000,0],[1709780688000,0],[1709780689000,0],[1709780690000,0],[1709780691000,0],[1709780692000,0],[1709780693000,0],[1709780694000,0],[1709780695000,0],[1709780696000,0],[1709780697000,0],[1709780698000,0],[1709780699000,0],[1709780700000,0],[1709780701000,0],[1709780702000,0],[1709780703000,0],[1709780704000,0],[1709780705000,0],[1709780706000,0],[1709780707000,0],[1709780708000,0],[1709780709000,0],[1709780710000,0],[1709780711000,0],[1709780712000,0],[1709780713000,0],[1709780714000,0],[1709780715000,0],[1709780716000,0],[1709780717000,0],[1709780718000,0],[1709780719000,0],[1709780720000,0],[1709780721000,0],[1709780722000,0],[1709780723000,0],[1709780724000,0],[1709780725000,0],[1709780726000,0],[1709780727000,0],[1709780728000,0],[1709780729000,0],[1709780730000,0],[1709780731000,0],[1709780732000,0],[1709780733000,0],[1709780734000,0],[1709780735000,0],[1709780736000,0],[1709780737000,0],[1709780738000,0],[1709780739000,0],[1709780740000,0],[1709780741000,0],[1709780742000,0],[1709780743000,0],[1709780744000,0],[1709780745000,0],[1709780746000,0],[1709780747000,0],[1709780748000,0],[1709780749000,0],[1709780750000,0],[1709780751000,0],[1709780752000,0],[1709780753000,0],[1709780754000,0],[1709780755000,0],[1709780756000,0],[1709780757000,0],[1709780758000,0],[1709780759000,0],[1709780760000,0],[1709780761000,0],[1709780762000,0],[1709780763000,0],[1709780764000,0],[1709780765000,0],[1709780766000,0],[1709780767000,0],[1709780768000,0],[1709780769000,0],[1709780770000,0],[1709780771000,0],[1709780772000,0],[1709780773000,0],[1709780774000,0],[1709780775000,0],[1709780776000,0],[1709780777000,0],[1709780778000,0],[1709780779000,0],[1709780780000,0],[1709780781000,0],[1709780782000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00FF00',
name: 'validação concorrência saldo - 0',
data: [
[1709780538000,0],[1709780539000,0],[1709780540000,1],[1709780541000,0],[1709780542000,0],[1709780543000,0],[1709780544000,0],[1709780545000,0],[1709780546000,0],[1709780547000,0],[1709780548000,0],[1709780549000,0],[1709780550000,0],[1709780551000,0],[1709780552000,0],[1709780553000,0],[1709780554000,0],[1709780555000,0],[1709780556000,0],[1709780557000,0],[1709780558000,0],[1709780559000,0],[1709780560000,0],[1709780561000,0],[1709780562000,0],[1709780563000,0],[1709780564000,0],[1709780565000,0],[1709780566000,0],[1709780567000,0],[1709780568000,0],[1709780569000,0],[1709780570000,0],[1709780571000,0],[1709780572000,0],[1709780573000,0],[1709780574000,0],[1709780575000,0],[1709780576000,0],[1709780577000,0],[1709780578000,0],[1709780579000,0],[1709780580000,0],[1709780581000,0],[1709780582000,0],[1709780583000,0],[1709780584000,0],[1709780585000,0],[1709780586000,0],[1709780587000,0],[1709780588000,0],[1709780589000,0],[1709780590000,0],[1709780591000,0],[1709780592000,0],[1709780593000,0],[1709780594000,0],[1709780595000,0],[1709780596000,0],[1709780597000,0],[1709780598000,0],[1709780599000,0],[1709780600000,0],[1709780601000,0],[1709780602000,0],[1709780603000,0],[1709780604000,0],[1709780605000,0],[1709780606000,0],[1709780607000,0],[1709780608000,0],[1709780609000,0],[1709780610000,0],[1709780611000,0],[1709780612000,0],[1709780613000,0],[1709780614000,0],[1709780615000,0],[1709780616000,0],[1709780617000,0],[1709780618000,0],[1709780619000,0],[1709780620000,0],[1709780621000,0],[1709780622000,0],[1709780623000,0],[1709780624000,0],[1709780625000,0],[1709780626000,0],[1709780627000,0],[1709780628000,0],[1709780629000,0],[1709780630000,0],[1709780631000,0],[1709780632000,0],[1709780633000,0],[1709780634000,0],[1709780635000,0],[1709780636000,0],[1709780637000,0],[1709780638000,0],[1709780639000,0],[1709780640000,0],[1709780641000,0],[1709780642000,0],[1709780643000,0],[1709780644000,0],[1709780645000,0],[1709780646000,0],[1709780647000,0],[1709780648000,0],[1709780649000,0],[1709780650000,0],[1709780651000,0],[1709780652000,0],[1709780653000,0],[1709780654000,0],[1709780655000,0],[1709780656000,0],[1709780657000,0],[1709780658000,0],[1709780659000,0],[1709780660000,0],[1709780661000,0],[1709780662000,0],[1709780663000,0],[1709780664000,0],[1709780665000,0],[1709780666000,0],[1709780667000,0],[1709780668000,0],[1709780669000,0],[1709780670000,0],[1709780671000,0],[1709780672000,0],[1709780673000,0],[1709780674000,0],[1709780675000,0],[1709780676000,0],[1709780677000,0],[1709780678000,0],[1709780679000,0],[1709780680000,0],[1709780681000,0],[1709780682000,0],[1709780683000,0],[1709780684000,0],[1709780685000,0],[1709780686000,0],[1709780687000,0],[1709780688000,0],[1709780689000,0],[1709780690000,0],[1709780691000,0],[1709780692000,0],[1709780693000,0],[1709780694000,0],[1709780695000,0],[1709780696000,0],[1709780697000,0],[1709780698000,0],[1709780699000,0],[1709780700000,0],[1709780701000,0],[1709780702000,0],[1709780703000,0],[1709780704000,0],[1709780705000,0],[1709780706000,0],[1709780707000,0],[1709780708000,0],[1709780709000,0],[1709780710000,0],[1709780711000,0],[1709780712000,0],[1709780713000,0],[1709780714000,0],[1709780715000,0],[1709780716000,0],[1709780717000,0],[1709780718000,0],[1709780719000,0],[1709780720000,0],[1709780721000,0],[1709780722000,0],[1709780723000,0],[1709780724000,0],[1709780725000,0],[1709780726000,0],[1709780727000,0],[1709780728000,0],[1709780729000,0],[1709780730000,0],[1709780731000,0],[1709780732000,0],[1709780733000,0],[1709780734000,0],[1709780735000,0],[1709780736000,0],[1709780737000,0],[1709780738000,0],[1709780739000,0],[1709780740000,0],[1709780741000,0],[1709780742000,0],[1709780743000,0],[1709780744000,0],[1709780745000,0],[1709780746000,0],[1709780747000,0],[1709780748000,0],[1709780749000,0],[1709780750000,0],[1709780751000,0],[1709780752000,0],[1709780753000,0],[1709780754000,0],[1709780755000,0],[1709780756000,0],[1709780757000,0],[1709780758000,0],[1709780759000,0],[1709780760000,0],[1709780761000,0],[1709780762000,0],[1709780763000,0],[1709780764000,0],[1709780765000,0],[1709780766000,0],[1709780767000,0],[1709780768000,0],[1709780769000,0],[1709780770000,0],[1709780771000,0],[1709780772000,0],[1709780773000,0],[1709780774000,0],[1709780775000,0],[1709780776000,0],[1709780777000,0],[1709780778000,0],[1709780779000,0],[1709780780000,0],[1709780781000,0],[1709780782000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#9D00FF',
name: 'validação concorrência transações - c',
data: [
[1709780538000,0],[1709780539000,25],[1709780540000,5],[1709780541000,0],[1709780542000,0],[1709780543000,0],[1709780544000,0],[1709780545000,0],[1709780546000,0],[1709780547000,0],[1709780548000,0],[1709780549000,0],[1709780550000,0],[1709780551000,0],[1709780552000,0],[1709780553000,0],[1709780554000,0],[1709780555000,0],[1709780556000,0],[1709780557000,0],[1709780558000,0],[1709780559000,0],[1709780560000,0],[1709780561000,0],[1709780562000,0],[1709780563000,0],[1709780564000,0],[1709780565000,0],[1709780566000,0],[1709780567000,0],[1709780568000,0],[1709780569000,0],[1709780570000,0],[1709780571000,0],[1709780572000,0],[1709780573000,0],[1709780574000,0],[1709780575000,0],[1709780576000,0],[1709780577000,0],[1709780578000,0],[1709780579000,0],[1709780580000,0],[1709780581000,0],[1709780582000,0],[1709780583000,0],[1709780584000,0],[1709780585000,0],[1709780586000,0],[1709780587000,0],[1709780588000,0],[1709780589000,0],[1709780590000,0],[1709780591000,0],[1709780592000,0],[1709780593000,0],[1709780594000,0],[1709780595000,0],[1709780596000,0],[1709780597000,0],[1709780598000,0],[1709780599000,0],[1709780600000,0],[1709780601000,0],[1709780602000,0],[1709780603000,0],[1709780604000,0],[1709780605000,0],[1709780606000,0],[1709780607000,0],[1709780608000,0],[1709780609000,0],[1709780610000,0],[1709780611000,0],[1709780612000,0],[1709780613000,0],[1709780614000,0],[1709780615000,0],[1709780616000,0],[1709780617000,0],[1709780618000,0],[1709780619000,0],[1709780620000,0],[1709780621000,0],[1709780622000,0],[1709780623000,0],[1709780624000,0],[1709780625000,0],[1709780626000,0],[1709780627000,0],[1709780628000,0],[1709780629000,0],[1709780630000,0],[1709780631000,0],[1709780632000,0],[1709780633000,0],[1709780634000,0],[1709780635000,0],[1709780636000,0],[1709780637000,0],[1709780638000,0],[1709780639000,0],[1709780640000,0],[1709780641000,0],[1709780642000,0],[1709780643000,0],[1709780644000,0],[1709780645000,0],[1709780646000,0],[1709780647000,0],[1709780648000,0],[1709780649000,0],[1709780650000,0],[1709780651000,0],[1709780652000,0],[1709780653000,0],[1709780654000,0],[1709780655000,0],[1709780656000,0],[1709780657000,0],[1709780658000,0],[1709780659000,0],[1709780660000,0],[1709780661000,0],[1709780662000,0],[1709780663000,0],[1709780664000,0],[1709780665000,0],[1709780666000,0],[1709780667000,0],[1709780668000,0],[1709780669000,0],[1709780670000,0],[1709780671000,0],[1709780672000,0],[1709780673000,0],[1709780674000,0],[1709780675000,0],[1709780676000,0],[1709780677000,0],[1709780678000,0],[1709780679000,0],[1709780680000,0],[1709780681000,0],[1709780682000,0],[1709780683000,0],[1709780684000,0],[1709780685000,0],[1709780686000,0],[1709780687000,0],[1709780688000,0],[1709780689000,0],[1709780690000,0],[1709780691000,0],[1709780692000,0],[1709780693000,0],[1709780694000,0],[1709780695000,0],[1709780696000,0],[1709780697000,0],[1709780698000,0],[1709780699000,0],[1709780700000,0],[1709780701000,0],[1709780702000,0],[1709780703000,0],[1709780704000,0],[1709780705000,0],[1709780706000,0],[1709780707000,0],[1709780708000,0],[1709780709000,0],[1709780710000,0],[1709780711000,0],[1709780712000,0],[1709780713000,0],[1709780714000,0],[1709780715000,0],[1709780716000,0],[1709780717000,0],[1709780718000,0],[1709780719000,0],[1709780720000,0],[1709780721000,0],[1709780722000,0],[1709780723000,0],[1709780724000,0],[1709780725000,0],[1709780726000,0],[1709780727000,0],[1709780728000,0],[1709780729000,0],[1709780730000,0],[1709780731000,0],[1709780732000,0],[1709780733000,0],[1709780734000,0],[1709780735000,0],[1709780736000,0],[1709780737000,0],[1709780738000,0],[1709780739000,0],[1709780740000,0],[1709780741000,0],[1709780742000,0],[1709780743000,0],[1709780744000,0],[1709780745000,0],[1709780746000,0],[1709780747000,0],[1709780748000,0],[1709780749000,0],[1709780750000,0],[1709780751000,0],[1709780752000,0],[1709780753000,0],[1709780754000,0],[1709780755000,0],[1709780756000,0],[1709780757000,0],[1709780758000,0],[1709780759000,0],[1709780760000,0],[1709780761000,0],[1709780762000,0],[1709780763000,0],[1709780764000,0],[1709780765000,0],[1709780766000,0],[1709780767000,0],[1709780768000,0],[1709780769000,0],[1709780770000,0],[1709780771000,0],[1709780772000,0],[1709780773000,0],[1709780774000,0],[1709780775000,0],[1709780776000,0],[1709780777000,0],[1709780778000,0],[1709780779000,0],[1709780780000,0],[1709780781000,0],[1709780782000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FF00E1',
name: 'validação concorrência saldo - -25',
data: [
[1709780538000,1],[1709780539000,1],[1709780540000,0],[1709780541000,0],[1709780542000,0],[1709780543000,0],[1709780544000,0],[1709780545000,0],[1709780546000,0],[1709780547000,0],[1709780548000,0],[1709780549000,0],[1709780550000,0],[1709780551000,0],[1709780552000,0],[1709780553000,0],[1709780554000,0],[1709780555000,0],[1709780556000,0],[1709780557000,0],[1709780558000,0],[1709780559000,0],[1709780560000,0],[1709780561000,0],[1709780562000,0],[1709780563000,0],[1709780564000,0],[1709780565000,0],[1709780566000,0],[1709780567000,0],[1709780568000,0],[1709780569000,0],[1709780570000,0],[1709780571000,0],[1709780572000,0],[1709780573000,0],[1709780574000,0],[1709780575000,0],[1709780576000,0],[1709780577000,0],[1709780578000,0],[1709780579000,0],[1709780580000,0],[1709780581000,0],[1709780582000,0],[1709780583000,0],[1709780584000,0],[1709780585000,0],[1709780586000,0],[1709780587000,0],[1709780588000,0],[1709780589000,0],[1709780590000,0],[1709780591000,0],[1709780592000,0],[1709780593000,0],[1709780594000,0],[1709780595000,0],[1709780596000,0],[1709780597000,0],[1709780598000,0],[1709780599000,0],[1709780600000,0],[1709780601000,0],[1709780602000,0],[1709780603000,0],[1709780604000,0],[1709780605000,0],[1709780606000,0],[1709780607000,0],[1709780608000,0],[1709780609000,0],[1709780610000,0],[1709780611000,0],[1709780612000,0],[1709780613000,0],[1709780614000,0],[1709780615000,0],[1709780616000,0],[1709780617000,0],[1709780618000,0],[1709780619000,0],[1709780620000,0],[1709780621000,0],[1709780622000,0],[1709780623000,0],[1709780624000,0],[1709780625000,0],[1709780626000,0],[1709780627000,0],[1709780628000,0],[1709780629000,0],[1709780630000,0],[1709780631000,0],[1709780632000,0],[1709780633000,0],[1709780634000,0],[1709780635000,0],[1709780636000,0],[1709780637000,0],[1709780638000,0],[1709780639000,0],[1709780640000,0],[1709780641000,0],[1709780642000,0],[1709780643000,0],[1709780644000,0],[1709780645000,0],[1709780646000,0],[1709780647000,0],[1709780648000,0],[1709780649000,0],[1709780650000,0],[1709780651000,0],[1709780652000,0],[1709780653000,0],[1709780654000,0],[1709780655000,0],[1709780656000,0],[1709780657000,0],[1709780658000,0],[1709780659000,0],[1709780660000,0],[1709780661000,0],[1709780662000,0],[1709780663000,0],[1709780664000,0],[1709780665000,0],[1709780666000,0],[1709780667000,0],[1709780668000,0],[1709780669000,0],[1709780670000,0],[1709780671000,0],[1709780672000,0],[1709780673000,0],[1709780674000,0],[1709780675000,0],[1709780676000,0],[1709780677000,0],[1709780678000,0],[1709780679000,0],[1709780680000,0],[1709780681000,0],[1709780682000,0],[1709780683000,0],[1709780684000,0],[1709780685000,0],[1709780686000,0],[1709780687000,0],[1709780688000,0],[1709780689000,0],[1709780690000,0],[1709780691000,0],[1709780692000,0],[1709780693000,0],[1709780694000,0],[1709780695000,0],[1709780696000,0],[1709780697000,0],[1709780698000,0],[1709780699000,0],[1709780700000,0],[1709780701000,0],[1709780702000,0],[1709780703000,0],[1709780704000,0],[1709780705000,0],[1709780706000,0],[1709780707000,0],[1709780708000,0],[1709780709000,0],[1709780710000,0],[1709780711000,0],[1709780712000,0],[1709780713000,0],[1709780714000,0],[1709780715000,0],[1709780716000,0],[1709780717000,0],[1709780718000,0],[1709780719000,0],[1709780720000,0],[1709780721000,0],[1709780722000,0],[1709780723000,0],[1709780724000,0],[1709780725000,0],[1709780726000,0],[1709780727000,0],[1709780728000,0],[1709780729000,0],[1709780730000,0],[1709780731000,0],[1709780732000,0],[1709780733000,0],[1709780734000,0],[1709780735000,0],[1709780736000,0],[1709780737000,0],[1709780738000,0],[1709780739000,0],[1709780740000,0],[1709780741000,0],[1709780742000,0],[1709780743000,0],[1709780744000,0],[1709780745000,0],[1709780746000,0],[1709780747000,0],[1709780748000,0],[1709780749000,0],[1709780750000,0],[1709780751000,0],[1709780752000,0],[1709780753000,0],[1709780754000,0],[1709780755000,0],[1709780756000,0],[1709780757000,0],[1709780758000,0],[1709780759000,0],[1709780760000,0],[1709780761000,0],[1709780762000,0],[1709780763000,0],[1709780764000,0],[1709780765000,0],[1709780766000,0],[1709780767000,0],[1709780768000,0],[1709780769000,0],[1709780770000,0],[1709780771000,0],[1709780772000,0],[1709780773000,0],[1709780774000,0],[1709780775000,0],[1709780776000,0],[1709780777000,0],[1709780778000,0],[1709780779000,0],[1709780780000,0],[1709780781000,0],[1709780782000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#AECAEB',
name: 'validação concorrência transações - d',
data: [
[1709780538000,25],[1709780539000,0],[1709780540000,0],[1709780541000,0],[1709780542000,0],[1709780543000,0],[1709780544000,0],[1709780545000,0],[1709780546000,0],[1709780547000,0],[1709780548000,0],[1709780549000,0],[1709780550000,0],[1709780551000,0],[1709780552000,0],[1709780553000,0],[1709780554000,0],[1709780555000,0],[1709780556000,0],[1709780557000,0],[1709780558000,0],[1709780559000,0],[1709780560000,0],[1709780561000,0],[1709780562000,0],[1709780563000,0],[1709780564000,0],[1709780565000,0],[1709780566000,0],[1709780567000,0],[1709780568000,0],[1709780569000,0],[1709780570000,0],[1709780571000,0],[1709780572000,0],[1709780573000,0],[1709780574000,0],[1709780575000,0],[1709780576000,0],[1709780577000,0],[1709780578000,0],[1709780579000,0],[1709780580000,0],[1709780581000,0],[1709780582000,0],[1709780583000,0],[1709780584000,0],[1709780585000,0],[1709780586000,0],[1709780587000,0],[1709780588000,0],[1709780589000,0],[1709780590000,0],[1709780591000,0],[1709780592000,0],[1709780593000,0],[1709780594000,0],[1709780595000,0],[1709780596000,0],[1709780597000,0],[1709780598000,0],[1709780599000,0],[1709780600000,0],[1709780601000,0],[1709780602000,0],[1709780603000,0],[1709780604000,0],[1709780605000,0],[1709780606000,0],[1709780607000,0],[1709780608000,0],[1709780609000,0],[1709780610000,0],[1709780611000,0],[1709780612000,0],[1709780613000,0],[1709780614000,0],[1709780615000,0],[1709780616000,0],[1709780617000,0],[1709780618000,0],[1709780619000,0],[1709780620000,0],[1709780621000,0],[1709780622000,0],[1709780623000,0],[1709780624000,0],[1709780625000,0],[1709780626000,0],[1709780627000,0],[1709780628000,0],[1709780629000,0],[1709780630000,0],[1709780631000,0],[1709780632000,0],[1709780633000,0],[1709780634000,0],[1709780635000,0],[1709780636000,0],[1709780637000,0],[1709780638000,0],[1709780639000,0],[1709780640000,0],[1709780641000,0],[1709780642000,0],[1709780643000,0],[1709780644000,0],[1709780645000,0],[1709780646000,0],[1709780647000,0],[1709780648000,0],[1709780649000,0],[1709780650000,0],[1709780651000,0],[1709780652000,0],[1709780653000,0],[1709780654000,0],[1709780655000,0],[1709780656000,0],[1709780657000,0],[1709780658000,0],[1709780659000,0],[1709780660000,0],[1709780661000,0],[1709780662000,0],[1709780663000,0],[1709780664000,0],[1709780665000,0],[1709780666000,0],[1709780667000,0],[1709780668000,0],[1709780669000,0],[1709780670000,0],[1709780671000,0],[1709780672000,0],[1709780673000,0],[1709780674000,0],[1709780675000,0],[1709780676000,0],[1709780677000,0],[1709780678000,0],[1709780679000,0],[1709780680000,0],[1709780681000,0],[1709780682000,0],[1709780683000,0],[1709780684000,0],[1709780685000,0],[1709780686000,0],[1709780687000,0],[1709780688000,0],[1709780689000,0],[1709780690000,0],[1709780691000,0],[1709780692000,0],[1709780693000,0],[1709780694000,0],[1709780695000,0],[1709780696000,0],[1709780697000,0],[1709780698000,0],[1709780699000,0],[1709780700000,0],[1709780701000,0],[1709780702000,0],[1709780703000,0],[1709780704000,0],[1709780705000,0],[1709780706000,0],[1709780707000,0],[1709780708000,0],[1709780709000,0],[1709780710000,0],[1709780711000,0],[1709780712000,0],[1709780713000,0],[1709780714000,0],[1709780715000,0],[1709780716000,0],[1709780717000,0],[1709780718000,0],[1709780719000,0],[1709780720000,0],[1709780721000,0],[1709780722000,0],[1709780723000,0],[1709780724000,0],[1709780725000,0],[1709780726000,0],[1709780727000,0],[1709780728000,0],[1709780729000,0],[1709780730000,0],[1709780731000,0],[1709780732000,0],[1709780733000,0],[1709780734000,0],[1709780735000,0],[1709780736000,0],[1709780737000,0],[1709780738000,0],[1709780739000,0],[1709780740000,0],[1709780741000,0],[1709780742000,0],[1709780743000,0],[1709780744000,0],[1709780745000,0],[1709780746000,0],[1709780747000,0],[1709780748000,0],[1709780749000,0],[1709780750000,0],[1709780751000,0],[1709780752000,0],[1709780753000,0],[1709780754000,0],[1709780755000,0],[1709780756000,0],[1709780757000,0],[1709780758000,0],[1709780759000,0],[1709780760000,0],[1709780761000,0],[1709780762000,0],[1709780763000,0],[1709780764000,0],[1709780765000,0],[1709780766000,0],[1709780767000,0],[1709780768000,0],[1709780769000,0],[1709780770000,0],[1709780771000,0],[1709780772000,0],[1709780773000,0],[1709780774000,0],[1709780775000,0],[1709780776000,0],[1709780777000,0],[1709780778000,0],[1709780779000,0],[1709780780000,0],[1709780781000,0],[1709780782000,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: ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '10', '11', '12', '13', '14', '15', '16', '18', '19', '20', '22', '24', '25', '27', '30', '31', '42', '44', '45', '47', '48', '49', '50', '52', '53', '54', '57'],
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: [
21.24,75.22,3.25,0.09,0.04,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
],
tooltip: { yDecimals: 0, ySuffix: 'ms' }
},
{
type: 'column',
color: '#f15b4f',
name: 'KO',
data: [
],
tooltip: { yDecimals: 0, ySuffix: 'ms' }
}
]
});
responsetimeDistributionChart.setTitle({
text: '<span class="chart_title">Response Time Distribution</span>',
useHTML: true
});
var responsetimepercentilesovertimeokPercentiles = unpack([[1709780538,[18,30,45,50,50,50,52,53,56,57]],[1709780539,[4,4,4,4,4,4,4,4,4,4]],[1709780540,[3,8,12,15,15,16,18,18,19,19]],[1709780541,[3,3,3,3,3,3,3,3,3,3]],[1709780542,[0,2,4,8,9,13,19,19,25,27]],[1709780543,[2,2,3,3,3,3,3,3,3,4]],[1709780544,[2,2,2,2,2,2,3,4,4,5]],[1709780545,[2,2,2,3,3,3,3,3,3,3]],[1709780546,[2,2,2,3,3,3,3,3,3,3]],[1709780547,[2,2,2,2,2,3,3,3,3,3]],[1709780548,[2,2,2,2,3,3,3,3,3,3]],[1709780549,[1,2,2,2,2,2,2,2,2,3]],[1709780550,[1,2,2,2,2,2,2,2,2,2]],[1709780551,[1,2,2,2,2,3,3,3,3,3]],[1709780552,[1,2,2,2,2,2,2,2,2,3]],[1709780553,[1,1,2,2,2,3,3,3,3,3]],[1709780554,[1,1,2,2,2,2,2,2,2,3]],[1709780555,[1,1,1,2,2,2,2,2,2,3]],[1709780556,[1,1,2,2,2,2,2,2,2,3]],[1709780557,[1,1,1,2,2,2,2,2,2,3]],[1709780558,[1,1,1,2,2,2,2,2,2,2]],[1709780559,[1,1,1,2,2,2,2,2,2,2]],[1709780560,[0,1,1,2,2,2,2,2,2,2]],[1709780561,[1,1,1,1,1,1,2,2,2,3]],[1709780562,[1,1,1,2,2,2,2,2,2,3]],[1709780563,[0,1,1,1,2,2,2,2,2,2]],[1709780564,[1,1,1,1,2,2,2,2,2,2]],[1709780565,[1,1,1,1,1,2,2,2,2,2]],[1709780566,[1,1,1,2,2,2,2,2,2,2]],[1709780567,[1,1,1,1,2,2,2,2,2,2]],[1709780568,[0,1,1,1,1,1,2,2,2,2]],[1709780569,[0,1,1,1,1,1,1,2,2,2]],[1709780570,[0,1,1,1,1,2,2,2,3,8]],[1709780571,[0,1,1,1,1,2,2,2,2,2]],[1709780572,[1,1,1,1,1,1,2,2,2,2]],[1709780573,[0,1,1,1,1,1,1,2,2,2]],[1709780574,[0,1,1,1,1,1,1,1,2,2]],[1709780575,[1,1,1,1,1,1,1,2,2,2]],[1709780576,[0,1,1,1,1,1,1,2,2,2]],[1709780577,[0,1,1,1,1,1,1,1,2,2]],[1709780578,[1,1,1,1,1,1,1,2,2,3]],[1709780579,[0,1,1,1,1,1,1,2,2,2]],[1709780580,[0,1,1,1,1,1,1,1,2,2]],[1709780581,[1,1,1,1,1,1,1,1,2,2]],[1709780582,[0,1,1,1,1,1,1,1,1,2]],[1709780583,[0,1,1,1,1,1,1,1,2,2]],[1709780584,[1,1,1,1,1,1,1,2,2,2]],[1709780585,[1,1,1,1,1,1,1,2,2,2]],[1709780586,[0,1,1,1,1,1,1,1,1,2]],[1709780587,[0,1,1,1,1,1,1,1,1,1]],[1709780588,[0,1,1,1,1,1,1,1,2,2]],[1709780589,[1,1,1,1,1,1,1,2,2,2]],[1709780590,[0,1,1,1,1,1,1,1,2,2]],[1709780591,[0,1,1,1,1,1,1,1,2,2]],[1709780592,[0,1,1,1,1,1,1,1,1,2]],[1709780593,[0,1,1,1,1,1,1,1,1,2]],[1709780594,[0,1,1,1,1,1,1,1,2,2]],[1709780595,[0,1,1,1,1,1,1,1,1,2]],[1709780596,[1,1,1,1,1,1,1,1,1,3]],[1709780597,[0,1,1,1,1,1,1,1,2,2]],[1709780598,[1,1,1,1,1,1,1,1,1,2]],[1709780599,[0,1,1,1,1,1,1,1,2,2]],[1709780600,[0,0,0,1,1,1,1,1,1,1]],[1709780601,[0,0,1,1,1,1,1,1,1,2]],[1709780602,[0,1,1,1,1,1,1,1,1,2]],[1709780603,[0,1,1,1,1,1,1,1,2,2]],[1709780604,[0,1,1,1,1,1,1,1,2,2]],[1709780605,[0,0,1,1,1,1,1,1,1,2]],[1709780606,[0,1,1,1,1,1,1,1,2,2]],[1709780607,[0,1,1,1,1,1,1,1,2,2]],[1709780608,[0,0,1,1,1,1,1,1,2,2]],[1709780609,[0,1,1,1,1,1,1,1,2,4]],[1709780610,[0,1,1,1,1,1,1,1,2,2]],[1709780611,[0,0,1,1,1,1,1,1,2,2]],[1709780612,[0,0,0,1,1,1,1,1,1,1]],[1709780613,[0,0,1,1,1,1,1,1,2,2]],[1709780614,[0,1,1,1,1,1,1,1,2,2]],[1709780615,[0,1,1,1,1,1,1,1,2,2]],[1709780616,[0,0,1,1,1,1,1,1,2,2]],[1709780617,[0,1,1,1,1,1,1,1,1,2]],[1709780618,[1,1,1,1,1,1,1,1,2,2]],[1709780619,[0,1,1,1,1,1,1,1,2,2]],[1709780620,[0,0,1,1,1,1,1,1,2,2]],[1709780621,[0,1,1,1,1,1,1,2,2,2]],[1709780622,[0,1,1,1,1,1,1,1,2,2]],[1709780623,[0,1,1,1,1,1,1,1,2,2]],[1709780624,[0,1,1,1,1,1,1,1,1,2]],[1709780625,[0,0,1,1,1,1,1,1,1,3]],[1709780626,[0,0,1,1,1,1,1,1,1,2]],[1709780627,[0,1,1,1,1,1,1,1,1,2]],[1709780628,[0,1,1,1,1,1,1,1,2,2]],[1709780629,[0,1,1,1,1,1,1,1,2,2]],[1709780630,[0,1,1,1,1,1,1,1,2,2]],[1709780631,[0,1,1,1,1,1,1,1,2,2]],[1709780632,[0,1,1,1,1,1,1,1,1,2]],[1709780633,[0,0,1,1,1,1,1,1,1,2]],[1709780634,[0,0,0,0,1,1,1,1,1,1]],[1709780635,[0,0,0,1,1,1,1,1,1,1]],[1709780636,[0,1,1,1,1,1,1,1,2,2]],[1709780637,[1,1,1,1,1,1,1,1,2,2]],[1709780638,[0,1,1,1,1,1,1,1,2,2]],[1709780639,[0,0,1,1,1,1,1,2,2,2]],[1709780640,[0,1,1,1,1,1,1,1,2,2]],[1709780641,[0,1,1,1,1,1,1,2,2,2]],[1709780642,[0,0,1,1,1,1,1,1,2,2]],[1709780643,[0,0,1,1,1,1,1,1,2,2]],[1709780644,[0,1,1,1,1,1,1,1,2,2]],[1709780645,[0,0,1,1,1,1,1,1,2,2]],[1709780646,[0,0,1,1,1,1,1,1,2,3]],[1709780647,[0,0,1,1,1,1,1,1,1,2]],[1709780648,[0,0,0,1,1,1,1,1,2,2]],[1709780649,[0,0,1,1,1,1,1,1,2,2]],[1709780650,[0,0,1,1,1,1,1,1,2,2]],[1709780651,[0,0,1,1,1,1,1,1,2,2]],[1709780652,[0,1,1,1,1,1,1,1,2,2]],[1709780653,[0,1,1,1,1,1,1,2,2,2]],[1709780654,[0,1,1,1,1,1,1,2,2,2]],[1709780655,[0,1,1,1,1,1,1,1,1,1]],[1709780656,[0,1,1,1,1,1,1,1,2,2]],[1709780657,[0,0,1,1,1,1,1,1,2,2]],[1709780658,[0,0,1,1,1,1,1,1,1,2]],[1709780659,[1,1,1,1,1,1,1,1,2,2]],[1709780660,[1,1,1,1,1,1,1,1,1,1]],[1709780661,[0,1,1,1,1,1,1,1,1,3]],[1709780662,[0,1,1,1,1,1,1,1,1,1]],[1709780663,[0,1,1,1,1,1,1,1,1,2]],[1709780664,[0,1,1,1,1,1,1,1,1,2]],[1709780665,[0,1,1,1,1,1,1,1,1,2]],[1709780666,[1,1,1,1,1,1,1,1,2,2]],[1709780667,[0,1,1,1,1,1,1,1,1,2]],[1709780668,[0,1,1,1,1,1,1,1,2,4]],[1709780669,[0,0,1,1,1,1,1,1,2,2]],[1709780670,[0,1,1,1,1,1,1,1,2,2]],[1709780671,[0,1,1,1,1,1,1,1,2,2]],[1709780672,[0,0,1,1,1,1,1,1,1,2]],[1709780673,[0,0,0,1,1,1,1,1,1,1]],[1709780674,[0,0,1,1,1,1,1,1,1,2]],[1709780675,[0,1,1,1,1,1,1,1,1,2]],[1709780676,[0,1,1,1,1,1,1,1,2,2]],[1709780677,[0,1,1,1,1,1,1,2,2,2]],[1709780678,[1,1,1,1,1,1,1,2,2,3]],[1709780679,[0,0,1,1,1,1,1,1,2,2]],[1709780680,[0,0,1,1,1,1,1,1,2,2]],[1709780681,[0,1,1,1,1,1,1,1,2,2]],[1709780682,[0,0,1,1,1,1,1,1,2,2]],[1709780683,[0,1,1,1,1,1,1,2,2,2]],[1709780684,[0,0,1,1,1,1,1,1,2,2]],[1709780685,[0,0,0,1,1,1,1,1,1,2]],[1709780686,[0,0,1,1,1,1,1,1,2,2]],[1709780687,[0,1,1,1,1,1,1,1,1,2]],[1709780688,[0,0,1,1,1,1,1,2,2,4]],[1709780689,[0,1,1,1,1,1,1,2,2,2]],[1709780690,[0,0,0,1,1,1,1,1,2,2]],[1709780691,[0,0,1,1,1,1,2,2,2,3]],[1709780692,[0,1,1,1,1,1,1,2,2,2]],[1709780693,[0,1,1,1,1,1,1,1,2,2]],[1709780694,[0,1,1,1,1,1,1,1,2,2]],[1709780695,[0,1,1,1,1,1,1,1,2,2]],[1709780696,[0,0,1,1,1,1,1,1,2,2]],[1709780697,[0,0,1,1,1,1,1,1,2,2]],[1709780698,[0,1,1,1,1,1,1,1,2,2]],[1709780699,[0,0,1,1,1,1,1,1,1,2]],[1709780700,[0,0,1,1,1,1,1,1,2,2]],[1709780701,[0,1,1,1,1,1,1,1,2,5]],[1709780702,[0,1,1,1,1,1,1,1,1,1]],[1709780703,[0,0,0,1,1,1,1,1,1,1]],[1709780704,[0,0,0,1,1,1,1,1,1,2]],[1709780705,[0,1,1,1,1,1,1,1,2,2]],[1709780706,[0,0,1,1,1,1,1,1,2,2]],[1709780707,[0,0,1,1,1,1,1,1,2,2]],[1709780708,[0,1,1,1,1,1,1,1,2,2]],[1709780709,[0,1,1,1,1,1,1,1,2,2]],[1709780710,[1,1,1,1,1,1,1,1,1,2]],[1709780711,[0,1,1,1,1,1,1,1,1,2]],[1709780712,[0,1,1,1,1,1,1,1,2,2]],[1709780713,[0,0,1,1,1,1,1,1,2,2]],[1709780714,[0,0,1,1,1,1,1,1,2,2]],[1709780715,[0,1,1,1,1,1,1,1,2,4]],[1709780716,[1,1,1,1,1,1,1,1,2,2]],[1709780717,[1,1,1,1,1,1,1,1,2,2]],[1709780718,[0,0,1,1,1,1,1,2,2,2]],[1709780719,[0,0,1,1,1,1,1,1,1,1]],[1709780720,[1,1,1,1,1,1,1,1,1,2]],[1709780721,[1,1,1,1,1,1,1,1,1,2]],[1709780722,[0,0,1,1,1,1,1,1,2,2]],[1709780723,[0,0,1,1,1,1,1,1,1,2]],[1709780724,[0,1,1,1,1,1,1,1,1,2]],[1709780725,[0,0,1,1,1,1,1,1,1,2]],[1709780726,[0,0,1,1,1,1,1,1,2,2]],[1709780727,[1,1,1,1,1,1,1,1,2,2]],[1709780728,[0,1,1,1,1,1,1,2,2,2]],[1709780729,[0,1,1,1,1,1,1,2,2,2]],[1709780730,[0,0,1,1,1,1,1,1,1,2]],[1709780731,[0,0,1,1,1,1,1,1,1,1]],[1709780732,[0,1,1,1,1,1,1,1,1,1]],[1709780733,[0,1,1,1,1,1,1,1,1,2]],[1709780734,[0,1,1,1,1,1,1,1,1,1]],[1709780735,[0,1,1,1,1,1,1,1,1,4]],[1709780736,[0,1,1,1,1,1,1,1,1,2]],[1709780737,[1,1,1,1,1,1,1,1,1,2]],[1709780738,[1,1,1,1,1,1,1,1,1,2]],[1709780739,[1,1,1,1,1,1,1,1,1,1]],[1709780740,[0,1,1,1,1,1,1,1,2,2]],[1709780741,[0,1,1,1,1,1,1,2,2,2]],[1709780742,[1,1,1,1,1,1,1,2,2,4]],[1709780743,[0,0,1,1,1,1,1,1,2,2]],[1709780744,[0,0,1,1,1,1,1,1,1,2]],[1709780745,[0,1,1,1,1,1,1,1,2,2]],[1709780746,[0,1,1,1,1,1,1,1,2,2]],[1709780747,[0,1,1,1,1,1,1,1,2,2]],[1709780748,[0,1,1,1,1,1,1,1,2,2]],[1709780749,[1,1,1,1,1,1,1,1,2,4]],[1709780750,[1,1,1,1,1,1,1,2,2,2]],[1709780751,[0,1,1,1,1,1,1,2,2,2]],[1709780752,[0,1,1,1,1,1,1,1,2,2]],[1709780753,[0,1,1,1,1,1,1,2,2,2]],[1709780754,[0,1,1,1,1,1,1,1,2,2]],[1709780755,[0,1,1,1,1,1,1,2,2,5]],[1709780756,[1,1,1,1,1,1,1,2,2,2]],[1709780757,[0,1,1,1,1,1,2,2,2,2]],[1709780758,[0,1,1,1,1,1,1,1,2,2]],[1709780759,[0,0,1,1,1,1,1,1,2,2]],[1709780760,[0,0,1,1,1,1,1,1,1,1]],[1709780761,[0,1,1,1,1,1,1,1,1,2]],[1709780762,[0,0,1,1,1,1,1,1,2,3]],[1709780763,[0,0,1,1,1,1,1,1,1,2]],[1709780764,[1,1,1,1,1,1,1,1,1,1]],[1709780765,[1,1,1,1,1,1,1,1,1,2]],[1709780766,[0,1,1,1,1,1,1,1,2,6]],[1709780767,[0,0,1,1,1,1,1,1,1,2]],[1709780768,[0,0,0,0,0,0,0,1,1,2]],[1709780769,[0,0,1,1,1,1,1,1,1,2]],[1709780770,[0,1,1,1,1,1,1,1,1,1]],[1709780771,[0,1,1,1,1,1,1,1,1,2]],[1709780772,[0,1,1,1,1,1,1,1,1,2]],[1709780773,[0,0,1,1,1,1,1,1,1,2]],[1709780774,[0,0,0,0,0,0,1,1,1,1]],[1709780775,[0,0,0,1,1,1,1,1,1,2]],[1709780776,[0,0,1,1,1,1,1,1,2,4]],[1709780777,[0,0,1,1,1,1,1,1,1,2]],[1709780778,[0,1,1,1,1,1,1,2,2,2]],[1709780779,[0,0,1,1,1,1,1,1,2,2]],[1709780780,[0,0,1,1,1,1,1,1,2,2]],[1709780781,[0,0,1,1,1,1,1,1,2,2]],[1709780782,[0,0,1,1,1,1,1,1,2,2]]]);
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([[1709780538,[25,25,0]],[1709780539,[1,1,0]],[1709780540,[25,25,0]],[1709780541,[1,1,0]],[1709780542,[71,71,0]],[1709780543,[3,3,0]],[1709780544,[6,6,0]],[1709780545,[9,9,0]],[1709780546,[11,11,0]],[1709780547,[13,13,0]],[1709780548,[18,18,0]],[1709780549,[19,19,0]],[1709780550,[24,24,0]],[1709780551,[26,26,0]],[1709780552,[27,27,0]],[1709780553,[32,32,0]],[1709780554,[34,34,0]],[1709780555,[37,37,0]],[1709780556,[39,39,0]],[1709780557,[43,43,0]],[1709780558,[45,45,0]],[1709780559,[48,48,0]],[1709780560,[50,50,0]],[1709780561,[54,54,0]],[1709780562,[56,56,0]],[1709780563,[60,60,0]],[1709780564,[61,61,0]],[1709780565,[65,65,0]],[1709780566,[67,67,0]],[1709780567,[70,70,0]],[1709780568,[74,74,0]],[1709780569,[76,76,0]],[1709780570,[80,80,0]],[1709780571,[81,81,0]],[1709780572,[84,84,0]],[1709780573,[89,89,0]],[1709780574,[89,89,0]],[1709780575,[93,93,0]],[1709780576,[96,96,0]],[1709780577,[98,98,0]],[1709780578,[102,102,0]],[1709780579,[104,104,0]],[1709780580,[107,107,0]],[1709780581,[109,109,0]],[1709780582,[114,114,0]],[1709780583,[115,115,0]],[1709780584,[119,119,0]],[1709780585,[121,121,0]],[1709780586,[123,123,0]],[1709780587,[126,126,0]],[1709780588,[129,129,0]],[1709780589,[133,133,0]],[1709780590,[134,134,0]],[1709780591,[139,139,0]],[1709780592,[140,140,0]],[1709780593,[144,144,0]],[1709780594,[146,146,0]],[1709780595,[149,149,0]],[1709780596,[151,151,0]],[1709780597,[155,155,0]],[1709780598,[159,159,0]],[1709780599,[159,159,0]],[1709780600,[164,164,0]],[1709780601,[166,166,0]],[1709780602,[170,170,0]],[1709780603,[170,170,0]],[1709780604,[174,174,0]],[1709780605,[177,177,0]],[1709780606,[180,180,0]],[1709780607,[183,183,0]],[1709780608,[186,186,0]],[1709780609,[188,188,0]],[1709780610,[192,192,0]],[1709780611,[194,194,0]],[1709780612,[197,197,0]],[1709780613,[199,199,0]],[1709780614,[203,203,0]],[1709780615,[205,205,0]],[1709780616,[208,208,0]],[1709780617,[211,211,0]],[1709780618,[213,213,0]],[1709780619,[217,217,0]],[1709780620,[219,219,0]],[1709780621,[222,222,0]],[1709780622,[225,225,0]],[1709780623,[228,228,0]],[1709780624,[229,229,0]],[1709780625,[234,234,0]],[1709780626,[237,237,0]],[1709780627,[238,238,0]],[1709780628,[243,243,0]],[1709780629,[244,244,0]],[1709780630,[248,248,0]],[1709780631,[251,251,0]],[1709780632,[251,251,0]],[1709780633,[257,257,0]],[1709780634,[259,259,0]],[1709780635,[262,262,0]],[1709780636,[263,263,0]],[1709780637,[267,267,0]],[1709780638,[269,269,0]],[1709780639,[274,274,0]],[1709780640,[275,275,0]],[1709780641,[279,279,0]],[1709780642,[281,281,0]],[1709780643,[283,283,0]],[1709780644,[286,286,0]],[1709780645,[290,290,0]],[1709780646,[292,292,0]],[1709780647,[295,295,0]],[1709780648,[299,299,0]],[1709780649,[300,300,0]],[1709780650,[304,304,0]],[1709780651,[306,306,0]],[1709780652,[309,309,0]],[1709780653,[313,313,0]],[1709780654,[314,314,0]],[1709780655,[318,318,0]],[1709780656,[321,321,0]],[1709780657,[321,321,0]],[1709780658,[328,328,0]],[1709780659,[329,329,0]],[1709780660,[331,331,0]],[1709780661,[334,334,0]],[1709780662,[339,339,0]],[1709780663,[340,340,0]],[1709780664,[340,340,0]],[1709780665,[340,340,0]],[1709780666,[340,340,0]],[1709780667,[340,340,0]],[1709780668,[340,340,0]],[1709780669,[340,340,0]],[1709780670,[340,340,0]],[1709780671,[340,340,0]],[1709780672,[340,340,0]],[1709780673,[340,340,0]],[1709780674,[340,340,0]],[1709780675,[340,340,0]],[1709780676,[340,340,0]],[1709780677,[340,340,0]],[1709780678,[340,340,0]],[1709780679,[340,340,0]],[1709780680,[340,340,0]],[1709780681,[340,340,0]],[1709780682,[340,340,0]],[1709780683,[340,340,0]],[1709780684,[340,340,0]],[1709780685,[340,340,0]],[1709780686,[340,340,0]],[1709780687,[340,340,0]],[1709780688,[340,340,0]],[1709780689,[340,340,0]],[1709780690,[340,340,0]],[1709780691,[340,340,0]],[1709780692,[340,340,0]],[1709780693,[340,340,0]],[1709780694,[340,340,0]],[1709780695,[340,340,0]],[1709780696,[340,340,0]],[1709780697,[340,340,0]],[1709780698,[340,340,0]],[1709780699,[340,340,0]],[1709780700,[340,340,0]],[1709780701,[340,340,0]],[1709780702,[340,340,0]],[1709780703,[340,340,0]],[1709780704,[340,340,0]],[1709780705,[340,340,0]],[1709780706,[340,340,0]],[1709780707,[340,340,0]],[1709780708,[340,340,0]],[1709780709,[340,340,0]],[1709780710,[340,340,0]],[1709780711,[340,340,0]],[1709780712,[340,340,0]],[1709780713,[340,340,0]],[1709780714,[340,340,0]],[1709780715,[340,340,0]],[1709780716,[340,340,0]],[1709780717,[340,340,0]],[1709780718,[340,340,0]],[1709780719,[340,340,0]],[1709780720,[340,340,0]],[1709780721,[340,340,0]],[1709780722,[340,340,0]],[1709780723,[340,340,0]],[1709780724,[340,340,0]],[1709780725,[340,340,0]],[1709780726,[340,340,0]],[1709780727,[340,340,0]],[1709780728,[340,340,0]],[1709780729,[340,340,0]],[1709780730,[340,340,0]],[1709780731,[340,340,0]],[1709780732,[340,340,0]],[1709780733,[340,340,0]],[1709780734,[340,340,0]],[1709780735,[340,340,0]],[1709780736,[340,340,0]],[1709780737,[340,340,0]],[1709780738,[340,340,0]],[1709780739,[340,340,0]],[1709780740,[340,340,0]],[1709780741,[340,340,0]],[1709780742,[340,340,0]],[1709780743,[340,340,0]],[1709780744,[340,340,0]],[1709780745,[340,340,0]],[1709780746,[340,340,0]],[1709780747,[340,340,0]],[1709780748,[340,340,0]],[1709780749,[340,340,0]],[1709780750,[340,340,0]],[1709780751,[340,340,0]],[1709780752,[340,340,0]],[1709780753,[340,340,0]],[1709780754,[340,340,0]],[1709780755,[340,340,0]],[1709780756,[340,340,0]],[1709780757,[340,340,0]],[1709780758,[340,340,0]],[1709780759,[340,340,0]],[1709780760,[340,340,0]],[1709780761,[340,340,0]],[1709780762,[340,340,0]],[1709780763,[340,340,0]],[1709780764,[340,340,0]],[1709780765,[340,340,0]],[1709780766,[340,340,0]],[1709780767,[340,340,0]],[1709780768,[340,340,0]],[1709780769,[340,340,0]],[1709780770,[340,340,0]],[1709780771,[340,340,0]],[1709780772,[340,340,0]],[1709780773,[340,340,0]],[1709780774,[340,340,0]],[1709780775,[340,340,0]],[1709780776,[340,340,0]],[1709780777,[340,340,0]],[1709780778,[340,340,0]],[1709780779,[340,340,0]],[1709780780,[340,340,0]],[1709780781,[340,340,0]],[1709780782,[501,501,0]]]);
var requestsChart = new Highcharts.StockChart({
chart: {
renderTo: 'requests',
zoomType: 'x',
marginBottom: 60
},
credits: { enabled: false },
legend: {
enabled: true,
floating: true,
y: -65,
borderWidth: 0,
itemStyle: { fontWeight: "normal" },
symbolRadius: 0
},
title: { text: 'A title to let highcharts reserve the place for the title set later' },
navigator: {
maskInside: false
},
rangeSelector: {
buttonSpacing: 0,
buttonTheme: {
fill: '#CFC9C6',
padding: 1,
stroke: '#000000',
'stroke-width': 0.25,
style: {
color: '#000000',
fontWeight: 'bold',
},
states: {
stroke: '#000000',
'stroke-width': 0.25,
hover: {
fill: '#92918C',
style: { color: 'black' }
},
select: {
fill: '#FFA900',
style: { color: 'white' }
}
}
},
buttons : [
{
type : 'minute',
count : 1,
text : '1m'
}, {
type : 'minute',
count : 10,
text : '10m'
}, {
type : 'hour',
count : 1,
text : '1h'
}, {
type : 'all',
count : 1,
text : 'All'
}
],
selected : 3,
inputEnabled : false
},
plotOptions: {
series: {
dataGrouping: { enabled: false }
},
area: {
stacking: 'normal'
}
},
xAxis: {
type: 'datetime',
ordinal: false,
maxZoom: 10000 // three days
},
yAxis:[