-
Notifications
You must be signed in to change notification settings - Fork 923
/
Copy pathindex.html
1200 lines (1130 loc) · 95.5 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="shortcut icon" type="image/x-icon" href="style/favicon.ico"/>
<link href="style/style.css" rel="stylesheet" type="text/css" />
<link href="style/bootstrap.min.css" rel="stylesheet" type="text/css" />
<script src="js/jquery-3.5.1.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/gatling.js"></script>
<script src="js/menu.js"></script>
<script src="js/ellipsis.js"></script>
<script src="js/all_sessions.js"></script>
<script src="js/stats.js"></script>
<script src="js/highstock.js"></script>
<script src="js/highcharts-more.js"></script>
<script src="js/theme.js"></script>
<script src="js/unpack.js"></script>
<title>Gatling Stats - Global Information</title>
</head>
<body>
<script>
const storedTheme = localStorage.getItem('theme') || (window.matchMedia("(prefers-color-scheme: dark)").matches ? "dark" : "light");
if (storedTheme) document.documentElement.setAttribute('data-theme', storedTheme)
function toggleTheme() {
const currentTheme = document.documentElement.getAttribute("data-theme");
const targetTheme = currentTheme === "light" ? "dark" : "light";
document.documentElement.setAttribute('data-theme', targetTheme)
localStorage.setItem('theme', targetTheme);
};
</script>
<div class="app-container">
<div class="frise"></div>
<div class="head">
<div class="gatling-open-source">
<a class="gatling-logo gatling-logo-light" href="https://gatling.io" target="blank_" title="Gatling Home Page"><img alt="Gatling" src="style/logo-light.svg"/></a>
<a class="gatling-logo gatling-logo-dark" href="https://gatling.io" target="blank_" title="Gatling Home Page"><img alt="Gatling" src="style/logo-dark.svg"/></a>
<a class="gatling-documentation" href="https://gatling.io/docs/" target="_blank">Documentation</a>
</div>
<div class="nav spacer"></div>
<a class="enterprise" href="https://gatling.io/enterprise/next-step/" target="_blank"><strong>Try</strong>
<img class="logo-enterprise-light" alt="Gatling Enterprise" src="style/logo-enterprise-light.svg"/>
<img class="logo-enterprise-dark" alt="Gatling Enterprise" src="style/logo-enterprise-dark.svg"/>
</a>
<button id="theme-toggle" class="theme-toggle" type="button" onclick="toggleTheme()" aria-label="Toggle user interface mode">
<span class="toggle-dark"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-moon"><path d="M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z"></path></svg></span>
<span class="toggle-light"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-sun"><circle cx="12" cy="12" r="5"></circle><line x1="12" y1="1" x2="12" y2="3"></line><line x1="12" y1="21" x2="12" y2="23"></line><line x1="4.22" y1="4.22" x2="5.64" y2="5.64"></line><line x1="18.36" y1="18.36" x2="19.78" y2="19.78"></line><line x1="1" y1="12" x2="3" y2="12"></line><line x1="21" y1="12" x2="23" y2="12"></line><line x1="4.22" y1="19.78" x2="5.64" y2="18.36"></line><line x1="18.36" y1="5.64" x2="19.78" y2="4.22"></line></svg></span>
</button>
</div>
<div class="container details">
<div class="nav">
<ul></ul>
</div>
<div class="cadre">
<div class="content">
<div class="content-header">
<div class="onglet">
RinhaBackendCrebitosSimulation
</div>
<div class="sous-menu" id="sousMenu">
<div class="sous-menu-spacer">
<div class="item ouvert"><a href="index.html">Global</a></div>
<div class="item "><a id="details_link" href="#">Details</a></div>
</div>
</div>
</div>
<div class="content-in">
<div class="container-article">
<div class="article">
<div class="schema-container">
<div id="ranges" class="schema ranges">
</div>
<div class="schema polar">
<div id="container_number_of_requests"></div>
</div>
<div class="simulation-card">
<div class="simulation-version-information">
<span class="simulation-information-title">Gatling Version</span>
<span class="simulation-information-item">
<span class="simulation-information-label">Version: </span>
<span>3.10.3</span>
</span>
<span class="simulation-information-item">
<span class="simulation-information-label">Released: </span>
<span>2023-12-20</span>
</span>
</div>
<div id="simulation-information" class="simulation-version-information">
<span class="simulation-information-title">Run Information</span>
<div class="simulation-information-container">
<span class="simulation-information-item">
<span class="simulation-information-label">Date: </span>
<span>2024-02-19 08:55:39 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 - jonattas_bunjs">
<span class="simulation-information-label">Description: </span>
<span>Rinha de Backend - 2024/Q1: Crébito - jonattas_bunjs</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 5<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 3<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: [
[1708332940000,0],[1708332941000,0],[1708332942000,0],[1708332943000,0],[1708332944000,1],[1708332945000,2],[1708332946000,2],[1708332947000,4],[1708332948000,4],[1708332949000,5],[1708332950000,6],[1708332951000,7],[1708332952000,8],[1708332953000,8],[1708332954000,10],[1708332955000,10],[1708332956000,12],[1708332957000,12],[1708332958000,14],[1708332959000,14],[1708332960000,15],[1708332961000,16],[1708332962000,17],[1708332963000,17],[1708332964000,19],[1708332965000,20],[1708332966000,20],[1708332967000,22],[1708332968000,22],[1708332969000,23],[1708332970000,25],[1708332971000,25],[1708332972000,26],[1708332973000,26],[1708332974000,28],[1708332975000,29],[1708332976000,30],[1708332977000,30],[1708332978000,32],[1708332979000,32],[1708332980000,33],[1708332981000,34],[1708332982000,35],[1708332983000,36],[1708332984000,37],[1708332985000,38],[1708332986000,39],[1708332987000,39],[1708332988000,41],[1708332989000,41],[1708332990000,43],[1708332991000,43],[1708332992000,44],[1708332993000,45],[1708332994000,46],[1708332995000,47],[1708332996000,48],[1708332997000,48],[1708332998000,50],[1708332999000,50],[1708333000000,52],[1708333001000,52],[1708333002000,53],[1708333003000,55],[1708333004000,57],[1708333005000,56],[1708333006000,58],[1708333007000,59],[1708333008000,60],[1708333009000,60],[1708333010000,62],[1708333011000,62],[1708333012000,64],[1708333013000,64],[1708333014000,65],[1708333015000,66],[1708333016000,67],[1708333017000,68],[1708333018000,69],[1708333019000,69],[1708333020000,71],[1708333021000,71],[1708333022000,74],[1708333023000,72],[1708333024000,74],[1708333025000,74],[1708333026000,76],[1708333027000,77],[1708333028000,78],[1708333029000,78],[1708333030000,81],[1708333031000,80],[1708333032000,83],[1708333033000,83],[1708333034000,84],[1708333035000,84],[1708333036000,87],[1708333037000,87],[1708333038000,87],[1708333039000,88],[1708333040000,90],[1708333041000,90],[1708333042000,91],[1708333043000,93],[1708333044000,91],[1708333045000,93],[1708333046000,96],[1708333047000,94],[1708333048000,95],[1708333049000,99],[1708333050000,99],[1708333051000,100],[1708333052000,102],[1708333053000,101],[1708333054000,104],[1708333055000,105],[1708333056000,105],[1708333057000,107],[1708333058000,109],[1708333059000,108],[1708333060000,111],[1708333061000,113],[1708333062000,110],[1708333063000,110],[1708333064000,114],[1708333065000,116],[1708333066000,115],[1708333067000,112],[1708333068000,115],[1708333069000,113],[1708333070000,113],[1708333071000,115],[1708333072000,113],[1708333073000,113],[1708333074000,116],[1708333075000,112],[1708333076000,115],[1708333077000,115],[1708333078000,114],[1708333079000,113],[1708333080000,115],[1708333081000,115],[1708333082000,112],[1708333083000,114],[1708333084000,115],[1708333085000,113],[1708333086000,113],[1708333087000,112],[1708333088000,112],[1708333089000,114],[1708333090000,113],[1708333091000,114],[1708333092000,113],[1708333093000,114],[1708333094000,116],[1708333095000,114],[1708333096000,112],[1708333097000,114],[1708333098000,115],[1708333099000,113],[1708333100000,113],[1708333101000,111],[1708333102000,116],[1708333103000,115],[1708333104000,116],[1708333105000,115],[1708333106000,115],[1708333107000,112],[1708333108000,113],[1708333109000,115],[1708333110000,114],[1708333111000,115],[1708333112000,113],[1708333113000,113],[1708333114000,113],[1708333115000,114],[1708333116000,112],[1708333117000,115],[1708333118000,114],[1708333119000,113],[1708333120000,111],[1708333121000,113],[1708333122000,115],[1708333123000,113],[1708333124000,112],[1708333125000,115],[1708333126000,112],[1708333127000,115],[1708333128000,113],[1708333129000,112],[1708333130000,113],[1708333131000,114],[1708333132000,112],[1708333133000,115],[1708333134000,114],[1708333135000,114],[1708333136000,113],[1708333137000,111],[1708333138000,113],[1708333140000,114],[1708333141000,112],[1708333142000,112],[1708333143000,112],[1708333144000,113],[1708333145000,111],[1708333146000,112],[1708333147000,114],[1708333148000,114],[1708333149000,114],[1708333150000,114],[1708333151000,113],[1708333152000,114],[1708333153000,114],[1708333154000,114],[1708333155000,117],[1708333156000,113],[1708333157000,112],[1708333158000,111],[1708333159000,114],[1708333160000,114],[1708333161000,115],[1708333162000,114],[1708333163000,114],[1708333164000,113],[1708333165000,112],[1708333166000,115],[1708333167000,114],[1708333168000,114],[1708333169000,114],[1708333170000,112],[1708333171000,113],[1708333172000,113],[1708333173000,113],[1708333174000,116],[1708333175000,113],[1708333176000,115],[1708333177000,114],[1708333178000,112],[1708333179000,114],[1708333180000,113],[1708333181000,113],[1708333182000,113],[1708333183000,113],[1708333184000,111],[1708333185000,56]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#68b65c',
name: 'débitos',
data: [
[1708332940000,0],[1708332941000,0],[1708332942000,0],[1708332943000,0],[1708332944000,1],[1708332945000,2],[1708332946000,4],[1708332947000,6],[1708332948000,7],[1708332949000,9],[1708332950000,11],[1708332951000,13],[1708332952000,15],[1708332953000,16],[1708332954000,19],[1708332955000,20],[1708332956000,22],[1708332957000,24],[1708332958000,25],[1708332959000,28],[1708332960000,29],[1708332961000,31],[1708332962000,33],[1708332963000,35],[1708332964000,37],[1708332965000,38],[1708332966000,40],[1708332967000,42],[1708332968000,44],[1708332969000,46],[1708332970000,47],[1708332971000,50],[1708332972000,52],[1708332973000,54],[1708332974000,56],[1708332975000,57],[1708332976000,60],[1708332977000,61],[1708332978000,63],[1708332979000,65],[1708332980000,67],[1708332981000,69],[1708332982000,70],[1708332983000,72],[1708332984000,75],[1708332985000,74],[1708332986000,77],[1708332987000,79],[1708332988000,80],[1708332989000,82],[1708332990000,84],[1708332991000,86],[1708332992000,88],[1708332993000,89],[1708332994000,92],[1708332995000,93],[1708332996000,95],[1708332997000,97],[1708332998000,98],[1708332999000,101],[1708333000000,102],[1708333001000,105],[1708333002000,107],[1708333003000,108],[1708333004000,111],[1708333005000,112],[1708333006000,114],[1708333007000,116],[1708333008000,118],[1708333009000,120],[1708333010000,121],[1708333011000,124],[1708333012000,125],[1708333013000,127],[1708333014000,130],[1708333015000,131],[1708333016000,133],[1708333017000,134],[1708333018000,137],[1708333019000,138],[1708333020000,141],[1708333021000,142],[1708333022000,144],[1708333023000,147],[1708333024000,148],[1708333025000,148],[1708333026000,152],[1708333027000,154],[1708333028000,154],[1708333029000,155],[1708333030000,158],[1708333031000,161],[1708333032000,166],[1708333033000,166],[1708333034000,170],[1708333035000,168],[1708333036000,173],[1708333037000,174],[1708333038000,176],[1708333039000,177],[1708333040000,179],[1708333041000,180],[1708333042000,181],[1708333043000,185],[1708333044000,184],[1708333045000,185],[1708333046000,188],[1708333047000,191],[1708333048000,193],[1708333049000,200],[1708333050000,196],[1708333051000,202],[1708333052000,203],[1708333053000,203],[1708333054000,207],[1708333055000,210],[1708333056000,211],[1708333057000,214],[1708333058000,219],[1708333059000,214],[1708333060000,220],[1708333061000,227],[1708333062000,222],[1708333063000,222],[1708333064000,227],[1708333065000,227],[1708333066000,229],[1708333067000,225],[1708333068000,230],[1708333069000,228],[1708333070000,226],[1708333071000,229],[1708333072000,225],[1708333073000,222],[1708333074000,232],[1708333075000,225],[1708333076000,229],[1708333077000,231],[1708333078000,228],[1708333079000,225],[1708333080000,230],[1708333081000,229],[1708333082000,226],[1708333083000,228],[1708333084000,229],[1708333085000,226],[1708333086000,225],[1708333087000,222],[1708333088000,223],[1708333089000,229],[1708333090000,225],[1708333091000,228],[1708333092000,225],[1708333093000,229],[1708333094000,234],[1708333095000,226],[1708333096000,229],[1708333097000,227],[1708333098000,228],[1708333099000,227],[1708333100000,227],[1708333101000,224],[1708333102000,226],[1708333103000,227],[1708333104000,230],[1708333105000,228],[1708333106000,228],[1708333107000,225],[1708333108000,225],[1708333109000,231],[1708333110000,228],[1708333111000,228],[1708333112000,227],[1708333113000,222],[1708333114000,226],[1708333115000,225],[1708333116000,226],[1708333117000,229],[1708333118000,226],[1708333119000,225],[1708333120000,221],[1708333121000,227],[1708333122000,229],[1708333123000,223],[1708333124000,223],[1708333125000,227],[1708333126000,225],[1708333127000,230],[1708333128000,225],[1708333129000,225],[1708333130000,227],[1708333131000,227],[1708333132000,223],[1708333133000,228],[1708333134000,224],[1708333135000,225],[1708333136000,225],[1708333137000,223],[1708333138000,225],[1708333140000,225],[1708333141000,226],[1708333142000,224],[1708333143000,222],[1708333144000,225],[1708333145000,224],[1708333146000,226],[1708333147000,229],[1708333148000,224],[1708333149000,228],[1708333150000,226],[1708333151000,225],[1708333152000,226],[1708333153000,227],[1708333154000,229],[1708333155000,235],[1708333156000,227],[1708333157000,223],[1708333158000,224],[1708333159000,227],[1708333160000,225],[1708333161000,228],[1708333162000,227],[1708333163000,229],[1708333164000,227],[1708333165000,225],[1708333166000,229],[1708333167000,226],[1708333168000,228],[1708333169000,226],[1708333170000,224],[1708333171000,225],[1708333172000,226],[1708333173000,227],[1708333174000,228],[1708333175000,227],[1708333176000,230],[1708333177000,228],[1708333178000,226],[1708333179000,227],[1708333180000,227],[1708333181000,229],[1708333182000,225],[1708333183000,225],[1708333184000,223],[1708333185000,112]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#f15b4f',
name: 'extratos',
data: [
[1708332940000,0],[1708332941000,0],[1708332942000,0],[1708332943000,0],[1708332944000,1],[1708332945000,2],[1708332946000,1],[1708332947000,1],[1708332948000,1],[1708332949000,1],[1708332950000,2],[1708332951000,1],[1708332952000,2],[1708332953000,2],[1708332954000,1],[1708332955000,2],[1708332956000,2],[1708332957000,2],[1708332958000,2],[1708332959000,2],[1708332960000,2],[1708332961000,2],[1708332962000,3],[1708332963000,2],[1708332964000,3],[1708332965000,2],[1708332966000,3],[1708332967000,2],[1708332968000,3],[1708332969000,3],[1708332970000,3],[1708332971000,3],[1708332972000,3],[1708332973000,3],[1708332974000,3],[1708332975000,4],[1708332976000,3],[1708332977000,3],[1708332978000,4],[1708332979000,3],[1708332980000,4],[1708332981000,4],[1708332982000,4],[1708332983000,4],[1708332984000,4],[1708332985000,4],[1708332986000,4],[1708332987000,4],[1708332988000,4],[1708332989000,4],[1708332990000,5],[1708332991000,4],[1708332992000,5],[1708332993000,5],[1708332994000,4],[1708332995000,5],[1708332996000,5],[1708332997000,5],[1708332998000,5],[1708332999000,5],[1708333000000,5],[1708333001000,5],[1708333002000,6],[1708333003000,5],[1708333004000,6],[1708333005000,5],[1708333006000,6],[1708333007000,5],[1708333008000,6],[1708333009000,6],[1708333010000,6],[1708333011000,6],[1708333012000,6],[1708333013000,6],[1708333014000,7],[1708333015000,8],[1708333016000,6],[1708333017000,6],[1708333018000,7],[1708333019000,6],[1708333020000,7],[1708333021000,7],[1708333022000,7],[1708333023000,7],[1708333024000,8],[1708333025000,7],[1708333026000,7],[1708333027000,7],[1708333028000,8],[1708333029000,7],[1708333030000,8],[1708333031000,7],[1708333032000,9],[1708333033000,9],[1708333034000,7],[1708333035000,8],[1708333036000,9],[1708333037000,9],[1708333038000,9],[1708333039000,9],[1708333040000,9],[1708333041000,8],[1708333042000,9],[1708333043000,9],[1708333044000,9],[1708333045000,8],[1708333046000,9],[1708333047000,9],[1708333048000,10],[1708333049000,10],[1708333050000,10],[1708333051000,10],[1708333052000,10],[1708333053000,10],[1708333054000,10],[1708333055000,11],[1708333056000,10],[1708333057000,10],[1708333058000,11],[1708333059000,9],[1708333060000,11],[1708333061000,11],[1708333062000,11],[1708333063000,11],[1708333064000,11],[1708333065000,11],[1708333066000,11],[1708333067000,10],[1708333068000,11],[1708333069000,11],[1708333070000,11],[1708333071000,11],[1708333072000,10],[1708333073000,11],[1708333074000,11],[1708333075000,11],[1708333076000,11],[1708333077000,11],[1708333078000,11],[1708333079000,10],[1708333080000,11],[1708333081000,11],[1708333082000,11],[1708333083000,11],[1708333084000,11],[1708333085000,11],[1708333086000,11],[1708333087000,10],[1708333088000,11],[1708333089000,11],[1708333090000,11],[1708333091000,11],[1708333092000,10],[1708333093000,11],[1708333094000,11],[1708333095000,11],[1708333096000,11],[1708333097000,11],[1708333098000,11],[1708333099000,11],[1708333100000,11],[1708333101000,11],[1708333102000,11],[1708333103000,10],[1708333104000,11],[1708333105000,11],[1708333106000,11],[1708333107000,10],[1708333108000,10],[1708333109000,11],[1708333110000,11],[1708333111000,11],[1708333112000,11],[1708333113000,10],[1708333114000,11],[1708333115000,11],[1708333116000,11],[1708333117000,11],[1708333118000,11],[1708333119000,11],[1708333120000,10],[1708333121000,11],[1708333122000,11],[1708333123000,11],[1708333124000,11],[1708333125000,11],[1708333126000,11],[1708333127000,11],[1708333128000,11],[1708333129000,11],[1708333130000,11],[1708333131000,11],[1708333132000,11],[1708333133000,11],[1708333134000,10],[1708333135000,11],[1708333136000,10],[1708333137000,10],[1708333138000,10],[1708333140000,10],[1708333141000,10],[1708333142000,11],[1708333143000,10],[1708333144000,10],[1708333145000,10],[1708333146000,11],[1708333147000,11],[1708333148000,10],[1708333149000,11],[1708333150000,11],[1708333151000,11],[1708333152000,11],[1708333153000,11],[1708333154000,11],[1708333155000,11],[1708333156000,10],[1708333157000,10],[1708333158000,11],[1708333159000,11],[1708333160000,10],[1708333161000,11],[1708333162000,11],[1708333163000,11],[1708333164000,11],[1708333165000,10],[1708333166000,11],[1708333167000,11],[1708333168000,11],[1708333169000,11],[1708333170000,11],[1708333171000,11],[1708333172000,11],[1708333173000,10],[1708333174000,11],[1708333175000,11],[1708333176000,11],[1708333177000,11],[1708333178000,11],[1708333179000,11],[1708333180000,11],[1708333181000,11],[1708333182000,10],[1708333183000,11],[1708333184000,11],[1708333185000,4]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FFDD00',
name: 'validações',
data: [
[1708332940000,0],[1708332941000,0],[1708332942000,0],[1708332943000,5],[1708332944000,5],[1708332945000,0],[1708332946000,0],[1708332947000,0],[1708332948000,0],[1708332949000,0],[1708332950000,0],[1708332951000,0],[1708332952000,0],[1708332953000,0],[1708332954000,0],[1708332955000,0],[1708332956000,0],[1708332957000,0],[1708332958000,0],[1708332959000,0],[1708332960000,0],[1708332961000,0],[1708332962000,0],[1708332963000,0],[1708332964000,0],[1708332965000,0],[1708332966000,0],[1708332967000,0],[1708332968000,0],[1708332969000,0],[1708332970000,0],[1708332971000,0],[1708332972000,0],[1708332973000,0],[1708332974000,0],[1708332975000,0],[1708332976000,0],[1708332977000,0],[1708332978000,0],[1708332979000,0],[1708332980000,0],[1708332981000,0],[1708332982000,0],[1708332983000,0],[1708332984000,0],[1708332985000,0],[1708332986000,0],[1708332987000,0],[1708332988000,0],[1708332989000,0],[1708332990000,0],[1708332991000,0],[1708332992000,0],[1708332993000,0],[1708332994000,0],[1708332995000,0],[1708332996000,0],[1708332997000,0],[1708332998000,0],[1708332999000,0],[1708333000000,0],[1708333001000,0],[1708333002000,0],[1708333003000,0],[1708333004000,0],[1708333005000,0],[1708333006000,0],[1708333007000,0],[1708333008000,0],[1708333009000,0],[1708333010000,0],[1708333011000,0],[1708333012000,0],[1708333013000,0],[1708333014000,0],[1708333015000,0],[1708333016000,0],[1708333017000,0],[1708333018000,0],[1708333019000,0],[1708333020000,0],[1708333021000,0],[1708333022000,0],[1708333023000,0],[1708333024000,0],[1708333025000,0],[1708333026000,0],[1708333027000,0],[1708333028000,0],[1708333029000,0],[1708333030000,0],[1708333031000,0],[1708333032000,0],[1708333033000,0],[1708333034000,0],[1708333035000,0],[1708333036000,0],[1708333037000,0],[1708333038000,0],[1708333039000,0],[1708333040000,0],[1708333041000,0],[1708333042000,0],[1708333043000,0],[1708333044000,0],[1708333045000,0],[1708333046000,0],[1708333047000,0],[1708333048000,0],[1708333049000,0],[1708333050000,0],[1708333051000,0],[1708333052000,0],[1708333053000,0],[1708333054000,0],[1708333055000,0],[1708333056000,0],[1708333057000,0],[1708333058000,0],[1708333059000,0],[1708333060000,0],[1708333061000,0],[1708333062000,0],[1708333063000,0],[1708333064000,0],[1708333065000,0],[1708333066000,0],[1708333067000,0],[1708333068000,0],[1708333069000,0],[1708333070000,0],[1708333071000,0],[1708333072000,0],[1708333073000,0],[1708333074000,0],[1708333075000,0],[1708333076000,0],[1708333077000,0],[1708333078000,0],[1708333079000,0],[1708333080000,0],[1708333081000,0],[1708333082000,0],[1708333083000,0],[1708333084000,0],[1708333085000,0],[1708333086000,0],[1708333087000,0],[1708333088000,0],[1708333089000,0],[1708333090000,0],[1708333091000,0],[1708333092000,0],[1708333093000,0],[1708333094000,0],[1708333095000,0],[1708333096000,0],[1708333097000,0],[1708333098000,0],[1708333099000,0],[1708333100000,0],[1708333101000,0],[1708333102000,0],[1708333103000,0],[1708333104000,0],[1708333105000,0],[1708333106000,0],[1708333107000,0],[1708333108000,0],[1708333109000,0],[1708333110000,0],[1708333111000,0],[1708333112000,0],[1708333113000,0],[1708333114000,0],[1708333115000,0],[1708333116000,0],[1708333117000,0],[1708333118000,0],[1708333119000,0],[1708333120000,0],[1708333121000,0],[1708333122000,0],[1708333123000,0],[1708333124000,0],[1708333125000,0],[1708333126000,0],[1708333127000,0],[1708333128000,0],[1708333129000,0],[1708333130000,0],[1708333131000,0],[1708333132000,0],[1708333133000,0],[1708333134000,0],[1708333135000,0],[1708333136000,0],[1708333137000,0],[1708333138000,0],[1708333140000,0],[1708333141000,0],[1708333142000,0],[1708333143000,0],[1708333144000,0],[1708333145000,0],[1708333146000,0],[1708333147000,0],[1708333148000,0],[1708333149000,0],[1708333150000,0],[1708333151000,0],[1708333152000,0],[1708333153000,0],[1708333154000,0],[1708333155000,0],[1708333156000,0],[1708333157000,0],[1708333158000,0],[1708333159000,0],[1708333160000,0],[1708333161000,0],[1708333162000,0],[1708333163000,0],[1708333164000,0],[1708333165000,0],[1708333166000,0],[1708333167000,0],[1708333168000,0],[1708333169000,0],[1708333170000,0],[1708333171000,0],[1708333172000,0],[1708333173000,0],[1708333174000,0],[1708333175000,0],[1708333176000,0],[1708333177000,0],[1708333178000,0],[1708333179000,0],[1708333180000,0],[1708333181000,0],[1708333182000,0],[1708333183000,0],[1708333184000,0],[1708333185000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00D5FF',
name: 'validação HTTP 404',
data: [
[1708332940000,0],[1708332941000,0],[1708332942000,0],[1708332943000,1],[1708332944000,0],[1708332945000,0],[1708332946000,0],[1708332947000,0],[1708332948000,0],[1708332949000,0],[1708332950000,0],[1708332951000,0],[1708332952000,0],[1708332953000,0],[1708332954000,0],[1708332955000,0],[1708332956000,0],[1708332957000,0],[1708332958000,0],[1708332959000,0],[1708332960000,0],[1708332961000,0],[1708332962000,0],[1708332963000,0],[1708332964000,0],[1708332965000,0],[1708332966000,0],[1708332967000,0],[1708332968000,0],[1708332969000,0],[1708332970000,0],[1708332971000,0],[1708332972000,0],[1708332973000,0],[1708332974000,0],[1708332975000,0],[1708332976000,0],[1708332977000,0],[1708332978000,0],[1708332979000,0],[1708332980000,0],[1708332981000,0],[1708332982000,0],[1708332983000,0],[1708332984000,0],[1708332985000,0],[1708332986000,0],[1708332987000,0],[1708332988000,0],[1708332989000,0],[1708332990000,0],[1708332991000,0],[1708332992000,0],[1708332993000,0],[1708332994000,0],[1708332995000,0],[1708332996000,0],[1708332997000,0],[1708332998000,0],[1708332999000,0],[1708333000000,0],[1708333001000,0],[1708333002000,0],[1708333003000,0],[1708333004000,0],[1708333005000,0],[1708333006000,0],[1708333007000,0],[1708333008000,0],[1708333009000,0],[1708333010000,0],[1708333011000,0],[1708333012000,0],[1708333013000,0],[1708333014000,0],[1708333015000,0],[1708333016000,0],[1708333017000,0],[1708333018000,0],[1708333019000,0],[1708333020000,0],[1708333021000,0],[1708333022000,0],[1708333023000,0],[1708333024000,0],[1708333025000,0],[1708333026000,0],[1708333027000,0],[1708333028000,0],[1708333029000,0],[1708333030000,0],[1708333031000,0],[1708333032000,0],[1708333033000,0],[1708333034000,0],[1708333035000,0],[1708333036000,0],[1708333037000,0],[1708333038000,0],[1708333039000,0],[1708333040000,0],[1708333041000,0],[1708333042000,0],[1708333043000,0],[1708333044000,0],[1708333045000,0],[1708333046000,0],[1708333047000,0],[1708333048000,0],[1708333049000,0],[1708333050000,0],[1708333051000,0],[1708333052000,0],[1708333053000,0],[1708333054000,0],[1708333055000,0],[1708333056000,0],[1708333057000,0],[1708333058000,0],[1708333059000,0],[1708333060000,0],[1708333061000,0],[1708333062000,0],[1708333063000,0],[1708333064000,0],[1708333065000,0],[1708333066000,0],[1708333067000,0],[1708333068000,0],[1708333069000,0],[1708333070000,0],[1708333071000,0],[1708333072000,0],[1708333073000,0],[1708333074000,0],[1708333075000,0],[1708333076000,0],[1708333077000,0],[1708333078000,0],[1708333079000,0],[1708333080000,0],[1708333081000,0],[1708333082000,0],[1708333083000,0],[1708333084000,0],[1708333085000,0],[1708333086000,0],[1708333087000,0],[1708333088000,0],[1708333089000,0],[1708333090000,0],[1708333091000,0],[1708333092000,0],[1708333093000,0],[1708333094000,0],[1708333095000,0],[1708333096000,0],[1708333097000,0],[1708333098000,0],[1708333099000,0],[1708333100000,0],[1708333101000,0],[1708333102000,0],[1708333103000,0],[1708333104000,0],[1708333105000,0],[1708333106000,0],[1708333107000,0],[1708333108000,0],[1708333109000,0],[1708333110000,0],[1708333111000,0],[1708333112000,0],[1708333113000,0],[1708333114000,0],[1708333115000,0],[1708333116000,0],[1708333117000,0],[1708333118000,0],[1708333119000,0],[1708333120000,0],[1708333121000,0],[1708333122000,0],[1708333123000,0],[1708333124000,0],[1708333125000,0],[1708333126000,0],[1708333127000,0],[1708333128000,0],[1708333129000,0],[1708333130000,0],[1708333131000,0],[1708333132000,0],[1708333133000,0],[1708333134000,0],[1708333135000,0],[1708333136000,0],[1708333137000,0],[1708333138000,0],[1708333140000,0],[1708333141000,0],[1708333142000,0],[1708333143000,0],[1708333144000,0],[1708333145000,0],[1708333146000,0],[1708333147000,0],[1708333148000,0],[1708333149000,0],[1708333150000,0],[1708333151000,0],[1708333152000,0],[1708333153000,0],[1708333154000,0],[1708333155000,0],[1708333156000,0],[1708333157000,0],[1708333158000,0],[1708333159000,0],[1708333160000,0],[1708333161000,0],[1708333162000,0],[1708333163000,0],[1708333164000,0],[1708333165000,0],[1708333166000,0],[1708333167000,0],[1708333168000,0],[1708333169000,0],[1708333170000,0],[1708333171000,0],[1708333172000,0],[1708333173000,0],[1708333174000,0],[1708333175000,0],[1708333176000,0],[1708333177000,0],[1708333178000,0],[1708333179000,0],[1708333180000,0],[1708333181000,0],[1708333182000,0],[1708333183000,0],[1708333184000,0],[1708333185000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00FF00',
name: 'validação concorrência saldo - 0',
data: [
[1708332940000,0],[1708332941000,0],[1708332942000,1],[1708332943000,0],[1708332944000,0],[1708332945000,0],[1708332946000,0],[1708332947000,0],[1708332948000,0],[1708332949000,0],[1708332950000,0],[1708332951000,0],[1708332952000,0],[1708332953000,0],[1708332954000,0],[1708332955000,0],[1708332956000,0],[1708332957000,0],[1708332958000,0],[1708332959000,0],[1708332960000,0],[1708332961000,0],[1708332962000,0],[1708332963000,0],[1708332964000,0],[1708332965000,0],[1708332966000,0],[1708332967000,0],[1708332968000,0],[1708332969000,0],[1708332970000,0],[1708332971000,0],[1708332972000,0],[1708332973000,0],[1708332974000,0],[1708332975000,0],[1708332976000,0],[1708332977000,0],[1708332978000,0],[1708332979000,0],[1708332980000,0],[1708332981000,0],[1708332982000,0],[1708332983000,0],[1708332984000,0],[1708332985000,0],[1708332986000,0],[1708332987000,0],[1708332988000,0],[1708332989000,0],[1708332990000,0],[1708332991000,0],[1708332992000,0],[1708332993000,0],[1708332994000,0],[1708332995000,0],[1708332996000,0],[1708332997000,0],[1708332998000,0],[1708332999000,0],[1708333000000,0],[1708333001000,0],[1708333002000,0],[1708333003000,0],[1708333004000,0],[1708333005000,0],[1708333006000,0],[1708333007000,0],[1708333008000,0],[1708333009000,0],[1708333010000,0],[1708333011000,0],[1708333012000,0],[1708333013000,0],[1708333014000,0],[1708333015000,0],[1708333016000,0],[1708333017000,0],[1708333018000,0],[1708333019000,0],[1708333020000,0],[1708333021000,0],[1708333022000,0],[1708333023000,0],[1708333024000,0],[1708333025000,0],[1708333026000,0],[1708333027000,0],[1708333028000,0],[1708333029000,0],[1708333030000,0],[1708333031000,0],[1708333032000,0],[1708333033000,0],[1708333034000,0],[1708333035000,0],[1708333036000,0],[1708333037000,0],[1708333038000,0],[1708333039000,0],[1708333040000,0],[1708333041000,0],[1708333042000,0],[1708333043000,0],[1708333044000,0],[1708333045000,0],[1708333046000,0],[1708333047000,0],[1708333048000,0],[1708333049000,0],[1708333050000,0],[1708333051000,0],[1708333052000,0],[1708333053000,0],[1708333054000,0],[1708333055000,0],[1708333056000,0],[1708333057000,0],[1708333058000,0],[1708333059000,0],[1708333060000,0],[1708333061000,0],[1708333062000,0],[1708333063000,0],[1708333064000,0],[1708333065000,0],[1708333066000,0],[1708333067000,0],[1708333068000,0],[1708333069000,0],[1708333070000,0],[1708333071000,0],[1708333072000,0],[1708333073000,0],[1708333074000,0],[1708333075000,0],[1708333076000,0],[1708333077000,0],[1708333078000,0],[1708333079000,0],[1708333080000,0],[1708333081000,0],[1708333082000,0],[1708333083000,0],[1708333084000,0],[1708333085000,0],[1708333086000,0],[1708333087000,0],[1708333088000,0],[1708333089000,0],[1708333090000,0],[1708333091000,0],[1708333092000,0],[1708333093000,0],[1708333094000,0],[1708333095000,0],[1708333096000,0],[1708333097000,0],[1708333098000,0],[1708333099000,0],[1708333100000,0],[1708333101000,0],[1708333102000,0],[1708333103000,0],[1708333104000,0],[1708333105000,0],[1708333106000,0],[1708333107000,0],[1708333108000,0],[1708333109000,0],[1708333110000,0],[1708333111000,0],[1708333112000,0],[1708333113000,0],[1708333114000,0],[1708333115000,0],[1708333116000,0],[1708333117000,0],[1708333118000,0],[1708333119000,0],[1708333120000,0],[1708333121000,0],[1708333122000,0],[1708333123000,0],[1708333124000,0],[1708333125000,0],[1708333126000,0],[1708333127000,0],[1708333128000,0],[1708333129000,0],[1708333130000,0],[1708333131000,0],[1708333132000,0],[1708333133000,0],[1708333134000,0],[1708333135000,0],[1708333136000,0],[1708333137000,0],[1708333138000,0],[1708333140000,0],[1708333141000,0],[1708333142000,0],[1708333143000,0],[1708333144000,0],[1708333145000,0],[1708333146000,0],[1708333147000,0],[1708333148000,0],[1708333149000,0],[1708333150000,0],[1708333151000,0],[1708333152000,0],[1708333153000,0],[1708333154000,0],[1708333155000,0],[1708333156000,0],[1708333157000,0],[1708333158000,0],[1708333159000,0],[1708333160000,0],[1708333161000,0],[1708333162000,0],[1708333163000,0],[1708333164000,0],[1708333165000,0],[1708333166000,0],[1708333167000,0],[1708333168000,0],[1708333169000,0],[1708333170000,0],[1708333171000,0],[1708333172000,0],[1708333173000,0],[1708333174000,0],[1708333175000,0],[1708333176000,0],[1708333177000,0],[1708333178000,0],[1708333179000,0],[1708333180000,0],[1708333181000,0],[1708333182000,0],[1708333183000,0],[1708333184000,0],[1708333185000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#9D00FF',
name: 'validação concorrência transações - c',
data: [
[1708332940000,0],[1708332941000,25],[1708332942000,25],[1708332943000,0],[1708332944000,0],[1708332945000,0],[1708332946000,0],[1708332947000,0],[1708332948000,0],[1708332949000,0],[1708332950000,0],[1708332951000,0],[1708332952000,0],[1708332953000,0],[1708332954000,0],[1708332955000,0],[1708332956000,0],[1708332957000,0],[1708332958000,0],[1708332959000,0],[1708332960000,0],[1708332961000,0],[1708332962000,0],[1708332963000,0],[1708332964000,0],[1708332965000,0],[1708332966000,0],[1708332967000,0],[1708332968000,0],[1708332969000,0],[1708332970000,0],[1708332971000,0],[1708332972000,0],[1708332973000,0],[1708332974000,0],[1708332975000,0],[1708332976000,0],[1708332977000,0],[1708332978000,0],[1708332979000,0],[1708332980000,0],[1708332981000,0],[1708332982000,0],[1708332983000,0],[1708332984000,0],[1708332985000,0],[1708332986000,0],[1708332987000,0],[1708332988000,0],[1708332989000,0],[1708332990000,0],[1708332991000,0],[1708332992000,0],[1708332993000,0],[1708332994000,0],[1708332995000,0],[1708332996000,0],[1708332997000,0],[1708332998000,0],[1708332999000,0],[1708333000000,0],[1708333001000,0],[1708333002000,0],[1708333003000,0],[1708333004000,0],[1708333005000,0],[1708333006000,0],[1708333007000,0],[1708333008000,0],[1708333009000,0],[1708333010000,0],[1708333011000,0],[1708333012000,0],[1708333013000,0],[1708333014000,0],[1708333015000,0],[1708333016000,0],[1708333017000,0],[1708333018000,0],[1708333019000,0],[1708333020000,0],[1708333021000,0],[1708333022000,0],[1708333023000,0],[1708333024000,0],[1708333025000,0],[1708333026000,0],[1708333027000,0],[1708333028000,0],[1708333029000,0],[1708333030000,0],[1708333031000,0],[1708333032000,0],[1708333033000,0],[1708333034000,0],[1708333035000,0],[1708333036000,0],[1708333037000,0],[1708333038000,0],[1708333039000,0],[1708333040000,0],[1708333041000,0],[1708333042000,0],[1708333043000,0],[1708333044000,0],[1708333045000,0],[1708333046000,0],[1708333047000,0],[1708333048000,0],[1708333049000,0],[1708333050000,0],[1708333051000,0],[1708333052000,0],[1708333053000,0],[1708333054000,0],[1708333055000,0],[1708333056000,0],[1708333057000,0],[1708333058000,0],[1708333059000,0],[1708333060000,0],[1708333061000,0],[1708333062000,0],[1708333063000,0],[1708333064000,0],[1708333065000,0],[1708333066000,0],[1708333067000,0],[1708333068000,0],[1708333069000,0],[1708333070000,0],[1708333071000,0],[1708333072000,0],[1708333073000,0],[1708333074000,0],[1708333075000,0],[1708333076000,0],[1708333077000,0],[1708333078000,0],[1708333079000,0],[1708333080000,0],[1708333081000,0],[1708333082000,0],[1708333083000,0],[1708333084000,0],[1708333085000,0],[1708333086000,0],[1708333087000,0],[1708333088000,0],[1708333089000,0],[1708333090000,0],[1708333091000,0],[1708333092000,0],[1708333093000,0],[1708333094000,0],[1708333095000,0],[1708333096000,0],[1708333097000,0],[1708333098000,0],[1708333099000,0],[1708333100000,0],[1708333101000,0],[1708333102000,0],[1708333103000,0],[1708333104000,0],[1708333105000,0],[1708333106000,0],[1708333107000,0],[1708333108000,0],[1708333109000,0],[1708333110000,0],[1708333111000,0],[1708333112000,0],[1708333113000,0],[1708333114000,0],[1708333115000,0],[1708333116000,0],[1708333117000,0],[1708333118000,0],[1708333119000,0],[1708333120000,0],[1708333121000,0],[1708333122000,0],[1708333123000,0],[1708333124000,0],[1708333125000,0],[1708333126000,0],[1708333127000,0],[1708333128000,0],[1708333129000,0],[1708333130000,0],[1708333131000,0],[1708333132000,0],[1708333133000,0],[1708333134000,0],[1708333135000,0],[1708333136000,0],[1708333137000,0],[1708333138000,0],[1708333140000,0],[1708333141000,0],[1708333142000,0],[1708333143000,0],[1708333144000,0],[1708333145000,0],[1708333146000,0],[1708333147000,0],[1708333148000,0],[1708333149000,0],[1708333150000,0],[1708333151000,0],[1708333152000,0],[1708333153000,0],[1708333154000,0],[1708333155000,0],[1708333156000,0],[1708333157000,0],[1708333158000,0],[1708333159000,0],[1708333160000,0],[1708333161000,0],[1708333162000,0],[1708333163000,0],[1708333164000,0],[1708333165000,0],[1708333166000,0],[1708333167000,0],[1708333168000,0],[1708333169000,0],[1708333170000,0],[1708333171000,0],[1708333172000,0],[1708333173000,0],[1708333174000,0],[1708333175000,0],[1708333176000,0],[1708333177000,0],[1708333178000,0],[1708333179000,0],[1708333180000,0],[1708333181000,0],[1708333182000,0],[1708333183000,0],[1708333184000,0],[1708333185000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FF00E1',
name: 'validação concorrência saldo - -25',
data: [
[1708332940000,1],[1708332941000,1],[1708332942000,0],[1708332943000,0],[1708332944000,0],[1708332945000,0],[1708332946000,0],[1708332947000,0],[1708332948000,0],[1708332949000,0],[1708332950000,0],[1708332951000,0],[1708332952000,0],[1708332953000,0],[1708332954000,0],[1708332955000,0],[1708332956000,0],[1708332957000,0],[1708332958000,0],[1708332959000,0],[1708332960000,0],[1708332961000,0],[1708332962000,0],[1708332963000,0],[1708332964000,0],[1708332965000,0],[1708332966000,0],[1708332967000,0],[1708332968000,0],[1708332969000,0],[1708332970000,0],[1708332971000,0],[1708332972000,0],[1708332973000,0],[1708332974000,0],[1708332975000,0],[1708332976000,0],[1708332977000,0],[1708332978000,0],[1708332979000,0],[1708332980000,0],[1708332981000,0],[1708332982000,0],[1708332983000,0],[1708332984000,0],[1708332985000,0],[1708332986000,0],[1708332987000,0],[1708332988000,0],[1708332989000,0],[1708332990000,0],[1708332991000,0],[1708332992000,0],[1708332993000,0],[1708332994000,0],[1708332995000,0],[1708332996000,0],[1708332997000,0],[1708332998000,0],[1708332999000,0],[1708333000000,0],[1708333001000,0],[1708333002000,0],[1708333003000,0],[1708333004000,0],[1708333005000,0],[1708333006000,0],[1708333007000,0],[1708333008000,0],[1708333009000,0],[1708333010000,0],[1708333011000,0],[1708333012000,0],[1708333013000,0],[1708333014000,0],[1708333015000,0],[1708333016000,0],[1708333017000,0],[1708333018000,0],[1708333019000,0],[1708333020000,0],[1708333021000,0],[1708333022000,0],[1708333023000,0],[1708333024000,0],[1708333025000,0],[1708333026000,0],[1708333027000,0],[1708333028000,0],[1708333029000,0],[1708333030000,0],[1708333031000,0],[1708333032000,0],[1708333033000,0],[1708333034000,0],[1708333035000,0],[1708333036000,0],[1708333037000,0],[1708333038000,0],[1708333039000,0],[1708333040000,0],[1708333041000,0],[1708333042000,0],[1708333043000,0],[1708333044000,0],[1708333045000,0],[1708333046000,0],[1708333047000,0],[1708333048000,0],[1708333049000,0],[1708333050000,0],[1708333051000,0],[1708333052000,0],[1708333053000,0],[1708333054000,0],[1708333055000,0],[1708333056000,0],[1708333057000,0],[1708333058000,0],[1708333059000,0],[1708333060000,0],[1708333061000,0],[1708333062000,0],[1708333063000,0],[1708333064000,0],[1708333065000,0],[1708333066000,0],[1708333067000,0],[1708333068000,0],[1708333069000,0],[1708333070000,0],[1708333071000,0],[1708333072000,0],[1708333073000,0],[1708333074000,0],[1708333075000,0],[1708333076000,0],[1708333077000,0],[1708333078000,0],[1708333079000,0],[1708333080000,0],[1708333081000,0],[1708333082000,0],[1708333083000,0],[1708333084000,0],[1708333085000,0],[1708333086000,0],[1708333087000,0],[1708333088000,0],[1708333089000,0],[1708333090000,0],[1708333091000,0],[1708333092000,0],[1708333093000,0],[1708333094000,0],[1708333095000,0],[1708333096000,0],[1708333097000,0],[1708333098000,0],[1708333099000,0],[1708333100000,0],[1708333101000,0],[1708333102000,0],[1708333103000,0],[1708333104000,0],[1708333105000,0],[1708333106000,0],[1708333107000,0],[1708333108000,0],[1708333109000,0],[1708333110000,0],[1708333111000,0],[1708333112000,0],[1708333113000,0],[1708333114000,0],[1708333115000,0],[1708333116000,0],[1708333117000,0],[1708333118000,0],[1708333119000,0],[1708333120000,0],[1708333121000,0],[1708333122000,0],[1708333123000,0],[1708333124000,0],[1708333125000,0],[1708333126000,0],[1708333127000,0],[1708333128000,0],[1708333129000,0],[1708333130000,0],[1708333131000,0],[1708333132000,0],[1708333133000,0],[1708333134000,0],[1708333135000,0],[1708333136000,0],[1708333137000,0],[1708333138000,0],[1708333140000,0],[1708333141000,0],[1708333142000,0],[1708333143000,0],[1708333144000,0],[1708333145000,0],[1708333146000,0],[1708333147000,0],[1708333148000,0],[1708333149000,0],[1708333150000,0],[1708333151000,0],[1708333152000,0],[1708333153000,0],[1708333154000,0],[1708333155000,0],[1708333156000,0],[1708333157000,0],[1708333158000,0],[1708333159000,0],[1708333160000,0],[1708333161000,0],[1708333162000,0],[1708333163000,0],[1708333164000,0],[1708333165000,0],[1708333166000,0],[1708333167000,0],[1708333168000,0],[1708333169000,0],[1708333170000,0],[1708333171000,0],[1708333172000,0],[1708333173000,0],[1708333174000,0],[1708333175000,0],[1708333176000,0],[1708333177000,0],[1708333178000,0],[1708333179000,0],[1708333180000,0],[1708333181000,0],[1708333182000,0],[1708333183000,0],[1708333184000,0],[1708333185000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#AECAEB',
name: 'validação concorrência transações - d',
data: [
[1708332940000,25],[1708332941000,0],[1708332942000,0],[1708332943000,0],[1708332944000,0],[1708332945000,0],[1708332946000,0],[1708332947000,0],[1708332948000,0],[1708332949000,0],[1708332950000,0],[1708332951000,0],[1708332952000,0],[1708332953000,0],[1708332954000,0],[1708332955000,0],[1708332956000,0],[1708332957000,0],[1708332958000,0],[1708332959000,0],[1708332960000,0],[1708332961000,0],[1708332962000,0],[1708332963000,0],[1708332964000,0],[1708332965000,0],[1708332966000,0],[1708332967000,0],[1708332968000,0],[1708332969000,0],[1708332970000,0],[1708332971000,0],[1708332972000,0],[1708332973000,0],[1708332974000,0],[1708332975000,0],[1708332976000,0],[1708332977000,0],[1708332978000,0],[1708332979000,0],[1708332980000,0],[1708332981000,0],[1708332982000,0],[1708332983000,0],[1708332984000,0],[1708332985000,0],[1708332986000,0],[1708332987000,0],[1708332988000,0],[1708332989000,0],[1708332990000,0],[1708332991000,0],[1708332992000,0],[1708332993000,0],[1708332994000,0],[1708332995000,0],[1708332996000,0],[1708332997000,0],[1708332998000,0],[1708332999000,0],[1708333000000,0],[1708333001000,0],[1708333002000,0],[1708333003000,0],[1708333004000,0],[1708333005000,0],[1708333006000,0],[1708333007000,0],[1708333008000,0],[1708333009000,0],[1708333010000,0],[1708333011000,0],[1708333012000,0],[1708333013000,0],[1708333014000,0],[1708333015000,0],[1708333016000,0],[1708333017000,0],[1708333018000,0],[1708333019000,0],[1708333020000,0],[1708333021000,0],[1708333022000,0],[1708333023000,0],[1708333024000,0],[1708333025000,0],[1708333026000,0],[1708333027000,0],[1708333028000,0],[1708333029000,0],[1708333030000,0],[1708333031000,0],[1708333032000,0],[1708333033000,0],[1708333034000,0],[1708333035000,0],[1708333036000,0],[1708333037000,0],[1708333038000,0],[1708333039000,0],[1708333040000,0],[1708333041000,0],[1708333042000,0],[1708333043000,0],[1708333044000,0],[1708333045000,0],[1708333046000,0],[1708333047000,0],[1708333048000,0],[1708333049000,0],[1708333050000,0],[1708333051000,0],[1708333052000,0],[1708333053000,0],[1708333054000,0],[1708333055000,0],[1708333056000,0],[1708333057000,0],[1708333058000,0],[1708333059000,0],[1708333060000,0],[1708333061000,0],[1708333062000,0],[1708333063000,0],[1708333064000,0],[1708333065000,0],[1708333066000,0],[1708333067000,0],[1708333068000,0],[1708333069000,0],[1708333070000,0],[1708333071000,0],[1708333072000,0],[1708333073000,0],[1708333074000,0],[1708333075000,0],[1708333076000,0],[1708333077000,0],[1708333078000,0],[1708333079000,0],[1708333080000,0],[1708333081000,0],[1708333082000,0],[1708333083000,0],[1708333084000,0],[1708333085000,0],[1708333086000,0],[1708333087000,0],[1708333088000,0],[1708333089000,0],[1708333090000,0],[1708333091000,0],[1708333092000,0],[1708333093000,0],[1708333094000,0],[1708333095000,0],[1708333096000,0],[1708333097000,0],[1708333098000,0],[1708333099000,0],[1708333100000,0],[1708333101000,0],[1708333102000,0],[1708333103000,0],[1708333104000,0],[1708333105000,0],[1708333106000,0],[1708333107000,0],[1708333108000,0],[1708333109000,0],[1708333110000,0],[1708333111000,0],[1708333112000,0],[1708333113000,0],[1708333114000,0],[1708333115000,0],[1708333116000,0],[1708333117000,0],[1708333118000,0],[1708333119000,0],[1708333120000,0],[1708333121000,0],[1708333122000,0],[1708333123000,0],[1708333124000,0],[1708333125000,0],[1708333126000,0],[1708333127000,0],[1708333128000,0],[1708333129000,0],[1708333130000,0],[1708333131000,0],[1708333132000,0],[1708333133000,0],[1708333134000,0],[1708333135000,0],[1708333136000,0],[1708333137000,0],[1708333138000,0],[1708333140000,0],[1708333141000,0],[1708333142000,0],[1708333143000,0],[1708333144000,0],[1708333145000,0],[1708333146000,0],[1708333147000,0],[1708333148000,0],[1708333149000,0],[1708333150000,0],[1708333151000,0],[1708333152000,0],[1708333153000,0],[1708333154000,0],[1708333155000,0],[1708333156000,0],[1708333157000,0],[1708333158000,0],[1708333159000,0],[1708333160000,0],[1708333161000,0],[1708333162000,0],[1708333163000,0],[1708333164000,0],[1708333165000,0],[1708333166000,0],[1708333167000,0],[1708333168000,0],[1708333169000,0],[1708333170000,0],[1708333171000,0],[1708333172000,0],[1708333173000,0],[1708333174000,0],[1708333175000,0],[1708333176000,0],[1708333177000,0],[1708333178000,0],[1708333179000,0],[1708333180000,0],[1708333181000,0],[1708333182000,0],[1708333183000,0],[1708333184000,0],[1708333185000,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: ['3', '8', '12', '16', '21', '25', '29', '34', '38', '43', '47', '51', '56', '60', '65', '69', '73', '78', '82', '86', '91', '95', '100', '104', '108', '113', '117', '121', '126', '130', '135', '139', '143', '148', '152', '156', '161', '165', '170', '174', '178', '183', '187', '192', '196', '200', '205', '209', '213', '218', '222', '227', '231', '235', '240', '244', '248', '253', '257', '262', '266', '270', '275', '279', '284', '288', '292', '297', '301', '305', '310', '314', '319', '323', '327', '332', '336', '340', '345', '349', '354', '358', '362', '367', '371', '375', '380', '384', '389', '393', '397', '402', '406', '411', '415', '419', '424', '428', '432', '437'],
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: [
24.24,38.44,9.78,4.07,3.87,5.04,3.38,2.96,2.88,2.15,1.45,0.55,0.38,0.25,0.08,0.08,0.04,0.02,0.01,0.01,0.0,0.01,0.0,0.02,0.0,0.0,0.0,0.01,0.01,0.0,0.0,0.01,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
],
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([[1708332940,[65,104,121,139,140,145,148,149,153,155]],[1708332941,null],[1708332942,[17,32,45,54,56,60,61,63,65,66]],[1708332943,null],[1708332944,[1,4,10,18,21,24,26,36,40,41]],[1708332945,[5,7,10,10,10,10,10,10,10,11]],[1708332946,[4,7,9,10,10,10,10,10,10,11]],[1708332947,[5,7,8,8,8,8,9,9,9,9]],[1708332948,[6,7,7,8,8,8,9,10,10,11]],[1708332949,[4,7,7,8,8,8,8,8,9,10]],[1708332950,[4,6,6,7,7,7,9,9,9,9]],[1708332951,[4,6,7,7,7,8,8,9,9,10]],[1708332952,[3,6,6,7,7,7,8,14,15,16]],[1708332953,[3,6,6,8,8,8,9,9,10,11]],[1708332954,[4,6,7,9,10,12,14,15,15,16]],[1708332955,[3,5,6,8,8,8,9,9,9,10]],[1708332956,[4,6,7,8,9,10,11,12,16,18]],[1708332957,[4,6,6,7,8,8,12,26,58,59]],[1708332958,[3,5,6,7,7,8,9,9,9,10]],[1708332959,[3,5,6,7,8,8,8,8,12,13]],[1708332960,[2,6,6,8,8,8,8,8,9,9]],[1708332961,[4,6,8,191,236,292,345,400,438,439]],[1708332962,[2,5,6,6,7,7,9,20,51,54]],[1708332963,[2,5,6,7,7,8,8,13,31,33]],[1708332964,[3,5,5,6,7,7,7,9,14,20]],[1708332965,[2,5,5,6,6,6,7,7,9,11]],[1708332966,[3,5,6,7,8,9,10,11,12,13]],[1708332967,[1,5,5,7,7,7,7,8,9,11]],[1708332968,[1,5,6,7,8,8,9,10,12,14]],[1708332969,[2,6,7,8,8,8,9,9,17,18]],[1708332970,[2,5,7,8,9,9,10,15,21,26]],[1708332971,[2,5,6,8,8,8,9,11,15,16]],[1708332972,[2,5,6,8,8,9,11,12,14,14]],[1708332973,[2,5,5,6,6,7,7,9,18,18]],[1708332974,[1,5,5,6,7,7,7,9,14,17]],[1708332975,[2,5,5,6,6,7,7,7,8,9]],[1708332976,[1,5,5,6,6,6,7,7,9,10]],[1708332977,[2,5,6,7,7,8,8,9,19,31]],[1708332978,[2,5,6,7,8,8,8,12,19,20]],[1708332979,[1,5,6,7,7,7,8,8,9,9]],[1708332980,[1,5,6,7,8,8,8,8,10,10]],[1708332981,[2,5,6,7,8,8,9,13,16,19]],[1708332982,[2,5,6,7,8,8,9,13,16,17]],[1708332983,[2,5,5,6,7,7,8,11,15,20]],[1708332984,[1,5,6,7,8,9,9,15,20,22]],[1708332985,[2,5,5,7,7,8,9,11,15,18]],[1708332986,[2,4,5,6,6,6,7,7,11,16]],[1708332987,[2,5,5,6,7,7,7,8,9,11]],[1708332988,[2,5,5,6,6,7,7,8,12,14]],[1708332989,[1,5,6,6,7,8,8,9,10,15]],[1708332990,[2,5,6,7,7,8,8,12,22,27]],[1708332991,[2,5,6,7,7,8,8,11,14,17]],[1708332992,[1,5,6,8,8,9,9,11,16,18]],[1708332993,[2,5,5,7,7,8,8,11,13,15]],[1708332994,[1,5,6,7,7,8,8,9,12,16]],[1708332995,[1,5,6,7,8,8,10,12,23,29]],[1708332996,[2,5,5,6,7,7,7,9,16,21]],[1708332997,[2,4,5,6,7,7,9,9,16,22]],[1708332998,[1,4,5,6,7,7,8,9,12,15]],[1708332999,[2,4,5,6,6,7,7,8,9,13]],[1708333000,[1,4,5,6,7,7,8,12,21,22]],[1708333001,[2,4,5,6,6,6,7,7,11,14]],[1708333002,[1,5,6,7,7,8,8,9,12,16]],[1708333003,[1,5,6,7,7,7,8,9,12,13]],[1708333004,[1,4,5,7,7,7,8,12,18,18]],[1708333005,[2,4,5,6,7,7,8,9,13,18]],[1708333006,[1,5,5,6,6,7,7,7,8,11]],[1708333007,[1,4,5,6,6,6,7,9,16,19]],[1708333008,[1,4,5,6,7,7,8,11,18,19]],[1708333009,[1,4,5,6,6,7,7,9,18,30]],[1708333010,[1,4,5,6,7,7,8,8,11,13]],[1708333011,[2,4,5,7,7,7,8,8,12,13]],[1708333012,[1,5,5,6,7,7,7,8,9,13]],[1708333013,[2,5,6,7,7,8,9,13,21,33]],[1708333014,[2,5,6,8,8,9,12,18,26,28]],[1708333015,[2,5,6,7,8,9,10,12,23,27]],[1708333016,[2,5,6,8,9,10,11,18,25,27]],[1708333017,[2,5,6,7,8,9,10,15,23,35]],[1708333018,[2,5,6,7,7,7,8,10,15,18]],[1708333019,[2,4,6,7,7,8,9,16,24,39]],[1708333020,[2,4,5,7,8,10,16,27,52,56]],[1708333021,[2,5,6,8,8,9,12,22,34,40]],[1708333022,[2,5,7,9,12,15,21,28,39,43]],[1708333023,[1,5,6,7,8,9,11,21,38,40]],[1708333024,[1,4,5,7,8,11,21,33,50,56]],[1708333025,[2,5,6,8,8,9,11,14,24,42]],[1708333026,[2,5,6,8,10,13,18,24,31,38]],[1708333027,[2,5,7,9,11,15,20,25,35,42]],[1708333028,[2,5,7,9,11,18,24,31,40,47]],[1708333029,[2,5,6,8,8,10,12,19,30,33]],[1708333030,[2,5,7,10,15,18,23,30,38,41]],[1708333031,[2,5,6,9,11,15,22,29,38,42]],[1708333032,[2,5,7,11,17,20,26,33,39,43]],[1708333033,[2,6,7,12,14,17,22,27,36,44]],[1708333034,[1,5,7,11,12,18,26,33,41,45]],[1708333035,[1,5,7,9,11,15,21,30,41,43]],[1708333036,[2,6,8,18,23,27,35,41,50,60]],[1708333037,[2,5,6,15,19,24,26,30,38,43]],[1708333038,[2,6,7,21,25,29,38,43,52,55]],[1708333039,[3,6,7,15,19,24,29,36,46,51]],[1708333040,[2,6,8,17,21,25,28,35,47,53]],[1708333041,[1,5,6,8,9,13,19,27,37,44]],[1708333042,[2,6,7,11,16,19,24,32,42,47]],[1708333043,[2,6,7,12,16,22,25,34,42,48]],[1708333044,[2,6,7,12,17,20,25,29,40,44]],[1708333045,[2,5,7,15,19,26,32,38,49,56]],[1708333046,[2,5,7,10,12,16,22,30,45,53]],[1708333047,[2,5,6,12,17,22,26,34,44,51]],[1708333048,[2,6,8,20,24,29,33,43,54,72]],[1708333049,[2,7,10,28,33,37,44,50,64,74]],[1708333050,[2,6,8,16,20,24,33,39,48,61]],[1708333051,[2,6,8,19,22,29,36,43,51,59]],[1708333052,[2,6,7,15,20,23,29,38,42,48]],[1708333053,[2,6,7,20,24,30,39,43,57,70]],[1708333054,[2,6,7,12,18,24,28,35,48,57]],[1708333055,[2,6,9,23,27,32,37,42,50,56]],[1708333056,[2,6,9,35,48,85,122,157,198,207]],[1708333057,[2,7,10,23,27,32,37,45,58,69]],[1708333058,[2,6,9,26,30,36,40,46,59,64]],[1708333059,[3,6,8,18,24,29,35,45,59,80]],[1708333060,[2,6,10,25,29,33,38,44,56,65]],[1708333061,[3,6,12,31,36,42,49,73,117,127]],[1708333062,[2,5,7,15,20,24,27,34,45,48]],[1708333063,[2,6,7,15,21,24,28,36,44,50]],[1708333064,[2,6,9,21,24,27,36,41,56,64]],[1708333065,[3,6,9,24,28,34,40,47,58,70]],[1708333066,[3,7,11,25,28,34,39,42,48,58]],[1708333067,[3,6,9,21,25,28,33,40,45,53]],[1708333068,[2,6,9,24,27,32,36,40,48,58]],[1708333069,[3,6,10,24,26,31,37,42,58,66]],[1708333070,[2,6,8,20,25,28,33,39,50,57]],[1708333071,[3,6,9,24,28,32,38,43,56,68]],[1708333072,[2,6,7,14,20,24,30,39,45,48]],[1708333073,[3,6,8,18,22,25,32,39,45,55]],[1708333074,[3,6,9,24,29,36,45,51,66,76]],[1708333075,[3,6,9,20,23,28,34,43,62,72]],[1708333076,[3,6,9,24,27,33,37,43,54,69]],[1708333077,[3,6,9,24,25,31,37,42,47,50]],[1708333078,[3,7,11,28,31,35,41,47,55,68]],[1708333079,[3,6,8,19,23,27,31,38,50,60]],[1708333080,[3,6,9,22,26,32,36,43,49,52]],[1708333081,[2,7,13,32,38,40,45,49,65,74]],[1708333082,[3,6,9,26,30,36,42,46,53,63]],[1708333083,[3,6,9,19,25,29,34,41,52,70]],[1708333084,[4,7,10,24,27,33,38,42,58,70]],[1708333085,[3,6,8,19,24,26,31,39,50,56]],[1708333086,[3,6,8,21,24,27,33,39,49,53]],[1708333087,[2,6,8,20,25,30,37,42,49,62]],[1708333088,[3,6,8,17,20,27,30,40,49,56]],[1708333089,[3,6,8,23,27,31,38,44,52,69]],[1708333090,[3,6,8,24,28,32,39,42,48,57]],[1708333091,[4,6,8,16,18,24,28,33,43,53]],[1708333092,[3,6,8,16,19,24,30,35,44,49]],[1708333093,[3,6,8,19,24,26,32,38,47,50]],[1708333094,[3,6,10,24,29,34,40,47,62,72]],[1708333095,[3,5,7,20,24,28,33,39,46,55]],[1708333096,[3,7,12,27,30,36,41,47,54,60]],[1708333097,[3,6,8,24,27,32,39,47,66,86]],[1708333098,[3,6,11,27,32,37,41,45,57,73]],[1708333099,[3,6,9,22,25,28,32,40,45,50]],[1708333100,[3,6,8,23,26,31,38,42,50,68]],[1708333101,[3,6,9,20,24,28,35,42,47,61]],[1708333102,[3,6,9,23,28,33,39,43,53,63]],[1708333103,[3,7,11,27,32,37,41,46,54,74]],[1708333104,[3,6,8,25,29,35,39,44,50,55]],[1708333105,[4,6,9,23,26,29,37,42,47,54]],[1708333106,[3,7,9,24,28,33,38,44,54,69]],[1708333107,[3,6,8,20,26,30,36,43,56,60]],[1708333108,[3,6,8,21,25,28,32,38,44,49]],[1708333109,[3,6,8,24,26,29,35,42,49,58]],[1708333110,[3,6,9,25,30,35,41,47,58,69]],[1708333111,[3,7,11,28,33,37,42,48,63,83]],[1708333112,[3,6,8,18,22,26,31,39,47,60]],[1708333113,[3,6,8,15,19,23,27,33,39,41]],[1708333114,[3,6,8,17,22,26,32,40,48,52]],[1708333115,[3,5,8,21,25,28,32,40,51,68]],[1708333116,[3,6,8,18,23,28,32,38,43,47]],[1708333117,[3,7,11,29,33,38,41,45,53,61]],[1708333118,[3,6,8,21,26,31,38,45,50,53]],[1708333119,[3,6,8,20,24,29,35,39,52,59]],[1708333120,[3,6,8,16,20,23,27,32,42,49]],[1708333121,[3,6,8,17,20,25,30,38,53,58]],[1708333122,[3,7,11,27,31,36,40,44,61,69]],[1708333123,[3,6,8,16,22,26,30,39,44,52]],[1708333124,[4,6,8,20,25,28,34,39,47,52]],[1708333125,[3,6,9,22,26,28,32,39,49,54]],[1708333126,[3,6,8,22,25,31,39,47,57,78]],[1708333127,[3,7,9,22,25,30,36,42,51,57]],[1708333128,[3,6,9,20,25,32,38,43,48,59]],[1708333129,[4,7,8,19,24,26,32,40,46,55]],[1708333130,[3,6,9,19,23,28,32,40,49,55]],[1708333131,[3,6,8,21,26,28,33,40,45,50]],[1708333132,[4,7,11,30,36,40,44,59,78,102]],[1708333133,[3,6,11,27,32,37,40,46,57,63]],[1708333134,[3,5,7,13,20,26,33,41,54,74]],[1708333135,[3,5,7,12,16,22,26,36,44,50]],[1708333136,[3,5,7,10,13,22,31,36,49,65]],[1708333137,[3,5,7,10,12,15,23,32,39,44]],[1708333138,[3,5,7,11,15,21,25,30,42,46]],[1708333139,[3,5,7,14,23,30,37,49,56,57]],[1708333140,[3,5,6,13,15,21,27,38,47,53]],[1708333141,[3,5,6,9,13,22,29,39,51,61]],[1708333142,[3,6,7,12,14,20,28,37,48,56]],[1708333143,[3,5,7,10,14,21,27,33,42,47]],[1708333144,[3,5,7,9,11,17,24,34,53,60]],[1708333145,[3,5,7,17,21,27,31,37,48,58]],[1708333146,[4,7,14,30,35,40,43,49,57,62]],[1708333147,[3,7,11,26,30,36,40,44,57,69]],[1708333148,[4,7,10,28,31,36,40,46,57,68]],[1708333149,[3,6,10,28,32,38,42,51,61,74]],[1708333150,[3,6,10,27,31,37,41,46,57,60]],[1708333151,[3,7,10,27,32,37,40,44,49,55]],[1708333152,[4,6,9,24,28,30,37,39,44,51]],[1708333153,[3,6,9,25,28,33,38,42,48,53]],[1708333154,[3,7,10,23,27,31,38,46,71,74]],[1708333155,[3,6,8,19,24,28,31,38,44,50]],[1708333156,[3,5,7,14,17,23,28,39,44,50]],[1708333157,[3,6,8,18,23,28,33,40,51,59]],[1708333158,[3,6,8,19,22,27,31,41,46,53]],[1708333159,[3,6,8,21,25,28,33,41,49,57]],[1708333160,[3,6,9,20,23,28,34,41,53,81]],[1708333161,[3,6,9,23,28,32,39,43,53,65]],[1708333162,[3,6,9,25,30,35,39,45,55,57]],[1708333163,[3,5,8,20,25,30,35,40,50,61]],[1708333164,[3,5,7,18,21,28,32,38,44,58]],[1708333165,[3,6,7,15,19,25,30,38,43,50]],[1708333166,[3,6,10,28,32,38,42,51,59,66]],[1708333167,[3,6,8,20,25,28,34,41,47,53]],[1708333168,[3,6,8,22,26,31,37,42,46,58]],[1708333169,[3,6,9,25,29,32,38,42,48,54]],[1708333170,[3,6,9,22,26,29,37,42,52,71]],[1708333171,[3,6,8,19,24,27,32,38,46,55]],[1708333172,[3,6,8,32,40,53,135,179,208,219]],[1708333173,[3,7,13,30,36,42,48,71,102,120]],[1708333174,[3,5,7,17,21,26,31,40,45,50]],[1708333175,[3,6,9,25,29,34,39,44,55,70]],[1708333176,[3,6,8,16,19,27,30,39,44,50]],[1708333177,[3,6,8,14,20,26,30,38,45,50]],[1708333178,[3,6,9,25,28,33,38,44,55,61]],[1708333179,[3,6,8,21,25,30,37,43,48,54]],[1708333180,[3,6,9,23,28,31,36,42,51,62]],[1708333181,[3,6,9,24,27,32,38,44,50,63]],[1708333182,[3,6,8,24,27,31,39,48,69,77]],[1708333183,[3,6,8,17,23,27,33,37,43,45]],[1708333184,[3,6,8,23,27,30,38,41,54,73]],[1708333185,[3,6,8,22,25,29,33,39,43,44]]]);
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([[1708332940,[25,25,0]],[1708332941,[1,0,1]],[1708332942,[25,25,0]],[1708332943,[1,0,1]],[1708332944,[71,70,1]],[1708332945,[3,3,0]],[1708332946,[6,6,0]],[1708332947,[9,9,0]],[1708332948,[11,11,0]],[1708332949,[13,13,0]],[1708332950,[18,18,0]],[1708332951,[19,19,0]],[1708332952,[24,24,0]],[1708332953,[26,26,0]],[1708332954,[27,27,0]],[1708332955,[32,32,0]],[1708332956,[34,34,0]],[1708332957,[37,37,0]],[1708332958,[39,39,0]],[1708332959,[43,43,0]],[1708332960,[44,44,0]],[1708332961,[49,49,0]],[1708332962,[50,50,0]],[1708332963,[54,54,0]],[1708332964,[56,56,0]],[1708332965,[60,60,0]],[1708332966,[61,61,0]],[1708332967,[65,65,0]],[1708332968,[67,67,0]],[1708332969,[70,70,0]],[1708332970,[74,74,0]],[1708332971,[76,76,0]],[1708332972,[80,80,0]],[1708332973,[81,81,0]],[1708332974,[84,84,0]],[1708332975,[89,89,0]],[1708332976,[89,89,0]],[1708332977,[93,93,0]],[1708332978,[96,96,0]],[1708332979,[98,98,0]],[1708332980,[102,102,0]],[1708332981,[104,104,0]],[1708332982,[107,107,0]],[1708332983,[109,109,0]],[1708332984,[114,114,0]],[1708332985,[115,115,0]],[1708332986,[118,118,0]],[1708332987,[121,121,0]],[1708332988,[124,124,0]],[1708332989,[126,126,0]],[1708332990,[129,129,0]],[1708332991,[133,133,0]],[1708332992,[134,134,0]],[1708332993,[139,139,0]],[1708332994,[140,140,0]],[1708332995,[144,144,0]],[1708332996,[146,146,0]],[1708332997,[149,149,0]],[1708332998,[151,151,0]],[1708332999,[155,155,0]],[1708333000,[157,157,0]],[1708333001,[160,160,0]],[1708333002,[164,164,0]],[1708333003,[165,165,0]],[1708333004,[171,171,0]],[1708333005,[171,171,0]],[1708333006,[174,174,0]],[1708333007,[177,177,0]],[1708333008,[180,180,0]],[1708333009,[183,183,0]],[1708333010,[186,186,0]],[1708333011,[188,188,0]],[1708333012,[192,192,0]],[1708333013,[194,194,0]],[1708333014,[197,197,0]],[1708333015,[198,198,0]],[1708333016,[204,204,0]],[1708333017,[204,204,0]],[1708333018,[208,208,0]],[1708333019,[211,211,0]],[1708333020,[214,214,0]],[1708333021,[217,217,0]],[1708333022,[219,219,0]],[1708333023,[222,222,0]],[1708333024,[224,224,0]],[1708333025,[229,229,0]],[1708333026,[229,229,0]],[1708333027,[234,234,0]],[1708333028,[236,236,0]],[1708333029,[239,239,0]],[1708333030,[242,242,0]],[1708333031,[244,244,0]],[1708333032,[248,248,0]],[1708333033,[250,250,0]],[1708333034,[253,253,0]],[1708333035,[255,255,0]],[1708333036,[260,260,0]],[1708333037,[263,263,0]],[1708333038,[263,263,0]],[1708333039,[267,267,0]],[1708333040,[269,269,0]],[1708333041,[273,273,0]],[1708333042,[275,275,0]],[1708333043,[279,279,0]],[1708333044,[281,281,0]],[1708333045,[284,284,0]],[1708333046,[286,286,0]],[1708333047,[290,290,0]],[1708333048,[292,292,0]],[1708333049,[295,295,0]],[1708333050,[298,298,0]],[1708333051,[301,301,0]],[1708333052,[304,304,0]],[1708333053,[306,306,0]],[1708333054,[308,308,0]],[1708333055,[313,313,0]],[1708333056,[314,314,0]],[1708333057,[318,318,0]],[1708333058,[320,320,0]],[1708333059,[323,323,0]],[1708333060,[326,326,0]],[1708333061,[330,330,0]],[1708333062,[332,332,0]],[1708333063,[334,334,0]],[1708333064,[337,337,0]],[1708333065,[340,340,0]],[1708333066,[340,340,0]],[1708333067,[340,340,0]],[1708333068,[340,340,0]],[1708333069,[340,340,0]],[1708333070,[340,340,0]],[1708333071,[340,340,0]],[1708333072,[340,340,0]],[1708333073,[340,340,0]],[1708333074,[340,340,0]],[1708333075,[340,340,0]],[1708333076,[340,340,0]],[1708333077,[340,340,0]],[1708333078,[340,340,0]],[1708333079,[340,340,0]],[1708333080,[340,340,0]],[1708333081,[340,340,0]],[1708333082,[340,340,0]],[1708333083,[340,340,0]],[1708333084,[340,340,0]],[1708333085,[340,340,0]],[1708333086,[340,340,0]],[1708333087,[340,340,0]],[1708333088,[340,340,0]],[1708333089,[340,340,0]],[1708333090,[340,340,0]],[1708333091,[340,340,0]],[1708333092,[340,340,0]],[1708333093,[340,340,0]],[1708333094,[340,340,0]],[1708333095,[340,340,0]],[1708333096,[340,340,0]],[1708333097,[340,340,0]],[1708333098,[340,340,0]],[1708333099,[340,340,0]],[1708333100,[340,340,0]],[1708333101,[340,340,0]],[1708333102,[340,340,0]],[1708333103,[340,340,0]],[1708333104,[340,340,0]],[1708333105,[340,340,0]],[1708333106,[340,340,0]],[1708333107,[340,340,0]],[1708333108,[340,340,0]],[1708333109,[340,340,0]],[1708333110,[340,340,0]],[1708333111,[340,340,0]],[1708333112,[340,340,0]],[1708333113,[340,340,0]],[1708333114,[340,340,0]],[1708333115,[340,340,0]],[1708333116,[340,340,0]],[1708333117,[340,340,0]],[1708333118,[340,340,0]],[1708333119,[340,340,0]],[1708333120,[340,340,0]],[1708333121,[340,340,0]],[1708333122,[340,340,0]],[1708333123,[340,340,0]],[1708333124,[340,340,0]],[1708333125,[340,340,0]],[1708333126,[340,340,0]],[1708333127,[340,340,0]],[1708333128,[340,340,0]],[1708333129,[340,340,0]],[1708333130,[340,340,0]],[1708333131,[340,340,0]],[1708333132,[340,340,0]],[1708333133,[340,340,0]],[1708333134,[340,340,0]],[1708333135,[340,340,0]],[1708333136,[340,340,0]],[1708333137,[340,340,0]],[1708333138,[340,340,0]],[1708333139,[340,340,0]],[1708333140,[340,340,0]],[1708333141,[340,340,0]],[1708333142,[340,340,0]],[1708333143,[340,340,0]],[1708333144,[340,340,0]],[1708333145,[340,340,0]],[1708333146,[340,340,0]],[1708333147,[340,340,0]],[1708333148,[340,340,0]],[1708333149,[340,340,0]],[1708333150,[340,340,0]],[1708333151,[340,340,0]],[1708333152,[340,340,0]],[1708333153,[340,340,0]],[1708333154,[340,340,0]],[1708333155,[340,340,0]],[1708333156,[340,340,0]],[1708333157,[340,340,0]],[1708333158,[340,340,0]],[1708333159,[340,340,0]],[1708333160,[340,340,0]],[1708333161,[340,340,0]],[1708333162,[340,340,0]],[1708333163,[340,340,0]],[1708333164,[340,340,0]],[1708333165,[340,340,0]],[1708333166,[340,340,0]],[1708333167,[340,340,0]],[1708333168,[340,340,0]],[1708333169,[340,340,0]],[1708333170,[340,340,0]],[1708333171,[340,340,0]],[1708333172,[340,340,0]],[1708333173,[340,340,0]],[1708333174,[340,340,0]],[1708333175,[340,340,0]],[1708333176,[340,340,0]],[1708333177,[340,340,0]],[1708333178,[340,340,0]],[1708333179,[340,340,0]],[1708333180,[340,340,0]],[1708333181,[340,340,0]],[1708333182,[340,340,0]],[1708333183,[340,340,0]],[1708333184,[340,340,0]],[1708333185,[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'