-
Notifications
You must be signed in to change notification settings - Fork 923
/
Copy pathindex.html
1195 lines (1125 loc) · 99.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-27 00:36:02 GMT</span>
</span>
<span class="simulation-information-item">
<span class="simulation-information-label">Duration: </span>
<span>4m 6s </span>
</span>
<span class="simulation-tooltip simulation-information-item description" title="Description" data-content="Rinha de Backend - 2024/Q1: Crébito - henriqueccapozzi-django-01">
<span class="simulation-information-label">Description: </span>
<span>Rinha de Backend - 2024/Q1: Crébito - henriqueccapozzi-django-01</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">14657</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: [
[1708994163000,0],[1708994164000,0],[1708994165000,0],[1708994166000,0],[1708994167000,0],[1708994168000,2],[1708994169000,3],[1708994170000,5],[1708994171000,5],[1708994172000,6],[1708994173000,6],[1708994174000,8],[1708994175000,8],[1708994176000,9],[1708994177000,11],[1708994178000,10],[1708994179000,12],[1708994180000,13],[1708994181000,14],[1708994182000,14],[1708994183000,16],[1708994184000,16],[1708994185000,17],[1708994186000,18],[1708994187000,19],[1708994188000,20],[1708994189000,20],[1708994190000,22],[1708994191000,22],[1708994192000,23],[1708994193000,25],[1708994194000,25],[1708994195000,26],[1708994196000,26],[1708994197000,28],[1708994198000,29],[1708994199000,31],[1708994200000,30],[1708994201000,32],[1708994202000,32],[1708994203000,33],[1708994204000,34],[1708994205000,35],[1708994206000,36],[1708994207000,37],[1708994208000,39],[1708994209000,39],[1708994210000,39],[1708994211000,41],[1708994212000,41],[1708994213000,43],[1708994214000,44],[1708994215000,44],[1708994216000,45],[1708994217000,47],[1708994218000,47],[1708994219000,48],[1708994220000,48],[1708994221000,51],[1708994222000,50],[1708994223000,52],[1708994224000,52],[1708994225000,53],[1708994226000,54],[1708994227000,56],[1708994228000,55],[1708994229000,57],[1708994230000,58],[1708994231000,59],[1708994232000,59],[1708994233000,61],[1708994234000,61],[1708994235000,63],[1708994236000,63],[1708994237000,64],[1708994238000,65],[1708994239000,66],[1708994240000,67],[1708994241000,68],[1708994242000,68],[1708994243000,70],[1708994244000,70],[1708994245000,72],[1708994246000,72],[1708994247000,73],[1708994248000,74],[1708994249000,75],[1708994250000,76],[1708994251000,77],[1708994252000,78],[1708994253000,80],[1708994254000,79],[1708994255000,81],[1708994256000,81],[1708994257000,83],[1708994258000,96],[1708994259000,109],[1708994260000,116],[1708994261000,128],[1708994262000,138],[1708994263000,155],[1708994264000,168],[1708994265000,165],[1708994266000,165],[1708994267000,173],[1708994268000,166],[1708994269000,164],[1708994270000,168],[1708994271000,174],[1708994272000,168],[1708994273000,165],[1708994274000,172],[1708994275000,178],[1708994276000,179],[1708994277000,179],[1708994278000,172],[1708994279000,168],[1708994280000,186],[1708994281000,159],[1708994282000,168],[1708994283000,178],[1708994284000,173],[1708994285000,171],[1708994286000,189],[1708994287000,191],[1708994288000,189],[1708994289000,195],[1708994290000,193],[1708994291000,194],[1708994292000,180],[1708994293000,181],[1708994294000,184],[1708994295000,175],[1708994296000,188],[1708994297000,186],[1708994298000,188],[1708994299000,171],[1708994300000,178],[1708994301000,185],[1708994302000,190],[1708994303000,164],[1708994304000,181],[1708994305000,182],[1708994306000,193],[1708994307000,180],[1708994308000,180],[1708994309000,168],[1708994310000,182],[1708994311000,185],[1708994312000,182],[1708994313000,169],[1708994314000,178],[1708994315000,198],[1708994316000,193],[1708994317000,194],[1708994318000,162],[1708994319000,182],[1708994320000,165],[1708994321000,173],[1708994322000,191],[1708994323000,169],[1708994324000,189],[1708994325000,189],[1708994326000,179],[1708994327000,164],[1708994328000,180],[1708994329000,176],[1708994330000,173],[1708994331000,194],[1708994332000,190],[1708994333000,177],[1708994334000,175],[1708994335000,175],[1708994336000,187],[1708994337000,172],[1708994338000,172],[1708994339000,177],[1708994340000,180],[1708994341000,182],[1708994342000,174],[1708994343000,189],[1708994344000,182],[1708994345000,192],[1708994346000,169],[1708994347000,173],[1708994348000,191],[1708994349000,167],[1708994350000,188],[1708994351000,178],[1708994352000,174],[1708994353000,168],[1708994354000,179],[1708994355000,186],[1708994356000,191],[1708994357000,170],[1708994358000,186],[1708994359000,171],[1708994360000,173],[1708994361000,194],[1708994362000,193],[1708994363000,169],[1708994364000,178],[1708994365000,173],[1708994366000,172],[1708994367000,184],[1708994368000,175],[1708994369000,190],[1708994370000,188],[1708994371000,176],[1708994372000,166],[1708994373000,184],[1708994374000,170],[1708994375000,179],[1708994376000,169],[1708994377000,184],[1708994378000,169],[1708994379000,175],[1708994380000,167],[1708994381000,167],[1708994382000,171],[1708994383000,173],[1708994384000,177],[1708994385000,168],[1708994386000,176],[1708994387000,172],[1708994388000,176],[1708994389000,173],[1708994390000,193],[1708994391000,165],[1708994392000,168],[1708994393000,169],[1708994394000,192],[1708994395000,190],[1708994396000,170],[1708994397000,167],[1708994398000,162],[1708994399000,176],[1708994400000,174],[1708994401000,173],[1708994402000,171],[1708994403000,176],[1708994404000,177],[1708994405000,177],[1708994406000,174],[1708994407000,170],[1708994408000,78],[1708994409000,6]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#68b65c',
name: 'débitos',
data: [
[1708994163000,0],[1708994164000,0],[1708994165000,0],[1708994166000,0],[1708994167000,0],[1708994168000,2],[1708994169000,5],[1708994170000,7],[1708994171000,8],[1708994172000,9],[1708994173000,12],[1708994174000,14],[1708994175000,15],[1708994176000,17],[1708994177000,19],[1708994178000,21],[1708994179000,22],[1708994180000,25],[1708994181000,25],[1708994182000,28],[1708994183000,30],[1708994184000,31],[1708994185000,33],[1708994186000,35],[1708994187000,37],[1708994188000,39],[1708994189000,40],[1708994190000,42],[1708994191000,44],[1708994192000,46],[1708994193000,47],[1708994194000,50],[1708994195000,51],[1708994196000,53],[1708994197000,56],[1708994198000,56],[1708994199000,60],[1708994200000,60],[1708994201000,62],[1708994202000,64],[1708994203000,66],[1708994204000,68],[1708994205000,69],[1708994206000,72],[1708994207000,74],[1708994208000,74],[1708994209000,77],[1708994210000,79],[1708994211000,80],[1708994212000,82],[1708994213000,84],[1708994214000,87],[1708994215000,88],[1708994216000,89],[1708994217000,92],[1708994218000,93],[1708994219000,95],[1708994220000,97],[1708994221000,99],[1708994222000,102],[1708994223000,104],[1708994224000,105],[1708994225000,107],[1708994226000,109],[1708994227000,111],[1708994228000,113],[1708994229000,114],[1708994230000,116],[1708994231000,118],[1708994232000,120],[1708994233000,121],[1708994234000,124],[1708994235000,125],[1708994236000,127],[1708994237000,129],[1708994238000,131],[1708994239000,133],[1708994240000,134],[1708994241000,136],[1708994242000,138],[1708994243000,140],[1708994244000,142],[1708994245000,144],[1708994246000,145],[1708994247000,148],[1708994248000,148],[1708994249000,151],[1708994250000,153],[1708994251000,154],[1708994252000,156],[1708994253000,159],[1708994254000,161],[1708994255000,162],[1708994256000,163],[1708994257000,168],[1708994258000,193],[1708994259000,213],[1708994260000,234],[1708994261000,258],[1708994262000,284],[1708994263000,311],[1708994264000,336],[1708994265000,340],[1708994266000,343],[1708994267000,343],[1708994268000,348],[1708994269000,354],[1708994270000,351],[1708994271000,350],[1708994272000,359],[1708994273000,362],[1708994274000,360],[1708994275000,357],[1708994276000,363],[1708994277000,363],[1708994278000,365],[1708994279000,377],[1708994280000,368],[1708994281000,392],[1708994282000,385],[1708994283000,380],[1708994284000,383],[1708994285000,392],[1708994286000,377],[1708994287000,372],[1708994288000,378],[1708994289000,378],[1708994290000,378],[1708994291000,382],[1708994292000,388],[1708994293000,393],[1708994294000,384],[1708994295000,397],[1708994296000,381],[1708994297000,386],[1708994298000,383],[1708994299000,401],[1708994300000,390],[1708994301000,385],[1708994302000,378],[1708994303000,404],[1708994304000,390],[1708994305000,395],[1708994306000,383],[1708994307000,392],[1708994308000,389],[1708994309000,403],[1708994310000,392],[1708994311000,391],[1708994312000,393],[1708994313000,400],[1708994314000,392],[1708994315000,384],[1708994316000,379],[1708994317000,380],[1708994318000,404],[1708994319000,391],[1708994320000,403],[1708994321000,400],[1708994322000,381],[1708994323000,402],[1708994324000,387],[1708994325000,384],[1708994326000,392],[1708994327000,402],[1708994328000,389],[1708994329000,392],[1708994330000,400],[1708994331000,379],[1708994332000,384],[1708994333000,387],[1708994334000,395],[1708994335000,393],[1708994336000,381],[1708994337000,395],[1708994338000,400],[1708994339000,397],[1708994340000,400],[1708994341000,388],[1708994342000,400],[1708994343000,384],[1708994344000,395],[1708994345000,380],[1708994346000,396],[1708994347000,398],[1708994348000,381],[1708994349000,409],[1708994350000,386],[1708994351000,391],[1708994352000,396],[1708994353000,399],[1708994354000,390],[1708994355000,381],[1708994356000,384],[1708994357000,402],[1708994358000,385],[1708994359000,400],[1708994360000,399],[1708994361000,378],[1708994362000,380],[1708994363000,397],[1708994364000,389],[1708994365000,398],[1708994366000,399],[1708994367000,387],[1708994368000,394],[1708994369000,384],[1708994370000,384],[1708994371000,392],[1708994372000,401],[1708994373000,389],[1708994374000,399],[1708994375000,395],[1708994376000,394],[1708994377000,391],[1708994378000,402],[1708994379000,396],[1708994380000,402],[1708994381000,402],[1708994382000,402],[1708994383000,402],[1708994384000,397],[1708994385000,399],[1708994386000,395],[1708994387000,400],[1708994388000,393],[1708994389000,397],[1708994390000,384],[1708994391000,400],[1708994392000,396],[1708994393000,403],[1708994394000,381],[1708994395000,381],[1708994396000,397],[1708994397000,402],[1708994398000,408],[1708994399000,391],[1708994400000,400],[1708994401000,398],[1708994402000,400],[1708994403000,397],[1708994404000,394],[1708994405000,393],[1708994406000,399],[1708994407000,391],[1708994408000,156],[1708994409000,9]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#f15b4f',
name: 'extratos',
data: [
[1708994163000,0],[1708994164000,0],[1708994165000,0],[1708994166000,0],[1708994167000,0],[1708994168000,2],[1708994169000,2],[1708994170000,2],[1708994171000,1],[1708994172000,1],[1708994173000,2],[1708994174000,1],[1708994175000,2],[1708994176000,2],[1708994177000,1],[1708994178000,2],[1708994179000,2],[1708994180000,2],[1708994181000,2],[1708994182000,2],[1708994183000,2],[1708994184000,2],[1708994185000,3],[1708994186000,2],[1708994187000,3],[1708994188000,2],[1708994189000,3],[1708994190000,2],[1708994191000,3],[1708994192000,3],[1708994193000,3],[1708994194000,3],[1708994195000,3],[1708994196000,3],[1708994197000,3],[1708994198000,4],[1708994199000,4],[1708994200000,3],[1708994201000,4],[1708994202000,3],[1708994203000,4],[1708994204000,4],[1708994205000,4],[1708994206000,4],[1708994207000,4],[1708994208000,4],[1708994209000,4],[1708994210000,4],[1708994211000,4],[1708994212000,4],[1708994213000,5],[1708994214000,5],[1708994215000,5],[1708994216000,5],[1708994217000,4],[1708994218000,5],[1708994219000,5],[1708994220000,5],[1708994221000,5],[1708994222000,5],[1708994223000,5],[1708994224000,5],[1708994225000,6],[1708994226000,5],[1708994227000,6],[1708994228000,5],[1708994229000,6],[1708994230000,5],[1708994231000,6],[1708994232000,6],[1708994233000,6],[1708994234000,6],[1708994235000,6],[1708994236000,6],[1708994237000,6],[1708994238000,7],[1708994239000,6],[1708994240000,6],[1708994241000,7],[1708994242000,6],[1708994243000,7],[1708994244000,7],[1708994245000,7],[1708994246000,7],[1708994247000,7],[1708994248000,7],[1708994249000,7],[1708994250000,7],[1708994251000,7],[1708994252000,7],[1708994253000,9],[1708994254000,7],[1708994255000,8],[1708994256000,8],[1708994257000,8],[1708994258000,10],[1708994259000,10],[1708994260000,11],[1708994261000,13],[1708994262000,13],[1708994263000,14],[1708994264000,14],[1708994265000,16],[1708994266000,16],[1708994267000,15],[1708994268000,16],[1708994269000,15],[1708994270000,17],[1708994271000,15],[1708994272000,17],[1708994273000,18],[1708994274000,15],[1708994275000,17],[1708994276000,15],[1708994277000,15],[1708994278000,20],[1708994279000,19],[1708994280000,17],[1708994281000,18],[1708994282000,18],[1708994283000,18],[1708994284000,20],[1708994285000,20],[1708994286000,23],[1708994287000,22],[1708994288000,23],[1708994289000,20],[1708994290000,19],[1708994291000,17],[1708994292000,18],[1708994293000,17],[1708994294000,22],[1708994295000,16],[1708994296000,19],[1708994297000,20],[1708994298000,20],[1708994299000,19],[1708994300000,20],[1708994301000,18],[1708994302000,21],[1708994303000,18],[1708994304000,13],[1708994305000,16],[1708994306000,18],[1708994307000,14],[1708994308000,17],[1708994309000,21],[1708994310000,19],[1708994311000,15],[1708994312000,17],[1708994313000,15],[1708994314000,18],[1708994315000,14],[1708994316000,18],[1708994317000,19],[1708994318000,17],[1708994319000,14],[1708994320000,14],[1708994321000,20],[1708994322000,19],[1708994323000,17],[1708994324000,16],[1708994325000,16],[1708994326000,17],[1708994327000,18],[1708994328000,15],[1708994329000,19],[1708994330000,18],[1708994331000,16],[1708994332000,17],[1708994333000,17],[1708994334000,17],[1708994335000,17],[1708994336000,20],[1708994337000,20],[1708994338000,15],[1708994339000,15],[1708994340000,13],[1708994341000,20],[1708994342000,15],[1708994343000,17],[1708994344000,14],[1708994345000,21],[1708994346000,17],[1708994347000,17],[1708994348000,16],[1708994349000,17],[1708994350000,16],[1708994351000,16],[1708994352000,17],[1708994353000,16],[1708994354000,16],[1708994355000,21],[1708994356000,14],[1708994357000,17],[1708994358000,21],[1708994359000,13],[1708994360000,16],[1708994361000,16],[1708994362000,16],[1708994363000,18],[1708994364000,18],[1708994365000,17],[1708994366000,17],[1708994367000,19],[1708994368000,19],[1708994369000,15],[1708994370000,16],[1708994371000,15],[1708994372000,16],[1708994373000,13],[1708994374000,15],[1708994375000,16],[1708994376000,20],[1708994377000,13],[1708994378000,17],[1708994379000,13],[1708994380000,14],[1708994381000,16],[1708994382000,16],[1708994383000,14],[1708994384000,16],[1708994385000,17],[1708994386000,17],[1708994387000,16],[1708994388000,15],[1708994389000,16],[1708994390000,15],[1708994391000,19],[1708994392000,19],[1708994393000,18],[1708994394000,16],[1708994395000,20],[1708994396000,16],[1708994397000,16],[1708994398000,15],[1708994399000,18],[1708994400000,14],[1708994401000,17],[1708994402000,16],[1708994403000,12],[1708994404000,13],[1708994405000,16],[1708994406000,16],[1708994407000,16],[1708994408000,5],[1708994409000,1]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FFDD00',
name: 'validações',
data: [
[1708994163000,0],[1708994164000,0],[1708994165000,0],[1708994166000,5],[1708994167000,5],[1708994168000,0],[1708994169000,0],[1708994170000,0],[1708994171000,0],[1708994172000,0],[1708994173000,0],[1708994174000,0],[1708994175000,0],[1708994176000,0],[1708994177000,0],[1708994178000,0],[1708994179000,0],[1708994180000,0],[1708994181000,0],[1708994182000,0],[1708994183000,0],[1708994184000,0],[1708994185000,0],[1708994186000,0],[1708994187000,0],[1708994188000,0],[1708994189000,0],[1708994190000,0],[1708994191000,0],[1708994192000,0],[1708994193000,0],[1708994194000,0],[1708994195000,0],[1708994196000,0],[1708994197000,0],[1708994198000,0],[1708994199000,0],[1708994200000,0],[1708994201000,0],[1708994202000,0],[1708994203000,0],[1708994204000,0],[1708994205000,0],[1708994206000,0],[1708994207000,0],[1708994208000,0],[1708994209000,0],[1708994210000,0],[1708994211000,0],[1708994212000,0],[1708994213000,0],[1708994214000,0],[1708994215000,0],[1708994216000,0],[1708994217000,0],[1708994218000,0],[1708994219000,0],[1708994220000,0],[1708994221000,0],[1708994222000,0],[1708994223000,0],[1708994224000,0],[1708994225000,0],[1708994226000,0],[1708994227000,0],[1708994228000,0],[1708994229000,0],[1708994230000,0],[1708994231000,0],[1708994232000,0],[1708994233000,0],[1708994234000,0],[1708994235000,0],[1708994236000,0],[1708994237000,0],[1708994238000,0],[1708994239000,0],[1708994240000,0],[1708994241000,0],[1708994242000,0],[1708994243000,0],[1708994244000,0],[1708994245000,0],[1708994246000,0],[1708994247000,0],[1708994248000,0],[1708994249000,0],[1708994250000,0],[1708994251000,0],[1708994252000,0],[1708994253000,0],[1708994254000,0],[1708994255000,0],[1708994256000,0],[1708994257000,0],[1708994258000,0],[1708994259000,0],[1708994260000,0],[1708994261000,0],[1708994262000,0],[1708994263000,0],[1708994264000,0],[1708994265000,0],[1708994266000,0],[1708994267000,0],[1708994268000,0],[1708994269000,0],[1708994270000,0],[1708994271000,0],[1708994272000,0],[1708994273000,0],[1708994274000,0],[1708994275000,0],[1708994276000,0],[1708994277000,0],[1708994278000,0],[1708994279000,0],[1708994280000,0],[1708994281000,0],[1708994282000,0],[1708994283000,0],[1708994284000,0],[1708994285000,0],[1708994286000,0],[1708994287000,0],[1708994288000,0],[1708994289000,0],[1708994290000,0],[1708994291000,0],[1708994292000,0],[1708994293000,0],[1708994294000,0],[1708994295000,0],[1708994296000,0],[1708994297000,0],[1708994298000,0],[1708994299000,0],[1708994300000,0],[1708994301000,0],[1708994302000,0],[1708994303000,0],[1708994304000,0],[1708994305000,0],[1708994306000,0],[1708994307000,0],[1708994308000,0],[1708994309000,0],[1708994310000,0],[1708994311000,0],[1708994312000,0],[1708994313000,0],[1708994314000,0],[1708994315000,0],[1708994316000,0],[1708994317000,0],[1708994318000,0],[1708994319000,0],[1708994320000,0],[1708994321000,0],[1708994322000,0],[1708994323000,0],[1708994324000,0],[1708994325000,0],[1708994326000,0],[1708994327000,0],[1708994328000,0],[1708994329000,0],[1708994330000,0],[1708994331000,0],[1708994332000,0],[1708994333000,0],[1708994334000,0],[1708994335000,0],[1708994336000,0],[1708994337000,0],[1708994338000,0],[1708994339000,0],[1708994340000,0],[1708994341000,0],[1708994342000,0],[1708994343000,0],[1708994344000,0],[1708994345000,0],[1708994346000,0],[1708994347000,0],[1708994348000,0],[1708994349000,0],[1708994350000,0],[1708994351000,0],[1708994352000,0],[1708994353000,0],[1708994354000,0],[1708994355000,0],[1708994356000,0],[1708994357000,0],[1708994358000,0],[1708994359000,0],[1708994360000,0],[1708994361000,0],[1708994362000,0],[1708994363000,0],[1708994364000,0],[1708994365000,0],[1708994366000,0],[1708994367000,0],[1708994368000,0],[1708994369000,0],[1708994370000,0],[1708994371000,0],[1708994372000,0],[1708994373000,0],[1708994374000,0],[1708994375000,0],[1708994376000,0],[1708994377000,0],[1708994378000,0],[1708994379000,0],[1708994380000,0],[1708994381000,0],[1708994382000,0],[1708994383000,0],[1708994384000,0],[1708994385000,0],[1708994386000,0],[1708994387000,0],[1708994388000,0],[1708994389000,0],[1708994390000,0],[1708994391000,0],[1708994392000,0],[1708994393000,0],[1708994394000,0],[1708994395000,0],[1708994396000,0],[1708994397000,0],[1708994398000,0],[1708994399000,0],[1708994400000,0],[1708994401000,0],[1708994402000,0],[1708994403000,0],[1708994404000,0],[1708994405000,0],[1708994406000,0],[1708994407000,0],[1708994408000,0],[1708994409000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00D5FF',
name: 'validação HTTP 404',
data: [
[1708994163000,0],[1708994164000,0],[1708994165000,0],[1708994166000,1],[1708994167000,1],[1708994168000,0],[1708994169000,0],[1708994170000,0],[1708994171000,0],[1708994172000,0],[1708994173000,0],[1708994174000,0],[1708994175000,0],[1708994176000,0],[1708994177000,0],[1708994178000,0],[1708994179000,0],[1708994180000,0],[1708994181000,0],[1708994182000,0],[1708994183000,0],[1708994184000,0],[1708994185000,0],[1708994186000,0],[1708994187000,0],[1708994188000,0],[1708994189000,0],[1708994190000,0],[1708994191000,0],[1708994192000,0],[1708994193000,0],[1708994194000,0],[1708994195000,0],[1708994196000,0],[1708994197000,0],[1708994198000,0],[1708994199000,0],[1708994200000,0],[1708994201000,0],[1708994202000,0],[1708994203000,0],[1708994204000,0],[1708994205000,0],[1708994206000,0],[1708994207000,0],[1708994208000,0],[1708994209000,0],[1708994210000,0],[1708994211000,0],[1708994212000,0],[1708994213000,0],[1708994214000,0],[1708994215000,0],[1708994216000,0],[1708994217000,0],[1708994218000,0],[1708994219000,0],[1708994220000,0],[1708994221000,0],[1708994222000,0],[1708994223000,0],[1708994224000,0],[1708994225000,0],[1708994226000,0],[1708994227000,0],[1708994228000,0],[1708994229000,0],[1708994230000,0],[1708994231000,0],[1708994232000,0],[1708994233000,0],[1708994234000,0],[1708994235000,0],[1708994236000,0],[1708994237000,0],[1708994238000,0],[1708994239000,0],[1708994240000,0],[1708994241000,0],[1708994242000,0],[1708994243000,0],[1708994244000,0],[1708994245000,0],[1708994246000,0],[1708994247000,0],[1708994248000,0],[1708994249000,0],[1708994250000,0],[1708994251000,0],[1708994252000,0],[1708994253000,0],[1708994254000,0],[1708994255000,0],[1708994256000,0],[1708994257000,0],[1708994258000,0],[1708994259000,0],[1708994260000,0],[1708994261000,0],[1708994262000,0],[1708994263000,0],[1708994264000,0],[1708994265000,0],[1708994266000,0],[1708994267000,0],[1708994268000,0],[1708994269000,0],[1708994270000,0],[1708994271000,0],[1708994272000,0],[1708994273000,0],[1708994274000,0],[1708994275000,0],[1708994276000,0],[1708994277000,0],[1708994278000,0],[1708994279000,0],[1708994280000,0],[1708994281000,0],[1708994282000,0],[1708994283000,0],[1708994284000,0],[1708994285000,0],[1708994286000,0],[1708994287000,0],[1708994288000,0],[1708994289000,0],[1708994290000,0],[1708994291000,0],[1708994292000,0],[1708994293000,0],[1708994294000,0],[1708994295000,0],[1708994296000,0],[1708994297000,0],[1708994298000,0],[1708994299000,0],[1708994300000,0],[1708994301000,0],[1708994302000,0],[1708994303000,0],[1708994304000,0],[1708994305000,0],[1708994306000,0],[1708994307000,0],[1708994308000,0],[1708994309000,0],[1708994310000,0],[1708994311000,0],[1708994312000,0],[1708994313000,0],[1708994314000,0],[1708994315000,0],[1708994316000,0],[1708994317000,0],[1708994318000,0],[1708994319000,0],[1708994320000,0],[1708994321000,0],[1708994322000,0],[1708994323000,0],[1708994324000,0],[1708994325000,0],[1708994326000,0],[1708994327000,0],[1708994328000,0],[1708994329000,0],[1708994330000,0],[1708994331000,0],[1708994332000,0],[1708994333000,0],[1708994334000,0],[1708994335000,0],[1708994336000,0],[1708994337000,0],[1708994338000,0],[1708994339000,0],[1708994340000,0],[1708994341000,0],[1708994342000,0],[1708994343000,0],[1708994344000,0],[1708994345000,0],[1708994346000,0],[1708994347000,0],[1708994348000,0],[1708994349000,0],[1708994350000,0],[1708994351000,0],[1708994352000,0],[1708994353000,0],[1708994354000,0],[1708994355000,0],[1708994356000,0],[1708994357000,0],[1708994358000,0],[1708994359000,0],[1708994360000,0],[1708994361000,0],[1708994362000,0],[1708994363000,0],[1708994364000,0],[1708994365000,0],[1708994366000,0],[1708994367000,0],[1708994368000,0],[1708994369000,0],[1708994370000,0],[1708994371000,0],[1708994372000,0],[1708994373000,0],[1708994374000,0],[1708994375000,0],[1708994376000,0],[1708994377000,0],[1708994378000,0],[1708994379000,0],[1708994380000,0],[1708994381000,0],[1708994382000,0],[1708994383000,0],[1708994384000,0],[1708994385000,0],[1708994386000,0],[1708994387000,0],[1708994388000,0],[1708994389000,0],[1708994390000,0],[1708994391000,0],[1708994392000,0],[1708994393000,0],[1708994394000,0],[1708994395000,0],[1708994396000,0],[1708994397000,0],[1708994398000,0],[1708994399000,0],[1708994400000,0],[1708994401000,0],[1708994402000,0],[1708994403000,0],[1708994404000,0],[1708994405000,0],[1708994406000,0],[1708994407000,0],[1708994408000,0],[1708994409000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00FF00',
name: 'validação concorrência saldo - 0',
data: [
[1708994163000,0],[1708994164000,0],[1708994165000,1],[1708994166000,0],[1708994167000,0],[1708994168000,0],[1708994169000,0],[1708994170000,0],[1708994171000,0],[1708994172000,0],[1708994173000,0],[1708994174000,0],[1708994175000,0],[1708994176000,0],[1708994177000,0],[1708994178000,0],[1708994179000,0],[1708994180000,0],[1708994181000,0],[1708994182000,0],[1708994183000,0],[1708994184000,0],[1708994185000,0],[1708994186000,0],[1708994187000,0],[1708994188000,0],[1708994189000,0],[1708994190000,0],[1708994191000,0],[1708994192000,0],[1708994193000,0],[1708994194000,0],[1708994195000,0],[1708994196000,0],[1708994197000,0],[1708994198000,0],[1708994199000,0],[1708994200000,0],[1708994201000,0],[1708994202000,0],[1708994203000,0],[1708994204000,0],[1708994205000,0],[1708994206000,0],[1708994207000,0],[1708994208000,0],[1708994209000,0],[1708994210000,0],[1708994211000,0],[1708994212000,0],[1708994213000,0],[1708994214000,0],[1708994215000,0],[1708994216000,0],[1708994217000,0],[1708994218000,0],[1708994219000,0],[1708994220000,0],[1708994221000,0],[1708994222000,0],[1708994223000,0],[1708994224000,0],[1708994225000,0],[1708994226000,0],[1708994227000,0],[1708994228000,0],[1708994229000,0],[1708994230000,0],[1708994231000,0],[1708994232000,0],[1708994233000,0],[1708994234000,0],[1708994235000,0],[1708994236000,0],[1708994237000,0],[1708994238000,0],[1708994239000,0],[1708994240000,0],[1708994241000,0],[1708994242000,0],[1708994243000,0],[1708994244000,0],[1708994245000,0],[1708994246000,0],[1708994247000,0],[1708994248000,0],[1708994249000,0],[1708994250000,0],[1708994251000,0],[1708994252000,0],[1708994253000,0],[1708994254000,0],[1708994255000,0],[1708994256000,0],[1708994257000,0],[1708994258000,0],[1708994259000,0],[1708994260000,0],[1708994261000,0],[1708994262000,0],[1708994263000,0],[1708994264000,0],[1708994265000,0],[1708994266000,0],[1708994267000,0],[1708994268000,0],[1708994269000,0],[1708994270000,0],[1708994271000,0],[1708994272000,0],[1708994273000,0],[1708994274000,0],[1708994275000,0],[1708994276000,0],[1708994277000,0],[1708994278000,0],[1708994279000,0],[1708994280000,0],[1708994281000,0],[1708994282000,0],[1708994283000,0],[1708994284000,0],[1708994285000,0],[1708994286000,0],[1708994287000,0],[1708994288000,0],[1708994289000,0],[1708994290000,0],[1708994291000,0],[1708994292000,0],[1708994293000,0],[1708994294000,0],[1708994295000,0],[1708994296000,0],[1708994297000,0],[1708994298000,0],[1708994299000,0],[1708994300000,0],[1708994301000,0],[1708994302000,0],[1708994303000,0],[1708994304000,0],[1708994305000,0],[1708994306000,0],[1708994307000,0],[1708994308000,0],[1708994309000,0],[1708994310000,0],[1708994311000,0],[1708994312000,0],[1708994313000,0],[1708994314000,0],[1708994315000,0],[1708994316000,0],[1708994317000,0],[1708994318000,0],[1708994319000,0],[1708994320000,0],[1708994321000,0],[1708994322000,0],[1708994323000,0],[1708994324000,0],[1708994325000,0],[1708994326000,0],[1708994327000,0],[1708994328000,0],[1708994329000,0],[1708994330000,0],[1708994331000,0],[1708994332000,0],[1708994333000,0],[1708994334000,0],[1708994335000,0],[1708994336000,0],[1708994337000,0],[1708994338000,0],[1708994339000,0],[1708994340000,0],[1708994341000,0],[1708994342000,0],[1708994343000,0],[1708994344000,0],[1708994345000,0],[1708994346000,0],[1708994347000,0],[1708994348000,0],[1708994349000,0],[1708994350000,0],[1708994351000,0],[1708994352000,0],[1708994353000,0],[1708994354000,0],[1708994355000,0],[1708994356000,0],[1708994357000,0],[1708994358000,0],[1708994359000,0],[1708994360000,0],[1708994361000,0],[1708994362000,0],[1708994363000,0],[1708994364000,0],[1708994365000,0],[1708994366000,0],[1708994367000,0],[1708994368000,0],[1708994369000,0],[1708994370000,0],[1708994371000,0],[1708994372000,0],[1708994373000,0],[1708994374000,0],[1708994375000,0],[1708994376000,0],[1708994377000,0],[1708994378000,0],[1708994379000,0],[1708994380000,0],[1708994381000,0],[1708994382000,0],[1708994383000,0],[1708994384000,0],[1708994385000,0],[1708994386000,0],[1708994387000,0],[1708994388000,0],[1708994389000,0],[1708994390000,0],[1708994391000,0],[1708994392000,0],[1708994393000,0],[1708994394000,0],[1708994395000,0],[1708994396000,0],[1708994397000,0],[1708994398000,0],[1708994399000,0],[1708994400000,0],[1708994401000,0],[1708994402000,0],[1708994403000,0],[1708994404000,0],[1708994405000,0],[1708994406000,0],[1708994407000,0],[1708994408000,0],[1708994409000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#9D00FF',
name: 'validação concorrência transações - c',
data: [
[1708994163000,0],[1708994164000,25],[1708994165000,25],[1708994166000,0],[1708994167000,0],[1708994168000,0],[1708994169000,0],[1708994170000,0],[1708994171000,0],[1708994172000,0],[1708994173000,0],[1708994174000,0],[1708994175000,0],[1708994176000,0],[1708994177000,0],[1708994178000,0],[1708994179000,0],[1708994180000,0],[1708994181000,0],[1708994182000,0],[1708994183000,0],[1708994184000,0],[1708994185000,0],[1708994186000,0],[1708994187000,0],[1708994188000,0],[1708994189000,0],[1708994190000,0],[1708994191000,0],[1708994192000,0],[1708994193000,0],[1708994194000,0],[1708994195000,0],[1708994196000,0],[1708994197000,0],[1708994198000,0],[1708994199000,0],[1708994200000,0],[1708994201000,0],[1708994202000,0],[1708994203000,0],[1708994204000,0],[1708994205000,0],[1708994206000,0],[1708994207000,0],[1708994208000,0],[1708994209000,0],[1708994210000,0],[1708994211000,0],[1708994212000,0],[1708994213000,0],[1708994214000,0],[1708994215000,0],[1708994216000,0],[1708994217000,0],[1708994218000,0],[1708994219000,0],[1708994220000,0],[1708994221000,0],[1708994222000,0],[1708994223000,0],[1708994224000,0],[1708994225000,0],[1708994226000,0],[1708994227000,0],[1708994228000,0],[1708994229000,0],[1708994230000,0],[1708994231000,0],[1708994232000,0],[1708994233000,0],[1708994234000,0],[1708994235000,0],[1708994236000,0],[1708994237000,0],[1708994238000,0],[1708994239000,0],[1708994240000,0],[1708994241000,0],[1708994242000,0],[1708994243000,0],[1708994244000,0],[1708994245000,0],[1708994246000,0],[1708994247000,0],[1708994248000,0],[1708994249000,0],[1708994250000,0],[1708994251000,0],[1708994252000,0],[1708994253000,0],[1708994254000,0],[1708994255000,0],[1708994256000,0],[1708994257000,0],[1708994258000,0],[1708994259000,0],[1708994260000,0],[1708994261000,0],[1708994262000,0],[1708994263000,0],[1708994264000,0],[1708994265000,0],[1708994266000,0],[1708994267000,0],[1708994268000,0],[1708994269000,0],[1708994270000,0],[1708994271000,0],[1708994272000,0],[1708994273000,0],[1708994274000,0],[1708994275000,0],[1708994276000,0],[1708994277000,0],[1708994278000,0],[1708994279000,0],[1708994280000,0],[1708994281000,0],[1708994282000,0],[1708994283000,0],[1708994284000,0],[1708994285000,0],[1708994286000,0],[1708994287000,0],[1708994288000,0],[1708994289000,0],[1708994290000,0],[1708994291000,0],[1708994292000,0],[1708994293000,0],[1708994294000,0],[1708994295000,0],[1708994296000,0],[1708994297000,0],[1708994298000,0],[1708994299000,0],[1708994300000,0],[1708994301000,0],[1708994302000,0],[1708994303000,0],[1708994304000,0],[1708994305000,0],[1708994306000,0],[1708994307000,0],[1708994308000,0],[1708994309000,0],[1708994310000,0],[1708994311000,0],[1708994312000,0],[1708994313000,0],[1708994314000,0],[1708994315000,0],[1708994316000,0],[1708994317000,0],[1708994318000,0],[1708994319000,0],[1708994320000,0],[1708994321000,0],[1708994322000,0],[1708994323000,0],[1708994324000,0],[1708994325000,0],[1708994326000,0],[1708994327000,0],[1708994328000,0],[1708994329000,0],[1708994330000,0],[1708994331000,0],[1708994332000,0],[1708994333000,0],[1708994334000,0],[1708994335000,0],[1708994336000,0],[1708994337000,0],[1708994338000,0],[1708994339000,0],[1708994340000,0],[1708994341000,0],[1708994342000,0],[1708994343000,0],[1708994344000,0],[1708994345000,0],[1708994346000,0],[1708994347000,0],[1708994348000,0],[1708994349000,0],[1708994350000,0],[1708994351000,0],[1708994352000,0],[1708994353000,0],[1708994354000,0],[1708994355000,0],[1708994356000,0],[1708994357000,0],[1708994358000,0],[1708994359000,0],[1708994360000,0],[1708994361000,0],[1708994362000,0],[1708994363000,0],[1708994364000,0],[1708994365000,0],[1708994366000,0],[1708994367000,0],[1708994368000,0],[1708994369000,0],[1708994370000,0],[1708994371000,0],[1708994372000,0],[1708994373000,0],[1708994374000,0],[1708994375000,0],[1708994376000,0],[1708994377000,0],[1708994378000,0],[1708994379000,0],[1708994380000,0],[1708994381000,0],[1708994382000,0],[1708994383000,0],[1708994384000,0],[1708994385000,0],[1708994386000,0],[1708994387000,0],[1708994388000,0],[1708994389000,0],[1708994390000,0],[1708994391000,0],[1708994392000,0],[1708994393000,0],[1708994394000,0],[1708994395000,0],[1708994396000,0],[1708994397000,0],[1708994398000,0],[1708994399000,0],[1708994400000,0],[1708994401000,0],[1708994402000,0],[1708994403000,0],[1708994404000,0],[1708994405000,0],[1708994406000,0],[1708994407000,0],[1708994408000,0],[1708994409000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FF00E1',
name: 'validação concorrência saldo - -25',
data: [
[1708994163000,1],[1708994164000,1],[1708994165000,0],[1708994166000,0],[1708994167000,0],[1708994168000,0],[1708994169000,0],[1708994170000,0],[1708994171000,0],[1708994172000,0],[1708994173000,0],[1708994174000,0],[1708994175000,0],[1708994176000,0],[1708994177000,0],[1708994178000,0],[1708994179000,0],[1708994180000,0],[1708994181000,0],[1708994182000,0],[1708994183000,0],[1708994184000,0],[1708994185000,0],[1708994186000,0],[1708994187000,0],[1708994188000,0],[1708994189000,0],[1708994190000,0],[1708994191000,0],[1708994192000,0],[1708994193000,0],[1708994194000,0],[1708994195000,0],[1708994196000,0],[1708994197000,0],[1708994198000,0],[1708994199000,0],[1708994200000,0],[1708994201000,0],[1708994202000,0],[1708994203000,0],[1708994204000,0],[1708994205000,0],[1708994206000,0],[1708994207000,0],[1708994208000,0],[1708994209000,0],[1708994210000,0],[1708994211000,0],[1708994212000,0],[1708994213000,0],[1708994214000,0],[1708994215000,0],[1708994216000,0],[1708994217000,0],[1708994218000,0],[1708994219000,0],[1708994220000,0],[1708994221000,0],[1708994222000,0],[1708994223000,0],[1708994224000,0],[1708994225000,0],[1708994226000,0],[1708994227000,0],[1708994228000,0],[1708994229000,0],[1708994230000,0],[1708994231000,0],[1708994232000,0],[1708994233000,0],[1708994234000,0],[1708994235000,0],[1708994236000,0],[1708994237000,0],[1708994238000,0],[1708994239000,0],[1708994240000,0],[1708994241000,0],[1708994242000,0],[1708994243000,0],[1708994244000,0],[1708994245000,0],[1708994246000,0],[1708994247000,0],[1708994248000,0],[1708994249000,0],[1708994250000,0],[1708994251000,0],[1708994252000,0],[1708994253000,0],[1708994254000,0],[1708994255000,0],[1708994256000,0],[1708994257000,0],[1708994258000,0],[1708994259000,0],[1708994260000,0],[1708994261000,0],[1708994262000,0],[1708994263000,0],[1708994264000,0],[1708994265000,0],[1708994266000,0],[1708994267000,0],[1708994268000,0],[1708994269000,0],[1708994270000,0],[1708994271000,0],[1708994272000,0],[1708994273000,0],[1708994274000,0],[1708994275000,0],[1708994276000,0],[1708994277000,0],[1708994278000,0],[1708994279000,0],[1708994280000,0],[1708994281000,0],[1708994282000,0],[1708994283000,0],[1708994284000,0],[1708994285000,0],[1708994286000,0],[1708994287000,0],[1708994288000,0],[1708994289000,0],[1708994290000,0],[1708994291000,0],[1708994292000,0],[1708994293000,0],[1708994294000,0],[1708994295000,0],[1708994296000,0],[1708994297000,0],[1708994298000,0],[1708994299000,0],[1708994300000,0],[1708994301000,0],[1708994302000,0],[1708994303000,0],[1708994304000,0],[1708994305000,0],[1708994306000,0],[1708994307000,0],[1708994308000,0],[1708994309000,0],[1708994310000,0],[1708994311000,0],[1708994312000,0],[1708994313000,0],[1708994314000,0],[1708994315000,0],[1708994316000,0],[1708994317000,0],[1708994318000,0],[1708994319000,0],[1708994320000,0],[1708994321000,0],[1708994322000,0],[1708994323000,0],[1708994324000,0],[1708994325000,0],[1708994326000,0],[1708994327000,0],[1708994328000,0],[1708994329000,0],[1708994330000,0],[1708994331000,0],[1708994332000,0],[1708994333000,0],[1708994334000,0],[1708994335000,0],[1708994336000,0],[1708994337000,0],[1708994338000,0],[1708994339000,0],[1708994340000,0],[1708994341000,0],[1708994342000,0],[1708994343000,0],[1708994344000,0],[1708994345000,0],[1708994346000,0],[1708994347000,0],[1708994348000,0],[1708994349000,0],[1708994350000,0],[1708994351000,0],[1708994352000,0],[1708994353000,0],[1708994354000,0],[1708994355000,0],[1708994356000,0],[1708994357000,0],[1708994358000,0],[1708994359000,0],[1708994360000,0],[1708994361000,0],[1708994362000,0],[1708994363000,0],[1708994364000,0],[1708994365000,0],[1708994366000,0],[1708994367000,0],[1708994368000,0],[1708994369000,0],[1708994370000,0],[1708994371000,0],[1708994372000,0],[1708994373000,0],[1708994374000,0],[1708994375000,0],[1708994376000,0],[1708994377000,0],[1708994378000,0],[1708994379000,0],[1708994380000,0],[1708994381000,0],[1708994382000,0],[1708994383000,0],[1708994384000,0],[1708994385000,0],[1708994386000,0],[1708994387000,0],[1708994388000,0],[1708994389000,0],[1708994390000,0],[1708994391000,0],[1708994392000,0],[1708994393000,0],[1708994394000,0],[1708994395000,0],[1708994396000,0],[1708994397000,0],[1708994398000,0],[1708994399000,0],[1708994400000,0],[1708994401000,0],[1708994402000,0],[1708994403000,0],[1708994404000,0],[1708994405000,0],[1708994406000,0],[1708994407000,0],[1708994408000,0],[1708994409000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#AECAEB',
name: 'validação concorrência transações - d',
data: [
[1708994163000,25],[1708994164000,0],[1708994165000,0],[1708994166000,0],[1708994167000,0],[1708994168000,0],[1708994169000,0],[1708994170000,0],[1708994171000,0],[1708994172000,0],[1708994173000,0],[1708994174000,0],[1708994175000,0],[1708994176000,0],[1708994177000,0],[1708994178000,0],[1708994179000,0],[1708994180000,0],[1708994181000,0],[1708994182000,0],[1708994183000,0],[1708994184000,0],[1708994185000,0],[1708994186000,0],[1708994187000,0],[1708994188000,0],[1708994189000,0],[1708994190000,0],[1708994191000,0],[1708994192000,0],[1708994193000,0],[1708994194000,0],[1708994195000,0],[1708994196000,0],[1708994197000,0],[1708994198000,0],[1708994199000,0],[1708994200000,0],[1708994201000,0],[1708994202000,0],[1708994203000,0],[1708994204000,0],[1708994205000,0],[1708994206000,0],[1708994207000,0],[1708994208000,0],[1708994209000,0],[1708994210000,0],[1708994211000,0],[1708994212000,0],[1708994213000,0],[1708994214000,0],[1708994215000,0],[1708994216000,0],[1708994217000,0],[1708994218000,0],[1708994219000,0],[1708994220000,0],[1708994221000,0],[1708994222000,0],[1708994223000,0],[1708994224000,0],[1708994225000,0],[1708994226000,0],[1708994227000,0],[1708994228000,0],[1708994229000,0],[1708994230000,0],[1708994231000,0],[1708994232000,0],[1708994233000,0],[1708994234000,0],[1708994235000,0],[1708994236000,0],[1708994237000,0],[1708994238000,0],[1708994239000,0],[1708994240000,0],[1708994241000,0],[1708994242000,0],[1708994243000,0],[1708994244000,0],[1708994245000,0],[1708994246000,0],[1708994247000,0],[1708994248000,0],[1708994249000,0],[1708994250000,0],[1708994251000,0],[1708994252000,0],[1708994253000,0],[1708994254000,0],[1708994255000,0],[1708994256000,0],[1708994257000,0],[1708994258000,0],[1708994259000,0],[1708994260000,0],[1708994261000,0],[1708994262000,0],[1708994263000,0],[1708994264000,0],[1708994265000,0],[1708994266000,0],[1708994267000,0],[1708994268000,0],[1708994269000,0],[1708994270000,0],[1708994271000,0],[1708994272000,0],[1708994273000,0],[1708994274000,0],[1708994275000,0],[1708994276000,0],[1708994277000,0],[1708994278000,0],[1708994279000,0],[1708994280000,0],[1708994281000,0],[1708994282000,0],[1708994283000,0],[1708994284000,0],[1708994285000,0],[1708994286000,0],[1708994287000,0],[1708994288000,0],[1708994289000,0],[1708994290000,0],[1708994291000,0],[1708994292000,0],[1708994293000,0],[1708994294000,0],[1708994295000,0],[1708994296000,0],[1708994297000,0],[1708994298000,0],[1708994299000,0],[1708994300000,0],[1708994301000,0],[1708994302000,0],[1708994303000,0],[1708994304000,0],[1708994305000,0],[1708994306000,0],[1708994307000,0],[1708994308000,0],[1708994309000,0],[1708994310000,0],[1708994311000,0],[1708994312000,0],[1708994313000,0],[1708994314000,0],[1708994315000,0],[1708994316000,0],[1708994317000,0],[1708994318000,0],[1708994319000,0],[1708994320000,0],[1708994321000,0],[1708994322000,0],[1708994323000,0],[1708994324000,0],[1708994325000,0],[1708994326000,0],[1708994327000,0],[1708994328000,0],[1708994329000,0],[1708994330000,0],[1708994331000,0],[1708994332000,0],[1708994333000,0],[1708994334000,0],[1708994335000,0],[1708994336000,0],[1708994337000,0],[1708994338000,0],[1708994339000,0],[1708994340000,0],[1708994341000,0],[1708994342000,0],[1708994343000,0],[1708994344000,0],[1708994345000,0],[1708994346000,0],[1708994347000,0],[1708994348000,0],[1708994349000,0],[1708994350000,0],[1708994351000,0],[1708994352000,0],[1708994353000,0],[1708994354000,0],[1708994355000,0],[1708994356000,0],[1708994357000,0],[1708994358000,0],[1708994359000,0],[1708994360000,0],[1708994361000,0],[1708994362000,0],[1708994363000,0],[1708994364000,0],[1708994365000,0],[1708994366000,0],[1708994367000,0],[1708994368000,0],[1708994369000,0],[1708994370000,0],[1708994371000,0],[1708994372000,0],[1708994373000,0],[1708994374000,0],[1708994375000,0],[1708994376000,0],[1708994377000,0],[1708994378000,0],[1708994379000,0],[1708994380000,0],[1708994381000,0],[1708994382000,0],[1708994383000,0],[1708994384000,0],[1708994385000,0],[1708994386000,0],[1708994387000,0],[1708994388000,0],[1708994389000,0],[1708994390000,0],[1708994391000,0],[1708994392000,0],[1708994393000,0],[1708994394000,0],[1708994395000,0],[1708994396000,0],[1708994397000,0],[1708994398000,0],[1708994399000,0],[1708994400000,0],[1708994401000,0],[1708994402000,0],[1708994403000,0],[1708994404000,0],[1708994405000,0],[1708994406000,0],[1708994407000,0],[1708994408000,0],[1708994409000,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: ['7', '22', '36', '50', '65', '79', '94', '108', '122', '137', '151', '165', '180', '194', '209', '223', '237', '252', '266', '281', '295', '309', '324', '338', '353', '367', '381', '396', '410', '425', '439', '453', '468', '482', '496', '511', '525', '540', '554', '568', '583', '597', '612', '626', '640', '655', '669', '684', '698', '712', '727', '741', '755', '770', '784', '799', '813', '827', '842', '856', '871', '885', '899', '914', '928', '943', '957', '971', '986', '1000', '1014', '1029', '1043', '1058', '1072', '1086', '1101', '1115', '1130', '1144', '1158', '1173', '1187', '1202', '1216', '1230', '1245', '1259', '1274', '1288', '1302', '1317', '1331', '1345', '1360', '1374', '1389', '1403', '1417', '1432'],
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: [
18.31,0.14,0.1,0.05,0.04,0.04,0.04,0.04,0.05,0.04,0.06,0.06,0.05,0.06,0.04,0.04,0.05,0.04,0.03,0.05,0.04,0.05,0.06,0.06,0.04,0.06,0.05,0.04,0.04,0.04,0.03,0.03,0.03,0.03,0.02,0.04,0.04,0.04,0.05,0.05,0.04,0.03,0.03,0.04,0.04,0.04,0.04,0.02,0.05,0.03,0.04,0.05,0.04,0.07,0.22,0.62,1.21,0.84,1.59,3.1,3.72,3.66,2.76,1.54,1.1,1.67,2.18,1.53,0.96,0.49,0.11,0.16,0.16,0.04,0.03,0.02,0.02,0.05,0.06,0.15,0.44,1.14,2.14,2.77,2.66,1.87,3.2,4.8,3.66,2.4,0.89,0.25,0.32,0.27,0.11,0.02,0.0,0.0,0.0,0.0
],
tooltip: { yDecimals: 0, ySuffix: 'ms' }
},
{
type: 'column',
color: '#f15b4f',
name: 'KO',
data: [
23.83,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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([[1708994163,[44,447,550,559,563,567,570,573,580,582]],[1708994164,[5,5,5,5,5,5,5,5,5,5]],[1708994165,[19,46,65,85,87,88,90,93,94,94]],[1708994166,[6,6,6,6,6,6,6,6,6,6]],[1708994167,[1,4,10,22,29,34,57,70,75,78]],[1708994168,[9,20,31,31,31,31,31,31,31,32]],[1708994169,[7,7,8,8,9,9,9,9,9,9]],[1708994170,[7,7,8,11,11,12,13,13,13,13]],[1708994171,[5,6,7,7,7,7,8,8,8,9]],[1708994172,[6,7,7,7,7,7,7,8,8,8]],[1708994173,[6,6,7,7,7,7,8,8,8,9]],[1708994174,[6,6,7,7,7,7,8,9,11,12]],[1708994175,[5,6,6,7,7,7,7,7,8,8]],[1708994176,[6,6,7,7,8,8,8,9,10,10]],[1708994177,[6,6,7,7,7,8,8,10,10,10]],[1708994178,[5,6,7,8,8,9,9,9,9,10]],[1708994179,[5,6,6,7,7,8,9,9,10,10]],[1708994180,[5,6,6,7,7,8,8,11,11,12]],[1708994181,[5,6,6,7,7,7,8,8,9,10]],[1708994182,[5,6,6,7,7,7,9,9,10,10]],[1708994183,[5,6,6,7,7,7,7,7,10,11]],[1708994184,[4,6,6,6,6,6,7,7,8,9]],[1708994185,[5,6,7,124,148,191,237,283,313,325]],[1708994186,[4,5,5,6,6,6,6,7,7,9]],[1708994187,[4,5,5,6,6,7,7,7,7,8]],[1708994188,[4,5,6,6,6,7,7,8,10,10]],[1708994189,[4,5,6,6,6,7,8,8,9,11]],[1708994190,[4,5,5,6,6,6,7,7,8,8]],[1708994191,[3,5,6,7,7,8,8,32,68,82]],[1708994192,[4,5,6,7,8,8,8,8,9,9]],[1708994193,[4,5,6,7,7,7,7,8,9,10]],[1708994194,[3,5,6,7,7,7,8,8,9,10]],[1708994195,[3,5,5,6,6,7,7,8,8,9]],[1708994196,[4,5,5,6,6,6,6,7,7,10]],[1708994197,[3,5,6,6,6,6,7,7,11,11]],[1708994198,[4,5,5,6,6,6,6,7,7,9]],[1708994199,[4,5,5,6,6,6,7,7,19,20]],[1708994200,[4,5,6,6,6,6,7,8,9,9]],[1708994201,[4,5,6,6,6,6,7,8,9,11]],[1708994202,[4,5,6,6,7,7,7,8,8,8]],[1708994203,[4,5,6,7,7,7,8,8,10,10]],[1708994204,[4,5,6,7,7,7,8,8,10,11]],[1708994205,[4,5,5,6,6,6,7,7,8,9]],[1708994206,[4,5,5,6,6,6,7,7,8,11]],[1708994207,[3,5,6,6,6,6,6,7,7,8]],[1708994208,[3,5,5,6,6,6,6,7,7,9]],[1708994209,[3,5,5,6,6,6,6,6,8,9]],[1708994210,[3,4,5,6,6,6,7,7,9,9]],[1708994211,[3,5,5,6,6,6,6,6,7,9]],[1708994212,[3,5,5,6,6,7,7,8,9,10]],[1708994213,[3,5,5,6,6,6,7,7,9,9]],[1708994214,[4,5,5,6,6,6,7,7,14,17]],[1708994215,[3,5,5,6,6,7,7,8,8,9]],[1708994216,[4,5,5,6,6,6,7,7,8,9]],[1708994217,[4,5,5,6,6,7,7,8,9,11]],[1708994218,[3,5,5,6,6,6,6,7,8,9]],[1708994219,[4,5,5,6,6,6,6,7,8,9]],[1708994220,[4,5,5,6,6,6,6,6,7,9]],[1708994221,[4,5,5,6,6,6,6,7,8,8]],[1708994222,[3,4,5,6,6,6,6,6,7,9]],[1708994223,[3,5,5,6,6,6,6,7,8,10]],[1708994224,[3,5,5,6,6,6,6,7,8,9]],[1708994225,[3,5,5,6,6,6,7,8,8,9]],[1708994226,[3,5,5,6,6,7,7,8,9,9]],[1708994227,[3,4,5,6,6,6,7,7,10,18]],[1708994228,[3,5,5,6,6,6,7,7,9,9]],[1708994229,[4,5,6,6,6,7,7,7,10,11]],[1708994230,[3,4,5,6,6,6,6,7,8,9]],[1708994231,[3,4,5,5,5,5,6,6,8,9]],[1708994232,[3,4,5,5,5,6,6,6,8,8]],[1708994233,[4,5,5,6,6,6,6,6,7,8]],[1708994234,[3,5,5,6,6,6,6,7,7,10]],[1708994235,[3,4,5,5,6,6,6,6,7,8]],[1708994236,[3,4,5,6,6,6,7,7,8,9]],[1708994237,[3,5,5,6,6,7,7,8,9,11]],[1708994238,[3,5,5,6,6,6,7,7,9,10]],[1708994239,[3,5,5,6,6,6,6,7,8,9]],[1708994240,[3,5,5,6,6,7,7,8,14,19]],[1708994241,[3,5,5,5,6,6,6,6,7,9]],[1708994242,[3,5,5,6,6,6,6,7,22,28]],[1708994243,[3,4,5,6,6,6,6,7,8,8]],[1708994244,[3,4,5,6,6,6,6,7,11,13]],[1708994245,[3,4,5,5,6,6,6,7,8,9]],[1708994246,[3,4,5,5,5,6,7,7,8,9]],[1708994247,[4,5,5,6,6,6,7,7,8,11]],[1708994248,[3,4,5,5,5,6,6,6,7,8]],[1708994249,[3,4,5,5,6,6,6,7,8,10]],[1708994250,[3,5,5,6,6,7,7,8,8,11]],[1708994251,[3,5,5,6,6,6,6,7,9,9]],[1708994252,[3,5,5,6,6,6,7,9,12,20]],[1708994253,[3,4,5,5,5,6,6,6,12,19]],[1708994254,[3,4,5,5,6,6,6,7,13,15]],[1708994255,[3,5,5,6,6,7,7,9,16,22]],[1708994256,[3,5,5,9,12,19,26,32,42,48]],[1708994257,[3,22,56,110,120,127,140,156,185,217]],[1708994258,[95,159,189,220,232,242,256,271,300,321]],[1708994259,[185,278,313,345,356,365,375,389,416,427]],[1708994260,[297,381,420,495,510,527,551,576,600,656]],[1708994261,[416,530,585,652,667,680,698,717,751,764]],[1708994262,[553,675,736,819,835,851,865,880,905,927]],[1708994263,[700,832,907,988,1017,1034,1063,1080,1109,1131]],[1708994264,[876,995,1088,1179,1188,1198,1210,1225,1254,1268]],[1708994265,[958,1003,1084,1160,1168,1173,1183,1195,1232,1256]],[1708994266,[944,995,1096,1177,1184,1189,1194,1204,1234,1250]],[1708994267,[902,968,1045,1179,1184,1192,1202,1224,1246,1252]],[1708994268,[915,980,1163,1229,1234,1239,1253,1259,1276,1296]],[1708994269,[888,957,1102,1223,1234,1240,1246,1257,1271,1298]],[1708994270,[882,964,1044,1238,1247,1255,1262,1271,1284,1317]],[1708994271,[885,953,1098,1239,1243,1248,1260,1266,1292,1302]],[1708994272,[884,955,1123,1232,1237,1244,1252,1257,1277,1289]],[1708994273,[890,963,1107,1250,1257,1265,1271,1283,1296,1343]],[1708994274,[880,943,993,1256,1260,1263,1268,1276,1287,1293]],[1708994275,[886,944,1195,1264,1269,1274,1282,1288,1298,1330]],[1708994276,[868,948,1029,1215,1237,1246,1254,1268,1278,1341]],[1708994277,[876,963,1164,1218,1237,1244,1255,1269,1288,1354]],[1708994278,[893,962,1037,1242,1249,1255,1260,1267,1286,1298]],[1708994279,[871,952,1153,1208,1223,1239,1246,1251,1263,1274]],[1708994280,[888,963,1051,1213,1229,1243,1250,1257,1272,1300]],[1708994281,[905,979,1095,1198,1207,1220,1229,1247,1262,1282]],[1708994282,[913,975,1114,1178,1183,1193,1199,1221,1238,1252]],[1708994283,[906,974,1097,1193,1200,1206,1226,1241,1256,1268]],[1708994284,[860,944,1041,1224,1238,1244,1251,1261,1279,1290]],[1708994285,[893,972,1095,1211,1226,1247,1254,1261,1274,1280]],[1708994286,[908,977,1093,1253,1260,1264,1267,1274,1287,1295]],[1708994287,[893,962,1132,1245,1255,1261,1264,1271,1284,1299]],[1708994288,[894,960,1122,1263,1266,1272,1277,1286,1298,1304]],[1708994289,[903,974,1129,1255,1259,1263,1269,1275,1286,1290]],[1708994290,[884,964,1091,1258,1263,1267,1271,1283,1323,1345]],[1708994291,[877,960,1088,1253,1259,1264,1268,1277,1290,1334]],[1708994292,[859,912,988,1263,1267,1273,1278,1288,1335,1366]],[1708994293,[868,910,1046,1259,1264,1268,1276,1284,1317,1346]],[1708994294,[854,900,1082,1255,1261,1266,1273,1284,1293,1334]],[1708994295,[807,873,1029,1284,1288,1292,1297,1305,1348,1350]],[1708994296,[802,877,1213,1300,1307,1318,1347,1362,1394,1439]],[1708994297,[819,883,968,1307,1317,1340,1350,1356,1370,1375]],[1708994298,[827,893,1094,1274,1279,1288,1293,1303,1351,1365]],[1708994299,[821,891,1072,1242,1248,1253,1258,1270,1288,1311]],[1708994300,[823,896,1180,1250,1255,1257,1263,1273,1285,1299]],[1708994301,[819,897,1081,1255,1258,1262,1270,1280,1307,1334]],[1708994302,[874,950,1052,1251,1257,1263,1266,1275,1292,1295]],[1708994303,[850,890,1049,1176,1183,1193,1200,1220,1249,1258]],[1708994304,[842,919,1140,1221,1239,1248,1255,1266,1287,1330]],[1708994305,[863,935,990,1219,1240,1251,1257,1264,1290,1300]],[1708994306,[890,957,1091,1204,1210,1231,1244,1255,1267,1271]],[1708994307,[874,963,1101,1239,1247,1252,1257,1268,1291,1336]],[1708994308,[873,937,1164,1229,1244,1248,1256,1267,1283,1333]],[1708994309,[853,901,971,1228,1237,1245,1254,1262,1274,1301]],[1708994310,[825,895,1082,1261,1266,1271,1276,1287,1325,1353]],[1708994311,[858,920,1191,1262,1265,1271,1276,1287,1316,1343]],[1708994312,[852,901,973,1238,1246,1251,1258,1266,1282,1327]],[1708994313,[858,922,1073,1242,1249,1256,1267,1280,1312,1327]],[1708994314,[884,945,1174,1236,1245,1250,1257,1266,1275,1291]],[1708994315,[881,958,1115,1263,1268,1274,1280,1284,1301,1349]],[1708994316,[873,952,1092,1259,1265,1272,1281,1294,1329,1361]],[1708994317,[883,968,1134,1284,1290,1293,1301,1321,1341,1374]],[1708994318,[822,898,1073,1240,1251,1255,1266,1280,1322,1358]],[1708994319,[839,912,996,1212,1225,1235,1244,1255,1276,1320]],[1708994320,[824,894,1159,1219,1231,1239,1252,1260,1284,1296]],[1708994321,[866,911,1035,1254,1259,1264,1271,1281,1295,1351]],[1708994322,[818,897,1081,1262,1267,1271,1277,1289,1311,1340]],[1708994323,[786,860,1210,1280,1287,1294,1301,1314,1350,1364]],[1708994324,[825,887,966,1290,1294,1299,1310,1344,1356,1382]],[1708994325,[868,904,1067,1287,1291,1298,1307,1341,1349,1372]],[1708994326,[814,874,1023,1268,1272,1281,1290,1299,1342,1358]],[1708994327,[781,886,1175,1226,1235,1247,1253,1262,1272,1282]],[1708994328,[821,892,974,1238,1247,1255,1259,1269,1295,1330]],[1708994329,[807,878,1033,1203,1213,1237,1243,1252,1263,1267]],[1708994330,[810,880,1151,1208,1219,1241,1248,1261,1278,1288]],[1708994331,[866,945,1025,1259,1263,1266,1275,1283,1300,1331]],[1708994332,[825,895,1165,1210,1229,1242,1250,1259,1269,1275]],[1708994333,[817,889,977,1201,1214,1232,1241,1249,1269,1291]],[1708994334,[855,893,1031,1202,1211,1230,1239,1250,1272,1303]],[1708994335,[856,899,1128,1226,1241,1250,1257,1268,1288,1294]],[1708994336,[827,888,1067,1251,1256,1265,1270,1277,1291,1301]],[1708994337,[797,862,948,1237,1244,1250,1254,1263,1274,1281]],[1708994338,[780,857,1054,1241,1249,1255,1258,1269,1280,1299]],[1708994339,[771,841,1051,1278,1282,1292,1303,1329,1353,1418]],[1708994340,[767,850,1239,1294,1300,1309,1326,1338,1351,1362]],[1708994341,[796,859,909,1287,1295,1302,1319,1342,1361,1371]],[1708994342,[792,857,1209,1281,1285,1290,1297,1327,1342,1350]],[1708994343,[797,869,1035,1274,1279,1285,1293,1299,1344,1358]],[1708994344,[813,879,1083,1272,1278,1285,1290,1299,1345,1366]],[1708994345,[781,864,944,1274,1276,1283,1291,1300,1337,1344]],[1708994346,[762,832,1046,1250,1254,1258,1267,1277,1292,1304]],[1708994347,[792,858,1193,1264,1270,1273,1282,1292,1303,1334]],[1708994348,[802,867,1074,1267,1274,1279,1287,1294,1343,1356]],[1708994349,[792,864,942,1261,1268,1271,1278,1290,1333,1350]],[1708994350,[816,877,1115,1272,1275,1282,1286,1296,1329,1345]],[1708994351,[789,858,1059,1253,1259,1268,1276,1291,1328,1333]],[1708994352,[786,853,1061,1261,1270,1274,1281,1286,1300,1314]],[1708994353,[778,847,914,1270,1275,1280,1291,1296,1336,1356]],[1708994354,[806,868,1077,1267,1273,1279,1283,1296,1324,1343]],[1708994355,[799,873,1206,1278,1285,1291,1295,1302,1352,1369]],[1708994356,[810,871,934,1273,1278,1283,1290,1299,1338,1345]],[1708994357,[812,877,1206,1273,1277,1282,1286,1299,1335,1347]],[1708994358,[815,882,976,1270,1275,1282,1289,1300,1340,1354]],[1708994359,[815,871,1158,1229,1237,1248,1255,1270,1282,1287]],[1708994360,[799,858,928,1253,1258,1265,1272,1284,1300,1315]],[1708994361,[805,875,1204,1280,1286,1291,1298,1313,1342,1361]],[1708994362,[811,881,953,1267,1276,1284,1289,1299,1337,1353]],[1708994363,[758,838,1037,1257,1264,1270,1276,1285,1300,1335]],[1708994364,[782,858,1023,1294,1301,1310,1335,1348,1384,1405]],[1708994365,[771,835,1066,1274,1283,1288,1296,1309,1336,1339]],[1708994366,[775,834,1034,1260,1263,1267,1271,1277,1289,1328]],[1708994367,[798,862,1023,1265,1268,1275,1280,1291,1331,1342]],[1708994368,[796,861,1028,1263,1267,1273,1278,1288,1313,1326]],[1708994369,[817,878,1082,1277,1283,1288,1293,1303,1340,1357]],[1708994370,[803,875,1076,1271,1277,1286,1290,1297,1324,1351]],[1708994371,[807,878,1134,1274,1282,1289,1294,1308,1342,1378]],[1708994372,[755,830,1009,1267,1272,1278,1285,1292,1316,1325]],[1708994373,[769,852,939,1267,1272,1279,1290,1304,1337,1353]],[1708994374,[789,847,1195,1260,1267,1271,1281,1291,1318,1339]],[1708994375,[789,851,901,1260,1265,1274,1281,1292,1310,1339]],[1708994376,[768,839,1041,1243,1251,1259,1266,1273,1285,1301]],[1708994377,[802,865,1180,1270,1273,1280,1285,1297,1334,1337]],[1708994378,[790,854,1054,1217,1235,1241,1247,1257,1284,1325]],[1708994379,[785,845,942,1245,1252,1262,1273,1282,1306,1314]],[1708994380,[780,844,1058,1233,1240,1248,1254,1264,1279,1289]],[1708994381,[802,853,1055,1237,1244,1250,1260,1270,1290,1309]],[1708994382,[779,855,1044,1209,1219,1231,1237,1246,1254,1267]],[1708994383,[801,859,1056,1227,1240,1247,1252,1263,1293,1335]],[1708994384,[802,865,1164,1222,1233,1240,1248,1258,1270,1292]],[1708994385,[809,876,945,1240,1248,1256,1265,1280,1302,1331]],[1708994386,[817,879,1159,1209,1228,1233,1242,1253,1270,1284]],[1708994387,[845,895,1070,1196,1202,1213,1229,1238,1252,1276]],[1708994388,[802,891,977,1191,1198,1211,1227,1239,1257,1274]],[1708994389,[803,880,1150,1211,1222,1234,1249,1264,1273,1287]],[1708994390,[862,914,1050,1257,1264,1268,1274,1282,1294,1311]],[1708994391,[792,874,954,1194,1199,1206,1223,1235,1250,1257]],[1708994392,[801,873,1126,1185,1190,1199,1209,1223,1247,1278]],[1708994393,[833,890,965,1198,1205,1214,1241,1259,1270,1288]],[1708994394,[878,922,1080,1242,1250,1255,1262,1269,1279,1300]],[1708994395,[856,911,1114,1248,1253,1259,1266,1275,1290,1298]],[1708994396,[780,865,948,1199,1208,1223,1231,1241,1266,1301]],[1708994397,[785,870,1042,1192,1197,1204,1219,1229,1241,1250]],[1708994398,[773,843,1123,1209,1218,1234,1249,1260,1279,1286]],[1708994399,[811,871,1023,1233,1241,1249,1256,1266,1279,1298]],[1708994400,[803,874,1051,1198,1209,1226,1233,1244,1256,1263]],[1708994401,[802,864,946,1243,1248,1257,1263,1275,1297,1334]],[1708994402,[792,864,1058,1252,1258,1267,1275,1281,1308,1331]],[1708994403,[797,863,1067,1248,1254,1260,1265,1274,1292,1301]],[1708994404,[810,891,1171,1245,1253,1258,1266,1274,1292,1316]],[1708994405,[798,855,1054,1252,1262,1269,1275,1287,1310,1321]],[1708994406,[785,861,925,1265,1271,1275,1284,1296,1324,1367]],[1708994407,[764,839,1043,1260,1269,1276,1284,1295,1326,1336]],[1708994408,[780,852,1010,1193,1209,1236,1248,1265,1279,1297]],[1708994409,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([[1708994163,[25,25,0]],[1708994164,[1,1,0]],[1708994165,[25,25,0]],[1708994166,[1,1,0]],[1708994167,[71,71,0]],[1708994168,[3,3,0]],[1708994169,[6,6,0]],[1708994170,[9,9,0]],[1708994171,[11,11,0]],[1708994172,[13,13,0]],[1708994173,[18,18,0]],[1708994174,[19,19,0]],[1708994175,[24,24,0]],[1708994176,[26,26,0]],[1708994177,[27,27,0]],[1708994178,[32,32,0]],[1708994179,[34,34,0]],[1708994180,[37,37,0]],[1708994181,[39,39,0]],[1708994182,[43,43,0]],[1708994183,[44,44,0]],[1708994184,[48,48,0]],[1708994185,[50,50,0]],[1708994186,[54,54,0]],[1708994187,[56,56,0]],[1708994188,[61,61,0]],[1708994189,[61,61,0]],[1708994190,[65,65,0]],[1708994191,[67,67,0]],[1708994192,[70,70,0]],[1708994193,[73,73,0]],[1708994194,[77,77,0]],[1708994195,[79,79,0]],[1708994196,[81,81,0]],[1708994197,[84,84,0]],[1708994198,[88,88,0]],[1708994199,[91,91,0]],[1708994200,[92,92,0]],[1708994201,[96,96,0]],[1708994202,[98,98,0]],[1708994203,[101,101,0]],[1708994204,[105,105,0]],[1708994205,[107,107,0]],[1708994206,[110,110,0]],[1708994207,[112,112,0]],[1708994208,[116,116,0]],[1708994209,[118,118,0]],[1708994210,[121,121,0]],[1708994211,[123,123,0]],[1708994212,[126,126,0]],[1708994213,[129,129,0]],[1708994214,[133,133,0]],[1708994215,[135,135,0]],[1708994216,[138,138,0]],[1708994217,[141,141,0]],[1708994218,[143,143,0]],[1708994219,[147,147,0]],[1708994220,[149,149,0]],[1708994221,[151,151,0]],[1708994222,[155,155,0]],[1708994223,[157,157,0]],[1708994224,[160,160,0]],[1708994225,[163,163,0]],[1708994226,[166,166,0]],[1708994227,[170,170,0]],[1708994228,[171,171,0]],[1708994229,[175,175,0]],[1708994230,[176,176,0]],[1708994231,[181,181,0]],[1708994232,[183,183,0]],[1708994233,[186,186,0]],[1708994234,[187,187,0]],[1708994235,[192,192,0]],[1708994236,[195,195,0]],[1708994237,[196,196,0]],[1708994238,[199,199,0]],[1708994239,[203,203,0]],[1708994240,[205,205,0]],[1708994241,[207,207,0]],[1708994242,[211,211,0]],[1708994243,[213,213,0]],[1708994244,[217,217,0]],[1708994245,[220,220,0]],[1708994246,[222,222,0]],[1708994247,[225,225,0]],[1708994248,[227,227,0]],[1708994249,[231,231,0]],[1708994250,[233,233,0]],[1708994251,[236,236,0]],[1708994252,[238,238,0]],[1708994253,[243,243,0]],[1708994254,[244,244,0]],[1708994255,[248,248,0]],[1708994256,[251,251,0]],[1708994257,[251,251,0]],[1708994258,[257,257,0]],[1708994259,[259,259,0]],[1708994260,[262,262,0]],[1708994261,[264,264,0]],[1708994262,[266,266,0]],[1708994263,[270,270,0]],[1708994264,[273,250,23]],[1708994265,[275,220,55]],[1708994266,[279,234,45]],[1708994267,[281,227,54]],[1708994268,[283,229,54]],[1708994269,[286,228,58]],[1708994270,[290,223,67]],[1708994271,[292,230,62]],[1708994272,[295,231,64]],[1708994273,[299,228,71]],[1708994274,[300,223,77]],[1708994275,[304,231,73]],[1708994276,[306,227,79]],[1708994277,[309,235,74]],[1708994278,[312,223,89]],[1708994279,[315,231,84]],[1708994280,[317,227,90]],[1708994281,[320,228,92]],[1708994282,[323,227,96]],[1708994283,[326,230,96]],[1708994284,[330,231,99]],[1708994285,[332,234,98]],[1708994286,[334,228,106]],[1708994287,[337,223,114]],[1708994288,[340,230,110]],[1708994289,[340,226,114]],[1708994290,[340,222,118]],[1708994291,[340,224,116]],[1708994292,[340,231,109]],[1708994293,[340,228,112]],[1708994294,[340,232,108]],[1708994295,[340,238,102]],[1708994296,[340,231,109]],[1708994297,[340,227,113]],[1708994298,[340,222,118]],[1708994299,[340,236,104]],[1708994300,[340,229,111]],[1708994301,[340,234,106]],[1708994302,[340,225,115]],[1708994303,[340,234,106]],[1708994304,[340,241,99]],[1708994305,[340,231,109]],[1708994306,[340,226,114]],[1708994307,[340,226,114]],[1708994308,[340,233,107]],[1708994309,[340,231,109]],[1708994310,[340,234,106]],[1708994311,[340,229,111]],[1708994312,[340,227,113]],[1708994313,[340,234,106]],[1708994314,[340,229,111]],[1708994315,[340,230,110]],[1708994316,[340,230,110]],[1708994317,[340,220,120]],[1708994318,[340,228,112]],[1708994319,[340,227,113]],[1708994320,[340,239,101]],[1708994321,[340,235,105]],[1708994322,[340,222,118]],[1708994323,[340,247,93]],[1708994324,[340,223,117]],[1708994325,[340,224,116]],[1708994326,[340,228,112]],[1708994327,[340,235,105]],[1708994328,[340,235,105]],[1708994329,[340,230,110]],[1708994330,[340,243,97]],[1708994331,[340,235,105]],[1708994332,[340,227,113]],[1708994333,[340,239,101]],[1708994334,[340,232,108]],[1708994335,[340,243,97]],[1708994336,[340,230,110]],[1708994337,[340,229,111]],[1708994338,[340,238,102]],[1708994339,[340,240,100]],[1708994340,[340,237,103]],[1708994341,[340,227,113]],[1708994342,[340,237,103]],[1708994343,[340,230,110]],[1708994344,[340,234,106]],[1708994345,[340,229,111]],[1708994346,[340,238,102]],[1708994347,[340,241,99]],[1708994348,[340,232,108]],[1708994349,[340,237,103]],[1708994350,[340,231,109]],[1708994351,[340,232,108]],[1708994352,[340,234,106]],[1708994353,[340,241,99]],[1708994354,[340,232,108]],[1708994355,[340,233,107]],[1708994356,[340,231,109]],[1708994357,[340,237,103]],[1708994358,[340,223,117]],[1708994359,[340,239,101]],[1708994360,[340,237,103]],[1708994361,[340,239,101]],[1708994362,[340,225,115]],[1708994363,[340,236,104]],[1708994364,[340,236,104]],[1708994365,[340,234,106]],[1708994366,[340,236,104]],[1708994367,[340,238,102]],[1708994368,[340,234,106]],[1708994369,[340,238,102]],[1708994370,[340,228,112]],[1708994371,[340,229,111]],[1708994372,[340,234,106]],[1708994373,[340,237,103]],[1708994374,[340,237,103]],[1708994375,[340,229,111]],[1708994376,[340,240,100]],[1708994377,[340,237,103]],[1708994378,[340,234,106]],[1708994379,[340,241,99]],[1708994380,[340,234,106]],[1708994381,[340,238,102]],[1708994382,[340,242,98]],[1708994383,[340,238,102]],[1708994384,[340,239,101]],[1708994385,[340,237,103]],[1708994386,[340,233,107]],[1708994387,[340,234,106]],[1708994388,[340,233,107]],[1708994389,[340,249,91]],[1708994390,[340,228,112]],[1708994391,[340,231,109]],[1708994392,[340,239,101]],[1708994393,[340,245,95]],[1708994394,[340,234,106]],[1708994395,[340,229,111]],[1708994396,[340,237,103]],[1708994397,[340,232,108]],[1708994398,[340,249,91]],[1708994399,[340,232,108]],[1708994400,[340,240,100]],[1708994401,[340,237,103]],[1708994402,[340,238,102]],[1708994403,[340,234,106]],[1708994404,[340,233,107]],[1708994405,[340,238,102]],[1708994406,[340,231,109]],[1708994407,[340,246,94]],[1708994408,[166,106,60]],[1708994409,[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'
}, {