-
Notifications
You must be signed in to change notification settings - Fork 923
/
Copy pathindex.html
1205 lines (1135 loc) · 96.7 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="shortcut icon" type="image/x-icon" href="style/favicon.ico"/>
<link href="style/style.css" rel="stylesheet" type="text/css" />
<link href="style/bootstrap.min.css" rel="stylesheet" type="text/css" />
<script src="js/jquery-3.5.1.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/gatling.js"></script>
<script src="js/menu.js"></script>
<script src="js/ellipsis.js"></script>
<script src="js/all_sessions.js"></script>
<script src="js/stats.js"></script>
<script src="js/highstock.js"></script>
<script src="js/highcharts-more.js"></script>
<script src="js/theme.js"></script>
<script src="js/unpack.js"></script>
<title>Gatling Stats - Global Information</title>
</head>
<body>
<script>
const storedTheme = localStorage.getItem('theme') || (window.matchMedia("(prefers-color-scheme: dark)").matches ? "dark" : "light");
if (storedTheme) document.documentElement.setAttribute('data-theme', storedTheme)
function toggleTheme() {
const currentTheme = document.documentElement.getAttribute("data-theme");
const targetTheme = currentTheme === "light" ? "dark" : "light";
document.documentElement.setAttribute('data-theme', targetTheme)
localStorage.setItem('theme', targetTheme);
};
</script>
<div class="app-container">
<div class="frise"></div>
<div class="head">
<div class="gatling-open-source">
<a class="gatling-logo gatling-logo-light" href="https://gatling.io" target="blank_" title="Gatling Home Page"><img alt="Gatling" src="style/logo-light.svg"/></a>
<a class="gatling-logo gatling-logo-dark" href="https://gatling.io" target="blank_" title="Gatling Home Page"><img alt="Gatling" src="style/logo-dark.svg"/></a>
<a class="gatling-documentation" href="https://gatling.io/docs/" target="_blank">Documentation</a>
</div>
<div class="nav spacer"></div>
<a class="enterprise" href="https://gatling.io/enterprise/next-step/" target="_blank"><strong>Try</strong>
<img class="logo-enterprise-light" alt="Gatling Enterprise" src="style/logo-enterprise-light.svg"/>
<img class="logo-enterprise-dark" alt="Gatling Enterprise" src="style/logo-enterprise-dark.svg"/>
</a>
<button id="theme-toggle" class="theme-toggle" type="button" onclick="toggleTheme()" aria-label="Toggle user interface mode">
<span class="toggle-dark"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-moon"><path d="M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z"></path></svg></span>
<span class="toggle-light"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-sun"><circle cx="12" cy="12" r="5"></circle><line x1="12" y1="1" x2="12" y2="3"></line><line x1="12" y1="21" x2="12" y2="23"></line><line x1="4.22" y1="4.22" x2="5.64" y2="5.64"></line><line x1="18.36" y1="18.36" x2="19.78" y2="19.78"></line><line x1="1" y1="12" x2="3" y2="12"></line><line x1="21" y1="12" x2="23" y2="12"></line><line x1="4.22" y1="19.78" x2="5.64" y2="18.36"></line><line x1="18.36" y1="5.64" x2="19.78" y2="4.22"></line></svg></span>
</button>
</div>
<div class="container details">
<div class="nav">
<ul></ul>
</div>
<div class="cadre">
<div class="content">
<div class="content-header">
<div class="onglet">
RinhaBackendCrebitosSimulation
</div>
<div class="sous-menu" id="sousMenu">
<div class="sous-menu-spacer">
<div class="item ouvert"><a href="index.html">Global</a></div>
<div class="item "><a id="details_link" href="#">Details</a></div>
</div>
</div>
</div>
<div class="content-in">
<div class="container-article">
<div class="article">
<div class="schema-container">
<div id="ranges" class="schema ranges">
</div>
<div class="schema polar">
<div id="container_number_of_requests"></div>
</div>
<div class="simulation-card">
<div class="simulation-version-information">
<span class="simulation-information-title">Gatling Version</span>
<span class="simulation-information-item">
<span class="simulation-information-label">Version: </span>
<span>3.10.3</span>
</span>
<span class="simulation-information-item">
<span class="simulation-information-label">Released: </span>
<span>2023-12-20</span>
</span>
</div>
<div id="simulation-information" class="simulation-version-information">
<span class="simulation-information-title">Run Information</span>
<div class="simulation-information-container">
<span class="simulation-information-item">
<span class="simulation-information-label">Date: </span>
<span>2024-02-19 07:27:27 GMT</span>
</span>
<span class="simulation-information-item">
<span class="simulation-information-label">Duration: </span>
<span>4m 4s </span>
</span>
<span class="simulation-tooltip simulation-information-item description" title="Description" data-content="Rinha de Backend - 2024/Q1: Crébito - gutkedu-nodejs">
<span class="simulation-information-label">Description: </span>
<span>Rinha de Backend - 2024/Q1: Crébito - gutkedu-nodejs</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">jmesPath(ultimas_transacoes[0].valor).find.is(1), but actually found -1<span class="value" style="display:none">0</span></td>
<td class="value error-col-2 total ko">5</td>
<td class="value error-col-3 total ko">62.5 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">jmesPath(saldo.total).find.is(0), but actually found -1<span class="value" style="display:none">1</span></td>
<td class="value error-col-2 total ko">2</td>
<td class="value error-col-3 total ko">25 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">jmesPath(saldo.total).find.is(-25), but actually found -4<span class="value" style="display:none">2</span></td>
<td class="value error-col-2 total ko">1</td>
<td class="value error-col-3 total ko">12.5 %</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: [
[1708327647000,0],[1708327648000,0],[1708327649000,0],[1708327650000,0],[1708327651000,1],[1708327652000,2],[1708327653000,2],[1708327654000,4],[1708327655000,4],[1708327656000,5],[1708327657000,6],[1708327658000,7],[1708327659000,8],[1708327660000,8],[1708327661000,10],[1708327662000,10],[1708327663000,12],[1708327664000,12],[1708327665000,14],[1708327666000,14],[1708327667000,15],[1708327668000,16],[1708327669000,17],[1708327670000,17],[1708327671000,19],[1708327672000,20],[1708327673000,20],[1708327674000,22],[1708327675000,22],[1708327676000,23],[1708327677000,25],[1708327678000,25],[1708327679000,26],[1708327680000,26],[1708327681000,28],[1708327682000,29],[1708327683000,30],[1708327684000,30],[1708327685000,32],[1708327686000,32],[1708327687000,33],[1708327688000,34],[1708327689000,35],[1708327690000,36],[1708327691000,37],[1708327692000,38],[1708327693000,39],[1708327694000,39],[1708327695000,41],[1708327696000,41],[1708327697000,43],[1708327698000,43],[1708327699000,44],[1708327700000,45],[1708327701000,46],[1708327702000,47],[1708327703000,48],[1708327704000,48],[1708327705000,50],[1708327706000,50],[1708327707000,52],[1708327708000,53],[1708327709000,53],[1708327710000,55],[1708327711000,56],[1708327712000,56],[1708327713000,58],[1708327714000,59],[1708327715000,60],[1708327716000,59],[1708327717000,61],[1708327718000,61],[1708327719000,63],[1708327720000,63],[1708327721000,64],[1708327722000,65],[1708327723000,66],[1708327724000,67],[1708327725000,68],[1708327726000,68],[1708327727000,70],[1708327728000,70],[1708327729000,72],[1708327730000,72],[1708327731000,73],[1708327732000,74],[1708327733000,75],[1708327734000,76],[1708327735000,77],[1708327736000,78],[1708327737000,79],[1708327738000,79],[1708327739000,81],[1708327740000,81],[1708327741000,83],[1708327742000,83],[1708327743000,85],[1708327744000,85],[1708327745000,86],[1708327746000,86],[1708327747000,88],[1708327748000,89],[1708327749000,89],[1708327750000,91],[1708327751000,91],[1708327752000,92],[1708327753000,94],[1708327754000,94],[1708327755000,95],[1708327756000,96],[1708327757000,97],[1708327758000,97],[1708327759000,99],[1708327760000,99],[1708327761000,101],[1708327762000,101],[1708327763000,103],[1708327764000,104],[1708327765000,104],[1708327766000,106],[1708327767000,107],[1708327768000,108],[1708327769000,169],[1708327770000,213],[1708327771000,210],[1708327772000,199],[1708327773000,223],[1708327774000,172],[1708327775000,146],[1708327776000,123],[1708327777000,111],[1708327778000,111],[1708327779000,158],[1708327780000,142],[1708327781000,126],[1708327782000,111],[1708327783000,192],[1708327784000,197],[1708327785000,161],[1708327786000,140],[1708327787000,177],[1708327788000,215],[1708327789000,218],[1708327790000,183],[1708327791000,146],[1708327792000,135],[1708327793000,157],[1708327794000,212],[1708327795000,224],[1708327796000,177],[1708327797000,148],[1708327798000,134],[1708327799000,111],[1708327800000,129],[1708327801000,121],[1708327802000,169],[1708327803000,181],[1708327804000,153],[1708327805000,127],[1708327806000,145],[1708327807000,112],[1708327808000,113],[1708327809000,112],[1708327810000,111],[1708327811000,112],[1708327812000,170],[1708327813000,200],[1708327814000,223],[1708327815000,182],[1708327816000,161],[1708327817000,142],[1708327818000,126],[1708327819000,111],[1708327820000,111],[1708327821000,110],[1708327822000,112],[1708327823000,111],[1708327824000,111],[1708327825000,114],[1708327826000,111],[1708327827000,111],[1708327828000,112],[1708327829000,111],[1708327830000,111],[1708327831000,144],[1708327832000,244],[1708327833000,342],[1708327834000,437],[1708327835000,492],[1708327836000,551],[1708327837000,567],[1708327838000,581],[1708327839000,578],[1708327840000,546],[1708327841000,550],[1708327842000,540],[1708327843000,506],[1708327844000,499],[1708327845000,472],[1708327846000,448],[1708327847000,436],[1708327848000,398],[1708327849000,388],[1708327850000,378],[1708327851000,350],[1708327852000,313],[1708327853000,287],[1708327854000,256],[1708327855000,240],[1708327856000,233],[1708327857000,231],[1708327858000,178],[1708327859000,150],[1708327860000,129],[1708327861000,111],[1708327862000,111],[1708327863000,110],[1708327864000,148],[1708327865000,248],[1708327866000,255],[1708327867000,198],[1708327868000,146],[1708327869000,123],[1708327870000,115],[1708327871000,111],[1708327872000,111],[1708327873000,111],[1708327874000,111],[1708327875000,113],[1708327876000,166],[1708327877000,188],[1708327878000,155],[1708327879000,128],[1708327880000,111],[1708327881000,111],[1708327882000,111],[1708327883000,111],[1708327884000,111],[1708327885000,110],[1708327886000,111],[1708327887000,110],[1708327888000,110],[1708327889000,111],[1708327890000,111],[1708327891000,112]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#68b65c',
name: 'débitos',
data: [
[1708327647000,0],[1708327648000,0],[1708327649000,0],[1708327650000,0],[1708327651000,1],[1708327652000,2],[1708327653000,4],[1708327654000,6],[1708327655000,7],[1708327656000,9],[1708327657000,11],[1708327658000,13],[1708327659000,15],[1708327660000,16],[1708327661000,19],[1708327662000,20],[1708327663000,22],[1708327664000,24],[1708327665000,25],[1708327666000,28],[1708327667000,29],[1708327668000,31],[1708327669000,34],[1708327670000,35],[1708327671000,37],[1708327672000,38],[1708327673000,40],[1708327674000,42],[1708327675000,44],[1708327676000,46],[1708327677000,47],[1708327678000,50],[1708327679000,52],[1708327680000,53],[1708327681000,56],[1708327682000,57],[1708327683000,60],[1708327684000,60],[1708327685000,62],[1708327686000,64],[1708327687000,66],[1708327688000,68],[1708327689000,69],[1708327690000,71],[1708327691000,74],[1708327692000,74],[1708327693000,77],[1708327694000,79],[1708327695000,80],[1708327696000,82],[1708327697000,84],[1708327698000,86],[1708327699000,88],[1708327700000,89],[1708327701000,92],[1708327702000,93],[1708327703000,95],[1708327704000,97],[1708327705000,98],[1708327706000,101],[1708327707000,102],[1708327708000,104],[1708327709000,107],[1708327710000,108],[1708327711000,111],[1708327712000,112],[1708327713000,114],[1708327714000,116],[1708327715000,118],[1708327716000,120],[1708327717000,120],[1708327718000,124],[1708327719000,124],[1708327720000,126],[1708327721000,128],[1708327722000,129],[1708327723000,132],[1708327724000,133],[1708327725000,135],[1708327726000,137],[1708327727000,139],[1708327728000,141],[1708327729000,142],[1708327730000,144],[1708327731000,147],[1708327732000,147],[1708327733000,150],[1708327734000,152],[1708327735000,153],[1708327736000,155],[1708327737000,157],[1708327738000,160],[1708327739000,162],[1708327740000,163],[1708327741000,166],[1708327742000,167],[1708327743000,169],[1708327744000,171],[1708327745000,172],[1708327746000,174],[1708327747000,176],[1708327748000,178],[1708327749000,179],[1708327750000,181],[1708327751000,183],[1708327752000,184],[1708327753000,186],[1708327754000,188],[1708327755000,190],[1708327756000,192],[1708327757000,193],[1708327758000,196],[1708327759000,197],[1708327760000,199],[1708327761000,201],[1708327762000,202],[1708327763000,205],[1708327764000,209],[1708327765000,208],[1708327766000,211],[1708327767000,213],[1708327768000,215],[1708327769000,335],[1708327770000,422],[1708327771000,416],[1708327772000,404],[1708327773000,444],[1708327774000,344],[1708327775000,288],[1708327776000,243],[1708327777000,220],[1708327778000,221],[1708327779000,315],[1708327780000,279],[1708327781000,253],[1708327782000,221],[1708327783000,378],[1708327784000,396],[1708327785000,325],[1708327786000,280],[1708327787000,357],[1708327788000,424],[1708327789000,435],[1708327790000,366],[1708327791000,288],[1708327792000,268],[1708327793000,313],[1708327794000,419],[1708327795000,445],[1708327796000,356],[1708327797000,296],[1708327798000,265],[1708327799000,221],[1708327800000,255],[1708327801000,242],[1708327802000,338],[1708327803000,360],[1708327804000,306],[1708327805000,253],[1708327806000,284],[1708327807000,223],[1708327808000,227],[1708327809000,223],[1708327810000,221],[1708327811000,222],[1708327812000,340],[1708327813000,396],[1708327814000,444],[1708327815000,365],[1708327816000,320],[1708327817000,280],[1708327818000,253],[1708327819000,223],[1708327820000,221],[1708327821000,220],[1708327822000,224],[1708327823000,221],[1708327824000,221],[1708327825000,227],[1708327826000,221],[1708327827000,221],[1708327828000,223],[1708327829000,221],[1708327830000,220],[1708327831000,287],[1708327832000,489],[1708327833000,685],[1708327834000,871],[1708327835000,987],[1708327836000,1088],[1708327837000,1142],[1708327838000,1163],[1708327839000,1172],[1708327840000,1106],[1708327841000,1108],[1708327842000,1094],[1708327843000,1025],[1708327844000,1012],[1708327845000,953],[1708327846000,896],[1708327847000,861],[1708327848000,820],[1708327849000,784],[1708327850000,781],[1708327851000,702],[1708327852000,631],[1708327853000,569],[1708327854000,512],[1708327855000,478],[1708327856000,466],[1708327857000,454],[1708327858000,353],[1708327859000,300],[1708327860000,257],[1708327861000,220],[1708327862000,221],[1708327863000,221],[1708327864000,295],[1708327865000,496],[1708327866000,506],[1708327867000,401],[1708327868000,291],[1708327869000,238],[1708327870000,231],[1708327871000,220],[1708327872000,220],[1708327873000,222],[1708327874000,221],[1708327875000,223],[1708327876000,328],[1708327877000,369],[1708327878000,306],[1708327879000,257],[1708327880000,221],[1708327881000,220],[1708327882000,221],[1708327883000,221],[1708327884000,221],[1708327885000,221],[1708327886000,221],[1708327887000,220],[1708327888000,221],[1708327889000,221],[1708327890000,221],[1708327891000,224]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#f15b4f',
name: 'extratos',
data: [
[1708327647000,0],[1708327648000,0],[1708327649000,0],[1708327650000,0],[1708327651000,1],[1708327652000,2],[1708327653000,1],[1708327654000,1],[1708327655000,1],[1708327656000,1],[1708327657000,2],[1708327658000,1],[1708327659000,2],[1708327660000,2],[1708327661000,1],[1708327662000,2],[1708327663000,2],[1708327664000,2],[1708327665000,2],[1708327666000,2],[1708327667000,2],[1708327668000,2],[1708327669000,3],[1708327670000,2],[1708327671000,3],[1708327672000,2],[1708327673000,3],[1708327674000,2],[1708327675000,3],[1708327676000,3],[1708327677000,3],[1708327678000,3],[1708327679000,3],[1708327680000,3],[1708327681000,3],[1708327682000,4],[1708327683000,3],[1708327684000,3],[1708327685000,4],[1708327686000,3],[1708327687000,4],[1708327688000,4],[1708327689000,4],[1708327690000,4],[1708327691000,4],[1708327692000,4],[1708327693000,4],[1708327694000,4],[1708327695000,4],[1708327696000,4],[1708327697000,5],[1708327698000,4],[1708327699000,5],[1708327700000,5],[1708327701000,4],[1708327702000,5],[1708327703000,5],[1708327704000,5],[1708327705000,5],[1708327706000,5],[1708327707000,5],[1708327708000,5],[1708327709000,6],[1708327710000,5],[1708327711000,6],[1708327712000,5],[1708327713000,6],[1708327714000,5],[1708327715000,6],[1708327716000,6],[1708327717000,6],[1708327718000,6],[1708327719000,6],[1708327720000,6],[1708327721000,6],[1708327722000,7],[1708327723000,6],[1708327724000,6],[1708327725000,7],[1708327726000,6],[1708327727000,7],[1708327728000,7],[1708327729000,7],[1708327730000,7],[1708327731000,7],[1708327732000,7],[1708327733000,7],[1708327734000,7],[1708327735000,7],[1708327736000,7],[1708327737000,8],[1708327738000,7],[1708327739000,8],[1708327740000,8],[1708327741000,7],[1708327742000,8],[1708327743000,8],[1708327744000,8],[1708327745000,8],[1708327746000,8],[1708327747000,8],[1708327748000,8],[1708327749000,9],[1708327750000,8],[1708327751000,9],[1708327752000,8],[1708327753000,9],[1708327754000,8],[1708327755000,9],[1708327756000,9],[1708327757000,9],[1708327758000,9],[1708327759000,9],[1708327760000,9],[1708327761000,9],[1708327762000,10],[1708327763000,9],[1708327764000,9],[1708327765000,10],[1708327766000,9],[1708327767000,10],[1708327768000,10],[1708327769000,15],[1708327770000,19],[1708327771000,19],[1708327772000,18],[1708327773000,21],[1708327774000,16],[1708327775000,13],[1708327776000,11],[1708327777000,10],[1708327778000,10],[1708327779000,15],[1708327780000,13],[1708327781000,12],[1708327782000,10],[1708327783000,18],[1708327784000,19],[1708327785000,15],[1708327786000,13],[1708327787000,16],[1708327788000,20],[1708327789000,20],[1708327790000,17],[1708327791000,13],[1708327792000,12],[1708327793000,13],[1708327794000,19],[1708327795000,20],[1708327796000,16],[1708327797000,14],[1708327798000,12],[1708327799000,10],[1708327800000,12],[1708327801000,11],[1708327802000,15],[1708327803000,17],[1708327804000,14],[1708327805000,12],[1708327806000,13],[1708327807000,10],[1708327808000,11],[1708327809000,10],[1708327810000,10],[1708327811000,10],[1708327812000,16],[1708327813000,19],[1708327814000,20],[1708327815000,18],[1708327816000,15],[1708327817000,13],[1708327818000,12],[1708327819000,10],[1708327820000,10],[1708327821000,10],[1708327822000,10],[1708327823000,10],[1708327824000,10],[1708327825000,11],[1708327826000,10],[1708327827000,10],[1708327828000,10],[1708327829000,10],[1708327830000,10],[1708327831000,13],[1708327832000,23],[1708327833000,31],[1708327834000,40],[1708327835000,45],[1708327836000,49],[1708327837000,57],[1708327838000,63],[1708327839000,66],[1708327840000,64],[1708327841000,66],[1708327842000,63],[1708327843000,55],[1708327844000,55],[1708327845000,56],[1708327846000,53],[1708327847000,51],[1708327848000,48],[1708327849000,43],[1708327850000,44],[1708327851000,36],[1708327852000,30],[1708327853000,27],[1708327854000,24],[1708327855000,22],[1708327856000,22],[1708327857000,21],[1708327858000,16],[1708327859000,14],[1708327860000,12],[1708327861000,10],[1708327862000,10],[1708327863000,10],[1708327864000,14],[1708327865000,23],[1708327866000,23],[1708327867000,19],[1708327868000,13],[1708327869000,11],[1708327870000,11],[1708327871000,10],[1708327872000,10],[1708327873000,10],[1708327874000,10],[1708327875000,11],[1708327876000,15],[1708327877000,17],[1708327878000,14],[1708327879000,12],[1708327880000,10],[1708327881000,10],[1708327882000,10],[1708327883000,10],[1708327884000,10],[1708327885000,10],[1708327886000,10],[1708327887000,10],[1708327888000,10],[1708327889000,10],[1708327890000,10],[1708327891000,10]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FFDD00',
name: 'validação HTTP 404',
data: [
[1708327647000,0],[1708327648000,0],[1708327649000,0],[1708327650000,1],[1708327651000,0],[1708327652000,0],[1708327653000,0],[1708327654000,0],[1708327655000,0],[1708327656000,0],[1708327657000,0],[1708327658000,0],[1708327659000,0],[1708327660000,0],[1708327661000,0],[1708327662000,0],[1708327663000,0],[1708327664000,0],[1708327665000,0],[1708327666000,0],[1708327667000,0],[1708327668000,0],[1708327669000,0],[1708327670000,0],[1708327671000,0],[1708327672000,0],[1708327673000,0],[1708327674000,0],[1708327675000,0],[1708327676000,0],[1708327677000,0],[1708327678000,0],[1708327679000,0],[1708327680000,0],[1708327681000,0],[1708327682000,0],[1708327683000,0],[1708327684000,0],[1708327685000,0],[1708327686000,0],[1708327687000,0],[1708327688000,0],[1708327689000,0],[1708327690000,0],[1708327691000,0],[1708327692000,0],[1708327693000,0],[1708327694000,0],[1708327695000,0],[1708327696000,0],[1708327697000,0],[1708327698000,0],[1708327699000,0],[1708327700000,0],[1708327701000,0],[1708327702000,0],[1708327703000,0],[1708327704000,0],[1708327705000,0],[1708327706000,0],[1708327707000,0],[1708327708000,0],[1708327709000,0],[1708327710000,0],[1708327711000,0],[1708327712000,0],[1708327713000,0],[1708327714000,0],[1708327715000,0],[1708327716000,0],[1708327717000,0],[1708327718000,0],[1708327719000,0],[1708327720000,0],[1708327721000,0],[1708327722000,0],[1708327723000,0],[1708327724000,0],[1708327725000,0],[1708327726000,0],[1708327727000,0],[1708327728000,0],[1708327729000,0],[1708327730000,0],[1708327731000,0],[1708327732000,0],[1708327733000,0],[1708327734000,0],[1708327735000,0],[1708327736000,0],[1708327737000,0],[1708327738000,0],[1708327739000,0],[1708327740000,0],[1708327741000,0],[1708327742000,0],[1708327743000,0],[1708327744000,0],[1708327745000,0],[1708327746000,0],[1708327747000,0],[1708327748000,0],[1708327749000,0],[1708327750000,0],[1708327751000,0],[1708327752000,0],[1708327753000,0],[1708327754000,0],[1708327755000,0],[1708327756000,0],[1708327757000,0],[1708327758000,0],[1708327759000,0],[1708327760000,0],[1708327761000,0],[1708327762000,0],[1708327763000,0],[1708327764000,0],[1708327765000,0],[1708327766000,0],[1708327767000,0],[1708327768000,0],[1708327769000,0],[1708327770000,0],[1708327771000,0],[1708327772000,0],[1708327773000,0],[1708327774000,0],[1708327775000,0],[1708327776000,0],[1708327777000,0],[1708327778000,0],[1708327779000,0],[1708327780000,0],[1708327781000,0],[1708327782000,0],[1708327783000,0],[1708327784000,0],[1708327785000,0],[1708327786000,0],[1708327787000,0],[1708327788000,0],[1708327789000,0],[1708327790000,0],[1708327791000,0],[1708327792000,0],[1708327793000,0],[1708327794000,0],[1708327795000,0],[1708327796000,0],[1708327797000,0],[1708327798000,0],[1708327799000,0],[1708327800000,0],[1708327801000,0],[1708327802000,0],[1708327803000,0],[1708327804000,0],[1708327805000,0],[1708327806000,0],[1708327807000,0],[1708327808000,0],[1708327809000,0],[1708327810000,0],[1708327811000,0],[1708327812000,0],[1708327813000,0],[1708327814000,0],[1708327815000,0],[1708327816000,0],[1708327817000,0],[1708327818000,0],[1708327819000,0],[1708327820000,0],[1708327821000,0],[1708327822000,0],[1708327823000,0],[1708327824000,0],[1708327825000,0],[1708327826000,0],[1708327827000,0],[1708327828000,0],[1708327829000,0],[1708327830000,0],[1708327831000,0],[1708327832000,0],[1708327833000,0],[1708327834000,0],[1708327835000,0],[1708327836000,0],[1708327837000,0],[1708327838000,0],[1708327839000,0],[1708327840000,0],[1708327841000,0],[1708327842000,0],[1708327843000,0],[1708327844000,0],[1708327845000,0],[1708327846000,0],[1708327847000,0],[1708327848000,0],[1708327849000,0],[1708327850000,0],[1708327851000,0],[1708327852000,0],[1708327853000,0],[1708327854000,0],[1708327855000,0],[1708327856000,0],[1708327857000,0],[1708327858000,0],[1708327859000,0],[1708327860000,0],[1708327861000,0],[1708327862000,0],[1708327863000,0],[1708327864000,0],[1708327865000,0],[1708327866000,0],[1708327867000,0],[1708327868000,0],[1708327869000,0],[1708327870000,0],[1708327871000,0],[1708327872000,0],[1708327873000,0],[1708327874000,0],[1708327875000,0],[1708327876000,0],[1708327877000,0],[1708327878000,0],[1708327879000,0],[1708327880000,0],[1708327881000,0],[1708327882000,0],[1708327883000,0],[1708327884000,0],[1708327885000,0],[1708327886000,0],[1708327887000,0],[1708327888000,0],[1708327889000,0],[1708327890000,0],[1708327891000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00D5FF',
name: 'validações',
data: [
[1708327647000,0],[1708327648000,0],[1708327649000,0],[1708327650000,5],[1708327651000,5],[1708327652000,0],[1708327653000,0],[1708327654000,0],[1708327655000,0],[1708327656000,0],[1708327657000,0],[1708327658000,0],[1708327659000,0],[1708327660000,0],[1708327661000,0],[1708327662000,0],[1708327663000,0],[1708327664000,0],[1708327665000,0],[1708327666000,0],[1708327667000,0],[1708327668000,0],[1708327669000,0],[1708327670000,0],[1708327671000,0],[1708327672000,0],[1708327673000,0],[1708327674000,0],[1708327675000,0],[1708327676000,0],[1708327677000,0],[1708327678000,0],[1708327679000,0],[1708327680000,0],[1708327681000,0],[1708327682000,0],[1708327683000,0],[1708327684000,0],[1708327685000,0],[1708327686000,0],[1708327687000,0],[1708327688000,0],[1708327689000,0],[1708327690000,0],[1708327691000,0],[1708327692000,0],[1708327693000,0],[1708327694000,0],[1708327695000,0],[1708327696000,0],[1708327697000,0],[1708327698000,0],[1708327699000,0],[1708327700000,0],[1708327701000,0],[1708327702000,0],[1708327703000,0],[1708327704000,0],[1708327705000,0],[1708327706000,0],[1708327707000,0],[1708327708000,0],[1708327709000,0],[1708327710000,0],[1708327711000,0],[1708327712000,0],[1708327713000,0],[1708327714000,0],[1708327715000,0],[1708327716000,0],[1708327717000,0],[1708327718000,0],[1708327719000,0],[1708327720000,0],[1708327721000,0],[1708327722000,0],[1708327723000,0],[1708327724000,0],[1708327725000,0],[1708327726000,0],[1708327727000,0],[1708327728000,0],[1708327729000,0],[1708327730000,0],[1708327731000,0],[1708327732000,0],[1708327733000,0],[1708327734000,0],[1708327735000,0],[1708327736000,0],[1708327737000,0],[1708327738000,0],[1708327739000,0],[1708327740000,0],[1708327741000,0],[1708327742000,0],[1708327743000,0],[1708327744000,0],[1708327745000,0],[1708327746000,0],[1708327747000,0],[1708327748000,0],[1708327749000,0],[1708327750000,0],[1708327751000,0],[1708327752000,0],[1708327753000,0],[1708327754000,0],[1708327755000,0],[1708327756000,0],[1708327757000,0],[1708327758000,0],[1708327759000,0],[1708327760000,0],[1708327761000,0],[1708327762000,0],[1708327763000,0],[1708327764000,0],[1708327765000,0],[1708327766000,0],[1708327767000,0],[1708327768000,0],[1708327769000,0],[1708327770000,0],[1708327771000,0],[1708327772000,0],[1708327773000,0],[1708327774000,0],[1708327775000,0],[1708327776000,0],[1708327777000,0],[1708327778000,0],[1708327779000,0],[1708327780000,0],[1708327781000,0],[1708327782000,0],[1708327783000,0],[1708327784000,0],[1708327785000,0],[1708327786000,0],[1708327787000,0],[1708327788000,0],[1708327789000,0],[1708327790000,0],[1708327791000,0],[1708327792000,0],[1708327793000,0],[1708327794000,0],[1708327795000,0],[1708327796000,0],[1708327797000,0],[1708327798000,0],[1708327799000,0],[1708327800000,0],[1708327801000,0],[1708327802000,0],[1708327803000,0],[1708327804000,0],[1708327805000,0],[1708327806000,0],[1708327807000,0],[1708327808000,0],[1708327809000,0],[1708327810000,0],[1708327811000,0],[1708327812000,0],[1708327813000,0],[1708327814000,0],[1708327815000,0],[1708327816000,0],[1708327817000,0],[1708327818000,0],[1708327819000,0],[1708327820000,0],[1708327821000,0],[1708327822000,0],[1708327823000,0],[1708327824000,0],[1708327825000,0],[1708327826000,0],[1708327827000,0],[1708327828000,0],[1708327829000,0],[1708327830000,0],[1708327831000,0],[1708327832000,0],[1708327833000,0],[1708327834000,0],[1708327835000,0],[1708327836000,0],[1708327837000,0],[1708327838000,0],[1708327839000,0],[1708327840000,0],[1708327841000,0],[1708327842000,0],[1708327843000,0],[1708327844000,0],[1708327845000,0],[1708327846000,0],[1708327847000,0],[1708327848000,0],[1708327849000,0],[1708327850000,0],[1708327851000,0],[1708327852000,0],[1708327853000,0],[1708327854000,0],[1708327855000,0],[1708327856000,0],[1708327857000,0],[1708327858000,0],[1708327859000,0],[1708327860000,0],[1708327861000,0],[1708327862000,0],[1708327863000,0],[1708327864000,0],[1708327865000,0],[1708327866000,0],[1708327867000,0],[1708327868000,0],[1708327869000,0],[1708327870000,0],[1708327871000,0],[1708327872000,0],[1708327873000,0],[1708327874000,0],[1708327875000,0],[1708327876000,0],[1708327877000,0],[1708327878000,0],[1708327879000,0],[1708327880000,0],[1708327881000,0],[1708327882000,0],[1708327883000,0],[1708327884000,0],[1708327885000,0],[1708327886000,0],[1708327887000,0],[1708327888000,0],[1708327889000,0],[1708327890000,0],[1708327891000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00FF00',
name: 'validação concorrência saldo - 0',
data: [
[1708327647000,0],[1708327648000,0],[1708327649000,1],[1708327650000,0],[1708327651000,0],[1708327652000,0],[1708327653000,0],[1708327654000,0],[1708327655000,0],[1708327656000,0],[1708327657000,0],[1708327658000,0],[1708327659000,0],[1708327660000,0],[1708327661000,0],[1708327662000,0],[1708327663000,0],[1708327664000,0],[1708327665000,0],[1708327666000,0],[1708327667000,0],[1708327668000,0],[1708327669000,0],[1708327670000,0],[1708327671000,0],[1708327672000,0],[1708327673000,0],[1708327674000,0],[1708327675000,0],[1708327676000,0],[1708327677000,0],[1708327678000,0],[1708327679000,0],[1708327680000,0],[1708327681000,0],[1708327682000,0],[1708327683000,0],[1708327684000,0],[1708327685000,0],[1708327686000,0],[1708327687000,0],[1708327688000,0],[1708327689000,0],[1708327690000,0],[1708327691000,0],[1708327692000,0],[1708327693000,0],[1708327694000,0],[1708327695000,0],[1708327696000,0],[1708327697000,0],[1708327698000,0],[1708327699000,0],[1708327700000,0],[1708327701000,0],[1708327702000,0],[1708327703000,0],[1708327704000,0],[1708327705000,0],[1708327706000,0],[1708327707000,0],[1708327708000,0],[1708327709000,0],[1708327710000,0],[1708327711000,0],[1708327712000,0],[1708327713000,0],[1708327714000,0],[1708327715000,0],[1708327716000,0],[1708327717000,0],[1708327718000,0],[1708327719000,0],[1708327720000,0],[1708327721000,0],[1708327722000,0],[1708327723000,0],[1708327724000,0],[1708327725000,0],[1708327726000,0],[1708327727000,0],[1708327728000,0],[1708327729000,0],[1708327730000,0],[1708327731000,0],[1708327732000,0],[1708327733000,0],[1708327734000,0],[1708327735000,0],[1708327736000,0],[1708327737000,0],[1708327738000,0],[1708327739000,0],[1708327740000,0],[1708327741000,0],[1708327742000,0],[1708327743000,0],[1708327744000,0],[1708327745000,0],[1708327746000,0],[1708327747000,0],[1708327748000,0],[1708327749000,0],[1708327750000,0],[1708327751000,0],[1708327752000,0],[1708327753000,0],[1708327754000,0],[1708327755000,0],[1708327756000,0],[1708327757000,0],[1708327758000,0],[1708327759000,0],[1708327760000,0],[1708327761000,0],[1708327762000,0],[1708327763000,0],[1708327764000,0],[1708327765000,0],[1708327766000,0],[1708327767000,0],[1708327768000,0],[1708327769000,0],[1708327770000,0],[1708327771000,0],[1708327772000,0],[1708327773000,0],[1708327774000,0],[1708327775000,0],[1708327776000,0],[1708327777000,0],[1708327778000,0],[1708327779000,0],[1708327780000,0],[1708327781000,0],[1708327782000,0],[1708327783000,0],[1708327784000,0],[1708327785000,0],[1708327786000,0],[1708327787000,0],[1708327788000,0],[1708327789000,0],[1708327790000,0],[1708327791000,0],[1708327792000,0],[1708327793000,0],[1708327794000,0],[1708327795000,0],[1708327796000,0],[1708327797000,0],[1708327798000,0],[1708327799000,0],[1708327800000,0],[1708327801000,0],[1708327802000,0],[1708327803000,0],[1708327804000,0],[1708327805000,0],[1708327806000,0],[1708327807000,0],[1708327808000,0],[1708327809000,0],[1708327810000,0],[1708327811000,0],[1708327812000,0],[1708327813000,0],[1708327814000,0],[1708327815000,0],[1708327816000,0],[1708327817000,0],[1708327818000,0],[1708327819000,0],[1708327820000,0],[1708327821000,0],[1708327822000,0],[1708327823000,0],[1708327824000,0],[1708327825000,0],[1708327826000,0],[1708327827000,0],[1708327828000,0],[1708327829000,0],[1708327830000,0],[1708327831000,0],[1708327832000,0],[1708327833000,0],[1708327834000,0],[1708327835000,0],[1708327836000,0],[1708327837000,0],[1708327838000,0],[1708327839000,0],[1708327840000,0],[1708327841000,0],[1708327842000,0],[1708327843000,0],[1708327844000,0],[1708327845000,0],[1708327846000,0],[1708327847000,0],[1708327848000,0],[1708327849000,0],[1708327850000,0],[1708327851000,0],[1708327852000,0],[1708327853000,0],[1708327854000,0],[1708327855000,0],[1708327856000,0],[1708327857000,0],[1708327858000,0],[1708327859000,0],[1708327860000,0],[1708327861000,0],[1708327862000,0],[1708327863000,0],[1708327864000,0],[1708327865000,0],[1708327866000,0],[1708327867000,0],[1708327868000,0],[1708327869000,0],[1708327870000,0],[1708327871000,0],[1708327872000,0],[1708327873000,0],[1708327874000,0],[1708327875000,0],[1708327876000,0],[1708327877000,0],[1708327878000,0],[1708327879000,0],[1708327880000,0],[1708327881000,0],[1708327882000,0],[1708327883000,0],[1708327884000,0],[1708327885000,0],[1708327886000,0],[1708327887000,0],[1708327888000,0],[1708327889000,0],[1708327890000,0],[1708327891000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#9D00FF',
name: 'validação concorrência transações - c',
data: [
[1708327647000,0],[1708327648000,25],[1708327649000,24],[1708327650000,0],[1708327651000,0],[1708327652000,0],[1708327653000,0],[1708327654000,0],[1708327655000,0],[1708327656000,0],[1708327657000,0],[1708327658000,0],[1708327659000,0],[1708327660000,0],[1708327661000,0],[1708327662000,0],[1708327663000,0],[1708327664000,0],[1708327665000,0],[1708327666000,0],[1708327667000,0],[1708327668000,0],[1708327669000,0],[1708327670000,0],[1708327671000,0],[1708327672000,0],[1708327673000,0],[1708327674000,0],[1708327675000,0],[1708327676000,0],[1708327677000,0],[1708327678000,0],[1708327679000,0],[1708327680000,0],[1708327681000,0],[1708327682000,0],[1708327683000,0],[1708327684000,0],[1708327685000,0],[1708327686000,0],[1708327687000,0],[1708327688000,0],[1708327689000,0],[1708327690000,0],[1708327691000,0],[1708327692000,0],[1708327693000,0],[1708327694000,0],[1708327695000,0],[1708327696000,0],[1708327697000,0],[1708327698000,0],[1708327699000,0],[1708327700000,0],[1708327701000,0],[1708327702000,0],[1708327703000,0],[1708327704000,0],[1708327705000,0],[1708327706000,0],[1708327707000,0],[1708327708000,0],[1708327709000,0],[1708327710000,0],[1708327711000,0],[1708327712000,0],[1708327713000,0],[1708327714000,0],[1708327715000,0],[1708327716000,0],[1708327717000,0],[1708327718000,0],[1708327719000,0],[1708327720000,0],[1708327721000,0],[1708327722000,0],[1708327723000,0],[1708327724000,0],[1708327725000,0],[1708327726000,0],[1708327727000,0],[1708327728000,0],[1708327729000,0],[1708327730000,0],[1708327731000,0],[1708327732000,0],[1708327733000,0],[1708327734000,0],[1708327735000,0],[1708327736000,0],[1708327737000,0],[1708327738000,0],[1708327739000,0],[1708327740000,0],[1708327741000,0],[1708327742000,0],[1708327743000,0],[1708327744000,0],[1708327745000,0],[1708327746000,0],[1708327747000,0],[1708327748000,0],[1708327749000,0],[1708327750000,0],[1708327751000,0],[1708327752000,0],[1708327753000,0],[1708327754000,0],[1708327755000,0],[1708327756000,0],[1708327757000,0],[1708327758000,0],[1708327759000,0],[1708327760000,0],[1708327761000,0],[1708327762000,0],[1708327763000,0],[1708327764000,0],[1708327765000,0],[1708327766000,0],[1708327767000,0],[1708327768000,0],[1708327769000,0],[1708327770000,0],[1708327771000,0],[1708327772000,0],[1708327773000,0],[1708327774000,0],[1708327775000,0],[1708327776000,0],[1708327777000,0],[1708327778000,0],[1708327779000,0],[1708327780000,0],[1708327781000,0],[1708327782000,0],[1708327783000,0],[1708327784000,0],[1708327785000,0],[1708327786000,0],[1708327787000,0],[1708327788000,0],[1708327789000,0],[1708327790000,0],[1708327791000,0],[1708327792000,0],[1708327793000,0],[1708327794000,0],[1708327795000,0],[1708327796000,0],[1708327797000,0],[1708327798000,0],[1708327799000,0],[1708327800000,0],[1708327801000,0],[1708327802000,0],[1708327803000,0],[1708327804000,0],[1708327805000,0],[1708327806000,0],[1708327807000,0],[1708327808000,0],[1708327809000,0],[1708327810000,0],[1708327811000,0],[1708327812000,0],[1708327813000,0],[1708327814000,0],[1708327815000,0],[1708327816000,0],[1708327817000,0],[1708327818000,0],[1708327819000,0],[1708327820000,0],[1708327821000,0],[1708327822000,0],[1708327823000,0],[1708327824000,0],[1708327825000,0],[1708327826000,0],[1708327827000,0],[1708327828000,0],[1708327829000,0],[1708327830000,0],[1708327831000,0],[1708327832000,0],[1708327833000,0],[1708327834000,0],[1708327835000,0],[1708327836000,0],[1708327837000,0],[1708327838000,0],[1708327839000,0],[1708327840000,0],[1708327841000,0],[1708327842000,0],[1708327843000,0],[1708327844000,0],[1708327845000,0],[1708327846000,0],[1708327847000,0],[1708327848000,0],[1708327849000,0],[1708327850000,0],[1708327851000,0],[1708327852000,0],[1708327853000,0],[1708327854000,0],[1708327855000,0],[1708327856000,0],[1708327857000,0],[1708327858000,0],[1708327859000,0],[1708327860000,0],[1708327861000,0],[1708327862000,0],[1708327863000,0],[1708327864000,0],[1708327865000,0],[1708327866000,0],[1708327867000,0],[1708327868000,0],[1708327869000,0],[1708327870000,0],[1708327871000,0],[1708327872000,0],[1708327873000,0],[1708327874000,0],[1708327875000,0],[1708327876000,0],[1708327877000,0],[1708327878000,0],[1708327879000,0],[1708327880000,0],[1708327881000,0],[1708327882000,0],[1708327883000,0],[1708327884000,0],[1708327885000,0],[1708327886000,0],[1708327887000,0],[1708327888000,0],[1708327889000,0],[1708327890000,0],[1708327891000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FF00E1',
name: 'validação concorrência saldo - -25',
data: [
[1708327647000,1],[1708327648000,1],[1708327649000,0],[1708327650000,0],[1708327651000,0],[1708327652000,0],[1708327653000,0],[1708327654000,0],[1708327655000,0],[1708327656000,0],[1708327657000,0],[1708327658000,0],[1708327659000,0],[1708327660000,0],[1708327661000,0],[1708327662000,0],[1708327663000,0],[1708327664000,0],[1708327665000,0],[1708327666000,0],[1708327667000,0],[1708327668000,0],[1708327669000,0],[1708327670000,0],[1708327671000,0],[1708327672000,0],[1708327673000,0],[1708327674000,0],[1708327675000,0],[1708327676000,0],[1708327677000,0],[1708327678000,0],[1708327679000,0],[1708327680000,0],[1708327681000,0],[1708327682000,0],[1708327683000,0],[1708327684000,0],[1708327685000,0],[1708327686000,0],[1708327687000,0],[1708327688000,0],[1708327689000,0],[1708327690000,0],[1708327691000,0],[1708327692000,0],[1708327693000,0],[1708327694000,0],[1708327695000,0],[1708327696000,0],[1708327697000,0],[1708327698000,0],[1708327699000,0],[1708327700000,0],[1708327701000,0],[1708327702000,0],[1708327703000,0],[1708327704000,0],[1708327705000,0],[1708327706000,0],[1708327707000,0],[1708327708000,0],[1708327709000,0],[1708327710000,0],[1708327711000,0],[1708327712000,0],[1708327713000,0],[1708327714000,0],[1708327715000,0],[1708327716000,0],[1708327717000,0],[1708327718000,0],[1708327719000,0],[1708327720000,0],[1708327721000,0],[1708327722000,0],[1708327723000,0],[1708327724000,0],[1708327725000,0],[1708327726000,0],[1708327727000,0],[1708327728000,0],[1708327729000,0],[1708327730000,0],[1708327731000,0],[1708327732000,0],[1708327733000,0],[1708327734000,0],[1708327735000,0],[1708327736000,0],[1708327737000,0],[1708327738000,0],[1708327739000,0],[1708327740000,0],[1708327741000,0],[1708327742000,0],[1708327743000,0],[1708327744000,0],[1708327745000,0],[1708327746000,0],[1708327747000,0],[1708327748000,0],[1708327749000,0],[1708327750000,0],[1708327751000,0],[1708327752000,0],[1708327753000,0],[1708327754000,0],[1708327755000,0],[1708327756000,0],[1708327757000,0],[1708327758000,0],[1708327759000,0],[1708327760000,0],[1708327761000,0],[1708327762000,0],[1708327763000,0],[1708327764000,0],[1708327765000,0],[1708327766000,0],[1708327767000,0],[1708327768000,0],[1708327769000,0],[1708327770000,0],[1708327771000,0],[1708327772000,0],[1708327773000,0],[1708327774000,0],[1708327775000,0],[1708327776000,0],[1708327777000,0],[1708327778000,0],[1708327779000,0],[1708327780000,0],[1708327781000,0],[1708327782000,0],[1708327783000,0],[1708327784000,0],[1708327785000,0],[1708327786000,0],[1708327787000,0],[1708327788000,0],[1708327789000,0],[1708327790000,0],[1708327791000,0],[1708327792000,0],[1708327793000,0],[1708327794000,0],[1708327795000,0],[1708327796000,0],[1708327797000,0],[1708327798000,0],[1708327799000,0],[1708327800000,0],[1708327801000,0],[1708327802000,0],[1708327803000,0],[1708327804000,0],[1708327805000,0],[1708327806000,0],[1708327807000,0],[1708327808000,0],[1708327809000,0],[1708327810000,0],[1708327811000,0],[1708327812000,0],[1708327813000,0],[1708327814000,0],[1708327815000,0],[1708327816000,0],[1708327817000,0],[1708327818000,0],[1708327819000,0],[1708327820000,0],[1708327821000,0],[1708327822000,0],[1708327823000,0],[1708327824000,0],[1708327825000,0],[1708327826000,0],[1708327827000,0],[1708327828000,0],[1708327829000,0],[1708327830000,0],[1708327831000,0],[1708327832000,0],[1708327833000,0],[1708327834000,0],[1708327835000,0],[1708327836000,0],[1708327837000,0],[1708327838000,0],[1708327839000,0],[1708327840000,0],[1708327841000,0],[1708327842000,0],[1708327843000,0],[1708327844000,0],[1708327845000,0],[1708327846000,0],[1708327847000,0],[1708327848000,0],[1708327849000,0],[1708327850000,0],[1708327851000,0],[1708327852000,0],[1708327853000,0],[1708327854000,0],[1708327855000,0],[1708327856000,0],[1708327857000,0],[1708327858000,0],[1708327859000,0],[1708327860000,0],[1708327861000,0],[1708327862000,0],[1708327863000,0],[1708327864000,0],[1708327865000,0],[1708327866000,0],[1708327867000,0],[1708327868000,0],[1708327869000,0],[1708327870000,0],[1708327871000,0],[1708327872000,0],[1708327873000,0],[1708327874000,0],[1708327875000,0],[1708327876000,0],[1708327877000,0],[1708327878000,0],[1708327879000,0],[1708327880000,0],[1708327881000,0],[1708327882000,0],[1708327883000,0],[1708327884000,0],[1708327885000,0],[1708327886000,0],[1708327887000,0],[1708327888000,0],[1708327889000,0],[1708327890000,0],[1708327891000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#AECAEB',
name: 'validação concorrência transações - d',
data: [
[1708327647000,25],[1708327648000,0],[1708327649000,0],[1708327650000,0],[1708327651000,0],[1708327652000,0],[1708327653000,0],[1708327654000,0],[1708327655000,0],[1708327656000,0],[1708327657000,0],[1708327658000,0],[1708327659000,0],[1708327660000,0],[1708327661000,0],[1708327662000,0],[1708327663000,0],[1708327664000,0],[1708327665000,0],[1708327666000,0],[1708327667000,0],[1708327668000,0],[1708327669000,0],[1708327670000,0],[1708327671000,0],[1708327672000,0],[1708327673000,0],[1708327674000,0],[1708327675000,0],[1708327676000,0],[1708327677000,0],[1708327678000,0],[1708327679000,0],[1708327680000,0],[1708327681000,0],[1708327682000,0],[1708327683000,0],[1708327684000,0],[1708327685000,0],[1708327686000,0],[1708327687000,0],[1708327688000,0],[1708327689000,0],[1708327690000,0],[1708327691000,0],[1708327692000,0],[1708327693000,0],[1708327694000,0],[1708327695000,0],[1708327696000,0],[1708327697000,0],[1708327698000,0],[1708327699000,0],[1708327700000,0],[1708327701000,0],[1708327702000,0],[1708327703000,0],[1708327704000,0],[1708327705000,0],[1708327706000,0],[1708327707000,0],[1708327708000,0],[1708327709000,0],[1708327710000,0],[1708327711000,0],[1708327712000,0],[1708327713000,0],[1708327714000,0],[1708327715000,0],[1708327716000,0],[1708327717000,0],[1708327718000,0],[1708327719000,0],[1708327720000,0],[1708327721000,0],[1708327722000,0],[1708327723000,0],[1708327724000,0],[1708327725000,0],[1708327726000,0],[1708327727000,0],[1708327728000,0],[1708327729000,0],[1708327730000,0],[1708327731000,0],[1708327732000,0],[1708327733000,0],[1708327734000,0],[1708327735000,0],[1708327736000,0],[1708327737000,0],[1708327738000,0],[1708327739000,0],[1708327740000,0],[1708327741000,0],[1708327742000,0],[1708327743000,0],[1708327744000,0],[1708327745000,0],[1708327746000,0],[1708327747000,0],[1708327748000,0],[1708327749000,0],[1708327750000,0],[1708327751000,0],[1708327752000,0],[1708327753000,0],[1708327754000,0],[1708327755000,0],[1708327756000,0],[1708327757000,0],[1708327758000,0],[1708327759000,0],[1708327760000,0],[1708327761000,0],[1708327762000,0],[1708327763000,0],[1708327764000,0],[1708327765000,0],[1708327766000,0],[1708327767000,0],[1708327768000,0],[1708327769000,0],[1708327770000,0],[1708327771000,0],[1708327772000,0],[1708327773000,0],[1708327774000,0],[1708327775000,0],[1708327776000,0],[1708327777000,0],[1708327778000,0],[1708327779000,0],[1708327780000,0],[1708327781000,0],[1708327782000,0],[1708327783000,0],[1708327784000,0],[1708327785000,0],[1708327786000,0],[1708327787000,0],[1708327788000,0],[1708327789000,0],[1708327790000,0],[1708327791000,0],[1708327792000,0],[1708327793000,0],[1708327794000,0],[1708327795000,0],[1708327796000,0],[1708327797000,0],[1708327798000,0],[1708327799000,0],[1708327800000,0],[1708327801000,0],[1708327802000,0],[1708327803000,0],[1708327804000,0],[1708327805000,0],[1708327806000,0],[1708327807000,0],[1708327808000,0],[1708327809000,0],[1708327810000,0],[1708327811000,0],[1708327812000,0],[1708327813000,0],[1708327814000,0],[1708327815000,0],[1708327816000,0],[1708327817000,0],[1708327818000,0],[1708327819000,0],[1708327820000,0],[1708327821000,0],[1708327822000,0],[1708327823000,0],[1708327824000,0],[1708327825000,0],[1708327826000,0],[1708327827000,0],[1708327828000,0],[1708327829000,0],[1708327830000,0],[1708327831000,0],[1708327832000,0],[1708327833000,0],[1708327834000,0],[1708327835000,0],[1708327836000,0],[1708327837000,0],[1708327838000,0],[1708327839000,0],[1708327840000,0],[1708327841000,0],[1708327842000,0],[1708327843000,0],[1708327844000,0],[1708327845000,0],[1708327846000,0],[1708327847000,0],[1708327848000,0],[1708327849000,0],[1708327850000,0],[1708327851000,0],[1708327852000,0],[1708327853000,0],[1708327854000,0],[1708327855000,0],[1708327856000,0],[1708327857000,0],[1708327858000,0],[1708327859000,0],[1708327860000,0],[1708327861000,0],[1708327862000,0],[1708327863000,0],[1708327864000,0],[1708327865000,0],[1708327866000,0],[1708327867000,0],[1708327868000,0],[1708327869000,0],[1708327870000,0],[1708327871000,0],[1708327872000,0],[1708327873000,0],[1708327874000,0],[1708327875000,0],[1708327876000,0],[1708327877000,0],[1708327878000,0],[1708327879000,0],[1708327880000,0],[1708327881000,0],[1708327882000,0],[1708327883000,0],[1708327884000,0],[1708327885000,0],[1708327886000,0],[1708327887000,0],[1708327888000,0],[1708327889000,0],[1708327890000,0],[1708327891000,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: ['114', '341', '569', '797', '1024', '1252', '1480', '1707', '1935', '2163', '2390', '2618', '2846', '3073', '3301', '3529', '3756', '3984', '4212', '4439', '4667', '4894', '5122', '5350', '5577', '5805', '6033', '6260', '6488', '6716', '6943', '7171', '7399', '7626', '7854', '8082', '8309', '8537', '8765', '8992', '9220', '9447', '9675', '9903', '10130', '10358', '10586', '10813', '11041', '11269', '11496', '11724', '11952', '12179', '12407', '12635', '12862', '13090', '13318', '13545', '13773', '14000', '14228', '14456', '14683', '14911', '15139', '15366', '15594', '15822', '16049', '16277', '16505', '16732', '16960', '17188', '17415', '17643', '17871', '18098', '18326', '18553', '18781', '19009', '19236', '19464', '19692', '19919', '20147', '20375', '20602', '20830', '21058', '21285', '21513', '21741', '21968', '22196', '22424', '22651'],
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: [
62.57,8.16,5.83,6.35,4.08,3.98,1.17,0.89,0.59,0.86,0.74,0.47,0.41,0.32,0.28,0.23,0.29,0.29,0.23,0.19,0.18,0.32,0.19,0.06,0.02,0.04,0.0,0.0,0.0,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.08,0.04,0.09,0.08,0.11,0.1,0.05,0.01,0.01,0.0,0.0,0.0,0.0,0.0,0.01,0.02,0.0,0.0,0.02,0.01,0.01,0.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.0,0.0,0.04,0.0,0.0,0.0,0.03,0.01,0.0,0.0,0.0,0.02,0.03,0.02,0.0,0.0,0.0,0.0,0.0,0.01,0.04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01
],
tooltip: { yDecimals: 0, ySuffix: 'ms' }
},
{
type: 'column',
color: '#f15b4f',
name: 'KO',
data: [
0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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([[1708327647,[41,144,156,167,180,215,221,226,229,230]],[1708327648,null],[1708327649,[16,36,47,54,55,56,59,60,61,62]],[1708327650,null],[1708327651,[1,4,9,16,20,31,41,76,84,84]],[1708327652,[6,7,8,8,8,8,8,8,8,9]],[1708327653,[5,5,6,6,6,6,7,7,7,8]],[1708327654,[4,5,5,8,8,8,8,9,9,10]],[1708327655,[4,4,5,5,5,5,6,6,6,7]],[1708327656,[3,4,4,5,5,6,6,6,7,8]],[1708327657,[3,4,5,5,5,6,7,7,10,11]],[1708327658,[3,3,4,4,4,5,5,6,6,7]],[1708327659,[3,3,3,4,4,4,4,4,5,6]],[1708327660,[3,3,4,5,5,5,5,5,6,7]],[1708327661,[3,3,4,4,5,5,6,6,7,8]],[1708327662,[2,3,3,4,4,5,5,6,6,6]],[1708327663,[2,3,3,4,5,5,5,5,6,6]],[1708327664,[2,3,4,4,4,4,5,5,6,6]],[1708327665,[2,3,4,4,4,4,4,5,5,6]],[1708327666,[2,3,3,4,4,4,4,4,5,5]],[1708327667,[1,2,3,4,4,4,4,4,5,6]],[1708327668,[2,2,3,3,3,3,4,4,7,9]],[1708327669,[1,2,3,3,3,3,4,4,30,44]],[1708327670,[1,2,2,3,3,3,3,3,5,6]],[1708327671,[1,2,2,3,3,3,3,3,4,4]],[1708327672,[1,2,2,3,3,3,3,4,5,6]],[1708327673,[1,2,3,3,3,3,4,4,5,5]],[1708327674,[1,2,3,3,3,4,4,4,7,8]],[1708327675,[1,2,3,3,3,3,3,4,4,4]],[1708327676,[1,2,3,3,4,4,4,4,4,5]],[1708327677,[1,2,3,3,3,3,3,4,5,5]],[1708327678,[1,2,3,3,3,3,3,3,6,8]],[1708327679,[1,2,2,3,3,3,3,3,4,4]],[1708327680,[1,2,2,3,3,3,3,3,5,6]],[1708327681,[1,2,2,3,3,3,3,3,3,4]],[1708327682,[1,2,2,2,3,3,3,3,4,5]],[1708327683,[1,2,2,3,3,3,3,4,5,5]],[1708327684,[1,2,2,3,3,3,3,3,4,4]],[1708327685,[1,2,2,3,3,3,3,3,4,5]],[1708327686,[1,2,2,3,3,3,3,3,4,4]],[1708327687,[1,2,3,3,3,3,3,4,4,4]],[1708327688,[1,2,2,3,3,3,3,3,4,5]],[1708327689,[1,2,2,3,3,3,3,3,4,5]],[1708327690,[1,2,2,3,3,3,3,3,4,5]],[1708327691,[1,2,2,3,3,3,3,3,3,3]],[1708327692,[1,1,2,2,2,3,3,3,4,5]],[1708327693,[1,2,2,2,3,3,3,3,4,4]],[1708327694,[1,2,2,2,3,3,3,3,4,4]],[1708327695,[1,2,2,3,3,3,3,4,11,20]],[1708327696,[1,2,3,3,5,21,54,73,100,117]],[1708327697,[1,2,2,3,3,3,3,4,5,8]],[1708327698,[1,2,3,3,3,3,3,4,4,4]],[1708327699,[1,2,3,3,3,3,3,3,4,4]],[1708327700,[1,2,2,3,3,3,3,3,4,8]],[1708327701,[1,2,2,3,3,8,21,44,61,72]],[1708327702,[1,2,2,2,2,3,3,3,3,3]],[1708327703,[1,2,2,2,2,3,3,3,3,7]],[1708327704,[1,2,2,2,2,2,3,3,3,4]],[1708327705,[1,2,2,2,2,3,3,3,3,4]],[1708327706,[0,1,2,2,2,2,2,3,3,3]],[1708327707,[0,1,2,2,2,2,3,3,4,6]],[1708327708,[1,2,2,2,2,3,3,3,3,4]],[1708327709,[1,2,2,2,2,3,3,3,3,4]],[1708327710,[1,2,2,3,3,3,3,3,4,6]],[1708327711,[1,1,2,2,2,2,3,3,3,3]],[1708327712,[1,2,2,2,2,2,3,3,3,4]],[1708327713,[1,2,2,2,3,3,3,3,4,7]],[1708327714,[1,2,2,2,2,2,3,3,3,6]],[1708327715,[1,2,2,2,2,3,3,3,3,3]],[1708327716,[1,1,2,2,2,2,3,4,16,17]],[1708327717,[1,1,2,2,2,2,2,3,3,4]],[1708327718,[1,1,2,2,2,2,3,3,3,4]],[1708327719,[0,1,2,2,2,2,3,3,3,3]],[1708327720,[1,1,2,2,2,2,2,3,3,5]],[1708327721,[1,1,2,2,2,2,2,3,6,13]],[1708327722,[1,1,2,2,2,2,2,3,3,4]],[1708327723,[1,1,2,2,2,3,3,3,3,4]],[1708327724,[1,1,2,2,2,3,3,3,3,7]],[1708327725,[1,2,2,2,2,2,2,3,3,5]],[1708327726,[1,2,2,2,2,2,3,3,4,8]],[1708327727,[1,2,2,2,2,2,3,3,3,3]],[1708327728,[1,2,2,2,2,3,3,3,4,9]],[1708327729,[1,2,2,3,3,3,3,3,16,25]],[1708327730,[1,2,2,3,3,3,3,3,4,4]],[1708327731,[1,2,2,2,3,3,3,3,3,4]],[1708327732,[1,1,2,2,2,2,3,3,3,4]],[1708327733,[1,2,2,2,3,3,3,5,23,30]],[1708327734,[1,2,2,2,2,3,3,3,3,4]],[1708327735,[1,2,2,2,2,3,3,3,3,5]],[1708327736,[1,1,2,2,2,2,3,3,3,5]],[1708327737,[1,1,2,2,2,2,3,13,24,29]],[1708327738,[1,1,2,2,2,2,2,3,3,4]],[1708327739,[1,1,2,2,2,2,2,3,5,12]],[1708327740,[1,1,2,2,2,3,3,3,3,4]],[1708327741,[1,2,2,3,3,3,3,3,3,9]],[1708327742,[1,2,2,2,2,2,3,3,3,7]],[1708327743,[1,2,2,2,2,3,3,3,4,5]],[1708327744,[1,2,2,2,2,3,3,3,3,4]],[1708327745,[1,2,2,3,11,24,40,58,86,129]],[1708327746,[1,1,2,2,2,2,2,3,3,3]],[1708327747,[1,1,2,2,2,3,3,3,6,14]],[1708327748,[1,2,2,2,2,3,3,3,3,4]],[1708327749,[1,1,2,2,2,2,3,3,9,13]],[1708327750,[1,1,2,2,2,2,3,3,3,8]],[1708327751,[1,1,2,3,3,3,4,22,37,42]],[1708327752,[1,2,2,2,3,4,12,42,70,70]],[1708327753,[1,2,2,2,2,3,3,3,20,28]],[1708327754,[1,2,2,3,3,3,3,6,23,27]],[1708327755,[1,2,2,3,3,3,3,3,3,3]],[1708327756,[0,2,2,3,3,4,18,36,60,68]],[1708327757,[1,2,2,3,3,3,3,6,21,32]],[1708327758,[1,2,2,2,2,3,3,3,23,30]],[1708327759,[1,2,2,27,39,53,66,86,114,131]],[1708327760,[1,2,2,2,2,3,3,3,16,26]],[1708327761,[1,2,2,2,3,3,11,25,44,48]],[1708327762,[1,2,2,2,2,3,3,12,44,46]],[1708327763,[1,1,2,2,2,2,3,8,25,31]],[1708327764,[1,2,3,4,4,4,5,11,36,42]],[1708327765,[1,1,2,2,2,2,3,3,5,29]],[1708327766,[2,3,3,4,5,17,31,48,62,69]],[1708327767,[1,2,2,20,27,40,49,65,97,108]],[1708327768,[1,3,3,4,5,72,463,621,770,970]],[1708327769,[506,708,859,951,977,998,1028,1070,1196,1213]],[1708327770,[733,835,880,941,955,971,993,1032,1107,1193]],[1708327771,[591,721,792,889,924,959,1033,1084,1183,1250]],[1708327772,[736,867,947,1034,1067,1086,1105,1128,1211,1396]],[1708327773,[503,627,701,757,774,788,810,847,892,993]],[1708327774,[254,334,362,402,441,482,508,533,572,609]],[1708327775,[79,177,215,281,294,308,318,332,343,345]],[1708327776,[3,87,115,141,147,154,161,169,186,199]],[1708327777,[1,2,3,5,11,18,26,36,49,55]],[1708327778,[1,2,3,4,4,4,4,5,12,19]],[1708327779,[3,382,459,563,584,619,648,696,742,841]],[1708327780,[79,166,199,244,253,268,290,313,364,541]],[1708327781,[8,91,123,155,161,171,186,207,352,368]],[1708327782,[1,2,9,403,729,767,794,848,933,1113]],[1708327783,[607,737,810,875,885,902,921,967,1151,1185]],[1708327784,[468,545,590,629,639,653,672,692,763,811]],[1708327785,[216,282,330,408,424,442,453,466,490,497]],[1708327786,[106,213,269,435,453,517,710,765,965,1190]],[1708327787,[609,791,851,955,991,1024,1076,1137,1193,1224]],[1708327788,[712,841,889,939,949,964,976,997,1056,1190]],[1708327789,[565,656,696,753,778,800,818,838,875,928]],[1708327790,[358,444,509,595,605,613,625,636,649,655]],[1708327791,[222,299,328,352,357,365,377,393,408,416]],[1708327792,[66,174,215,244,252,262,316,468,504,547]],[1708327793,[229,631,847,984,1000,1019,1034,1089,1219,1270]],[1708327794,[759,927,1012,1109,1124,1142,1165,1193,1229,1356]],[1708327795,[563,636,676,735,757,795,822,873,983,1170]],[1708327796,[271,353,410,481,498,516,537,553,573,580]],[1708327797,[200,264,306,345,354,361,369,387,420,429]],[1708327798,[54,139,171,199,204,213,224,235,246,271]],[1708327799,[1,3,7,309,336,349,368,392,431,445]],[1708327800,[3,93,135,177,201,246,275,304,326,389]],[1708327801,[7,69,107,347,401,446,464,532,580,667]],[1708327802,[292,450,589,655,666,684,717,803,945,1045]],[1708327803,[290,366,407,451,464,479,494,519,554,705]],[1708327804,[76,181,271,359,372,382,397,410,429,437]],[1708327805,[1,70,102,136,142,153,164,180,225,246]],[1708327806,[31,169,213,251,262,281,308,369,479,500]],[1708327807,[1,3,5,87,107,122,139,166,193,216]],[1708327808,[1,2,4,44,50,57,69,83,100,108]],[1708327809,[1,2,3,18,27,37,47,57,78,98]],[1708327810,[0,2,2,3,3,3,3,4,5,8]],[1708327811,[1,3,24,48,54,63,401,534,649,838]],[1708327812,[484,728,777,876,909,936,957,1013,1154,1293]],[1708327813,[591,732,897,963,977,994,1023,1047,1084,1410]],[1708327814,[579,654,764,832,854,896,952,998,1062,1142]],[1708327815,[464,547,573,599,606,612,619,632,644,672]],[1708327816,[256,317,353,399,415,431,444,454,472,483]],[1708327817,[74,169,211,267,283,295,311,325,347,354]],[1708327818,[1,51,110,155,164,173,188,206,228,245]],[1708327819,[0,2,2,3,4,18,31,45,60,63]],[1708327820,[1,2,2,3,3,4,4,5,6,37]],[1708327821,[1,2,3,4,15,26,38,57,69,72]],[1708327822,[0,2,4,29,43,50,65,82,108,118]],[1708327823,[0,2,2,3,3,4,8,25,55,62]],[1708327824,[1,2,2,4,4,5,22,38,63,68]],[1708327825,[1,1,2,3,4,17,27,44,55,60]],[1708327826,[1,2,2,4,4,4,7,21,53,59]],[1708327827,[1,2,3,4,5,13,25,44,73,79]],[1708327828,[1,2,3,4,4,4,7,18,35,40]],[1708327829,[1,2,3,3,4,5,11,30,47,51]],[1708327830,[1,2,3,3,4,4,5,15,30,38]],[1708327831,[2,894,2595,3446,3469,3492,3588,3678,3832,3955]],[1708327832,[3365,3817,3911,4053,4071,4092,4225,9241,9347,9571]],[1708327833,[3389,4905,8951,17652,17777,18044,19492,19652,19696,19741]],[1708327834,[2385,3295,4912,9260,9323,9851,12662,13084,22739,22765]],[1708327835,[2096,2377,4625,8858,9661,11539,11751,12645,15665,15713]],[1708327836,[1802,2137,2920,4833,4935,5031,5108,5248,12394,15554]],[1708327837,[1561,1803,2656,5218,5359,8281,8586,9537,10784,11847]],[1708327838,[1405,1682,1862,2719,2836,2944,3044,3094,4835,4945]],[1708327839,[1257,1447,1674,1970,2049,2079,2121,3150,5864,8542]],[1708327840,[1557,2087,2962,4152,4681,5337,6778,16450,16624,16675]],[1708327841,[1612,1937,2088,3658,3791,4310,5736,15525,15616,15637]],[1708327842,[1513,1646,1687,2874,2920,4576,4827,14832,14873,14884]],[1708327843,[1205,1419,2225,4225,4324,4558,8234,8286,8475,8485]],[1708327844,[1158,1206,1303,2514,2707,2828,4227,4286,4642,8359]],[1708327845,[1217,1374,1460,2262,2310,2625,4367,4728,8471,8487]],[1708327846,[1169,1353,2152,2542,2667,2742,2876,4340,4812,4830]],[1708327847,[1156,1244,1343,2227,2273,2333,2508,2720,3982,4111]],[1708327848,[1207,1261,1309,2256,2312,2330,2407,2543,4172,4235]],[1708327849,[1176,1250,1297,1382,1397,1541,2153,2408,4203,4281]],[1708327850,[1172,1244,1333,1447,1482,2338,2383,2418,2519,2577]],[1708327851,[1105,1142,1168,1207,1226,1261,2248,2346,2432,2493]],[1708327852,[1131,1187,1227,1276,1299,1312,2043,2060,2112,2138]],[1708327853,[997,1062,1090,1120,1125,1134,1140,1148,1158,1163]],[1708327854,[835,933,971,1037,1047,1058,1072,1088,1114,1125]],[1708327855,[673,830,896,955,965,984,1019,1052,1096,1121]],[1708327856,[658,806,857,912,924,940,960,988,1050,1148]],[1708327857,[551,602,632,678,701,738,769,800,949,1065]],[1708327858,[290,373,417,477,490,508,530,548,569,576]],[1708327859,[146,209,265,339,352,360,373,391,422,431]],[1708327860,[9,79,116,149,157,165,177,187,210,218]],[1708327861,[1,2,3,6,15,22,32,45,64,68]],[1708327862,[0,2,2,3,3,3,2,4,9,16]],[1708327863,[1,2,3,10,17,28,40,55,74,82]],[1708327864,[1,1149,1218,1264,1273,1283,1301,1337,1414,1573]],[1708327865,[956,1119,1202,1265,1279,1291,1302,1336,1382,1636]],[1708327866,[613,758,835,901,916,929,948,977,1094,1202]],[1708327867,[364,440,472,536,560,584,607,628,711,909]],[1708327868,[34,118,201,291,313,333,354,382,410,426]],[1708327869,[1,7,37,63,68,75,84,100,115,136]],[1708327870,[1,2,2,4,14,28,37,52,69,75]],[1708327871,[1,2,3,3,3,4,5,24,54,59]],[1708327872,[1,2,2,3,4,5,14,28,35,45]],[1708327873,[1,2,2,5,6,14,23,35,47,52]],[1708327874,[1,2,3,4,4,4,5,8,48,52]],[1708327875,[2,4,228,388,411,446,465,492,540,717]],[1708327876,[424,637,708,802,816,829,845,877,979,1012]],[1708327877,[361,448,581,648,666,679,694,724,798,829]],[1708327878,[162,248,299,371,379,387,401,414,431,505]],[1708327879,[0,52,97,132,142,155,165,184,218,228]],[1708327880,[1,1,2,3,3,3,4,11,31,38]],[1708327881,[1,2,2,3,3,3,3,4,5,7]],[1708327882,[0,1,2,2,2,3,4,8,18,23]],[1708327883,[1,2,2,3,4,6,11,27,41,45]],[1708327884,[1,1,2,2,2,3,3,4,23,28]],[1708327885,[1,2,3,4,4,5,10,23,36,40]],[1708327886,[1,2,2,3,3,3,5,15,25,27]],[1708327887,[1,2,2,3,3,3,4,5,9,14]],[1708327888,[0,1,2,3,3,3,8,22,42,50]],[1708327889,[1,3,3,4,4,5,7,16,32,36]],[1708327890,[1,2,2,3,3,3,3,4,9,15]],[1708327891,[1,3,3,5,7,15,29,42,55,68]]]);
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([[1708327647,[25,25,0]],[1708327648,[1,0,1]],[1708327649,[25,25,0]],[1708327650,[1,0,1]],[1708327651,[71,65,6]],[1708327652,[3,3,0]],[1708327653,[6,6,0]],[1708327654,[9,9,0]],[1708327655,[11,11,0]],[1708327656,[13,13,0]],[1708327657,[18,18,0]],[1708327658,[19,19,0]],[1708327659,[24,24,0]],[1708327660,[26,26,0]],[1708327661,[27,27,0]],[1708327662,[32,32,0]],[1708327663,[34,34,0]],[1708327664,[37,37,0]],[1708327665,[39,39,0]],[1708327666,[43,43,0]],[1708327667,[44,44,0]],[1708327668,[49,49,0]],[1708327669,[50,50,0]],[1708327670,[54,54,0]],[1708327671,[56,56,0]],[1708327672,[60,60,0]],[1708327673,[61,61,0]],[1708327674,[65,65,0]],[1708327675,[67,67,0]],[1708327676,[70,70,0]],[1708327677,[74,74,0]],[1708327678,[76,76,0]],[1708327679,[80,80,0]],[1708327680,[81,81,0]],[1708327681,[84,84,0]],[1708327682,[88,88,0]],[1708327683,[90,90,0]],[1708327684,[93,93,0]],[1708327685,[96,96,0]],[1708327686,[98,98,0]],[1708327687,[102,102,0]],[1708327688,[104,104,0]],[1708327689,[107,107,0]],[1708327690,[109,109,0]],[1708327691,[114,114,0]],[1708327692,[115,115,0]],[1708327693,[118,118,0]],[1708327694,[121,121,0]],[1708327695,[124,124,0]],[1708327696,[126,126,0]],[1708327697,[129,129,0]],[1708327698,[133,133,0]],[1708327699,[134,134,0]],[1708327700,[139,139,0]],[1708327701,[140,140,0]],[1708327702,[144,144,0]],[1708327703,[146,146,0]],[1708327704,[149,149,0]],[1708327705,[151,151,0]],[1708327706,[155,155,0]],[1708327707,[157,157,0]],[1708327708,[160,160,0]],[1708327709,[164,164,0]],[1708327710,[165,165,0]],[1708327711,[171,171,0]],[1708327712,[171,171,0]],[1708327713,[174,174,0]],[1708327714,[177,177,0]],[1708327715,[180,180,0]],[1708327716,[183,183,0]],[1708327717,[186,186,0]],[1708327718,[188,188,0]],[1708327719,[192,192,0]],[1708327720,[194,194,0]],[1708327721,[197,197,0]],[1708327722,[198,198,0]],[1708327723,[204,204,0]],[1708327724,[204,204,0]],[1708327725,[208,208,0]],[1708327726,[211,211,0]],[1708327727,[214,214,0]],[1708327728,[217,217,0]],[1708327729,[219,219,0]],[1708327730,[222,222,0]],[1708327731,[225,225,0]],[1708327732,[228,228,0]],[1708327733,[229,229,0]],[1708327734,[234,234,0]],[1708327735,[236,236,0]],[1708327736,[239,239,0]],[1708327737,[242,242,0]],[1708327738,[244,244,0]],[1708327739,[248,248,0]],[1708327740,[250,250,0]],[1708327741,[253,253,0]],[1708327742,[255,255,0]],[1708327743,[261,261,0]],[1708327744,[262,262,0]],[1708327745,[263,263,0]],[1708327746,[267,267,0]],[1708327747,[269,269,0]],[1708327748,[273,273,0]],[1708327749,[275,275,0]],[1708327750,[279,279,0]],[1708327751,[281,281,0]],[1708327752,[284,284,0]],[1708327753,[286,286,0]],[1708327754,[290,290,0]],[1708327755,[292,292,0]],[1708327756,[295,295,0]],[1708327757,[298,298,0]],[1708327758,[301,301,0]],[1708327759,[304,304,0]],[1708327760,[306,306,0]],[1708327761,[309,309,0]],[1708327762,[312,312,0]],[1708327763,[315,315,0]],[1708327764,[317,317,0]],[1708327765,[320,320,0]],[1708327766,[323,323,0]],[1708327767,[326,326,0]],[1708327768,[330,330,0]],[1708327769,[332,332,0]],[1708327770,[334,334,0]],[1708327771,[337,337,0]],[1708327772,[340,340,0]],[1708327773,[340,340,0]],[1708327774,[340,340,0]],[1708327775,[340,340,0]],[1708327776,[340,340,0]],[1708327777,[340,340,0]],[1708327778,[340,340,0]],[1708327779,[340,340,0]],[1708327780,[340,340,0]],[1708327781,[340,340,0]],[1708327782,[340,340,0]],[1708327783,[340,340,0]],[1708327784,[340,340,0]],[1708327785,[340,340,0]],[1708327786,[340,340,0]],[1708327787,[340,340,0]],[1708327788,[340,340,0]],[1708327789,[340,340,0]],[1708327790,[340,340,0]],[1708327791,[340,340,0]],[1708327792,[340,340,0]],[1708327793,[340,340,0]],[1708327794,[340,340,0]],[1708327795,[340,340,0]],[1708327796,[340,340,0]],[1708327797,[340,340,0]],[1708327798,[340,340,0]],[1708327799,[340,340,0]],[1708327800,[340,340,0]],[1708327801,[340,340,0]],[1708327802,[340,340,0]],[1708327803,[340,340,0]],[1708327804,[340,340,0]],[1708327805,[340,340,0]],[1708327806,[340,340,0]],[1708327807,[340,340,0]],[1708327808,[340,340,0]],[1708327809,[340,340,0]],[1708327810,[340,340,0]],[1708327811,[340,340,0]],[1708327812,[340,340,0]],[1708327813,[340,340,0]],[1708327814,[340,340,0]],[1708327815,[340,340,0]],[1708327816,[340,340,0]],[1708327817,[340,340,0]],[1708327818,[340,340,0]],[1708327819,[340,340,0]],[1708327820,[340,340,0]],[1708327821,[340,340,0]],[1708327822,[340,340,0]],[1708327823,[340,340,0]],[1708327824,[340,340,0]],[1708327825,[340,340,0]],[1708327826,[340,340,0]],[1708327827,[340,340,0]],[1708327828,[340,340,0]],[1708327829,[340,340,0]],[1708327830,[340,340,0]],[1708327831,[340,340,0]],[1708327832,[340,340,0]],[1708327833,[339,339,0]],[1708327834,[341,341,0]],[1708327835,[340,340,0]],[1708327836,[340,340,0]],[1708327837,[340,340,0]],[1708327838,[340,340,0]],[1708327839,[340,340,0]],[1708327840,[340,340,0]],[1708327841,[340,340,0]],[1708327842,[340,340,0]],[1708327843,[340,340,0]],[1708327844,[340,340,0]],[1708327845,[340,340,0]],[1708327846,[340,340,0]],[1708327847,[340,340,0]],[1708327848,[340,340,0]],[1708327849,[340,340,0]],[1708327850,[340,340,0]],[1708327851,[340,340,0]],[1708327852,[340,340,0]],[1708327853,[340,340,0]],[1708327854,[340,340,0]],[1708327855,[340,340,0]],[1708327856,[340,340,0]],[1708327857,[340,340,0]],[1708327858,[340,340,0]],[1708327859,[340,340,0]],[1708327860,[340,340,0]],[1708327861,[340,340,0]],[1708327862,[340,340,0]],[1708327863,[340,340,0]],[1708327864,[340,340,0]],[1708327865,[340,340,0]],[1708327866,[340,340,0]],[1708327867,[340,340,0]],[1708327868,[340,340,0]],[1708327869,[340,340,0]],[1708327870,[340,340,0]],[1708327871,[340,340,0]],[1708327872,[340,340,0]],[1708327873,[340,340,0]],[1708327874,[340,340,0]],[1708327875,[340,340,0]],[1708327876,[340,340,0]],[1708327877,[340,340,0]],[1708327878,[340,340,0]],[1708327879,[340,340,0]],[1708327880,[340,340,0]],[1708327881,[340,340,0]],[1708327882,[340,340,0]],[1708327883,[340,340,0]],[1708327884,[340,340,0]],[1708327885,[340,340,0]],[1708327886,[340,340,0]],[1708327887,[340,340,0]],[1708327888,[340,340,0]],[1708327889,[340,340,0]],[1708327890,[340,340,0]],[1708327891,[503,503,0]]]);
var requestsChart = new Highcharts.StockChart({
chart: {
renderTo: 'requests',
zoomType: 'x',
marginBottom: 60
},
credits: { enabled: false },
legend: {
enabled: true,
floating: true,
y: -65,
borderWidth: 0,
itemStyle: { fontWeight: "normal" },
symbolRadius: 0
},
title: { text: 'A title to let highcharts reserve the place for the title set later' },
navigator: {
maskInside: false
},
rangeSelector: {
buttonSpacing: 0,
buttonTheme: {
fill: '#CFC9C6',
padding: 1,
stroke: '#000000',
'stroke-width': 0.25,
style: {
color: '#000000',
fontWeight: 'bold',
},
states: {
stroke: '#000000',
'stroke-width': 0.25,
hover: {
fill: '#92918C',
style: { color: 'black' }
},
select: {
fill: '#FFA900',
style: { color: 'white' }
}
}
},
buttons : [
{
type : 'minute',
count : 1,