-
Notifications
You must be signed in to change notification settings - Fork 923
/
Copy pathindex.html
1195 lines (1125 loc) · 99.5 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="shortcut icon" type="image/x-icon" href="style/favicon.ico"/>
<link href="style/style.css" rel="stylesheet" type="text/css" />
<link href="style/bootstrap.min.css" rel="stylesheet" type="text/css" />
<script src="js/jquery-3.5.1.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/gatling.js"></script>
<script src="js/menu.js"></script>
<script src="js/ellipsis.js"></script>
<script src="js/all_sessions.js"></script>
<script src="js/stats.js"></script>
<script src="js/highstock.js"></script>
<script src="js/highcharts-more.js"></script>
<script src="js/theme.js"></script>
<script src="js/unpack.js"></script>
<title>Gatling Stats - Global Information</title>
</head>
<body>
<script>
const storedTheme = localStorage.getItem('theme') || (window.matchMedia("(prefers-color-scheme: dark)").matches ? "dark" : "light");
if (storedTheme) document.documentElement.setAttribute('data-theme', storedTheme)
function toggleTheme() {
const currentTheme = document.documentElement.getAttribute("data-theme");
const targetTheme = currentTheme === "light" ? "dark" : "light";
document.documentElement.setAttribute('data-theme', targetTheme)
localStorage.setItem('theme', targetTheme);
};
</script>
<div class="app-container">
<div class="frise"></div>
<div class="head">
<div class="gatling-open-source">
<a class="gatling-logo gatling-logo-light" href="https://gatling.io" target="blank_" title="Gatling Home Page"><img alt="Gatling" src="style/logo-light.svg"/></a>
<a class="gatling-logo gatling-logo-dark" href="https://gatling.io" target="blank_" title="Gatling Home Page"><img alt="Gatling" src="style/logo-dark.svg"/></a>
<a class="gatling-documentation" href="https://gatling.io/docs/" target="_blank">Documentation</a>
</div>
<div class="nav spacer"></div>
<a class="enterprise" href="https://gatling.io/enterprise/next-step/" target="_blank"><strong>Try</strong>
<img class="logo-enterprise-light" alt="Gatling Enterprise" src="style/logo-enterprise-light.svg"/>
<img class="logo-enterprise-dark" alt="Gatling Enterprise" src="style/logo-enterprise-dark.svg"/>
</a>
<button id="theme-toggle" class="theme-toggle" type="button" onclick="toggleTheme()" aria-label="Toggle user interface mode">
<span class="toggle-dark"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-moon"><path d="M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z"></path></svg></span>
<span class="toggle-light"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-sun"><circle cx="12" cy="12" r="5"></circle><line x1="12" y1="1" x2="12" y2="3"></line><line x1="12" y1="21" x2="12" y2="23"></line><line x1="4.22" y1="4.22" x2="5.64" y2="5.64"></line><line x1="18.36" y1="18.36" x2="19.78" y2="19.78"></line><line x1="1" y1="12" x2="3" y2="12"></line><line x1="21" y1="12" x2="23" y2="12"></line><line x1="4.22" y1="19.78" x2="5.64" y2="18.36"></line><line x1="18.36" y1="5.64" x2="19.78" y2="4.22"></line></svg></span>
</button>
</div>
<div class="container details">
<div class="nav">
<ul></ul>
</div>
<div class="cadre">
<div class="content">
<div class="content-header">
<div class="onglet">
RinhaBackendCrebitosSimulation
</div>
<div class="sous-menu" id="sousMenu">
<div class="sous-menu-spacer">
<div class="item ouvert"><a href="index.html">Global</a></div>
<div class="item "><a id="details_link" href="#">Details</a></div>
</div>
</div>
</div>
<div class="content-in">
<div class="container-article">
<div class="article">
<div class="schema-container">
<div id="ranges" class="schema ranges">
</div>
<div class="schema polar">
<div id="container_number_of_requests"></div>
</div>
<div class="simulation-card">
<div class="simulation-version-information">
<span class="simulation-information-title">Gatling Version</span>
<span class="simulation-information-item">
<span class="simulation-information-label">Version: </span>
<span>3.10.3</span>
</span>
<span class="simulation-information-item">
<span class="simulation-information-label">Released: </span>
<span>2023-12-20</span>
</span>
</div>
<div id="simulation-information" class="simulation-version-information">
<span class="simulation-information-title">Run Information</span>
<div class="simulation-information-container">
<span class="simulation-information-item">
<span class="simulation-information-label">Date: </span>
<span>2024-03-09 19:35:50 GMT</span>
</span>
<span class="simulation-information-item">
<span class="simulation-information-label">Duration: </span>
<span>4m 7s </span>
</span>
<span class="simulation-tooltip simulation-information-item description" title="Description" data-content="Rinha de Backend - 2024/Q1: Crébito - wesleyricardi-rust">
<span class="simulation-information-label">Description: </span>
<span>Rinha de Backend - 2024/Q1: Crébito - wesleyricardi-rust</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="statistics extensible-geant collapsed">
<div class="title">
Errors
</div>
<table id="container_errors" class="statistics-in extensible-geant">
<thead>
<tr>
<th id="error-col-1" class="header sortable"><span>Error</span></th>
<th id="error-col-2" class="header sortable"><span>Count</span></th>
<th id="error-col-3" class="header sortable"><span>Percentage</span></th>
</tr>
</thead>
<tbody>
<tr>
<td class="error-col-1 total ko">j.i.IOException: Premature close<span class="value" style="display:none">0</span></td>
<td class="value error-col-2 total ko">14311</td>
<td class="value error-col-3 total ko">100 %</td>
</tr>
</tbody>
</table>
</div>
<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: [
[1710012951000,0],[1710012952000,0],[1710012953000,0],[1710012954000,0],[1710012955000,0],[1710012956000,2],[1710012957000,3],[1710012958000,5],[1710012959000,4],[1710012960000,5],[1710012961000,6],[1710012962000,7],[1710012963000,8],[1710012964000,8],[1710012965000,10],[1710012966000,10],[1710012967000,12],[1710012968000,12],[1710012969000,14],[1710012970000,14],[1710012971000,15],[1710012972000,16],[1710012973000,17],[1710012974000,17],[1710012975000,19],[1710012976000,20],[1710012977000,20],[1710012978000,22],[1710012979000,22],[1710012980000,23],[1710012981000,25],[1710012982000,25],[1710012983000,26],[1710012984000,26],[1710012985000,28],[1710012986000,29],[1710012987000,30],[1710012988000,30],[1710012989000,32],[1710012990000,33],[1710012991000,33],[1710012992000,34],[1710012993000,35],[1710012994000,36],[1710012995000,37],[1710012996000,38],[1710012997000,39],[1710012998000,39],[1710012999000,41],[1710013000000,41],[1710013001000,46],[1710013002000,43],[1710013003000,44],[1710013004000,45],[1710013005000,46],[1710013006000,47],[1710013007000,48],[1710013008000,48],[1710013009000,50],[1710013010000,50],[1710013011000,52],[1710013012000,58],[1710013013000,53],[1710013014000,54],[1710013015000,56],[1710013016000,55],[1710013017000,57],[1710013018000,58],[1710013019000,59],[1710013020000,59],[1710013021000,61],[1710013022000,61],[1710013023000,73],[1710013024000,63],[1710013025000,64],[1710013026000,65],[1710013027000,66],[1710013028000,67],[1710013029000,69],[1710013030000,68],[1710013031000,70],[1710013032000,70],[1710013033000,72],[1710013034000,93],[1710013035000,87],[1710013036000,74],[1710013037000,75],[1710013038000,76],[1710013039000,77],[1710013040000,90],[1710013041000,79],[1710013042000,79],[1710013043000,81],[1710013044000,81],[1710013045000,90],[1710013046000,84],[1710013047000,86],[1710013048000,86],[1710013049000,87],[1710013050000,87],[1710013051000,116],[1710013052000,113],[1710013053000,104],[1710013054000,98],[1710013055000,92],[1710013056000,93],[1710013057000,125],[1710013058000,127],[1710013059000,133],[1710013060000,134],[1710013061000,134],[1710013062000,161],[1710013063000,176],[1710013064000,181],[1710013065000,185],[1710013066000,202],[1710013067000,211],[1710013068000,261],[1710013069000,254],[1710013070000,258],[1710013071000,262],[1710013072000,263],[1710013073000,258],[1710013074000,255],[1710013075000,252],[1710013076000,254],[1710013077000,254],[1710013078000,272],[1710013079000,268],[1710013080000,259],[1710013081000,250],[1710013082000,252],[1710013083000,263],[1710013084000,259],[1710013085000,265],[1710013086000,259],[1710013087000,265],[1710013088000,260],[1710013089000,252],[1710013090000,264],[1710013091000,254],[1710013092000,251],[1710013093000,258],[1710013094000,261],[1710013095000,253],[1710013096000,260],[1710013097000,251],[1710013098000,264],[1710013099000,259],[1710013100000,258],[1710013101000,261],[1710013102000,265],[1710013103000,255],[1710013104000,264],[1710013105000,256],[1710013106000,255],[1710013107000,253],[1710013108000,263],[1710013109000,258],[1710013110000,257],[1710013111000,258],[1710013112000,249],[1710013113000,264],[1710013114000,255],[1710013115000,251],[1710013116000,258],[1710013117000,256],[1710013118000,260],[1710013119000,265],[1710013120000,256],[1710013121000,257],[1710013122000,260],[1710013123000,250],[1710013124000,256],[1710013125000,247],[1710013126000,252],[1710013127000,255],[1710013128000,251],[1710013129000,268],[1710013130000,259],[1710013131000,257],[1710013132000,252],[1710013133000,261],[1710013134000,254],[1710013135000,259],[1710013136000,250],[1710013137000,251],[1710013138000,250],[1710013139000,254],[1710013140000,258],[1710013141000,255],[1710013142000,258],[1710013143000,265],[1710013144000,247],[1710013145000,246],[1710013146000,258],[1710013147000,262],[1710013148000,257],[1710013149000,253],[1710013150000,253],[1710013151000,256],[1710013152000,263],[1710013153000,252],[1710013154000,256],[1710013155000,249],[1710013156000,250],[1710013157000,247],[1710013158000,263],[1710013159000,256],[1710013160000,248],[1710013161000,251],[1710013162000,251],[1710013163000,253],[1710013164000,264],[1710013165000,261],[1710013166000,248],[1710013167000,242],[1710013168000,247],[1710013169000,250],[1710013170000,249],[1710013171000,244],[1710013172000,234],[1710013173000,233],[1710013174000,232],[1710013175000,247],[1710013176000,238],[1710013177000,237],[1710013178000,244],[1710013179000,242],[1710013180000,239],[1710013181000,240],[1710013182000,233],[1710013183000,236],[1710013184000,246],[1710013185000,253],[1710013186000,244],[1710013187000,248],[1710013188000,249],[1710013189000,253],[1710013190000,249],[1710013191000,246],[1710013192000,261],[1710013193000,247],[1710013194000,240],[1710013195000,221],[1710013196000,136],[1710013197000,92],[1710013198000,50]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#68b65c',
name: 'débitos',
data: [
[1710012951000,0],[1710012952000,0],[1710012953000,0],[1710012954000,0],[1710012955000,0],[1710012956000,2],[1710012957000,5],[1710012958000,7],[1710012959000,7],[1710012960000,9],[1710012961000,11],[1710012962000,13],[1710012963000,15],[1710012964000,16],[1710012965000,19],[1710012966000,20],[1710012967000,22],[1710012968000,24],[1710012969000,25],[1710012970000,28],[1710012971000,29],[1710012972000,31],[1710012973000,33],[1710012974000,35],[1710012975000,37],[1710012976000,38],[1710012977000,40],[1710012978000,42],[1710012979000,44],[1710012980000,46],[1710012981000,47],[1710012982000,50],[1710012983000,51],[1710012984000,53],[1710012985000,55],[1710012986000,56],[1710012987000,59],[1710012988000,60],[1710012989000,62],[1710012990000,64],[1710012991000,66],[1710012992000,68],[1710012993000,69],[1710012994000,71],[1710012995000,74],[1710012996000,74],[1710012997000,77],[1710012998000,79],[1710012999000,80],[1710013000000,83],[1710013001000,91],[1710013002000,86],[1710013003000,89],[1710013004000,90],[1710013005000,92],[1710013006000,94],[1710013007000,95],[1710013008000,97],[1710013009000,99],[1710013010000,102],[1710013011000,102],[1710013012000,121],[1710013013000,107],[1710013014000,109],[1710013015000,110],[1710013016000,112],[1710013017000,113],[1710013018000,115],[1710013019000,117],[1710013020000,119],[1710013021000,120],[1710013022000,123],[1710013023000,143],[1710013024000,126],[1710013025000,128],[1710013026000,129],[1710013027000,132],[1710013028000,133],[1710013029000,138],[1710013030000,137],[1710013031000,139],[1710013032000,141],[1710013033000,142],[1710013034000,184],[1710013035000,175],[1710013036000,147],[1710013037000,151],[1710013038000,152],[1710013039000,153],[1710013040000,178],[1710013041000,157],[1710013042000,159],[1710013043000,161],[1710013044000,162],[1710013045000,179],[1710013046000,170],[1710013047000,169],[1710013048000,171],[1710013049000,172],[1710013050000,174],[1710013051000,228],[1710013052000,217],[1710013053000,212],[1710013054000,198],[1710013055000,185],[1710013056000,185],[1710013057000,243],[1710013058000,254],[1710013059000,260],[1710013060000,270],[1710013061000,261],[1710013062000,322],[1710013063000,351],[1710013064000,359],[1710013065000,367],[1710013066000,401],[1710013067000,422],[1710013068000,518],[1710013069000,524],[1710013070000,527],[1710013071000,532],[1710013072000,525],[1710013073000,530],[1710013074000,530],[1710013075000,527],[1710013076000,532],[1710013077000,530],[1710013078000,530],[1710013079000,543],[1710013080000,535],[1710013081000,543],[1710013082000,529],[1710013083000,527],[1710013084000,528],[1710013085000,541],[1710013086000,544],[1710013087000,532],[1710013088000,536],[1710013089000,532],[1710013090000,531],[1710013091000,538],[1710013092000,542],[1710013093000,542],[1710013094000,550],[1710013095000,545],[1710013096000,556],[1710013097000,536],[1710013098000,549],[1710013099000,544],[1710013100000,540],[1710013101000,543],[1710013102000,553],[1710013103000,538],[1710013104000,549],[1710013105000,536],[1710013106000,538],[1710013107000,526],[1710013108000,535],[1710013109000,558],[1710013110000,554],[1710013111000,541],[1710013112000,532],[1710013113000,549],[1710013114000,535],[1710013115000,533],[1710013116000,543],[1710013117000,536],[1710013118000,540],[1710013119000,544],[1710013120000,534],[1710013121000,530],[1710013122000,552],[1710013123000,542],[1710013124000,535],[1710013125000,536],[1710013126000,556],[1710013127000,547],[1710013128000,536],[1710013129000,548],[1710013130000,550],[1710013131000,540],[1710013132000,547],[1710013133000,545],[1710013134000,545],[1710013135000,540],[1710013136000,548],[1710013137000,548],[1710013138000,543],[1710013139000,546],[1710013140000,545],[1710013141000,525],[1710013142000,531],[1710013143000,552],[1710013144000,530],[1710013145000,523],[1710013146000,549],[1710013147000,547],[1710013148000,545],[1710013149000,532],[1710013150000,514],[1710013151000,518],[1710013152000,541],[1710013153000,556],[1710013154000,559],[1710013155000,552],[1710013156000,536],[1710013157000,514],[1710013158000,540],[1710013159000,541],[1710013160000,566],[1710013161000,547],[1710013162000,536],[1710013163000,539],[1710013164000,553],[1710013165000,548],[1710013166000,547],[1710013167000,538],[1710013168000,565],[1710013169000,560],[1710013170000,542],[1710013171000,560],[1710013172000,540],[1710013173000,547],[1710013174000,569],[1710013175000,570],[1710013176000,564],[1710013177000,546],[1710013178000,560],[1710013179000,556],[1710013180000,548],[1710013181000,555],[1710013182000,570],[1710013183000,565],[1710013184000,560],[1710013185000,541],[1710013186000,547],[1710013187000,567],[1710013188000,555],[1710013189000,546],[1710013190000,552],[1710013191000,546],[1710013192000,556],[1710013193000,540],[1710013194000,558],[1710013195000,543],[1710013196000,328],[1710013197000,204],[1710013198000,93]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#f15b4f',
name: 'extratos',
data: [
[1710012951000,0],[1710012952000,0],[1710012953000,0],[1710012954000,0],[1710012955000,0],[1710012956000,2],[1710012957000,1],[1710012958000,1],[1710012959000,1],[1710012960000,1],[1710012961000,2],[1710012962000,1],[1710012963000,2],[1710012964000,2],[1710012965000,1],[1710012966000,2],[1710012967000,2],[1710012968000,2],[1710012969000,2],[1710012970000,2],[1710012971000,2],[1710012972000,2],[1710012973000,3],[1710012974000,2],[1710012975000,3],[1710012976000,2],[1710012977000,3],[1710012978000,2],[1710012979000,3],[1710012980000,3],[1710012981000,3],[1710012982000,3],[1710012983000,3],[1710012984000,3],[1710012985000,3],[1710012986000,4],[1710012987000,3],[1710012988000,3],[1710012989000,4],[1710012990000,4],[1710012991000,4],[1710012992000,4],[1710012993000,4],[1710012994000,4],[1710012995000,4],[1710012996000,4],[1710012997000,4],[1710012998000,4],[1710012999000,4],[1710013000000,4],[1710013001000,6],[1710013002000,4],[1710013003000,5],[1710013004000,5],[1710013005000,4],[1710013006000,5],[1710013007000,5],[1710013008000,5],[1710013009000,5],[1710013010000,5],[1710013011000,5],[1710013012000,6],[1710013013000,6],[1710013014000,5],[1710013015000,6],[1710013016000,5],[1710013017000,6],[1710013018000,5],[1710013019000,6],[1710013020000,6],[1710013021000,6],[1710013022000,6],[1710013023000,7],[1710013024000,6],[1710013025000,6],[1710013026000,7],[1710013027000,6],[1710013028000,6],[1710013029000,7],[1710013030000,6],[1710013031000,7],[1710013032000,7],[1710013033000,7],[1710013034000,9],[1710013035000,9],[1710013036000,7],[1710013037000,7],[1710013038000,7],[1710013039000,7],[1710013040000,8],[1710013041000,8],[1710013042000,7],[1710013043000,8],[1710013044000,8],[1710013045000,8],[1710013046000,8],[1710013047000,8],[1710013048000,8],[1710013049000,8],[1710013050000,8],[1710013051000,11],[1710013052000,10],[1710013053000,10],[1710013054000,10],[1710013055000,9],[1710013056000,8],[1710013057000,13],[1710013058000,11],[1710013059000,13],[1710013060000,12],[1710013061000,13],[1710013062000,15],[1710013063000,17],[1710013064000,16],[1710013065000,17],[1710013066000,19],[1710013067000,21],[1710013068000,23],[1710013069000,24],[1710013070000,25],[1710013071000,26],[1710013072000,26],[1710013073000,27],[1710013074000,31],[1710013075000,32],[1710013076000,31],[1710013077000,27],[1710013078000,27],[1710013079000,25],[1710013080000,25],[1710013081000,24],[1710013082000,23],[1710013083000,21],[1710013084000,24],[1710013085000,26],[1710013086000,21],[1710013087000,19],[1710013088000,22],[1710013089000,21],[1710013090000,20],[1710013091000,26],[1710013092000,30],[1710013093000,25],[1710013094000,25],[1710013095000,24],[1710013096000,23],[1710013097000,28],[1710013098000,26],[1710013099000,18],[1710013100000,19],[1710013101000,17],[1710013102000,21],[1710013103000,20],[1710013104000,23],[1710013105000,23],[1710013106000,19],[1710013107000,21],[1710013108000,22],[1710013109000,20],[1710013110000,18],[1710013111000,16],[1710013112000,19],[1710013113000,23],[1710013114000,26],[1710013115000,27],[1710013116000,28],[1710013117000,31],[1710013118000,29],[1710013119000,30],[1710013120000,32],[1710013121000,32],[1710013122000,27],[1710013123000,24],[1710013124000,27],[1710013125000,33],[1710013126000,30],[1710013127000,25],[1710013128000,21],[1710013129000,19],[1710013130000,23],[1710013131000,22],[1710013132000,21],[1710013133000,19],[1710013134000,20],[1710013135000,22],[1710013136000,22],[1710013137000,21],[1710013138000,21],[1710013139000,21],[1710013140000,18],[1710013141000,22],[1710013142000,24],[1710013143000,22],[1710013144000,22],[1710013145000,23],[1710013146000,22],[1710013147000,26],[1710013148000,22],[1710013149000,19],[1710013150000,25],[1710013151000,27],[1710013152000,24],[1710013153000,24],[1710013154000,23],[1710013155000,24],[1710013156000,25],[1710013157000,25],[1710013158000,25],[1710013159000,24],[1710013160000,22],[1710013161000,22],[1710013162000,21],[1710013163000,19],[1710013164000,18],[1710013165000,21],[1710013166000,23],[1710013167000,28],[1710013168000,26],[1710013169000,23],[1710013170000,30],[1710013171000,27],[1710013172000,26],[1710013173000,25],[1710013174000,24],[1710013175000,22],[1710013176000,22],[1710013177000,24],[1710013178000,23],[1710013179000,24],[1710013180000,25],[1710013181000,29],[1710013182000,29],[1710013183000,24],[1710013184000,21],[1710013185000,22],[1710013186000,22],[1710013187000,24],[1710013188000,25],[1710013189000,26],[1710013190000,27],[1710013191000,25],[1710013192000,21],[1710013193000,22],[1710013194000,22],[1710013195000,22],[1710013196000,13],[1710013197000,5],[1710013198000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FFDD00',
name: 'validação HTTP 404',
data: [
[1710012951000,0],[1710012952000,0],[1710012953000,0],[1710012954000,1],[1710012955000,0],[1710012956000,0],[1710012957000,0],[1710012958000,0],[1710012959000,0],[1710012960000,0],[1710012961000,0],[1710012962000,0],[1710012963000,0],[1710012964000,0],[1710012965000,0],[1710012966000,0],[1710012967000,0],[1710012968000,0],[1710012969000,0],[1710012970000,0],[1710012971000,0],[1710012972000,0],[1710012973000,0],[1710012974000,0],[1710012975000,0],[1710012976000,0],[1710012977000,0],[1710012978000,0],[1710012979000,0],[1710012980000,0],[1710012981000,0],[1710012982000,0],[1710012983000,0],[1710012984000,0],[1710012985000,0],[1710012986000,0],[1710012987000,0],[1710012988000,0],[1710012989000,0],[1710012990000,0],[1710012991000,0],[1710012992000,0],[1710012993000,0],[1710012994000,0],[1710012995000,0],[1710012996000,0],[1710012997000,0],[1710012998000,0],[1710012999000,0],[1710013000000,0],[1710013001000,0],[1710013002000,0],[1710013003000,0],[1710013004000,0],[1710013005000,0],[1710013006000,0],[1710013007000,0],[1710013008000,0],[1710013009000,0],[1710013010000,0],[1710013011000,0],[1710013012000,0],[1710013013000,0],[1710013014000,0],[1710013015000,0],[1710013016000,0],[1710013017000,0],[1710013018000,0],[1710013019000,0],[1710013020000,0],[1710013021000,0],[1710013022000,0],[1710013023000,0],[1710013024000,0],[1710013025000,0],[1710013026000,0],[1710013027000,0],[1710013028000,0],[1710013029000,0],[1710013030000,0],[1710013031000,0],[1710013032000,0],[1710013033000,0],[1710013034000,0],[1710013035000,0],[1710013036000,0],[1710013037000,0],[1710013038000,0],[1710013039000,0],[1710013040000,0],[1710013041000,0],[1710013042000,0],[1710013043000,0],[1710013044000,0],[1710013045000,0],[1710013046000,0],[1710013047000,0],[1710013048000,0],[1710013049000,0],[1710013050000,0],[1710013051000,0],[1710013052000,0],[1710013053000,0],[1710013054000,0],[1710013055000,0],[1710013056000,0],[1710013057000,0],[1710013058000,0],[1710013059000,0],[1710013060000,0],[1710013061000,0],[1710013062000,0],[1710013063000,0],[1710013064000,0],[1710013065000,0],[1710013066000,0],[1710013067000,0],[1710013068000,0],[1710013069000,0],[1710013070000,0],[1710013071000,0],[1710013072000,0],[1710013073000,0],[1710013074000,0],[1710013075000,0],[1710013076000,0],[1710013077000,0],[1710013078000,0],[1710013079000,0],[1710013080000,0],[1710013081000,0],[1710013082000,0],[1710013083000,0],[1710013084000,0],[1710013085000,0],[1710013086000,0],[1710013087000,0],[1710013088000,0],[1710013089000,0],[1710013090000,0],[1710013091000,0],[1710013092000,0],[1710013093000,0],[1710013094000,0],[1710013095000,0],[1710013096000,0],[1710013097000,0],[1710013098000,0],[1710013099000,0],[1710013100000,0],[1710013101000,0],[1710013102000,0],[1710013103000,0],[1710013104000,0],[1710013105000,0],[1710013106000,0],[1710013107000,0],[1710013108000,0],[1710013109000,0],[1710013110000,0],[1710013111000,0],[1710013112000,0],[1710013113000,0],[1710013114000,0],[1710013115000,0],[1710013116000,0],[1710013117000,0],[1710013118000,0],[1710013119000,0],[1710013120000,0],[1710013121000,0],[1710013122000,0],[1710013123000,0],[1710013124000,0],[1710013125000,0],[1710013126000,0],[1710013127000,0],[1710013128000,0],[1710013129000,0],[1710013130000,0],[1710013131000,0],[1710013132000,0],[1710013133000,0],[1710013134000,0],[1710013135000,0],[1710013136000,0],[1710013137000,0],[1710013138000,0],[1710013139000,0],[1710013140000,0],[1710013141000,0],[1710013142000,0],[1710013143000,0],[1710013144000,0],[1710013145000,0],[1710013146000,0],[1710013147000,0],[1710013148000,0],[1710013149000,0],[1710013150000,0],[1710013151000,0],[1710013152000,0],[1710013153000,0],[1710013154000,0],[1710013155000,0],[1710013156000,0],[1710013157000,0],[1710013158000,0],[1710013159000,0],[1710013160000,0],[1710013161000,0],[1710013162000,0],[1710013163000,0],[1710013164000,0],[1710013165000,0],[1710013166000,0],[1710013167000,0],[1710013168000,0],[1710013169000,0],[1710013170000,0],[1710013171000,0],[1710013172000,0],[1710013173000,0],[1710013174000,0],[1710013175000,0],[1710013176000,0],[1710013177000,0],[1710013178000,0],[1710013179000,0],[1710013180000,0],[1710013181000,0],[1710013182000,0],[1710013183000,0],[1710013184000,0],[1710013185000,0],[1710013186000,0],[1710013187000,0],[1710013188000,0],[1710013189000,0],[1710013190000,0],[1710013191000,0],[1710013192000,0],[1710013193000,0],[1710013194000,0],[1710013195000,0],[1710013196000,0],[1710013197000,0],[1710013198000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00D5FF',
name: 'validações',
data: [
[1710012951000,0],[1710012952000,0],[1710012953000,0],[1710012954000,5],[1710012955000,5],[1710012956000,0],[1710012957000,0],[1710012958000,0],[1710012959000,0],[1710012960000,0],[1710012961000,0],[1710012962000,0],[1710012963000,0],[1710012964000,0],[1710012965000,0],[1710012966000,0],[1710012967000,0],[1710012968000,0],[1710012969000,0],[1710012970000,0],[1710012971000,0],[1710012972000,0],[1710012973000,0],[1710012974000,0],[1710012975000,0],[1710012976000,0],[1710012977000,0],[1710012978000,0],[1710012979000,0],[1710012980000,0],[1710012981000,0],[1710012982000,0],[1710012983000,0],[1710012984000,0],[1710012985000,0],[1710012986000,0],[1710012987000,0],[1710012988000,0],[1710012989000,0],[1710012990000,0],[1710012991000,0],[1710012992000,0],[1710012993000,0],[1710012994000,0],[1710012995000,0],[1710012996000,0],[1710012997000,0],[1710012998000,0],[1710012999000,0],[1710013000000,0],[1710013001000,0],[1710013002000,0],[1710013003000,0],[1710013004000,0],[1710013005000,0],[1710013006000,0],[1710013007000,0],[1710013008000,0],[1710013009000,0],[1710013010000,0],[1710013011000,0],[1710013012000,0],[1710013013000,0],[1710013014000,0],[1710013015000,0],[1710013016000,0],[1710013017000,0],[1710013018000,0],[1710013019000,0],[1710013020000,0],[1710013021000,0],[1710013022000,0],[1710013023000,0],[1710013024000,0],[1710013025000,0],[1710013026000,0],[1710013027000,0],[1710013028000,0],[1710013029000,0],[1710013030000,0],[1710013031000,0],[1710013032000,0],[1710013033000,0],[1710013034000,0],[1710013035000,0],[1710013036000,0],[1710013037000,0],[1710013038000,0],[1710013039000,0],[1710013040000,0],[1710013041000,0],[1710013042000,0],[1710013043000,0],[1710013044000,0],[1710013045000,0],[1710013046000,0],[1710013047000,0],[1710013048000,0],[1710013049000,0],[1710013050000,0],[1710013051000,0],[1710013052000,0],[1710013053000,0],[1710013054000,0],[1710013055000,0],[1710013056000,0],[1710013057000,0],[1710013058000,0],[1710013059000,0],[1710013060000,0],[1710013061000,0],[1710013062000,0],[1710013063000,0],[1710013064000,0],[1710013065000,0],[1710013066000,0],[1710013067000,0],[1710013068000,0],[1710013069000,0],[1710013070000,0],[1710013071000,0],[1710013072000,0],[1710013073000,0],[1710013074000,0],[1710013075000,0],[1710013076000,0],[1710013077000,0],[1710013078000,0],[1710013079000,0],[1710013080000,0],[1710013081000,0],[1710013082000,0],[1710013083000,0],[1710013084000,0],[1710013085000,0],[1710013086000,0],[1710013087000,0],[1710013088000,0],[1710013089000,0],[1710013090000,0],[1710013091000,0],[1710013092000,0],[1710013093000,0],[1710013094000,0],[1710013095000,0],[1710013096000,0],[1710013097000,0],[1710013098000,0],[1710013099000,0],[1710013100000,0],[1710013101000,0],[1710013102000,0],[1710013103000,0],[1710013104000,0],[1710013105000,0],[1710013106000,0],[1710013107000,0],[1710013108000,0],[1710013109000,0],[1710013110000,0],[1710013111000,0],[1710013112000,0],[1710013113000,0],[1710013114000,0],[1710013115000,0],[1710013116000,0],[1710013117000,0],[1710013118000,0],[1710013119000,0],[1710013120000,0],[1710013121000,0],[1710013122000,0],[1710013123000,0],[1710013124000,0],[1710013125000,0],[1710013126000,0],[1710013127000,0],[1710013128000,0],[1710013129000,0],[1710013130000,0],[1710013131000,0],[1710013132000,0],[1710013133000,0],[1710013134000,0],[1710013135000,0],[1710013136000,0],[1710013137000,0],[1710013138000,0],[1710013139000,0],[1710013140000,0],[1710013141000,0],[1710013142000,0],[1710013143000,0],[1710013144000,0],[1710013145000,0],[1710013146000,0],[1710013147000,0],[1710013148000,0],[1710013149000,0],[1710013150000,0],[1710013151000,0],[1710013152000,0],[1710013153000,0],[1710013154000,0],[1710013155000,0],[1710013156000,0],[1710013157000,0],[1710013158000,0],[1710013159000,0],[1710013160000,0],[1710013161000,0],[1710013162000,0],[1710013163000,0],[1710013164000,0],[1710013165000,0],[1710013166000,0],[1710013167000,0],[1710013168000,0],[1710013169000,0],[1710013170000,0],[1710013171000,0],[1710013172000,0],[1710013173000,0],[1710013174000,0],[1710013175000,0],[1710013176000,0],[1710013177000,0],[1710013178000,0],[1710013179000,0],[1710013180000,0],[1710013181000,0],[1710013182000,0],[1710013183000,0],[1710013184000,0],[1710013185000,0],[1710013186000,0],[1710013187000,0],[1710013188000,0],[1710013189000,0],[1710013190000,0],[1710013191000,0],[1710013192000,0],[1710013193000,0],[1710013194000,0],[1710013195000,0],[1710013196000,0],[1710013197000,0],[1710013198000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00FF00',
name: 'validação concorrência saldo - 0',
data: [
[1710012951000,0],[1710012952000,0],[1710012953000,1],[1710012954000,0],[1710012955000,0],[1710012956000,0],[1710012957000,0],[1710012958000,0],[1710012959000,0],[1710012960000,0],[1710012961000,0],[1710012962000,0],[1710012963000,0],[1710012964000,0],[1710012965000,0],[1710012966000,0],[1710012967000,0],[1710012968000,0],[1710012969000,0],[1710012970000,0],[1710012971000,0],[1710012972000,0],[1710012973000,0],[1710012974000,0],[1710012975000,0],[1710012976000,0],[1710012977000,0],[1710012978000,0],[1710012979000,0],[1710012980000,0],[1710012981000,0],[1710012982000,0],[1710012983000,0],[1710012984000,0],[1710012985000,0],[1710012986000,0],[1710012987000,0],[1710012988000,0],[1710012989000,0],[1710012990000,0],[1710012991000,0],[1710012992000,0],[1710012993000,0],[1710012994000,0],[1710012995000,0],[1710012996000,0],[1710012997000,0],[1710012998000,0],[1710012999000,0],[1710013000000,0],[1710013001000,0],[1710013002000,0],[1710013003000,0],[1710013004000,0],[1710013005000,0],[1710013006000,0],[1710013007000,0],[1710013008000,0],[1710013009000,0],[1710013010000,0],[1710013011000,0],[1710013012000,0],[1710013013000,0],[1710013014000,0],[1710013015000,0],[1710013016000,0],[1710013017000,0],[1710013018000,0],[1710013019000,0],[1710013020000,0],[1710013021000,0],[1710013022000,0],[1710013023000,0],[1710013024000,0],[1710013025000,0],[1710013026000,0],[1710013027000,0],[1710013028000,0],[1710013029000,0],[1710013030000,0],[1710013031000,0],[1710013032000,0],[1710013033000,0],[1710013034000,0],[1710013035000,0],[1710013036000,0],[1710013037000,0],[1710013038000,0],[1710013039000,0],[1710013040000,0],[1710013041000,0],[1710013042000,0],[1710013043000,0],[1710013044000,0],[1710013045000,0],[1710013046000,0],[1710013047000,0],[1710013048000,0],[1710013049000,0],[1710013050000,0],[1710013051000,0],[1710013052000,0],[1710013053000,0],[1710013054000,0],[1710013055000,0],[1710013056000,0],[1710013057000,0],[1710013058000,0],[1710013059000,0],[1710013060000,0],[1710013061000,0],[1710013062000,0],[1710013063000,0],[1710013064000,0],[1710013065000,0],[1710013066000,0],[1710013067000,0],[1710013068000,0],[1710013069000,0],[1710013070000,0],[1710013071000,0],[1710013072000,0],[1710013073000,0],[1710013074000,0],[1710013075000,0],[1710013076000,0],[1710013077000,0],[1710013078000,0],[1710013079000,0],[1710013080000,0],[1710013081000,0],[1710013082000,0],[1710013083000,0],[1710013084000,0],[1710013085000,0],[1710013086000,0],[1710013087000,0],[1710013088000,0],[1710013089000,0],[1710013090000,0],[1710013091000,0],[1710013092000,0],[1710013093000,0],[1710013094000,0],[1710013095000,0],[1710013096000,0],[1710013097000,0],[1710013098000,0],[1710013099000,0],[1710013100000,0],[1710013101000,0],[1710013102000,0],[1710013103000,0],[1710013104000,0],[1710013105000,0],[1710013106000,0],[1710013107000,0],[1710013108000,0],[1710013109000,0],[1710013110000,0],[1710013111000,0],[1710013112000,0],[1710013113000,0],[1710013114000,0],[1710013115000,0],[1710013116000,0],[1710013117000,0],[1710013118000,0],[1710013119000,0],[1710013120000,0],[1710013121000,0],[1710013122000,0],[1710013123000,0],[1710013124000,0],[1710013125000,0],[1710013126000,0],[1710013127000,0],[1710013128000,0],[1710013129000,0],[1710013130000,0],[1710013131000,0],[1710013132000,0],[1710013133000,0],[1710013134000,0],[1710013135000,0],[1710013136000,0],[1710013137000,0],[1710013138000,0],[1710013139000,0],[1710013140000,0],[1710013141000,0],[1710013142000,0],[1710013143000,0],[1710013144000,0],[1710013145000,0],[1710013146000,0],[1710013147000,0],[1710013148000,0],[1710013149000,0],[1710013150000,0],[1710013151000,0],[1710013152000,0],[1710013153000,0],[1710013154000,0],[1710013155000,0],[1710013156000,0],[1710013157000,0],[1710013158000,0],[1710013159000,0],[1710013160000,0],[1710013161000,0],[1710013162000,0],[1710013163000,0],[1710013164000,0],[1710013165000,0],[1710013166000,0],[1710013167000,0],[1710013168000,0],[1710013169000,0],[1710013170000,0],[1710013171000,0],[1710013172000,0],[1710013173000,0],[1710013174000,0],[1710013175000,0],[1710013176000,0],[1710013177000,0],[1710013178000,0],[1710013179000,0],[1710013180000,0],[1710013181000,0],[1710013182000,0],[1710013183000,0],[1710013184000,0],[1710013185000,0],[1710013186000,0],[1710013187000,0],[1710013188000,0],[1710013189000,0],[1710013190000,0],[1710013191000,0],[1710013192000,0],[1710013193000,0],[1710013194000,0],[1710013195000,0],[1710013196000,0],[1710013197000,0],[1710013198000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#9D00FF',
name: 'validação concorrência transações - c',
data: [
[1710012951000,0],[1710012952000,25],[1710012953000,25],[1710012954000,0],[1710012955000,0],[1710012956000,0],[1710012957000,0],[1710012958000,0],[1710012959000,0],[1710012960000,0],[1710012961000,0],[1710012962000,0],[1710012963000,0],[1710012964000,0],[1710012965000,0],[1710012966000,0],[1710012967000,0],[1710012968000,0],[1710012969000,0],[1710012970000,0],[1710012971000,0],[1710012972000,0],[1710012973000,0],[1710012974000,0],[1710012975000,0],[1710012976000,0],[1710012977000,0],[1710012978000,0],[1710012979000,0],[1710012980000,0],[1710012981000,0],[1710012982000,0],[1710012983000,0],[1710012984000,0],[1710012985000,0],[1710012986000,0],[1710012987000,0],[1710012988000,0],[1710012989000,0],[1710012990000,0],[1710012991000,0],[1710012992000,0],[1710012993000,0],[1710012994000,0],[1710012995000,0],[1710012996000,0],[1710012997000,0],[1710012998000,0],[1710012999000,0],[1710013000000,0],[1710013001000,0],[1710013002000,0],[1710013003000,0],[1710013004000,0],[1710013005000,0],[1710013006000,0],[1710013007000,0],[1710013008000,0],[1710013009000,0],[1710013010000,0],[1710013011000,0],[1710013012000,0],[1710013013000,0],[1710013014000,0],[1710013015000,0],[1710013016000,0],[1710013017000,0],[1710013018000,0],[1710013019000,0],[1710013020000,0],[1710013021000,0],[1710013022000,0],[1710013023000,0],[1710013024000,0],[1710013025000,0],[1710013026000,0],[1710013027000,0],[1710013028000,0],[1710013029000,0],[1710013030000,0],[1710013031000,0],[1710013032000,0],[1710013033000,0],[1710013034000,0],[1710013035000,0],[1710013036000,0],[1710013037000,0],[1710013038000,0],[1710013039000,0],[1710013040000,0],[1710013041000,0],[1710013042000,0],[1710013043000,0],[1710013044000,0],[1710013045000,0],[1710013046000,0],[1710013047000,0],[1710013048000,0],[1710013049000,0],[1710013050000,0],[1710013051000,0],[1710013052000,0],[1710013053000,0],[1710013054000,0],[1710013055000,0],[1710013056000,0],[1710013057000,0],[1710013058000,0],[1710013059000,0],[1710013060000,0],[1710013061000,0],[1710013062000,0],[1710013063000,0],[1710013064000,0],[1710013065000,0],[1710013066000,0],[1710013067000,0],[1710013068000,0],[1710013069000,0],[1710013070000,0],[1710013071000,0],[1710013072000,0],[1710013073000,0],[1710013074000,0],[1710013075000,0],[1710013076000,0],[1710013077000,0],[1710013078000,0],[1710013079000,0],[1710013080000,0],[1710013081000,0],[1710013082000,0],[1710013083000,0],[1710013084000,0],[1710013085000,0],[1710013086000,0],[1710013087000,0],[1710013088000,0],[1710013089000,0],[1710013090000,0],[1710013091000,0],[1710013092000,0],[1710013093000,0],[1710013094000,0],[1710013095000,0],[1710013096000,0],[1710013097000,0],[1710013098000,0],[1710013099000,0],[1710013100000,0],[1710013101000,0],[1710013102000,0],[1710013103000,0],[1710013104000,0],[1710013105000,0],[1710013106000,0],[1710013107000,0],[1710013108000,0],[1710013109000,0],[1710013110000,0],[1710013111000,0],[1710013112000,0],[1710013113000,0],[1710013114000,0],[1710013115000,0],[1710013116000,0],[1710013117000,0],[1710013118000,0],[1710013119000,0],[1710013120000,0],[1710013121000,0],[1710013122000,0],[1710013123000,0],[1710013124000,0],[1710013125000,0],[1710013126000,0],[1710013127000,0],[1710013128000,0],[1710013129000,0],[1710013130000,0],[1710013131000,0],[1710013132000,0],[1710013133000,0],[1710013134000,0],[1710013135000,0],[1710013136000,0],[1710013137000,0],[1710013138000,0],[1710013139000,0],[1710013140000,0],[1710013141000,0],[1710013142000,0],[1710013143000,0],[1710013144000,0],[1710013145000,0],[1710013146000,0],[1710013147000,0],[1710013148000,0],[1710013149000,0],[1710013150000,0],[1710013151000,0],[1710013152000,0],[1710013153000,0],[1710013154000,0],[1710013155000,0],[1710013156000,0],[1710013157000,0],[1710013158000,0],[1710013159000,0],[1710013160000,0],[1710013161000,0],[1710013162000,0],[1710013163000,0],[1710013164000,0],[1710013165000,0],[1710013166000,0],[1710013167000,0],[1710013168000,0],[1710013169000,0],[1710013170000,0],[1710013171000,0],[1710013172000,0],[1710013173000,0],[1710013174000,0],[1710013175000,0],[1710013176000,0],[1710013177000,0],[1710013178000,0],[1710013179000,0],[1710013180000,0],[1710013181000,0],[1710013182000,0],[1710013183000,0],[1710013184000,0],[1710013185000,0],[1710013186000,0],[1710013187000,0],[1710013188000,0],[1710013189000,0],[1710013190000,0],[1710013191000,0],[1710013192000,0],[1710013193000,0],[1710013194000,0],[1710013195000,0],[1710013196000,0],[1710013197000,0],[1710013198000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FF00E1',
name: 'validação concorrência saldo - -25',
data: [
[1710012951000,1],[1710012952000,1],[1710012953000,0],[1710012954000,0],[1710012955000,0],[1710012956000,0],[1710012957000,0],[1710012958000,0],[1710012959000,0],[1710012960000,0],[1710012961000,0],[1710012962000,0],[1710012963000,0],[1710012964000,0],[1710012965000,0],[1710012966000,0],[1710012967000,0],[1710012968000,0],[1710012969000,0],[1710012970000,0],[1710012971000,0],[1710012972000,0],[1710012973000,0],[1710012974000,0],[1710012975000,0],[1710012976000,0],[1710012977000,0],[1710012978000,0],[1710012979000,0],[1710012980000,0],[1710012981000,0],[1710012982000,0],[1710012983000,0],[1710012984000,0],[1710012985000,0],[1710012986000,0],[1710012987000,0],[1710012988000,0],[1710012989000,0],[1710012990000,0],[1710012991000,0],[1710012992000,0],[1710012993000,0],[1710012994000,0],[1710012995000,0],[1710012996000,0],[1710012997000,0],[1710012998000,0],[1710012999000,0],[1710013000000,0],[1710013001000,0],[1710013002000,0],[1710013003000,0],[1710013004000,0],[1710013005000,0],[1710013006000,0],[1710013007000,0],[1710013008000,0],[1710013009000,0],[1710013010000,0],[1710013011000,0],[1710013012000,0],[1710013013000,0],[1710013014000,0],[1710013015000,0],[1710013016000,0],[1710013017000,0],[1710013018000,0],[1710013019000,0],[1710013020000,0],[1710013021000,0],[1710013022000,0],[1710013023000,0],[1710013024000,0],[1710013025000,0],[1710013026000,0],[1710013027000,0],[1710013028000,0],[1710013029000,0],[1710013030000,0],[1710013031000,0],[1710013032000,0],[1710013033000,0],[1710013034000,0],[1710013035000,0],[1710013036000,0],[1710013037000,0],[1710013038000,0],[1710013039000,0],[1710013040000,0],[1710013041000,0],[1710013042000,0],[1710013043000,0],[1710013044000,0],[1710013045000,0],[1710013046000,0],[1710013047000,0],[1710013048000,0],[1710013049000,0],[1710013050000,0],[1710013051000,0],[1710013052000,0],[1710013053000,0],[1710013054000,0],[1710013055000,0],[1710013056000,0],[1710013057000,0],[1710013058000,0],[1710013059000,0],[1710013060000,0],[1710013061000,0],[1710013062000,0],[1710013063000,0],[1710013064000,0],[1710013065000,0],[1710013066000,0],[1710013067000,0],[1710013068000,0],[1710013069000,0],[1710013070000,0],[1710013071000,0],[1710013072000,0],[1710013073000,0],[1710013074000,0],[1710013075000,0],[1710013076000,0],[1710013077000,0],[1710013078000,0],[1710013079000,0],[1710013080000,0],[1710013081000,0],[1710013082000,0],[1710013083000,0],[1710013084000,0],[1710013085000,0],[1710013086000,0],[1710013087000,0],[1710013088000,0],[1710013089000,0],[1710013090000,0],[1710013091000,0],[1710013092000,0],[1710013093000,0],[1710013094000,0],[1710013095000,0],[1710013096000,0],[1710013097000,0],[1710013098000,0],[1710013099000,0],[1710013100000,0],[1710013101000,0],[1710013102000,0],[1710013103000,0],[1710013104000,0],[1710013105000,0],[1710013106000,0],[1710013107000,0],[1710013108000,0],[1710013109000,0],[1710013110000,0],[1710013111000,0],[1710013112000,0],[1710013113000,0],[1710013114000,0],[1710013115000,0],[1710013116000,0],[1710013117000,0],[1710013118000,0],[1710013119000,0],[1710013120000,0],[1710013121000,0],[1710013122000,0],[1710013123000,0],[1710013124000,0],[1710013125000,0],[1710013126000,0],[1710013127000,0],[1710013128000,0],[1710013129000,0],[1710013130000,0],[1710013131000,0],[1710013132000,0],[1710013133000,0],[1710013134000,0],[1710013135000,0],[1710013136000,0],[1710013137000,0],[1710013138000,0],[1710013139000,0],[1710013140000,0],[1710013141000,0],[1710013142000,0],[1710013143000,0],[1710013144000,0],[1710013145000,0],[1710013146000,0],[1710013147000,0],[1710013148000,0],[1710013149000,0],[1710013150000,0],[1710013151000,0],[1710013152000,0],[1710013153000,0],[1710013154000,0],[1710013155000,0],[1710013156000,0],[1710013157000,0],[1710013158000,0],[1710013159000,0],[1710013160000,0],[1710013161000,0],[1710013162000,0],[1710013163000,0],[1710013164000,0],[1710013165000,0],[1710013166000,0],[1710013167000,0],[1710013168000,0],[1710013169000,0],[1710013170000,0],[1710013171000,0],[1710013172000,0],[1710013173000,0],[1710013174000,0],[1710013175000,0],[1710013176000,0],[1710013177000,0],[1710013178000,0],[1710013179000,0],[1710013180000,0],[1710013181000,0],[1710013182000,0],[1710013183000,0],[1710013184000,0],[1710013185000,0],[1710013186000,0],[1710013187000,0],[1710013188000,0],[1710013189000,0],[1710013190000,0],[1710013191000,0],[1710013192000,0],[1710013193000,0],[1710013194000,0],[1710013195000,0],[1710013196000,0],[1710013197000,0],[1710013198000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#AECAEB',
name: 'validação concorrência transações - d',
data: [
[1710012951000,25],[1710012952000,0],[1710012953000,0],[1710012954000,0],[1710012955000,0],[1710012956000,0],[1710012957000,0],[1710012958000,0],[1710012959000,0],[1710012960000,0],[1710012961000,0],[1710012962000,0],[1710012963000,0],[1710012964000,0],[1710012965000,0],[1710012966000,0],[1710012967000,0],[1710012968000,0],[1710012969000,0],[1710012970000,0],[1710012971000,0],[1710012972000,0],[1710012973000,0],[1710012974000,0],[1710012975000,0],[1710012976000,0],[1710012977000,0],[1710012978000,0],[1710012979000,0],[1710012980000,0],[1710012981000,0],[1710012982000,0],[1710012983000,0],[1710012984000,0],[1710012985000,0],[1710012986000,0],[1710012987000,0],[1710012988000,0],[1710012989000,0],[1710012990000,0],[1710012991000,0],[1710012992000,0],[1710012993000,0],[1710012994000,0],[1710012995000,0],[1710012996000,0],[1710012997000,0],[1710012998000,0],[1710012999000,0],[1710013000000,0],[1710013001000,0],[1710013002000,0],[1710013003000,0],[1710013004000,0],[1710013005000,0],[1710013006000,0],[1710013007000,0],[1710013008000,0],[1710013009000,0],[1710013010000,0],[1710013011000,0],[1710013012000,0],[1710013013000,0],[1710013014000,0],[1710013015000,0],[1710013016000,0],[1710013017000,0],[1710013018000,0],[1710013019000,0],[1710013020000,0],[1710013021000,0],[1710013022000,0],[1710013023000,0],[1710013024000,0],[1710013025000,0],[1710013026000,0],[1710013027000,0],[1710013028000,0],[1710013029000,0],[1710013030000,0],[1710013031000,0],[1710013032000,0],[1710013033000,0],[1710013034000,0],[1710013035000,0],[1710013036000,0],[1710013037000,0],[1710013038000,0],[1710013039000,0],[1710013040000,0],[1710013041000,0],[1710013042000,0],[1710013043000,0],[1710013044000,0],[1710013045000,0],[1710013046000,0],[1710013047000,0],[1710013048000,0],[1710013049000,0],[1710013050000,0],[1710013051000,0],[1710013052000,0],[1710013053000,0],[1710013054000,0],[1710013055000,0],[1710013056000,0],[1710013057000,0],[1710013058000,0],[1710013059000,0],[1710013060000,0],[1710013061000,0],[1710013062000,0],[1710013063000,0],[1710013064000,0],[1710013065000,0],[1710013066000,0],[1710013067000,0],[1710013068000,0],[1710013069000,0],[1710013070000,0],[1710013071000,0],[1710013072000,0],[1710013073000,0],[1710013074000,0],[1710013075000,0],[1710013076000,0],[1710013077000,0],[1710013078000,0],[1710013079000,0],[1710013080000,0],[1710013081000,0],[1710013082000,0],[1710013083000,0],[1710013084000,0],[1710013085000,0],[1710013086000,0],[1710013087000,0],[1710013088000,0],[1710013089000,0],[1710013090000,0],[1710013091000,0],[1710013092000,0],[1710013093000,0],[1710013094000,0],[1710013095000,0],[1710013096000,0],[1710013097000,0],[1710013098000,0],[1710013099000,0],[1710013100000,0],[1710013101000,0],[1710013102000,0],[1710013103000,0],[1710013104000,0],[1710013105000,0],[1710013106000,0],[1710013107000,0],[1710013108000,0],[1710013109000,0],[1710013110000,0],[1710013111000,0],[1710013112000,0],[1710013113000,0],[1710013114000,0],[1710013115000,0],[1710013116000,0],[1710013117000,0],[1710013118000,0],[1710013119000,0],[1710013120000,0],[1710013121000,0],[1710013122000,0],[1710013123000,0],[1710013124000,0],[1710013125000,0],[1710013126000,0],[1710013127000,0],[1710013128000,0],[1710013129000,0],[1710013130000,0],[1710013131000,0],[1710013132000,0],[1710013133000,0],[1710013134000,0],[1710013135000,0],[1710013136000,0],[1710013137000,0],[1710013138000,0],[1710013139000,0],[1710013140000,0],[1710013141000,0],[1710013142000,0],[1710013143000,0],[1710013144000,0],[1710013145000,0],[1710013146000,0],[1710013147000,0],[1710013148000,0],[1710013149000,0],[1710013150000,0],[1710013151000,0],[1710013152000,0],[1710013153000,0],[1710013154000,0],[1710013155000,0],[1710013156000,0],[1710013157000,0],[1710013158000,0],[1710013159000,0],[1710013160000,0],[1710013161000,0],[1710013162000,0],[1710013163000,0],[1710013164000,0],[1710013165000,0],[1710013166000,0],[1710013167000,0],[1710013168000,0],[1710013169000,0],[1710013170000,0],[1710013171000,0],[1710013172000,0],[1710013173000,0],[1710013174000,0],[1710013175000,0],[1710013176000,0],[1710013177000,0],[1710013178000,0],[1710013179000,0],[1710013180000,0],[1710013181000,0],[1710013182000,0],[1710013183000,0],[1710013184000,0],[1710013185000,0],[1710013186000,0],[1710013187000,0],[1710013188000,0],[1710013189000,0],[1710013190000,0],[1710013191000,0],[1710013192000,0],[1710013193000,0],[1710013194000,0],[1710013195000,0],[1710013196000,0],[1710013197000,0],[1710013198000,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: ['22', '66', '110', '154', '198', '242', '286', '330', '374', '418', '461', '505', '549', '593', '637', '681', '725', '769', '813', '857', '901', '945', '989', '1033', '1077', '1121', '1165', '1209', '1253', '1297', '1340', '1384', '1428', '1472', '1516', '1560', '1604', '1648', '1692', '1736', '1780', '1824', '1868', '1912', '1956', '2000', '2044', '2088', '2132', '2176', '2219', '2263', '2307', '2351', '2395', '2439', '2483', '2527', '2571', '2615', '2659', '2703', '2747', '2791', '2835', '2879', '2923', '2967', '3011', '3055', '3098', '3142', '3186', '3230', '3274', '3318', '3362', '3406', '3450', '3494', '3538', '3582', '3626', '3670', '3714', '3758', '3802', '3846', '3890', '3934', '3977', '4021', '4065', '4109', '4153', '4197', '4241', '4285', '4329', '4373'],
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: [
19.29,0.86,0.62,0.53,0.61,0.59,0.52,0.56,0.67,0.63,0.59,0.36,0.15,0.07,0.04,0.09,0.14,0.32,0.49,0.73,0.78,0.68,0.94,0.79,1.01,0.68,0.73,0.7,0.84,0.93,0.67,0.98,0.65,1.01,0.74,1.0,1.13,1.28,1.6,1.18,1.63,1.04,1.43,1.29,1.39,1.28,0.93,1.22,0.73,1.06,0.52,0.52,0.47,0.46,0.7,0.61,0.92,0.43,0.57,0.43,0.47,0.39,0.27,0.44,0.26,0.48,0.32,0.57,0.46,0.46,0.51,0.36,0.48,0.32,0.53,0.35,0.47,0.4,0.43,0.49,0.31,0.4,0.2,0.37,0.38,0.47,0.43,0.33,0.36,0.13,0.14,0.05,0.06,0.06,0.07,0.08,0.04,0.02,0.0,0.0
],
tooltip: { yDecimals: 0, ySuffix: 'ms' }
},
{
type: 'column',
color: '#f15b4f',
name: 'KO',
data: [
23.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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([[1710012951,[25,176,183,255,262,263,268,282,288,289]],[1710012952,[2,2,2,2,2,2,2,2,2,2]],[1710012953,[11,194,208,297,298,302,302,303,303,304]],[1710012954,[3,3,3,3,3,3,3,3,3,3]],[1710012955,[0,1,3,6,6,7,9,39,74,74]],[1710012956,[2,3,5,5,5,5,5,5,5,6]],[1710012957,[4,4,5,82,108,108,109,110,110,111]],[1710012958,[3,4,5,8,41,75,92,92,92,92]],[1710012959,[2,3,4,4,5,5,5,5,5,5]],[1710012960,[3,3,4,4,4,4,5,6,7,8]],[1710012961,[2,3,3,4,4,4,4,4,4,4]],[1710012962,[2,3,4,4,5,5,5,5,6,7]],[1710012963,[2,3,4,4,4,4,4,4,47,61]],[1710012964,[1,3,3,4,5,5,5,6,7,8]],[1710012965,[1,3,3,3,3,4,5,5,5,5]],[1710012966,[2,3,4,4,4,4,4,5,5,6]],[1710012967,[1,3,3,4,4,4,5,5,8,9]],[1710012968,[1,3,3,4,4,4,4,5,7,8]],[1710012969,[2,3,3,4,5,11,13,26,47,59]],[1710012970,[1,3,3,4,4,4,4,5,6,7]],[1710012971,[1,3,3,3,3,4,4,4,4,5]],[1710012972,[1,3,3,3,3,3,3,4,7,11]],[1710012973,[1,2,2,3,3,3,3,4,5,6]],[1710012974,[1,2,3,4,9,24,39,54,75,85]],[1710012975,[1,3,3,3,3,4,4,4,5,6]],[1710012976,[1,2,3,3,3,3,3,3,4,4]],[1710012977,[0,2,3,3,3,3,3,4,5,5]],[1710012978,[1,2,3,3,3,3,4,5,16,17]],[1710012979,[1,3,3,26,43,67,86,123,160,177]],[1710012980,[1,2,3,3,4,4,4,5,6,6]],[1710012981,[1,2,3,3,3,4,4,4,4,6]],[1710012982,[1,2,3,4,4,4,5,45,82,83]],[1710012983,[1,2,3,3,3,3,4,4,5,5]],[1710012984,[1,2,2,3,3,3,3,3,6,8]],[1710012985,[1,2,3,26,61,91,123,147,178,202]],[1710012986,[1,2,2,3,3,3,3,4,6,7]],[1710012987,[1,2,2,3,3,3,3,4,4,6]],[1710012988,[1,2,2,4,4,27,56,107,147,150]],[1710012989,[1,2,3,3,3,4,4,4,6,9]],[1710012990,[1,2,3,4,5,10,26,57,93,96]],[1710012991,[1,2,3,3,3,3,4,4,5,6]],[1710012992,[1,2,3,3,4,4,5,5,5,6]],[1710012993,[1,2,3,3,3,3,4,4,5,5]],[1710012994,[1,2,2,3,3,3,4,8,10,13]],[1710012995,[1,2,3,4,11,26,45,77,95,137]],[1710012996,[1,2,3,4,8,44,89,136,177,184]],[1710012997,[1,2,3,3,3,3,4,4,9,11]],[1710012998,[1,2,2,3,3,3,3,4,5,6]],[1710012999,[1,2,2,3,3,3,3,4,6,7]],[1710013000,[1,2,3,3,3,3,4,4,4,5]],[1710013001,[0,2,3,70,85,102,131,151,192,193]],[1710013002,[1,2,2,3,3,3,3,4,8,9]],[1710013003,[1,2,2,3,3,3,3,4,6,8]],[1710013004,[1,2,2,3,3,3,3,4,4,8]],[1710013005,[1,2,3,3,3,3,4,4,8,15]],[1710013006,[1,2,3,16,35,53,64,96,153,184]],[1710013007,[1,2,3,4,7,42,81,121,171,196]],[1710013008,[0,2,2,3,3,3,3,4,6,10]],[1710013009,[0,2,2,3,3,3,4,5,9,10]],[1710013010,[1,2,2,3,3,3,4,4,9,11]],[1710013011,[1,2,3,3,3,3,4,4,6,8]],[1710013012,[1,2,17,111,131,156,186,235,279,341]],[1710013013,[0,2,3,4,4,4,5,5,9,10]],[1710013014,[0,2,3,3,4,4,4,5,8,12]],[1710013015,[0,2,2,3,3,3,3,4,12,18]],[1710013016,[1,2,2,3,3,3,3,4,6,8]],[1710013017,[1,2,3,32,96,161,210,244,285,294]],[1710013018,[0,2,3,30,66,88,115,151,180,209]],[1710013019,[1,2,2,3,3,3,3,4,8,27]],[1710013020,[1,2,3,3,3,3,3,4,5,9]],[1710013021,[1,2,3,3,3,3,4,4,8,10]],[1710013022,[0,2,2,3,3,3,3,4,5,7]],[1710013023,[1,5,62,152,173,188,205,233,259,266]],[1710013024,[0,2,2,3,3,3,3,5,7,10]],[1710013025,[0,2,2,3,3,4,4,5,5,7]],[1710013026,[1,1,2,3,3,3,4,4,6,9]],[1710013027,[1,2,3,3,3,3,3,4,4,5]],[1710013028,[0,2,3,29,57,154,191,227,290,301]],[1710013029,[0,2,12,103,124,144,170,194,256,276]],[1710013030,[0,2,2,3,3,3,3,5,7,11]],[1710013031,[0,2,2,3,3,3,3,4,5,7]],[1710013032,[0,2,2,3,3,3,3,4,5,8]],[1710013033,[1,2,3,3,3,4,7,16,36,46]],[1710013034,[1,323,408,475,494,511,534,560,595,610]],[1710013035,[1,67,175,258,274,290,307,337,371,378]],[1710013036,[0,2,2,3,3,3,3,5,17,23]],[1710013037,[0,2,2,3,3,3,4,6,10,13]],[1710013038,[0,2,2,3,3,3,4,4,7,8]],[1710013039,[0,2,2,3,4,14,76,148,280,322]],[1710013040,[0,55,132,202,216,229,243,266,307,371]],[1710013041,[0,2,2,3,3,3,3,5,9,18]],[1710013042,[1,1,2,3,3,3,3,3,4,8]],[1710013043,[1,2,2,3,3,3,4,4,13,22]],[1710013044,[0,2,2,3,3,3,3,4,7,16]],[1710013045,[0,2,203,264,270,283,294,313,339,381]],[1710013046,[0,3,40,129,143,158,173,198,236,263]],[1710013047,[0,2,2,3,3,3,3,3,7,14]],[1710013048,[1,2,2,3,3,3,4,4,5,8]],[1710013049,[1,2,2,3,3,3,4,6,12,14]],[1710013050,[1,2,2,3,3,4,5,28,102,112]],[1710013051,[45,228,303,429,440,452,466,485,510,520]],[1710013052,[18,127,346,410,420,429,442,455,486,499]],[1710013053,[0,46,145,258,279,302,336,371,411,429]],[1710013054,[0,57,135,206,216,228,242,259,282,312]],[1710013055,[1,11,41,80,89,104,119,139,185,245]],[1710013056,[1,2,12,310,336,388,443,475,514,536]],[1710013057,[192,283,358,432,447,457,470,492,542,579]],[1710013058,[229,329,377,425,436,448,464,491,521,566]],[1710013059,[280,354,408,471,482,491,508,528,555,628]],[1710013060,[257,356,433,498,507,516,529,546,568,588]],[1710013061,[297,385,442,542,588,682,757,816,875,936]],[1710013062,[734,805,836,872,882,892,899,918,942,965]],[1710013063,[694,794,841,879,887,896,911,927,959,992]],[1710013064,[788,858,884,916,921,928,940,956,989,1006]],[1710013065,[855,954,1001,1039,1047,1056,1071,1079,1116,1127]],[1710013066,[971,1076,1140,1264,1404,1497,1584,1625,1664,1704]],[1710013067,[1540,1653,1689,1743,1762,1786,1822,1859,1925,1951]],[1710013068,[1599,1717,1810,1882,1892,1906,1924,1951,1972,2005]],[1710013069,[1567,1668,1831,1945,1965,1987,2010,2064,2109,2125]],[1710013070,[1738,1848,1921,1989,2000,2018,2037,2066,2103,2149]],[1710013071,[1663,1861,1923,1989,1997,2022,2044,2085,2362,2402]],[1710013072,[1885,2232,2317,2439,2467,2480,2497,2515,2547,2560]],[1710013073,[2090,2194,2342,2449,2461,2476,2502,2550,2587,2642]],[1710013074,[1785,1886,2061,2166,2182,2198,2215,2288,2410,2473]],[1710013075,[1755,1876,2027,2152,2160,2175,2187,2206,2237,2257]],[1710013076,[1734,1873,2072,2168,2179,2191,2200,2236,2257,2275]],[1710013077,[1654,1797,2090,2418,2464,2482,2495,2532,2561,2588]],[1710013078,[1855,1988,2170,2472,2478,2488,2501,2521,2568,2589]],[1710013079,[1709,2105,2194,2445,2458,2466,2483,2520,2609,2617]],[1710013080,[1566,1696,1981,2075,2083,2094,2108,2141,2176,2197]],[1710013081,[1453,1605,1849,2032,2052,2066,2082,2092,2162,2233]],[1710013082,[1392,1560,1702,2007,2037,2065,2091,2115,2187,2384]],[1710013083,[1398,1677,2175,2434,2465,2486,2505,2529,2568,2595]],[1710013084,[1947,2052,2177,2485,2496,2511,2534,2557,2587,2611]],[1710013085,[1580,1701,1968,2073,2095,2173,2276,2386,2485,2551]],[1710013086,[1289,1463,1849,1927,1938,1949,1961,1980,2003,2058]],[1710013087,[1215,1330,1585,1941,1954,1965,1978,1997,2038,2077]],[1710013088,[1307,1419,1562,1991,2009,2021,2051,2101,2296,2369]],[1710013089,[1270,1502,2034,2323,2344,2357,2377,2397,2493,2553]],[1710013090,[1696,1840,2391,2497,2524,2554,2571,2595,2648,2676]],[1710013091,[1603,1794,1994,2404,2421,2471,2507,2665,2792,2984]],[1710013092,[1748,1936,2684,2986,3001,3048,3062,3092,3120,3193]],[1710013093,[2104,2292,2490,2798,2845,2863,2885,3065,3101,3153]],[1710013094,[2120,2324,2631,3091,3105,3128,3143,3173,3189,3205]],[1710013095,[1801,1914,2189,2371,2394,2426,2472,2491,2579,2589]],[1710013096,[1588,1876,2091,2412,2449,2477,2490,2526,2567,2595]],[1710013097,[1427,1653,1919,2149,2164,2176,2192,2234,2266,2289]],[1710013098,[1590,1755,1865,2065,2095,2115,2143,2173,2206,2243]],[1710013099,[1301,1413,1640,1765,1779,1795,1829,1874,1894,1966]],[1710013100,[1433,1571,1850,2137,2170,2190,2211,2228,2269,2317]],[1710013101,[1860,1952,2062,2149,2159,2170,2186,2204,2234,2259]],[1710013102,[1483,1705,1870,1980,1997,2063,2086,2143,2179,2193]],[1710013103,[1512,1594,1695,1785,1793,1803,1813,1835,1870,1880]],[1710013104,[1567,1656,1700,1787,1801,1831,1846,1873,1916,1974]],[1710013105,[1505,1678,1724,1766,1773,1786,1801,1823,1872,1948]],[1710013106,[1479,1951,2034,2081,2093,2110,2132,2153,2202,2223]],[1710013107,[1985,2079,2138,2194,2199,2222,2267,2289,2338,2360]],[1710013108,[1692,1842,1882,1950,1970,1981,1991,2008,2047,2087]],[1710013109,[1654,1774,1815,1867,1877,1895,1912,1929,1973,1983]],[1710013110,[1505,1645,1720,1787,1797,1811,1825,1852,1890,1950]],[1710013111,[1214,1351,1568,1764,1801,1899,1958,1990,2058,2109]],[1710013112,[1273,1717,1884,2060,2077,2096,2122,2154,2208,2263]],[1710013113,[1501,1722,2045,2287,2302,2322,2339,2370,2433,2454]],[1710013114,[1508,1674,2123,2259,2274,2285,2301,2319,2371,2407]],[1710013115,[1506,1597,1939,2260,2278,2293,2313,2356,2427,2461]],[1710013116,[1510,1713,2026,2468,2587,2783,2840,2880,2914,2932]],[1710013117,[1799,2221,2366,2952,2959,2968,2978,2992,3042,3078]],[1710013118,[1900,2031,2479,2934,2959,2975,2983,3026,3068,3081]],[1710013119,[1581,1752,2423,2795,2816,2865,2890,2961,3020,3083]],[1710013120,[1603,1783,2951,3094,3110,3123,3144,3158,3181,3185]],[1710013121,[1899,1994,2523,3070,3100,3226,3279,3374,3521,3531]],[1710013122,[1737,1877,2539,3329,3360,3380,3396,3438,3503,3544]],[1710013123,[1857,1968,2163,3102,3123,3149,3165,3189,3253,3454]],[1710013124,[1940,2097,2989,3184,3197,3221,3248,3276,3303,3321]],[1710013125,[1894,2057,2423,2795,2809,2858,2892,2973,3001,3079]],[1710013126,[1606,1953,2336,2586,2595,2624,2655,2676,2718,2798]],[1710013127,[1470,1591,1976,2394,2418,2456,2480,2503,2570,2584]],[1710013128,[1294,1439,2027,2733,2755,2772,2790,2809,2839,2847]],[1710013129,[1605,1712,1948,2634,2652,2687,2747,2774,2804,2867]],[1710013130,[1194,1627,2116,2659,2670,2678,2695,2726,2800,2891]],[1710013131,[1181,1286,2323,2467,2481,2493,2511,2537,2562,2577]],[1710013132,[1453,1538,1999,2456,2463,2475,2489,2497,2549,2557]],[1710013133,[1095,1215,1843,2434,2514,2581,2621,2637,2686,2740]],[1710013134,[1111,1292,1708,2722,2803,2834,2856,2896,2985,3007]],[1710013135,[1501,1705,2390,2968,2975,2986,2996,3022,3072,3143]],[1710013136,[1403,1507,2516,2652,2671,2693,2705,2799,2889,2984]],[1710013137,[1206,1366,1562,2539,2567,2595,2663,2690,2746,2792]],[1710013138,[1162,1265,2084,2532,2550,2564,2576,2599,2637,2650]],[1710013139,[1107,1286,1902,2791,2808,2848,2870,2900,2966,3003]],[1710013140,[1059,1228,2208,2855,2873,2886,2907,2954,3001,3054]],[1710013141,[1352,1484,2298,3018,3033,3044,3060,3076,3096,3140]],[1710013142,[1285,1380,1586,2681,2695,2709,2762,2797,2957,3081]],[1710013143,[1063,1227,2509,2642,2669,2680,2694,2750,2788,2874]],[1710013144,[892,993,1126,2609,2636,2681,2868,3060,3107,3155]],[1710013145,[853,1016,2121,3248,3280,3312,3337,3383,3442,3456]],[1710013146,[965,1367,2693,3388,3406,3444,3527,3567,3599,3616]],[1710013147,[1213,1594,2306,3233,3257,3270,3287,3301,3396,3432]],[1710013148,[1104,1257,1396,2849,2897,2970,2992,3038,3070,3078]],[1710013149,[872,998,1893,2693,2700,2714,2742,2775,2799,2832]],[1710013150,[898,1044,1917,3253,3278,3299,3329,3381,3486,3502]],[1710013151,[906,1098,2572,4155,4175,4193,4213,4250,4279,4325]],[1710013152,[1467,1584,4002,4156,4174,4186,4224,4295,4337,4395]],[1710013153,[1708,2030,2990,3783,3804,3887,4025,4126,4198,4207]],[1710013154,[1493,1885,2074,3673,3686,3692,3703,3745,3769,3776]],[1710013155,[1005,1209,2247,3392,3439,3497,3540,3590,3615,3640]],[1710013156,[1073,1187,3511,3744,3807,3853,3882,3898,3974,4021]],[1710013157,[915,1199,1779,3761,3793,3825,3855,3877,3913,3958]],[1710013158,[1496,1697,2677,3721,3739,3761,3776,3784,3815,3870]],[1710013159,[1165,1318,3112,3257,3278,3294,3325,3392,3482,3485]],[1710013160,[896,1065,2019,2956,2991,3051,3097,3178,3241,3283]],[1710013161,[855,976,1217,3334,3366,3406,3450,3534,3627,3657]],[1710013162,[1059,1205,3323,3498,3517,3533,3550,3571,3591,3598]],[1710013163,[990,1443,2166,3343,3354,3371,3383,3424,3476,3501]],[1710013164,[1016,1385,1589,3172,3189,3196,3231,3281,3300,3303]],[1710013165,[905,1063,2049,3091,3108,3130,3154,3179,3229,3276]],[1710013166,[621,775,2015,3172,3193,3218,3241,3270,3318,3386]],[1710013167,[917,1290,2295,3398,3473,3586,3640,3703,3787,3851]],[1710013168,[1194,1431,3508,3658,3669,3684,3693,3721,3795,3825]],[1710013169,[1385,1495,1830,3555,3580,3593,3630,3659,3684,3755]],[1710013170,[1506,1690,2565,3447,3489,3505,3561,3585,3751,3774]],[1710013171,[1302,1442,2423,3288,3298,3309,3361,3383,3466,3496]],[1710013172,[1089,1247,3169,3732,3752,3770,3780,3797,3830,3867]],[1710013173,[1029,1219,2486,3697,3712,3754,3780,3811,3870,3888]],[1710013174,[1240,1731,1983,3793,3800,3813,3840,3861,3950,4006]],[1710013175,[1191,1590,2682,3795,3840,3863,3880,3905,3975,3998]],[1710013176,[918,1057,3324,3476,3490,3502,3512,3536,3575,3596]],[1710013177,[902,1109,1357,3389,3408,3447,3478,3499,3580,3634]],[1710013178,[1076,1199,3270,3648,3668,3681,3694,3733,3784,3798]],[1710013179,[752,944,2275,3788,3826,3853,3879,3911,3975,3992]],[1710013180,[679,951,2552,3884,3895,3912,3937,3966,3991,4051]],[1710013181,[1199,1358,2503,3841,3870,3886,3909,3948,3979,3994]],[1710013182,[1087,1306,1629,3426,3450,3473,3483,3497,3605,3635]],[1710013183,[801,901,2956,3099,3130,3179,3203,3239,3328,3393]],[1710013184,[725,850,2127,3362,3390,3434,3454,3485,3510,3521]],[1710013185,[766,1002,1591,3704,3734,3771,3833,3887,3960,4035]],[1710013186,[1163,1361,2638,3828,3853,3866,3882,3899,3933,3943]],[1710013187,[905,1070,2373,3493,3519,3589,3698,3781,3823,3879]],[1710013188,[977,1098,3395,3519,3537,3558,3580,3659,3745,3801]],[1710013189,[888,996,2434,3915,3972,3989,4015,4055,4089,4108]],[1710013190,[775,962,2410,3887,3926,3956,3977,3999,4055,4095]],[1710013191,[855,1044,2271,3758,3778,3797,3817,3853,3879,3890]],[1710013192,[1094,1406,2268,3417,3434,3452,3475,3510,3562,3575]],[1710013193,[985,1056,1285,3170,3222,3257,3286,3329,3368,3394]],[1710013194,[613,755,2023,3209,3249,3263,3285,3311,3379,3440]],[1710013195,[466,777,2829,3067,3088,3108,3130,3154,3195,3230]],[1710013196,[1165,1281,1997,2818,2862,2908,2930,2955,2975,2977]],[1710013197,null],[1710013198,null]]);
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([[1710012951,[25,25,0]],[1710012952,[1,1,0]],[1710012953,[25,25,0]],[1710012954,[1,1,0]],[1710012955,[71,71,0]],[1710012956,[3,3,0]],[1710012957,[6,6,0]],[1710012958,[9,9,0]],[1710012959,[11,11,0]],[1710012960,[13,13,0]],[1710012961,[18,18,0]],[1710012962,[19,19,0]],[1710012963,[24,24,0]],[1710012964,[26,26,0]],[1710012965,[27,27,0]],[1710012966,[32,32,0]],[1710012967,[34,34,0]],[1710012968,[37,37,0]],[1710012969,[39,39,0]],[1710012970,[43,43,0]],[1710012971,[44,44,0]],[1710012972,[48,48,0]],[1710012973,[50,50,0]],[1710012974,[54,54,0]],[1710012975,[56,56,0]],[1710012976,[61,61,0]],[1710012977,[61,61,0]],[1710012978,[65,65,0]],[1710012979,[67,67,0]],[1710012980,[70,70,0]],[1710012981,[73,73,0]],[1710012982,[77,77,0]],[1710012983,[80,80,0]],[1710012984,[81,81,0]],[1710012985,[84,84,0]],[1710012986,[87,87,0]],[1710012987,[91,91,0]],[1710012988,[92,92,0]],[1710012989,[96,96,0]],[1710012990,[98,98,0]],[1710012991,[101,101,0]],[1710012992,[105,105,0]],[1710012993,[107,107,0]],[1710012994,[110,110,0]],[1710012995,[112,112,0]],[1710012996,[116,116,0]],[1710012997,[118,118,0]],[1710012998,[121,121,0]],[1710012999,[123,123,0]],[1710013000,[126,126,0]],[1710013001,[129,129,0]],[1710013002,[133,133,0]],[1710013003,[135,135,0]],[1710013004,[138,138,0]],[1710013005,[141,141,0]],[1710013006,[144,144,0]],[1710013007,[146,146,0]],[1710013008,[149,149,0]],[1710013009,[152,152,0]],[1710013010,[154,154,0]],[1710013011,[158,158,0]],[1710013012,[160,160,0]],[1710013013,[164,164,0]],[1710013014,[165,165,0]],[1710013015,[170,170,0]],[1710013016,[171,171,0]],[1710013017,[174,174,0]],[1710013018,[176,176,0]],[1710013019,[181,181,0]],[1710013020,[183,183,0]],[1710013021,[186,186,0]],[1710013022,[188,188,0]],[1710013023,[192,192,0]],[1710013024,[194,194,0]],[1710013025,[196,196,0]],[1710013026,[199,199,0]],[1710013027,[203,203,0]],[1710013028,[205,205,0]],[1710013029,[207,207,0]],[1710013030,[212,212,0]],[1710013031,[213,213,0]],[1710013032,[217,217,0]],[1710013033,[219,219,0]],[1710013034,[222,222,0]],[1710013035,[226,226,0]],[1710013036,[226,226,0]],[1710013037,[231,231,0]],[1710013038,[233,233,0]],[1710013039,[237,237,0]],[1710013040,[238,238,0]],[1710013041,[243,243,0]],[1710013042,[244,244,0]],[1710013043,[248,248,0]],[1710013044,[250,250,0]],[1710013045,[252,252,0]],[1710013046,[256,256,0]],[1710013047,[259,259,0]],[1710013048,[262,262,0]],[1710013049,[264,264,0]],[1710013050,[266,266,0]],[1710013051,[270,270,0]],[1710013052,[273,273,0]],[1710013053,[275,275,0]],[1710013054,[279,279,0]],[1710013055,[281,281,0]],[1710013056,[285,285,0]],[1710013057,[286,286,0]],[1710013058,[290,290,0]],[1710013059,[291,291,0]],[1710013060,[296,296,0]],[1710013061,[297,297,0]],[1710013062,[301,301,0]],[1710013063,[303,303,0]],[1710013064,[306,306,0]],[1710013065,[309,309,0]],[1710013066,[313,313,0]],[1710013067,[314,314,0]],[1710013068,[318,277,41]],[1710013069,[321,265,56]],[1710013070,[322,280,42]],[1710013071,[327,238,89]],[1710013072,[329,268,61]],[1710013073,[331,222,109]],[1710013074,[334,182,152]],[1710013075,[339,251,88]],[1710013076,[340,229,111]],[1710013077,[340,260,80]],[1710013078,[340,231,109]],[1710013079,[340,186,154]],[1710013080,[340,253,87]],[1710013081,[340,256,84]],[1710013082,[340,271,69]],[1710013083,[340,265,75]],[1710013084,[340,277,63]],[1710013085,[340,142,198]],[1710013086,[340,275,65]],[1710013087,[340,292,48]],[1710013088,[340,285,55]],[1710013089,[340,296,44]],[1710013090,[340,259,81]],[1710013091,[340,213,127]],[1710013092,[340,227,113]],[1710013093,[340,213,127]],[1710013094,[340,147,193]],[1710013095,[340,228,112]],[1710013096,[340,164,176]],[1710013097,[340,277,63]],[1710013098,[340,260,80]],[1710013099,[340,234,106]],[1710013100,[340,312,28]],[1710013101,[340,283,57]],[1710013102,[340,170,170]],[1710013103,[340,299,41]],[1710013104,[340,270,70]],[1710013105,[340,282,58]],[1710013106,[340,287,53]],[1710013107,[340,245,95]],[1710013108,[340,208,132]],[1710013109,[340,266,74]],[1710013110,[340,285,55]],[1710013111,[340,257,83]],[1710013112,[340,332,8]],[1710013113,[340,202,138]],[1710013114,[340,301,39]],[1710013115,[340,220,120]],[1710013116,[340,258,82]],[1710013117,[340,257,83]],[1710013118,[340,192,148]],[1710013119,[340,156,184]],[1710013120,[340,255,85]],[1710013121,[340,192,148]],[1710013122,[340,172,168]],[1710013123,[340,221,119]],[1710013124,[340,169,171]],[1710013125,[340,200,140]],[1710013126,[340,184,156]],[1710013127,[340,194,146]],[1710013128,[340,288,52]],[1710013129,[340,227,113]],[1710013130,[340,170,170]],[1710013131,[340,277,63]],[1710013132,[340,270,70]],[1710013133,[340,216,124]],[1710013134,[340,285,55]],[1710013135,[340,246,94]],[1710013136,[340,191,149]],[1710013137,[340,203,137]],[1710013138,[340,257,83]],[1710013139,[340,268,72]],[1710013140,[340,248,92]],[1710013141,[340,246,94]],[1710013142,[340,223,117]],[1710013143,[340,195,145]],[1710013144,[340,267,73]],[1710013145,[340,284,56]],[1710013146,[340,253,87]],[1710013147,[340,156,184]],[1710013148,[340,217,123]],[1710013149,[340,222,118]],[1710013150,[340,266,74]],[1710013151,[340,268,72]],[1710013152,[340,225,115]],[1710013153,[340,162,178]],[1710013154,[340,115,225]],[1710013155,[340,150,190]],[1710013156,[340,225,115]],[1710013157,[340,259,81]],[1710013158,[340,150,190]],[1710013159,[340,177,163]],[1710013160,[340,182,158]],[1710013161,[340,263,77]],[1710013162,[340,231,109]],[1710013163,[339,232,107]],[1710013164,[341,147,194]],[1710013165,[340,228,112]],[1710013166,[340,256,84]],[1710013167,[340,252,88]],[1710013168,[340,189,151]],[1710013169,[340,221,119]],[1710013170,[340,186,154]],[1710013171,[340,158,182]],[1710013172,[340,217,123]],[1710013173,[340,218,122]],[1710013174,[340,221,119]],[1710013175,[340,138,202]],[1710013176,[340,207,133]],[1710013177,[340,217,123]],[1710013178,[340,213,127]],[1710013179,[340,194,146]],[1710013180,[340,256,84]],[1710013181,[340,184,156]],[1710013182,[340,175,165]],[1710013183,[340,181,159]],[1710013184,[340,244,96]],[1710013185,[340,263,77]],[1710013186,[340,204,136]],[1710013187,[340,172,168]],[1710013188,[340,213,127]],[1710013189,[340,192,148]],[1710013190,[340,222,118]],[1710013191,[340,214,126]],[1710013192,[340,156,184]],[1710013193,[340,209,131]],[1710013194,[340,208,132]],[1710013195,[340,319,21]],[1710013196,[164,94,70]],[1710013197,[0,0,0]],[1710013198,[0,0,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'
}, {