-
Notifications
You must be signed in to change notification settings - Fork 923
/
Copy pathindex.html
1205 lines (1135 loc) · 95 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="shortcut icon" type="image/x-icon" href="style/favicon.ico"/>
<link href="style/style.css" rel="stylesheet" type="text/css" />
<link href="style/bootstrap.min.css" rel="stylesheet" type="text/css" />
<script src="js/jquery-3.5.1.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/gatling.js"></script>
<script src="js/menu.js"></script>
<script src="js/ellipsis.js"></script>
<script src="js/all_sessions.js"></script>
<script src="js/stats.js"></script>
<script src="js/highstock.js"></script>
<script src="js/highcharts-more.js"></script>
<script src="js/theme.js"></script>
<script src="js/unpack.js"></script>
<title>Gatling Stats - Global Information</title>
</head>
<body>
<script>
const storedTheme = localStorage.getItem('theme') || (window.matchMedia("(prefers-color-scheme: dark)").matches ? "dark" : "light");
if (storedTheme) document.documentElement.setAttribute('data-theme', storedTheme)
function toggleTheme() {
const currentTheme = document.documentElement.getAttribute("data-theme");
const targetTheme = currentTheme === "light" ? "dark" : "light";
document.documentElement.setAttribute('data-theme', targetTheme)
localStorage.setItem('theme', targetTheme);
};
</script>
<div class="app-container">
<div class="frise"></div>
<div class="head">
<div class="gatling-open-source">
<a class="gatling-logo gatling-logo-light" href="https://gatling.io" target="blank_" title="Gatling Home Page"><img alt="Gatling" src="style/logo-light.svg"/></a>
<a class="gatling-logo gatling-logo-dark" href="https://gatling.io" target="blank_" title="Gatling Home Page"><img alt="Gatling" src="style/logo-dark.svg"/></a>
<a class="gatling-documentation" href="https://gatling.io/docs/" target="_blank">Documentation</a>
</div>
<div class="nav spacer"></div>
<a class="enterprise" href="https://gatling.io/enterprise/next-step/" target="_blank"><strong>Try</strong>
<img class="logo-enterprise-light" alt="Gatling Enterprise" src="style/logo-enterprise-light.svg"/>
<img class="logo-enterprise-dark" alt="Gatling Enterprise" src="style/logo-enterprise-dark.svg"/>
</a>
<button id="theme-toggle" class="theme-toggle" type="button" onclick="toggleTheme()" aria-label="Toggle user interface mode">
<span class="toggle-dark"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-moon"><path d="M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z"></path></svg></span>
<span class="toggle-light"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-sun"><circle cx="12" cy="12" r="5"></circle><line x1="12" y1="1" x2="12" y2="3"></line><line x1="12" y1="21" x2="12" y2="23"></line><line x1="4.22" y1="4.22" x2="5.64" y2="5.64"></line><line x1="18.36" y1="18.36" x2="19.78" y2="19.78"></line><line x1="1" y1="12" x2="3" y2="12"></line><line x1="21" y1="12" x2="23" y2="12"></line><line x1="4.22" y1="19.78" x2="5.64" y2="18.36"></line><line x1="18.36" y1="5.64" x2="19.78" y2="4.22"></line></svg></span>
</button>
</div>
<div class="container details">
<div class="nav">
<ul></ul>
</div>
<div class="cadre">
<div class="content">
<div class="content-header">
<div class="onglet">
RinhaBackendCrebitosSimulation
</div>
<div class="sous-menu" id="sousMenu">
<div class="sous-menu-spacer">
<div class="item ouvert"><a href="index.html">Global</a></div>
<div class="item "><a id="details_link" href="#">Details</a></div>
</div>
</div>
</div>
<div class="content-in">
<div class="container-article">
<div class="article">
<div class="schema-container">
<div id="ranges" class="schema ranges">
</div>
<div class="schema polar">
<div id="container_number_of_requests"></div>
</div>
<div class="simulation-card">
<div class="simulation-version-information">
<span class="simulation-information-title">Gatling Version</span>
<span class="simulation-information-item">
<span class="simulation-information-label">Version: </span>
<span>3.10.3</span>
</span>
<span class="simulation-information-item">
<span class="simulation-information-label">Released: </span>
<span>2023-12-20</span>
</span>
</div>
<div id="simulation-information" class="simulation-version-information">
<span class="simulation-information-title">Run Information</span>
<div class="simulation-information-container">
<span class="simulation-information-item">
<span class="simulation-information-label">Date: </span>
<span>2024-03-08 20:41:18 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 - leosima_dotnet">
<span class="simulation-information-label">Description: </span>
<span>Rinha de Backend - 2024/Q1: Crébito - leosima_dotnet</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(saldo.total).find.is(1), but actually found 0<span class="value" style="display:none">0</span></td>
<td class="value error-col-2 total ko">18</td>
<td class="value error-col-3 total ko">62.069 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">status.find.in(422,400), but actually found 200<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">34.483 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">jmesPath(saldo.total).find.is(-25), but actually found 0<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">3.448 %</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: [
[1709930479000,0],[1709930480000,0],[1709930481000,0],[1709930482000,0],[1709930483000,0],[1709930484000,2],[1709930485000,4],[1709930486000,7],[1709930487000,7],[1709930488000,9],[1709930489000,11],[1709930490000,13],[1709930491000,15],[1709930492000,16],[1709930493000,19],[1709930494000,20],[1709930495000,22],[1709930496000,25],[1709930497000,25],[1709930498000,28],[1709930499000,31],[1709930500000,31],[1709930501000,33],[1709930502000,35],[1709930503000,37],[1709930504000,38],[1709930505000,40],[1709930506000,42],[1709930507000,44],[1709930508000,46],[1709930509000,47],[1709930510000,50],[1709930511000,51],[1709930512000,53],[1709930513000,55],[1709930514000,59],[1709930515000,59],[1709930516000,60],[1709930517000,62],[1709930518000,64],[1709930519000,67],[1709930520000,69],[1709930521000,70],[1709930522000,75],[1709930523000,75],[1709930524000,78],[1709930525000,77],[1709930526000,80],[1709930527000,80],[1709930528000,82],[1709930529000,85],[1709930530000,89],[1709930531000,88],[1709930532000,89],[1709930533000,95],[1709930534000,93],[1709930535000,95],[1709930536000,102],[1709930537000,103],[1709930538000,101],[1709930539000,110],[1709930540000,112],[1709930541000,111],[1709930542000,113],[1709930543000,114],[1709930544000,111],[1709930545000,117],[1709930546000,115],[1709930547000,126],[1709930548000,119],[1709930549000,125],[1709930550000,128],[1709930551000,129],[1709930552000,131],[1709930553000,135],[1709930554000,134],[1709930555000,139],[1709930556000,143],[1709930557000,141],[1709930558000,149],[1709930559000,152],[1709930560000,142],[1709930561000,150],[1709930562000,144],[1709930563000,151],[1709930564000,159],[1709930565000,162],[1709930566000,160],[1709930567000,153],[1709930568000,158],[1709930569000,157],[1709930570000,159],[1709930571000,161],[1709930572000,162],[1709930573000,165],[1709930574000,166],[1709930575000,168],[1709930576000,170],[1709930577000,171],[1709930578000,174],[1709930579000,175],[1709930580000,177],[1709930581000,179],[1709930582000,181],[1709930583000,183],[1709930584000,184],[1709930585000,186],[1709930586000,188],[1709930587000,190],[1709930588000,193],[1709930589000,193],[1709930590000,196],[1709930591000,197],[1709930592000,201],[1709930593000,203],[1709930594000,204],[1709930595000,206],[1709930596000,209],[1709930597000,210],[1709930598000,211],[1709930599000,213],[1709930600000,215],[1709930601000,216],[1709930602000,219],[1709930603000,223],[1709930604000,225],[1709930605000,221],[1709930606000,221],[1709930607000,221],[1709930608000,223],[1709930609000,221],[1709930610000,222],[1709930611000,221],[1709930612000,221],[1709930613000,222],[1709930614000,223],[1709930615000,220],[1709930616000,220],[1709930617000,220],[1709930618000,222],[1709930619000,221],[1709930620000,222],[1709930621000,222],[1709930622000,221],[1709930623000,223],[1709930624000,221],[1709930625000,220],[1709930626000,221],[1709930627000,221],[1709930628000,221],[1709930629000,221],[1709930630000,221],[1709930631000,221],[1709930632000,221],[1709930633000,221],[1709930634000,222],[1709930635000,221],[1709930636000,221],[1709930637000,221],[1709930638000,221],[1709930639000,221],[1709930640000,221],[1709930641000,220],[1709930642000,221],[1709930643000,220],[1709930644000,220],[1709930645000,222],[1709930646000,225],[1709930647000,223],[1709930648000,221],[1709930649000,220],[1709930650000,221],[1709930651000,220],[1709930652000,220],[1709930653000,221],[1709930654000,222],[1709930655000,220],[1709930656000,221],[1709930657000,221],[1709930658000,220],[1709930659000,220],[1709930660000,221],[1709930661000,221],[1709930662000,221],[1709930663000,221],[1709930664000,223],[1709930665000,221],[1709930666000,224],[1709930667000,221],[1709930668000,225],[1709930669000,221],[1709930670000,221],[1709930671000,221],[1709930672000,221],[1709930673000,221],[1709930674000,222],[1709930675000,222],[1709930676000,224],[1709930677000,222],[1709930678000,221],[1709930679000,221],[1709930680000,222],[1709930681000,221],[1709930682000,221],[1709930683000,221],[1709930684000,220],[1709930685000,221],[1709930686000,223],[1709930687000,221],[1709930688000,222],[1709930689000,221],[1709930690000,221],[1709930691000,223],[1709930692000,223],[1709930693000,223],[1709930694000,222],[1709930695000,221],[1709930696000,221],[1709930697000,223],[1709930698000,224],[1709930699000,220],[1709930700000,221],[1709930701000,223],[1709930702000,222],[1709930703000,223],[1709930704000,221],[1709930705000,220],[1709930706000,221],[1709930707000,221],[1709930708000,221],[1709930709000,223],[1709930710000,222],[1709930711000,224],[1709930712000,221],[1709930713000,220],[1709930714000,221],[1709930715000,221],[1709930716000,221],[1709930717000,221],[1709930718000,221],[1709930719000,220],[1709930720000,223],[1709930721000,224],[1709930722000,223],[1709930723000,217]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#68b65c',
name: 'créditos',
data: [
[1709930479000,0],[1709930480000,0],[1709930481000,0],[1709930482000,0],[1709930483000,0],[1709930484000,2],[1709930485000,2],[1709930486000,5],[1709930487000,4],[1709930488000,5],[1709930489000,6],[1709930490000,7],[1709930491000,8],[1709930492000,9],[1709930493000,10],[1709930494000,10],[1709930495000,12],[1709930496000,13],[1709930497000,14],[1709930498000,14],[1709930499000,16],[1709930500000,16],[1709930501000,17],[1709930502000,17],[1709930503000,19],[1709930504000,20],[1709930505000,20],[1709930506000,22],[1709930507000,22],[1709930508000,23],[1709930509000,25],[1709930510000,25],[1709930511000,28],[1709930512000,26],[1709930513000,28],[1709930514000,29],[1709930515000,30],[1709930516000,30],[1709930517000,32],[1709930518000,32],[1709930519000,33],[1709930520000,34],[1709930521000,35],[1709930522000,38],[1709930523000,37],[1709930524000,40],[1709930525000,39],[1709930526000,39],[1709930527000,41],[1709930528000,41],[1709930529000,43],[1709930530000,45],[1709930531000,44],[1709930532000,45],[1709930533000,48],[1709930534000,47],[1709930535000,48],[1709930536000,49],[1709930537000,52],[1709930538000,50],[1709930539000,56],[1709930540000,55],[1709930541000,55],[1709930542000,56],[1709930543000,59],[1709930544000,55],[1709930545000,61],[1709930546000,58],[1709930547000,63],[1709930548000,59],[1709930549000,63],[1709930550000,63],[1709930551000,66],[1709930552000,66],[1709930553000,66],[1709930554000,68],[1709930555000,66],[1709930556000,73],[1709930557000,71],[1709930558000,75],[1709930559000,77],[1709930560000,71],[1709930561000,74],[1709930562000,73],[1709930563000,79],[1709930564000,80],[1709930565000,81],[1709930566000,80],[1709930567000,77],[1709930568000,79],[1709930569000,79],[1709930570000,79],[1709930571000,81],[1709930572000,81],[1709930573000,82],[1709930574000,83],[1709930575000,85],[1709930576000,85],[1709930577000,86],[1709930578000,86],[1709930579000,88],[1709930580000,89],[1709930581000,89],[1709930582000,91],[1709930583000,91],[1709930584000,92],[1709930585000,94],[1709930586000,95],[1709930587000,95],[1709930588000,97],[1709930589000,97],[1709930590000,97],[1709930591000,99],[1709930592000,99],[1709930593000,102],[1709930594000,101],[1709930595000,104],[1709930596000,104],[1709930597000,105],[1709930598000,107],[1709930599000,106],[1709930600000,107],[1709930601000,107],[1709930602000,109],[1709930603000,112],[1709930604000,112],[1709930605000,110],[1709930606000,110],[1709930607000,110],[1709930608000,111],[1709930609000,110],[1709930610000,111],[1709930611000,110],[1709930612000,110],[1709930613000,111],[1709930614000,110],[1709930615000,110],[1709930616000,110],[1709930617000,111],[1709930618000,112],[1709930619000,111],[1709930620000,112],[1709930621000,110],[1709930622000,110],[1709930623000,111],[1709930624000,110],[1709930625000,110],[1709930626000,110],[1709930627000,110],[1709930628000,110],[1709930629000,111],[1709930630000,110],[1709930631000,110],[1709930632000,110],[1709930633000,110],[1709930634000,110],[1709930635000,110],[1709930636000,110],[1709930637000,110],[1709930638000,110],[1709930639000,110],[1709930640000,110],[1709930641000,110],[1709930642000,110],[1709930643000,110],[1709930644000,110],[1709930645000,111],[1709930646000,111],[1709930647000,112],[1709930648000,110],[1709930649000,110],[1709930650000,110],[1709930651000,110],[1709930652000,110],[1709930653000,110],[1709930654000,112],[1709930655000,111],[1709930656000,110],[1709930657000,110],[1709930658000,110],[1709930659000,110],[1709930660000,110],[1709930661000,110],[1709930662000,110],[1709930663000,110],[1709930664000,113],[1709930665000,110],[1709930666000,112],[1709930667000,110],[1709930668000,113],[1709930669000,110],[1709930670000,110],[1709930671000,110],[1709930672000,110],[1709930673000,110],[1709930674000,111],[1709930675000,111],[1709930676000,111],[1709930677000,110],[1709930678000,110],[1709930679000,110],[1709930680000,111],[1709930681000,110],[1709930682000,110],[1709930683000,110],[1709930684000,110],[1709930685000,110],[1709930686000,114],[1709930687000,111],[1709930688000,111],[1709930689000,111],[1709930690000,110],[1709930691000,110],[1709930692000,111],[1709930693000,111],[1709930694000,112],[1709930695000,111],[1709930696000,112],[1709930697000,114],[1709930698000,111],[1709930699000,110],[1709930700000,110],[1709930701000,110],[1709930702000,111],[1709930703000,111],[1709930704000,110],[1709930705000,110],[1709930706000,110],[1709930707000,111],[1709930708000,110],[1709930709000,112],[1709930710000,113],[1709930711000,110],[1709930712000,110],[1709930713000,110],[1709930714000,110],[1709930715000,110],[1709930716000,110],[1709930717000,110],[1709930718000,110],[1709930719000,110],[1709930720000,111],[1709930721000,112],[1709930722000,111],[1709930723000,108]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#f15b4f',
name: 'extratos',
data: [
[1709930479000,0],[1709930480000,0],[1709930481000,0],[1709930482000,0],[1709930483000,0],[1709930484000,2],[1709930485000,1],[1709930486000,1],[1709930487000,1],[1709930488000,1],[1709930489000,2],[1709930490000,1],[1709930491000,2],[1709930492000,3],[1709930493000,1],[1709930494000,2],[1709930495000,2],[1709930496000,2],[1709930497000,2],[1709930498000,2],[1709930499000,2],[1709930500000,2],[1709930501000,3],[1709930502000,2],[1709930503000,3],[1709930504000,2],[1709930505000,3],[1709930506000,2],[1709930507000,3],[1709930508000,3],[1709930509000,3],[1709930510000,3],[1709930511000,4],[1709930512000,3],[1709930513000,3],[1709930514000,4],[1709930515000,3],[1709930516000,3],[1709930517000,4],[1709930518000,3],[1709930519000,4],[1709930520000,4],[1709930521000,4],[1709930522000,4],[1709930523000,4],[1709930524000,4],[1709930525000,4],[1709930526000,4],[1709930527000,4],[1709930528000,4],[1709930529000,6],[1709930530000,4],[1709930531000,5],[1709930532000,5],[1709930533000,4],[1709930534000,5],[1709930535000,5],[1709930536000,6],[1709930537000,5],[1709930538000,5],[1709930539000,6],[1709930540000,6],[1709930541000,6],[1709930542000,6],[1709930543000,6],[1709930544000,5],[1709930545000,6],[1709930546000,5],[1709930547000,7],[1709930548000,6],[1709930549000,7],[1709930550000,7],[1709930551000,7],[1709930552000,6],[1709930553000,8],[1709930554000,7],[1709930555000,8],[1709930556000,7],[1709930557000,8],[1709930558000,7],[1709930559000,8],[1709930560000,7],[1709930561000,7],[1709930562000,7],[1709930563000,7],[1709930564000,8],[1709930565000,8],[1709930566000,7],[1709930567000,7],[1709930568000,8],[1709930569000,8],[1709930570000,7],[1709930571000,8],[1709930572000,8],[1709930573000,7],[1709930574000,8],[1709930575000,8],[1709930576000,8],[1709930577000,8],[1709930578000,8],[1709930579000,8],[1709930580000,8],[1709930581000,9],[1709930582000,8],[1709930583000,9],[1709930584000,8],[1709930585000,9],[1709930586000,8],[1709930587000,9],[1709930588000,9],[1709930589000,9],[1709930590000,9],[1709930591000,9],[1709930592000,9],[1709930593000,10],[1709930594000,10],[1709930595000,9],[1709930596000,9],[1709930597000,10],[1709930598000,9],[1709930599000,10],[1709930600000,10],[1709930601000,10],[1709930602000,11],[1709930603000,10],[1709930604000,11],[1709930605000,10],[1709930606000,10],[1709930607000,10],[1709930608000,10],[1709930609000,10],[1709930610000,11],[1709930611000,10],[1709930612000,10],[1709930613000,11],[1709930614000,11],[1709930615000,10],[1709930616000,10],[1709930617000,10],[1709930618000,10],[1709930619000,10],[1709930620000,11],[1709930621000,10],[1709930622000,10],[1709930623000,11],[1709930624000,10],[1709930625000,10],[1709930626000,10],[1709930627000,10],[1709930628000,10],[1709930629000,11],[1709930630000,10],[1709930631000,10],[1709930632000,10],[1709930633000,10],[1709930634000,10],[1709930635000,10],[1709930636000,10],[1709930637000,10],[1709930638000,10],[1709930639000,10],[1709930640000,10],[1709930641000,10],[1709930642000,10],[1709930643000,10],[1709930644000,10],[1709930645000,10],[1709930646000,11],[1709930647000,11],[1709930648000,10],[1709930649000,10],[1709930650000,10],[1709930651000,10],[1709930652000,10],[1709930653000,10],[1709930654000,10],[1709930655000,10],[1709930656000,10],[1709930657000,10],[1709930658000,10],[1709930659000,10],[1709930660000,10],[1709930661000,10],[1709930662000,10],[1709930663000,10],[1709930664000,10],[1709930665000,10],[1709930666000,11],[1709930667000,10],[1709930668000,10],[1709930669000,10],[1709930670000,10],[1709930671000,10],[1709930672000,10],[1709930673000,10],[1709930674000,10],[1709930675000,10],[1709930676000,11],[1709930677000,11],[1709930678000,10],[1709930679000,10],[1709930680000,10],[1709930681000,10],[1709930682000,10],[1709930683000,10],[1709930684000,10],[1709930685000,10],[1709930686000,10],[1709930687000,10],[1709930688000,11],[1709930689000,10],[1709930690000,10],[1709930691000,11],[1709930692000,11],[1709930693000,10],[1709930694000,10],[1709930695000,10],[1709930696000,10],[1709930697000,10],[1709930698000,11],[1709930699000,10],[1709930700000,10],[1709930701000,10],[1709930702000,10],[1709930703000,10],[1709930704000,10],[1709930705000,10],[1709930706000,10],[1709930707000,10],[1709930708000,10],[1709930709000,10],[1709930710000,10],[1709930711000,11],[1709930712000,10],[1709930713000,10],[1709930714000,10],[1709930715000,10],[1709930716000,10],[1709930717000,10],[1709930718000,11],[1709930719000,10],[1709930720000,11],[1709930721000,10],[1709930722000,10],[1709930723000,9]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FFDD00',
name: 'validações',
data: [
[1709930479000,0],[1709930480000,0],[1709930481000,0],[1709930482000,5],[1709930483000,5],[1709930484000,0],[1709930485000,0],[1709930486000,0],[1709930487000,0],[1709930488000,0],[1709930489000,0],[1709930490000,0],[1709930491000,0],[1709930492000,0],[1709930493000,0],[1709930494000,0],[1709930495000,0],[1709930496000,0],[1709930497000,0],[1709930498000,0],[1709930499000,0],[1709930500000,0],[1709930501000,0],[1709930502000,0],[1709930503000,0],[1709930504000,0],[1709930505000,0],[1709930506000,0],[1709930507000,0],[1709930508000,0],[1709930509000,0],[1709930510000,0],[1709930511000,0],[1709930512000,0],[1709930513000,0],[1709930514000,0],[1709930515000,0],[1709930516000,0],[1709930517000,0],[1709930518000,0],[1709930519000,0],[1709930520000,0],[1709930521000,0],[1709930522000,0],[1709930523000,0],[1709930524000,0],[1709930525000,0],[1709930526000,0],[1709930527000,0],[1709930528000,0],[1709930529000,0],[1709930530000,0],[1709930531000,0],[1709930532000,0],[1709930533000,0],[1709930534000,0],[1709930535000,0],[1709930536000,0],[1709930537000,0],[1709930538000,0],[1709930539000,0],[1709930540000,0],[1709930541000,0],[1709930542000,0],[1709930543000,0],[1709930544000,0],[1709930545000,0],[1709930546000,0],[1709930547000,0],[1709930548000,0],[1709930549000,0],[1709930550000,0],[1709930551000,0],[1709930552000,0],[1709930553000,0],[1709930554000,0],[1709930555000,0],[1709930556000,0],[1709930557000,0],[1709930558000,0],[1709930559000,0],[1709930560000,0],[1709930561000,0],[1709930562000,0],[1709930563000,0],[1709930564000,0],[1709930565000,0],[1709930566000,0],[1709930567000,0],[1709930568000,0],[1709930569000,0],[1709930570000,0],[1709930571000,0],[1709930572000,0],[1709930573000,0],[1709930574000,0],[1709930575000,0],[1709930576000,0],[1709930577000,0],[1709930578000,0],[1709930579000,0],[1709930580000,0],[1709930581000,0],[1709930582000,0],[1709930583000,0],[1709930584000,0],[1709930585000,0],[1709930586000,0],[1709930587000,0],[1709930588000,0],[1709930589000,0],[1709930590000,0],[1709930591000,0],[1709930592000,0],[1709930593000,0],[1709930594000,0],[1709930595000,0],[1709930596000,0],[1709930597000,0],[1709930598000,0],[1709930599000,0],[1709930600000,0],[1709930601000,0],[1709930602000,0],[1709930603000,0],[1709930604000,0],[1709930605000,0],[1709930606000,0],[1709930607000,0],[1709930608000,0],[1709930609000,0],[1709930610000,0],[1709930611000,0],[1709930612000,0],[1709930613000,0],[1709930614000,0],[1709930615000,0],[1709930616000,0],[1709930617000,0],[1709930618000,0],[1709930619000,0],[1709930620000,0],[1709930621000,0],[1709930622000,0],[1709930623000,0],[1709930624000,0],[1709930625000,0],[1709930626000,0],[1709930627000,0],[1709930628000,0],[1709930629000,0],[1709930630000,0],[1709930631000,0],[1709930632000,0],[1709930633000,0],[1709930634000,0],[1709930635000,0],[1709930636000,0],[1709930637000,0],[1709930638000,0],[1709930639000,0],[1709930640000,0],[1709930641000,0],[1709930642000,0],[1709930643000,0],[1709930644000,0],[1709930645000,0],[1709930646000,0],[1709930647000,0],[1709930648000,0],[1709930649000,0],[1709930650000,0],[1709930651000,0],[1709930652000,0],[1709930653000,0],[1709930654000,0],[1709930655000,0],[1709930656000,0],[1709930657000,0],[1709930658000,0],[1709930659000,0],[1709930660000,0],[1709930661000,0],[1709930662000,0],[1709930663000,0],[1709930664000,0],[1709930665000,0],[1709930666000,0],[1709930667000,0],[1709930668000,0],[1709930669000,0],[1709930670000,0],[1709930671000,0],[1709930672000,0],[1709930673000,0],[1709930674000,0],[1709930675000,0],[1709930676000,0],[1709930677000,0],[1709930678000,0],[1709930679000,0],[1709930680000,0],[1709930681000,0],[1709930682000,0],[1709930683000,0],[1709930684000,0],[1709930685000,0],[1709930686000,0],[1709930687000,0],[1709930688000,0],[1709930689000,0],[1709930690000,0],[1709930691000,0],[1709930692000,0],[1709930693000,0],[1709930694000,0],[1709930695000,0],[1709930696000,0],[1709930697000,0],[1709930698000,0],[1709930699000,0],[1709930700000,0],[1709930701000,0],[1709930702000,0],[1709930703000,0],[1709930704000,0],[1709930705000,0],[1709930706000,0],[1709930707000,0],[1709930708000,0],[1709930709000,0],[1709930710000,0],[1709930711000,0],[1709930712000,0],[1709930713000,0],[1709930714000,0],[1709930715000,0],[1709930716000,0],[1709930717000,0],[1709930718000,0],[1709930719000,0],[1709930720000,0],[1709930721000,0],[1709930722000,0],[1709930723000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00D5FF',
name: 'validação HTTP 404',
data: [
[1709930479000,0],[1709930480000,0],[1709930481000,0],[1709930482000,1],[1709930483000,1],[1709930484000,0],[1709930485000,0],[1709930486000,0],[1709930487000,0],[1709930488000,0],[1709930489000,0],[1709930490000,0],[1709930491000,0],[1709930492000,0],[1709930493000,0],[1709930494000,0],[1709930495000,0],[1709930496000,0],[1709930497000,0],[1709930498000,0],[1709930499000,0],[1709930500000,0],[1709930501000,0],[1709930502000,0],[1709930503000,0],[1709930504000,0],[1709930505000,0],[1709930506000,0],[1709930507000,0],[1709930508000,0],[1709930509000,0],[1709930510000,0],[1709930511000,0],[1709930512000,0],[1709930513000,0],[1709930514000,0],[1709930515000,0],[1709930516000,0],[1709930517000,0],[1709930518000,0],[1709930519000,0],[1709930520000,0],[1709930521000,0],[1709930522000,0],[1709930523000,0],[1709930524000,0],[1709930525000,0],[1709930526000,0],[1709930527000,0],[1709930528000,0],[1709930529000,0],[1709930530000,0],[1709930531000,0],[1709930532000,0],[1709930533000,0],[1709930534000,0],[1709930535000,0],[1709930536000,0],[1709930537000,0],[1709930538000,0],[1709930539000,0],[1709930540000,0],[1709930541000,0],[1709930542000,0],[1709930543000,0],[1709930544000,0],[1709930545000,0],[1709930546000,0],[1709930547000,0],[1709930548000,0],[1709930549000,0],[1709930550000,0],[1709930551000,0],[1709930552000,0],[1709930553000,0],[1709930554000,0],[1709930555000,0],[1709930556000,0],[1709930557000,0],[1709930558000,0],[1709930559000,0],[1709930560000,0],[1709930561000,0],[1709930562000,0],[1709930563000,0],[1709930564000,0],[1709930565000,0],[1709930566000,0],[1709930567000,0],[1709930568000,0],[1709930569000,0],[1709930570000,0],[1709930571000,0],[1709930572000,0],[1709930573000,0],[1709930574000,0],[1709930575000,0],[1709930576000,0],[1709930577000,0],[1709930578000,0],[1709930579000,0],[1709930580000,0],[1709930581000,0],[1709930582000,0],[1709930583000,0],[1709930584000,0],[1709930585000,0],[1709930586000,0],[1709930587000,0],[1709930588000,0],[1709930589000,0],[1709930590000,0],[1709930591000,0],[1709930592000,0],[1709930593000,0],[1709930594000,0],[1709930595000,0],[1709930596000,0],[1709930597000,0],[1709930598000,0],[1709930599000,0],[1709930600000,0],[1709930601000,0],[1709930602000,0],[1709930603000,0],[1709930604000,0],[1709930605000,0],[1709930606000,0],[1709930607000,0],[1709930608000,0],[1709930609000,0],[1709930610000,0],[1709930611000,0],[1709930612000,0],[1709930613000,0],[1709930614000,0],[1709930615000,0],[1709930616000,0],[1709930617000,0],[1709930618000,0],[1709930619000,0],[1709930620000,0],[1709930621000,0],[1709930622000,0],[1709930623000,0],[1709930624000,0],[1709930625000,0],[1709930626000,0],[1709930627000,0],[1709930628000,0],[1709930629000,0],[1709930630000,0],[1709930631000,0],[1709930632000,0],[1709930633000,0],[1709930634000,0],[1709930635000,0],[1709930636000,0],[1709930637000,0],[1709930638000,0],[1709930639000,0],[1709930640000,0],[1709930641000,0],[1709930642000,0],[1709930643000,0],[1709930644000,0],[1709930645000,0],[1709930646000,0],[1709930647000,0],[1709930648000,0],[1709930649000,0],[1709930650000,0],[1709930651000,0],[1709930652000,0],[1709930653000,0],[1709930654000,0],[1709930655000,0],[1709930656000,0],[1709930657000,0],[1709930658000,0],[1709930659000,0],[1709930660000,0],[1709930661000,0],[1709930662000,0],[1709930663000,0],[1709930664000,0],[1709930665000,0],[1709930666000,0],[1709930667000,0],[1709930668000,0],[1709930669000,0],[1709930670000,0],[1709930671000,0],[1709930672000,0],[1709930673000,0],[1709930674000,0],[1709930675000,0],[1709930676000,0],[1709930677000,0],[1709930678000,0],[1709930679000,0],[1709930680000,0],[1709930681000,0],[1709930682000,0],[1709930683000,0],[1709930684000,0],[1709930685000,0],[1709930686000,0],[1709930687000,0],[1709930688000,0],[1709930689000,0],[1709930690000,0],[1709930691000,0],[1709930692000,0],[1709930693000,0],[1709930694000,0],[1709930695000,0],[1709930696000,0],[1709930697000,0],[1709930698000,0],[1709930699000,0],[1709930700000,0],[1709930701000,0],[1709930702000,0],[1709930703000,0],[1709930704000,0],[1709930705000,0],[1709930706000,0],[1709930707000,0],[1709930708000,0],[1709930709000,0],[1709930710000,0],[1709930711000,0],[1709930712000,0],[1709930713000,0],[1709930714000,0],[1709930715000,0],[1709930716000,0],[1709930717000,0],[1709930718000,0],[1709930719000,0],[1709930720000,0],[1709930721000,0],[1709930722000,0],[1709930723000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00FF00',
name: 'validação concorrência saldo - 0',
data: [
[1709930479000,0],[1709930480000,0],[1709930481000,1],[1709930482000,1],[1709930483000,0],[1709930484000,0],[1709930485000,0],[1709930486000,0],[1709930487000,0],[1709930488000,0],[1709930489000,0],[1709930490000,0],[1709930491000,0],[1709930492000,0],[1709930493000,0],[1709930494000,0],[1709930495000,0],[1709930496000,0],[1709930497000,0],[1709930498000,0],[1709930499000,0],[1709930500000,0],[1709930501000,0],[1709930502000,0],[1709930503000,0],[1709930504000,0],[1709930505000,0],[1709930506000,0],[1709930507000,0],[1709930508000,0],[1709930509000,0],[1709930510000,0],[1709930511000,0],[1709930512000,0],[1709930513000,0],[1709930514000,0],[1709930515000,0],[1709930516000,0],[1709930517000,0],[1709930518000,0],[1709930519000,0],[1709930520000,0],[1709930521000,0],[1709930522000,0],[1709930523000,0],[1709930524000,0],[1709930525000,0],[1709930526000,0],[1709930527000,0],[1709930528000,0],[1709930529000,0],[1709930530000,0],[1709930531000,0],[1709930532000,0],[1709930533000,0],[1709930534000,0],[1709930535000,0],[1709930536000,0],[1709930537000,0],[1709930538000,0],[1709930539000,0],[1709930540000,0],[1709930541000,0],[1709930542000,0],[1709930543000,0],[1709930544000,0],[1709930545000,0],[1709930546000,0],[1709930547000,0],[1709930548000,0],[1709930549000,0],[1709930550000,0],[1709930551000,0],[1709930552000,0],[1709930553000,0],[1709930554000,0],[1709930555000,0],[1709930556000,0],[1709930557000,0],[1709930558000,0],[1709930559000,0],[1709930560000,0],[1709930561000,0],[1709930562000,0],[1709930563000,0],[1709930564000,0],[1709930565000,0],[1709930566000,0],[1709930567000,0],[1709930568000,0],[1709930569000,0],[1709930570000,0],[1709930571000,0],[1709930572000,0],[1709930573000,0],[1709930574000,0],[1709930575000,0],[1709930576000,0],[1709930577000,0],[1709930578000,0],[1709930579000,0],[1709930580000,0],[1709930581000,0],[1709930582000,0],[1709930583000,0],[1709930584000,0],[1709930585000,0],[1709930586000,0],[1709930587000,0],[1709930588000,0],[1709930589000,0],[1709930590000,0],[1709930591000,0],[1709930592000,0],[1709930593000,0],[1709930594000,0],[1709930595000,0],[1709930596000,0],[1709930597000,0],[1709930598000,0],[1709930599000,0],[1709930600000,0],[1709930601000,0],[1709930602000,0],[1709930603000,0],[1709930604000,0],[1709930605000,0],[1709930606000,0],[1709930607000,0],[1709930608000,0],[1709930609000,0],[1709930610000,0],[1709930611000,0],[1709930612000,0],[1709930613000,0],[1709930614000,0],[1709930615000,0],[1709930616000,0],[1709930617000,0],[1709930618000,0],[1709930619000,0],[1709930620000,0],[1709930621000,0],[1709930622000,0],[1709930623000,0],[1709930624000,0],[1709930625000,0],[1709930626000,0],[1709930627000,0],[1709930628000,0],[1709930629000,0],[1709930630000,0],[1709930631000,0],[1709930632000,0],[1709930633000,0],[1709930634000,0],[1709930635000,0],[1709930636000,0],[1709930637000,0],[1709930638000,0],[1709930639000,0],[1709930640000,0],[1709930641000,0],[1709930642000,0],[1709930643000,0],[1709930644000,0],[1709930645000,0],[1709930646000,0],[1709930647000,0],[1709930648000,0],[1709930649000,0],[1709930650000,0],[1709930651000,0],[1709930652000,0],[1709930653000,0],[1709930654000,0],[1709930655000,0],[1709930656000,0],[1709930657000,0],[1709930658000,0],[1709930659000,0],[1709930660000,0],[1709930661000,0],[1709930662000,0],[1709930663000,0],[1709930664000,0],[1709930665000,0],[1709930666000,0],[1709930667000,0],[1709930668000,0],[1709930669000,0],[1709930670000,0],[1709930671000,0],[1709930672000,0],[1709930673000,0],[1709930674000,0],[1709930675000,0],[1709930676000,0],[1709930677000,0],[1709930678000,0],[1709930679000,0],[1709930680000,0],[1709930681000,0],[1709930682000,0],[1709930683000,0],[1709930684000,0],[1709930685000,0],[1709930686000,0],[1709930687000,0],[1709930688000,0],[1709930689000,0],[1709930690000,0],[1709930691000,0],[1709930692000,0],[1709930693000,0],[1709930694000,0],[1709930695000,0],[1709930696000,0],[1709930697000,0],[1709930698000,0],[1709930699000,0],[1709930700000,0],[1709930701000,0],[1709930702000,0],[1709930703000,0],[1709930704000,0],[1709930705000,0],[1709930706000,0],[1709930707000,0],[1709930708000,0],[1709930709000,0],[1709930710000,0],[1709930711000,0],[1709930712000,0],[1709930713000,0],[1709930714000,0],[1709930715000,0],[1709930716000,0],[1709930717000,0],[1709930718000,0],[1709930719000,0],[1709930720000,0],[1709930721000,0],[1709930722000,0],[1709930723000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#9D00FF',
name: 'validação concorrência transações - c',
data: [
[1709930479000,0],[1709930480000,25],[1709930481000,23],[1709930482000,0],[1709930483000,0],[1709930484000,0],[1709930485000,0],[1709930486000,0],[1709930487000,0],[1709930488000,0],[1709930489000,0],[1709930490000,0],[1709930491000,0],[1709930492000,0],[1709930493000,0],[1709930494000,0],[1709930495000,0],[1709930496000,0],[1709930497000,0],[1709930498000,0],[1709930499000,0],[1709930500000,0],[1709930501000,0],[1709930502000,0],[1709930503000,0],[1709930504000,0],[1709930505000,0],[1709930506000,0],[1709930507000,0],[1709930508000,0],[1709930509000,0],[1709930510000,0],[1709930511000,0],[1709930512000,0],[1709930513000,0],[1709930514000,0],[1709930515000,0],[1709930516000,0],[1709930517000,0],[1709930518000,0],[1709930519000,0],[1709930520000,0],[1709930521000,0],[1709930522000,0],[1709930523000,0],[1709930524000,0],[1709930525000,0],[1709930526000,0],[1709930527000,0],[1709930528000,0],[1709930529000,0],[1709930530000,0],[1709930531000,0],[1709930532000,0],[1709930533000,0],[1709930534000,0],[1709930535000,0],[1709930536000,0],[1709930537000,0],[1709930538000,0],[1709930539000,0],[1709930540000,0],[1709930541000,0],[1709930542000,0],[1709930543000,0],[1709930544000,0],[1709930545000,0],[1709930546000,0],[1709930547000,0],[1709930548000,0],[1709930549000,0],[1709930550000,0],[1709930551000,0],[1709930552000,0],[1709930553000,0],[1709930554000,0],[1709930555000,0],[1709930556000,0],[1709930557000,0],[1709930558000,0],[1709930559000,0],[1709930560000,0],[1709930561000,0],[1709930562000,0],[1709930563000,0],[1709930564000,0],[1709930565000,0],[1709930566000,0],[1709930567000,0],[1709930568000,0],[1709930569000,0],[1709930570000,0],[1709930571000,0],[1709930572000,0],[1709930573000,0],[1709930574000,0],[1709930575000,0],[1709930576000,0],[1709930577000,0],[1709930578000,0],[1709930579000,0],[1709930580000,0],[1709930581000,0],[1709930582000,0],[1709930583000,0],[1709930584000,0],[1709930585000,0],[1709930586000,0],[1709930587000,0],[1709930588000,0],[1709930589000,0],[1709930590000,0],[1709930591000,0],[1709930592000,0],[1709930593000,0],[1709930594000,0],[1709930595000,0],[1709930596000,0],[1709930597000,0],[1709930598000,0],[1709930599000,0],[1709930600000,0],[1709930601000,0],[1709930602000,0],[1709930603000,0],[1709930604000,0],[1709930605000,0],[1709930606000,0],[1709930607000,0],[1709930608000,0],[1709930609000,0],[1709930610000,0],[1709930611000,0],[1709930612000,0],[1709930613000,0],[1709930614000,0],[1709930615000,0],[1709930616000,0],[1709930617000,0],[1709930618000,0],[1709930619000,0],[1709930620000,0],[1709930621000,0],[1709930622000,0],[1709930623000,0],[1709930624000,0],[1709930625000,0],[1709930626000,0],[1709930627000,0],[1709930628000,0],[1709930629000,0],[1709930630000,0],[1709930631000,0],[1709930632000,0],[1709930633000,0],[1709930634000,0],[1709930635000,0],[1709930636000,0],[1709930637000,0],[1709930638000,0],[1709930639000,0],[1709930640000,0],[1709930641000,0],[1709930642000,0],[1709930643000,0],[1709930644000,0],[1709930645000,0],[1709930646000,0],[1709930647000,0],[1709930648000,0],[1709930649000,0],[1709930650000,0],[1709930651000,0],[1709930652000,0],[1709930653000,0],[1709930654000,0],[1709930655000,0],[1709930656000,0],[1709930657000,0],[1709930658000,0],[1709930659000,0],[1709930660000,0],[1709930661000,0],[1709930662000,0],[1709930663000,0],[1709930664000,0],[1709930665000,0],[1709930666000,0],[1709930667000,0],[1709930668000,0],[1709930669000,0],[1709930670000,0],[1709930671000,0],[1709930672000,0],[1709930673000,0],[1709930674000,0],[1709930675000,0],[1709930676000,0],[1709930677000,0],[1709930678000,0],[1709930679000,0],[1709930680000,0],[1709930681000,0],[1709930682000,0],[1709930683000,0],[1709930684000,0],[1709930685000,0],[1709930686000,0],[1709930687000,0],[1709930688000,0],[1709930689000,0],[1709930690000,0],[1709930691000,0],[1709930692000,0],[1709930693000,0],[1709930694000,0],[1709930695000,0],[1709930696000,0],[1709930697000,0],[1709930698000,0],[1709930699000,0],[1709930700000,0],[1709930701000,0],[1709930702000,0],[1709930703000,0],[1709930704000,0],[1709930705000,0],[1709930706000,0],[1709930707000,0],[1709930708000,0],[1709930709000,0],[1709930710000,0],[1709930711000,0],[1709930712000,0],[1709930713000,0],[1709930714000,0],[1709930715000,0],[1709930716000,0],[1709930717000,0],[1709930718000,0],[1709930719000,0],[1709930720000,0],[1709930721000,0],[1709930722000,0],[1709930723000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FF00E1',
name: 'validação concorrência saldo - -25',
data: [
[1709930479000,1],[1709930480000,1],[1709930481000,0],[1709930482000,0],[1709930483000,0],[1709930484000,0],[1709930485000,0],[1709930486000,0],[1709930487000,0],[1709930488000,0],[1709930489000,0],[1709930490000,0],[1709930491000,0],[1709930492000,0],[1709930493000,0],[1709930494000,0],[1709930495000,0],[1709930496000,0],[1709930497000,0],[1709930498000,0],[1709930499000,0],[1709930500000,0],[1709930501000,0],[1709930502000,0],[1709930503000,0],[1709930504000,0],[1709930505000,0],[1709930506000,0],[1709930507000,0],[1709930508000,0],[1709930509000,0],[1709930510000,0],[1709930511000,0],[1709930512000,0],[1709930513000,0],[1709930514000,0],[1709930515000,0],[1709930516000,0],[1709930517000,0],[1709930518000,0],[1709930519000,0],[1709930520000,0],[1709930521000,0],[1709930522000,0],[1709930523000,0],[1709930524000,0],[1709930525000,0],[1709930526000,0],[1709930527000,0],[1709930528000,0],[1709930529000,0],[1709930530000,0],[1709930531000,0],[1709930532000,0],[1709930533000,0],[1709930534000,0],[1709930535000,0],[1709930536000,0],[1709930537000,0],[1709930538000,0],[1709930539000,0],[1709930540000,0],[1709930541000,0],[1709930542000,0],[1709930543000,0],[1709930544000,0],[1709930545000,0],[1709930546000,0],[1709930547000,0],[1709930548000,0],[1709930549000,0],[1709930550000,0],[1709930551000,0],[1709930552000,0],[1709930553000,0],[1709930554000,0],[1709930555000,0],[1709930556000,0],[1709930557000,0],[1709930558000,0],[1709930559000,0],[1709930560000,0],[1709930561000,0],[1709930562000,0],[1709930563000,0],[1709930564000,0],[1709930565000,0],[1709930566000,0],[1709930567000,0],[1709930568000,0],[1709930569000,0],[1709930570000,0],[1709930571000,0],[1709930572000,0],[1709930573000,0],[1709930574000,0],[1709930575000,0],[1709930576000,0],[1709930577000,0],[1709930578000,0],[1709930579000,0],[1709930580000,0],[1709930581000,0],[1709930582000,0],[1709930583000,0],[1709930584000,0],[1709930585000,0],[1709930586000,0],[1709930587000,0],[1709930588000,0],[1709930589000,0],[1709930590000,0],[1709930591000,0],[1709930592000,0],[1709930593000,0],[1709930594000,0],[1709930595000,0],[1709930596000,0],[1709930597000,0],[1709930598000,0],[1709930599000,0],[1709930600000,0],[1709930601000,0],[1709930602000,0],[1709930603000,0],[1709930604000,0],[1709930605000,0],[1709930606000,0],[1709930607000,0],[1709930608000,0],[1709930609000,0],[1709930610000,0],[1709930611000,0],[1709930612000,0],[1709930613000,0],[1709930614000,0],[1709930615000,0],[1709930616000,0],[1709930617000,0],[1709930618000,0],[1709930619000,0],[1709930620000,0],[1709930621000,0],[1709930622000,0],[1709930623000,0],[1709930624000,0],[1709930625000,0],[1709930626000,0],[1709930627000,0],[1709930628000,0],[1709930629000,0],[1709930630000,0],[1709930631000,0],[1709930632000,0],[1709930633000,0],[1709930634000,0],[1709930635000,0],[1709930636000,0],[1709930637000,0],[1709930638000,0],[1709930639000,0],[1709930640000,0],[1709930641000,0],[1709930642000,0],[1709930643000,0],[1709930644000,0],[1709930645000,0],[1709930646000,0],[1709930647000,0],[1709930648000,0],[1709930649000,0],[1709930650000,0],[1709930651000,0],[1709930652000,0],[1709930653000,0],[1709930654000,0],[1709930655000,0],[1709930656000,0],[1709930657000,0],[1709930658000,0],[1709930659000,0],[1709930660000,0],[1709930661000,0],[1709930662000,0],[1709930663000,0],[1709930664000,0],[1709930665000,0],[1709930666000,0],[1709930667000,0],[1709930668000,0],[1709930669000,0],[1709930670000,0],[1709930671000,0],[1709930672000,0],[1709930673000,0],[1709930674000,0],[1709930675000,0],[1709930676000,0],[1709930677000,0],[1709930678000,0],[1709930679000,0],[1709930680000,0],[1709930681000,0],[1709930682000,0],[1709930683000,0],[1709930684000,0],[1709930685000,0],[1709930686000,0],[1709930687000,0],[1709930688000,0],[1709930689000,0],[1709930690000,0],[1709930691000,0],[1709930692000,0],[1709930693000,0],[1709930694000,0],[1709930695000,0],[1709930696000,0],[1709930697000,0],[1709930698000,0],[1709930699000,0],[1709930700000,0],[1709930701000,0],[1709930702000,0],[1709930703000,0],[1709930704000,0],[1709930705000,0],[1709930706000,0],[1709930707000,0],[1709930708000,0],[1709930709000,0],[1709930710000,0],[1709930711000,0],[1709930712000,0],[1709930713000,0],[1709930714000,0],[1709930715000,0],[1709930716000,0],[1709930717000,0],[1709930718000,0],[1709930719000,0],[1709930720000,0],[1709930721000,0],[1709930722000,0],[1709930723000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#AECAEB',
name: 'validação concorrência transações - d',
data: [
[1709930479000,25],[1709930480000,0],[1709930481000,0],[1709930482000,0],[1709930483000,0],[1709930484000,0],[1709930485000,0],[1709930486000,0],[1709930487000,0],[1709930488000,0],[1709930489000,0],[1709930490000,0],[1709930491000,0],[1709930492000,0],[1709930493000,0],[1709930494000,0],[1709930495000,0],[1709930496000,0],[1709930497000,0],[1709930498000,0],[1709930499000,0],[1709930500000,0],[1709930501000,0],[1709930502000,0],[1709930503000,0],[1709930504000,0],[1709930505000,0],[1709930506000,0],[1709930507000,0],[1709930508000,0],[1709930509000,0],[1709930510000,0],[1709930511000,0],[1709930512000,0],[1709930513000,0],[1709930514000,0],[1709930515000,0],[1709930516000,0],[1709930517000,0],[1709930518000,0],[1709930519000,0],[1709930520000,0],[1709930521000,0],[1709930522000,0],[1709930523000,0],[1709930524000,0],[1709930525000,0],[1709930526000,0],[1709930527000,0],[1709930528000,0],[1709930529000,0],[1709930530000,0],[1709930531000,0],[1709930532000,0],[1709930533000,0],[1709930534000,0],[1709930535000,0],[1709930536000,0],[1709930537000,0],[1709930538000,0],[1709930539000,0],[1709930540000,0],[1709930541000,0],[1709930542000,0],[1709930543000,0],[1709930544000,0],[1709930545000,0],[1709930546000,0],[1709930547000,0],[1709930548000,0],[1709930549000,0],[1709930550000,0],[1709930551000,0],[1709930552000,0],[1709930553000,0],[1709930554000,0],[1709930555000,0],[1709930556000,0],[1709930557000,0],[1709930558000,0],[1709930559000,0],[1709930560000,0],[1709930561000,0],[1709930562000,0],[1709930563000,0],[1709930564000,0],[1709930565000,0],[1709930566000,0],[1709930567000,0],[1709930568000,0],[1709930569000,0],[1709930570000,0],[1709930571000,0],[1709930572000,0],[1709930573000,0],[1709930574000,0],[1709930575000,0],[1709930576000,0],[1709930577000,0],[1709930578000,0],[1709930579000,0],[1709930580000,0],[1709930581000,0],[1709930582000,0],[1709930583000,0],[1709930584000,0],[1709930585000,0],[1709930586000,0],[1709930587000,0],[1709930588000,0],[1709930589000,0],[1709930590000,0],[1709930591000,0],[1709930592000,0],[1709930593000,0],[1709930594000,0],[1709930595000,0],[1709930596000,0],[1709930597000,0],[1709930598000,0],[1709930599000,0],[1709930600000,0],[1709930601000,0],[1709930602000,0],[1709930603000,0],[1709930604000,0],[1709930605000,0],[1709930606000,0],[1709930607000,0],[1709930608000,0],[1709930609000,0],[1709930610000,0],[1709930611000,0],[1709930612000,0],[1709930613000,0],[1709930614000,0],[1709930615000,0],[1709930616000,0],[1709930617000,0],[1709930618000,0],[1709930619000,0],[1709930620000,0],[1709930621000,0],[1709930622000,0],[1709930623000,0],[1709930624000,0],[1709930625000,0],[1709930626000,0],[1709930627000,0],[1709930628000,0],[1709930629000,0],[1709930630000,0],[1709930631000,0],[1709930632000,0],[1709930633000,0],[1709930634000,0],[1709930635000,0],[1709930636000,0],[1709930637000,0],[1709930638000,0],[1709930639000,0],[1709930640000,0],[1709930641000,0],[1709930642000,0],[1709930643000,0],[1709930644000,0],[1709930645000,0],[1709930646000,0],[1709930647000,0],[1709930648000,0],[1709930649000,0],[1709930650000,0],[1709930651000,0],[1709930652000,0],[1709930653000,0],[1709930654000,0],[1709930655000,0],[1709930656000,0],[1709930657000,0],[1709930658000,0],[1709930659000,0],[1709930660000,0],[1709930661000,0],[1709930662000,0],[1709930663000,0],[1709930664000,0],[1709930665000,0],[1709930666000,0],[1709930667000,0],[1709930668000,0],[1709930669000,0],[1709930670000,0],[1709930671000,0],[1709930672000,0],[1709930673000,0],[1709930674000,0],[1709930675000,0],[1709930676000,0],[1709930677000,0],[1709930678000,0],[1709930679000,0],[1709930680000,0],[1709930681000,0],[1709930682000,0],[1709930683000,0],[1709930684000,0],[1709930685000,0],[1709930686000,0],[1709930687000,0],[1709930688000,0],[1709930689000,0],[1709930690000,0],[1709930691000,0],[1709930692000,0],[1709930693000,0],[1709930694000,0],[1709930695000,0],[1709930696000,0],[1709930697000,0],[1709930698000,0],[1709930699000,0],[1709930700000,0],[1709930701000,0],[1709930702000,0],[1709930703000,0],[1709930704000,0],[1709930705000,0],[1709930706000,0],[1709930707000,0],[1709930708000,0],[1709930709000,0],[1709930710000,0],[1709930711000,0],[1709930712000,0],[1709930713000,0],[1709930714000,0],[1709930715000,0],[1709930716000,0],[1709930717000,0],[1709930718000,0],[1709930719000,0],[1709930720000,0],[1709930721000,0],[1709930722000,0],[1709930723000,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: ['4', '11', '18', '25', '32', '39', '47', '54', '61', '68', '75', '83', '90', '97', '104', '111', '118', '126', '133', '140', '147', '154', '162', '169', '176', '183', '190', '197', '205', '212', '219', '226', '233', '241', '248', '255', '262', '269', '276', '284', '291', '298', '305', '312', '320', '327', '334', '341', '348', '355', '363', '370', '377', '384', '391', '398', '406', '413', '420', '427', '434', '442', '449', '456', '463', '470', '477', '485', '492', '499', '506', '513', '521', '528', '535', '542', '549', '556', '564', '571', '578', '585', '592', '600', '607', '614', '621', '628', '635', '643', '650', '657', '664', '671', '679', '686', '693', '700', '707', '714'],
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: [
91.16,2.0,1.41,0.99,0.59,0.57,0.44,0.41,0.42,0.41,0.39,0.46,0.26,0.11,0.02,0.01,0.02,0.02,0.0,0.01,0.01,0.01,0.0,0.0,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
],
tooltip: { yDecimals: 0, ySuffix: 'ms' }
},
{
type: 'column',
color: '#f15b4f',
name: 'KO',
data: [
0.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([[1709930479,[501,519,606,706,707,708,711,714,717,718]],[1709930480,null],[1709930481,[7,18,23,28,29,30,32,34,37,38]],[1709930482,[15,15,15,15,15,15,15,15,15,15]],[1709930483,[2,4,18,96,223,305,323,372,408,416]],[1709930484,[1,2,6,80,82,93,94,98,170,188]],[1709930485,[3,5,13,22,23,34,46,58,67,70]],[1709930486,[3,4,4,20,20,20,29,49,65,69]],[1709930487,[3,3,4,4,4,4,4,4,4,5]],[1709930488,[3,4,4,4,4,5,5,8,12,14]],[1709930489,[3,4,4,5,5,9,19,36,54,59]],[1709930490,[2,3,3,4,4,4,4,4,4,5]],[1709930491,[2,3,3,3,4,4,4,4,41,53]],[1709930492,[2,3,3,4,4,21,21,21,38,44]],[1709930493,[2,3,3,4,4,4,4,6,17,22]],[1709930494,[2,3,3,4,16,20,20,44,71,71]],[1709930495,[2,3,3,4,4,5,21,22,54,71]],[1709930496,[2,3,3,3,4,8,32,65,80,87]],[1709930497,[2,3,3,3,3,4,4,4,6,7]],[1709930498,[2,3,3,3,4,4,4,6,34,49]],[1709930499,[2,3,3,3,3,3,16,56,78,92]],[1709930500,[2,2,2,3,3,3,3,3,4,5]],[1709930501,[2,2,3,3,3,4,4,5,33,48]],[1709930502,[2,2,2,3,3,3,3,3,3,4]],[1709930503,[2,2,3,3,3,3,9,54,72,77]],[1709930504,[1,2,2,3,3,3,3,4,4,5]],[1709930505,[2,2,2,3,3,3,4,12,56,72]],[1709930506,[2,2,3,3,3,3,3,4,14,20]],[1709930507,[1,2,2,3,3,3,3,46,83,90]],[1709930508,[1,2,2,5,20,36,51,60,81,85]],[1709930509,[2,2,2,2,3,3,3,3,3,3]],[1709930510,[1,2,2,3,3,3,3,3,3,3]],[1709930511,[2,2,2,13,28,46,59,81,87,89]],[1709930512,[2,2,2,2,2,2,3,3,3,4]],[1709930513,[1,2,2,2,2,3,3,3,52,67]],[1709930514,[1,2,2,2,2,3,12,38,66,85]],[1709930515,[1,2,2,2,2,2,3,29,67,85]],[1709930516,[1,2,2,2,2,2,3,3,58,79]],[1709930517,[1,2,2,2,2,3,3,26,63,70]],[1709930518,[1,2,2,3,3,3,3,3,3,4]],[1709930519,[1,2,2,3,3,3,3,20,59,87]],[1709930520,[1,2,2,3,3,3,3,3,64,80]],[1709930521,[1,2,2,2,3,3,3,33,71,83]],[1709930522,[1,2,2,2,2,3,22,46,78,80]],[1709930523,[1,2,2,2,2,2,3,3,43,66]],[1709930524,[1,2,2,31,41,51,65,81,90,95]],[1709930525,[1,2,2,2,2,2,3,3,63,78]],[1709930526,[1,2,2,2,2,2,3,4,65,82]],[1709930527,[1,1,2,2,2,2,2,3,68,79]],[1709930528,[1,2,2,3,3,12,37,61,83,175]],[1709930529,[1,2,2,10,20,41,57,71,88,92]],[1709930530,[1,2,2,19,27,42,55,71,86,87]],[1709930531,[1,2,2,2,3,3,3,3,3,3]],[1709930532,[1,2,2,3,3,3,3,19,61,84]],[1709930533,[1,2,2,2,2,2,3,3,52,68]],[1709930534,[1,2,2,4,20,35,55,69,84,90]],[1709930535,[1,1,2,19,31,51,68,82,97,125]],[1709930536,[1,1,2,3,15,31,53,84,149,170]],[1709930537,[1,2,2,47,58,73,82,100,143,149]],[1709930538,[1,2,2,7,21,35,57,75,99,108]],[1709930539,[1,2,30,61,66,73,79,87,100,124]],[1709930540,[1,18,42,68,72,78,83,88,94,156]],[1709930541,[1,2,17,56,62,72,80,88,106,123]],[1709930542,[1,2,2,14,23,42,58,78,96,98]],[1709930543,[1,1,2,22,32,51,62,75,86,93]],[1709930544,[1,1,2,2,2,3,23,54,83,90]],[1709930545,[1,2,10,49,57,63,73,84,94,97]],[1709930546,[1,2,2,3,4,22,40,62,84,93]],[1709930547,[1,2,19,52,61,70,77,85,91,97]],[1709930548,[1,2,2,2,3,19,44,69,87,115]],[1709930549,[1,2,3,50,62,74,83,95,157,177]],[1709930550,[1,2,2,23,34,49,61,79,88,90]],[1709930551,[1,3,32,66,74,81,87,95,147,184]],[1709930552,[1,1,7,46,56,63,73,83,89,120]],[1709930553,[1,1,2,43,55,64,72,84,102,190]],[1709930554,[1,1,2,46,53,65,76,86,95,139]],[1709930555,[1,1,9,50,59,70,79,90,152,190]],[1709930556,[1,10,39,66,73,77,81,89,123,177]],[1709930557,[1,2,13,53,61,71,77,86,95,107]],[1709930558,[1,16,41,68,75,77,83,89,97,156]],[1709930559,[1,3,33,69,77,84,88,107,154,176]],[1709930560,[1,1,1,2,7,29,49,67,84,95]],[1709930561,[1,1,2,44,53,64,71,82,98,168]],[1709930562,[1,1,1,2,2,2,2,11,64,80]],[1709930563,[1,1,9,55,61,71,77,86,107,144]],[1709930564,[1,20,45,69,75,78,85,92,99,154]],[1709930565,[1,24,54,81,89,104,127,155,190,207]],[1709930566,[1,2,2,29,39,52,63,78,88,91]],[1709930567,[1,1,2,2,2,2,2,2,3,3]],[1709930568,[1,1,2,2,3,12,32,58,81,93]],[1709930569,[1,1,2,2,2,2,2,2,3,3]],[1709930570,[1,1,1,1,2,2,2,2,3,3]],[1709930571,[1,1,1,1,1,1,2,2,2,3]],[1709930572,[1,1,1,1,2,2,2,2,3,3]],[1709930573,[1,1,1,2,2,2,2,2,2,3]],[1709930574,[1,1,1,2,2,2,2,2,3,3]],[1709930575,[1,1,1,2,2,2,2,2,3,3]],[1709930576,[1,1,1,2,2,2,2,2,3,3]],[1709930577,[1,1,1,2,2,2,2,2,3,3]],[1709930578,[1,1,1,2,2,2,2,2,3,6]],[1709930579,[1,1,1,1,2,2,2,2,3,9]],[1709930580,[1,1,1,1,1,2,2,2,5,20]],[1709930581,[1,1,1,1,2,2,2,2,4,4]],[1709930582,[1,1,1,1,2,2,2,2,3,3]],[1709930583,[1,1,1,1,2,2,2,2,3,3]],[1709930584,[1,1,1,2,2,2,2,2,3,4]],[1709930585,[1,1,2,2,2,2,2,2,8,19]],[1709930586,[1,1,2,2,2,2,2,3,8,16]],[1709930587,[1,1,1,2,2,2,2,4,15,31]],[1709930588,[1,1,1,2,2,2,2,5,14,19]],[1709930589,[1,1,2,2,2,2,2,3,11,17]],[1709930590,[1,1,1,1,2,2,2,2,3,4]],[1709930591,[1,1,1,1,1,1,1,1,3,4]],[1709930592,[1,1,1,2,2,2,2,3,8,10]],[1709930593,[1,1,2,2,2,2,2,6,20,26]],[1709930594,[1,2,2,2,2,3,5,13,21,26]],[1709930595,[1,1,2,2,3,3,4,11,20,26]],[1709930596,[1,1,1,2,2,3,3,9,21,38]],[1709930597,[2,3,3,3,3,4,4,5,10,21]],[1709930598,[1,1,2,2,3,3,7,17,29,38]],[1709930599,[2,2,3,3,3,3,4,5,15,21]],[1709930600,[1,1,1,2,2,2,2,3,4,6]],[1709930601,[1,2,3,3,3,3,3,4,6,7]],[1709930602,[1,1,1,2,2,3,3,8,19,24]],[1709930603,[1,2,3,3,4,6,12,22,33,46]],[1709930604,[1,1,2,3,3,3,7,17,24,27]],[1709930605,[1,2,2,3,3,3,3,4,5,6]],[1709930606,[1,1,2,2,2,2,3,3,4,7]],[1709930607,[1,2,2,2,3,3,3,4,5,7]],[1709930608,[1,1,1,2,2,2,3,6,19,31]],[1709930609,[1,1,2,3,3,3,4,11,24,31]],[1709930610,[1,2,2,3,3,4,5,16,24,27]],[1709930611,[1,2,3,3,4,4,8,20,26,31]],[1709930612,[1,2,2,3,4,4,8,20,27,34]],[1709930613,[1,2,2,3,3,3,4,7,20,29]],[1709930614,[1,2,2,2,3,3,3,7,22,34]],[1709930615,[1,2,2,2,3,3,3,3,6,20]],[1709930616,[1,2,2,3,3,3,3,6,25,31]],[1709930617,[1,2,2,3,3,4,4,11,23,31]],[1709930618,[1,2,2,3,4,4,5,16,26,40]],[1709930619,[1,1,2,3,3,4,5,17,32,45]],[1709930620,[1,1,2,3,3,3,4,12,21,30]],[1709930621,[1,1,1,2,2,3,4,8,20,31]],[1709930622,[1,2,3,3,3,4,4,7,22,31]],[1709930623,[1,1,2,2,2,3,5,12,23,32]],[1709930624,[1,1,2,3,3,3,4,4,6,8]],[1709930625,[1,1,1,1,1,1,2,2,4,7]],[1709930626,[1,2,3,3,3,3,3,4,6,11]],[1709930627,[0,1,1,2,2,2,2,2,4,10]],[1709930628,[1,1,2,3,3,3,3,3,5,7]],[1709930629,[1,1,1,1,1,2,2,2,8,20]],[1709930630,[1,2,2,3,3,3,3,4,6,11]],[1709930631,[1,1,1,2,2,2,2,2,4,4]],[1709930632,[1,1,2,2,3,3,3,4,6,6]],[1709930633,[1,1,1,1,1,2,2,4,20,25]],[1709930634,[1,1,2,2,3,3,3,6,19,31]],[1709930635,[1,1,1,1,1,1,3,12,24,30]],[1709930636,[1,1,2,3,3,3,4,4,14,24]],[1709930637,[1,1,2,2,2,2,2,2,4,5]],[1709930638,[1,2,2,3,3,3,4,4,6,8]],[1709930639,[1,1,1,1,1,2,2,2,4,10]],[1709930640,[1,1,1,3,3,3,4,4,7,9]],[1709930641,[1,1,1,2,2,2,2,3,5,20]],[1709930642,[1,2,2,3,3,3,4,4,7,9]],[1709930643,[1,1,2,2,2,2,3,4,6,17]],[1709930644,[1,1,1,2,3,3,3,4,6,8]],[1709930645,[1,2,2,2,3,3,4,11,17,23]],[1709930646,[1,1,2,2,3,4,13,25,41,59]],[1709930647,[1,1,2,3,3,4,13,26,43,58]],[1709930648,[1,1,1,2,2,2,2,3,5,7]],[1709930649,[1,1,2,2,2,2,3,3,5,6]],[1709930650,[1,1,1,2,2,2,2,3,9,20]],[1709930651,[1,1,1,2,2,2,2,4,12,20]],[1709930652,[1,1,1,1,2,2,2,2,5,11]],[1709930653,[1,1,2,2,2,3,3,4,6,16]],[1709930654,[1,1,1,2,2,2,2,3,15,21]],[1709930655,[1,1,2,2,2,3,3,4,8,11]],[1709930656,[1,1,1,2,2,2,2,2,5,5]],[1709930657,[1,1,2,2,2,2,3,3,6,16]],[1709930658,[1,2,2,3,3,3,3,4,7,24]],[1709930659,[1,2,2,3,3,3,3,4,7,8]],[1709930660,[1,2,3,3,3,3,4,5,12,25]],[1709930661,[1,1,2,3,3,3,4,4,8,11]],[1709930662,[1,2,2,3,3,3,3,4,7,9]],[1709930663,[1,1,2,3,3,3,3,3,7,11]],[1709930664,[1,1,2,3,3,3,4,11,25,31]],[1709930665,[1,2,2,3,3,3,4,11,20,26]],[1709930666,[1,1,2,5,7,13,20,26,32,46]],[1709930667,[1,1,2,3,3,3,4,7,12,21]],[1709930668,[1,1,1,3,3,5,9,22,38,52]],[1709930669,[1,2,2,3,3,3,4,6,21,32]],[1709930670,[1,1,2,2,3,3,3,4,7,16]],[1709930671,[1,2,3,3,3,4,4,4,7,9]],[1709930672,[1,1,1,2,2,2,2,3,6,9]],[1709930673,[1,2,2,3,3,3,3,4,7,8]],[1709930674,[1,1,1,2,2,2,4,12,26,31]],[1709930675,[1,2,3,3,3,4,7,12,24,33]],[1709930676,[1,1,2,3,4,8,14,22,44,55]],[1709930677,[1,2,3,3,4,5,11,22,31,39]],[1709930678,[1,1,2,2,2,2,2,3,6,6]],[1709930679,[1,2,3,3,3,3,4,4,7,11]],[1709930680,[1,1,2,2,2,2,2,3,6,11]],[1709930681,[1,2,3,3,3,4,4,5,8,12]],[1709930682,[1,1,2,2,2,2,2,3,6,11]],[1709930683,[1,2,2,3,3,3,3,4,7,8]],[1709930684,[1,1,1,2,2,2,2,2,9,25]],[1709930685,[1,1,3,3,4,4,4,8,20,26]],[1709930686,[1,2,2,3,3,4,12,21,40,51]],[1709930687,[1,2,3,3,4,4,4,11,22,29]],[1709930688,[1,1,2,2,3,3,5,16,25,26]],[1709930689,[1,2,2,3,3,3,4,12,26,45]],[1709930690,[1,1,2,2,2,3,3,4,6,11]],[1709930691,[1,1,2,3,3,3,5,12,30,50]],[1709930692,[1,1,2,3,3,4,7,12,31,50]],[1709930693,[1,1,2,3,4,4,8,13,34,50]],[1709930694,[1,1,2,3,3,3,4,7,16,21]],[1709930695,[1,1,1,3,3,4,8,16,27,42]],[1709930696,[1,1,2,3,3,3,3,6,16,25]],[1709930697,[1,1,2,2,3,3,5,13,26,40]],[1709930698,[1,1,2,3,3,4,5,12,21,26]],[1709930699,[1,1,1,2,2,2,3,4,18,25]],[1709930700,[1,2,2,3,3,3,3,4,8,11]],[1709930701,[1,1,1,2,2,2,2,4,12,20]],[1709930702,[1,1,2,2,3,3,8,20,36,49]],[1709930703,[1,1,1,2,2,3,7,12,25,34]],[1709930704,[1,2,2,3,3,3,4,6,17,26]],[1709930705,[1,1,1,2,2,2,2,2,9,20]],[1709930706,[1,1,2,3,3,3,4,4,8,11]],[1709930707,[1,1,2,2,2,2,2,4,15,21]],[1709930708,[0,1,2,3,3,4,5,15,31,43]],[1709930709,[1,1,1,1,1,3,12,21,27,40]],[1709930710,[1,1,1,3,3,4,12,21,39,50]],[1709930711,[1,1,1,1,1,1,2,7,23,31]],[1709930712,[1,1,1,2,2,3,3,3,6,8]],[1709930713,[1,1,1,2,2,2,2,3,9,12]],[1709930714,[1,1,2,3,3,3,3,4,9,19]],[1709930715,[1,1,2,2,2,2,2,2,6,7]],[1709930716,[1,1,1,2,3,3,3,4,11,25]],[1709930717,[1,1,1,2,2,2,2,6,19,31]],[1709930718,[1,1,1,2,2,2,3,3,9,20]],[1709930719,[1,1,1,2,2,2,2,3,11,21]],[1709930720,[1,2,2,3,3,4,4,11,24,27]],[1709930721,[1,2,2,2,4,8,18,26,36,41]],[1709930722,[1,2,3,4,4,4,5,11,19,26]],[1709930723,[1,1,2,3,3,3,3,4,11,20]]]);
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([[1709930479,[25,25,0]],[1709930480,[1,0,1]],[1709930481,[25,25,0]],[1709930482,[1,1,0]],[1709930483,[41,25,16]],[1709930484,[33,21,12]],[1709930485,[6,6,0]],[1709930486,[9,9,0]],[1709930487,[11,11,0]],[1709930488,[13,13,0]],[1709930489,[18,18,0]],[1709930490,[19,19,0]],[1709930491,[24,24,0]],[1709930492,[26,26,0]],[1709930493,[27,27,0]],[1709930494,[32,32,0]],[1709930495,[34,34,0]],[1709930496,[37,37,0]],[1709930497,[39,39,0]],[1709930498,[43,43,0]],[1709930499,[44,44,0]],[1709930500,[48,48,0]],[1709930501,[50,50,0]],[1709930502,[54,54,0]],[1709930503,[57,57,0]],[1709930504,[60,60,0]],[1709930505,[61,61,0]],[1709930506,[65,65,0]],[1709930507,[67,67,0]],[1709930508,[70,70,0]],[1709930509,[74,74,0]],[1709930510,[76,76,0]],[1709930511,[80,80,0]],[1709930512,[81,81,0]],[1709930513,[84,84,0]],[1709930514,[87,87,0]],[1709930515,[91,91,0]],[1709930516,[92,92,0]],[1709930517,[96,96,0]],[1709930518,[98,98,0]],[1709930519,[101,101,0]],[1709930520,[105,105,0]],[1709930521,[107,107,0]],[1709930522,[110,110,0]],[1709930523,[114,114,0]],[1709930524,[115,115,0]],[1709930525,[118,118,0]],[1709930526,[121,121,0]],[1709930527,[124,124,0]],[1709930528,[126,126,0]],[1709930529,[129,129,0]],[1709930530,[133,133,0]],[1709930531,[134,134,0]],[1709930532,[138,138,0]],[1709930533,[141,141,0]],[1709930534,[143,143,0]],[1709930535,[146,146,0]],[1709930536,[149,149,0]],[1709930537,[152,152,0]],[1709930538,[154,154,0]],[1709930539,[158,158,0]],[1709930540,[160,160,0]],[1709930541,[164,164,0]],[1709930542,[165,165,0]],[1709930543,[170,170,0]],[1709930544,[172,172,0]],[1709930545,[174,174,0]],[1709930546,[176,176,0]],[1709930547,[181,181,0]],[1709930548,[183,183,0]],[1709930549,[185,185,0]],[1709930550,[189,189,0]],[1709930551,[191,191,0]],[1709930552,[194,194,0]],[1709930553,[196,196,0]],[1709930554,[200,200,0]],[1709930555,[202,202,0]],[1709930556,[206,206,0]],[1709930557,[207,207,0]],[1709930558,[211,211,0]],[1709930559,[213,213,0]],[1709930560,[217,217,0]],[1709930561,[220,220,0]],[1709930562,[223,223,0]],[1709930563,[224,224,0]],[1709930564,[228,228,0]],[1709930565,[230,230,0]],[1709930566,[233,233,0]],[1709930567,[236,236,0]],[1709930568,[239,239,0]],[1709930569,[242,242,0]],[1709930570,[244,244,0]],[1709930571,[248,248,0]],[1709930572,[251,251,0]],[1709930573,[252,252,0]],[1709930574,[256,256,0]],[1709930575,[259,259,0]],[1709930576,[262,262,0]],[1709930577,[264,264,0]],[1709930578,[267,267,0]],[1709930579,[269,269,0]],[1709930580,[272,272,0]],[1709930581,[276,276,0]],[1709930582,[279,279,0]],[1709930583,[281,281,0]],[1709930584,[284,284,0]],[1709930585,[286,286,0]],[1709930586,[290,290,0]],[1709930587,[291,291,0]],[1709930588,[296,296,0]],[1709930589,[298,298,0]],[1709930590,[300,300,0]],[1709930591,[304,304,0]],[1709930592,[306,306,0]],[1709930593,[309,309,0]],[1709930594,[312,312,0]],[1709930595,[315,315,0]],[1709930596,[317,317,0]],[1709930597,[321,321,0]],[1709930598,[322,322,0]],[1709930599,[327,327,0]],[1709930600,[329,329,0]],[1709930601,[332,332,0]],[1709930602,[335,335,0]],[1709930603,[338,338,0]],[1709930604,[339,339,0]],[1709930605,[340,340,0]],[1709930606,[341,341,0]],[1709930607,[339,339,0]],[1709930608,[340,340,0]],[1709930609,[341,341,0]],[1709930610,[340,340,0]],[1709930611,[340,340,0]],[1709930612,[340,340,0]],[1709930613,[339,339,0]],[1709930614,[341,341,0]],[1709930615,[340,340,0]],[1709930616,[340,340,0]],[1709930617,[340,340,0]],[1709930618,[340,340,0]],[1709930619,[339,339,0]],[1709930620,[340,340,0]],[1709930621,[341,341,0]],[1709930622,[340,340,0]],[1709930623,[340,340,0]],[1709930624,[339,339,0]],[1709930625,[341,341,0]],[1709930626,[340,340,0]],[1709930627,[339,339,0]],[1709930628,[341,341,0]],[1709930629,[340,340,0]],[1709930630,[340,340,0]],[1709930631,[339,339,0]],[1709930632,[340,340,0]],[1709930633,[340,340,0]],[1709930634,[340,340,0]],[1709930635,[340,340,0]],[1709930636,[341,341,0]],[1709930637,[340,340,0]],[1709930638,[340,340,0]],[1709930639,[339,339,0]],[1709930640,[341,341,0]],[1709930641,[340,340,0]],[1709930642,[340,340,0]],[1709930643,[340,340,0]],[1709930644,[340,340,0]],[1709930645,[340,340,0]],[1709930646,[340,340,0]],[1709930647,[340,340,0]],[1709930648,[339,339,0]],[1709930649,[341,341,0]],[1709930650,[339,339,0]],[1709930651,[341,341,0]],[1709930652,[340,340,0]],[1709930653,[340,340,0]],[1709930654,[340,340,0]],[1709930655,[340,340,0]],[1709930656,[339,339,0]],[1709930657,[341,341,0]],[1709930658,[340,340,0]],[1709930659,[340,340,0]],[1709930660,[340,340,0]],[1709930661,[340,340,0]],[1709930662,[340,340,0]],[1709930663,[340,340,0]],[1709930664,[340,340,0]],[1709930665,[340,340,0]],[1709930666,[340,340,0]],[1709930667,[340,340,0]],[1709930668,[340,340,0]],[1709930669,[340,340,0]],[1709930670,[340,340,0]],[1709930671,[340,340,0]],[1709930672,[339,339,0]],[1709930673,[340,340,0]],[1709930674,[341,341,0]],[1709930675,[340,340,0]],[1709930676,[340,340,0]],[1709930677,[340,340,0]],[1709930678,[340,340,0]],[1709930679,[340,340,0]],[1709930680,[340,340,0]],[1709930681,[340,340,0]],[1709930682,[340,340,0]],[1709930683,[339,339,0]],[1709930684,[341,341,0]],[1709930685,[340,340,0]],[1709930686,[340,340,0]],[1709930687,[340,340,0]],[1709930688,[340,340,0]],[1709930689,[340,340,0]],[1709930690,[340,340,0]],[1709930691,[340,340,0]],[1709930692,[340,340,0]],[1709930693,[340,340,0]],[1709930694,[339,339,0]],[1709930695,[341,341,0]],[1709930696,[340,340,0]],[1709930697,[340,340,0]],[1709930698,[340,340,0]],[1709930699,[340,340,0]],[1709930700,[340,340,0]],[1709930701,[339,339,0]],[1709930702,[341,341,0]],[1709930703,[340,340,0]],[1709930704,[340,340,0]],[1709930705,[340,340,0]],[1709930706,[340,340,0]],[1709930707,[340,340,0]],[1709930708,[339,339,0]],[1709930709,[341,341,0]],[1709930710,[339,339,0]],[1709930711,[340,340,0]],[1709930712,[341,341,0]],[1709930713,[340,340,0]],[1709930714,[340,340,0]],[1709930715,[340,340,0]],[1709930716,[340,340,0]],[1709930717,[339,339,0]],[1709930718,[340,340,0]],[1709930719,[341,341,0]],[1709930720,[340,340,0]],[1709930721,[340,340,0]],[1709930722,[339,339,0]],[1709930723,[504,504,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,