-
Notifications
You must be signed in to change notification settings - Fork 928
/
index.html
1205 lines (1135 loc) · 94.5 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="shortcut icon" type="image/x-icon" href="style/favicon.ico"/>
<link href="style/style.css" rel="stylesheet" type="text/css" />
<link href="style/bootstrap.min.css" rel="stylesheet" type="text/css" />
<script src="js/jquery-3.5.1.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/gatling.js"></script>
<script src="js/menu.js"></script>
<script src="js/ellipsis.js"></script>
<script src="js/all_sessions.js"></script>
<script src="js/stats.js"></script>
<script src="js/highstock.js"></script>
<script src="js/highcharts-more.js"></script>
<script src="js/theme.js"></script>
<script src="js/unpack.js"></script>
<title>Gatling Stats - Global Information</title>
</head>
<body>
<script>
const storedTheme = localStorage.getItem('theme') || (window.matchMedia("(prefers-color-scheme: dark)").matches ? "dark" : "light");
if (storedTheme) document.documentElement.setAttribute('data-theme', storedTheme)
function toggleTheme() {
const currentTheme = document.documentElement.getAttribute("data-theme");
const targetTheme = currentTheme === "light" ? "dark" : "light";
document.documentElement.setAttribute('data-theme', targetTheme)
localStorage.setItem('theme', targetTheme);
};
</script>
<div class="app-container">
<div class="frise"></div>
<div class="head">
<div class="gatling-open-source">
<a class="gatling-logo gatling-logo-light" href="https://gatling.io" target="blank_" title="Gatling Home Page"><img alt="Gatling" src="style/logo-light.svg"/></a>
<a class="gatling-logo gatling-logo-dark" href="https://gatling.io" target="blank_" title="Gatling Home Page"><img alt="Gatling" src="style/logo-dark.svg"/></a>
<a class="gatling-documentation" href="https://gatling.io/docs/" target="_blank">Documentation</a>
</div>
<div class="nav spacer"></div>
<a class="enterprise" href="https://gatling.io/enterprise/next-step/" target="_blank"><strong>Try</strong>
<img class="logo-enterprise-light" alt="Gatling Enterprise" src="style/logo-enterprise-light.svg"/>
<img class="logo-enterprise-dark" alt="Gatling Enterprise" src="style/logo-enterprise-dark.svg"/>
</a>
<button id="theme-toggle" class="theme-toggle" type="button" onclick="toggleTheme()" aria-label="Toggle user interface mode">
<span class="toggle-dark"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-moon"><path d="M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z"></path></svg></span>
<span class="toggle-light"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-sun"><circle cx="12" cy="12" r="5"></circle><line x1="12" y1="1" x2="12" y2="3"></line><line x1="12" y1="21" x2="12" y2="23"></line><line x1="4.22" y1="4.22" x2="5.64" y2="5.64"></line><line x1="18.36" y1="18.36" x2="19.78" y2="19.78"></line><line x1="1" y1="12" x2="3" y2="12"></line><line x1="21" y1="12" x2="23" y2="12"></line><line x1="4.22" y1="19.78" x2="5.64" y2="18.36"></line><line x1="18.36" y1="5.64" x2="19.78" y2="4.22"></line></svg></span>
</button>
</div>
<div class="container details">
<div class="nav">
<ul></ul>
</div>
<div class="cadre">
<div class="content">
<div class="content-header">
<div class="onglet">
RinhaBackendCrebitosSimulation
</div>
<div class="sous-menu" id="sousMenu">
<div class="sous-menu-spacer">
<div class="item ouvert"><a href="index.html">Global</a></div>
<div class="item "><a id="details_link" href="#">Details</a></div>
</div>
</div>
</div>
<div class="content-in">
<div class="container-article">
<div class="article">
<div class="schema-container">
<div id="ranges" class="schema ranges">
</div>
<div class="schema polar">
<div id="container_number_of_requests"></div>
</div>
<div class="simulation-card">
<div class="simulation-version-information">
<span class="simulation-information-title">Gatling Version</span>
<span class="simulation-information-item">
<span class="simulation-information-label">Version: </span>
<span>3.10.3</span>
</span>
<span class="simulation-information-item">
<span class="simulation-information-label">Released: </span>
<span>2023-12-20</span>
</span>
</div>
<div id="simulation-information" class="simulation-version-information">
<span class="simulation-information-title">Run Information</span>
<div class="simulation-information-container">
<span class="simulation-information-item">
<span class="simulation-information-label">Date: </span>
<span>2024-02-19 11:54:53 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 - mateusdeitos-node">
<span class="simulation-information-label">Description: </span>
<span>Rinha de Backend - 2024/Q1: Crébito - mateusdeitos-node</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.u.NoSuchElementException: No attribute named 'limite' is defined<span class="value" style="display:none">0</span></td>
<td class="value error-col-2 total ko">59520</td>
<td class="value error-col-3 total ko">99.975 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">jmesPath(limite).find.exists, found nothing<span class="value" style="display:none">1</span></td>
<td class="value error-col-2 total ko">10</td>
<td class="value error-col-3 total ko">0.017 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">status.find.in(200), but actually found 422<span class="value" style="display:none">2</span></td>
<td class="value error-col-2 total ko">5</td>
<td class="value error-col-3 total ko">0.008 %</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: 'débitos',
data: [
[1708343694000,0],[1708343695000,0],[1708343696000,0],[1708343697000,0],[1708343698000,0],[1708343699000,2],[1708343700000,4],[1708343701000,6],[1708343702000,7],[1708343703000,9],[1708343704000,11],[1708343705000,13],[1708343706000,15],[1708343707000,16],[1708343708000,19],[1708343709000,20],[1708343710000,22],[1708343711000,24],[1708343712000,25],[1708343713000,28],[1708343714000,29],[1708343715000,31],[1708343716000,33],[1708343717000,35],[1708343718000,37],[1708343719000,38],[1708343720000,40],[1708343721000,42],[1708343722000,44],[1708343723000,46],[1708343724000,47],[1708343725000,50],[1708343726000,51],[1708343727000,53],[1708343728000,55],[1708343729000,56],[1708343730000,59],[1708343731000,60],[1708343732000,62],[1708343733000,64],[1708343734000,66],[1708343735000,68],[1708343736000,69],[1708343737000,72],[1708343738000,74],[1708343739000,75],[1708343740000,78],[1708343741000,80],[1708343742000,81],[1708343743000,83],[1708343744000,84],[1708343745000,87],[1708343746000,89],[1708343747000,89],[1708343748000,92],[1708343749000,93],[1708343750000,95],[1708343751000,97],[1708343752000,98],[1708343753000,101],[1708343754000,102],[1708343755000,104],[1708343756000,106],[1708343757000,108],[1708343758000,110],[1708343759000,111],[1708343760000,113],[1708343761000,115],[1708343762000,117],[1708343763000,119],[1708343764000,120],[1708343765000,123],[1708343766000,124],[1708343767000,126],[1708343768000,128],[1708343769000,129],[1708343770000,132],[1708343771000,133],[1708343772000,135],[1708343773000,137],[1708343774000,139],[1708343775000,141],[1708343776000,143],[1708343777000,144],[1708343778000,148],[1708343779000,148],[1708343780000,151],[1708343781000,153],[1708343782000,154],[1708343783000,156],[1708343784000,158],[1708343785000,160],[1708343786000,161],[1708343787000,162],[1708343788000,166],[1708343789000,167],[1708343790000,168],[1708343791000,170],[1708343792000,171],[1708343793000,174],[1708343794000,175],[1708343795000,177],[1708343796000,179],[1708343797000,181],[1708343798000,183],[1708343799000,184],[1708343800000,186],[1708343801000,188],[1708343802000,190],[1708343803000,192],[1708343804000,193],[1708343805000,196],[1708343806000,197],[1708343807000,199],[1708343808000,201],[1708343809000,202],[1708343810000,205],[1708343811000,207],[1708343812000,208],[1708343813000,211],[1708343814000,212],[1708343815000,215],[1708343816000,216],[1708343817000,219],[1708343818000,221],[1708343819000,222],[1708343820000,221],[1708343821000,222],[1708343822000,221],[1708343823000,222],[1708343824000,221],[1708343825000,220],[1708343826000,220],[1708343827000,221],[1708343828000,221],[1708343829000,220],[1708343830000,221],[1708343831000,222],[1708343832000,221],[1708343833000,220],[1708343834000,221],[1708343835000,221],[1708343836000,221],[1708343837000,220],[1708343838000,221],[1708343839000,221],[1708343840000,220],[1708343841000,221],[1708343842000,221],[1708343843000,221],[1708343844000,221],[1708343845000,221],[1708343846000,221],[1708343847000,221],[1708343848000,221],[1708343849000,220],[1708343850000,221],[1708343851000,221],[1708343852000,222],[1708343853000,221],[1708343854000,222],[1708343855000,221],[1708343856000,221],[1708343857000,220],[1708343858000,221],[1708343859000,221],[1708343860000,221],[1708343861000,220],[1708343862000,221],[1708343863000,221],[1708343864000,221],[1708343865000,221],[1708343866000,221],[1708343867000,221],[1708343868000,220],[1708343869000,221],[1708343870000,221],[1708343871000,221],[1708343872000,221],[1708343873000,220],[1708343874000,221],[1708343875000,221],[1708343876000,221],[1708343877000,221],[1708343878000,220],[1708343879000,221],[1708343880000,221],[1708343881000,221],[1708343882000,220],[1708343883000,220],[1708343884000,221],[1708343885000,221],[1708343886000,220],[1708343887000,221],[1708343888000,221],[1708343889000,221],[1708343890000,221],[1708343891000,221],[1708343892000,221],[1708343893000,220],[1708343894000,221],[1708343895000,222],[1708343896000,221],[1708343897000,221],[1708343898000,220],[1708343899000,221],[1708343900000,220],[1708343901000,221],[1708343902000,221],[1708343903000,222],[1708343904000,221],[1708343905000,222],[1708343906000,221],[1708343907000,221],[1708343908000,221],[1708343909000,221],[1708343910000,221],[1708343911000,221],[1708343912000,221],[1708343913000,221],[1708343914000,221],[1708343915000,221],[1708343916000,221],[1708343917000,220],[1708343918000,221],[1708343919000,220],[1708343920000,221],[1708343921000,221],[1708343922000,221],[1708343923000,221],[1708343924000,220],[1708343925000,221],[1708343926000,221],[1708343927000,220],[1708343928000,220],[1708343929000,221],[1708343930000,222],[1708343931000,221],[1708343932000,221],[1708343933000,221],[1708343934000,222],[1708343935000,221],[1708343936000,222],[1708343937000,221],[1708343938000,217]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#68b65c',
name: 'créditos',
data: [
[1708343694000,0],[1708343695000,0],[1708343696000,0],[1708343697000,0],[1708343698000,0],[1708343699000,2],[1708343700000,2],[1708343701000,4],[1708343702000,4],[1708343703000,5],[1708343704000,6],[1708343705000,7],[1708343706000,8],[1708343707000,8],[1708343708000,10],[1708343709000,10],[1708343710000,12],[1708343711000,12],[1708343712000,14],[1708343713000,14],[1708343714000,15],[1708343715000,16],[1708343716000,17],[1708343717000,17],[1708343718000,19],[1708343719000,20],[1708343720000,20],[1708343721000,22],[1708343722000,22],[1708343723000,23],[1708343724000,25],[1708343725000,25],[1708343726000,26],[1708343727000,26],[1708343728000,28],[1708343729000,29],[1708343730000,30],[1708343731000,30],[1708343732000,32],[1708343733000,32],[1708343734000,33],[1708343735000,34],[1708343736000,35],[1708343737000,36],[1708343738000,37],[1708343739000,38],[1708343740000,39],[1708343741000,39],[1708343742000,41],[1708343743000,41],[1708343744000,43],[1708343745000,43],[1708343746000,44],[1708343747000,45],[1708343748000,46],[1708343749000,47],[1708343750000,48],[1708343751000,48],[1708343752000,50],[1708343753000,50],[1708343754000,52],[1708343755000,52],[1708343756000,53],[1708343757000,54],[1708343758000,56],[1708343759000,55],[1708343760000,57],[1708343761000,58],[1708343762000,59],[1708343763000,59],[1708343764000,61],[1708343765000,61],[1708343766000,63],[1708343767000,63],[1708343768000,64],[1708343769000,65],[1708343770000,66],[1708343771000,67],[1708343772000,68],[1708343773000,68],[1708343774000,70],[1708343775000,71],[1708343776000,73],[1708343777000,73],[1708343778000,74],[1708343779000,75],[1708343780000,76],[1708343781000,77],[1708343782000,78],[1708343783000,79],[1708343784000,79],[1708343785000,80],[1708343786000,81],[1708343787000,81],[1708343788000,83],[1708343789000,84],[1708343790000,85],[1708343791000,85],[1708343792000,86],[1708343793000,86],[1708343794000,88],[1708343795000,89],[1708343796000,89],[1708343797000,91],[1708343798000,91],[1708343799000,92],[1708343800000,94],[1708343801000,94],[1708343802000,95],[1708343803000,96],[1708343804000,97],[1708343805000,97],[1708343806000,99],[1708343807000,99],[1708343808000,101],[1708343809000,101],[1708343810000,103],[1708343811000,104],[1708343812000,104],[1708343813000,106],[1708343814000,106],[1708343815000,107],[1708343816000,107],[1708343817000,110],[1708343818000,110],[1708343819000,111],[1708343820000,110],[1708343821000,111],[1708343822000,110],[1708343823000,111],[1708343824000,110],[1708343825000,110],[1708343826000,110],[1708343827000,110],[1708343828000,110],[1708343829000,110],[1708343830000,110],[1708343831000,111],[1708343832000,110],[1708343833000,110],[1708343834000,110],[1708343835000,110],[1708343836000,110],[1708343837000,110],[1708343838000,110],[1708343839000,110],[1708343840000,110],[1708343841000,110],[1708343842000,110],[1708343843000,110],[1708343844000,110],[1708343845000,110],[1708343846000,110],[1708343847000,110],[1708343848000,110],[1708343849000,110],[1708343850000,110],[1708343851000,110],[1708343852000,111],[1708343853000,110],[1708343854000,111],[1708343855000,110],[1708343856000,110],[1708343857000,110],[1708343858000,110],[1708343859000,110],[1708343860000,110],[1708343861000,110],[1708343862000,110],[1708343863000,110],[1708343864000,110],[1708343865000,110],[1708343866000,110],[1708343867000,110],[1708343868000,110],[1708343869000,110],[1708343870000,110],[1708343871000,110],[1708343872000,110],[1708343873000,110],[1708343874000,110],[1708343875000,110],[1708343876000,110],[1708343877000,110],[1708343878000,110],[1708343879000,110],[1708343880000,110],[1708343881000,110],[1708343882000,110],[1708343883000,110],[1708343884000,110],[1708343885000,110],[1708343886000,110],[1708343887000,111],[1708343888000,110],[1708343889000,110],[1708343890000,110],[1708343891000,110],[1708343892000,110],[1708343893000,110],[1708343894000,110],[1708343895000,111],[1708343896000,110],[1708343897000,110],[1708343898000,110],[1708343899000,110],[1708343900000,110],[1708343901000,110],[1708343902000,110],[1708343903000,111],[1708343904000,110],[1708343905000,111],[1708343906000,110],[1708343907000,110],[1708343908000,110],[1708343909000,110],[1708343910000,110],[1708343911000,110],[1708343912000,110],[1708343913000,110],[1708343914000,110],[1708343915000,110],[1708343916000,110],[1708343917000,110],[1708343918000,110],[1708343919000,110],[1708343920000,110],[1708343921000,110],[1708343922000,110],[1708343923000,110],[1708343924000,110],[1708343925000,110],[1708343926000,110],[1708343927000,110],[1708343928000,110],[1708343929000,110],[1708343930000,111],[1708343931000,110],[1708343932000,110],[1708343933000,110],[1708343934000,111],[1708343935000,110],[1708343936000,111],[1708343937000,110],[1708343938000,108]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#f15b4f',
name: 'extratos',
data: [
[1708343694000,0],[1708343695000,0],[1708343696000,0],[1708343697000,0],[1708343698000,1],[1708343699000,2],[1708343700000,1],[1708343701000,1],[1708343702000,1],[1708343703000,1],[1708343704000,2],[1708343705000,1],[1708343706000,2],[1708343707000,2],[1708343708000,1],[1708343709000,2],[1708343710000,2],[1708343711000,2],[1708343712000,2],[1708343713000,2],[1708343714000,2],[1708343715000,2],[1708343716000,3],[1708343717000,2],[1708343718000,3],[1708343719000,2],[1708343720000,3],[1708343721000,2],[1708343722000,3],[1708343723000,3],[1708343724000,3],[1708343725000,3],[1708343726000,3],[1708343727000,3],[1708343728000,3],[1708343729000,4],[1708343730000,3],[1708343731000,3],[1708343732000,4],[1708343733000,3],[1708343734000,4],[1708343735000,4],[1708343736000,4],[1708343737000,4],[1708343738000,4],[1708343739000,4],[1708343740000,4],[1708343741000,4],[1708343742000,4],[1708343743000,4],[1708343744000,5],[1708343745000,4],[1708343746000,5],[1708343747000,5],[1708343748000,4],[1708343749000,5],[1708343750000,5],[1708343751000,5],[1708343752000,5],[1708343753000,5],[1708343754000,5],[1708343755000,5],[1708343756000,6],[1708343757000,5],[1708343758000,6],[1708343759000,5],[1708343760000,6],[1708343761000,5],[1708343762000,6],[1708343763000,6],[1708343764000,6],[1708343765000,6],[1708343766000,6],[1708343767000,6],[1708343768000,6],[1708343769000,7],[1708343770000,6],[1708343771000,6],[1708343772000,7],[1708343773000,6],[1708343774000,7],[1708343775000,7],[1708343776000,7],[1708343777000,7],[1708343778000,7],[1708343779000,7],[1708343780000,7],[1708343781000,7],[1708343782000,7],[1708343783000,7],[1708343784000,8],[1708343785000,7],[1708343786000,8],[1708343787000,8],[1708343788000,7],[1708343789000,8],[1708343790000,8],[1708343791000,8],[1708343792000,8],[1708343793000,8],[1708343794000,8],[1708343795000,8],[1708343796000,9],[1708343797000,8],[1708343798000,9],[1708343799000,8],[1708343800000,9],[1708343801000,8],[1708343802000,9],[1708343803000,9],[1708343804000,9],[1708343805000,9],[1708343806000,9],[1708343807000,9],[1708343808000,9],[1708343809000,10],[1708343810000,9],[1708343811000,9],[1708343812000,10],[1708343813000,9],[1708343814000,10],[1708343815000,10],[1708343816000,10],[1708343817000,10],[1708343818000,10],[1708343819000,10],[1708343820000,10],[1708343821000,10],[1708343822000,10],[1708343823000,10],[1708343824000,10],[1708343825000,10],[1708343826000,10],[1708343827000,10],[1708343828000,10],[1708343829000,10],[1708343830000,10],[1708343831000,10],[1708343832000,10],[1708343833000,10],[1708343834000,10],[1708343835000,10],[1708343836000,10],[1708343837000,10],[1708343838000,10],[1708343839000,10],[1708343840000,10],[1708343841000,10],[1708343842000,10],[1708343843000,10],[1708343844000,10],[1708343845000,10],[1708343846000,10],[1708343847000,10],[1708343848000,10],[1708343849000,10],[1708343850000,10],[1708343851000,10],[1708343852000,10],[1708343853000,10],[1708343854000,10],[1708343855000,10],[1708343856000,10],[1708343857000,10],[1708343858000,10],[1708343859000,10],[1708343860000,10],[1708343861000,10],[1708343862000,10],[1708343863000,10],[1708343864000,10],[1708343865000,10],[1708343866000,10],[1708343867000,10],[1708343868000,10],[1708343869000,10],[1708343870000,10],[1708343871000,10],[1708343872000,10],[1708343873000,10],[1708343874000,10],[1708343875000,10],[1708343876000,10],[1708343877000,10],[1708343878000,10],[1708343879000,10],[1708343880000,10],[1708343881000,10],[1708343882000,10],[1708343883000,10],[1708343884000,10],[1708343885000,10],[1708343886000,10],[1708343887000,10],[1708343888000,10],[1708343889000,10],[1708343890000,10],[1708343891000,10],[1708343892000,10],[1708343893000,10],[1708343894000,10],[1708343895000,10],[1708343896000,10],[1708343897000,10],[1708343898000,10],[1708343899000,10],[1708343900000,10],[1708343901000,10],[1708343902000,10],[1708343903000,10],[1708343904000,10],[1708343905000,10],[1708343906000,10],[1708343907000,10],[1708343908000,10],[1708343909000,10],[1708343910000,10],[1708343911000,10],[1708343912000,10],[1708343913000,10],[1708343914000,10],[1708343915000,10],[1708343916000,10],[1708343917000,10],[1708343918000,10],[1708343919000,10],[1708343920000,10],[1708343921000,10],[1708343922000,10],[1708343923000,10],[1708343924000,10],[1708343925000,10],[1708343926000,10],[1708343927000,10],[1708343928000,10],[1708343929000,10],[1708343930000,10],[1708343931000,10],[1708343932000,10],[1708343933000,10],[1708343934000,10],[1708343935000,10],[1708343936000,10],[1708343937000,10],[1708343938000,9]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FFDD00',
name: 'validações',
data: [
[1708343694000,0],[1708343695000,0],[1708343696000,0],[1708343697000,5],[1708343698000,5],[1708343699000,0],[1708343700000,0],[1708343701000,0],[1708343702000,0],[1708343703000,0],[1708343704000,0],[1708343705000,0],[1708343706000,0],[1708343707000,0],[1708343708000,0],[1708343709000,0],[1708343710000,0],[1708343711000,0],[1708343712000,0],[1708343713000,0],[1708343714000,0],[1708343715000,0],[1708343716000,0],[1708343717000,0],[1708343718000,0],[1708343719000,0],[1708343720000,0],[1708343721000,0],[1708343722000,0],[1708343723000,0],[1708343724000,0],[1708343725000,0],[1708343726000,0],[1708343727000,0],[1708343728000,0],[1708343729000,0],[1708343730000,0],[1708343731000,0],[1708343732000,0],[1708343733000,0],[1708343734000,0],[1708343735000,0],[1708343736000,0],[1708343737000,0],[1708343738000,0],[1708343739000,0],[1708343740000,0],[1708343741000,0],[1708343742000,0],[1708343743000,0],[1708343744000,0],[1708343745000,0],[1708343746000,0],[1708343747000,0],[1708343748000,0],[1708343749000,0],[1708343750000,0],[1708343751000,0],[1708343752000,0],[1708343753000,0],[1708343754000,0],[1708343755000,0],[1708343756000,0],[1708343757000,0],[1708343758000,0],[1708343759000,0],[1708343760000,0],[1708343761000,0],[1708343762000,0],[1708343763000,0],[1708343764000,0],[1708343765000,0],[1708343766000,0],[1708343767000,0],[1708343768000,0],[1708343769000,0],[1708343770000,0],[1708343771000,0],[1708343772000,0],[1708343773000,0],[1708343774000,0],[1708343775000,0],[1708343776000,0],[1708343777000,0],[1708343778000,0],[1708343779000,0],[1708343780000,0],[1708343781000,0],[1708343782000,0],[1708343783000,0],[1708343784000,0],[1708343785000,0],[1708343786000,0],[1708343787000,0],[1708343788000,0],[1708343789000,0],[1708343790000,0],[1708343791000,0],[1708343792000,0],[1708343793000,0],[1708343794000,0],[1708343795000,0],[1708343796000,0],[1708343797000,0],[1708343798000,0],[1708343799000,0],[1708343800000,0],[1708343801000,0],[1708343802000,0],[1708343803000,0],[1708343804000,0],[1708343805000,0],[1708343806000,0],[1708343807000,0],[1708343808000,0],[1708343809000,0],[1708343810000,0],[1708343811000,0],[1708343812000,0],[1708343813000,0],[1708343814000,0],[1708343815000,0],[1708343816000,0],[1708343817000,0],[1708343818000,0],[1708343819000,0],[1708343820000,0],[1708343821000,0],[1708343822000,0],[1708343823000,0],[1708343824000,0],[1708343825000,0],[1708343826000,0],[1708343827000,0],[1708343828000,0],[1708343829000,0],[1708343830000,0],[1708343831000,0],[1708343832000,0],[1708343833000,0],[1708343834000,0],[1708343835000,0],[1708343836000,0],[1708343837000,0],[1708343838000,0],[1708343839000,0],[1708343840000,0],[1708343841000,0],[1708343842000,0],[1708343843000,0],[1708343844000,0],[1708343845000,0],[1708343846000,0],[1708343847000,0],[1708343848000,0],[1708343849000,0],[1708343850000,0],[1708343851000,0],[1708343852000,0],[1708343853000,0],[1708343854000,0],[1708343855000,0],[1708343856000,0],[1708343857000,0],[1708343858000,0],[1708343859000,0],[1708343860000,0],[1708343861000,0],[1708343862000,0],[1708343863000,0],[1708343864000,0],[1708343865000,0],[1708343866000,0],[1708343867000,0],[1708343868000,0],[1708343869000,0],[1708343870000,0],[1708343871000,0],[1708343872000,0],[1708343873000,0],[1708343874000,0],[1708343875000,0],[1708343876000,0],[1708343877000,0],[1708343878000,0],[1708343879000,0],[1708343880000,0],[1708343881000,0],[1708343882000,0],[1708343883000,0],[1708343884000,0],[1708343885000,0],[1708343886000,0],[1708343887000,0],[1708343888000,0],[1708343889000,0],[1708343890000,0],[1708343891000,0],[1708343892000,0],[1708343893000,0],[1708343894000,0],[1708343895000,0],[1708343896000,0],[1708343897000,0],[1708343898000,0],[1708343899000,0],[1708343900000,0],[1708343901000,0],[1708343902000,0],[1708343903000,0],[1708343904000,0],[1708343905000,0],[1708343906000,0],[1708343907000,0],[1708343908000,0],[1708343909000,0],[1708343910000,0],[1708343911000,0],[1708343912000,0],[1708343913000,0],[1708343914000,0],[1708343915000,0],[1708343916000,0],[1708343917000,0],[1708343918000,0],[1708343919000,0],[1708343920000,0],[1708343921000,0],[1708343922000,0],[1708343923000,0],[1708343924000,0],[1708343925000,0],[1708343926000,0],[1708343927000,0],[1708343928000,0],[1708343929000,0],[1708343930000,0],[1708343931000,0],[1708343932000,0],[1708343933000,0],[1708343934000,0],[1708343935000,0],[1708343936000,0],[1708343937000,0],[1708343938000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00D5FF',
name: 'validação HTTP 404',
data: [
[1708343694000,0],[1708343695000,0],[1708343696000,0],[1708343697000,1],[1708343698000,0],[1708343699000,0],[1708343700000,0],[1708343701000,0],[1708343702000,0],[1708343703000,0],[1708343704000,0],[1708343705000,0],[1708343706000,0],[1708343707000,0],[1708343708000,0],[1708343709000,0],[1708343710000,0],[1708343711000,0],[1708343712000,0],[1708343713000,0],[1708343714000,0],[1708343715000,0],[1708343716000,0],[1708343717000,0],[1708343718000,0],[1708343719000,0],[1708343720000,0],[1708343721000,0],[1708343722000,0],[1708343723000,0],[1708343724000,0],[1708343725000,0],[1708343726000,0],[1708343727000,0],[1708343728000,0],[1708343729000,0],[1708343730000,0],[1708343731000,0],[1708343732000,0],[1708343733000,0],[1708343734000,0],[1708343735000,0],[1708343736000,0],[1708343737000,0],[1708343738000,0],[1708343739000,0],[1708343740000,0],[1708343741000,0],[1708343742000,0],[1708343743000,0],[1708343744000,0],[1708343745000,0],[1708343746000,0],[1708343747000,0],[1708343748000,0],[1708343749000,0],[1708343750000,0],[1708343751000,0],[1708343752000,0],[1708343753000,0],[1708343754000,0],[1708343755000,0],[1708343756000,0],[1708343757000,0],[1708343758000,0],[1708343759000,0],[1708343760000,0],[1708343761000,0],[1708343762000,0],[1708343763000,0],[1708343764000,0],[1708343765000,0],[1708343766000,0],[1708343767000,0],[1708343768000,0],[1708343769000,0],[1708343770000,0],[1708343771000,0],[1708343772000,0],[1708343773000,0],[1708343774000,0],[1708343775000,0],[1708343776000,0],[1708343777000,0],[1708343778000,0],[1708343779000,0],[1708343780000,0],[1708343781000,0],[1708343782000,0],[1708343783000,0],[1708343784000,0],[1708343785000,0],[1708343786000,0],[1708343787000,0],[1708343788000,0],[1708343789000,0],[1708343790000,0],[1708343791000,0],[1708343792000,0],[1708343793000,0],[1708343794000,0],[1708343795000,0],[1708343796000,0],[1708343797000,0],[1708343798000,0],[1708343799000,0],[1708343800000,0],[1708343801000,0],[1708343802000,0],[1708343803000,0],[1708343804000,0],[1708343805000,0],[1708343806000,0],[1708343807000,0],[1708343808000,0],[1708343809000,0],[1708343810000,0],[1708343811000,0],[1708343812000,0],[1708343813000,0],[1708343814000,0],[1708343815000,0],[1708343816000,0],[1708343817000,0],[1708343818000,0],[1708343819000,0],[1708343820000,0],[1708343821000,0],[1708343822000,0],[1708343823000,0],[1708343824000,0],[1708343825000,0],[1708343826000,0],[1708343827000,0],[1708343828000,0],[1708343829000,0],[1708343830000,0],[1708343831000,0],[1708343832000,0],[1708343833000,0],[1708343834000,0],[1708343835000,0],[1708343836000,0],[1708343837000,0],[1708343838000,0],[1708343839000,0],[1708343840000,0],[1708343841000,0],[1708343842000,0],[1708343843000,0],[1708343844000,0],[1708343845000,0],[1708343846000,0],[1708343847000,0],[1708343848000,0],[1708343849000,0],[1708343850000,0],[1708343851000,0],[1708343852000,0],[1708343853000,0],[1708343854000,0],[1708343855000,0],[1708343856000,0],[1708343857000,0],[1708343858000,0],[1708343859000,0],[1708343860000,0],[1708343861000,0],[1708343862000,0],[1708343863000,0],[1708343864000,0],[1708343865000,0],[1708343866000,0],[1708343867000,0],[1708343868000,0],[1708343869000,0],[1708343870000,0],[1708343871000,0],[1708343872000,0],[1708343873000,0],[1708343874000,0],[1708343875000,0],[1708343876000,0],[1708343877000,0],[1708343878000,0],[1708343879000,0],[1708343880000,0],[1708343881000,0],[1708343882000,0],[1708343883000,0],[1708343884000,0],[1708343885000,0],[1708343886000,0],[1708343887000,0],[1708343888000,0],[1708343889000,0],[1708343890000,0],[1708343891000,0],[1708343892000,0],[1708343893000,0],[1708343894000,0],[1708343895000,0],[1708343896000,0],[1708343897000,0],[1708343898000,0],[1708343899000,0],[1708343900000,0],[1708343901000,0],[1708343902000,0],[1708343903000,0],[1708343904000,0],[1708343905000,0],[1708343906000,0],[1708343907000,0],[1708343908000,0],[1708343909000,0],[1708343910000,0],[1708343911000,0],[1708343912000,0],[1708343913000,0],[1708343914000,0],[1708343915000,0],[1708343916000,0],[1708343917000,0],[1708343918000,0],[1708343919000,0],[1708343920000,0],[1708343921000,0],[1708343922000,0],[1708343923000,0],[1708343924000,0],[1708343925000,0],[1708343926000,0],[1708343927000,0],[1708343928000,0],[1708343929000,0],[1708343930000,0],[1708343931000,0],[1708343932000,0],[1708343933000,0],[1708343934000,0],[1708343935000,0],[1708343936000,0],[1708343937000,0],[1708343938000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00FF00',
name: 'validação concorrência saldo - 0',
data: [
[1708343694000,0],[1708343695000,0],[1708343696000,1],[1708343697000,0],[1708343698000,0],[1708343699000,0],[1708343700000,0],[1708343701000,0],[1708343702000,0],[1708343703000,0],[1708343704000,0],[1708343705000,0],[1708343706000,0],[1708343707000,0],[1708343708000,0],[1708343709000,0],[1708343710000,0],[1708343711000,0],[1708343712000,0],[1708343713000,0],[1708343714000,0],[1708343715000,0],[1708343716000,0],[1708343717000,0],[1708343718000,0],[1708343719000,0],[1708343720000,0],[1708343721000,0],[1708343722000,0],[1708343723000,0],[1708343724000,0],[1708343725000,0],[1708343726000,0],[1708343727000,0],[1708343728000,0],[1708343729000,0],[1708343730000,0],[1708343731000,0],[1708343732000,0],[1708343733000,0],[1708343734000,0],[1708343735000,0],[1708343736000,0],[1708343737000,0],[1708343738000,0],[1708343739000,0],[1708343740000,0],[1708343741000,0],[1708343742000,0],[1708343743000,0],[1708343744000,0],[1708343745000,0],[1708343746000,0],[1708343747000,0],[1708343748000,0],[1708343749000,0],[1708343750000,0],[1708343751000,0],[1708343752000,0],[1708343753000,0],[1708343754000,0],[1708343755000,0],[1708343756000,0],[1708343757000,0],[1708343758000,0],[1708343759000,0],[1708343760000,0],[1708343761000,0],[1708343762000,0],[1708343763000,0],[1708343764000,0],[1708343765000,0],[1708343766000,0],[1708343767000,0],[1708343768000,0],[1708343769000,0],[1708343770000,0],[1708343771000,0],[1708343772000,0],[1708343773000,0],[1708343774000,0],[1708343775000,0],[1708343776000,0],[1708343777000,0],[1708343778000,0],[1708343779000,0],[1708343780000,0],[1708343781000,0],[1708343782000,0],[1708343783000,0],[1708343784000,0],[1708343785000,0],[1708343786000,0],[1708343787000,0],[1708343788000,0],[1708343789000,0],[1708343790000,0],[1708343791000,0],[1708343792000,0],[1708343793000,0],[1708343794000,0],[1708343795000,0],[1708343796000,0],[1708343797000,0],[1708343798000,0],[1708343799000,0],[1708343800000,0],[1708343801000,0],[1708343802000,0],[1708343803000,0],[1708343804000,0],[1708343805000,0],[1708343806000,0],[1708343807000,0],[1708343808000,0],[1708343809000,0],[1708343810000,0],[1708343811000,0],[1708343812000,0],[1708343813000,0],[1708343814000,0],[1708343815000,0],[1708343816000,0],[1708343817000,0],[1708343818000,0],[1708343819000,0],[1708343820000,0],[1708343821000,0],[1708343822000,0],[1708343823000,0],[1708343824000,0],[1708343825000,0],[1708343826000,0],[1708343827000,0],[1708343828000,0],[1708343829000,0],[1708343830000,0],[1708343831000,0],[1708343832000,0],[1708343833000,0],[1708343834000,0],[1708343835000,0],[1708343836000,0],[1708343837000,0],[1708343838000,0],[1708343839000,0],[1708343840000,0],[1708343841000,0],[1708343842000,0],[1708343843000,0],[1708343844000,0],[1708343845000,0],[1708343846000,0],[1708343847000,0],[1708343848000,0],[1708343849000,0],[1708343850000,0],[1708343851000,0],[1708343852000,0],[1708343853000,0],[1708343854000,0],[1708343855000,0],[1708343856000,0],[1708343857000,0],[1708343858000,0],[1708343859000,0],[1708343860000,0],[1708343861000,0],[1708343862000,0],[1708343863000,0],[1708343864000,0],[1708343865000,0],[1708343866000,0],[1708343867000,0],[1708343868000,0],[1708343869000,0],[1708343870000,0],[1708343871000,0],[1708343872000,0],[1708343873000,0],[1708343874000,0],[1708343875000,0],[1708343876000,0],[1708343877000,0],[1708343878000,0],[1708343879000,0],[1708343880000,0],[1708343881000,0],[1708343882000,0],[1708343883000,0],[1708343884000,0],[1708343885000,0],[1708343886000,0],[1708343887000,0],[1708343888000,0],[1708343889000,0],[1708343890000,0],[1708343891000,0],[1708343892000,0],[1708343893000,0],[1708343894000,0],[1708343895000,0],[1708343896000,0],[1708343897000,0],[1708343898000,0],[1708343899000,0],[1708343900000,0],[1708343901000,0],[1708343902000,0],[1708343903000,0],[1708343904000,0],[1708343905000,0],[1708343906000,0],[1708343907000,0],[1708343908000,0],[1708343909000,0],[1708343910000,0],[1708343911000,0],[1708343912000,0],[1708343913000,0],[1708343914000,0],[1708343915000,0],[1708343916000,0],[1708343917000,0],[1708343918000,0],[1708343919000,0],[1708343920000,0],[1708343921000,0],[1708343922000,0],[1708343923000,0],[1708343924000,0],[1708343925000,0],[1708343926000,0],[1708343927000,0],[1708343928000,0],[1708343929000,0],[1708343930000,0],[1708343931000,0],[1708343932000,0],[1708343933000,0],[1708343934000,0],[1708343935000,0],[1708343936000,0],[1708343937000,0],[1708343938000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#9D00FF',
name: 'validação concorrência transações - c',
data: [
[1708343694000,0],[1708343695000,25],[1708343696000,25],[1708343697000,0],[1708343698000,0],[1708343699000,0],[1708343700000,0],[1708343701000,0],[1708343702000,0],[1708343703000,0],[1708343704000,0],[1708343705000,0],[1708343706000,0],[1708343707000,0],[1708343708000,0],[1708343709000,0],[1708343710000,0],[1708343711000,0],[1708343712000,0],[1708343713000,0],[1708343714000,0],[1708343715000,0],[1708343716000,0],[1708343717000,0],[1708343718000,0],[1708343719000,0],[1708343720000,0],[1708343721000,0],[1708343722000,0],[1708343723000,0],[1708343724000,0],[1708343725000,0],[1708343726000,0],[1708343727000,0],[1708343728000,0],[1708343729000,0],[1708343730000,0],[1708343731000,0],[1708343732000,0],[1708343733000,0],[1708343734000,0],[1708343735000,0],[1708343736000,0],[1708343737000,0],[1708343738000,0],[1708343739000,0],[1708343740000,0],[1708343741000,0],[1708343742000,0],[1708343743000,0],[1708343744000,0],[1708343745000,0],[1708343746000,0],[1708343747000,0],[1708343748000,0],[1708343749000,0],[1708343750000,0],[1708343751000,0],[1708343752000,0],[1708343753000,0],[1708343754000,0],[1708343755000,0],[1708343756000,0],[1708343757000,0],[1708343758000,0],[1708343759000,0],[1708343760000,0],[1708343761000,0],[1708343762000,0],[1708343763000,0],[1708343764000,0],[1708343765000,0],[1708343766000,0],[1708343767000,0],[1708343768000,0],[1708343769000,0],[1708343770000,0],[1708343771000,0],[1708343772000,0],[1708343773000,0],[1708343774000,0],[1708343775000,0],[1708343776000,0],[1708343777000,0],[1708343778000,0],[1708343779000,0],[1708343780000,0],[1708343781000,0],[1708343782000,0],[1708343783000,0],[1708343784000,0],[1708343785000,0],[1708343786000,0],[1708343787000,0],[1708343788000,0],[1708343789000,0],[1708343790000,0],[1708343791000,0],[1708343792000,0],[1708343793000,0],[1708343794000,0],[1708343795000,0],[1708343796000,0],[1708343797000,0],[1708343798000,0],[1708343799000,0],[1708343800000,0],[1708343801000,0],[1708343802000,0],[1708343803000,0],[1708343804000,0],[1708343805000,0],[1708343806000,0],[1708343807000,0],[1708343808000,0],[1708343809000,0],[1708343810000,0],[1708343811000,0],[1708343812000,0],[1708343813000,0],[1708343814000,0],[1708343815000,0],[1708343816000,0],[1708343817000,0],[1708343818000,0],[1708343819000,0],[1708343820000,0],[1708343821000,0],[1708343822000,0],[1708343823000,0],[1708343824000,0],[1708343825000,0],[1708343826000,0],[1708343827000,0],[1708343828000,0],[1708343829000,0],[1708343830000,0],[1708343831000,0],[1708343832000,0],[1708343833000,0],[1708343834000,0],[1708343835000,0],[1708343836000,0],[1708343837000,0],[1708343838000,0],[1708343839000,0],[1708343840000,0],[1708343841000,0],[1708343842000,0],[1708343843000,0],[1708343844000,0],[1708343845000,0],[1708343846000,0],[1708343847000,0],[1708343848000,0],[1708343849000,0],[1708343850000,0],[1708343851000,0],[1708343852000,0],[1708343853000,0],[1708343854000,0],[1708343855000,0],[1708343856000,0],[1708343857000,0],[1708343858000,0],[1708343859000,0],[1708343860000,0],[1708343861000,0],[1708343862000,0],[1708343863000,0],[1708343864000,0],[1708343865000,0],[1708343866000,0],[1708343867000,0],[1708343868000,0],[1708343869000,0],[1708343870000,0],[1708343871000,0],[1708343872000,0],[1708343873000,0],[1708343874000,0],[1708343875000,0],[1708343876000,0],[1708343877000,0],[1708343878000,0],[1708343879000,0],[1708343880000,0],[1708343881000,0],[1708343882000,0],[1708343883000,0],[1708343884000,0],[1708343885000,0],[1708343886000,0],[1708343887000,0],[1708343888000,0],[1708343889000,0],[1708343890000,0],[1708343891000,0],[1708343892000,0],[1708343893000,0],[1708343894000,0],[1708343895000,0],[1708343896000,0],[1708343897000,0],[1708343898000,0],[1708343899000,0],[1708343900000,0],[1708343901000,0],[1708343902000,0],[1708343903000,0],[1708343904000,0],[1708343905000,0],[1708343906000,0],[1708343907000,0],[1708343908000,0],[1708343909000,0],[1708343910000,0],[1708343911000,0],[1708343912000,0],[1708343913000,0],[1708343914000,0],[1708343915000,0],[1708343916000,0],[1708343917000,0],[1708343918000,0],[1708343919000,0],[1708343920000,0],[1708343921000,0],[1708343922000,0],[1708343923000,0],[1708343924000,0],[1708343925000,0],[1708343926000,0],[1708343927000,0],[1708343928000,0],[1708343929000,0],[1708343930000,0],[1708343931000,0],[1708343932000,0],[1708343933000,0],[1708343934000,0],[1708343935000,0],[1708343936000,0],[1708343937000,0],[1708343938000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FF00E1',
name: 'validação concorrência saldo - -25',
data: [
[1708343694000,1],[1708343695000,1],[1708343696000,0],[1708343697000,0],[1708343698000,0],[1708343699000,0],[1708343700000,0],[1708343701000,0],[1708343702000,0],[1708343703000,0],[1708343704000,0],[1708343705000,0],[1708343706000,0],[1708343707000,0],[1708343708000,0],[1708343709000,0],[1708343710000,0],[1708343711000,0],[1708343712000,0],[1708343713000,0],[1708343714000,0],[1708343715000,0],[1708343716000,0],[1708343717000,0],[1708343718000,0],[1708343719000,0],[1708343720000,0],[1708343721000,0],[1708343722000,0],[1708343723000,0],[1708343724000,0],[1708343725000,0],[1708343726000,0],[1708343727000,0],[1708343728000,0],[1708343729000,0],[1708343730000,0],[1708343731000,0],[1708343732000,0],[1708343733000,0],[1708343734000,0],[1708343735000,0],[1708343736000,0],[1708343737000,0],[1708343738000,0],[1708343739000,0],[1708343740000,0],[1708343741000,0],[1708343742000,0],[1708343743000,0],[1708343744000,0],[1708343745000,0],[1708343746000,0],[1708343747000,0],[1708343748000,0],[1708343749000,0],[1708343750000,0],[1708343751000,0],[1708343752000,0],[1708343753000,0],[1708343754000,0],[1708343755000,0],[1708343756000,0],[1708343757000,0],[1708343758000,0],[1708343759000,0],[1708343760000,0],[1708343761000,0],[1708343762000,0],[1708343763000,0],[1708343764000,0],[1708343765000,0],[1708343766000,0],[1708343767000,0],[1708343768000,0],[1708343769000,0],[1708343770000,0],[1708343771000,0],[1708343772000,0],[1708343773000,0],[1708343774000,0],[1708343775000,0],[1708343776000,0],[1708343777000,0],[1708343778000,0],[1708343779000,0],[1708343780000,0],[1708343781000,0],[1708343782000,0],[1708343783000,0],[1708343784000,0],[1708343785000,0],[1708343786000,0],[1708343787000,0],[1708343788000,0],[1708343789000,0],[1708343790000,0],[1708343791000,0],[1708343792000,0],[1708343793000,0],[1708343794000,0],[1708343795000,0],[1708343796000,0],[1708343797000,0],[1708343798000,0],[1708343799000,0],[1708343800000,0],[1708343801000,0],[1708343802000,0],[1708343803000,0],[1708343804000,0],[1708343805000,0],[1708343806000,0],[1708343807000,0],[1708343808000,0],[1708343809000,0],[1708343810000,0],[1708343811000,0],[1708343812000,0],[1708343813000,0],[1708343814000,0],[1708343815000,0],[1708343816000,0],[1708343817000,0],[1708343818000,0],[1708343819000,0],[1708343820000,0],[1708343821000,0],[1708343822000,0],[1708343823000,0],[1708343824000,0],[1708343825000,0],[1708343826000,0],[1708343827000,0],[1708343828000,0],[1708343829000,0],[1708343830000,0],[1708343831000,0],[1708343832000,0],[1708343833000,0],[1708343834000,0],[1708343835000,0],[1708343836000,0],[1708343837000,0],[1708343838000,0],[1708343839000,0],[1708343840000,0],[1708343841000,0],[1708343842000,0],[1708343843000,0],[1708343844000,0],[1708343845000,0],[1708343846000,0],[1708343847000,0],[1708343848000,0],[1708343849000,0],[1708343850000,0],[1708343851000,0],[1708343852000,0],[1708343853000,0],[1708343854000,0],[1708343855000,0],[1708343856000,0],[1708343857000,0],[1708343858000,0],[1708343859000,0],[1708343860000,0],[1708343861000,0],[1708343862000,0],[1708343863000,0],[1708343864000,0],[1708343865000,0],[1708343866000,0],[1708343867000,0],[1708343868000,0],[1708343869000,0],[1708343870000,0],[1708343871000,0],[1708343872000,0],[1708343873000,0],[1708343874000,0],[1708343875000,0],[1708343876000,0],[1708343877000,0],[1708343878000,0],[1708343879000,0],[1708343880000,0],[1708343881000,0],[1708343882000,0],[1708343883000,0],[1708343884000,0],[1708343885000,0],[1708343886000,0],[1708343887000,0],[1708343888000,0],[1708343889000,0],[1708343890000,0],[1708343891000,0],[1708343892000,0],[1708343893000,0],[1708343894000,0],[1708343895000,0],[1708343896000,0],[1708343897000,0],[1708343898000,0],[1708343899000,0],[1708343900000,0],[1708343901000,0],[1708343902000,0],[1708343903000,0],[1708343904000,0],[1708343905000,0],[1708343906000,0],[1708343907000,0],[1708343908000,0],[1708343909000,0],[1708343910000,0],[1708343911000,0],[1708343912000,0],[1708343913000,0],[1708343914000,0],[1708343915000,0],[1708343916000,0],[1708343917000,0],[1708343918000,0],[1708343919000,0],[1708343920000,0],[1708343921000,0],[1708343922000,0],[1708343923000,0],[1708343924000,0],[1708343925000,0],[1708343926000,0],[1708343927000,0],[1708343928000,0],[1708343929000,0],[1708343930000,0],[1708343931000,0],[1708343932000,0],[1708343933000,0],[1708343934000,0],[1708343935000,0],[1708343936000,0],[1708343937000,0],[1708343938000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#AECAEB',
name: 'validação concorrência transações - d',
data: [
[1708343694000,25],[1708343695000,0],[1708343696000,0],[1708343697000,0],[1708343698000,0],[1708343699000,0],[1708343700000,0],[1708343701000,0],[1708343702000,0],[1708343703000,0],[1708343704000,0],[1708343705000,0],[1708343706000,0],[1708343707000,0],[1708343708000,0],[1708343709000,0],[1708343710000,0],[1708343711000,0],[1708343712000,0],[1708343713000,0],[1708343714000,0],[1708343715000,0],[1708343716000,0],[1708343717000,0],[1708343718000,0],[1708343719000,0],[1708343720000,0],[1708343721000,0],[1708343722000,0],[1708343723000,0],[1708343724000,0],[1708343725000,0],[1708343726000,0],[1708343727000,0],[1708343728000,0],[1708343729000,0],[1708343730000,0],[1708343731000,0],[1708343732000,0],[1708343733000,0],[1708343734000,0],[1708343735000,0],[1708343736000,0],[1708343737000,0],[1708343738000,0],[1708343739000,0],[1708343740000,0],[1708343741000,0],[1708343742000,0],[1708343743000,0],[1708343744000,0],[1708343745000,0],[1708343746000,0],[1708343747000,0],[1708343748000,0],[1708343749000,0],[1708343750000,0],[1708343751000,0],[1708343752000,0],[1708343753000,0],[1708343754000,0],[1708343755000,0],[1708343756000,0],[1708343757000,0],[1708343758000,0],[1708343759000,0],[1708343760000,0],[1708343761000,0],[1708343762000,0],[1708343763000,0],[1708343764000,0],[1708343765000,0],[1708343766000,0],[1708343767000,0],[1708343768000,0],[1708343769000,0],[1708343770000,0],[1708343771000,0],[1708343772000,0],[1708343773000,0],[1708343774000,0],[1708343775000,0],[1708343776000,0],[1708343777000,0],[1708343778000,0],[1708343779000,0],[1708343780000,0],[1708343781000,0],[1708343782000,0],[1708343783000,0],[1708343784000,0],[1708343785000,0],[1708343786000,0],[1708343787000,0],[1708343788000,0],[1708343789000,0],[1708343790000,0],[1708343791000,0],[1708343792000,0],[1708343793000,0],[1708343794000,0],[1708343795000,0],[1708343796000,0],[1708343797000,0],[1708343798000,0],[1708343799000,0],[1708343800000,0],[1708343801000,0],[1708343802000,0],[1708343803000,0],[1708343804000,0],[1708343805000,0],[1708343806000,0],[1708343807000,0],[1708343808000,0],[1708343809000,0],[1708343810000,0],[1708343811000,0],[1708343812000,0],[1708343813000,0],[1708343814000,0],[1708343815000,0],[1708343816000,0],[1708343817000,0],[1708343818000,0],[1708343819000,0],[1708343820000,0],[1708343821000,0],[1708343822000,0],[1708343823000,0],[1708343824000,0],[1708343825000,0],[1708343826000,0],[1708343827000,0],[1708343828000,0],[1708343829000,0],[1708343830000,0],[1708343831000,0],[1708343832000,0],[1708343833000,0],[1708343834000,0],[1708343835000,0],[1708343836000,0],[1708343837000,0],[1708343838000,0],[1708343839000,0],[1708343840000,0],[1708343841000,0],[1708343842000,0],[1708343843000,0],[1708343844000,0],[1708343845000,0],[1708343846000,0],[1708343847000,0],[1708343848000,0],[1708343849000,0],[1708343850000,0],[1708343851000,0],[1708343852000,0],[1708343853000,0],[1708343854000,0],[1708343855000,0],[1708343856000,0],[1708343857000,0],[1708343858000,0],[1708343859000,0],[1708343860000,0],[1708343861000,0],[1708343862000,0],[1708343863000,0],[1708343864000,0],[1708343865000,0],[1708343866000,0],[1708343867000,0],[1708343868000,0],[1708343869000,0],[1708343870000,0],[1708343871000,0],[1708343872000,0],[1708343873000,0],[1708343874000,0],[1708343875000,0],[1708343876000,0],[1708343877000,0],[1708343878000,0],[1708343879000,0],[1708343880000,0],[1708343881000,0],[1708343882000,0],[1708343883000,0],[1708343884000,0],[1708343885000,0],[1708343886000,0],[1708343887000,0],[1708343888000,0],[1708343889000,0],[1708343890000,0],[1708343891000,0],[1708343892000,0],[1708343893000,0],[1708343894000,0],[1708343895000,0],[1708343896000,0],[1708343897000,0],[1708343898000,0],[1708343899000,0],[1708343900000,0],[1708343901000,0],[1708343902000,0],[1708343903000,0],[1708343904000,0],[1708343905000,0],[1708343906000,0],[1708343907000,0],[1708343908000,0],[1708343909000,0],[1708343910000,0],[1708343911000,0],[1708343912000,0],[1708343913000,0],[1708343914000,0],[1708343915000,0],[1708343916000,0],[1708343917000,0],[1708343918000,0],[1708343919000,0],[1708343920000,0],[1708343921000,0],[1708343922000,0],[1708343923000,0],[1708343924000,0],[1708343925000,0],[1708343926000,0],[1708343927000,0],[1708343928000,0],[1708343929000,0],[1708343930000,0],[1708343931000,0],[1708343932000,0],[1708343933000,0],[1708343934000,0],[1708343935000,0],[1708343936000,0],[1708343937000,0],[1708343938000,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: ['1', '2', '3', '4', '5', '6', '7', '8', '9', '10', '11', '13', '14', '15', '16', '17', '18', '19', '20', '21', '22', '23', '25', '26', '27', '28', '29', '30', '31', '32', '33', '34', '35', '37', '38', '39', '40', '41', '42', '43', '44', '45', '46', '47', '49', '50', '51', '52', '53', '54', '55', '56', '57', '58', '59', '60', '62', '63', '64', '65', '66', '67', '68', '69', '70', '71', '72', '74', '75', '76', '77', '78', '79', '80', '81', '82', '83', '84', '86', '87', '88', '89', '90', '91', '92', '93', '94', '95', '96', '98', '99', '100', '101', '102', '103', '104', '105', '106', '107', '108'],
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: [
0.69,1.47,0.27,0.25,0.24,0.11,0.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
],
tooltip: { yDecimals: 0, ySuffix: 'ms' }
},
{
type: 'column',
color: '#f15b4f',
name: 'KO',
data: [
57.27,19.51,8.94,7.65,2.9,0.43,0.06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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([[1708343694,[23,45,58,80,86,92,98,102,107,109]],[1708343695,[4,4,4,4,4,4,4,4,4,4]],[1708343696,[17,26,34,83,84,87,89,92,95,96]],[1708343697,[5,5,5,5,5,5,5,5,5,5]],[1708343698,[1,1,2,4,5,5,6,7,9,10]],[1708343699,[5,5,5,5,5,5,5,5,5,5]],[1708343700,[5,5,5,5,5,5,5,5,5,5]],[1708343701,[6,6,6,6,6,6,6,6,6,6]],[1708343702,[4,4,4,4,4,4,4,4,4,4]],[1708343703,[5,5,5,5,5,5,5,5,5,5]],[1708343704,[3,3,4,4,4,4,4,4,4,5]],[1708343705,[4,4,4,4,4,4,4,4,4,4]],[1708343706,[3,3,3,3,3,3,3,3,3,4]],[1708343707,[3,3,3,3,3,3,3,3,3,3]],[1708343708,[5,5,5,5,5,5,5,5,5,5]],[1708343709,[3,3,4,4,4,4,4,4,4,5]],[1708343710,[3,3,3,3,3,3,3,3,3,3]],[1708343711,[3,3,3,3,3,3,3,3,3,3]],[1708343712,[2,2,3,3,3,3,3,3,3,4]],[1708343713,[3,3,3,3,3,3,3,3,3,3]],[1708343714,[2,2,3,4,4,4,4,4,4,5]],[1708343715,[2,2,2,2,2,2,2,2,2,3]],[1708343716,[3,3,3,3,3,3,3,3,3,4]],[1708343717,[2,2,2,2,2,2,2,2,2,3]],[1708343718,[3,3,3,3,3,3,3,3,3,4]],[1708343719,[2,2,3,3,3,3,3,3,3,3]],[1708343720,[2,2,2,2,2,2,2,2,2,3]],[1708343721,[2,2,2,2,2,2,2,2,2,3]],[1708343722,[2,2,2,2,2,2,2,2,2,3]],[1708343723,[2,2,2,2,2,2,2,2,2,3]],[1708343724,[2,2,2,2,2,2,2,2,2,3]],[1708343725,[2,2,2,2,2,2,2,2,2,3]],[1708343726,[2,2,2,2,2,2,2,2,2,3]],[1708343727,[2,2,2,2,2,2,2,2,2,3]],[1708343728,[2,2,2,2,2,2,2,2,2,3]],[1708343729,[2,2,2,3,3,3,3,3,3,3]],[1708343730,[2,2,2,2,2,2,2,2,2,3]],[1708343731,[1,1,2,2,2,2,2,2,2,3]],[1708343732,[2,2,2,3,3,3,3,3,3,3]],[1708343733,[1,1,2,2,2,2,2,2,2,3]],[1708343734,[2,2,2,2,2,3,3,3,3,4]],[1708343735,[2,2,2,2,2,2,2,2,2,3]],[1708343736,[2,2,2,2,2,2,2,2,2,2]],[1708343737,[1,1,1,1,1,2,2,2,2,3]],[1708343738,[1,1,2,2,2,2,2,2,2,2]],[1708343739,[2,2,2,3,3,3,3,3,3,3]],[1708343740,[2,2,2,2,2,2,2,2,2,2]],[1708343741,[2,2,2,2,2,2,2,2,2,3]],[1708343742,[1,1,2,2,2,2,2,2,2,3]],[1708343743,[1,1,2,2,2,2,2,2,2,2]],[1708343744,[1,1,2,2,2,2,2,2,2,2]],[1708343745,[1,1,2,2,2,2,2,2,2,2]],[1708343746,[1,1,1,2,2,2,2,2,2,2]],[1708343747,[1,1,2,2,2,2,2,2,2,2]],[1708343748,[2,2,2,2,2,2,2,2,2,2]],[1708343749,[2,2,2,2,2,2,2,2,2,2]],[1708343750,[1,1,2,2,2,2,2,2,2,2]],[1708343751,[2,2,2,2,2,2,2,2,2,2]],[1708343752,[1,2,2,2,2,2,2,2,2,3]],[1708343753,[1,1,1,2,2,2,2,2,2,2]],[1708343754,[1,1,2,2,2,2,2,2,2,2]],[1708343755,[1,1,1,1,1,1,1,1,1,1]],[1708343756,[1,1,2,2,2,2,2,2,2,2]],[1708343757,[1,1,2,2,2,2,2,2,2,3]],[1708343758,[1,1,1,2,2,2,2,2,2,2]],[1708343759,[1,2,2,2,2,2,2,2,2,3]],[1708343760,[2,2,2,2,2,2,2,2,2,2]],[1708343761,[2,2,2,3,3,3,3,3,3,3]],[1708343762,[1,2,2,2,2,2,2,2,2,2]],[1708343763,[1,1,1,1,1,1,1,1,1,2]],[1708343764,[1,1,2,2,2,2,2,2,2,3]],[1708343765,[1,2,2,2,2,2,2,2,2,2]],[1708343766,[2,2,2,2,2,2,2,2,2,3]],[1708343767,[1,2,2,2,3,3,3,3,3,3]],[1708343768,[2,2,2,2,2,2,2,2,2,2]],[1708343769,[2,2,2,2,2,2,2,2,2,3]],[1708343770,[2,2,2,2,2,2,2,2,2,2]],[1708343771,[1,1,1,1,2,2,2,2,2,2]],[1708343772,[1,1,1,1,1,1,1,1,1,2]],[1708343773,[1,1,2,2,2,2,2,2,2,2]],[1708343774,[1,1,2,2,2,2,2,2,2,2]],[1708343775,[2,2,2,2,2,2,2,2,2,3]],[1708343776,[1,2,2,2,2,2,2,2,2,2]],[1708343777,[2,2,2,2,2,2,2,2,2,2]],[1708343778,[1,1,2,2,2,2,2,2,2,2]],[1708343779,[1,1,1,2,2,2,2,2,2,3]],[1708343780,[1,1,1,2,2,2,2,2,2,2]],[1708343781,[1,1,1,1,1,1,1,1,1,2]],[1708343782,[1,1,1,1,1,1,1,1,1,1]],[1708343783,[1,2,2,2,2,2,2,2,2,3]],[1708343784,[1,1,1,2,2,2,2,2,2,3]],[1708343785,[1,1,2,2,2,2,2,2,2,3]],[1708343786,[1,1,1,2,2,2,2,2,2,2]],[1708343787,[1,1,1,2,2,2,2,2,2,2]],[1708343788,[1,1,1,1,1,2,2,2,2,2]],[1708343789,[1,1,2,2,2,2,2,2,2,3]],[1708343790,[1,1,2,2,2,2,2,2,2,2]],[1708343791,[1,2,2,2,2,2,2,2,2,3]],[1708343792,[1,1,1,1,1,1,2,2,2,2]],[1708343793,[1,1,1,2,2,2,2,2,2,2]],[1708343794,[1,1,1,2,2,2,2,2,2,2]],[1708343795,[1,1,1,1,1,1,2,2,2,2]],[1708343796,[1,1,1,2,2,2,2,2,2,2]],[1708343797,[1,1,1,1,1,1,2,2,2,2]],[1708343798,[1,1,1,1,1,1,2,2,2,2]],[1708343799,[1,2,2,2,2,2,2,2,2,2]],[1708343800,[1,1,1,2,2,2,2,2,2,2]],[1708343801,[1,1,1,2,2,2,2,2,2,2]],[1708343802,[1,1,1,2,2,2,2,2,2,2]],[1708343803,[1,1,1,1,1,1,2,2,2,2]],[1708343804,[1,1,1,1,1,1,2,2,2,2]],[1708343805,[1,1,1,2,2,2,2,2,2,2]],[1708343806,[1,1,2,2,2,2,2,2,2,2]],[1708343807,[1,2,2,2,2,2,2,2,2,3]],[1708343808,[1,1,2,2,2,2,2,2,2,2]],[1708343809,[1,1,2,2,2,2,2,2,2,3]],[1708343810,[1,1,1,2,2,2,2,2,2,2]],[1708343811,[1,1,3,5,5,5,5,5,5,6]],[1708343812,[1,1,2,2,3,3,4,4,4,4]],[1708343813,[2,3,3,5,5,5,5,5,5,5]],[1708343814,[1,1,2,2,3,4,5,5,5,5]],[1708343815,[1,4,4,4,5,5,5,5,5,5]],[1708343816,[1,1,1,2,2,2,3,4,5,6]],[1708343817,[1,3,3,3,4,4,4,4,4,5]],[1708343818,[1,1,2,2,2,2,3,4,4,5]],[1708343819,[4,5,5,6,6,6,6,6,6,7]],[1708343820,[1,1,1,2,2,2,2,2,2,2]],[1708343821,[3,3,5,5,5,5,6,6,6,7]],[1708343822,[2,2,2,2,2,2,2,2,2,3]],[1708343823,[2,4,5,5,5,5,6,6,6,6]],[1708343824,[1,1,2,2,2,2,2,3,3,4]],[1708343825,[1,5,5,5,5,5,6,6,6,6]],[1708343826,[1,1,2,2,2,2,2,3,4,5]],[1708343827,[2,3,4,4,5,5,5,5,5,5]],[1708343828,[1,1,2,2,2,3,5,5,5,6]],[1708343829,[1,2,5,5,6,6,6,6,6,6]],[1708343830,[1,1,2,2,2,3,5,5,5,6]],[1708343831,[1,2,3,4,4,4,5,5,5,5]],[1708343832,[2,2,2,2,3,3,4,4,4,4]],[1708343833,[2,2,3,4,5,5,6,6,6,7]],[1708343834,[1,2,2,3,4,4,5,5,5,6]],[1708343835,[2,2,3,5,5,5,6,6,6,6]],[1708343836,[2,2,2,3,4,4,4,5,5,6]],[1708343837,[2,2,2,3,4,4,4,5,5,6]],[1708343838,[1,2,2,4,5,5,5,5,5,5]],[1708343839,[1,2,2,4,4,4,4,4,4,5]],[1708343840,[2,2,2,5,5,5,5,5,5,6]],[1708343841,[1,1,2,2,3,3,3,3,3,3]],[1708343842,[2,2,2,4,4,4,4,4,4,5]],[1708343843,[1,2,2,2,2,2,2,3,4,5]],[1708343844,[2,2,3,4,5,5,6,6,6,6]],[1708343845,[2,2,2,2,2,2,2,2,2,2]],[1708343846,[2,2,4,5,5,5,6,6,6,6]],[1708343847,[2,2,2,2,2,2,2,2,2,2]],[1708343848,[2,2,3,5,5,5,5,5,5,6]],[1708343849,[1,2,2,2,2,2,2,2,2,2]],[1708343850,[1,2,4,4,5,5,5,5,5,6]],[1708343851,[1,1,1,1,1,1,1,1,1,2]],[1708343852,[1,1,2,5,6,6,6,6,6,6]],[1708343853,[1,2,2,2,2,2,2,2,2,2]],[1708343854,[2,2,3,5,5,5,5,5,5,6]],[1708343855,[2,2,2,2,2,2,2,2,2,2]],[1708343856,[2,2,2,4,5,5,5,5,5,6]],[1708343857,[1,2,2,2,2,2,2,2,2,2]],[1708343858,[1,2,2,3,3,3,4,4,4,4]],[1708343859,[1,1,1,1,1,1,2,2,2,2]],[1708343860,[1,1,2,2,3,3,4,6,7,8]],[1708343861,[1,2,2,2,2,2,2,2,2,2]],[1708343862,[1,2,2,4,4,4,5,6,6,7]],[1708343863,[1,2,2,2,2,2,2,2,2,2]],[1708343864,[2,2,2,3,4,4,4,4,4,4]],[1708343865,[2,2,2,2,2,2,2,2,2,3]],[1708343866,[1,2,2,2,2,3,5,5,5,5]],[1708343867,[1,2,2,2,2,2,2,2,2,3]],[1708343868,[2,2,2,2,2,2,2,3,3,4]],[1708343869,[1,1,2,2,2,2,2,3,3,4]],[1708343870,[1,1,2,3,3,4,5,5,5,6]],[1708343871,[2,2,2,2,2,2,3,3,3,4]],[1708343872,[1,1,1,2,2,2,2,2,2,3]],[1708343873,[1,2,2,2,2,2,3,3,3,4]],[1708343874,[2,3,3,4,4,4,5,5,5,6]],[1708343875,[2,2,2,2,3,3,3,3,3,4]],[1708343876,[2,4,5,5,6,6,6,6,6,7]],[1708343877,[2,2,2,3,4,4,4,4,4,5]],[1708343878,[2,2,4,5,5,5,6,6,6,7]],[1708343879,[1,1,1,3,3,3,4,4,4,4]],[1708343880,[1,1,4,4,5,5,5,6,6,7]],[1708343881,[2,2,2,4,5,5,5,5,5,5]],[1708343882,[2,2,3,4,5,5,5,5,5,5]],[1708343883,[1,2,3,4,5,5,6,6,6,6]],[1708343884,[1,1,2,3,3,3,3,3,3,3]],[1708343885,[2,2,2,3,4,4,4,4,4,4]],[1708343886,[2,2,2,4,4,5,6,6,6,6]],[1708343887,[1,1,2,4,4,4,5,5,5,6]],[1708343888,[1,1,1,2,3,4,5,5,5,6]],[1708343889,[1,2,3,4,4,4,4,4,4,5]],[1708343890,[1,1,2,2,2,3,4,4,4,4]],[1708343891,[2,2,4,4,5,5,5,5,5,5]],[1708343892,[2,2,2,2,3,3,4,6,7,8]],[1708343893,[2,2,4,4,4,4,5,5,5,5]],[1708343894,[1,1,2,2,2,2,2,2,2,3]],[1708343895,[2,3,4,4,5,5,6,6,6,6]],[1708343896,[2,2,2,2,2,2,2,2,2,2]],[1708343897,[1,3,4,5,6,6,7,7,7,7]],[1708343898,[1,2,2,2,2,2,2,2,2,2]],[1708343899,[1,2,4,5,5,5,5,5,5,6]],[1708343900,[1,2,2,2,2,2,3,3,3,3]],[1708343901,[1,3,4,4,5,5,5,5,5,5]],[1708343902,[1,1,2,2,2,2,3,3,3,3]],[1708343903,[2,2,5,6,6,6,7,7,7,7]],[1708343904,[1,2,2,2,2,2,2,2,2,3]],[1708343905,[2,2,4,5,5,5,6,6,6,6]],[1708343906,[1,2,2,2,2,2,2,2,2,2]],[1708343907,[2,2,4,5,5,5,6,6,6,6]],[1708343908,[1,1,2,2,2,2,2,2,2,2]],[1708343909,[1,2,2,4,4,4,4,4,4,5]],[1708343910,[1,2,2,2,2,2,2,3,4,5]],[1708343911,[1,2,2,5,5,5,6,6,6,7]],[1708343912,[1,1,2,2,2,2,3,3,3,4]],[1708343913,[1,2,3,4,5,5,6,6,6,7]],[1708343914,[2,2,2,3,3,3,4,4,4,4]],[1708343915,[2,2,2,3,4,4,5,6,6,7]],[1708343916,[2,2,2,3,3,4,5,5,5,5]],[1708343917,[2,2,2,2,2,3,4,4,4,4]],[1708343918,[1,1,1,3,4,4,4,4,4,5]],[1708343919,[1,1,1,1,2,2,2,3,3,4]],[1708343920,[1,1,1,2,3,3,4,4,4,5]],[1708343921,[1,1,2,2,2,2,2,2,2,3]],[1708343922,[2,2,2,5,5,5,5,5,5,5]],[1708343923,[2,2,2,2,2,2,2,4,5,6]],[1708343924,[2,2,3,6,7,7,7,7,7,8]],[1708343925,[1,1,2,2,2,2,3,3,3,3]],[1708343926,[1,2,2,4,4,4,5,5,5,5]],[1708343927,[2,2,2,2,2,2,3,3,3,4]],[1708343928,[1,1,2,3,4,4,4,4,4,5]],[1708343929,[1,1,1,1,1,1,1,1,1,2]],[1708343930,[1,1,2,2,3,3,4,4,4,5]],[1708343931,[2,2,2,2,2,2,2,2,2,2]],[1708343932,[2,2,2,3,4,4,5,6,6,7]],[1708343933,[2,2,2,2,2,2,3,3,3,3]],[1708343934,[1,2,3,3,3,3,3,5,6,7]],[1708343935,[2,2,2,3,3,3,3,4,5,6]],[1708343936,[2,2,5,6,6,6,6,6,6,7]],[1708343937,[2,2,2,4,5,5,5,5,5,6]],[1708343938,[2,2,3,4,4,5,5,6,6,6]]]);
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([[1708343694,[25,25,0]],[1708343695,[1,1,0]],[1708343696,[25,25,0]],[1708343697,[1,1,0]],[1708343698,[51,36,15]],[1708343699,[3,1,2]],[1708343700,[6,1,5]],[1708343701,[9,1,8]],[1708343702,[11,1,10]],[1708343703,[13,1,12]],[1708343704,[18,2,16]],[1708343705,[19,1,18]],[1708343706,[24,2,22]],[1708343707,[26,2,24]],[1708343708,[27,1,26]],[1708343709,[32,2,30]],[1708343710,[34,2,32]],[1708343711,[37,2,35]],[1708343712,[39,2,37]],[1708343713,[43,2,41]],[1708343714,[44,2,42]],[1708343715,[48,2,46]],[1708343716,[50,2,48]],[1708343717,[54,3,51]],[1708343718,[56,2,54]],[1708343719,[61,3,58]],[1708343720,[61,2,59]],[1708343721,[65,3,62]],[1708343722,[67,2,65]],[1708343723,[70,3,67]],[1708343724,[74,3,71]],[1708343725,[76,3,73]],[1708343726,[80,3,77]],[1708343727,[81,3,78]],[1708343728,[84,3,81]],[1708343729,[87,4,83]],[1708343730,[91,3,88]],[1708343731,[92,3,89]],[1708343732,[96,4,92]],[1708343733,[98,3,95]],[1708343734,[101,4,97]],[1708343735,[105,4,101]],[1708343736,[107,4,103]],[1708343737,[110,4,106]],[1708343738,[112,4,108]],[1708343739,[116,4,112]],[1708343740,[118,4,114]],[1708343741,[122,4,118]],[1708343742,[123,4,119]],[1708343743,[127,4,123]],[1708343744,[129,4,125]],[1708343745,[133,5,128]],[1708343746,[134,4,130]],[1708343747,[138,5,133]],[1708343748,[141,5,136]],[1708343749,[143,4,139]],[1708343750,[146,5,141]],[1708343751,[149,5,144]],[1708343752,[152,5,147]],[1708343753,[154,5,149]],[1708343754,[158,5,153]],[1708343755,[160,5,155]],[1708343756,[164,6,158]],[1708343757,[165,5,160]],[1708343758,[170,6,164]],[1708343759,[171,5,166]],[1708343760,[174,6,168]],[1708343761,[176,5,171]],[1708343762,[181,6,175]],[1708343763,[184,6,178]],[1708343764,[185,6,179]],[1708343765,[189,6,183]],[1708343766,[191,6,185]],[1708343767,[194,6,188]],[1708343768,[196,6,190]],[1708343769,[200,6,194]],[1708343770,[202,7,195]],[1708343771,[206,6,200]],[1708343772,[207,6,201]],[1708343773,[211,7,204]],[1708343774,[213,6,207]],[1708343775,[217,7,210]],[1708343776,[219,7,212]],[1708343777,[222,7,215]],[1708343778,[226,7,219]],[1708343779,[227,7,220]],[1708343780,[230,7,223]],[1708343781,[233,7,226]],[1708343782,[237,7,230]],[1708343783,[239,7,232]],[1708343784,[242,8,234]],[1708343785,[244,7,237]],[1708343786,[248,8,240]],[1708343787,[251,8,243]],[1708343788,[252,7,245]],[1708343789,[256,8,248]],[1708343790,[259,8,251]],[1708343791,[262,8,254]],[1708343792,[264,8,256]],[1708343793,[267,8,259]],[1708343794,[269,8,261]],[1708343795,[272,8,264]],[1708343796,[275,8,267]],[1708343797,[279,9,270]],[1708343798,[281,8,273]],[1708343799,[285,9,276]],[1708343800,[286,8,278]],[1708343801,[290,9,281]],[1708343802,[291,8,283]],[1708343803,[296,9,287]],[1708343804,[298,9,289]],[1708343805,[300,9,291]],[1708343806,[303,9,294]],[1708343807,[307,9,298]],[1708343808,[309,9,300]],[1708343809,[312,10,302]],[1708343810,[315,9,306]],[1708343811,[317,9,308]],[1708343812,[321,10,311]],[1708343813,[322,9,313]],[1708343814,[327,10,317]],[1708343815,[329,10,319]],[1708343816,[332,10,322]],[1708343817,[334,10,324]],[1708343818,[338,10,328]],[1708343819,[340,10,330]],[1708343820,[340,10,330]],[1708343821,[340,10,330]],[1708343822,[340,10,330]],[1708343823,[340,10,330]],[1708343824,[340,10,330]],[1708343825,[340,10,330]],[1708343826,[340,10,330]],[1708343827,[340,10,330]],[1708343828,[340,10,330]],[1708343829,[340,10,330]],[1708343830,[340,10,330]],[1708343831,[340,10,330]],[1708343832,[340,10,330]],[1708343833,[340,10,330]],[1708343834,[340,10,330]],[1708343835,[340,10,330]],[1708343836,[340,10,330]],[1708343837,[340,10,330]],[1708343838,[340,10,330]],[1708343839,[340,10,330]],[1708343840,[340,10,330]],[1708343841,[340,10,330]],[1708343842,[340,10,330]],[1708343843,[340,10,330]],[1708343844,[340,10,330]],[1708343845,[340,10,330]],[1708343846,[340,10,330]],[1708343847,[340,10,330]],[1708343848,[340,10,330]],[1708343849,[340,10,330]],[1708343850,[340,10,330]],[1708343851,[340,10,330]],[1708343852,[340,10,330]],[1708343853,[340,10,330]],[1708343854,[340,10,330]],[1708343855,[340,10,330]],[1708343856,[340,10,330]],[1708343857,[340,10,330]],[1708343858,[340,10,330]],[1708343859,[340,10,330]],[1708343860,[340,10,330]],[1708343861,[340,10,330]],[1708343862,[340,10,330]],[1708343863,[340,10,330]],[1708343864,[340,10,330]],[1708343865,[340,10,330]],[1708343866,[340,10,330]],[1708343867,[340,10,330]],[1708343868,[340,10,330]],[1708343869,[340,10,330]],[1708343870,[340,10,330]],[1708343871,[340,10,330]],[1708343872,[340,10,330]],[1708343873,[340,10,330]],[1708343874,[340,10,330]],[1708343875,[340,10,330]],[1708343876,[340,10,330]],[1708343877,[340,10,330]],[1708343878,[340,10,330]],[1708343879,[340,10,330]],[1708343880,[340,10,330]],[1708343881,[340,10,330]],[1708343882,[340,10,330]],[1708343883,[340,10,330]],[1708343884,[340,10,330]],[1708343885,[340,10,330]],[1708343886,[340,10,330]],[1708343887,[340,10,330]],[1708343888,[340,10,330]],[1708343889,[340,10,330]],[1708343890,[340,10,330]],[1708343891,[340,10,330]],[1708343892,[340,10,330]],[1708343893,[340,10,330]],[1708343894,[340,10,330]],[1708343895,[340,10,330]],[1708343896,[340,10,330]],[1708343897,[340,10,330]],[1708343898,[340,10,330]],[1708343899,[340,10,330]],[1708343900,[340,10,330]],[1708343901,[340,10,330]],[1708343902,[340,10,330]],[1708343903,[340,10,330]],[1708343904,[340,10,330]],[1708343905,[340,10,330]],[1708343906,[340,10,330]],[1708343907,[340,10,330]],[1708343908,[340,10,330]],[1708343909,[340,10,330]],[1708343910,[340,10,330]],[1708343911,[340,10,330]],[1708343912,[340,10,330]],[1708343913,[340,10,330]],[1708343914,[340,10,330]],[1708343915,[340,10,330]],[1708343916,[340,10,330]],[1708343917,[340,10,330]],[1708343918,[340,10,330]],[1708343919,[340,10,330]],[1708343920,[340,10,330]],[1708343921,[340,10,330]],[1708343922,[340,10,330]],[1708343923,[340,10,330]],[1708343924,[340,10,330]],[1708343925,[340,10,330]],[1708343926,[340,10,330]],[1708343927,[340,10,330]],[1708343928,[340,10,330]],[1708343929,[340,10,330]],[1708343930,[340,10,330]],[1708343931,[340,10,330]],[1708343932,[340,10,330]],[1708343933,[340,10,330]],[1708343934,[340,10,330]],[1708343935,[340,10,330]],[1708343936,[340,10,330]],[1708343937,[340,10,330]],[1708343938,[504,14,490]]]);
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,