-
Notifications
You must be signed in to change notification settings - Fork 923
/
Copy pathindex.html
1200 lines (1130 loc) · 96.4 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="shortcut icon" type="image/x-icon" href="style/favicon.ico"/>
<link href="style/style.css" rel="stylesheet" type="text/css" />
<link href="style/bootstrap.min.css" rel="stylesheet" type="text/css" />
<script src="js/jquery-3.5.1.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/gatling.js"></script>
<script src="js/menu.js"></script>
<script src="js/ellipsis.js"></script>
<script src="js/all_sessions.js"></script>
<script src="js/stats.js"></script>
<script src="js/highstock.js"></script>
<script src="js/highcharts-more.js"></script>
<script src="js/theme.js"></script>
<script src="js/unpack.js"></script>
<title>Gatling Stats - Global Information</title>
</head>
<body>
<script>
const storedTheme = localStorage.getItem('theme') || (window.matchMedia("(prefers-color-scheme: dark)").matches ? "dark" : "light");
if (storedTheme) document.documentElement.setAttribute('data-theme', storedTheme)
function toggleTheme() {
const currentTheme = document.documentElement.getAttribute("data-theme");
const targetTheme = currentTheme === "light" ? "dark" : "light";
document.documentElement.setAttribute('data-theme', targetTheme)
localStorage.setItem('theme', targetTheme);
};
</script>
<div class="app-container">
<div class="frise"></div>
<div class="head">
<div class="gatling-open-source">
<a class="gatling-logo gatling-logo-light" href="https://gatling.io" target="blank_" title="Gatling Home Page"><img alt="Gatling" src="style/logo-light.svg"/></a>
<a class="gatling-logo gatling-logo-dark" href="https://gatling.io" target="blank_" title="Gatling Home Page"><img alt="Gatling" src="style/logo-dark.svg"/></a>
<a class="gatling-documentation" href="https://gatling.io/docs/" target="_blank">Documentation</a>
</div>
<div class="nav spacer"></div>
<a class="enterprise" href="https://gatling.io/enterprise/next-step/" target="_blank"><strong>Try</strong>
<img class="logo-enterprise-light" alt="Gatling Enterprise" src="style/logo-enterprise-light.svg"/>
<img class="logo-enterprise-dark" alt="Gatling Enterprise" src="style/logo-enterprise-dark.svg"/>
</a>
<button id="theme-toggle" class="theme-toggle" type="button" onclick="toggleTheme()" aria-label="Toggle user interface mode">
<span class="toggle-dark"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-moon"><path d="M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z"></path></svg></span>
<span class="toggle-light"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-sun"><circle cx="12" cy="12" r="5"></circle><line x1="12" y1="1" x2="12" y2="3"></line><line x1="12" y1="21" x2="12" y2="23"></line><line x1="4.22" y1="4.22" x2="5.64" y2="5.64"></line><line x1="18.36" y1="18.36" x2="19.78" y2="19.78"></line><line x1="1" y1="12" x2="3" y2="12"></line><line x1="21" y1="12" x2="23" y2="12"></line><line x1="4.22" y1="19.78" x2="5.64" y2="18.36"></line><line x1="18.36" y1="5.64" x2="19.78" y2="4.22"></line></svg></span>
</button>
</div>
<div class="container details">
<div class="nav">
<ul></ul>
</div>
<div class="cadre">
<div class="content">
<div class="content-header">
<div class="onglet">
RinhaBackendCrebitosSimulation
</div>
<div class="sous-menu" id="sousMenu">
<div class="sous-menu-spacer">
<div class="item ouvert"><a href="index.html">Global</a></div>
<div class="item "><a id="details_link" href="#">Details</a></div>
</div>
</div>
</div>
<div class="content-in">
<div class="container-article">
<div class="article">
<div class="schema-container">
<div id="ranges" class="schema ranges">
</div>
<div class="schema polar">
<div id="container_number_of_requests"></div>
</div>
<div class="simulation-card">
<div class="simulation-version-information">
<span class="simulation-information-title">Gatling Version</span>
<span class="simulation-information-item">
<span class="simulation-information-label">Version: </span>
<span>3.10.3</span>
</span>
<span class="simulation-information-item">
<span class="simulation-information-label">Released: </span>
<span>2023-12-20</span>
</span>
</div>
<div id="simulation-information" class="simulation-version-information">
<span class="simulation-information-title">Run Information</span>
<div class="simulation-information-container">
<span class="simulation-information-item">
<span class="simulation-information-label">Date: </span>
<span>2024-03-09 08:12:15 GMT</span>
</span>
<span class="simulation-information-item">
<span class="simulation-information-label">Duration: </span>
<span>4m 5s </span>
</span>
<span class="simulation-tooltip simulation-information-item description" title="Description" data-content="Rinha de Backend - 2024/Q1: Crébito - BrayaOrtega">
<span class="simulation-information-label">Description: </span>
<span>Rinha de Backend - 2024/Q1: Crébito - BrayaOrtega</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(0), but actually found 2<span class="value" style="display:none">0</span></td>
<td class="value error-col-2 total ko">2</td>
<td class="value error-col-3 total ko">66.667 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">jmesPath(saldo.total).find.is(-25), but actually found -2<span class="value" style="display:none">1</span></td>
<td class="value error-col-2 total ko">1</td>
<td class="value error-col-3 total ko">33.333 %</td>
</tr>
</tbody>
</table>
</div>
<div class="schema geant">
<div id="active_users" class="geant"></div>
</div>
<div class="schema geant">
<div id="responsetimeDistributionContainer" class="geant"></div>
</div>
<div class="schema geant">
<div id="responsetimepercentilesovertimeokPercentilesContainer" class="geant"></div>
</div>
<div class="schema geant">
<div id="requests" class="geant"></div>
</div>
<div class="schema geant">
<div id="responses" class="geant"></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<script>
var pageStats = stats.stats;
$(document).ready(function() {
$('.simulation-tooltip').popover({trigger:'hover', placement:'left'});
setDetailsLinkUrl();
setGlobalMenu();
setActiveMenu();
fillStats(pageStats);
Highcharts.setOptions({
global: { useUTC: false }
});
var rangesChart = new Highcharts.Chart({
chart: {
renderTo: 'ranges',
marginRight: 100
},
credits: { enabled: false },
legend: { enabled: false },
title: { text: 'A title to let highcharts reserve the place for the title set later' },
xAxis: {
categories: [
pageStats.group1.htmlName,
pageStats.group2.htmlName,
pageStats.group3.htmlName,
pageStats.group4.htmlName
]
},
yAxis: {
title: { text: 'Number of Requests' },
reversedStacks: false
},
tooltip: {
formatter: function() {
var s;
if (this.point.name) { // the pie chart
s = ''+ this.point.name +': '+ this.y +'% requests';
} else {
s = ''+ this.y + ' requests';
}
return s;
}
},
plotOptions: {
series: {
stacking: 'normal',
shadow: true
}
},
series: [
{
type: 'column',
data: [{
color: '#68b65c',
y: pageStats.group1.count
},
{
color: '#FFDD00',
y: pageStats.group2.count
},
{
color: '#FFA900',
y: pageStats.group3.count
},
{
color: '#f15b4f',
y: pageStats.group4.count
}]
},
{
type: 'pie',
name: 'Percentages',
data: [
{
name: pageStats.group1.name,
y: pageStats.group1.percentage,
color: '#68b65c'
},
{
name: pageStats.group2.name,
y: pageStats.group2.percentage,
color: '#FFDD00'
},
{
name: pageStats.group3.name,
y: pageStats.group3.percentage,
color: '#FFA900'
},
{
name: pageStats.group4.name,
y: pageStats.group4.percentage,
color: '#f15b4f'
}
],
center: [345, 0],
size: 90,
showInLegend: false,
dataLabels: { enabled: false }
}
]
});
rangesChart.setTitle({
text: '<span class="chart_title">Response Time Ranges</span>',
useHTML: true
});
function numberOfRequestsDataForGroup(group) {
var data = {names: [], oks: [], kos: []};
$.each(group.contents, function(contentName, content) {
if (content.type == 'GROUP') {
var result = numberOfRequestsDataForGroup(content);
data.names = data.names.concat(result.names);
data.oks = data.oks.concat(result.oks);
data.kos = data.kos.concat(result.kos);
}
else if (content.type == 'REQUEST') {
data.names.push(content.path);
data.oks.push(parseInt(content.stats.numberOfRequests.ok));
data.kos.push(parseInt(content.stats.numberOfRequests.ko));
}
});
return data;
}
var numberOfRequestsData = numberOfRequestsDataForGroup(stats);
var tickInterval = Math.ceil(numberOfRequestsData.names.length / 1000);
new Highcharts.Chart({
chart: {
renderTo:'container_number_of_requests',
polar:true,
type:'column',
height:330
},
credits:{
enabled:false
},
title:{
text:'<span class="chart_title">Number of requests</span>',
useHTML: true,
widthAdjust:-20
},
xAxis:{
tickmarkPlacement:'on',
tickInterval: tickInterval,
categories:numberOfRequestsData.names,
labels:{ enabled:false }
},
yAxis:{
min:0,
reversedStacks: false
},
plotOptions:{
series:{
stacking:'normal',
groupPadding:0,
pointPlacement:'on',
shadow: true
}
},
legend: {
borderWidth: 0,
itemStyle: { fontWeight: "normal" },
symbolRadius: 0
},
series:[
{
name:'OK',
data:numberOfRequestsData.oks,
color:"#68b65c"
},
{
name:'KO',
data:numberOfRequestsData.kos,
color:"#f15b4f"
}
]
});
$('#container_exceptions').sortable('#container_exceptions');
function generateHtmlRow(request, level, index, parent, group) {
if (request.name == 'All Requests')
var url = 'index.html';
else
var url = request.pathFormatted + '.html';
if (group)
var expandButtonStyle = '';
else
var expandButtonStyle = ' hidden';
if (request.stats.numberOfRequests.total != 0)
var koPercent = (request.stats.numberOfRequests.ko * 100 / request.stats.numberOfRequests.total).toFixed(0) + '%';
else
var koPercent = '-'
return '<tr id="' + request.pathFormatted + '" data-parent=' + parent + '> \
<td class="total col-1"> \
<div class="expandable-container"> \
<span id="' + request.pathFormatted + '" style="margin-left: ' + (level * 10) + 'px;" class="expand-button' + expandButtonStyle + '"> </span> \
<a href="' + url +'" class="withTooltip">' + ellipsedLabel({ name: request.name, parentClass: "table-cell-tooltip" }) + '</a><span class="value" style="display:none;">' + index + '</span> \
</div> \
</td> \
<td class="value total col-2">' + request.stats.numberOfRequests.total + '</td> \
<td class="value ok col-3">' + request.stats.numberOfRequests.ok + '</td> \
<td class="value ko col-4">' + request.stats.numberOfRequests.ko + '</td> \
<td class="value ko col-5">' + koPercent + '</td> \
<td class="value total col-6">' + request.stats.meanNumberOfRequestsPerSecond.total + '</td> \
<td class="value total col-7">' + request.stats.minResponseTime.total + '</td> \
<td class="value total col-8">' + request.stats.percentiles1.total + '</td> \
<td class="value total col-9">' + request.stats.percentiles2.total + '</td> \
<td class="value total col-10">' + request.stats.percentiles3.total + '</td> \
<td class="value total col-11">' + request.stats.percentiles4.total + '</td> \
<td class="value total col-12">' + request.stats.maxResponseTime.total + '</td> \
<td class="value total col-13">' + request.stats.meanResponseTime.total + '</td> \
<td class="value total col-14">' + request.stats.standardDeviation.total + '</td> \
</tr>';
}
function generateHtmlRowsForGroup(group, level, index, parent) {
var buffer = '';
if (!parent)
parent = 'ROOT';
else {
buffer += generateHtmlRow(group, level - 1, index, parent, true);
index++;
parent = group.pathFormatted;
}
$.each(group.contents, function(contentName, content) {
if (content.type == 'GROUP') {
var result = generateHtmlRowsForGroup(content, level + 1, index, parent);
buffer += result.html;
index = result.index;
}
else if (content.type == 'REQUEST') {
buffer += generateHtmlRow(content, level, index, parent);
index++;
}
});
return { html: buffer, index: index };
}
$('#container_statistics_head tbody').append(generateHtmlRow(stats, 0, 0));
var lines = generateHtmlRowsForGroup(stats, 0, 0);
$('#container_statistics_body tbody').append(lines.html);
$('#container_statistics_head').sortable('#container_statistics_body');
$('.statistics').expandable();
if (lines.index < 30) {
$('#statistics_title span').attr('style', 'display: none;');
} else {
$('#statistics_title').addClass('title_collapsed');
$('#statistics_title').click(function() {
$('#toggle-stats').toggleClass("off");
$(this).toggleClass('title_collapsed').toggleClass('title_expanded');
$('#container_statistics_body').parent().toggleClass('scrollable').toggleClass('');
});
}
$('.table-cell-tooltip').popover({trigger:'hover'});
$('#container_errors').sortable('#container_errors');
allUsersData.yAxis = 0;
var allUsersChart = new Highcharts.StockChart({
chart: {
renderTo: 'active_users',
zoomType: 'x'
},
credits: { enabled: false },
legend: {
enabled: true,
floating: true,
align: 'right',
verticalAlign: 'top',
layout: 'vertical',
borderWidth: 0,
itemStyle: { fontWeight: "normal" },
symbolRadius: 0
},
title: { text: 'A title to let highcharts reserve the place for the title set later' },
navigator: {
maskInside: false
},
rangeSelector: {
buttonSpacing: 0,
buttonTheme: {
fill: '#CFC9C6',
padding: 1,
stroke: '#000000',
'stroke-width': 0.25,
style: {
color: '#000000',
fontWeight: 'bold',
},
states: {
stroke: '#000000',
'stroke-width': 0.25,
hover: {
fill: '#92918C',
style: { color: 'black' }
},
select: {
fill: '#FFA900',
style: { color: 'white' }
}
}
},
buttons : [
{
type : 'minute',
count : 1,
text : '1m'
}, {
type : 'minute',
count : 10,
text : '10m'
}, {
type : 'hour',
count : 1,
text : '1h'
}, {
type : 'all',
count : 1,
text : 'All'
}
],
selected : 3,
inputEnabled : false
},
xAxis: {
type: 'datetime',
ordinal: false,
maxZoom: 10000 // three days
},
yAxis: {
title: { text: 'Number of Active Users' },
opposite: false,
min: 0
},
series: [
{
color: '#5E7BE2',
name: 'créditos',
data: [
[1709971936000,0],[1709971937000,0],[1709971938000,0],[1709971939000,0],[1709971940000,0],[1709971941000,2],[1709971942000,3],[1709971943000,4],[1709971944000,4],[1709971945000,6],[1709971946000,7],[1709971947000,8],[1709971948000,9],[1709971949000,8],[1709971950000,11],[1709971951000,11],[1709971952000,13],[1709971953000,13],[1709971954000,15],[1709971955000,15],[1709971956000,17],[1709971957000,22],[1709971958000,19],[1709971959000,18],[1709971960000,20],[1709971961000,20],[1709971962000,24],[1709971963000,24],[1709971964000,24],[1709971965000,23],[1709971966000,26],[1709971967000,27],[1709971968000,30],[1709971969000,28],[1709971970000,29],[1709971971000,31],[1709971972000,32],[1709971973000,32],[1709971974000,34],[1709971975000,34],[1709971976000,37],[1709971977000,37],[1709971978000,38],[1709971979000,39],[1709971980000,41],[1709971981000,40],[1709971982000,41],[1709971983000,40],[1709971984000,42],[1709971985000,42],[1709971986000,44],[1709971987000,46],[1709971988000,46],[1709971989000,56],[1709971990000,48],[1709971991000,49],[1709971992000,51],[1709971993000,51],[1709971994000,52],[1709971995000,52],[1709971996000,56],[1709971997000,55],[1709971998000,55],[1709971999000,57],[1709972000000,59],[1709972001000,59],[1709972002000,61],[1709972003000,63],[1709972004000,63],[1709972005000,64],[1709972006000,64],[1709972007000,66],[1709972008000,68],[1709972009000,68],[1709972010000,70],[1709972011000,71],[1709972012000,72],[1709972013000,73],[1709972014000,74],[1709972015000,74],[1709972016000,75],[1709972017000,76],[1709972018000,77],[1709972019000,77],[1709972020000,77],[1709972021000,80],[1709972022000,80],[1709972023000,82],[1709972024000,82],[1709972025000,84],[1709972026000,86],[1709972027000,84],[1709972028000,87],[1709972029000,82],[1709972030000,88],[1709972031000,89],[1709972032000,91],[1709972033000,91],[1709972034000,93],[1709972035000,91],[1709972036000,95],[1709972037000,96],[1709972038000,96],[1709972039000,97],[1709972040000,98],[1709972041000,99],[1709972042000,101],[1709972043000,101],[1709972044000,103],[1709972045000,103],[1709972046000,105],[1709972047000,105],[1709972048000,107],[1709972049000,107],[1709972050000,109],[1709972051000,108],[1709972052000,111],[1709972053000,111],[1709972054000,112],[1709972055000,114],[1709972056000,115],[1709972057000,114],[1709972058000,115],[1709972059000,117],[1709972060000,119],[1709972061000,118],[1709972062000,118],[1709972063000,119],[1709972064000,118],[1709972065000,118],[1709972066000,118],[1709972067000,119],[1709972068000,118],[1709972069000,119],[1709972070000,118],[1709972071000,119],[1709972072000,118],[1709972073000,118],[1709972074000,118],[1709972075000,148],[1709972076000,119],[1709972077000,118],[1709972078000,118],[1709972079000,117],[1709972080000,119],[1709972081000,116],[1709972082000,119],[1709972083000,118],[1709972084000,119],[1709972085000,119],[1709972086000,119],[1709972087000,118],[1709972088000,118],[1709972089000,118],[1709972090000,118],[1709972091000,117],[1709972092000,119],[1709972093000,118],[1709972094000,119],[1709972095000,114],[1709972096000,119],[1709972097000,119],[1709972098000,118],[1709972099000,119],[1709972100000,118],[1709972101000,119],[1709972102000,113],[1709972103000,118],[1709972104000,119],[1709972105000,133],[1709972106000,118],[1709972107000,119],[1709972108000,119],[1709972109000,118],[1709972110000,115],[1709972111000,118],[1709972112000,119],[1709972113000,119],[1709972114000,118],[1709972115000,119],[1709972116000,118],[1709972117000,189],[1709972118000,130],[1709972119000,117],[1709972120000,118],[1709972121000,119],[1709972122000,118],[1709972123000,116],[1709972124000,118],[1709972125000,153],[1709972126000,118],[1709972127000,119],[1709972128000,118],[1709972129000,119],[1709972130000,118],[1709972131000,152],[1709972132000,117],[1709972133000,119],[1709972134000,118],[1709972136000,119],[1709972137000,119],[1709972138000,119],[1709972139000,114],[1709972140000,117],[1709972141000,117],[1709972142000,119],[1709972143000,116],[1709972144000,119],[1709972145000,118],[1709972146000,118],[1709972147000,119],[1709972148000,118],[1709972149000,169],[1709972150000,118],[1709972151000,118],[1709972152000,118],[1709972153000,117],[1709972154000,118],[1709972155000,119],[1709972156000,118],[1709972157000,119],[1709972158000,119],[1709972159000,119],[1709972160000,119],[1709972161000,119],[1709972162000,118],[1709972163000,118],[1709972164000,118],[1709972165000,118],[1709972166000,154],[1709972167000,118],[1709972168000,118],[1709972169000,118],[1709972170000,119],[1709972171000,120],[1709972172000,118],[1709972173000,119],[1709972174000,118],[1709972175000,118],[1709972176000,118],[1709972177000,113],[1709972178000,118],[1709972179000,119],[1709972180000,119],[1709972181000,61]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#68b65c',
name: 'débitos',
data: [
[1709971936000,0],[1709971937000,0],[1709971938000,0],[1709971939000,0],[1709971940000,0],[1709971941000,2],[1709971942000,4],[1709971943000,7],[1709971944000,8],[1709971945000,10],[1709971946000,12],[1709971947000,14],[1709971948000,16],[1709971949000,16],[1709971950000,20],[1709971951000,22],[1709971952000,24],[1709971953000,25],[1709971954000,26],[1709971955000,30],[1709971956000,32],[1709971957000,42],[1709971958000,34],[1709971959000,37],[1709971960000,39],[1709971961000,40],[1709971962000,53],[1709971963000,43],[1709971964000,47],[1709971965000,47],[1709971966000,48],[1709971967000,52],[1709971968000,59],[1709971969000,55],[1709971970000,58],[1709971971000,58],[1709971972000,62],[1709971973000,64],[1709971974000,65],[1709971975000,69],[1709971976000,84],[1709971977000,74],[1709971978000,74],[1709971979000,77],[1709971980000,85],[1709971981000,78],[1709971982000,82],[1709971983000,84],[1709971984000,83],[1709971985000,85],[1709971986000,87],[1709971987000,90],[1709971988000,92],[1709971989000,111],[1709971990000,97],[1709971991000,98],[1709971992000,100],[1709971993000,103],[1709971994000,101],[1709971995000,105],[1709971996000,108],[1709971997000,110],[1709971998000,111],[1709971999000,113],[1709972000000,115],[1709972001000,120],[1709972002000,119],[1709972003000,123],[1709972004000,123],[1709972005000,127],[1709972006000,127],[1709972007000,131],[1709972008000,132],[1709972009000,134],[1709972010000,138],[1709972011000,137],[1709972012000,141],[1709972013000,142],[1709972014000,146],[1709972015000,145],[1709972016000,150],[1709972017000,148],[1709972018000,151],[1709972019000,154],[1709972020000,153],[1709972021000,158],[1709972022000,159],[1709972023000,163],[1709972024000,157],[1709972025000,163],[1709972026000,168],[1709972027000,170],[1709972028000,168],[1709972029000,170],[1709972030000,174],[1709972031000,177],[1709972032000,177],[1709972033000,178],[1709972034000,184],[1709972035000,184],[1709972036000,186],[1709972037000,188],[1709972038000,191],[1709972039000,190],[1709972040000,193],[1709972041000,199],[1709972042000,200],[1709972043000,201],[1709972044000,205],[1709972045000,203],[1709972046000,207],[1709972047000,208],[1709972048000,212],[1709972049000,215],[1709972050000,216],[1709972051000,214],[1709972052000,218],[1709972053000,223],[1709972054000,221],[1709972055000,229],[1709972056000,228],[1709972057000,230],[1709972058000,231],[1709972059000,230],[1709972060000,235],[1709972061000,237],[1709972062000,234],[1709972063000,238],[1709972064000,231],[1709972065000,238],[1709972066000,235],[1709972067000,239],[1709972068000,233],[1709972069000,237],[1709972070000,234],[1709972071000,234],[1709972072000,234],[1709972073000,238],[1709972074000,237],[1709972075000,286],[1709972076000,236],[1709972077000,233],[1709972078000,234],[1709972079000,234],[1709972080000,232],[1709972081000,235],[1709972082000,236],[1709972083000,228],[1709972084000,238],[1709972085000,231],[1709972086000,237],[1709972087000,231],[1709972088000,237],[1709972089000,233],[1709972090000,236],[1709972091000,235],[1709972092000,236],[1709972093000,234],[1709972094000,236],[1709972095000,232],[1709972096000,235],[1709972097000,235],[1709972098000,237],[1709972099000,230],[1709972100000,234],[1709972101000,238],[1709972102000,230],[1709972103000,236],[1709972104000,238],[1709972105000,285],[1709972106000,236],[1709972107000,235],[1709972108000,235],[1709972109000,237],[1709972110000,231],[1709972111000,233],[1709972112000,235],[1709972113000,234],[1709972114000,231],[1709972115000,231],[1709972116000,236],[1709972117000,385],[1709972118000,258],[1709972119000,236],[1709972120000,233],[1709972121000,236],[1709972122000,237],[1709972123000,235],[1709972124000,234],[1709972125000,304],[1709972126000,237],[1709972127000,236],[1709972128000,234],[1709972129000,239],[1709972130000,236],[1709972131000,304],[1709972132000,232],[1709972133000,233],[1709972134000,236],[1709972136000,236],[1709972137000,232],[1709972138000,238],[1709972139000,233],[1709972140000,235],[1709972141000,230],[1709972142000,240],[1709972143000,228],[1709972144000,239],[1709972145000,231],[1709972146000,236],[1709972147000,232],[1709972148000,236],[1709972149000,336],[1709972150000,236],[1709972151000,236],[1709972152000,235],[1709972153000,230],[1709972154000,236],[1709972155000,230],[1709972156000,236],[1709972157000,237],[1709972158000,237],[1709972159000,235],[1709972160000,238],[1709972161000,238],[1709972162000,235],[1709972163000,237],[1709972164000,229],[1709972165000,236],[1709972166000,297],[1709972167000,233],[1709972168000,233],[1709972169000,238],[1709972170000,237],[1709972171000,232],[1709972172000,235],[1709972173000,238],[1709972174000,237],[1709972175000,233],[1709972176000,237],[1709972177000,227],[1709972178000,229],[1709972179000,236],[1709972180000,235],[1709972181000,122]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#f15b4f',
name: 'extratos',
data: [
[1709971936000,0],[1709971937000,0],[1709971938000,0],[1709971939000,0],[1709971940000,1],[1709971941000,2],[1709971942000,2],[1709971943000,2],[1709971944000,1],[1709971945000,1],[1709971946000,2],[1709971947000,1],[1709971948000,2],[1709971949000,2],[1709971950000,2],[1709971951000,3],[1709971952000,2],[1709971953000,2],[1709971954000,2],[1709971955000,2],[1709971956000,3],[1709971957000,4],[1709971958000,3],[1709971959000,3],[1709971960000,4],[1709971961000,2],[1709971962000,4],[1709971963000,3],[1709971964000,4],[1709971965000,4],[1709971966000,3],[1709971967000,3],[1709971968000,3],[1709971969000,4],[1709971970000,3],[1709971971000,5],[1709971972000,3],[1709971973000,4],[1709971974000,4],[1709971975000,3],[1709971976000,6],[1709971977000,4],[1709971978000,4],[1709971979000,4],[1709971980000,6],[1709971981000,4],[1709971982000,4],[1709971983000,4],[1709971984000,5],[1709971985000,4],[1709971986000,6],[1709971987000,5],[1709971988000,5],[1709971989000,6],[1709971990000,4],[1709971991000,5],[1709971992000,5],[1709971993000,5],[1709971994000,6],[1709971995000,5],[1709971996000,6],[1709971997000,6],[1709971998000,6],[1709971999000,5],[1709972000000,6],[1709972001000,5],[1709972002000,6],[1709972003000,5],[1709972004000,6],[1709972005000,7],[1709972006000,6],[1709972007000,7],[1709972008000,7],[1709972009000,6],[1709972010000,7],[1709972011000,8],[1709972012000,7],[1709972013000,7],[1709972014000,8],[1709972015000,7],[1709972016000,8],[1709972017000,8],[1709972018000,8],[1709972019000,7],[1709972020000,7],[1709972021000,8],[1709972022000,7],[1709972023000,7],[1709972024000,7],[1709972025000,7],[1709972026000,9],[1709972027000,8],[1709972028000,8],[1709972029000,9],[1709972030000,8],[1709972031000,8],[1709972032000,9],[1709972033000,8],[1709972034000,9],[1709972035000,9],[1709972036000,9],[1709972037000,8],[1709972038000,10],[1709972039000,8],[1709972040000,9],[1709972041000,9],[1709972042000,10],[1709972043000,9],[1709972044000,10],[1709972045000,10],[1709972046000,9],[1709972047000,10],[1709972048000,10],[1709972049000,10],[1709972050000,10],[1709972051000,10],[1709972052000,9],[1709972053000,10],[1709972054000,10],[1709972055000,10],[1709972056000,11],[1709972057000,11],[1709972058000,11],[1709972059000,11],[1709972060000,11],[1709972061000,11],[1709972062000,11],[1709972063000,11],[1709972064000,11],[1709972065000,11],[1709972066000,11],[1709972067000,11],[1709972068000,11],[1709972069000,11],[1709972070000,11],[1709972071000,11],[1709972072000,10],[1709972073000,11],[1709972074000,10],[1709972075000,13],[1709972076000,11],[1709972077000,10],[1709972078000,11],[1709972079000,11],[1709972080000,10],[1709972081000,10],[1709972082000,11],[1709972083000,11],[1709972084000,10],[1709972085000,10],[1709972086000,11],[1709972087000,10],[1709972088000,11],[1709972089000,11],[1709972090000,11],[1709972091000,11],[1709972092000,11],[1709972093000,10],[1709972094000,11],[1709972095000,11],[1709972096000,11],[1709972097000,11],[1709972098000,11],[1709972099000,10],[1709972100000,11],[1709972101000,11],[1709972102000,11],[1709972103000,10],[1709972104000,11],[1709972105000,13],[1709972106000,11],[1709972107000,11],[1709972108000,11],[1709972109000,10],[1709972110000,11],[1709972111000,10],[1709972112000,11],[1709972113000,11],[1709972114000,10],[1709972115000,10],[1709972116000,10],[1709972117000,17],[1709972118000,13],[1709972119000,11],[1709972120000,11],[1709972121000,11],[1709972122000,11],[1709972123000,10],[1709972124000,11],[1709972125000,12],[1709972126000,10],[1709972127000,10],[1709972128000,11],[1709972129000,11],[1709972130000,11],[1709972131000,14],[1709972132000,10],[1709972133000,11],[1709972134000,10],[1709972136000,11],[1709972137000,11],[1709972138000,11],[1709972139000,11],[1709972140000,11],[1709972141000,10],[1709972142000,11],[1709972143000,11],[1709972144000,11],[1709972145000,10],[1709972146000,11],[1709972147000,11],[1709972148000,11],[1709972149000,16],[1709972150000,11],[1709972151000,11],[1709972152000,10],[1709972153000,11],[1709972154000,11],[1709972155000,11],[1709972156000,11],[1709972157000,10],[1709972158000,11],[1709972159000,11],[1709972160000,11],[1709972161000,11],[1709972162000,10],[1709972163000,11],[1709972164000,10],[1709972165000,11],[1709972166000,13],[1709972167000,11],[1709972168000,10],[1709972169000,11],[1709972170000,10],[1709972171000,10],[1709972172000,11],[1709972173000,10],[1709972174000,11],[1709972175000,11],[1709972176000,10],[1709972177000,10],[1709972178000,10],[1709972179000,11],[1709972180000,11],[1709972181000,5]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FFDD00',
name: 'validações',
data: [
[1709971936000,0],[1709971937000,0],[1709971938000,0],[1709971939000,5],[1709971940000,5],[1709971941000,0],[1709971942000,0],[1709971943000,0],[1709971944000,0],[1709971945000,0],[1709971946000,0],[1709971947000,0],[1709971948000,0],[1709971949000,0],[1709971950000,0],[1709971951000,0],[1709971952000,0],[1709971953000,0],[1709971954000,0],[1709971955000,0],[1709971956000,0],[1709971957000,0],[1709971958000,0],[1709971959000,0],[1709971960000,0],[1709971961000,0],[1709971962000,0],[1709971963000,0],[1709971964000,0],[1709971965000,0],[1709971966000,0],[1709971967000,0],[1709971968000,0],[1709971969000,0],[1709971970000,0],[1709971971000,0],[1709971972000,0],[1709971973000,0],[1709971974000,0],[1709971975000,0],[1709971976000,0],[1709971977000,0],[1709971978000,0],[1709971979000,0],[1709971980000,0],[1709971981000,0],[1709971982000,0],[1709971983000,0],[1709971984000,0],[1709971985000,0],[1709971986000,0],[1709971987000,0],[1709971988000,0],[1709971989000,0],[1709971990000,0],[1709971991000,0],[1709971992000,0],[1709971993000,0],[1709971994000,0],[1709971995000,0],[1709971996000,0],[1709971997000,0],[1709971998000,0],[1709971999000,0],[1709972000000,0],[1709972001000,0],[1709972002000,0],[1709972003000,0],[1709972004000,0],[1709972005000,0],[1709972006000,0],[1709972007000,0],[1709972008000,0],[1709972009000,0],[1709972010000,0],[1709972011000,0],[1709972012000,0],[1709972013000,0],[1709972014000,0],[1709972015000,0],[1709972016000,0],[1709972017000,0],[1709972018000,0],[1709972019000,0],[1709972020000,0],[1709972021000,0],[1709972022000,0],[1709972023000,0],[1709972024000,0],[1709972025000,0],[1709972026000,0],[1709972027000,0],[1709972028000,0],[1709972029000,0],[1709972030000,0],[1709972031000,0],[1709972032000,0],[1709972033000,0],[1709972034000,0],[1709972035000,0],[1709972036000,0],[1709972037000,0],[1709972038000,0],[1709972039000,0],[1709972040000,0],[1709972041000,0],[1709972042000,0],[1709972043000,0],[1709972044000,0],[1709972045000,0],[1709972046000,0],[1709972047000,0],[1709972048000,0],[1709972049000,0],[1709972050000,0],[1709972051000,0],[1709972052000,0],[1709972053000,0],[1709972054000,0],[1709972055000,0],[1709972056000,0],[1709972057000,0],[1709972058000,0],[1709972059000,0],[1709972060000,0],[1709972061000,0],[1709972062000,0],[1709972063000,0],[1709972064000,0],[1709972065000,0],[1709972066000,0],[1709972067000,0],[1709972068000,0],[1709972069000,0],[1709972070000,0],[1709972071000,0],[1709972072000,0],[1709972073000,0],[1709972074000,0],[1709972075000,0],[1709972076000,0],[1709972077000,0],[1709972078000,0],[1709972079000,0],[1709972080000,0],[1709972081000,0],[1709972082000,0],[1709972083000,0],[1709972084000,0],[1709972085000,0],[1709972086000,0],[1709972087000,0],[1709972088000,0],[1709972089000,0],[1709972090000,0],[1709972091000,0],[1709972092000,0],[1709972093000,0],[1709972094000,0],[1709972095000,0],[1709972096000,0],[1709972097000,0],[1709972098000,0],[1709972099000,0],[1709972100000,0],[1709972101000,0],[1709972102000,0],[1709972103000,0],[1709972104000,0],[1709972105000,0],[1709972106000,0],[1709972107000,0],[1709972108000,0],[1709972109000,0],[1709972110000,0],[1709972111000,0],[1709972112000,0],[1709972113000,0],[1709972114000,0],[1709972115000,0],[1709972116000,0],[1709972117000,0],[1709972118000,0],[1709972119000,0],[1709972120000,0],[1709972121000,0],[1709972122000,0],[1709972123000,0],[1709972124000,0],[1709972125000,0],[1709972126000,0],[1709972127000,0],[1709972128000,0],[1709972129000,0],[1709972130000,0],[1709972131000,0],[1709972132000,0],[1709972133000,0],[1709972134000,0],[1709972136000,0],[1709972137000,0],[1709972138000,0],[1709972139000,0],[1709972140000,0],[1709972141000,0],[1709972142000,0],[1709972143000,0],[1709972144000,0],[1709972145000,0],[1709972146000,0],[1709972147000,0],[1709972148000,0],[1709972149000,0],[1709972150000,0],[1709972151000,0],[1709972152000,0],[1709972153000,0],[1709972154000,0],[1709972155000,0],[1709972156000,0],[1709972157000,0],[1709972158000,0],[1709972159000,0],[1709972160000,0],[1709972161000,0],[1709972162000,0],[1709972163000,0],[1709972164000,0],[1709972165000,0],[1709972166000,0],[1709972167000,0],[1709972168000,0],[1709972169000,0],[1709972170000,0],[1709972171000,0],[1709972172000,0],[1709972173000,0],[1709972174000,0],[1709972175000,0],[1709972176000,0],[1709972177000,0],[1709972178000,0],[1709972179000,0],[1709972180000,0],[1709972181000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00D5FF',
name: 'validação HTTP 404',
data: [
[1709971936000,0],[1709971937000,0],[1709971938000,0],[1709971939000,1],[1709971940000,0],[1709971941000,0],[1709971942000,0],[1709971943000,0],[1709971944000,0],[1709971945000,0],[1709971946000,0],[1709971947000,0],[1709971948000,0],[1709971949000,0],[1709971950000,0],[1709971951000,0],[1709971952000,0],[1709971953000,0],[1709971954000,0],[1709971955000,0],[1709971956000,0],[1709971957000,0],[1709971958000,0],[1709971959000,0],[1709971960000,0],[1709971961000,0],[1709971962000,0],[1709971963000,0],[1709971964000,0],[1709971965000,0],[1709971966000,0],[1709971967000,0],[1709971968000,0],[1709971969000,0],[1709971970000,0],[1709971971000,0],[1709971972000,0],[1709971973000,0],[1709971974000,0],[1709971975000,0],[1709971976000,0],[1709971977000,0],[1709971978000,0],[1709971979000,0],[1709971980000,0],[1709971981000,0],[1709971982000,0],[1709971983000,0],[1709971984000,0],[1709971985000,0],[1709971986000,0],[1709971987000,0],[1709971988000,0],[1709971989000,0],[1709971990000,0],[1709971991000,0],[1709971992000,0],[1709971993000,0],[1709971994000,0],[1709971995000,0],[1709971996000,0],[1709971997000,0],[1709971998000,0],[1709971999000,0],[1709972000000,0],[1709972001000,0],[1709972002000,0],[1709972003000,0],[1709972004000,0],[1709972005000,0],[1709972006000,0],[1709972007000,0],[1709972008000,0],[1709972009000,0],[1709972010000,0],[1709972011000,0],[1709972012000,0],[1709972013000,0],[1709972014000,0],[1709972015000,0],[1709972016000,0],[1709972017000,0],[1709972018000,0],[1709972019000,0],[1709972020000,0],[1709972021000,0],[1709972022000,0],[1709972023000,0],[1709972024000,0],[1709972025000,0],[1709972026000,0],[1709972027000,0],[1709972028000,0],[1709972029000,0],[1709972030000,0],[1709972031000,0],[1709972032000,0],[1709972033000,0],[1709972034000,0],[1709972035000,0],[1709972036000,0],[1709972037000,0],[1709972038000,0],[1709972039000,0],[1709972040000,0],[1709972041000,0],[1709972042000,0],[1709972043000,0],[1709972044000,0],[1709972045000,0],[1709972046000,0],[1709972047000,0],[1709972048000,0],[1709972049000,0],[1709972050000,0],[1709972051000,0],[1709972052000,0],[1709972053000,0],[1709972054000,0],[1709972055000,0],[1709972056000,0],[1709972057000,0],[1709972058000,0],[1709972059000,0],[1709972060000,0],[1709972061000,0],[1709972062000,0],[1709972063000,0],[1709972064000,0],[1709972065000,0],[1709972066000,0],[1709972067000,0],[1709972068000,0],[1709972069000,0],[1709972070000,0],[1709972071000,0],[1709972072000,0],[1709972073000,0],[1709972074000,0],[1709972075000,0],[1709972076000,0],[1709972077000,0],[1709972078000,0],[1709972079000,0],[1709972080000,0],[1709972081000,0],[1709972082000,0],[1709972083000,0],[1709972084000,0],[1709972085000,0],[1709972086000,0],[1709972087000,0],[1709972088000,0],[1709972089000,0],[1709972090000,0],[1709972091000,0],[1709972092000,0],[1709972093000,0],[1709972094000,0],[1709972095000,0],[1709972096000,0],[1709972097000,0],[1709972098000,0],[1709972099000,0],[1709972100000,0],[1709972101000,0],[1709972102000,0],[1709972103000,0],[1709972104000,0],[1709972105000,0],[1709972106000,0],[1709972107000,0],[1709972108000,0],[1709972109000,0],[1709972110000,0],[1709972111000,0],[1709972112000,0],[1709972113000,0],[1709972114000,0],[1709972115000,0],[1709972116000,0],[1709972117000,0],[1709972118000,0],[1709972119000,0],[1709972120000,0],[1709972121000,0],[1709972122000,0],[1709972123000,0],[1709972124000,0],[1709972125000,0],[1709972126000,0],[1709972127000,0],[1709972128000,0],[1709972129000,0],[1709972130000,0],[1709972131000,0],[1709972132000,0],[1709972133000,0],[1709972134000,0],[1709972136000,0],[1709972137000,0],[1709972138000,0],[1709972139000,0],[1709972140000,0],[1709972141000,0],[1709972142000,0],[1709972143000,0],[1709972144000,0],[1709972145000,0],[1709972146000,0],[1709972147000,0],[1709972148000,0],[1709972149000,0],[1709972150000,0],[1709972151000,0],[1709972152000,0],[1709972153000,0],[1709972154000,0],[1709972155000,0],[1709972156000,0],[1709972157000,0],[1709972158000,0],[1709972159000,0],[1709972160000,0],[1709972161000,0],[1709972162000,0],[1709972163000,0],[1709972164000,0],[1709972165000,0],[1709972166000,0],[1709972167000,0],[1709972168000,0],[1709972169000,0],[1709972170000,0],[1709972171000,0],[1709972172000,0],[1709972173000,0],[1709972174000,0],[1709972175000,0],[1709972176000,0],[1709972177000,0],[1709972178000,0],[1709972179000,0],[1709972180000,0],[1709972181000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00FF00',
name: 'validação concorrência saldo - 0',
data: [
[1709971936000,0],[1709971937000,0],[1709971938000,1],[1709971939000,1],[1709971940000,0],[1709971941000,0],[1709971942000,0],[1709971943000,0],[1709971944000,0],[1709971945000,0],[1709971946000,0],[1709971947000,0],[1709971948000,0],[1709971949000,0],[1709971950000,0],[1709971951000,0],[1709971952000,0],[1709971953000,0],[1709971954000,0],[1709971955000,0],[1709971956000,0],[1709971957000,0],[1709971958000,0],[1709971959000,0],[1709971960000,0],[1709971961000,0],[1709971962000,0],[1709971963000,0],[1709971964000,0],[1709971965000,0],[1709971966000,0],[1709971967000,0],[1709971968000,0],[1709971969000,0],[1709971970000,0],[1709971971000,0],[1709971972000,0],[1709971973000,0],[1709971974000,0],[1709971975000,0],[1709971976000,0],[1709971977000,0],[1709971978000,0],[1709971979000,0],[1709971980000,0],[1709971981000,0],[1709971982000,0],[1709971983000,0],[1709971984000,0],[1709971985000,0],[1709971986000,0],[1709971987000,0],[1709971988000,0],[1709971989000,0],[1709971990000,0],[1709971991000,0],[1709971992000,0],[1709971993000,0],[1709971994000,0],[1709971995000,0],[1709971996000,0],[1709971997000,0],[1709971998000,0],[1709971999000,0],[1709972000000,0],[1709972001000,0],[1709972002000,0],[1709972003000,0],[1709972004000,0],[1709972005000,0],[1709972006000,0],[1709972007000,0],[1709972008000,0],[1709972009000,0],[1709972010000,0],[1709972011000,0],[1709972012000,0],[1709972013000,0],[1709972014000,0],[1709972015000,0],[1709972016000,0],[1709972017000,0],[1709972018000,0],[1709972019000,0],[1709972020000,0],[1709972021000,0],[1709972022000,0],[1709972023000,0],[1709972024000,0],[1709972025000,0],[1709972026000,0],[1709972027000,0],[1709972028000,0],[1709972029000,0],[1709972030000,0],[1709972031000,0],[1709972032000,0],[1709972033000,0],[1709972034000,0],[1709972035000,0],[1709972036000,0],[1709972037000,0],[1709972038000,0],[1709972039000,0],[1709972040000,0],[1709972041000,0],[1709972042000,0],[1709972043000,0],[1709972044000,0],[1709972045000,0],[1709972046000,0],[1709972047000,0],[1709972048000,0],[1709972049000,0],[1709972050000,0],[1709972051000,0],[1709972052000,0],[1709972053000,0],[1709972054000,0],[1709972055000,0],[1709972056000,0],[1709972057000,0],[1709972058000,0],[1709972059000,0],[1709972060000,0],[1709972061000,0],[1709972062000,0],[1709972063000,0],[1709972064000,0],[1709972065000,0],[1709972066000,0],[1709972067000,0],[1709972068000,0],[1709972069000,0],[1709972070000,0],[1709972071000,0],[1709972072000,0],[1709972073000,0],[1709972074000,0],[1709972075000,0],[1709972076000,0],[1709972077000,0],[1709972078000,0],[1709972079000,0],[1709972080000,0],[1709972081000,0],[1709972082000,0],[1709972083000,0],[1709972084000,0],[1709972085000,0],[1709972086000,0],[1709972087000,0],[1709972088000,0],[1709972089000,0],[1709972090000,0],[1709972091000,0],[1709972092000,0],[1709972093000,0],[1709972094000,0],[1709972095000,0],[1709972096000,0],[1709972097000,0],[1709972098000,0],[1709972099000,0],[1709972100000,0],[1709972101000,0],[1709972102000,0],[1709972103000,0],[1709972104000,0],[1709972105000,0],[1709972106000,0],[1709972107000,0],[1709972108000,0],[1709972109000,0],[1709972110000,0],[1709972111000,0],[1709972112000,0],[1709972113000,0],[1709972114000,0],[1709972115000,0],[1709972116000,0],[1709972117000,0],[1709972118000,0],[1709972119000,0],[1709972120000,0],[1709972121000,0],[1709972122000,0],[1709972123000,0],[1709972124000,0],[1709972125000,0],[1709972126000,0],[1709972127000,0],[1709972128000,0],[1709972129000,0],[1709972130000,0],[1709972131000,0],[1709972132000,0],[1709972133000,0],[1709972134000,0],[1709972136000,0],[1709972137000,0],[1709972138000,0],[1709972139000,0],[1709972140000,0],[1709972141000,0],[1709972142000,0],[1709972143000,0],[1709972144000,0],[1709972145000,0],[1709972146000,0],[1709972147000,0],[1709972148000,0],[1709972149000,0],[1709972150000,0],[1709972151000,0],[1709972152000,0],[1709972153000,0],[1709972154000,0],[1709972155000,0],[1709972156000,0],[1709972157000,0],[1709972158000,0],[1709972159000,0],[1709972160000,0],[1709972161000,0],[1709972162000,0],[1709972163000,0],[1709972164000,0],[1709972165000,0],[1709972166000,0],[1709972167000,0],[1709972168000,0],[1709972169000,0],[1709972170000,0],[1709972171000,0],[1709972172000,0],[1709972173000,0],[1709972174000,0],[1709972175000,0],[1709972176000,0],[1709972177000,0],[1709972178000,0],[1709972179000,0],[1709972180000,0],[1709972181000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#9D00FF',
name: 'validação concorrência transações - c',
data: [
[1709971936000,0],[1709971937000,25],[1709971938000,25],[1709971939000,0],[1709971940000,0],[1709971941000,0],[1709971942000,0],[1709971943000,0],[1709971944000,0],[1709971945000,0],[1709971946000,0],[1709971947000,0],[1709971948000,0],[1709971949000,0],[1709971950000,0],[1709971951000,0],[1709971952000,0],[1709971953000,0],[1709971954000,0],[1709971955000,0],[1709971956000,0],[1709971957000,0],[1709971958000,0],[1709971959000,0],[1709971960000,0],[1709971961000,0],[1709971962000,0],[1709971963000,0],[1709971964000,0],[1709971965000,0],[1709971966000,0],[1709971967000,0],[1709971968000,0],[1709971969000,0],[1709971970000,0],[1709971971000,0],[1709971972000,0],[1709971973000,0],[1709971974000,0],[1709971975000,0],[1709971976000,0],[1709971977000,0],[1709971978000,0],[1709971979000,0],[1709971980000,0],[1709971981000,0],[1709971982000,0],[1709971983000,0],[1709971984000,0],[1709971985000,0],[1709971986000,0],[1709971987000,0],[1709971988000,0],[1709971989000,0],[1709971990000,0],[1709971991000,0],[1709971992000,0],[1709971993000,0],[1709971994000,0],[1709971995000,0],[1709971996000,0],[1709971997000,0],[1709971998000,0],[1709971999000,0],[1709972000000,0],[1709972001000,0],[1709972002000,0],[1709972003000,0],[1709972004000,0],[1709972005000,0],[1709972006000,0],[1709972007000,0],[1709972008000,0],[1709972009000,0],[1709972010000,0],[1709972011000,0],[1709972012000,0],[1709972013000,0],[1709972014000,0],[1709972015000,0],[1709972016000,0],[1709972017000,0],[1709972018000,0],[1709972019000,0],[1709972020000,0],[1709972021000,0],[1709972022000,0],[1709972023000,0],[1709972024000,0],[1709972025000,0],[1709972026000,0],[1709972027000,0],[1709972028000,0],[1709972029000,0],[1709972030000,0],[1709972031000,0],[1709972032000,0],[1709972033000,0],[1709972034000,0],[1709972035000,0],[1709972036000,0],[1709972037000,0],[1709972038000,0],[1709972039000,0],[1709972040000,0],[1709972041000,0],[1709972042000,0],[1709972043000,0],[1709972044000,0],[1709972045000,0],[1709972046000,0],[1709972047000,0],[1709972048000,0],[1709972049000,0],[1709972050000,0],[1709972051000,0],[1709972052000,0],[1709972053000,0],[1709972054000,0],[1709972055000,0],[1709972056000,0],[1709972057000,0],[1709972058000,0],[1709972059000,0],[1709972060000,0],[1709972061000,0],[1709972062000,0],[1709972063000,0],[1709972064000,0],[1709972065000,0],[1709972066000,0],[1709972067000,0],[1709972068000,0],[1709972069000,0],[1709972070000,0],[1709972071000,0],[1709972072000,0],[1709972073000,0],[1709972074000,0],[1709972075000,0],[1709972076000,0],[1709972077000,0],[1709972078000,0],[1709972079000,0],[1709972080000,0],[1709972081000,0],[1709972082000,0],[1709972083000,0],[1709972084000,0],[1709972085000,0],[1709972086000,0],[1709972087000,0],[1709972088000,0],[1709972089000,0],[1709972090000,0],[1709972091000,0],[1709972092000,0],[1709972093000,0],[1709972094000,0],[1709972095000,0],[1709972096000,0],[1709972097000,0],[1709972098000,0],[1709972099000,0],[1709972100000,0],[1709972101000,0],[1709972102000,0],[1709972103000,0],[1709972104000,0],[1709972105000,0],[1709972106000,0],[1709972107000,0],[1709972108000,0],[1709972109000,0],[1709972110000,0],[1709972111000,0],[1709972112000,0],[1709972113000,0],[1709972114000,0],[1709972115000,0],[1709972116000,0],[1709972117000,0],[1709972118000,0],[1709972119000,0],[1709972120000,0],[1709972121000,0],[1709972122000,0],[1709972123000,0],[1709972124000,0],[1709972125000,0],[1709972126000,0],[1709972127000,0],[1709972128000,0],[1709972129000,0],[1709972130000,0],[1709972131000,0],[1709972132000,0],[1709972133000,0],[1709972134000,0],[1709972136000,0],[1709972137000,0],[1709972138000,0],[1709972139000,0],[1709972140000,0],[1709972141000,0],[1709972142000,0],[1709972143000,0],[1709972144000,0],[1709972145000,0],[1709972146000,0],[1709972147000,0],[1709972148000,0],[1709972149000,0],[1709972150000,0],[1709972151000,0],[1709972152000,0],[1709972153000,0],[1709972154000,0],[1709972155000,0],[1709972156000,0],[1709972157000,0],[1709972158000,0],[1709972159000,0],[1709972160000,0],[1709972161000,0],[1709972162000,0],[1709972163000,0],[1709972164000,0],[1709972165000,0],[1709972166000,0],[1709972167000,0],[1709972168000,0],[1709972169000,0],[1709972170000,0],[1709972171000,0],[1709972172000,0],[1709972173000,0],[1709972174000,0],[1709972175000,0],[1709972176000,0],[1709972177000,0],[1709972178000,0],[1709972179000,0],[1709972180000,0],[1709972181000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FF00E1',
name: 'validação concorrência saldo - -25',
data: [
[1709971936000,1],[1709971937000,1],[1709971938000,0],[1709971939000,0],[1709971940000,0],[1709971941000,0],[1709971942000,0],[1709971943000,0],[1709971944000,0],[1709971945000,0],[1709971946000,0],[1709971947000,0],[1709971948000,0],[1709971949000,0],[1709971950000,0],[1709971951000,0],[1709971952000,0],[1709971953000,0],[1709971954000,0],[1709971955000,0],[1709971956000,0],[1709971957000,0],[1709971958000,0],[1709971959000,0],[1709971960000,0],[1709971961000,0],[1709971962000,0],[1709971963000,0],[1709971964000,0],[1709971965000,0],[1709971966000,0],[1709971967000,0],[1709971968000,0],[1709971969000,0],[1709971970000,0],[1709971971000,0],[1709971972000,0],[1709971973000,0],[1709971974000,0],[1709971975000,0],[1709971976000,0],[1709971977000,0],[1709971978000,0],[1709971979000,0],[1709971980000,0],[1709971981000,0],[1709971982000,0],[1709971983000,0],[1709971984000,0],[1709971985000,0],[1709971986000,0],[1709971987000,0],[1709971988000,0],[1709971989000,0],[1709971990000,0],[1709971991000,0],[1709971992000,0],[1709971993000,0],[1709971994000,0],[1709971995000,0],[1709971996000,0],[1709971997000,0],[1709971998000,0],[1709971999000,0],[1709972000000,0],[1709972001000,0],[1709972002000,0],[1709972003000,0],[1709972004000,0],[1709972005000,0],[1709972006000,0],[1709972007000,0],[1709972008000,0],[1709972009000,0],[1709972010000,0],[1709972011000,0],[1709972012000,0],[1709972013000,0],[1709972014000,0],[1709972015000,0],[1709972016000,0],[1709972017000,0],[1709972018000,0],[1709972019000,0],[1709972020000,0],[1709972021000,0],[1709972022000,0],[1709972023000,0],[1709972024000,0],[1709972025000,0],[1709972026000,0],[1709972027000,0],[1709972028000,0],[1709972029000,0],[1709972030000,0],[1709972031000,0],[1709972032000,0],[1709972033000,0],[1709972034000,0],[1709972035000,0],[1709972036000,0],[1709972037000,0],[1709972038000,0],[1709972039000,0],[1709972040000,0],[1709972041000,0],[1709972042000,0],[1709972043000,0],[1709972044000,0],[1709972045000,0],[1709972046000,0],[1709972047000,0],[1709972048000,0],[1709972049000,0],[1709972050000,0],[1709972051000,0],[1709972052000,0],[1709972053000,0],[1709972054000,0],[1709972055000,0],[1709972056000,0],[1709972057000,0],[1709972058000,0],[1709972059000,0],[1709972060000,0],[1709972061000,0],[1709972062000,0],[1709972063000,0],[1709972064000,0],[1709972065000,0],[1709972066000,0],[1709972067000,0],[1709972068000,0],[1709972069000,0],[1709972070000,0],[1709972071000,0],[1709972072000,0],[1709972073000,0],[1709972074000,0],[1709972075000,0],[1709972076000,0],[1709972077000,0],[1709972078000,0],[1709972079000,0],[1709972080000,0],[1709972081000,0],[1709972082000,0],[1709972083000,0],[1709972084000,0],[1709972085000,0],[1709972086000,0],[1709972087000,0],[1709972088000,0],[1709972089000,0],[1709972090000,0],[1709972091000,0],[1709972092000,0],[1709972093000,0],[1709972094000,0],[1709972095000,0],[1709972096000,0],[1709972097000,0],[1709972098000,0],[1709972099000,0],[1709972100000,0],[1709972101000,0],[1709972102000,0],[1709972103000,0],[1709972104000,0],[1709972105000,0],[1709972106000,0],[1709972107000,0],[1709972108000,0],[1709972109000,0],[1709972110000,0],[1709972111000,0],[1709972112000,0],[1709972113000,0],[1709972114000,0],[1709972115000,0],[1709972116000,0],[1709972117000,0],[1709972118000,0],[1709972119000,0],[1709972120000,0],[1709972121000,0],[1709972122000,0],[1709972123000,0],[1709972124000,0],[1709972125000,0],[1709972126000,0],[1709972127000,0],[1709972128000,0],[1709972129000,0],[1709972130000,0],[1709972131000,0],[1709972132000,0],[1709972133000,0],[1709972134000,0],[1709972136000,0],[1709972137000,0],[1709972138000,0],[1709972139000,0],[1709972140000,0],[1709972141000,0],[1709972142000,0],[1709972143000,0],[1709972144000,0],[1709972145000,0],[1709972146000,0],[1709972147000,0],[1709972148000,0],[1709972149000,0],[1709972150000,0],[1709972151000,0],[1709972152000,0],[1709972153000,0],[1709972154000,0],[1709972155000,0],[1709972156000,0],[1709972157000,0],[1709972158000,0],[1709972159000,0],[1709972160000,0],[1709972161000,0],[1709972162000,0],[1709972163000,0],[1709972164000,0],[1709972165000,0],[1709972166000,0],[1709972167000,0],[1709972168000,0],[1709972169000,0],[1709972170000,0],[1709972171000,0],[1709972172000,0],[1709972173000,0],[1709972174000,0],[1709972175000,0],[1709972176000,0],[1709972177000,0],[1709972178000,0],[1709972179000,0],[1709972180000,0],[1709972181000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#AECAEB',
name: 'validação concorrência transações - d',
data: [
[1709971936000,25],[1709971937000,0],[1709971938000,0],[1709971939000,0],[1709971940000,0],[1709971941000,0],[1709971942000,0],[1709971943000,0],[1709971944000,0],[1709971945000,0],[1709971946000,0],[1709971947000,0],[1709971948000,0],[1709971949000,0],[1709971950000,0],[1709971951000,0],[1709971952000,0],[1709971953000,0],[1709971954000,0],[1709971955000,0],[1709971956000,0],[1709971957000,0],[1709971958000,0],[1709971959000,0],[1709971960000,0],[1709971961000,0],[1709971962000,0],[1709971963000,0],[1709971964000,0],[1709971965000,0],[1709971966000,0],[1709971967000,0],[1709971968000,0],[1709971969000,0],[1709971970000,0],[1709971971000,0],[1709971972000,0],[1709971973000,0],[1709971974000,0],[1709971975000,0],[1709971976000,0],[1709971977000,0],[1709971978000,0],[1709971979000,0],[1709971980000,0],[1709971981000,0],[1709971982000,0],[1709971983000,0],[1709971984000,0],[1709971985000,0],[1709971986000,0],[1709971987000,0],[1709971988000,0],[1709971989000,0],[1709971990000,0],[1709971991000,0],[1709971992000,0],[1709971993000,0],[1709971994000,0],[1709971995000,0],[1709971996000,0],[1709971997000,0],[1709971998000,0],[1709971999000,0],[1709972000000,0],[1709972001000,0],[1709972002000,0],[1709972003000,0],[1709972004000,0],[1709972005000,0],[1709972006000,0],[1709972007000,0],[1709972008000,0],[1709972009000,0],[1709972010000,0],[1709972011000,0],[1709972012000,0],[1709972013000,0],[1709972014000,0],[1709972015000,0],[1709972016000,0],[1709972017000,0],[1709972018000,0],[1709972019000,0],[1709972020000,0],[1709972021000,0],[1709972022000,0],[1709972023000,0],[1709972024000,0],[1709972025000,0],[1709972026000,0],[1709972027000,0],[1709972028000,0],[1709972029000,0],[1709972030000,0],[1709972031000,0],[1709972032000,0],[1709972033000,0],[1709972034000,0],[1709972035000,0],[1709972036000,0],[1709972037000,0],[1709972038000,0],[1709972039000,0],[1709972040000,0],[1709972041000,0],[1709972042000,0],[1709972043000,0],[1709972044000,0],[1709972045000,0],[1709972046000,0],[1709972047000,0],[1709972048000,0],[1709972049000,0],[1709972050000,0],[1709972051000,0],[1709972052000,0],[1709972053000,0],[1709972054000,0],[1709972055000,0],[1709972056000,0],[1709972057000,0],[1709972058000,0],[1709972059000,0],[1709972060000,0],[1709972061000,0],[1709972062000,0],[1709972063000,0],[1709972064000,0],[1709972065000,0],[1709972066000,0],[1709972067000,0],[1709972068000,0],[1709972069000,0],[1709972070000,0],[1709972071000,0],[1709972072000,0],[1709972073000,0],[1709972074000,0],[1709972075000,0],[1709972076000,0],[1709972077000,0],[1709972078000,0],[1709972079000,0],[1709972080000,0],[1709972081000,0],[1709972082000,0],[1709972083000,0],[1709972084000,0],[1709972085000,0],[1709972086000,0],[1709972087000,0],[1709972088000,0],[1709972089000,0],[1709972090000,0],[1709972091000,0],[1709972092000,0],[1709972093000,0],[1709972094000,0],[1709972095000,0],[1709972096000,0],[1709972097000,0],[1709972098000,0],[1709972099000,0],[1709972100000,0],[1709972101000,0],[1709972102000,0],[1709972103000,0],[1709972104000,0],[1709972105000,0],[1709972106000,0],[1709972107000,0],[1709972108000,0],[1709972109000,0],[1709972110000,0],[1709972111000,0],[1709972112000,0],[1709972113000,0],[1709972114000,0],[1709972115000,0],[1709972116000,0],[1709972117000,0],[1709972118000,0],[1709972119000,0],[1709972120000,0],[1709972121000,0],[1709972122000,0],[1709972123000,0],[1709972124000,0],[1709972125000,0],[1709972126000,0],[1709972127000,0],[1709972128000,0],[1709972129000,0],[1709972130000,0],[1709972131000,0],[1709972132000,0],[1709972133000,0],[1709972134000,0],[1709972136000,0],[1709972137000,0],[1709972138000,0],[1709972139000,0],[1709972140000,0],[1709972141000,0],[1709972142000,0],[1709972143000,0],[1709972144000,0],[1709972145000,0],[1709972146000,0],[1709972147000,0],[1709972148000,0],[1709972149000,0],[1709972150000,0],[1709972151000,0],[1709972152000,0],[1709972153000,0],[1709972154000,0],[1709972155000,0],[1709972156000,0],[1709972157000,0],[1709972158000,0],[1709972159000,0],[1709972160000,0],[1709972161000,0],[1709972162000,0],[1709972163000,0],[1709972164000,0],[1709972165000,0],[1709972166000,0],[1709972167000,0],[1709972168000,0],[1709972169000,0],[1709972170000,0],[1709972171000,0],[1709972172000,0],[1709972173000,0],[1709972174000,0],[1709972175000,0],[1709972176000,0],[1709972177000,0],[1709972178000,0],[1709972179000,0],[1709972180000,0],[1709972181000,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: ['6', '17', '28', '39', '50', '61', '72', '83', '94', '105', '116', '127', '138', '149', '160', '171', '182', '194', '205', '216', '227', '238', '249', '260', '271', '282', '293', '304', '315', '326', '337', '348', '359', '371', '382', '393', '404', '415', '426', '437', '448', '459', '470', '481', '492', '503', '514', '525', '536', '547', '559', '570', '581', '592', '603', '614', '625', '636', '647', '658', '669', '680', '691', '702', '713', '724', '735', '747', '758', '769', '780', '791', '802', '813', '824', '835', '846', '857', '868', '879', '890', '901', '912', '924', '935', '946', '957', '968', '979', '990', '1001', '1012', '1023', '1034', '1045', '1056', '1067', '1078', '1089', '1100'],
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: [
27.09,13.5,10.03,10.41,10.54,10.81,9.74,4.29,0.31,0.08,0.06,0.05,0.04,0.05,0.03,0.04,0.05,0.04,0.04,0.03,0.05,0.05,0.05,0.04,0.04,0.05,0.04,0.04,0.04,0.05,0.04,0.03,0.05,0.04,0.04,0.04,0.04,0.05,0.04,0.05,0.04,0.04,0.03,0.04,0.04,0.04,0.04,0.03,0.05,0.03,0.04,0.04,0.04,0.04,0.04,0.04,0.06,0.02,0.03,0.04,0.03,0.04,0.03,0.04,0.03,0.03,0.04,0.03,0.03,0.03,0.03,0.02,0.02,0.02,0.01,0.02,0.01,0.02,0.02,0.01,0.02,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.0,0.01,0.0,0.01,0.01,0.01,0.0,0.01,0.0,0.01,0.0,0.0
],
tooltip: { yDecimals: 0, ySuffix: 'ms' }
},
{
type: 'column',
color: '#f15b4f',
name: 'KO',
data: [
0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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([[1709971936,[87,100,105,110,112,116,118,119,171,188]],[1709971937,null],[1709971938,[8,15,20,30,30,31,31,32,34,35]],[1709971939,null],[1709971940,[0,3,11,69,74,78,82,85,94,103]],[1709971941,[3,3,3,3,3,3,3,3,3,4]],[1709971942,[2,12,13,14,15,27,39,51,60,63]],[1709971943,[3,14,15,48,54,60,64,64,64,64]],[1709971944,[2,9,16,55,64,64,65,68,70,71]],[1709971945,[2,3,14,42,50,57,63,67,70,71]],[1709971946,[3,14,24,45,49,51,54,62,62,63]],[1709971947,[2,3,21,51,56,63,70,75,76,77]],[1709971948,[2,10,16,48,50,55,63,67,74,76]],[1709971949,[2,4,16,47,53,65,66,68,76,79]],[1709971950,[2,12,16,48,52,57,63,66,75,78]],[1709971951,[2,15,18,42,63,64,67,70,75,77]],[1709971952,[1,14,17,51,63,64,64,64,67,68]],[1709971953,[1,8,27,50,55,63,66,70,77,80]],[1709971954,[1,10,32,54,57,66,73,76,79,81]],[1709971955,[2,8,29,56,57,58,73,75,78,80]],[1709971956,[1,39,407,756,795,839,882,955,1021,1037]],[1709971957,[2,38,140,334,373,411,476,526,575,601]],[1709971958,[1,3,29,55,64,67,76,91,159,174]],[1709971959,[1,2,19,46,50,56,61,69,75,77]],[1709971960,[1,3,19,48,52,56,61,70,74,74]],[1709971961,[1,4,24,52,62,66,68,106,764,777]],[1709971962,[1,17,64,202,281,386,487,597,681,697]],[1709971963,[1,5,20,49,62,65,66,67,71,72]],[1709971964,[1,3,27,51,57,63,68,72,77,79]],[1709971965,[1,4,26,53,56,61,68,72,81,81]],[1709971966,[1,2,20,49,53,60,67,75,76,76]],[1709971967,[1,6,35,55,57,60,75,76,77,80]],[1709971968,[1,14,45,81,180,286,366,482,565,581]],[1709971969,[0,8,30,55,58,64,69,75,78,82]],[1709971970,[1,2,22,48,49,55,63,69,75,82]],[1709971971,[1,7,29,53,58,65,70,73,80,81]],[1709971972,[1,3,26,51,55,60,65,75,79,80]],[1709971973,[1,3,18,50,52,54,66,68,82,82]],[1709971974,[1,5,26,51,53,62,66,67,82,85]],[1709971975,[1,3,23,48,54,57,64,69,79,80]],[1709971976,[1,17,54,179,282,374,483,575,656,667]],[1709971977,[1,7,30,54,60,65,69,75,84,85]],[1709971978,[1,4,29,53,57,62,67,72,76,79]],[1709971979,[1,6,31,54,60,63,68,74,78,85]],[1709971980,[1,6,40,76,175,278,365,472,550,574]],[1709971981,[1,3,27,51,54,60,68,72,80,81]],[1709971982,[1,4,25,51,57,61,65,72,74,76]],[1709971983,[1,4,27,52,55,63,66,72,78,79]],[1709971984,[1,5,28,54,58,66,68,73,79,80]],[1709971985,[1,5,30,54,61,66,67,76,78,87]],[1709971986,[1,7,28,56,59,64,67,72,76,77]],[1709971987,[1,5,28,52,57,63,68,72,76,80]],[1709971988,[1,7,29,55,58,63,67,74,79,81]],[1709971989,[1,16,55,376,478,579,679,775,846,874]],[1709971990,[1,5,27,52,59,63,68,74,78,84]],[1709971991,[1,7,29,55,60,64,71,74,80,83]],[1709971992,[1,3,24,50,57,61,65,74,79,80]],[1709971993,[1,3,22,47,53,57,64,72,79,80]],[1709971994,[1,6,31,55,58,64,71,75,78,80]],[1709971995,[1,3,25,53,57,59,66,75,80,82]],[1709971996,[1,6,25,52,56,61,66,74,77,80]],[1709971997,[1,6,30,55,60,65,69,76,80,84]],[1709971998,[0,5,26,50,57,62,67,72,81,81]],[1709971999,[0,5,29,53,57,62,68,72,78,79]],[1709972000,[0,4,27,52,56,62,66,72,77,78]],[1709972001,[0,7,30,56,62,64,69,76,80,89]],[1709972002,[1,5,28,53,58,63,67,74,81,85]],[1709972003,[1,8,29,56,61,65,69,75,78,85]],[1709972004,[1,5,29,54,58,62,68,75,80,83]],[1709972005,[1,6,29,53,58,63,67,74,83,85]],[1709972006,[1,6,29,54,60,64,69,73,79,82]],[1709972007,[0,8,31,57,60,65,70,76,83,86]],[1709972008,[1,8,33,58,62,67,70,75,84,93]],[1709972009,[1,7,30,55,58,65,69,75,82,84]],[1709972010,[0,6,30,53,59,65,69,75,80,84]],[1709972011,[0,7,31,55,61,65,71,75,81,82]],[1709972012,[1,6,30,54,60,65,71,77,80,84]],[1709972013,[0,7,30,54,58,65,69,75,80,85]],[1709972014,[1,8,37,67,73,80,407,514,582,606]],[1709972015,[0,11,38,65,72,78,125,221,298,317]],[1709972016,[0,5,30,54,59,63,68,75,80,86]],[1709972017,[1,7,33,57,61,64,70,75,78,81]],[1709972018,[1,8,33,59,63,67,73,76,82,85]],[1709972019,[0,8,32,56,60,65,69,75,80,82]],[1709972020,[0,7,30,56,60,64,70,74,81,86]],[1709972021,[0,4,29,55,60,65,70,75,80,84]],[1709972022,[0,6,31,56,59,65,70,76,82,84]],[1709972023,[0,4,29,54,57,63,69,73,79,83]],[1709972024,[0,5,30,54,61,64,70,75,79,82]],[1709972025,[1,6,31,55,59,64,69,76,85,88]],[1709972026,[0,6,30,54,61,66,71,76,82,88]],[1709972027,[0,6,30,56,59,65,70,76,81,84]],[1709972028,[1,6,30,56,59,64,69,73,82,84]],[1709972029,[0,5,29,54,59,64,69,73,80,81]],[1709972030,[0,7,32,55,61,65,69,75,78,84]],[1709972031,[0,6,31,55,61,65,69,74,82,83]],[1709972032,[0,9,32,56,62,67,71,76,80,86]],[1709972033,[0,7,31,55,60,66,69,74,83,87]],[1709972034,[1,8,32,58,62,67,71,75,80,82]],[1709972035,[0,7,30,56,60,66,70,74,81,84]],[1709972036,[0,6,30,55,60,64,70,75,81,82]],[1709972037,[0,6,31,57,61,66,70,75,80,86]],[1709972038,[1,4,27,54,59,64,69,76,83,88]],[1709972039,[1,7,31,55,60,65,69,75,81,86]],[1709972040,[1,7,30,56,61,66,71,76,83,86]],[1709972041,[1,9,32,58,62,67,72,77,82,84]],[1709972042,[0,6,30,57,61,65,70,75,82,85]],[1709972043,[0,7,32,56,60,65,70,73,81,87]],[1709972044,[0,8,32,57,63,67,72,76,82,89]],[1709972045,[1,7,32,57,62,66,72,76,81,83]],[1709972046,[0,8,32,57,61,66,70,76,81,85]],[1709972047,[0,7,32,57,61,66,71,76,80,86]],[1709972048,[1,8,34,58,61,67,71,78,82,90]],[1709972049,[0,11,33,58,64,69,73,77,83,86]],[1709972050,[0,8,33,57,62,67,71,77,82,83]],[1709972051,[1,9,30,55,61,66,71,76,81,86]],[1709972052,[1,7,29,54,60,66,72,75,81,83]],[1709972053,[1,13,36,62,67,72,78,82,87,91]],[1709972054,[1,10,33,56,62,66,71,76,84,89]],[1709972055,[2,12,35,60,65,69,75,80,89,93]],[1709972056,[1,11,33,59,63,68,73,78,84,92]],[1709972057,[3,14,35,61,66,72,76,83,90,95]],[1709972058,[1,9,31,56,61,66,70,77,81,83]],[1709972059,[2,12,34,59,64,70,75,80,87,91]],[1709972060,[0,10,31,57,61,67,72,77,83,94]],[1709972061,[3,14,34,60,65,70,76,82,88,92]],[1709972062,[0,10,31,57,62,66,72,77,80,85]],[1709972063,[2,12,35,60,65,70,75,80,85,89]],[1709972064,[1,10,32,57,62,66,72,78,83,88]],[1709972065,[1,11,34,58,63,67,73,79,85,90]],[1709972066,[0,10,33,59,64,70,74,78,84,91]],[1709972067,[1,12,33,59,63,68,74,81,86,95]],[1709972068,[1,10,31,57,62,66,72,77,83,86]],[1709972069,[1,13,37,63,67,72,77,83,91,98]],[1709972070,[1,11,32,58,63,68,72,78,86,93]],[1709972071,[1,11,33,58,63,68,74,81,86,90]],[1709972072,[1,9,31,55,59,66,71,76,82,87]],[1709972073,[1,12,33,59,63,69,75,78,84,88]],[1709972074,[1,9,32,58,65,70,74,83,1074,1088]],[1709972075,[1,35,85,522,621,725,833,916,992,1021]],[1709972076,[1,10,33,57,63,68,73,80,91,95]],[1709972077,[0,7,28,56,61,65,73,78,84,88]],[1709972078,[1,11,33,58,64,68,75,80,86,97]],[1709972079,[1,9,30,56,62,66,71,78,82,89]],[1709972080,[1,11,33,58,63,69,73,80,84,89]],[1709972081,[1,10,32,57,61,67,73,78,83,85]],[1709972082,[1,12,34,58,64,68,74,80,86,92]],[1709972083,[0,8,31,56,62,65,71,76,84,88]],[1709972084,[1,12,35,60,66,70,75,82,89,103]],[1709972085,[1,7,30,55,58,65,69,75,84,89]],[1709972086,[1,13,35,60,65,71,76,81,89,102]],[1709972087,[1,5,27,53,57,63,71,75,81,90]],[1709972088,[1,10,30,58,64,69,73,80,88,94]],[1709972089,[1,8,30,55,61,65,70,76,82,84]],[1709972090,[1,12,33,60,64,69,75,80,85,92]],[1709972091,[1,10,33,57,62,67,73,77,80,84]],[1709972092,[1,10,31,58,62,67,72,81,89,99]],[1709972093,[1,8,32,55,63,66,72,76,81,88]],[1709972094,[1,12,33,58,64,67,74,80,86,89]],[1709972095,[0,10,31,58,61,67,72,78,81,84]],[1709972096,[0,10,32,58,63,67,74,78,84,88]],[1709972097,[0,10,33,58,63,68,73,78,85,89]],[1709972098,[1,11,32,58,63,67,72,78,85,86]],[1709972099,[1,8,31,56,61,66,71,77,83,85]],[1709972100,[0,10,32,57,61,67,72,77,84,90]],[1709972101,[1,11,34,58,64,68,74,79,82,84]],[1709972102,[1,11,32,58,63,68,73,78,84,90]],[1709972103,[1,7,27,56,60,66,71,77,85,89]],[1709972104,[1,8,30,56,61,66,71,76,83,87]],[1709972105,[0,27,80,606,703,808,900,999,1075,1088]],[1709972106,[0,11,34,59,65,70,75,84,106,123]],[1709972107,[1,8,30,55,59,65,70,75,82,86]],[1709972108,[0,10,32,56,63,67,71,77,85,90]],[1709972109,[1,7,30,54,59,65,70,76,81,84]],[1709972110,[1,10,32,57,62,67,73,79,85,88]],[1709972111,[1,8,31,55,60,66,71,76,83,88]],[1709972112,[0,8,30,55,60,66,70,77,84,88]],[1709972113,[0,5,27,54,57,65,70,75,84,87]],[1709972114,[0,7,30,56,60,65,70,75,84,91]],[1709972115,[1,10,31,56,62,66,72,77,84,86]],[1709972116,[1,16,49,85,671,798,899,1003,1075,1101]],[1709972117,[0,55,173,416,457,512,562,612,696,716]],[1709972118,[0,20,62,397,485,588,680,753,863,892]],[1709972119,[0,12,33,58,63,68,73,79,94,110]],[1709972120,[0,9,30,56,60,66,71,76,83,89]],[1709972121,[1,11,33,58,64,68,72,79,85,92]],[1709972122,[1,9,33,57,63,68,73,78,85,92]],[1709972123,[1,14,36,60,64,69,76,82,90,99]],[1709972124,[1,12,37,65,71,75,83,757,839,862]],[1709972125,[1,18,53,196,274,398,504,601,684,703]],[1709972126,[1,10,32,57,62,67,73,81,89,102]],[1709972127,[1,9,31,57,61,66,72,79,85,95]],[1709972128,[1,10,31,56,61,67,72,78,85,90]],[1709972129,[1,10,30,56,60,66,71,80,85,91]],[1709972130,[1,10,36,63,70,75,82,674,774,805]],[1709972131,[1,17,51,124,218,316,417,514,593,610]],[1709972132,[1,16,53,190,290,383,479,578,656,678]],[1709972133,[1,13,35,60,65,71,76,84,102,119]],[1709972134,[1,9,31,57,62,66,71,76,84,93]],[1709972135,[1,12,34,59,66,71,75,80,86,94]],[1709972136,[0,10,33,58,63,67,73,78,86,94]],[1709972137,[0,13,34,60,65,70,77,81,89,94]],[1709972138,[0,7,30,55,59,65,70,75,81,85]],[1709972139,[1,6,25,53,60,65,71,77,85,89]],[1709972140,[1,6,28,54,58,63,68,74,81,86]],[1709972141,[1,13,36,62,65,72,75,83,91,99]],[1709972142,[0,3,22,50,56,61,67,74,83,88]],[1709972143,[0,12,33,59,64,69,74,80,86,92]],[1709972144,[1,9,31,56,62,66,70,76,80,86]],[1709972145,[1,9,30,56,59,65,71,76,82,85]],[1709972146,[1,8,30,55,61,66,70,75,81,84]],[1709972147,[1,13,44,77,767,872,932,1015,1090,1106]],[1709972148,[1,19,54,215,302,399,488,584,668,702]],[1709972149,[1,9,29,55,60,64,70,75,80,85]],[1709972150,[0,9,32,57,62,67,72,78,83,88]],[1709972151,[1,12,34,60,64,69,74,81,88,93]],[1709972152,[0,8,31,55,62,66,70,76,82,84]],[1709972153,[0,11,33,57,64,67,73,79,84,89]],[1709972154,[1,11,31,57,62,65,71,77,83,87]],[1709972155,[0,9,32,56,61,66,71,77,85,89]],[1709972156,[1,8,30,56,61,66,71,75,81,84]],[1709972157,[1,10,31,55,61,66,72,78,83,85]],[1709972158,[1,18,50,298,396,499,594,691,768,788]],[1709972159,[0,14,39,67,73,78,89,132,204,224]],[1709972160,[1,10,30,56,60,66,71,77,83,92]],[1709972161,[1,8,31,57,62,66,71,76,81,98]],[1709972162,[1,12,32,59,64,68,74,80,87,96]],[1709972163,[1,6,28,53,57,63,68,73,80,84]],[1709972164,[1,11,36,64,70,75,82,768,852,875]],[1709972165,[1,18,52,209,312,411,508,601,682,704]],[1709972166,[0,15,48,314,400,495,594,694,775,791]],[1709972167,[0,9,34,62,68,76,85,186,274,295]],[1709972168,[0,8,30,56,61,65,72,78,86,94]],[1709972169,[0,7,31,56,59,65,70,76,82,87]],[1709972170,[1,9,31,57,62,67,73,78,84,96]],[1709972171,[1,8,31,55,59,66,71,76,81,87]],[1709972172,[0,9,31,58,62,67,73,79,86,91]],[1709972173,[0,10,31,56,61,68,71,76,81,87]],[1709972174,[0,9,31,56,61,66,72,77,86,89]],[1709972175,[0,7,29,55,59,64,68,73,82,88]],[1709972176,[0,9,31,55,61,65,71,75,81,86]],[1709972177,[0,9,32,56,62,66,72,77,82,89]],[1709972178,[1,10,33,57,63,68,74,80,85,93]],[1709972179,[1,10,32,57,63,68,72,78,86,88]],[1709972180,[1,13,35,59,65,70,76,81,88,104]],[1709972181,[1,9,34,57,61,67,71,77,82,86]]]);
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([[1709971936,[25,25,0]],[1709971937,[1,0,1]],[1709971938,[25,25,0]],[1709971939,[1,0,1]],[1709971940,[71,70,1]],[1709971941,[3,3,0]],[1709971942,[6,6,0]],[1709971943,[9,9,0]],[1709971944,[11,11,0]],[1709971945,[13,13,0]],[1709971946,[18,18,0]],[1709971947,[19,19,0]],[1709971948,[24,24,0]],[1709971949,[26,26,0]],[1709971950,[27,27,0]],[1709971951,[32,32,0]],[1709971952,[34,34,0]],[1709971953,[37,37,0]],[1709971954,[39,39,0]],[1709971955,[43,43,0]],[1709971956,[44,44,0]],[1709971957,[48,48,0]],[1709971958,[50,50,0]],[1709971959,[55,55,0]],[1709971960,[56,56,0]],[1709971961,[60,60,0]],[1709971962,[61,61,0]],[1709971963,[65,65,0]],[1709971964,[67,67,0]],[1709971965,[70,70,0]],[1709971966,[74,74,0]],[1709971967,[76,76,0]],[1709971968,[80,80,0]],[1709971969,[81,81,0]],[1709971970,[84,84,0]],[1709971971,[87,87,0]],[1709971972,[91,91,0]],[1709971973,[92,92,0]],[1709971974,[96,96,0]],[1709971975,[99,99,0]],[1709971976,[101,101,0]],[1709971977,[105,105,0]],[1709971978,[107,107,0]],[1709971979,[109,109,0]],[1709971980,[114,114,0]],[1709971981,[115,115,0]],[1709971982,[118,118,0]],[1709971983,[121,121,0]],[1709971984,[124,124,0]],[1709971985,[126,126,0]],[1709971986,[129,129,0]],[1709971987,[133,133,0]],[1709971988,[134,134,0]],[1709971989,[138,138,0]],[1709971990,[141,141,0]],[1709971991,[143,143,0]],[1709971992,[147,147,0]],[1709971993,[149,149,0]],[1709971994,[151,151,0]],[1709971995,[155,155,0]],[1709971996,[157,157,0]],[1709971997,[160,160,0]],[1709971998,[164,164,0]],[1709971999,[165,165,0]],[1709972000,[170,170,0]],[1709972001,[172,172,0]],[1709972002,[174,174,0]],[1709972003,[176,176,0]],[1709972004,[181,181,0]],[1709972005,[183,183,0]],[1709972006,[185,185,0]],[1709972007,[189,189,0]],[1709972008,[191,191,0]],[1709972009,[195,195,0]],[1709972010,[196,196,0]],[1709972011,[199,199,0]],[1709972012,[204,204,0]],[1709972013,[204,204,0]],[1709972014,[208,208,0]],[1709972015,[211,211,0]],[1709972016,[213,213,0]],[1709972017,[217,217,0]],[1709972018,[220,220,0]],[1709972019,[222,222,0]],[1709972020,[224,224,0]],[1709972021,[228,228,0]],[1709972022,[230,230,0]],[1709972023,[234,234,0]],[1709972024,[235,235,0]],[1709972025,[239,239,0]],[1709972026,[243,243,0]],[1709972027,[244,244,0]],[1709972028,[248,248,0]],[1709972029,[250,250,0]],[1709972030,[253,253,0]],[1709972031,[255,255,0]],[1709972032,[259,259,0]],[1709972033,[262,262,0]],[1709972034,[265,265,0]],[1709972035,[266,266,0]],[1709972036,[270,270,0]],[1709972037,[272,272,0]],[1709972038,[275,275,0]],[1709972039,[279,279,0]],[1709972040,[281,281,0]],[1709972041,[284,284,0]],[1709972042,[286,286,0]],[1709972043,[290,290,0]],[1709972044,[293,293,0]],[1709972045,[295,295,0]],[1709972046,[298,298,0]],[1709972047,[301,301,0]],[1709972048,[303,303,0]],[1709972049,[306,306,0]],[1709972050,[309,309,0]],[1709972051,[313,313,0]],[1709972052,[314,314,0]],[1709972053,[318,318,0]],[1709972054,[320,320,0]],[1709972055,[323,323,0]],[1709972056,[326,326,0]],[1709972057,[330,330,0]],[1709972058,[331,331,0]],[1709972059,[334,334,0]],[1709972060,[338,338,0]],[1709972061,[340,340,0]],[1709972062,[340,340,0]],[1709972063,[340,340,0]],[1709972064,[340,340,0]],[1709972065,[340,340,0]],[1709972066,[340,340,0]],[1709972067,[340,340,0]],[1709972068,[340,340,0]],[1709972069,[340,340,0]],[1709972070,[340,340,0]],[1709972071,[340,340,0]],[1709972072,[340,340,0]],[1709972073,[340,340,0]],[1709972074,[340,340,0]],[1709972075,[340,340,0]],[1709972076,[340,340,0]],[1709972077,[340,340,0]],[1709972078,[340,340,0]],[1709972079,[340,340,0]],[1709972080,[340,340,0]],[1709972081,[340,340,0]],[1709972082,[340,340,0]],[1709972083,[340,340,0]],[1709972084,[340,340,0]],[1709972085,[340,340,0]],[1709972086,[340,340,0]],[1709972087,[340,340,0]],[1709972088,[340,340,0]],[1709972089,[340,340,0]],[1709972090,[340,340,0]],[1709972091,[340,340,0]],[1709972092,[340,340,0]],[1709972093,[340,340,0]],[1709972094,[340,340,0]],[1709972095,[340,340,0]],[1709972096,[340,340,0]],[1709972097,[340,340,0]],[1709972098,[340,340,0]],[1709972099,[340,340,0]],[1709972100,[340,340,0]],[1709972101,[340,340,0]],[1709972102,[340,340,0]],[1709972103,[340,340,0]],[1709972104,[340,340,0]],[1709972105,[340,340,0]],[1709972106,[340,340,0]],[1709972107,[340,340,0]],[1709972108,[340,340,0]],[1709972109,[340,340,0]],[1709972110,[340,340,0]],[1709972111,[340,340,0]],[1709972112,[340,340,0]],[1709972113,[340,340,0]],[1709972114,[340,340,0]],[1709972115,[340,340,0]],[1709972116,[340,340,0]],[1709972117,[340,340,0]],[1709972118,[340,340,0]],[1709972119,[340,340,0]],[1709972120,[340,340,0]],[1709972121,[340,340,0]],[1709972122,[340,340,0]],[1709972123,[340,340,0]],[1709972124,[340,340,0]],[1709972125,[340,340,0]],[1709972126,[340,340,0]],[1709972127,[340,340,0]],[1709972128,[340,340,0]],[1709972129,[340,340,0]],[1709972130,[340,340,0]],[1709972131,[340,340,0]],[1709972132,[340,340,0]],[1709972133,[340,340,0]],[1709972134,[340,340,0]],[1709972135,[340,340,0]],[1709972136,[340,340,0]],[1709972137,[340,340,0]],[1709972138,[340,340,0]],[1709972139,[340,340,0]],[1709972140,[340,340,0]],[1709972141,[340,340,0]],[1709972142,[340,340,0]],[1709972143,[340,340,0]],[1709972144,[340,340,0]],[1709972145,[340,340,0]],[1709972146,[340,340,0]],[1709972147,[340,340,0]],[1709972148,[340,340,0]],[1709972149,[340,340,0]],[1709972150,[340,340,0]],[1709972151,[340,340,0]],[1709972152,[340,340,0]],[1709972153,[340,340,0]],[1709972154,[340,340,0]],[1709972155,[340,340,0]],[1709972156,[340,340,0]],[1709972157,[340,340,0]],[1709972158,[340,340,0]],[1709972159,[340,340,0]],[1709972160,[340,340,0]],[1709972161,[340,340,0]],[1709972162,[340,340,0]],[1709972163,[340,340,0]],[1709972164,[340,340,0]],[1709972165,[340,340,0]],[1709972166,[340,340,0]],[1709972167,[340,340,0]],[1709972168,[340,340,0]],[1709972169,[340,340,0]],[1709972170,[340,340,0]],[1709972171,[340,340,0]],[1709972172,[340,340,0]],[1709972173,[340,340,0]],[1709972174,[340,340,0]],[1709972175,[340,340,0]],[1709972176,[340,340,0]],[1709972177,[340,340,0]],[1709972178,[340,340,0]],[1709972179,[340,340,0]],[1709972180,[340,340,0]],[1709972181,[163,163,0]]]);
var requestsChart = new Highcharts.StockChart({
chart: {
renderTo: 'requests',
zoomType: 'x',
marginBottom: 60
},
credits: { enabled: false },
legend: {
enabled: true,
floating: true,
y: -65,
borderWidth: 0,
itemStyle: { fontWeight: "normal" },
symbolRadius: 0
},
title: { text: 'A title to let highcharts reserve the place for the title set later' },
navigator: {
maskInside: false
},
rangeSelector: {
buttonSpacing: 0,
buttonTheme: {
fill: '#CFC9C6',
padding: 1,
stroke: '#000000',
'stroke-width': 0.25,
style: {
color: '#000000',
fontWeight: 'bold',
},
states: {
stroke: '#000000',
'stroke-width': 0.25,
hover: {
fill: '#92918C',
style: { color: 'black' }
},
select: {
fill: '#FFA900',
style: { color: 'white' }
}
}
},
buttons : [
{
type : 'minute',
count : 1,
text : '1m'
}, {
type : 'minute',
count : 10,
text : '10m'