-
Notifications
You must be signed in to change notification settings - Fork 923
/
Copy pathindex.html
1173 lines (1104 loc) · 93.1 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-26 20:11:09 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 - quarkusclub">
<span class="simulation-information-label">Description: </span>
<span>Rinha de Backend - 2024/Q1: Crébito - quarkusclub</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: [
[1708978269000,0],[1708978270000,0],[1708978271000,0],[1708978272000,0],[1708978273000,1],[1708978274000,2],[1708978275000,2],[1708978276000,4],[1708978277000,4],[1708978278000,5],[1708978279000,6],[1708978280000,7],[1708978281000,8],[1708978282000,8],[1708978283000,10],[1708978284000,10],[1708978285000,12],[1708978286000,12],[1708978287000,14],[1708978288000,14],[1708978289000,15],[1708978290000,16],[1708978291000,17],[1708978292000,17],[1708978293000,19],[1708978294000,20],[1708978295000,20],[1708978296000,22],[1708978297000,22],[1708978298000,23],[1708978299000,25],[1708978300000,25],[1708978301000,26],[1708978302000,26],[1708978303000,28],[1708978304000,29],[1708978305000,30],[1708978306000,30],[1708978307000,32],[1708978308000,32],[1708978309000,33],[1708978310000,34],[1708978311000,35],[1708978312000,36],[1708978313000,37],[1708978314000,38],[1708978315000,39],[1708978316000,39],[1708978317000,41],[1708978318000,41],[1708978319000,43],[1708978320000,43],[1708978321000,44],[1708978322000,45],[1708978323000,46],[1708978324000,47],[1708978325000,48],[1708978326000,48],[1708978327000,50],[1708978328000,50],[1708978329000,52],[1708978330000,53],[1708978331000,54],[1708978332000,55],[1708978333000,57],[1708978334000,56],[1708978335000,58],[1708978336000,59],[1708978337000,60],[1708978338000,59],[1708978339000,62],[1708978340000,61],[1708978341000,63],[1708978342000,63],[1708978343000,64],[1708978344000,65],[1708978345000,66],[1708978346000,67],[1708978347000,68],[1708978348000,68],[1708978349000,70],[1708978350000,70],[1708978351000,72],[1708978352000,72],[1708978353000,73],[1708978354000,74],[1708978355000,75],[1708978356000,76],[1708978357000,77],[1708978358000,78],[1708978359000,80],[1708978360000,79],[1708978361000,81],[1708978362000,81],[1708978363000,82],[1708978364000,83],[1708978365000,85],[1708978366000,85],[1708978367000,86],[1708978368000,86],[1708978369000,88],[1708978370000,89],[1708978371000,89],[1708978372000,91],[1708978373000,91],[1708978374000,92],[1708978375000,94],[1708978376000,94],[1708978377000,95],[1708978378000,96],[1708978379000,97],[1708978380000,97],[1708978381000,99],[1708978382000,99],[1708978383000,101],[1708978384000,101],[1708978385000,103],[1708978386000,103],[1708978387000,104],[1708978388000,106],[1708978389000,107],[1708978390000,108],[1708978391000,108],[1708978392000,109],[1708978393000,111],[1708978394000,111],[1708978395000,111],[1708978396000,111],[1708978397000,111],[1708978398000,111],[1708978399000,111],[1708978400000,111],[1708978401000,111],[1708978402000,110],[1708978403000,111],[1708978404000,111],[1708978405000,111],[1708978406000,111],[1708978407000,111],[1708978408000,111],[1708978409000,111],[1708978410000,111],[1708978411000,111],[1708978412000,111],[1708978413000,111],[1708978414000,111],[1708978415000,111],[1708978416000,111],[1708978417000,111],[1708978418000,110],[1708978419000,111],[1708978420000,112],[1708978421000,111],[1708978422000,111],[1708978423000,111],[1708978424000,111],[1708978425000,111],[1708978426000,110],[1708978427000,110],[1708978428000,111],[1708978429000,111],[1708978430000,111],[1708978431000,111],[1708978432000,111],[1708978433000,110],[1708978434000,110],[1708978435000,111],[1708978436000,111],[1708978437000,111],[1708978438000,110],[1708978439000,111],[1708978440000,111],[1708978441000,111],[1708978442000,111],[1708978443000,111],[1708978444000,111],[1708978445000,111],[1708978446000,111],[1708978447000,111],[1708978448000,110],[1708978449000,111],[1708978450000,111],[1708978451000,111],[1708978452000,111],[1708978453000,111],[1708978454000,111],[1708978455000,111],[1708978456000,111],[1708978457000,111],[1708978458000,110],[1708978459000,110],[1708978460000,111],[1708978461000,111],[1708978462000,111],[1708978463000,111],[1708978464000,111],[1708978465000,111],[1708978466000,110],[1708978467000,110],[1708978468000,111],[1708978469000,111],[1708978470000,111],[1708978471000,110],[1708978472000,111],[1708978473000,111],[1708978474000,111],[1708978475000,111],[1708978476000,111],[1708978477000,111],[1708978478000,111],[1708978479000,111],[1708978480000,111],[1708978481000,111],[1708978482000,111],[1708978483000,111],[1708978484000,111],[1708978485000,111],[1708978486000,110],[1708978487000,111],[1708978488000,111],[1708978489000,111],[1708978490000,111],[1708978491000,111],[1708978492000,110],[1708978493000,110],[1708978494000,110],[1708978495000,111],[1708978496000,111],[1708978497000,110],[1708978498000,111],[1708978499000,111],[1708978500000,111],[1708978501000,111],[1708978502000,111],[1708978503000,110],[1708978504000,111],[1708978505000,111],[1708978506000,111],[1708978507000,111],[1708978508000,111],[1708978509000,111],[1708978510000,111],[1708978511000,111],[1708978512000,111],[1708978513000,108]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#68b65c',
name: 'débitos',
data: [
[1708978269000,0],[1708978270000,0],[1708978271000,0],[1708978272000,0],[1708978273000,1],[1708978274000,2],[1708978275000,4],[1708978276000,6],[1708978277000,7],[1708978278000,9],[1708978279000,11],[1708978280000,13],[1708978281000,15],[1708978282000,16],[1708978283000,19],[1708978284000,20],[1708978285000,22],[1708978286000,24],[1708978287000,25],[1708978288000,28],[1708978289000,29],[1708978290000,31],[1708978291000,33],[1708978292000,35],[1708978293000,37],[1708978294000,38],[1708978295000,40],[1708978296000,42],[1708978297000,44],[1708978298000,46],[1708978299000,47],[1708978300000,50],[1708978301000,51],[1708978302000,53],[1708978303000,56],[1708978304000,57],[1708978305000,59],[1708978306000,61],[1708978307000,63],[1708978308000,64],[1708978309000,66],[1708978310000,68],[1708978311000,69],[1708978312000,71],[1708978313000,74],[1708978314000,74],[1708978315000,77],[1708978316000,79],[1708978317000,80],[1708978318000,82],[1708978319000,84],[1708978320000,86],[1708978321000,88],[1708978322000,89],[1708978323000,92],[1708978324000,93],[1708978325000,95],[1708978326000,97],[1708978327000,98],[1708978328000,101],[1708978329000,102],[1708978330000,105],[1708978331000,106],[1708978332000,109],[1708978333000,111],[1708978334000,112],[1708978335000,114],[1708978336000,116],[1708978337000,118],[1708978338000,119],[1708978339000,121],[1708978340000,123],[1708978341000,125],[1708978342000,126],[1708978343000,128],[1708978344000,129],[1708978345000,132],[1708978346000,133],[1708978347000,135],[1708978348000,137],[1708978349000,139],[1708978350000,141],[1708978351000,142],[1708978352000,144],[1708978353000,147],[1708978354000,147],[1708978355000,150],[1708978356000,152],[1708978357000,154],[1708978358000,155],[1708978359000,161],[1708978360000,160],[1708978361000,161],[1708978362000,163],[1708978363000,165],[1708978364000,167],[1708978365000,168],[1708978366000,171],[1708978367000,172],[1708978368000,175],[1708978369000,176],[1708978370000,177],[1708978371000,179],[1708978372000,181],[1708978373000,183],[1708978374000,184],[1708978375000,186],[1708978376000,188],[1708978377000,190],[1708978378000,192],[1708978379000,193],[1708978380000,196],[1708978381000,197],[1708978382000,199],[1708978383000,201],[1708978384000,202],[1708978385000,205],[1708978386000,206],[1708978387000,208],[1708978388000,211],[1708978389000,213],[1708978390000,215],[1708978391000,216],[1708978392000,217],[1708978393000,221],[1708978394000,221],[1708978395000,220],[1708978396000,221],[1708978397000,221],[1708978398000,220],[1708978399000,221],[1708978400000,221],[1708978401000,221],[1708978402000,221],[1708978403000,221],[1708978404000,221],[1708978405000,220],[1708978406000,221],[1708978407000,221],[1708978408000,221],[1708978409000,221],[1708978410000,221],[1708978411000,221],[1708978412000,221],[1708978413000,221],[1708978414000,221],[1708978415000,221],[1708978416000,221],[1708978417000,221],[1708978418000,221],[1708978419000,221],[1708978420000,224],[1708978421000,221],[1708978422000,221],[1708978423000,221],[1708978424000,221],[1708978425000,221],[1708978426000,221],[1708978427000,220],[1708978428000,221],[1708978429000,221],[1708978430000,221],[1708978431000,221],[1708978432000,221],[1708978433000,221],[1708978434000,221],[1708978435000,220],[1708978436000,221],[1708978437000,221],[1708978438000,221],[1708978439000,221],[1708978440000,221],[1708978441000,221],[1708978442000,221],[1708978443000,221],[1708978444000,221],[1708978445000,221],[1708978446000,221],[1708978447000,221],[1708978448000,221],[1708978449000,221],[1708978450000,220],[1708978451000,221],[1708978452000,221],[1708978453000,221],[1708978454000,220],[1708978455000,220],[1708978456000,221],[1708978457000,221],[1708978458000,221],[1708978459000,220],[1708978460000,221],[1708978461000,221],[1708978462000,221],[1708978463000,220],[1708978464000,221],[1708978465000,221],[1708978466000,221],[1708978467000,220],[1708978468000,221],[1708978469000,221],[1708978470000,221],[1708978471000,221],[1708978472000,221],[1708978473000,221],[1708978474000,221],[1708978475000,221],[1708978476000,220],[1708978477000,220],[1708978478000,220],[1708978479000,221],[1708978480000,221],[1708978481000,221],[1708978482000,221],[1708978483000,221],[1708978484000,221],[1708978485000,221],[1708978486000,221],[1708978487000,221],[1708978488000,221],[1708978489000,221],[1708978490000,221],[1708978491000,221],[1708978492000,221],[1708978493000,220],[1708978494000,220],[1708978495000,221],[1708978496000,221],[1708978497000,220],[1708978498000,221],[1708978499000,221],[1708978500000,221],[1708978501000,220],[1708978502000,221],[1708978503000,221],[1708978504000,221],[1708978505000,220],[1708978506000,220],[1708978507000,221],[1708978508000,221],[1708978509000,221],[1708978510000,221],[1708978511000,220],[1708978512000,221],[1708978513000,216]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#f15b4f',
name: 'extratos',
data: [
[1708978269000,0],[1708978270000,0],[1708978271000,0],[1708978272000,0],[1708978273000,1],[1708978274000,2],[1708978275000,1],[1708978276000,1],[1708978277000,1],[1708978278000,1],[1708978279000,2],[1708978280000,1],[1708978281000,2],[1708978282000,2],[1708978283000,1],[1708978284000,2],[1708978285000,2],[1708978286000,2],[1708978287000,2],[1708978288000,2],[1708978289000,2],[1708978290000,2],[1708978291000,3],[1708978292000,2],[1708978293000,3],[1708978294000,2],[1708978295000,3],[1708978296000,2],[1708978297000,3],[1708978298000,3],[1708978299000,3],[1708978300000,3],[1708978301000,3],[1708978302000,3],[1708978303000,3],[1708978304000,4],[1708978305000,3],[1708978306000,3],[1708978307000,4],[1708978308000,3],[1708978309000,4],[1708978310000,4],[1708978311000,4],[1708978312000,4],[1708978313000,4],[1708978314000,4],[1708978315000,4],[1708978316000,4],[1708978317000,4],[1708978318000,4],[1708978319000,5],[1708978320000,4],[1708978321000,5],[1708978322000,5],[1708978323000,4],[1708978324000,5],[1708978325000,5],[1708978326000,5],[1708978327000,5],[1708978328000,5],[1708978329000,5],[1708978330000,5],[1708978331000,6],[1708978332000,5],[1708978333000,6],[1708978334000,5],[1708978335000,6],[1708978336000,5],[1708978337000,6],[1708978338000,6],[1708978339000,6],[1708978340000,6],[1708978341000,6],[1708978342000,6],[1708978343000,6],[1708978344000,7],[1708978345000,6],[1708978346000,6],[1708978347000,7],[1708978348000,6],[1708978349000,7],[1708978350000,7],[1708978351000,7],[1708978352000,7],[1708978353000,7],[1708978354000,7],[1708978355000,7],[1708978356000,7],[1708978357000,7],[1708978358000,7],[1708978359000,9],[1708978360000,7],[1708978361000,8],[1708978362000,8],[1708978363000,7],[1708978364000,8],[1708978365000,8],[1708978366000,8],[1708978367000,8],[1708978368000,8],[1708978369000,8],[1708978370000,8],[1708978371000,9],[1708978372000,8],[1708978373000,9],[1708978374000,8],[1708978375000,9],[1708978376000,8],[1708978377000,9],[1708978378000,9],[1708978379000,9],[1708978380000,9],[1708978381000,9],[1708978382000,9],[1708978383000,9],[1708978384000,10],[1708978385000,9],[1708978386000,9],[1708978387000,10],[1708978388000,9],[1708978389000,10],[1708978390000,10],[1708978391000,10],[1708978392000,10],[1708978393000,10],[1708978394000,10],[1708978395000,10],[1708978396000,10],[1708978397000,10],[1708978398000,10],[1708978399000,10],[1708978400000,10],[1708978401000,10],[1708978402000,10],[1708978403000,10],[1708978404000,10],[1708978405000,10],[1708978406000,10],[1708978407000,10],[1708978408000,10],[1708978409000,10],[1708978410000,10],[1708978411000,10],[1708978412000,10],[1708978413000,10],[1708978414000,10],[1708978415000,10],[1708978416000,10],[1708978417000,10],[1708978418000,10],[1708978419000,10],[1708978420000,10],[1708978421000,10],[1708978422000,10],[1708978423000,10],[1708978424000,10],[1708978425000,10],[1708978426000,10],[1708978427000,10],[1708978428000,10],[1708978429000,10],[1708978430000,10],[1708978431000,10],[1708978432000,10],[1708978433000,10],[1708978434000,10],[1708978435000,10],[1708978436000,10],[1708978437000,10],[1708978438000,10],[1708978439000,10],[1708978440000,10],[1708978441000,10],[1708978442000,10],[1708978443000,10],[1708978444000,10],[1708978445000,10],[1708978446000,10],[1708978447000,10],[1708978448000,10],[1708978449000,10],[1708978450000,10],[1708978451000,10],[1708978452000,10],[1708978453000,10],[1708978454000,10],[1708978455000,10],[1708978456000,10],[1708978457000,10],[1708978458000,10],[1708978459000,10],[1708978460000,10],[1708978461000,10],[1708978462000,10],[1708978463000,10],[1708978464000,10],[1708978465000,10],[1708978466000,10],[1708978467000,10],[1708978468000,10],[1708978469000,10],[1708978470000,10],[1708978471000,10],[1708978472000,10],[1708978473000,10],[1708978474000,10],[1708978475000,10],[1708978476000,10],[1708978477000,10],[1708978478000,10],[1708978479000,10],[1708978480000,10],[1708978481000,10],[1708978482000,10],[1708978483000,10],[1708978484000,10],[1708978485000,10],[1708978486000,10],[1708978487000,10],[1708978488000,10],[1708978489000,10],[1708978490000,10],[1708978491000,10],[1708978492000,10],[1708978493000,10],[1708978494000,10],[1708978495000,10],[1708978496000,10],[1708978497000,10],[1708978498000,10],[1708978499000,10],[1708978500000,10],[1708978501000,10],[1708978502000,10],[1708978503000,10],[1708978504000,10],[1708978505000,10],[1708978506000,10],[1708978507000,10],[1708978508000,10],[1708978509000,10],[1708978510000,10],[1708978511000,10],[1708978512000,10],[1708978513000,9]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FFDD00',
name: 'validações',
data: [
[1708978269000,0],[1708978270000,0],[1708978271000,0],[1708978272000,5],[1708978273000,5],[1708978274000,0],[1708978275000,0],[1708978276000,0],[1708978277000,0],[1708978278000,0],[1708978279000,0],[1708978280000,0],[1708978281000,0],[1708978282000,0],[1708978283000,0],[1708978284000,0],[1708978285000,0],[1708978286000,0],[1708978287000,0],[1708978288000,0],[1708978289000,0],[1708978290000,0],[1708978291000,0],[1708978292000,0],[1708978293000,0],[1708978294000,0],[1708978295000,0],[1708978296000,0],[1708978297000,0],[1708978298000,0],[1708978299000,0],[1708978300000,0],[1708978301000,0],[1708978302000,0],[1708978303000,0],[1708978304000,0],[1708978305000,0],[1708978306000,0],[1708978307000,0],[1708978308000,0],[1708978309000,0],[1708978310000,0],[1708978311000,0],[1708978312000,0],[1708978313000,0],[1708978314000,0],[1708978315000,0],[1708978316000,0],[1708978317000,0],[1708978318000,0],[1708978319000,0],[1708978320000,0],[1708978321000,0],[1708978322000,0],[1708978323000,0],[1708978324000,0],[1708978325000,0],[1708978326000,0],[1708978327000,0],[1708978328000,0],[1708978329000,0],[1708978330000,0],[1708978331000,0],[1708978332000,0],[1708978333000,0],[1708978334000,0],[1708978335000,0],[1708978336000,0],[1708978337000,0],[1708978338000,0],[1708978339000,0],[1708978340000,0],[1708978341000,0],[1708978342000,0],[1708978343000,0],[1708978344000,0],[1708978345000,0],[1708978346000,0],[1708978347000,0],[1708978348000,0],[1708978349000,0],[1708978350000,0],[1708978351000,0],[1708978352000,0],[1708978353000,0],[1708978354000,0],[1708978355000,0],[1708978356000,0],[1708978357000,0],[1708978358000,0],[1708978359000,0],[1708978360000,0],[1708978361000,0],[1708978362000,0],[1708978363000,0],[1708978364000,0],[1708978365000,0],[1708978366000,0],[1708978367000,0],[1708978368000,0],[1708978369000,0],[1708978370000,0],[1708978371000,0],[1708978372000,0],[1708978373000,0],[1708978374000,0],[1708978375000,0],[1708978376000,0],[1708978377000,0],[1708978378000,0],[1708978379000,0],[1708978380000,0],[1708978381000,0],[1708978382000,0],[1708978383000,0],[1708978384000,0],[1708978385000,0],[1708978386000,0],[1708978387000,0],[1708978388000,0],[1708978389000,0],[1708978390000,0],[1708978391000,0],[1708978392000,0],[1708978393000,0],[1708978394000,0],[1708978395000,0],[1708978396000,0],[1708978397000,0],[1708978398000,0],[1708978399000,0],[1708978400000,0],[1708978401000,0],[1708978402000,0],[1708978403000,0],[1708978404000,0],[1708978405000,0],[1708978406000,0],[1708978407000,0],[1708978408000,0],[1708978409000,0],[1708978410000,0],[1708978411000,0],[1708978412000,0],[1708978413000,0],[1708978414000,0],[1708978415000,0],[1708978416000,0],[1708978417000,0],[1708978418000,0],[1708978419000,0],[1708978420000,0],[1708978421000,0],[1708978422000,0],[1708978423000,0],[1708978424000,0],[1708978425000,0],[1708978426000,0],[1708978427000,0],[1708978428000,0],[1708978429000,0],[1708978430000,0],[1708978431000,0],[1708978432000,0],[1708978433000,0],[1708978434000,0],[1708978435000,0],[1708978436000,0],[1708978437000,0],[1708978438000,0],[1708978439000,0],[1708978440000,0],[1708978441000,0],[1708978442000,0],[1708978443000,0],[1708978444000,0],[1708978445000,0],[1708978446000,0],[1708978447000,0],[1708978448000,0],[1708978449000,0],[1708978450000,0],[1708978451000,0],[1708978452000,0],[1708978453000,0],[1708978454000,0],[1708978455000,0],[1708978456000,0],[1708978457000,0],[1708978458000,0],[1708978459000,0],[1708978460000,0],[1708978461000,0],[1708978462000,0],[1708978463000,0],[1708978464000,0],[1708978465000,0],[1708978466000,0],[1708978467000,0],[1708978468000,0],[1708978469000,0],[1708978470000,0],[1708978471000,0],[1708978472000,0],[1708978473000,0],[1708978474000,0],[1708978475000,0],[1708978476000,0],[1708978477000,0],[1708978478000,0],[1708978479000,0],[1708978480000,0],[1708978481000,0],[1708978482000,0],[1708978483000,0],[1708978484000,0],[1708978485000,0],[1708978486000,0],[1708978487000,0],[1708978488000,0],[1708978489000,0],[1708978490000,0],[1708978491000,0],[1708978492000,0],[1708978493000,0],[1708978494000,0],[1708978495000,0],[1708978496000,0],[1708978497000,0],[1708978498000,0],[1708978499000,0],[1708978500000,0],[1708978501000,0],[1708978502000,0],[1708978503000,0],[1708978504000,0],[1708978505000,0],[1708978506000,0],[1708978507000,0],[1708978508000,0],[1708978509000,0],[1708978510000,0],[1708978511000,0],[1708978512000,0],[1708978513000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00D5FF',
name: 'validação HTTP 404',
data: [
[1708978269000,0],[1708978270000,0],[1708978271000,0],[1708978272000,1],[1708978273000,0],[1708978274000,0],[1708978275000,0],[1708978276000,0],[1708978277000,0],[1708978278000,0],[1708978279000,0],[1708978280000,0],[1708978281000,0],[1708978282000,0],[1708978283000,0],[1708978284000,0],[1708978285000,0],[1708978286000,0],[1708978287000,0],[1708978288000,0],[1708978289000,0],[1708978290000,0],[1708978291000,0],[1708978292000,0],[1708978293000,0],[1708978294000,0],[1708978295000,0],[1708978296000,0],[1708978297000,0],[1708978298000,0],[1708978299000,0],[1708978300000,0],[1708978301000,0],[1708978302000,0],[1708978303000,0],[1708978304000,0],[1708978305000,0],[1708978306000,0],[1708978307000,0],[1708978308000,0],[1708978309000,0],[1708978310000,0],[1708978311000,0],[1708978312000,0],[1708978313000,0],[1708978314000,0],[1708978315000,0],[1708978316000,0],[1708978317000,0],[1708978318000,0],[1708978319000,0],[1708978320000,0],[1708978321000,0],[1708978322000,0],[1708978323000,0],[1708978324000,0],[1708978325000,0],[1708978326000,0],[1708978327000,0],[1708978328000,0],[1708978329000,0],[1708978330000,0],[1708978331000,0],[1708978332000,0],[1708978333000,0],[1708978334000,0],[1708978335000,0],[1708978336000,0],[1708978337000,0],[1708978338000,0],[1708978339000,0],[1708978340000,0],[1708978341000,0],[1708978342000,0],[1708978343000,0],[1708978344000,0],[1708978345000,0],[1708978346000,0],[1708978347000,0],[1708978348000,0],[1708978349000,0],[1708978350000,0],[1708978351000,0],[1708978352000,0],[1708978353000,0],[1708978354000,0],[1708978355000,0],[1708978356000,0],[1708978357000,0],[1708978358000,0],[1708978359000,0],[1708978360000,0],[1708978361000,0],[1708978362000,0],[1708978363000,0],[1708978364000,0],[1708978365000,0],[1708978366000,0],[1708978367000,0],[1708978368000,0],[1708978369000,0],[1708978370000,0],[1708978371000,0],[1708978372000,0],[1708978373000,0],[1708978374000,0],[1708978375000,0],[1708978376000,0],[1708978377000,0],[1708978378000,0],[1708978379000,0],[1708978380000,0],[1708978381000,0],[1708978382000,0],[1708978383000,0],[1708978384000,0],[1708978385000,0],[1708978386000,0],[1708978387000,0],[1708978388000,0],[1708978389000,0],[1708978390000,0],[1708978391000,0],[1708978392000,0],[1708978393000,0],[1708978394000,0],[1708978395000,0],[1708978396000,0],[1708978397000,0],[1708978398000,0],[1708978399000,0],[1708978400000,0],[1708978401000,0],[1708978402000,0],[1708978403000,0],[1708978404000,0],[1708978405000,0],[1708978406000,0],[1708978407000,0],[1708978408000,0],[1708978409000,0],[1708978410000,0],[1708978411000,0],[1708978412000,0],[1708978413000,0],[1708978414000,0],[1708978415000,0],[1708978416000,0],[1708978417000,0],[1708978418000,0],[1708978419000,0],[1708978420000,0],[1708978421000,0],[1708978422000,0],[1708978423000,0],[1708978424000,0],[1708978425000,0],[1708978426000,0],[1708978427000,0],[1708978428000,0],[1708978429000,0],[1708978430000,0],[1708978431000,0],[1708978432000,0],[1708978433000,0],[1708978434000,0],[1708978435000,0],[1708978436000,0],[1708978437000,0],[1708978438000,0],[1708978439000,0],[1708978440000,0],[1708978441000,0],[1708978442000,0],[1708978443000,0],[1708978444000,0],[1708978445000,0],[1708978446000,0],[1708978447000,0],[1708978448000,0],[1708978449000,0],[1708978450000,0],[1708978451000,0],[1708978452000,0],[1708978453000,0],[1708978454000,0],[1708978455000,0],[1708978456000,0],[1708978457000,0],[1708978458000,0],[1708978459000,0],[1708978460000,0],[1708978461000,0],[1708978462000,0],[1708978463000,0],[1708978464000,0],[1708978465000,0],[1708978466000,0],[1708978467000,0],[1708978468000,0],[1708978469000,0],[1708978470000,0],[1708978471000,0],[1708978472000,0],[1708978473000,0],[1708978474000,0],[1708978475000,0],[1708978476000,0],[1708978477000,0],[1708978478000,0],[1708978479000,0],[1708978480000,0],[1708978481000,0],[1708978482000,0],[1708978483000,0],[1708978484000,0],[1708978485000,0],[1708978486000,0],[1708978487000,0],[1708978488000,0],[1708978489000,0],[1708978490000,0],[1708978491000,0],[1708978492000,0],[1708978493000,0],[1708978494000,0],[1708978495000,0],[1708978496000,0],[1708978497000,0],[1708978498000,0],[1708978499000,0],[1708978500000,0],[1708978501000,0],[1708978502000,0],[1708978503000,0],[1708978504000,0],[1708978505000,0],[1708978506000,0],[1708978507000,0],[1708978508000,0],[1708978509000,0],[1708978510000,0],[1708978511000,0],[1708978512000,0],[1708978513000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00FF00',
name: 'validação concorrência saldo - 0',
data: [
[1708978269000,0],[1708978270000,0],[1708978271000,1],[1708978272000,0],[1708978273000,0],[1708978274000,0],[1708978275000,0],[1708978276000,0],[1708978277000,0],[1708978278000,0],[1708978279000,0],[1708978280000,0],[1708978281000,0],[1708978282000,0],[1708978283000,0],[1708978284000,0],[1708978285000,0],[1708978286000,0],[1708978287000,0],[1708978288000,0],[1708978289000,0],[1708978290000,0],[1708978291000,0],[1708978292000,0],[1708978293000,0],[1708978294000,0],[1708978295000,0],[1708978296000,0],[1708978297000,0],[1708978298000,0],[1708978299000,0],[1708978300000,0],[1708978301000,0],[1708978302000,0],[1708978303000,0],[1708978304000,0],[1708978305000,0],[1708978306000,0],[1708978307000,0],[1708978308000,0],[1708978309000,0],[1708978310000,0],[1708978311000,0],[1708978312000,0],[1708978313000,0],[1708978314000,0],[1708978315000,0],[1708978316000,0],[1708978317000,0],[1708978318000,0],[1708978319000,0],[1708978320000,0],[1708978321000,0],[1708978322000,0],[1708978323000,0],[1708978324000,0],[1708978325000,0],[1708978326000,0],[1708978327000,0],[1708978328000,0],[1708978329000,0],[1708978330000,0],[1708978331000,0],[1708978332000,0],[1708978333000,0],[1708978334000,0],[1708978335000,0],[1708978336000,0],[1708978337000,0],[1708978338000,0],[1708978339000,0],[1708978340000,0],[1708978341000,0],[1708978342000,0],[1708978343000,0],[1708978344000,0],[1708978345000,0],[1708978346000,0],[1708978347000,0],[1708978348000,0],[1708978349000,0],[1708978350000,0],[1708978351000,0],[1708978352000,0],[1708978353000,0],[1708978354000,0],[1708978355000,0],[1708978356000,0],[1708978357000,0],[1708978358000,0],[1708978359000,0],[1708978360000,0],[1708978361000,0],[1708978362000,0],[1708978363000,0],[1708978364000,0],[1708978365000,0],[1708978366000,0],[1708978367000,0],[1708978368000,0],[1708978369000,0],[1708978370000,0],[1708978371000,0],[1708978372000,0],[1708978373000,0],[1708978374000,0],[1708978375000,0],[1708978376000,0],[1708978377000,0],[1708978378000,0],[1708978379000,0],[1708978380000,0],[1708978381000,0],[1708978382000,0],[1708978383000,0],[1708978384000,0],[1708978385000,0],[1708978386000,0],[1708978387000,0],[1708978388000,0],[1708978389000,0],[1708978390000,0],[1708978391000,0],[1708978392000,0],[1708978393000,0],[1708978394000,0],[1708978395000,0],[1708978396000,0],[1708978397000,0],[1708978398000,0],[1708978399000,0],[1708978400000,0],[1708978401000,0],[1708978402000,0],[1708978403000,0],[1708978404000,0],[1708978405000,0],[1708978406000,0],[1708978407000,0],[1708978408000,0],[1708978409000,0],[1708978410000,0],[1708978411000,0],[1708978412000,0],[1708978413000,0],[1708978414000,0],[1708978415000,0],[1708978416000,0],[1708978417000,0],[1708978418000,0],[1708978419000,0],[1708978420000,0],[1708978421000,0],[1708978422000,0],[1708978423000,0],[1708978424000,0],[1708978425000,0],[1708978426000,0],[1708978427000,0],[1708978428000,0],[1708978429000,0],[1708978430000,0],[1708978431000,0],[1708978432000,0],[1708978433000,0],[1708978434000,0],[1708978435000,0],[1708978436000,0],[1708978437000,0],[1708978438000,0],[1708978439000,0],[1708978440000,0],[1708978441000,0],[1708978442000,0],[1708978443000,0],[1708978444000,0],[1708978445000,0],[1708978446000,0],[1708978447000,0],[1708978448000,0],[1708978449000,0],[1708978450000,0],[1708978451000,0],[1708978452000,0],[1708978453000,0],[1708978454000,0],[1708978455000,0],[1708978456000,0],[1708978457000,0],[1708978458000,0],[1708978459000,0],[1708978460000,0],[1708978461000,0],[1708978462000,0],[1708978463000,0],[1708978464000,0],[1708978465000,0],[1708978466000,0],[1708978467000,0],[1708978468000,0],[1708978469000,0],[1708978470000,0],[1708978471000,0],[1708978472000,0],[1708978473000,0],[1708978474000,0],[1708978475000,0],[1708978476000,0],[1708978477000,0],[1708978478000,0],[1708978479000,0],[1708978480000,0],[1708978481000,0],[1708978482000,0],[1708978483000,0],[1708978484000,0],[1708978485000,0],[1708978486000,0],[1708978487000,0],[1708978488000,0],[1708978489000,0],[1708978490000,0],[1708978491000,0],[1708978492000,0],[1708978493000,0],[1708978494000,0],[1708978495000,0],[1708978496000,0],[1708978497000,0],[1708978498000,0],[1708978499000,0],[1708978500000,0],[1708978501000,0],[1708978502000,0],[1708978503000,0],[1708978504000,0],[1708978505000,0],[1708978506000,0],[1708978507000,0],[1708978508000,0],[1708978509000,0],[1708978510000,0],[1708978511000,0],[1708978512000,0],[1708978513000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#9D00FF',
name: 'validação concorrência transações - c',
data: [
[1708978269000,0],[1708978270000,25],[1708978271000,23],[1708978272000,0],[1708978273000,0],[1708978274000,0],[1708978275000,0],[1708978276000,0],[1708978277000,0],[1708978278000,0],[1708978279000,0],[1708978280000,0],[1708978281000,0],[1708978282000,0],[1708978283000,0],[1708978284000,0],[1708978285000,0],[1708978286000,0],[1708978287000,0],[1708978288000,0],[1708978289000,0],[1708978290000,0],[1708978291000,0],[1708978292000,0],[1708978293000,0],[1708978294000,0],[1708978295000,0],[1708978296000,0],[1708978297000,0],[1708978298000,0],[1708978299000,0],[1708978300000,0],[1708978301000,0],[1708978302000,0],[1708978303000,0],[1708978304000,0],[1708978305000,0],[1708978306000,0],[1708978307000,0],[1708978308000,0],[1708978309000,0],[1708978310000,0],[1708978311000,0],[1708978312000,0],[1708978313000,0],[1708978314000,0],[1708978315000,0],[1708978316000,0],[1708978317000,0],[1708978318000,0],[1708978319000,0],[1708978320000,0],[1708978321000,0],[1708978322000,0],[1708978323000,0],[1708978324000,0],[1708978325000,0],[1708978326000,0],[1708978327000,0],[1708978328000,0],[1708978329000,0],[1708978330000,0],[1708978331000,0],[1708978332000,0],[1708978333000,0],[1708978334000,0],[1708978335000,0],[1708978336000,0],[1708978337000,0],[1708978338000,0],[1708978339000,0],[1708978340000,0],[1708978341000,0],[1708978342000,0],[1708978343000,0],[1708978344000,0],[1708978345000,0],[1708978346000,0],[1708978347000,0],[1708978348000,0],[1708978349000,0],[1708978350000,0],[1708978351000,0],[1708978352000,0],[1708978353000,0],[1708978354000,0],[1708978355000,0],[1708978356000,0],[1708978357000,0],[1708978358000,0],[1708978359000,0],[1708978360000,0],[1708978361000,0],[1708978362000,0],[1708978363000,0],[1708978364000,0],[1708978365000,0],[1708978366000,0],[1708978367000,0],[1708978368000,0],[1708978369000,0],[1708978370000,0],[1708978371000,0],[1708978372000,0],[1708978373000,0],[1708978374000,0],[1708978375000,0],[1708978376000,0],[1708978377000,0],[1708978378000,0],[1708978379000,0],[1708978380000,0],[1708978381000,0],[1708978382000,0],[1708978383000,0],[1708978384000,0],[1708978385000,0],[1708978386000,0],[1708978387000,0],[1708978388000,0],[1708978389000,0],[1708978390000,0],[1708978391000,0],[1708978392000,0],[1708978393000,0],[1708978394000,0],[1708978395000,0],[1708978396000,0],[1708978397000,0],[1708978398000,0],[1708978399000,0],[1708978400000,0],[1708978401000,0],[1708978402000,0],[1708978403000,0],[1708978404000,0],[1708978405000,0],[1708978406000,0],[1708978407000,0],[1708978408000,0],[1708978409000,0],[1708978410000,0],[1708978411000,0],[1708978412000,0],[1708978413000,0],[1708978414000,0],[1708978415000,0],[1708978416000,0],[1708978417000,0],[1708978418000,0],[1708978419000,0],[1708978420000,0],[1708978421000,0],[1708978422000,0],[1708978423000,0],[1708978424000,0],[1708978425000,0],[1708978426000,0],[1708978427000,0],[1708978428000,0],[1708978429000,0],[1708978430000,0],[1708978431000,0],[1708978432000,0],[1708978433000,0],[1708978434000,0],[1708978435000,0],[1708978436000,0],[1708978437000,0],[1708978438000,0],[1708978439000,0],[1708978440000,0],[1708978441000,0],[1708978442000,0],[1708978443000,0],[1708978444000,0],[1708978445000,0],[1708978446000,0],[1708978447000,0],[1708978448000,0],[1708978449000,0],[1708978450000,0],[1708978451000,0],[1708978452000,0],[1708978453000,0],[1708978454000,0],[1708978455000,0],[1708978456000,0],[1708978457000,0],[1708978458000,0],[1708978459000,0],[1708978460000,0],[1708978461000,0],[1708978462000,0],[1708978463000,0],[1708978464000,0],[1708978465000,0],[1708978466000,0],[1708978467000,0],[1708978468000,0],[1708978469000,0],[1708978470000,0],[1708978471000,0],[1708978472000,0],[1708978473000,0],[1708978474000,0],[1708978475000,0],[1708978476000,0],[1708978477000,0],[1708978478000,0],[1708978479000,0],[1708978480000,0],[1708978481000,0],[1708978482000,0],[1708978483000,0],[1708978484000,0],[1708978485000,0],[1708978486000,0],[1708978487000,0],[1708978488000,0],[1708978489000,0],[1708978490000,0],[1708978491000,0],[1708978492000,0],[1708978493000,0],[1708978494000,0],[1708978495000,0],[1708978496000,0],[1708978497000,0],[1708978498000,0],[1708978499000,0],[1708978500000,0],[1708978501000,0],[1708978502000,0],[1708978503000,0],[1708978504000,0],[1708978505000,0],[1708978506000,0],[1708978507000,0],[1708978508000,0],[1708978509000,0],[1708978510000,0],[1708978511000,0],[1708978512000,0],[1708978513000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FF00E1',
name: 'validação concorrência saldo - -25',
data: [
[1708978269000,1],[1708978270000,1],[1708978271000,0],[1708978272000,0],[1708978273000,0],[1708978274000,0],[1708978275000,0],[1708978276000,0],[1708978277000,0],[1708978278000,0],[1708978279000,0],[1708978280000,0],[1708978281000,0],[1708978282000,0],[1708978283000,0],[1708978284000,0],[1708978285000,0],[1708978286000,0],[1708978287000,0],[1708978288000,0],[1708978289000,0],[1708978290000,0],[1708978291000,0],[1708978292000,0],[1708978293000,0],[1708978294000,0],[1708978295000,0],[1708978296000,0],[1708978297000,0],[1708978298000,0],[1708978299000,0],[1708978300000,0],[1708978301000,0],[1708978302000,0],[1708978303000,0],[1708978304000,0],[1708978305000,0],[1708978306000,0],[1708978307000,0],[1708978308000,0],[1708978309000,0],[1708978310000,0],[1708978311000,0],[1708978312000,0],[1708978313000,0],[1708978314000,0],[1708978315000,0],[1708978316000,0],[1708978317000,0],[1708978318000,0],[1708978319000,0],[1708978320000,0],[1708978321000,0],[1708978322000,0],[1708978323000,0],[1708978324000,0],[1708978325000,0],[1708978326000,0],[1708978327000,0],[1708978328000,0],[1708978329000,0],[1708978330000,0],[1708978331000,0],[1708978332000,0],[1708978333000,0],[1708978334000,0],[1708978335000,0],[1708978336000,0],[1708978337000,0],[1708978338000,0],[1708978339000,0],[1708978340000,0],[1708978341000,0],[1708978342000,0],[1708978343000,0],[1708978344000,0],[1708978345000,0],[1708978346000,0],[1708978347000,0],[1708978348000,0],[1708978349000,0],[1708978350000,0],[1708978351000,0],[1708978352000,0],[1708978353000,0],[1708978354000,0],[1708978355000,0],[1708978356000,0],[1708978357000,0],[1708978358000,0],[1708978359000,0],[1708978360000,0],[1708978361000,0],[1708978362000,0],[1708978363000,0],[1708978364000,0],[1708978365000,0],[1708978366000,0],[1708978367000,0],[1708978368000,0],[1708978369000,0],[1708978370000,0],[1708978371000,0],[1708978372000,0],[1708978373000,0],[1708978374000,0],[1708978375000,0],[1708978376000,0],[1708978377000,0],[1708978378000,0],[1708978379000,0],[1708978380000,0],[1708978381000,0],[1708978382000,0],[1708978383000,0],[1708978384000,0],[1708978385000,0],[1708978386000,0],[1708978387000,0],[1708978388000,0],[1708978389000,0],[1708978390000,0],[1708978391000,0],[1708978392000,0],[1708978393000,0],[1708978394000,0],[1708978395000,0],[1708978396000,0],[1708978397000,0],[1708978398000,0],[1708978399000,0],[1708978400000,0],[1708978401000,0],[1708978402000,0],[1708978403000,0],[1708978404000,0],[1708978405000,0],[1708978406000,0],[1708978407000,0],[1708978408000,0],[1708978409000,0],[1708978410000,0],[1708978411000,0],[1708978412000,0],[1708978413000,0],[1708978414000,0],[1708978415000,0],[1708978416000,0],[1708978417000,0],[1708978418000,0],[1708978419000,0],[1708978420000,0],[1708978421000,0],[1708978422000,0],[1708978423000,0],[1708978424000,0],[1708978425000,0],[1708978426000,0],[1708978427000,0],[1708978428000,0],[1708978429000,0],[1708978430000,0],[1708978431000,0],[1708978432000,0],[1708978433000,0],[1708978434000,0],[1708978435000,0],[1708978436000,0],[1708978437000,0],[1708978438000,0],[1708978439000,0],[1708978440000,0],[1708978441000,0],[1708978442000,0],[1708978443000,0],[1708978444000,0],[1708978445000,0],[1708978446000,0],[1708978447000,0],[1708978448000,0],[1708978449000,0],[1708978450000,0],[1708978451000,0],[1708978452000,0],[1708978453000,0],[1708978454000,0],[1708978455000,0],[1708978456000,0],[1708978457000,0],[1708978458000,0],[1708978459000,0],[1708978460000,0],[1708978461000,0],[1708978462000,0],[1708978463000,0],[1708978464000,0],[1708978465000,0],[1708978466000,0],[1708978467000,0],[1708978468000,0],[1708978469000,0],[1708978470000,0],[1708978471000,0],[1708978472000,0],[1708978473000,0],[1708978474000,0],[1708978475000,0],[1708978476000,0],[1708978477000,0],[1708978478000,0],[1708978479000,0],[1708978480000,0],[1708978481000,0],[1708978482000,0],[1708978483000,0],[1708978484000,0],[1708978485000,0],[1708978486000,0],[1708978487000,0],[1708978488000,0],[1708978489000,0],[1708978490000,0],[1708978491000,0],[1708978492000,0],[1708978493000,0],[1708978494000,0],[1708978495000,0],[1708978496000,0],[1708978497000,0],[1708978498000,0],[1708978499000,0],[1708978500000,0],[1708978501000,0],[1708978502000,0],[1708978503000,0],[1708978504000,0],[1708978505000,0],[1708978506000,0],[1708978507000,0],[1708978508000,0],[1708978509000,0],[1708978510000,0],[1708978511000,0],[1708978512000,0],[1708978513000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#AECAEB',
name: 'validação concorrência transações - d',
data: [
[1708978269000,25],[1708978270000,0],[1708978271000,0],[1708978272000,0],[1708978273000,0],[1708978274000,0],[1708978275000,0],[1708978276000,0],[1708978277000,0],[1708978278000,0],[1708978279000,0],[1708978280000,0],[1708978281000,0],[1708978282000,0],[1708978283000,0],[1708978284000,0],[1708978285000,0],[1708978286000,0],[1708978287000,0],[1708978288000,0],[1708978289000,0],[1708978290000,0],[1708978291000,0],[1708978292000,0],[1708978293000,0],[1708978294000,0],[1708978295000,0],[1708978296000,0],[1708978297000,0],[1708978298000,0],[1708978299000,0],[1708978300000,0],[1708978301000,0],[1708978302000,0],[1708978303000,0],[1708978304000,0],[1708978305000,0],[1708978306000,0],[1708978307000,0],[1708978308000,0],[1708978309000,0],[1708978310000,0],[1708978311000,0],[1708978312000,0],[1708978313000,0],[1708978314000,0],[1708978315000,0],[1708978316000,0],[1708978317000,0],[1708978318000,0],[1708978319000,0],[1708978320000,0],[1708978321000,0],[1708978322000,0],[1708978323000,0],[1708978324000,0],[1708978325000,0],[1708978326000,0],[1708978327000,0],[1708978328000,0],[1708978329000,0],[1708978330000,0],[1708978331000,0],[1708978332000,0],[1708978333000,0],[1708978334000,0],[1708978335000,0],[1708978336000,0],[1708978337000,0],[1708978338000,0],[1708978339000,0],[1708978340000,0],[1708978341000,0],[1708978342000,0],[1708978343000,0],[1708978344000,0],[1708978345000,0],[1708978346000,0],[1708978347000,0],[1708978348000,0],[1708978349000,0],[1708978350000,0],[1708978351000,0],[1708978352000,0],[1708978353000,0],[1708978354000,0],[1708978355000,0],[1708978356000,0],[1708978357000,0],[1708978358000,0],[1708978359000,0],[1708978360000,0],[1708978361000,0],[1708978362000,0],[1708978363000,0],[1708978364000,0],[1708978365000,0],[1708978366000,0],[1708978367000,0],[1708978368000,0],[1708978369000,0],[1708978370000,0],[1708978371000,0],[1708978372000,0],[1708978373000,0],[1708978374000,0],[1708978375000,0],[1708978376000,0],[1708978377000,0],[1708978378000,0],[1708978379000,0],[1708978380000,0],[1708978381000,0],[1708978382000,0],[1708978383000,0],[1708978384000,0],[1708978385000,0],[1708978386000,0],[1708978387000,0],[1708978388000,0],[1708978389000,0],[1708978390000,0],[1708978391000,0],[1708978392000,0],[1708978393000,0],[1708978394000,0],[1708978395000,0],[1708978396000,0],[1708978397000,0],[1708978398000,0],[1708978399000,0],[1708978400000,0],[1708978401000,0],[1708978402000,0],[1708978403000,0],[1708978404000,0],[1708978405000,0],[1708978406000,0],[1708978407000,0],[1708978408000,0],[1708978409000,0],[1708978410000,0],[1708978411000,0],[1708978412000,0],[1708978413000,0],[1708978414000,0],[1708978415000,0],[1708978416000,0],[1708978417000,0],[1708978418000,0],[1708978419000,0],[1708978420000,0],[1708978421000,0],[1708978422000,0],[1708978423000,0],[1708978424000,0],[1708978425000,0],[1708978426000,0],[1708978427000,0],[1708978428000,0],[1708978429000,0],[1708978430000,0],[1708978431000,0],[1708978432000,0],[1708978433000,0],[1708978434000,0],[1708978435000,0],[1708978436000,0],[1708978437000,0],[1708978438000,0],[1708978439000,0],[1708978440000,0],[1708978441000,0],[1708978442000,0],[1708978443000,0],[1708978444000,0],[1708978445000,0],[1708978446000,0],[1708978447000,0],[1708978448000,0],[1708978449000,0],[1708978450000,0],[1708978451000,0],[1708978452000,0],[1708978453000,0],[1708978454000,0],[1708978455000,0],[1708978456000,0],[1708978457000,0],[1708978458000,0],[1708978459000,0],[1708978460000,0],[1708978461000,0],[1708978462000,0],[1708978463000,0],[1708978464000,0],[1708978465000,0],[1708978466000,0],[1708978467000,0],[1708978468000,0],[1708978469000,0],[1708978470000,0],[1708978471000,0],[1708978472000,0],[1708978473000,0],[1708978474000,0],[1708978475000,0],[1708978476000,0],[1708978477000,0],[1708978478000,0],[1708978479000,0],[1708978480000,0],[1708978481000,0],[1708978482000,0],[1708978483000,0],[1708978484000,0],[1708978485000,0],[1708978486000,0],[1708978487000,0],[1708978488000,0],[1708978489000,0],[1708978490000,0],[1708978491000,0],[1708978492000,0],[1708978493000,0],[1708978494000,0],[1708978495000,0],[1708978496000,0],[1708978497000,0],[1708978498000,0],[1708978499000,0],[1708978500000,0],[1708978501000,0],[1708978502000,0],[1708978503000,0],[1708978504000,0],[1708978505000,0],[1708978506000,0],[1708978507000,0],[1708978508000,0],[1708978509000,0],[1708978510000,0],[1708978511000,0],[1708978512000,0],[1708978513000,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: ['2', '4', '6', '8', '10', '13', '15', '17', '19', '21', '23', '25', '27', '29', '31', '34', '36', '38', '40', '42', '44', '46', '48', '50', '52', '55', '57', '59', '61', '63', '65', '67', '69', '71', '73', '76', '78', '80', '82', '84', '86', '88', '90', '92', '94', '97', '99', '101', '103', '105', '107', '109', '111', '113', '115', '118', '120', '122', '124', '126', '128', '130', '132', '134', '136', '139', '141', '143', '145', '147', '149', '151', '153', '155', '157', '160', '162', '164', '166', '168', '170', '172', '174', '176', '178', '181', '183', '185', '187', '189', '191', '193', '195', '197', '199', '202', '204', '206', '208', '210'],
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: [
83.83,12.42,1.75,0.44,0.12,0.1,0.07,0.09,0.06,0.08,0.06,0.04,0.04,0.04,0.05,0.04,0.03,0.03,0.05,0.05,0.02,0.02,0.03,0.02,0.01,0.03,0.02,0.02,0.02,0.03,0.02,0.01,0.01,0.01,0.01,0.01,0.0,0.0,0.01,0.0,0.0,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
],
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([[1708978269,[42,62,103,182,184,186,187,191,192,193]],[1708978270,[4,4,4,4,4,4,4,4,4,4]],[1708978271,[13,19,29,35,38,39,41,43,43,44]],[1708978272,[3,3,3,3,3,3,3,3,3,3]],[1708978273,[1,2,4,8,11,16,17,18,21,23]],[1708978274,[5,5,6,6,6,6,6,6,6,7]],[1708978275,[3,4,4,4,5,5,5,5,5,5]],[1708978276,[3,4,4,4,4,5,6,6,6,7]],[1708978277,[3,4,4,4,4,4,4,5,5,6]],[1708978278,[3,3,4,4,4,4,4,4,4,5]],[1708978279,[3,3,4,4,4,4,4,4,4,5]],[1708978280,[2,3,3,3,4,4,4,4,4,5]],[1708978281,[2,3,3,3,4,4,4,4,4,4]],[1708978282,[3,3,3,4,4,4,4,5,6,6]],[1708978283,[3,3,3,4,4,4,4,4,18,24]],[1708978284,[2,3,3,4,4,4,4,4,4,4]],[1708978285,[2,3,3,3,3,3,4,4,4,4]],[1708978286,[3,3,3,3,3,3,3,4,4,4]],[1708978287,[2,3,3,4,4,4,4,5,6,8]],[1708978288,[2,3,3,4,4,4,4,4,5,6]],[1708978289,[2,3,3,3,4,4,4,4,5,7]],[1708978290,[2,3,3,3,3,3,4,4,6,7]],[1708978291,[2,3,3,3,3,4,4,4,4,5]],[1708978292,[1,2,3,3,3,3,3,3,4,4]],[1708978293,[2,2,3,3,3,3,3,4,4,4]],[1708978294,[2,2,3,3,3,3,3,3,3,4]],[1708978295,[2,3,3,3,3,3,3,3,4,4]],[1708978296,[1,2,2,3,3,3,3,3,3,3]],[1708978297,[2,2,2,3,3,3,3,3,3,4]],[1708978298,[2,2,2,3,3,3,3,3,11,26]],[1708978299,[1,2,3,3,3,3,3,3,3,4]],[1708978300,[1,2,3,3,3,3,3,3,4,4]],[1708978301,[2,2,3,3,3,3,4,4,5,5]],[1708978302,[1,2,2,2,3,3,3,3,3,4]],[1708978303,[1,2,2,3,3,3,3,3,11,16]],[1708978304,[1,2,2,2,2,2,3,3,3,3]],[1708978305,[1,2,2,3,3,3,3,3,4,4]],[1708978306,[2,2,3,3,3,3,3,3,3,4]],[1708978307,[2,2,3,3,3,3,3,3,4,4]],[1708978308,[1,2,2,3,3,3,3,4,25,27]],[1708978309,[2,2,3,3,3,3,3,3,3,4]],[1708978310,[1,2,2,3,3,3,3,3,3,4]],[1708978311,[1,2,2,2,2,2,3,3,3,4]],[1708978312,[1,2,2,2,2,2,3,3,3,4]],[1708978313,[1,2,2,3,3,3,3,3,13,15]],[1708978314,[2,2,2,3,3,3,3,3,3,5]],[1708978315,[1,2,2,2,2,3,3,3,3,3]],[1708978316,[1,2,2,2,2,2,3,3,3,3]],[1708978317,[1,2,2,3,3,3,3,3,3,4]],[1708978318,[1,2,2,3,3,3,3,3,4,4]],[1708978319,[1,2,2,3,3,3,3,3,11,15]],[1708978320,[1,2,2,3,3,3,3,3,3,4]],[1708978321,[2,2,3,3,3,3,3,3,4,5]],[1708978322,[1,2,2,3,3,3,3,3,3,4]],[1708978323,[1,2,2,3,3,3,3,3,3,6]],[1708978324,[1,2,2,2,2,2,3,3,3,5]],[1708978325,[1,2,2,2,2,2,3,3,3,3]],[1708978326,[1,2,2,2,3,3,3,3,3,4]],[1708978327,[1,2,2,2,3,3,3,3,4,8]],[1708978328,[1,2,2,2,3,3,3,3,3,3]],[1708978329,[1,2,2,2,3,3,3,3,6,20]],[1708978330,[1,2,2,2,2,3,3,3,4,6]],[1708978331,[1,2,2,3,3,3,3,3,3,4]],[1708978332,[1,2,2,2,2,2,2,3,3,5]],[1708978333,[1,2,2,2,2,2,3,3,3,4]],[1708978334,[1,2,2,3,3,3,3,3,4,8]],[1708978335,[1,2,2,3,3,3,3,3,4,7]],[1708978336,[1,2,2,2,2,2,3,3,3,4]],[1708978337,[1,2,2,2,2,3,3,3,4,6]],[1708978338,[1,2,2,2,2,2,2,2,3,3]],[1708978339,[1,2,2,2,3,3,3,3,11,26]],[1708978340,[1,2,2,2,2,3,3,3,3,4]],[1708978341,[1,2,2,2,3,3,3,3,3,8]],[1708978342,[1,2,2,3,3,3,3,3,3,4]],[1708978343,[2,2,2,3,3,3,3,3,4,7]],[1708978344,[1,2,2,3,3,3,3,3,9,24]],[1708978345,[1,2,2,3,3,3,3,3,4,6]],[1708978346,[1,2,2,2,2,3,3,3,3,4]],[1708978347,[1,2,2,2,2,3,3,3,3,6]],[1708978348,[1,1,2,2,2,2,2,2,3,5]],[1708978349,[1,1,2,2,2,2,2,3,4,16]],[1708978350,[1,2,2,2,2,2,3,3,4,6]],[1708978351,[1,2,2,2,2,3,3,3,3,3]],[1708978352,[1,2,2,2,2,2,2,3,3,5]],[1708978353,[1,2,2,3,3,3,3,3,4,6]],[1708978354,[1,2,2,2,2,3,3,3,7,18]],[1708978355,[1,1,2,2,2,2,2,3,3,6]],[1708978356,[1,2,2,2,2,3,3,3,4,6]],[1708978357,[1,2,2,2,2,3,3,3,3,5]],[1708978358,[1,2,2,2,2,2,3,3,3,6]],[1708978359,[1,2,2,14,37,85,127,171,200,211]],[1708978360,[1,1,2,2,2,2,2,3,3,5]],[1708978361,[1,2,2,2,2,2,3,3,3,7]],[1708978362,[1,2,2,2,2,2,2,3,4,5]],[1708978363,[1,2,2,2,2,2,2,3,3,5]],[1708978364,[1,2,2,2,2,2,3,3,7,12]],[1708978365,[1,2,2,2,2,2,2,3,3,5]],[1708978366,[1,2,2,3,3,3,3,3,3,5]],[1708978367,[1,2,2,3,3,3,3,3,3,6]],[1708978368,[1,2,2,2,2,2,3,3,3,6]],[1708978369,[1,1,2,2,2,2,2,3,3,6]],[1708978370,[1,2,2,2,2,3,3,3,5,11]],[1708978371,[1,2,2,2,2,2,3,3,4,7]],[1708978372,[1,2,2,2,2,2,3,3,4,6]],[1708978373,[1,1,2,2,2,2,2,3,3,5]],[1708978374,[1,2,2,2,2,2,2,3,4,5]],[1708978375,[1,2,2,2,3,3,3,3,5,6]],[1708978376,[1,2,2,2,2,2,3,3,4,6]],[1708978377,[1,2,2,2,2,2,3,3,3,5]],[1708978378,[1,2,2,2,3,3,3,3,4,6]],[1708978379,[1,1,2,2,2,3,3,3,3,6]],[1708978380,[1,1,2,2,2,2,2,2,5,7]],[1708978381,[1,1,2,2,2,2,2,3,4,7]],[1708978382,[1,2,2,2,2,2,2,3,4,7]],[1708978383,[1,2,2,2,2,2,3,3,4,6]],[1708978384,[1,2,2,2,3,3,3,3,4,5]],[1708978385,[1,2,3,3,3,4,4,7,26,41]],[1708978386,[1,2,2,3,3,3,3,4,5,5]],[1708978387,[1,3,4,4,4,4,5,5,6,7]],[1708978388,[1,2,2,3,3,3,4,4,5,6]],[1708978389,[1,3,3,4,4,4,5,5,6,8]],[1708978390,[1,2,2,3,3,4,4,5,16,22]],[1708978391,[1,3,3,4,4,5,5,5,7,8]],[1708978392,[1,2,2,3,3,4,4,4,6,6]],[1708978393,[2,3,3,4,4,4,5,5,7,8]],[1708978394,[1,2,2,3,3,3,4,4,5,7]],[1708978395,[1,2,4,5,5,6,8,20,56,68]],[1708978396,[1,2,2,4,4,4,5,5,6,10]],[1708978397,[1,2,3,4,4,5,5,6,7,8]],[1708978398,[1,2,3,4,4,4,4,5,6,7]],[1708978399,[1,2,3,3,3,3,3,4,6,7]],[1708978400,[1,2,3,3,3,3,4,6,28,41]],[1708978401,[1,2,2,2,4,4,4,5,6,9]],[1708978402,[1,2,3,4,4,4,4,5,6,7]],[1708978403,[1,2,2,3,3,4,4,5,6,7]],[1708978404,[1,2,3,4,4,4,4,5,6,7]],[1708978405,[1,2,3,3,4,4,5,7,28,42]],[1708978406,[1,2,3,4,4,4,5,5,6,9]],[1708978407,[1,1,2,2,2,3,4,5,6,7]],[1708978408,[1,2,3,4,4,4,4,5,7,10]],[1708978409,[1,2,2,2,3,3,3,4,6,7]],[1708978410,[1,3,4,4,4,4,5,9,40,46]],[1708978411,[1,2,2,2,2,3,3,3,5,6]],[1708978412,[1,3,3,4,4,4,4,5,7,8]],[1708978413,[1,2,2,2,2,2,3,3,6,10]],[1708978414,[1,3,3,4,4,4,4,5,7,7]],[1708978415,[1,2,2,2,3,3,3,5,12,23]],[1708978416,[1,3,3,4,4,4,5,7,29,38]],[1708978417,[1,2,2,2,3,3,3,3,6,8]],[1708978418,[1,3,3,4,4,4,5,5,7,10]],[1708978419,[1,2,2,3,3,3,3,3,5,6]],[1708978420,[1,2,3,11,22,39,55,78,94,120]],[1708978421,[1,2,2,3,3,3,5,21,53,63]],[1708978422,[1,2,3,4,4,4,5,5,7,8]],[1708978423,[1,2,2,2,3,3,3,4,5,6]],[1708978424,[1,2,3,3,4,4,4,5,7,7]],[1708978425,[1,2,2,3,3,3,3,4,5,6]],[1708978426,[1,2,3,4,4,4,5,8,37,46]],[1708978427,[1,2,2,3,3,3,4,4,6,8]],[1708978428,[1,2,2,3,3,3,3,4,6,7]],[1708978429,[1,1,2,2,2,3,3,3,4,7]],[1708978430,[1,2,2,3,3,3,4,4,7,10]],[1708978431,[1,2,2,3,4,4,5,12,46,61]],[1708978432,[1,2,2,3,3,3,4,4,6,8]],[1708978433,[1,2,2,3,3,4,4,5,5,8]],[1708978434,[2,2,2,3,3,3,3,4,6,7]],[1708978435,[1,2,2,3,4,4,4,4,5,7]],[1708978436,[1,2,2,2,2,3,3,5,29,48]],[1708978437,[1,2,2,3,3,3,3,4,6,7]],[1708978438,[1,2,2,3,3,3,3,3,5,6]],[1708978439,[1,2,2,3,4,4,4,5,6,8]],[1708978440,[1,2,2,2,2,2,3,3,5,6]],[1708978441,[1,2,2,3,4,4,5,6,29,42]],[1708978442,[1,2,2,2,2,2,3,3,5,7]],[1708978443,[1,2,2,3,4,4,5,5,8,10]],[1708978444,[1,2,2,3,3,3,3,3,5,6]],[1708978445,[1,2,2,3,3,4,4,5,6,8]],[1708978446,[1,2,2,3,3,3,3,8,33,43]],[1708978447,[1,2,2,3,3,4,4,5,6,8]],[1708978448,[1,2,2,3,4,4,4,5,7,10]],[1708978449,[1,3,4,4,4,4,5,5,8,9]],[1708978450,[1,2,3,4,4,4,5,5,7,9]],[1708978451,[1,3,4,5,5,5,8,23,63,82]],[1708978452,[1,2,2,3,3,4,4,5,6,10]],[1708978453,[1,3,3,4,4,4,4,5,7,8]],[1708978454,[1,2,2,3,4,4,4,5,6,8]],[1708978455,[1,2,3,4,4,4,4,5,7,9]],[1708978456,[1,1,2,2,3,5,6,24,56,68]],[1708978457,[1,2,3,4,4,4,4,5,8,11]],[1708978458,[1,2,2,2,3,3,4,5,6,8]],[1708978459,[1,3,4,5,5,5,5,6,7,9]],[1708978460,[1,1,2,2,2,2,3,3,5,7]],[1708978461,[1,3,3,4,4,4,4,6,15,22]],[1708978462,[1,2,2,2,2,3,5,23,66,81]],[1708978463,[1,3,4,4,4,5,5,5,9,11]],[1708978464,[1,1,2,2,2,3,3,3,6,11]],[1708978465,[1,3,3,4,4,4,4,5,8,9]],[1708978466,[1,2,2,2,3,3,3,4,6,7]],[1708978467,[1,3,4,4,5,5,7,17,58,68]],[1708978468,[1,1,2,2,2,2,3,4,5,8]],[1708978469,[1,2,3,4,4,4,4,5,9,13]],[1708978470,[1,2,2,3,3,3,3,4,6,9]],[1708978471,[2,2,3,3,4,4,5,6,7,8]],[1708978472,[1,2,2,2,3,4,6,20,54,63]],[1708978473,[2,2,3,4,4,4,5,5,8,9]],[1708978474,[1,2,2,3,3,3,4,5,6,8]],[1708978475,[1,2,2,3,4,4,4,5,8,9]],[1708978476,[1,2,2,3,3,3,4,4,6,8]],[1708978477,[1,2,3,3,3,4,5,14,50,64]],[1708978478,[1,1,2,3,3,3,3,4,6,11]],[1708978479,[1,2,2,3,3,3,3,4,6,7]],[1708978480,[1,2,3,25,35,48,64,77,101,172]],[1708978481,[1,2,2,3,3,3,4,4,6,12]],[1708978482,[1,2,3,4,4,4,6,24,62,73]],[1708978483,[1,2,2,3,3,3,4,5,6,9]],[1708978484,[1,2,3,4,4,4,4,5,8,10]],[1708978485,[1,2,2,2,2,3,3,4,6,9]],[1708978486,[1,2,3,3,4,4,4,5,8,9]],[1708978487,[1,2,2,3,3,3,6,24,65,74]],[1708978488,[1,2,3,4,4,4,5,5,7,10]],[1708978489,[1,2,2,2,2,2,3,3,6,6]],[1708978490,[1,2,3,4,4,4,4,6,8,12]],[1708978491,[1,2,2,2,3,3,3,4,6,7]],[1708978492,[1,2,3,4,4,5,7,29,72,86]],[1708978493,[1,2,2,3,3,3,3,4,6,7]],[1708978494,[1,2,3,4,4,4,5,5,8,9]],[1708978495,[1,2,2,3,3,3,3,3,6,7]],[1708978496,[1,1,2,3,3,4,4,4,6,9]],[1708978497,[1,1,2,2,2,3,3,6,33,57]],[1708978498,[1,2,2,3,3,3,4,4,7,9]],[1708978499,[1,1,2,2,2,2,3,3,6,8]],[1708978500,[1,2,2,4,4,4,5,5,8,13]],[1708978501,[1,2,2,3,3,3,3,3,7,8]],[1708978502,[1,2,2,3,4,5,9,32,70,81]],[1708978503,[1,2,2,2,2,2,3,3,7,7]],[1708978504,[1,2,2,3,3,4,4,5,8,11]],[1708978505,[1,1,2,2,2,2,2,3,6,7]],[1708978506,[1,1,2,2,3,3,3,4,8,12]],[1708978507,[1,1,2,2,2,2,2,6,28,36]],[1708978508,[1,1,2,3,3,4,7,31,75,92]],[1708978509,[1,1,2,2,2,2,3,4,6,7]],[1708978510,[1,2,2,3,3,4,4,4,8,9]],[1708978511,[1,2,2,2,2,3,3,4,7,9]],[1708978512,[2,3,3,4,4,5,5,6,9,10]],[1708978513,[1,2,2,3,4,4,5,16,56,84]]]);
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([[1708978269,[25,25,0]],[1708978270,[1,1,0]],[1708978271,[25,25,0]],[1708978272,[1,1,0]],[1708978273,[71,71,0]],[1708978274,[3,3,0]],[1708978275,[6,6,0]],[1708978276,[9,9,0]],[1708978277,[11,11,0]],[1708978278,[13,13,0]],[1708978279,[18,18,0]],[1708978280,[19,19,0]],[1708978281,[24,24,0]],[1708978282,[26,26,0]],[1708978283,[27,27,0]],[1708978284,[32,32,0]],[1708978285,[34,34,0]],[1708978286,[37,37,0]],[1708978287,[39,39,0]],[1708978288,[43,43,0]],[1708978289,[45,45,0]],[1708978290,[48,48,0]],[1708978291,[50,50,0]],[1708978292,[54,54,0]],[1708978293,[56,56,0]],[1708978294,[60,60,0]],[1708978295,[61,61,0]],[1708978296,[65,65,0]],[1708978297,[67,67,0]],[1708978298,[70,70,0]],[1708978299,[74,74,0]],[1708978300,[76,76,0]],[1708978301,[80,80,0]],[1708978302,[81,81,0]],[1708978303,[84,84,0]],[1708978304,[88,88,0]],[1708978305,[90,90,0]],[1708978306,[93,93,0]],[1708978307,[96,96,0]],[1708978308,[98,98,0]],[1708978309,[102,102,0]],[1708978310,[104,104,0]],[1708978311,[107,107,0]],[1708978312,[109,109,0]],[1708978313,[114,114,0]],[1708978314,[115,115,0]],[1708978315,[118,118,0]],[1708978316,[121,121,0]],[1708978317,[124,124,0]],[1708978318,[126,126,0]],[1708978319,[129,129,0]],[1708978320,[133,133,0]],[1708978321,[134,134,0]],[1708978322,[139,139,0]],[1708978323,[140,140,0]],[1708978324,[144,144,0]],[1708978325,[146,146,0]],[1708978326,[149,149,0]],[1708978327,[151,151,0]],[1708978328,[155,155,0]],[1708978329,[157,157,0]],[1708978330,[160,160,0]],[1708978331,[164,164,0]],[1708978332,[165,165,0]],[1708978333,[171,171,0]],[1708978334,[171,171,0]],[1708978335,[174,174,0]],[1708978336,[177,177,0]],[1708978337,[180,180,0]],[1708978338,[183,183,0]],[1708978339,[186,186,0]],[1708978340,[188,188,0]],[1708978341,[192,192,0]],[1708978342,[194,194,0]],[1708978343,[197,197,0]],[1708978344,[198,198,0]],[1708978345,[204,204,0]],[1708978346,[204,204,0]],[1708978347,[208,208,0]],[1708978348,[211,211,0]],[1708978349,[214,214,0]],[1708978350,[217,217,0]],[1708978351,[219,219,0]],[1708978352,[222,222,0]],[1708978353,[225,225,0]],[1708978354,[227,227,0]],[1708978355,[230,230,0]],[1708978356,[234,234,0]],[1708978357,[236,236,0]],[1708978358,[239,239,0]],[1708978359,[242,242,0]],[1708978360,[244,244,0]],[1708978361,[248,248,0]],[1708978362,[250,250,0]],[1708978363,[253,253,0]],[1708978364,[255,255,0]],[1708978365,[261,261,0]],[1708978366,[262,262,0]],[1708978367,[263,263,0]],[1708978368,[267,267,0]],[1708978369,[269,269,0]],[1708978370,[273,273,0]],[1708978371,[275,275,0]],[1708978372,[279,279,0]],[1708978373,[281,281,0]],[1708978374,[284,284,0]],[1708978375,[286,286,0]],[1708978376,[290,290,0]],[1708978377,[292,292,0]],[1708978378,[295,295,0]],[1708978379,[298,298,0]],[1708978380,[301,301,0]],[1708978381,[304,304,0]],[1708978382,[306,306,0]],[1708978383,[309,309,0]],[1708978384,[312,312,0]],[1708978385,[315,315,0]],[1708978386,[317,317,0]],[1708978387,[320,320,0]],[1708978388,[323,323,0]],[1708978389,[326,326,0]],[1708978390,[330,330,0]],[1708978391,[332,332,0]],[1708978392,[334,334,0]],[1708978393,[337,337,0]],[1708978394,[340,340,0]],[1708978395,[340,340,0]],[1708978396,[340,340,0]],[1708978397,[340,340,0]],[1708978398,[340,340,0]],[1708978399,[340,340,0]],[1708978400,[340,340,0]],[1708978401,[340,340,0]],[1708978402,[340,340,0]],[1708978403,[340,340,0]],[1708978404,[340,340,0]],[1708978405,[340,340,0]],[1708978406,[340,340,0]],[1708978407,[340,340,0]],[1708978408,[340,340,0]],[1708978409,[340,340,0]],[1708978410,[340,340,0]],[1708978411,[340,340,0]],[1708978412,[340,340,0]],[1708978413,[340,340,0]],[1708978414,[340,340,0]],[1708978415,[340,340,0]],[1708978416,[340,340,0]],[1708978417,[340,340,0]],[1708978418,[340,340,0]],[1708978419,[340,340,0]],[1708978420,[340,340,0]],[1708978421,[340,340,0]],[1708978422,[340,340,0]],[1708978423,[340,340,0]],[1708978424,[340,340,0]],[1708978425,[340,340,0]],[1708978426,[340,340,0]],[1708978427,[340,340,0]],[1708978428,[340,340,0]],[1708978429,[340,340,0]],[1708978430,[340,340,0]],[1708978431,[340,340,0]],[1708978432,[340,340,0]],[1708978433,[340,340,0]],[1708978434,[340,340,0]],[1708978435,[340,340,0]],[1708978436,[340,340,0]],[1708978437,[340,340,0]],[1708978438,[340,340,0]],[1708978439,[340,340,0]],[1708978440,[340,340,0]],[1708978441,[340,340,0]],[1708978442,[340,340,0]],[1708978443,[340,340,0]],[1708978444,[340,340,0]],[1708978445,[340,340,0]],[1708978446,[340,340,0]],[1708978447,[340,340,0]],[1708978448,[340,340,0]],[1708978449,[340,340,0]],[1708978450,[340,340,0]],[1708978451,[340,340,0]],[1708978452,[340,340,0]],[1708978453,[340,340,0]],[1708978454,[340,340,0]],[1708978455,[340,340,0]],[1708978456,[340,340,0]],[1708978457,[340,340,0]],[1708978458,[340,340,0]],[1708978459,[340,340,0]],[1708978460,[340,340,0]],[1708978461,[340,340,0]],[1708978462,[340,340,0]],[1708978463,[340,340,0]],[1708978464,[340,340,0]],[1708978465,[340,340,0]],[1708978466,[340,340,0]],[1708978467,[340,340,0]],[1708978468,[340,340,0]],[1708978469,[340,340,0]],[1708978470,[340,340,0]],[1708978471,[340,340,0]],[1708978472,[340,340,0]],[1708978473,[340,340,0]],[1708978474,[340,340,0]],[1708978475,[340,340,0]],[1708978476,[340,340,0]],[1708978477,[340,340,0]],[1708978478,[340,340,0]],[1708978479,[340,340,0]],[1708978480,[340,340,0]],[1708978481,[340,340,0]],[1708978482,[340,340,0]],[1708978483,[340,340,0]],[1708978484,[340,340,0]],[1708978485,[340,340,0]],[1708978486,[340,340,0]],[1708978487,[340,340,0]],[1708978488,[340,340,0]],[1708978489,[340,340,0]],[1708978490,[340,340,0]],[1708978491,[340,340,0]],[1708978492,[340,340,0]],[1708978493,[340,340,0]],[1708978494,[340,340,0]],[1708978495,[340,340,0]],[1708978496,[340,340,0]],[1708978497,[340,340,0]],[1708978498,[340,340,0]],[1708978499,[340,340,0]],[1708978500,[340,340,0]],[1708978501,[340,340,0]],[1708978502,[340,340,0]],[1708978503,[340,340,0]],[1708978504,[340,340,0]],[1708978505,[340,340,0]],[1708978506,[340,340,0]],[1708978507,[340,340,0]],[1708978508,[340,340,0]],[1708978509,[340,340,0]],[1708978510,[340,340,0]],[1708978511,[340,340,0]],[1708978512,[340,340,0]],[1708978513,[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:[