-
Notifications
You must be signed in to change notification settings - Fork 923
/
Copy pathindex.html
1200 lines (1130 loc) · 94.8 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-05 14:21:19 GMT</span>
</span>
<span class="simulation-information-item">
<span class="simulation-information-label">Duration: </span>
<span>4m 4s </span>
</span>
<span class="simulation-tooltip simulation-information-item description" title="Description" data-content="Rinha de Backend - 2024/Q1: Crébito - leoggo_golang">
<span class="simulation-information-label">Description: </span>
<span>Rinha de Backend - 2024/Q1: Crébito - leoggo_golang</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 -6<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: [
[1709648479000,0],[1709648480000,0],[1709648481000,0],[1709648482000,0],[1709648483000,1],[1709648484000,2],[1709648485000,2],[1709648486000,4],[1709648487000,4],[1709648488000,5],[1709648489000,6],[1709648490000,7],[1709648491000,8],[1709648492000,8],[1709648493000,10],[1709648494000,10],[1709648495000,12],[1709648496000,12],[1709648497000,14],[1709648498000,14],[1709648499000,15],[1709648500000,16],[1709648501000,21],[1709648502000,17],[1709648503000,19],[1709648504000,20],[1709648505000,20],[1709648506000,22],[1709648507000,23],[1709648508000,23],[1709648509000,25],[1709648510000,25],[1709648511000,26],[1709648512000,26],[1709648513000,28],[1709648514000,29],[1709648515000,30],[1709648516000,30],[1709648517000,32],[1709648518000,32],[1709648519000,33],[1709648520000,34],[1709648521000,35],[1709648522000,36],[1709648523000,37],[1709648524000,38],[1709648525000,39],[1709648526000,39],[1709648527000,41],[1709648528000,41],[1709648529000,43],[1709648530000,43],[1709648531000,44],[1709648532000,45],[1709648533000,46],[1709648534000,47],[1709648535000,48],[1709648536000,48],[1709648537000,50],[1709648538000,50],[1709648539000,52],[1709648540000,53],[1709648541000,54],[1709648542000,55],[1709648543000,57],[1709648544000,56],[1709648545000,58],[1709648546000,59],[1709648547000,60],[1709648548000,60],[1709648549000,62],[1709648550000,62],[1709648551000,64],[1709648552000,64],[1709648553000,65],[1709648554000,66],[1709648555000,67],[1709648556000,67],[1709648557000,69],[1709648558000,69],[1709648559000,70],[1709648560000,71],[1709648561000,72],[1709648562000,72],[1709648563000,73],[1709648564000,75],[1709648565000,75],[1709648566000,99],[1709648567000,78],[1709648568000,78],[1709648569000,80],[1709648570000,91],[1709648571000,81],[1709648572000,82],[1709648573000,83],[1709648574000,83],[1709648575000,85],[1709648576000,85],[1709648577000,86],[1709648578000,86],[1709648579000,88],[1709648580000,89],[1709648581000,89],[1709648582000,92],[1709648583000,93],[1709648584000,92],[1709648585000,94],[1709648586000,94],[1709648587000,95],[1709648588000,97],[1709648589000,97],[1709648590000,97],[1709648591000,99],[1709648592000,100],[1709648593000,102],[1709648594000,102],[1709648595000,104],[1709648596000,103],[1709648597000,105],[1709648598000,107],[1709648599000,107],[1709648600000,108],[1709648601000,108],[1709648602000,110],[1709648603000,111],[1709648604000,111],[1709648605000,111],[1709648606000,111],[1709648607000,111],[1709648608000,111],[1709648609000,111],[1709648610000,111],[1709648611000,111],[1709648612000,111],[1709648613000,111],[1709648614000,111],[1709648615000,111],[1709648616000,112],[1709648617000,111],[1709648618000,111],[1709648619000,111],[1709648620000,111],[1709648621000,111],[1709648622000,111],[1709648623000,111],[1709648624000,111],[1709648625000,111],[1709648626000,111],[1709648627000,111],[1709648628000,111],[1709648629000,111],[1709648630000,111],[1709648631000,111],[1709648632000,111],[1709648633000,111],[1709648634000,111],[1709648635000,111],[1709648636000,111],[1709648637000,111],[1709648638000,111],[1709648639000,111],[1709648640000,111],[1709648641000,111],[1709648642000,113],[1709648643000,111],[1709648644000,111],[1709648645000,111],[1709648646000,111],[1709648647000,111],[1709648648000,111],[1709648649000,111],[1709648650000,111],[1709648651000,111],[1709648652000,111],[1709648653000,111],[1709648654000,111],[1709648655000,111],[1709648656000,111],[1709648657000,111],[1709648658000,111],[1709648659000,111],[1709648660000,111],[1709648661000,111],[1709648662000,111],[1709648663000,111],[1709648664000,111],[1709648665000,111],[1709648666000,111],[1709648667000,113],[1709648668000,111],[1709648669000,111],[1709648670000,111],[1709648671000,111],[1709648672000,111],[1709648673000,111],[1709648674000,111],[1709648675000,111],[1709648676000,111],[1709648677000,111],[1709648678000,111],[1709648679000,111],[1709648680000,111],[1709648681000,112],[1709648682000,111],[1709648683000,111],[1709648684000,111],[1709648685000,111],[1709648686000,111],[1709648687000,112],[1709648688000,112],[1709648689000,111],[1709648690000,111],[1709648691000,111],[1709648692000,111],[1709648693000,111],[1709648694000,111],[1709648695000,111],[1709648696000,111],[1709648697000,111],[1709648698000,111],[1709648699000,111],[1709648700000,111],[1709648701000,112],[1709648702000,111],[1709648703000,111],[1709648704000,111],[1709648705000,111],[1709648706000,111],[1709648707000,111],[1709648708000,111],[1709648709000,111],[1709648710000,111],[1709648711000,111],[1709648712000,111],[1709648713000,111],[1709648714000,111],[1709648715000,111],[1709648716000,111],[1709648717000,111],[1709648718000,111],[1709648719000,111],[1709648720000,111],[1709648721000,111],[1709648722000,111],[1709648723000,108]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#68b65c',
name: 'débitos',
data: [
[1709648479000,0],[1709648480000,0],[1709648481000,0],[1709648482000,0],[1709648483000,1],[1709648484000,2],[1709648485000,4],[1709648486000,6],[1709648487000,7],[1709648488000,9],[1709648489000,11],[1709648490000,13],[1709648491000,15],[1709648492000,16],[1709648493000,19],[1709648494000,20],[1709648495000,22],[1709648496000,24],[1709648497000,25],[1709648498000,28],[1709648499000,29],[1709648500000,31],[1709648501000,40],[1709648502000,35],[1709648503000,37],[1709648504000,38],[1709648505000,40],[1709648506000,42],[1709648507000,45],[1709648508000,46],[1709648509000,47],[1709648510000,50],[1709648511000,52],[1709648512000,54],[1709648513000,55],[1709648514000,57],[1709648515000,60],[1709648516000,61],[1709648517000,63],[1709648518000,64],[1709648519000,67],[1709648520000,69],[1709648521000,69],[1709648522000,71],[1709648523000,74],[1709648524000,74],[1709648525000,78],[1709648526000,79],[1709648527000,80],[1709648528000,82],[1709648529000,84],[1709648530000,86],[1709648531000,88],[1709648532000,89],[1709648533000,92],[1709648534000,93],[1709648535000,95],[1709648536000,97],[1709648537000,99],[1709648538000,101],[1709648539000,103],[1709648540000,105],[1709648541000,107],[1709648542000,109],[1709648543000,111],[1709648544000,112],[1709648545000,113],[1709648546000,116],[1709648547000,117],[1709648548000,120],[1709648549000,120],[1709648550000,124],[1709648551000,125],[1709648552000,127],[1709648553000,129],[1709648554000,130],[1709648555000,133],[1709648556000,133],[1709648557000,136],[1709648558000,137],[1709648559000,139],[1709648560000,141],[1709648561000,143],[1709648562000,144],[1709648563000,147],[1709648564000,148],[1709648565000,151],[1709648566000,187],[1709648567000,154],[1709648568000,156],[1709648569000,159],[1709648570000,173],[1709648571000,162],[1709648572000,163],[1709648573000,167],[1709648574000,167],[1709648575000,169],[1709648576000,171],[1709648577000,172],[1709648578000,174],[1709648579000,176],[1709648580000,178],[1709648581000,179],[1709648582000,183],[1709648583000,185],[1709648584000,184],[1709648585000,186],[1709648586000,188],[1709648587000,190],[1709648588000,193],[1709648589000,193],[1709648590000,196],[1709648591000,197],[1709648592000,199],[1709648593000,202],[1709648594000,203],[1709648595000,206],[1709648596000,207],[1709648597000,208],[1709648598000,214],[1709648599000,212],[1709648600000,214],[1709648601000,216],[1709648602000,218],[1709648603000,221],[1709648604000,221],[1709648605000,221],[1709648606000,221],[1709648607000,221],[1709648608000,220],[1709648609000,220],[1709648610000,221],[1709648611000,221],[1709648612000,220],[1709648613000,221],[1709648614000,221],[1709648615000,221],[1709648616000,225],[1709648617000,221],[1709648618000,220],[1709648619000,221],[1709648620000,220],[1709648621000,221],[1709648622000,221],[1709648623000,221],[1709648624000,221],[1709648625000,221],[1709648626000,221],[1709648627000,221],[1709648628000,221],[1709648629000,221],[1709648630000,221],[1709648631000,221],[1709648632000,221],[1709648633000,221],[1709648634000,221],[1709648635000,221],[1709648636000,221],[1709648637000,221],[1709648638000,222],[1709648639000,220],[1709648640000,221],[1709648641000,221],[1709648642000,222],[1709648643000,220],[1709648644000,220],[1709648645000,220],[1709648646000,221],[1709648647000,220],[1709648648000,220],[1709648649000,221],[1709648650000,221],[1709648651000,221],[1709648652000,221],[1709648653000,221],[1709648654000,221],[1709648655000,220],[1709648656000,221],[1709648657000,220],[1709648658000,221],[1709648659000,220],[1709648660000,221],[1709648661000,220],[1709648662000,221],[1709648663000,221],[1709648664000,220],[1709648665000,220],[1709648666000,221],[1709648667000,220],[1709648668000,220],[1709648669000,221],[1709648670000,221],[1709648671000,222],[1709648672000,221],[1709648673000,220],[1709648674000,221],[1709648675000,221],[1709648676000,221],[1709648677000,220],[1709648678000,221],[1709648679000,220],[1709648680000,221],[1709648681000,225],[1709648682000,221],[1709648683000,221],[1709648684000,220],[1709648685000,221],[1709648686000,221],[1709648687000,222],[1709648688000,224],[1709648689000,221],[1709648690000,220],[1709648691000,220],[1709648692000,222],[1709648693000,221],[1709648694000,220],[1709648695000,221],[1709648696000,221],[1709648697000,220],[1709648698000,221],[1709648699000,220],[1709648700000,221],[1709648701000,221],[1709648702000,220],[1709648703000,221],[1709648704000,221],[1709648705000,221],[1709648706000,221],[1709648707000,220],[1709648708000,221],[1709648709000,220],[1709648710000,221],[1709648711000,220],[1709648712000,220],[1709648713000,221],[1709648714000,220],[1709648715000,221],[1709648716000,221],[1709648717000,220],[1709648718000,221],[1709648719000,221],[1709648720000,221],[1709648721000,221],[1709648722000,220],[1709648723000,215]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#f15b4f',
name: 'extratos',
data: [
[1709648479000,0],[1709648480000,0],[1709648481000,0],[1709648482000,0],[1709648483000,1],[1709648484000,1],[1709648485000,1],[1709648486000,1],[1709648487000,1],[1709648488000,1],[1709648489000,2],[1709648490000,1],[1709648491000,2],[1709648492000,2],[1709648493000,1],[1709648494000,2],[1709648495000,2],[1709648496000,2],[1709648497000,2],[1709648498000,2],[1709648499000,2],[1709648500000,2],[1709648501000,3],[1709648502000,2],[1709648503000,3],[1709648504000,2],[1709648505000,3],[1709648506000,2],[1709648507000,3],[1709648508000,3],[1709648509000,3],[1709648510000,3],[1709648511000,3],[1709648512000,3],[1709648513000,3],[1709648514000,4],[1709648515000,3],[1709648516000,3],[1709648517000,4],[1709648518000,3],[1709648519000,4],[1709648520000,4],[1709648521000,4],[1709648522000,4],[1709648523000,4],[1709648524000,4],[1709648525000,4],[1709648526000,4],[1709648527000,4],[1709648528000,4],[1709648529000,5],[1709648530000,4],[1709648531000,5],[1709648532000,5],[1709648533000,4],[1709648534000,5],[1709648535000,5],[1709648536000,5],[1709648537000,5],[1709648538000,5],[1709648539000,5],[1709648540000,5],[1709648541000,6],[1709648542000,5],[1709648543000,6],[1709648544000,5],[1709648545000,6],[1709648546000,5],[1709648547000,6],[1709648548000,6],[1709648549000,6],[1709648550000,6],[1709648551000,6],[1709648552000,6],[1709648553000,6],[1709648554000,7],[1709648555000,6],[1709648556000,6],[1709648557000,7],[1709648558000,6],[1709648559000,7],[1709648560000,7],[1709648561000,7],[1709648562000,7],[1709648563000,7],[1709648564000,7],[1709648565000,7],[1709648566000,8],[1709648567000,7],[1709648568000,7],[1709648569000,8],[1709648570000,7],[1709648571000,8],[1709648572000,8],[1709648573000,7],[1709648574000,8],[1709648575000,8],[1709648576000,8],[1709648577000,8],[1709648578000,8],[1709648579000,8],[1709648580000,8],[1709648581000,9],[1709648582000,8],[1709648583000,9],[1709648584000,8],[1709648585000,9],[1709648586000,8],[1709648587000,9],[1709648588000,9],[1709648589000,9],[1709648590000,9],[1709648591000,9],[1709648592000,9],[1709648593000,9],[1709648594000,10],[1709648595000,9],[1709648596000,9],[1709648597000,10],[1709648598000,9],[1709648599000,10],[1709648600000,10],[1709648601000,10],[1709648602000,10],[1709648603000,10],[1709648604000,10],[1709648605000,10],[1709648606000,10],[1709648607000,10],[1709648608000,10],[1709648609000,10],[1709648610000,10],[1709648611000,10],[1709648612000,10],[1709648613000,10],[1709648614000,10],[1709648615000,10],[1709648616000,10],[1709648617000,10],[1709648618000,10],[1709648619000,10],[1709648620000,10],[1709648621000,10],[1709648622000,10],[1709648623000,10],[1709648624000,10],[1709648625000,10],[1709648626000,10],[1709648627000,10],[1709648628000,10],[1709648629000,10],[1709648630000,10],[1709648631000,10],[1709648632000,10],[1709648633000,10],[1709648634000,10],[1709648635000,10],[1709648636000,10],[1709648637000,10],[1709648638000,10],[1709648639000,10],[1709648640000,10],[1709648641000,10],[1709648642000,10],[1709648643000,10],[1709648644000,10],[1709648645000,10],[1709648646000,10],[1709648647000,10],[1709648648000,10],[1709648649000,10],[1709648650000,10],[1709648651000,10],[1709648652000,10],[1709648653000,10],[1709648654000,10],[1709648655000,10],[1709648656000,10],[1709648657000,10],[1709648658000,10],[1709648659000,10],[1709648660000,10],[1709648661000,10],[1709648662000,10],[1709648663000,10],[1709648664000,10],[1709648665000,10],[1709648666000,10],[1709648667000,10],[1709648668000,10],[1709648669000,10],[1709648670000,10],[1709648671000,10],[1709648672000,10],[1709648673000,10],[1709648674000,10],[1709648675000,10],[1709648676000,10],[1709648677000,10],[1709648678000,10],[1709648679000,10],[1709648680000,10],[1709648681000,10],[1709648682000,10],[1709648683000,10],[1709648684000,10],[1709648685000,10],[1709648686000,10],[1709648687000,10],[1709648688000,10],[1709648689000,10],[1709648690000,10],[1709648691000,10],[1709648692000,10],[1709648693000,10],[1709648694000,10],[1709648695000,10],[1709648696000,10],[1709648697000,10],[1709648698000,10],[1709648699000,10],[1709648700000,10],[1709648701000,10],[1709648702000,10],[1709648703000,10],[1709648704000,10],[1709648705000,10],[1709648706000,10],[1709648707000,10],[1709648708000,10],[1709648709000,10],[1709648710000,10],[1709648711000,10],[1709648712000,10],[1709648713000,10],[1709648714000,10],[1709648715000,10],[1709648716000,10],[1709648717000,10],[1709648718000,10],[1709648719000,10],[1709648720000,10],[1709648721000,10],[1709648722000,10],[1709648723000,9]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FFDD00',
name: 'validação HTTP 404',
data: [
[1709648479000,0],[1709648480000,0],[1709648481000,0],[1709648482000,1],[1709648483000,0],[1709648484000,0],[1709648485000,0],[1709648486000,0],[1709648487000,0],[1709648488000,0],[1709648489000,0],[1709648490000,0],[1709648491000,0],[1709648492000,0],[1709648493000,0],[1709648494000,0],[1709648495000,0],[1709648496000,0],[1709648497000,0],[1709648498000,0],[1709648499000,0],[1709648500000,0],[1709648501000,0],[1709648502000,0],[1709648503000,0],[1709648504000,0],[1709648505000,0],[1709648506000,0],[1709648507000,0],[1709648508000,0],[1709648509000,0],[1709648510000,0],[1709648511000,0],[1709648512000,0],[1709648513000,0],[1709648514000,0],[1709648515000,0],[1709648516000,0],[1709648517000,0],[1709648518000,0],[1709648519000,0],[1709648520000,0],[1709648521000,0],[1709648522000,0],[1709648523000,0],[1709648524000,0],[1709648525000,0],[1709648526000,0],[1709648527000,0],[1709648528000,0],[1709648529000,0],[1709648530000,0],[1709648531000,0],[1709648532000,0],[1709648533000,0],[1709648534000,0],[1709648535000,0],[1709648536000,0],[1709648537000,0],[1709648538000,0],[1709648539000,0],[1709648540000,0],[1709648541000,0],[1709648542000,0],[1709648543000,0],[1709648544000,0],[1709648545000,0],[1709648546000,0],[1709648547000,0],[1709648548000,0],[1709648549000,0],[1709648550000,0],[1709648551000,0],[1709648552000,0],[1709648553000,0],[1709648554000,0],[1709648555000,0],[1709648556000,0],[1709648557000,0],[1709648558000,0],[1709648559000,0],[1709648560000,0],[1709648561000,0],[1709648562000,0],[1709648563000,0],[1709648564000,0],[1709648565000,0],[1709648566000,0],[1709648567000,0],[1709648568000,0],[1709648569000,0],[1709648570000,0],[1709648571000,0],[1709648572000,0],[1709648573000,0],[1709648574000,0],[1709648575000,0],[1709648576000,0],[1709648577000,0],[1709648578000,0],[1709648579000,0],[1709648580000,0],[1709648581000,0],[1709648582000,0],[1709648583000,0],[1709648584000,0],[1709648585000,0],[1709648586000,0],[1709648587000,0],[1709648588000,0],[1709648589000,0],[1709648590000,0],[1709648591000,0],[1709648592000,0],[1709648593000,0],[1709648594000,0],[1709648595000,0],[1709648596000,0],[1709648597000,0],[1709648598000,0],[1709648599000,0],[1709648600000,0],[1709648601000,0],[1709648602000,0],[1709648603000,0],[1709648604000,0],[1709648605000,0],[1709648606000,0],[1709648607000,0],[1709648608000,0],[1709648609000,0],[1709648610000,0],[1709648611000,0],[1709648612000,0],[1709648613000,0],[1709648614000,0],[1709648615000,0],[1709648616000,0],[1709648617000,0],[1709648618000,0],[1709648619000,0],[1709648620000,0],[1709648621000,0],[1709648622000,0],[1709648623000,0],[1709648624000,0],[1709648625000,0],[1709648626000,0],[1709648627000,0],[1709648628000,0],[1709648629000,0],[1709648630000,0],[1709648631000,0],[1709648632000,0],[1709648633000,0],[1709648634000,0],[1709648635000,0],[1709648636000,0],[1709648637000,0],[1709648638000,0],[1709648639000,0],[1709648640000,0],[1709648641000,0],[1709648642000,0],[1709648643000,0],[1709648644000,0],[1709648645000,0],[1709648646000,0],[1709648647000,0],[1709648648000,0],[1709648649000,0],[1709648650000,0],[1709648651000,0],[1709648652000,0],[1709648653000,0],[1709648654000,0],[1709648655000,0],[1709648656000,0],[1709648657000,0],[1709648658000,0],[1709648659000,0],[1709648660000,0],[1709648661000,0],[1709648662000,0],[1709648663000,0],[1709648664000,0],[1709648665000,0],[1709648666000,0],[1709648667000,0],[1709648668000,0],[1709648669000,0],[1709648670000,0],[1709648671000,0],[1709648672000,0],[1709648673000,0],[1709648674000,0],[1709648675000,0],[1709648676000,0],[1709648677000,0],[1709648678000,0],[1709648679000,0],[1709648680000,0],[1709648681000,0],[1709648682000,0],[1709648683000,0],[1709648684000,0],[1709648685000,0],[1709648686000,0],[1709648687000,0],[1709648688000,0],[1709648689000,0],[1709648690000,0],[1709648691000,0],[1709648692000,0],[1709648693000,0],[1709648694000,0],[1709648695000,0],[1709648696000,0],[1709648697000,0],[1709648698000,0],[1709648699000,0],[1709648700000,0],[1709648701000,0],[1709648702000,0],[1709648703000,0],[1709648704000,0],[1709648705000,0],[1709648706000,0],[1709648707000,0],[1709648708000,0],[1709648709000,0],[1709648710000,0],[1709648711000,0],[1709648712000,0],[1709648713000,0],[1709648714000,0],[1709648715000,0],[1709648716000,0],[1709648717000,0],[1709648718000,0],[1709648719000,0],[1709648720000,0],[1709648721000,0],[1709648722000,0],[1709648723000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00D5FF',
name: 'validações',
data: [
[1709648479000,0],[1709648480000,0],[1709648481000,0],[1709648482000,5],[1709648483000,5],[1709648484000,0],[1709648485000,0],[1709648486000,0],[1709648487000,0],[1709648488000,0],[1709648489000,0],[1709648490000,0],[1709648491000,0],[1709648492000,0],[1709648493000,0],[1709648494000,0],[1709648495000,0],[1709648496000,0],[1709648497000,0],[1709648498000,0],[1709648499000,0],[1709648500000,0],[1709648501000,0],[1709648502000,0],[1709648503000,0],[1709648504000,0],[1709648505000,0],[1709648506000,0],[1709648507000,0],[1709648508000,0],[1709648509000,0],[1709648510000,0],[1709648511000,0],[1709648512000,0],[1709648513000,0],[1709648514000,0],[1709648515000,0],[1709648516000,0],[1709648517000,0],[1709648518000,0],[1709648519000,0],[1709648520000,0],[1709648521000,0],[1709648522000,0],[1709648523000,0],[1709648524000,0],[1709648525000,0],[1709648526000,0],[1709648527000,0],[1709648528000,0],[1709648529000,0],[1709648530000,0],[1709648531000,0],[1709648532000,0],[1709648533000,0],[1709648534000,0],[1709648535000,0],[1709648536000,0],[1709648537000,0],[1709648538000,0],[1709648539000,0],[1709648540000,0],[1709648541000,0],[1709648542000,0],[1709648543000,0],[1709648544000,0],[1709648545000,0],[1709648546000,0],[1709648547000,0],[1709648548000,0],[1709648549000,0],[1709648550000,0],[1709648551000,0],[1709648552000,0],[1709648553000,0],[1709648554000,0],[1709648555000,0],[1709648556000,0],[1709648557000,0],[1709648558000,0],[1709648559000,0],[1709648560000,0],[1709648561000,0],[1709648562000,0],[1709648563000,0],[1709648564000,0],[1709648565000,0],[1709648566000,0],[1709648567000,0],[1709648568000,0],[1709648569000,0],[1709648570000,0],[1709648571000,0],[1709648572000,0],[1709648573000,0],[1709648574000,0],[1709648575000,0],[1709648576000,0],[1709648577000,0],[1709648578000,0],[1709648579000,0],[1709648580000,0],[1709648581000,0],[1709648582000,0],[1709648583000,0],[1709648584000,0],[1709648585000,0],[1709648586000,0],[1709648587000,0],[1709648588000,0],[1709648589000,0],[1709648590000,0],[1709648591000,0],[1709648592000,0],[1709648593000,0],[1709648594000,0],[1709648595000,0],[1709648596000,0],[1709648597000,0],[1709648598000,0],[1709648599000,0],[1709648600000,0],[1709648601000,0],[1709648602000,0],[1709648603000,0],[1709648604000,0],[1709648605000,0],[1709648606000,0],[1709648607000,0],[1709648608000,0],[1709648609000,0],[1709648610000,0],[1709648611000,0],[1709648612000,0],[1709648613000,0],[1709648614000,0],[1709648615000,0],[1709648616000,0],[1709648617000,0],[1709648618000,0],[1709648619000,0],[1709648620000,0],[1709648621000,0],[1709648622000,0],[1709648623000,0],[1709648624000,0],[1709648625000,0],[1709648626000,0],[1709648627000,0],[1709648628000,0],[1709648629000,0],[1709648630000,0],[1709648631000,0],[1709648632000,0],[1709648633000,0],[1709648634000,0],[1709648635000,0],[1709648636000,0],[1709648637000,0],[1709648638000,0],[1709648639000,0],[1709648640000,0],[1709648641000,0],[1709648642000,0],[1709648643000,0],[1709648644000,0],[1709648645000,0],[1709648646000,0],[1709648647000,0],[1709648648000,0],[1709648649000,0],[1709648650000,0],[1709648651000,0],[1709648652000,0],[1709648653000,0],[1709648654000,0],[1709648655000,0],[1709648656000,0],[1709648657000,0],[1709648658000,0],[1709648659000,0],[1709648660000,0],[1709648661000,0],[1709648662000,0],[1709648663000,0],[1709648664000,0],[1709648665000,0],[1709648666000,0],[1709648667000,0],[1709648668000,0],[1709648669000,0],[1709648670000,0],[1709648671000,0],[1709648672000,0],[1709648673000,0],[1709648674000,0],[1709648675000,0],[1709648676000,0],[1709648677000,0],[1709648678000,0],[1709648679000,0],[1709648680000,0],[1709648681000,0],[1709648682000,0],[1709648683000,0],[1709648684000,0],[1709648685000,0],[1709648686000,0],[1709648687000,0],[1709648688000,0],[1709648689000,0],[1709648690000,0],[1709648691000,0],[1709648692000,0],[1709648693000,0],[1709648694000,0],[1709648695000,0],[1709648696000,0],[1709648697000,0],[1709648698000,0],[1709648699000,0],[1709648700000,0],[1709648701000,0],[1709648702000,0],[1709648703000,0],[1709648704000,0],[1709648705000,0],[1709648706000,0],[1709648707000,0],[1709648708000,0],[1709648709000,0],[1709648710000,0],[1709648711000,0],[1709648712000,0],[1709648713000,0],[1709648714000,0],[1709648715000,0],[1709648716000,0],[1709648717000,0],[1709648718000,0],[1709648719000,0],[1709648720000,0],[1709648721000,0],[1709648722000,0],[1709648723000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00FF00',
name: 'validação concorrência saldo - 0',
data: [
[1709648479000,0],[1709648480000,0],[1709648481000,1],[1709648482000,0],[1709648483000,0],[1709648484000,0],[1709648485000,0],[1709648486000,0],[1709648487000,0],[1709648488000,0],[1709648489000,0],[1709648490000,0],[1709648491000,0],[1709648492000,0],[1709648493000,0],[1709648494000,0],[1709648495000,0],[1709648496000,0],[1709648497000,0],[1709648498000,0],[1709648499000,0],[1709648500000,0],[1709648501000,0],[1709648502000,0],[1709648503000,0],[1709648504000,0],[1709648505000,0],[1709648506000,0],[1709648507000,0],[1709648508000,0],[1709648509000,0],[1709648510000,0],[1709648511000,0],[1709648512000,0],[1709648513000,0],[1709648514000,0],[1709648515000,0],[1709648516000,0],[1709648517000,0],[1709648518000,0],[1709648519000,0],[1709648520000,0],[1709648521000,0],[1709648522000,0],[1709648523000,0],[1709648524000,0],[1709648525000,0],[1709648526000,0],[1709648527000,0],[1709648528000,0],[1709648529000,0],[1709648530000,0],[1709648531000,0],[1709648532000,0],[1709648533000,0],[1709648534000,0],[1709648535000,0],[1709648536000,0],[1709648537000,0],[1709648538000,0],[1709648539000,0],[1709648540000,0],[1709648541000,0],[1709648542000,0],[1709648543000,0],[1709648544000,0],[1709648545000,0],[1709648546000,0],[1709648547000,0],[1709648548000,0],[1709648549000,0],[1709648550000,0],[1709648551000,0],[1709648552000,0],[1709648553000,0],[1709648554000,0],[1709648555000,0],[1709648556000,0],[1709648557000,0],[1709648558000,0],[1709648559000,0],[1709648560000,0],[1709648561000,0],[1709648562000,0],[1709648563000,0],[1709648564000,0],[1709648565000,0],[1709648566000,0],[1709648567000,0],[1709648568000,0],[1709648569000,0],[1709648570000,0],[1709648571000,0],[1709648572000,0],[1709648573000,0],[1709648574000,0],[1709648575000,0],[1709648576000,0],[1709648577000,0],[1709648578000,0],[1709648579000,0],[1709648580000,0],[1709648581000,0],[1709648582000,0],[1709648583000,0],[1709648584000,0],[1709648585000,0],[1709648586000,0],[1709648587000,0],[1709648588000,0],[1709648589000,0],[1709648590000,0],[1709648591000,0],[1709648592000,0],[1709648593000,0],[1709648594000,0],[1709648595000,0],[1709648596000,0],[1709648597000,0],[1709648598000,0],[1709648599000,0],[1709648600000,0],[1709648601000,0],[1709648602000,0],[1709648603000,0],[1709648604000,0],[1709648605000,0],[1709648606000,0],[1709648607000,0],[1709648608000,0],[1709648609000,0],[1709648610000,0],[1709648611000,0],[1709648612000,0],[1709648613000,0],[1709648614000,0],[1709648615000,0],[1709648616000,0],[1709648617000,0],[1709648618000,0],[1709648619000,0],[1709648620000,0],[1709648621000,0],[1709648622000,0],[1709648623000,0],[1709648624000,0],[1709648625000,0],[1709648626000,0],[1709648627000,0],[1709648628000,0],[1709648629000,0],[1709648630000,0],[1709648631000,0],[1709648632000,0],[1709648633000,0],[1709648634000,0],[1709648635000,0],[1709648636000,0],[1709648637000,0],[1709648638000,0],[1709648639000,0],[1709648640000,0],[1709648641000,0],[1709648642000,0],[1709648643000,0],[1709648644000,0],[1709648645000,0],[1709648646000,0],[1709648647000,0],[1709648648000,0],[1709648649000,0],[1709648650000,0],[1709648651000,0],[1709648652000,0],[1709648653000,0],[1709648654000,0],[1709648655000,0],[1709648656000,0],[1709648657000,0],[1709648658000,0],[1709648659000,0],[1709648660000,0],[1709648661000,0],[1709648662000,0],[1709648663000,0],[1709648664000,0],[1709648665000,0],[1709648666000,0],[1709648667000,0],[1709648668000,0],[1709648669000,0],[1709648670000,0],[1709648671000,0],[1709648672000,0],[1709648673000,0],[1709648674000,0],[1709648675000,0],[1709648676000,0],[1709648677000,0],[1709648678000,0],[1709648679000,0],[1709648680000,0],[1709648681000,0],[1709648682000,0],[1709648683000,0],[1709648684000,0],[1709648685000,0],[1709648686000,0],[1709648687000,0],[1709648688000,0],[1709648689000,0],[1709648690000,0],[1709648691000,0],[1709648692000,0],[1709648693000,0],[1709648694000,0],[1709648695000,0],[1709648696000,0],[1709648697000,0],[1709648698000,0],[1709648699000,0],[1709648700000,0],[1709648701000,0],[1709648702000,0],[1709648703000,0],[1709648704000,0],[1709648705000,0],[1709648706000,0],[1709648707000,0],[1709648708000,0],[1709648709000,0],[1709648710000,0],[1709648711000,0],[1709648712000,0],[1709648713000,0],[1709648714000,0],[1709648715000,0],[1709648716000,0],[1709648717000,0],[1709648718000,0],[1709648719000,0],[1709648720000,0],[1709648721000,0],[1709648722000,0],[1709648723000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#9D00FF',
name: 'validação concorrência transações - c',
data: [
[1709648479000,0],[1709648480000,25],[1709648481000,23],[1709648482000,0],[1709648483000,0],[1709648484000,0],[1709648485000,0],[1709648486000,0],[1709648487000,0],[1709648488000,0],[1709648489000,0],[1709648490000,0],[1709648491000,0],[1709648492000,0],[1709648493000,0],[1709648494000,0],[1709648495000,0],[1709648496000,0],[1709648497000,0],[1709648498000,0],[1709648499000,0],[1709648500000,0],[1709648501000,0],[1709648502000,0],[1709648503000,0],[1709648504000,0],[1709648505000,0],[1709648506000,0],[1709648507000,0],[1709648508000,0],[1709648509000,0],[1709648510000,0],[1709648511000,0],[1709648512000,0],[1709648513000,0],[1709648514000,0],[1709648515000,0],[1709648516000,0],[1709648517000,0],[1709648518000,0],[1709648519000,0],[1709648520000,0],[1709648521000,0],[1709648522000,0],[1709648523000,0],[1709648524000,0],[1709648525000,0],[1709648526000,0],[1709648527000,0],[1709648528000,0],[1709648529000,0],[1709648530000,0],[1709648531000,0],[1709648532000,0],[1709648533000,0],[1709648534000,0],[1709648535000,0],[1709648536000,0],[1709648537000,0],[1709648538000,0],[1709648539000,0],[1709648540000,0],[1709648541000,0],[1709648542000,0],[1709648543000,0],[1709648544000,0],[1709648545000,0],[1709648546000,0],[1709648547000,0],[1709648548000,0],[1709648549000,0],[1709648550000,0],[1709648551000,0],[1709648552000,0],[1709648553000,0],[1709648554000,0],[1709648555000,0],[1709648556000,0],[1709648557000,0],[1709648558000,0],[1709648559000,0],[1709648560000,0],[1709648561000,0],[1709648562000,0],[1709648563000,0],[1709648564000,0],[1709648565000,0],[1709648566000,0],[1709648567000,0],[1709648568000,0],[1709648569000,0],[1709648570000,0],[1709648571000,0],[1709648572000,0],[1709648573000,0],[1709648574000,0],[1709648575000,0],[1709648576000,0],[1709648577000,0],[1709648578000,0],[1709648579000,0],[1709648580000,0],[1709648581000,0],[1709648582000,0],[1709648583000,0],[1709648584000,0],[1709648585000,0],[1709648586000,0],[1709648587000,0],[1709648588000,0],[1709648589000,0],[1709648590000,0],[1709648591000,0],[1709648592000,0],[1709648593000,0],[1709648594000,0],[1709648595000,0],[1709648596000,0],[1709648597000,0],[1709648598000,0],[1709648599000,0],[1709648600000,0],[1709648601000,0],[1709648602000,0],[1709648603000,0],[1709648604000,0],[1709648605000,0],[1709648606000,0],[1709648607000,0],[1709648608000,0],[1709648609000,0],[1709648610000,0],[1709648611000,0],[1709648612000,0],[1709648613000,0],[1709648614000,0],[1709648615000,0],[1709648616000,0],[1709648617000,0],[1709648618000,0],[1709648619000,0],[1709648620000,0],[1709648621000,0],[1709648622000,0],[1709648623000,0],[1709648624000,0],[1709648625000,0],[1709648626000,0],[1709648627000,0],[1709648628000,0],[1709648629000,0],[1709648630000,0],[1709648631000,0],[1709648632000,0],[1709648633000,0],[1709648634000,0],[1709648635000,0],[1709648636000,0],[1709648637000,0],[1709648638000,0],[1709648639000,0],[1709648640000,0],[1709648641000,0],[1709648642000,0],[1709648643000,0],[1709648644000,0],[1709648645000,0],[1709648646000,0],[1709648647000,0],[1709648648000,0],[1709648649000,0],[1709648650000,0],[1709648651000,0],[1709648652000,0],[1709648653000,0],[1709648654000,0],[1709648655000,0],[1709648656000,0],[1709648657000,0],[1709648658000,0],[1709648659000,0],[1709648660000,0],[1709648661000,0],[1709648662000,0],[1709648663000,0],[1709648664000,0],[1709648665000,0],[1709648666000,0],[1709648667000,0],[1709648668000,0],[1709648669000,0],[1709648670000,0],[1709648671000,0],[1709648672000,0],[1709648673000,0],[1709648674000,0],[1709648675000,0],[1709648676000,0],[1709648677000,0],[1709648678000,0],[1709648679000,0],[1709648680000,0],[1709648681000,0],[1709648682000,0],[1709648683000,0],[1709648684000,0],[1709648685000,0],[1709648686000,0],[1709648687000,0],[1709648688000,0],[1709648689000,0],[1709648690000,0],[1709648691000,0],[1709648692000,0],[1709648693000,0],[1709648694000,0],[1709648695000,0],[1709648696000,0],[1709648697000,0],[1709648698000,0],[1709648699000,0],[1709648700000,0],[1709648701000,0],[1709648702000,0],[1709648703000,0],[1709648704000,0],[1709648705000,0],[1709648706000,0],[1709648707000,0],[1709648708000,0],[1709648709000,0],[1709648710000,0],[1709648711000,0],[1709648712000,0],[1709648713000,0],[1709648714000,0],[1709648715000,0],[1709648716000,0],[1709648717000,0],[1709648718000,0],[1709648719000,0],[1709648720000,0],[1709648721000,0],[1709648722000,0],[1709648723000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FF00E1',
name: 'validação concorrência saldo - -25',
data: [
[1709648479000,1],[1709648480000,1],[1709648481000,0],[1709648482000,0],[1709648483000,0],[1709648484000,0],[1709648485000,0],[1709648486000,0],[1709648487000,0],[1709648488000,0],[1709648489000,0],[1709648490000,0],[1709648491000,0],[1709648492000,0],[1709648493000,0],[1709648494000,0],[1709648495000,0],[1709648496000,0],[1709648497000,0],[1709648498000,0],[1709648499000,0],[1709648500000,0],[1709648501000,0],[1709648502000,0],[1709648503000,0],[1709648504000,0],[1709648505000,0],[1709648506000,0],[1709648507000,0],[1709648508000,0],[1709648509000,0],[1709648510000,0],[1709648511000,0],[1709648512000,0],[1709648513000,0],[1709648514000,0],[1709648515000,0],[1709648516000,0],[1709648517000,0],[1709648518000,0],[1709648519000,0],[1709648520000,0],[1709648521000,0],[1709648522000,0],[1709648523000,0],[1709648524000,0],[1709648525000,0],[1709648526000,0],[1709648527000,0],[1709648528000,0],[1709648529000,0],[1709648530000,0],[1709648531000,0],[1709648532000,0],[1709648533000,0],[1709648534000,0],[1709648535000,0],[1709648536000,0],[1709648537000,0],[1709648538000,0],[1709648539000,0],[1709648540000,0],[1709648541000,0],[1709648542000,0],[1709648543000,0],[1709648544000,0],[1709648545000,0],[1709648546000,0],[1709648547000,0],[1709648548000,0],[1709648549000,0],[1709648550000,0],[1709648551000,0],[1709648552000,0],[1709648553000,0],[1709648554000,0],[1709648555000,0],[1709648556000,0],[1709648557000,0],[1709648558000,0],[1709648559000,0],[1709648560000,0],[1709648561000,0],[1709648562000,0],[1709648563000,0],[1709648564000,0],[1709648565000,0],[1709648566000,0],[1709648567000,0],[1709648568000,0],[1709648569000,0],[1709648570000,0],[1709648571000,0],[1709648572000,0],[1709648573000,0],[1709648574000,0],[1709648575000,0],[1709648576000,0],[1709648577000,0],[1709648578000,0],[1709648579000,0],[1709648580000,0],[1709648581000,0],[1709648582000,0],[1709648583000,0],[1709648584000,0],[1709648585000,0],[1709648586000,0],[1709648587000,0],[1709648588000,0],[1709648589000,0],[1709648590000,0],[1709648591000,0],[1709648592000,0],[1709648593000,0],[1709648594000,0],[1709648595000,0],[1709648596000,0],[1709648597000,0],[1709648598000,0],[1709648599000,0],[1709648600000,0],[1709648601000,0],[1709648602000,0],[1709648603000,0],[1709648604000,0],[1709648605000,0],[1709648606000,0],[1709648607000,0],[1709648608000,0],[1709648609000,0],[1709648610000,0],[1709648611000,0],[1709648612000,0],[1709648613000,0],[1709648614000,0],[1709648615000,0],[1709648616000,0],[1709648617000,0],[1709648618000,0],[1709648619000,0],[1709648620000,0],[1709648621000,0],[1709648622000,0],[1709648623000,0],[1709648624000,0],[1709648625000,0],[1709648626000,0],[1709648627000,0],[1709648628000,0],[1709648629000,0],[1709648630000,0],[1709648631000,0],[1709648632000,0],[1709648633000,0],[1709648634000,0],[1709648635000,0],[1709648636000,0],[1709648637000,0],[1709648638000,0],[1709648639000,0],[1709648640000,0],[1709648641000,0],[1709648642000,0],[1709648643000,0],[1709648644000,0],[1709648645000,0],[1709648646000,0],[1709648647000,0],[1709648648000,0],[1709648649000,0],[1709648650000,0],[1709648651000,0],[1709648652000,0],[1709648653000,0],[1709648654000,0],[1709648655000,0],[1709648656000,0],[1709648657000,0],[1709648658000,0],[1709648659000,0],[1709648660000,0],[1709648661000,0],[1709648662000,0],[1709648663000,0],[1709648664000,0],[1709648665000,0],[1709648666000,0],[1709648667000,0],[1709648668000,0],[1709648669000,0],[1709648670000,0],[1709648671000,0],[1709648672000,0],[1709648673000,0],[1709648674000,0],[1709648675000,0],[1709648676000,0],[1709648677000,0],[1709648678000,0],[1709648679000,0],[1709648680000,0],[1709648681000,0],[1709648682000,0],[1709648683000,0],[1709648684000,0],[1709648685000,0],[1709648686000,0],[1709648687000,0],[1709648688000,0],[1709648689000,0],[1709648690000,0],[1709648691000,0],[1709648692000,0],[1709648693000,0],[1709648694000,0],[1709648695000,0],[1709648696000,0],[1709648697000,0],[1709648698000,0],[1709648699000,0],[1709648700000,0],[1709648701000,0],[1709648702000,0],[1709648703000,0],[1709648704000,0],[1709648705000,0],[1709648706000,0],[1709648707000,0],[1709648708000,0],[1709648709000,0],[1709648710000,0],[1709648711000,0],[1709648712000,0],[1709648713000,0],[1709648714000,0],[1709648715000,0],[1709648716000,0],[1709648717000,0],[1709648718000,0],[1709648719000,0],[1709648720000,0],[1709648721000,0],[1709648722000,0],[1709648723000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#AECAEB',
name: 'validação concorrência transações - d',
data: [
[1709648479000,25],[1709648480000,0],[1709648481000,0],[1709648482000,0],[1709648483000,0],[1709648484000,0],[1709648485000,0],[1709648486000,0],[1709648487000,0],[1709648488000,0],[1709648489000,0],[1709648490000,0],[1709648491000,0],[1709648492000,0],[1709648493000,0],[1709648494000,0],[1709648495000,0],[1709648496000,0],[1709648497000,0],[1709648498000,0],[1709648499000,0],[1709648500000,0],[1709648501000,0],[1709648502000,0],[1709648503000,0],[1709648504000,0],[1709648505000,0],[1709648506000,0],[1709648507000,0],[1709648508000,0],[1709648509000,0],[1709648510000,0],[1709648511000,0],[1709648512000,0],[1709648513000,0],[1709648514000,0],[1709648515000,0],[1709648516000,0],[1709648517000,0],[1709648518000,0],[1709648519000,0],[1709648520000,0],[1709648521000,0],[1709648522000,0],[1709648523000,0],[1709648524000,0],[1709648525000,0],[1709648526000,0],[1709648527000,0],[1709648528000,0],[1709648529000,0],[1709648530000,0],[1709648531000,0],[1709648532000,0],[1709648533000,0],[1709648534000,0],[1709648535000,0],[1709648536000,0],[1709648537000,0],[1709648538000,0],[1709648539000,0],[1709648540000,0],[1709648541000,0],[1709648542000,0],[1709648543000,0],[1709648544000,0],[1709648545000,0],[1709648546000,0],[1709648547000,0],[1709648548000,0],[1709648549000,0],[1709648550000,0],[1709648551000,0],[1709648552000,0],[1709648553000,0],[1709648554000,0],[1709648555000,0],[1709648556000,0],[1709648557000,0],[1709648558000,0],[1709648559000,0],[1709648560000,0],[1709648561000,0],[1709648562000,0],[1709648563000,0],[1709648564000,0],[1709648565000,0],[1709648566000,0],[1709648567000,0],[1709648568000,0],[1709648569000,0],[1709648570000,0],[1709648571000,0],[1709648572000,0],[1709648573000,0],[1709648574000,0],[1709648575000,0],[1709648576000,0],[1709648577000,0],[1709648578000,0],[1709648579000,0],[1709648580000,0],[1709648581000,0],[1709648582000,0],[1709648583000,0],[1709648584000,0],[1709648585000,0],[1709648586000,0],[1709648587000,0],[1709648588000,0],[1709648589000,0],[1709648590000,0],[1709648591000,0],[1709648592000,0],[1709648593000,0],[1709648594000,0],[1709648595000,0],[1709648596000,0],[1709648597000,0],[1709648598000,0],[1709648599000,0],[1709648600000,0],[1709648601000,0],[1709648602000,0],[1709648603000,0],[1709648604000,0],[1709648605000,0],[1709648606000,0],[1709648607000,0],[1709648608000,0],[1709648609000,0],[1709648610000,0],[1709648611000,0],[1709648612000,0],[1709648613000,0],[1709648614000,0],[1709648615000,0],[1709648616000,0],[1709648617000,0],[1709648618000,0],[1709648619000,0],[1709648620000,0],[1709648621000,0],[1709648622000,0],[1709648623000,0],[1709648624000,0],[1709648625000,0],[1709648626000,0],[1709648627000,0],[1709648628000,0],[1709648629000,0],[1709648630000,0],[1709648631000,0],[1709648632000,0],[1709648633000,0],[1709648634000,0],[1709648635000,0],[1709648636000,0],[1709648637000,0],[1709648638000,0],[1709648639000,0],[1709648640000,0],[1709648641000,0],[1709648642000,0],[1709648643000,0],[1709648644000,0],[1709648645000,0],[1709648646000,0],[1709648647000,0],[1709648648000,0],[1709648649000,0],[1709648650000,0],[1709648651000,0],[1709648652000,0],[1709648653000,0],[1709648654000,0],[1709648655000,0],[1709648656000,0],[1709648657000,0],[1709648658000,0],[1709648659000,0],[1709648660000,0],[1709648661000,0],[1709648662000,0],[1709648663000,0],[1709648664000,0],[1709648665000,0],[1709648666000,0],[1709648667000,0],[1709648668000,0],[1709648669000,0],[1709648670000,0],[1709648671000,0],[1709648672000,0],[1709648673000,0],[1709648674000,0],[1709648675000,0],[1709648676000,0],[1709648677000,0],[1709648678000,0],[1709648679000,0],[1709648680000,0],[1709648681000,0],[1709648682000,0],[1709648683000,0],[1709648684000,0],[1709648685000,0],[1709648686000,0],[1709648687000,0],[1709648688000,0],[1709648689000,0],[1709648690000,0],[1709648691000,0],[1709648692000,0],[1709648693000,0],[1709648694000,0],[1709648695000,0],[1709648696000,0],[1709648697000,0],[1709648698000,0],[1709648699000,0],[1709648700000,0],[1709648701000,0],[1709648702000,0],[1709648703000,0],[1709648704000,0],[1709648705000,0],[1709648706000,0],[1709648707000,0],[1709648708000,0],[1709648709000,0],[1709648710000,0],[1709648711000,0],[1709648712000,0],[1709648713000,0],[1709648714000,0],[1709648715000,0],[1709648716000,0],[1709648717000,0],[1709648718000,0],[1709648719000,0],[1709648720000,0],[1709648721000,0],[1709648722000,0],[1709648723000,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: ['2', '7', '12', '17', '22', '27', '32', '37', '41', '46', '51', '56', '61', '66', '71', '75', '80', '85', '90', '95', '100', '105', '110', '114', '119', '124', '129', '134', '139', '144', '149', '153', '158', '163', '168', '173', '178', '183', '187', '192', '197', '202', '207', '212', '217', '222', '226', '231', '236', '241', '246', '251', '256', '261', '265', '270', '275', '280', '285', '290', '295', '300', '304', '309', '314', '319', '324', '329', '334', '338', '343', '348', '353', '358', '363', '368', '373', '377', '382', '387', '392', '397', '402', '407', '412', '416', '421', '426', '431', '436', '441', '446', '450', '455', '460', '465', '470', '475', '480', '485'],
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: [
51.54,39.34,5.26,1.73,0.74,0.29,0.15,0.06,0.06,0.03,0.03,0.04,0.02,0.02,0.02,0.01,0.01,0.02,0.02,0.02,0.01,0.01,0.01,0.01,0.02,0.01,0.01,0.01,0.01,0.01,0.0,0.0,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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
],
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([[1709648479,[22,70,128,141,142,147,148,151,156,158]],[1709648480,null],[1709648481,[10,24,39,52,53,53,54,56,61,63]],[1709648482,null],[1709648483,[1,3,6,9,10,13,16,18,24,25]],[1709648484,[3,7,11,12,12,12,12,12,12,13]],[1709648485,[3,6,9,11,12,12,13,13,13,14]],[1709648486,[2,6,6,8,8,8,8,8,8,9]],[1709648487,[3,5,6,7,7,7,7,7,7,8]],[1709648488,[2,5,5,6,6,7,7,10,14,15]],[1709648489,[2,5,5,7,7,8,8,8,11,12]],[1709648490,[3,5,5,6,7,7,8,8,8,9]],[1709648491,[2,4,5,6,6,6,6,7,11,12]],[1709648492,[2,5,6,7,7,8,8,8,8,8]],[1709648493,[2,5,6,6,6,7,7,8,10,11]],[1709648494,[3,5,6,7,8,8,10,11,12,13]],[1709648495,[1,4,5,6,7,8,9,11,12,13]],[1709648496,[1,4,5,9,11,11,12,12,13,14]],[1709648497,[1,4,5,6,6,6,8,12,13,14]],[1709648498,[1,4,5,7,7,7,9,10,14,16]],[1709648499,[1,4,5,7,7,8,8,8,10,11]],[1709648500,[1,4,5,6,7,9,10,12,19,20]],[1709648501,[1,4,5,136,181,244,266,303,341,343]],[1709648502,[1,4,4,5,5,6,7,8,8,10]],[1709648503,[1,4,4,5,5,5,6,9,10,12]],[1709648504,[1,4,4,5,5,5,6,7,16,18]],[1709648505,[1,4,5,6,7,7,8,8,11,15]],[1709648506,[1,4,5,6,6,7,7,8,10,12]],[1709648507,[1,4,5,5,5,6,6,7,20,21]],[1709648508,[1,5,6,8,8,9,10,12,20,22]],[1709648509,[1,4,4,6,6,7,8,12,15,17]],[1709648510,[1,4,5,7,8,8,9,10,15,15]],[1709648511,[1,4,5,7,8,9,12,26,66,81]],[1709648512,[0,3,4,5,5,6,6,7,9,10]],[1709648513,[1,4,4,5,6,6,7,9,20,22]],[1709648514,[0,4,4,5,6,6,9,10,12,14]],[1709648515,[1,4,4,5,5,5,6,7,12,12]],[1709648516,[1,4,5,7,7,7,8,12,22,26]],[1709648517,[1,4,5,6,8,8,9,11,13,17]],[1709648518,[1,4,4,6,6,7,7,8,9,14]],[1709648519,[1,4,5,6,6,7,7,10,11,13]],[1709648520,[1,4,5,6,7,7,8,12,15,15]],[1709648521,[1,3,5,6,7,7,7,8,10,11]],[1709648522,[0,4,4,5,5,6,6,8,9,14]],[1709648523,[1,4,5,6,6,7,8,12,21,25]],[1709648524,[1,4,5,6,6,7,8,10,14,16]],[1709648525,[0,3,4,5,5,6,7,9,19,20]],[1709648526,[0,3,4,5,5,6,7,8,10,12]],[1709648527,[0,3,4,4,5,5,5,6,6,7]],[1709648528,[1,4,5,6,7,7,8,8,11,14]],[1709648529,[0,3,4,6,6,7,7,9,12,15]],[1709648530,[0,3,4,5,6,7,7,8,14,16]],[1709648531,[1,4,5,6,6,7,7,7,10,12]],[1709648532,[1,3,4,5,5,6,6,9,12,14]],[1709648533,[1,4,4,6,6,6,7,8,13,19]],[1709648534,[0,3,4,6,6,6,7,8,15,17]],[1709648535,[0,3,3,4,5,5,6,8,10,14]],[1709648536,[0,3,4,5,6,7,7,15,35,43]],[1709648537,[0,3,4,5,6,6,8,10,29,32]],[1709648538,[1,3,4,5,6,7,13,59,99,105]],[1709648539,[1,3,4,5,5,6,6,9,17,22]],[1709648540,[0,3,4,6,6,6,7,11,21,26]],[1709648541,[0,4,5,7,7,8,11,16,20,24]],[1709648542,[0,3,4,6,6,7,7,8,13,16]],[1709648543,[1,2,4,5,6,6,7,10,15,15]],[1709648544,[0,3,4,5,6,6,6,8,23,29]],[1709648545,[0,1,4,5,5,6,8,13,17,19]],[1709648546,[0,3,4,5,6,6,7,12,18,20]],[1709648547,[0,3,4,5,5,6,6,11,16,18]],[1709648548,[0,3,4,5,5,6,6,7,8,13]],[1709648549,[0,3,4,5,5,6,6,8,9,13]],[1709648550,[0,3,4,5,5,6,9,15,24,37]],[1709648551,[0,3,3,4,4,5,5,6,13,19]],[1709648552,[0,3,4,6,6,6,7,10,13,15]],[1709648553,[0,3,5,6,6,6,8,11,16,19]],[1709648554,[1,3,4,6,6,6,8,11,22,34]],[1709648555,[1,3,4,5,6,6,7,8,18,22]],[1709648556,[1,3,4,6,6,8,11,18,31,38]],[1709648557,[0,3,4,5,5,5,6,7,12,20]],[1709648558,[0,3,4,5,5,6,6,8,15,22]],[1709648559,[1,3,4,4,5,5,5,6,8,11]],[1709648560,[0,3,4,4,5,5,6,10,21,34]],[1709648561,[0,3,4,5,6,6,6,8,12,14]],[1709648562,[1,4,5,6,7,8,9,12,21,23]],[1709648563,[1,2,4,6,6,7,8,10,17,27]],[1709648564,[1,4,5,36,73,131,171,229,260,278]],[1709648565,[1,4,5,6,7,7,10,12,22,32]],[1709648566,[0,5,11,212,260,321,385,449,477,487]],[1709648567,[0,3,5,55,144,213,290,362,419,442]],[1709648568,[0,3,4,6,7,9,16,51,93,119]],[1709648569,[1,3,4,6,6,7,8,14,24,29]],[1709648570,[1,3,5,9,22,44,114,175,216,224]],[1709648571,[1,3,4,6,6,7,10,12,17,20]],[1709648572,[0,3,4,6,6,7,8,12,25,37]],[1709648573,[0,3,4,6,7,9,16,52,86,94]],[1709648574,[0,3,4,6,6,7,8,24,81,93]],[1709648575,[0,3,4,6,7,9,11,13,16,20]],[1709648576,[0,3,4,6,7,14,42,79,116,121]],[1709648577,[0,3,4,5,5,6,9,13,20,25]],[1709648578,[0,3,4,5,5,6,6,7,13,15]],[1709648579,[0,3,4,6,6,7,8,13,21,25]],[1709648580,[0,3,4,5,6,6,8,10,13,16]],[1709648581,[0,4,5,7,8,9,11,18,42,48]],[1709648582,[1,3,4,5,5,6,6,9,13,17]],[1709648583,[0,4,5,6,7,8,11,15,21,27]],[1709648584,[0,3,4,6,6,7,8,10,14,15]],[1709648585,[0,3,4,6,7,7,10,14,20,23]],[1709648586,[0,3,4,6,6,7,9,13,23,33]],[1709648587,[1,3,5,6,7,7,8,10,16,17]],[1709648588,[1,4,5,6,7,7,8,11,17,22]],[1709648589,[1,3,4,6,6,6,7,8,11,12]],[1709648590,[0,3,5,6,7,9,13,21,36,43]],[1709648591,[0,3,4,5,5,6,7,8,18,21]],[1709648592,[1,3,4,6,6,7,10,13,18,22]],[1709648593,[0,3,4,5,6,6,8,9,15,17]],[1709648594,[0,3,5,7,8,9,11,14,20,26]],[1709648595,[0,3,4,5,6,7,9,15,21,28]],[1709648596,[1,4,5,6,6,7,8,12,21,23]],[1709648597,[1,3,5,5,6,6,7,12,18,24]],[1709648598,[0,3,5,6,6,7,10,14,22,30]],[1709648599,[0,3,4,5,5,6,6,8,19,22]],[1709648600,[1,4,5,6,6,6,7,10,14,15]],[1709648601,[0,3,4,5,5,6,7,9,14,18]],[1709648602,[0,3,4,5,6,7,8,13,29,39]],[1709648603,[0,3,4,5,6,6,8,12,17,24]],[1709648604,[0,3,4,5,6,7,8,11,24,35]],[1709648605,[0,3,5,6,6,6,7,8,14,18]],[1709648606,[1,3,5,6,6,7,7,9,21,26]],[1709648607,[1,4,5,7,7,9,11,14,25,36]],[1709648608,[1,4,5,6,7,7,8,12,25,35]],[1709648609,[0,4,5,7,8,9,11,13,21,26]],[1709648610,[0,3,5,6,7,9,12,20,33,41]],[1709648611,[0,4,5,8,10,13,17,23,40,60]],[1709648612,[0,3,4,6,6,6,7,10,16,28]],[1709648613,[0,3,4,6,6,7,8,13,26,29]],[1709648614,[0,3,4,6,6,6,8,16,32,37]],[1709648615,[0,3,4,6,6,6,7,11,21,24]],[1709648616,[0,4,5,6,7,9,13,21,45,53]],[1709648617,[1,4,5,6,6,6,6,8,14,19]],[1709648618,[0,4,5,6,6,7,7,11,20,26]],[1709648619,[0,4,5,6,6,8,12,17,25,31]],[1709648620,[0,3,5,7,8,10,12,16,21,29]],[1709648621,[0,4,5,6,6,7,8,10,13,16]],[1709648622,[0,3,5,6,7,8,11,17,33,40]],[1709648623,[0,3,5,6,6,7,7,9,11,14]],[1709648624,[0,4,5,7,7,8,8,12,19,23]],[1709648625,[0,4,5,7,7,9,11,14,20,24]],[1709648626,[0,3,5,7,7,8,10,14,25,33]],[1709648627,[0,3,5,6,7,7,9,12,15,21]],[1709648628,[0,3,4,6,6,7,8,11,22,27]],[1709648629,[0,3,5,7,7,7,8,12,20,26]],[1709648630,[1,3,5,7,7,8,9,10,15,18]],[1709648631,[0,3,4,6,6,6,7,10,36,44]],[1709648632,[0,3,4,5,6,7,9,16,25,35]],[1709648633,[0,3,4,5,5,7,8,10,13,20]],[1709648634,[0,3,5,6,6,7,7,8,13,17]],[1709648635,[1,3,5,6,7,8,9,12,18,31]],[1709648636,[1,3,5,6,7,8,11,17,21,30]],[1709648637,[1,4,5,6,7,7,9,13,17,20]],[1709648638,[1,4,5,6,6,6,9,12,17,25]],[1709648639,[0,1,4,5,6,6,7,8,14,18]],[1709648640,[0,3,4,6,7,7,9,11,15,16]],[1709648641,[0,1,4,6,6,7,9,13,22,33]],[1709648642,[0,3,5,7,7,8,9,15,23,27]],[1709648643,[1,4,5,6,7,8,10,14,20,23]],[1709648644,[0,3,5,8,10,14,24,81,119,123]],[1709648645,[0,3,5,7,7,8,9,12,21,25]],[1709648646,[0,3,5,8,9,12,30,67,126,170]],[1709648647,[0,1,4,6,6,7,9,14,22,27]],[1709648648,[0,3,4,6,6,7,8,10,19,23]],[1709648649,[0,3,5,7,8,9,10,12,17,26]],[1709648650,[0,1,4,6,6,8,9,10,14,16]],[1709648651,[0,3,5,7,8,10,12,15,19,25]],[1709648652,[1,3,5,6,6,7,7,8,10,13]],[1709648653,[0,1,4,6,7,7,8,10,21,24]],[1709648654,[0,3,4,6,6,8,9,11,13,17]],[1709648655,[0,3,4,6,6,7,8,10,14,23]],[1709648656,[0,3,5,7,7,9,11,16,23,26]],[1709648657,[0,4,5,7,8,9,12,15,20,29]],[1709648658,[1,3,5,6,7,7,9,10,13,15]],[1709648659,[1,1,5,6,7,8,9,11,13,18]],[1709648660,[0,1,4,6,6,7,8,13,21,23]],[1709648661,[0,1,5,6,7,7,9,10,19,29]],[1709648662,[0,3,4,6,6,7,9,16,33,53]],[1709648663,[0,3,4,6,6,6,7,9,12,18]],[1709648664,[0,0,4,5,6,7,9,10,14,18]],[1709648665,[0,0,4,6,6,7,9,10,14,21]],[1709648666,[0,3,4,6,6,7,9,11,15,16]],[1709648667,[0,3,5,6,7,8,9,12,15,22]],[1709648668,[1,2,5,6,7,7,9,10,16,19]],[1709648669,[0,3,5,6,7,7,9,11,16,23]],[1709648670,[0,3,4,6,6,7,9,14,26,52]],[1709648671,[0,3,4,6,7,9,10,18,25,43]],[1709648672,[0,3,4,5,6,6,7,8,12,14]],[1709648673,[1,1,4,6,7,8,10,12,23,29]],[1709648674,[0,1,4,6,6,8,10,11,16,25]],[1709648675,[0,3,4,5,6,6,7,10,13,16]],[1709648676,[1,3,4,6,6,7,9,11,24,29]],[1709648677,[0,1,4,7,10,14,29,76,102,120]],[1709648678,[0,1,4,5,6,6,6,10,12,18]],[1709648679,[0,1,4,5,5,6,6,8,11,12]],[1709648680,[0,1,4,6,6,7,10,13,19,24]],[1709648681,[1,3,5,6,7,9,11,16,29,39]],[1709648682,[1,3,5,6,6,7,7,11,17,19]],[1709648683,[0,3,5,6,6,6,7,10,13,14]],[1709648684,[0,1,4,6,7,9,11,12,19,24]],[1709648685,[0,1,4,5,5,6,8,11,15,23]],[1709648686,[0,3,4,5,6,6,7,11,17,21]],[1709648687,[1,3,5,6,7,8,10,13,18,22]],[1709648688,[1,4,5,6,7,8,10,13,18,24]],[1709648689,[0,3,4,6,6,7,7,11,13,14]],[1709648690,[0,3,5,6,6,6,7,9,11,13]],[1709648691,[0,1,4,6,6,7,10,13,21,34]],[1709648692,[0,1,4,5,5,6,7,11,19,30]],[1709648693,[0,1,4,5,5,6,6,7,12,13]],[1709648694,[0,2,4,6,7,7,11,13,19,23]],[1709648695,[1,3,5,6,6,7,8,11,14,18]],[1709648696,[1,3,5,6,7,7,8,11,14,20]],[1709648697,[1,2,4,6,6,7,10,13,24,29]],[1709648698,[1,1,4,5,6,6,7,11,15,20]],[1709648699,[0,3,5,7,7,9,10,12,16,24]],[1709648700,[0,3,5,6,7,8,9,11,14,17]],[1709648701,[0,1,4,6,7,9,10,12,15,18]],[1709648702,[0,3,4,6,6,7,7,11,13,14]],[1709648703,[0,3,4,6,6,6,7,12,15,19]],[1709648704,[0,3,4,5,6,6,7,10,12,17]],[1709648705,[0,1,4,6,6,8,11,13,20,29]],[1709648706,[0,1,4,5,6,6,11,13,17,22]],[1709648707,[0,0,3,5,5,5,6,11,17,26]],[1709648708,[0,1,4,5,5,6,7,11,15,22]],[1709648709,[1,3,5,7,8,10,13,17,24,28]],[1709648710,[0,2,4,6,7,8,10,12,18,24]],[1709648711,[0,0,3,5,5,5,8,12,16,18]],[1709648712,[0,1,4,5,5,6,7,11,14,16]],[1709648713,[0,3,5,6,6,7,10,13,21,24]],[1709648714,[1,3,5,6,6,6,7,9,13,14]],[1709648715,[0,3,5,6,6,7,7,11,14,17]],[1709648716,[1,4,5,6,6,7,8,9,13,14]],[1709648717,[1,4,5,7,9,12,16,23,30,48]],[1709648718,[1,3,5,6,7,7,10,14,20,28]],[1709648719,[1,3,5,7,7,10,13,19,27,33]],[1709648720,[0,3,4,6,6,7,10,14,22,28]],[1709648721,[0,3,5,6,7,8,11,14,20,28]],[1709648722,[0,3,4,6,7,8,11,13,16,22]],[1709648723,[0,3,5,6,6,8,11,13,17,19]]]);
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([[1709648479,[25,25,0]],[1709648480,[1,0,1]],[1709648481,[25,25,0]],[1709648482,[1,0,1]],[1709648483,[71,70,1]],[1709648484,[3,3,0]],[1709648485,[6,6,0]],[1709648486,[9,9,0]],[1709648487,[11,11,0]],[1709648488,[13,13,0]],[1709648489,[18,18,0]],[1709648490,[19,19,0]],[1709648491,[24,24,0]],[1709648492,[26,26,0]],[1709648493,[27,27,0]],[1709648494,[32,32,0]],[1709648495,[34,34,0]],[1709648496,[37,37,0]],[1709648497,[39,39,0]],[1709648498,[43,43,0]],[1709648499,[45,45,0]],[1709648500,[48,48,0]],[1709648501,[50,50,0]],[1709648502,[54,54,0]],[1709648503,[56,56,0]],[1709648504,[60,60,0]],[1709648505,[61,61,0]],[1709648506,[65,65,0]],[1709648507,[67,67,0]],[1709648508,[70,70,0]],[1709648509,[74,74,0]],[1709648510,[76,76,0]],[1709648511,[80,80,0]],[1709648512,[81,81,0]],[1709648513,[84,84,0]],[1709648514,[89,89,0]],[1709648515,[89,89,0]],[1709648516,[93,93,0]],[1709648517,[96,96,0]],[1709648518,[98,98,0]],[1709648519,[102,102,0]],[1709648520,[104,104,0]],[1709648521,[107,107,0]],[1709648522,[109,109,0]],[1709648523,[114,114,0]],[1709648524,[115,115,0]],[1709648525,[118,118,0]],[1709648526,[121,121,0]],[1709648527,[124,124,0]],[1709648528,[126,126,0]],[1709648529,[129,129,0]],[1709648530,[133,133,0]],[1709648531,[134,134,0]],[1709648532,[139,139,0]],[1709648533,[140,140,0]],[1709648534,[144,144,0]],[1709648535,[146,146,0]],[1709648536,[149,149,0]],[1709648537,[151,151,0]],[1709648538,[155,155,0]],[1709648539,[157,157,0]],[1709648540,[160,160,0]],[1709648541,[164,164,0]],[1709648542,[167,167,0]],[1709648543,[170,170,0]],[1709648544,[170,170,0]],[1709648545,[174,174,0]],[1709648546,[177,177,0]],[1709648547,[180,180,0]],[1709648548,[183,183,0]],[1709648549,[186,186,0]],[1709648550,[188,188,0]],[1709648551,[192,192,0]],[1709648552,[194,194,0]],[1709648553,[197,197,0]],[1709648554,[198,198,0]],[1709648555,[204,204,0]],[1709648556,[205,205,0]],[1709648557,[208,208,0]],[1709648558,[211,211,0]],[1709648559,[213,213,0]],[1709648560,[217,217,0]],[1709648561,[219,219,0]],[1709648562,[222,222,0]],[1709648563,[225,225,0]],[1709648564,[228,228,0]],[1709648565,[229,229,0]],[1709648566,[234,234,0]],[1709648567,[236,236,0]],[1709648568,[239,239,0]],[1709648569,[243,243,0]],[1709648570,[244,244,0]],[1709648571,[248,248,0]],[1709648572,[251,251,0]],[1709648573,[251,251,0]],[1709648574,[257,257,0]],[1709648575,[259,259,0]],[1709648576,[262,262,0]],[1709648577,[263,263,0]],[1709648578,[267,267,0]],[1709648579,[269,269,0]],[1709648580,[273,273,0]],[1709648581,[275,275,0]],[1709648582,[279,279,0]],[1709648583,[281,281,0]],[1709648584,[284,284,0]],[1709648585,[286,286,0]],[1709648586,[290,290,0]],[1709648587,[292,292,0]],[1709648588,[295,295,0]],[1709648589,[299,299,0]],[1709648590,[300,300,0]],[1709648591,[304,304,0]],[1709648592,[306,306,0]],[1709648593,[309,309,0]],[1709648594,[312,312,0]],[1709648595,[315,315,0]],[1709648596,[317,317,0]],[1709648597,[320,320,0]],[1709648598,[323,323,0]],[1709648599,[328,328,0]],[1709648600,[329,329,0]],[1709648601,[331,331,0]],[1709648602,[334,334,0]],[1709648603,[338,338,0]],[1709648604,[340,340,0]],[1709648605,[341,341,0]],[1709648606,[339,339,0]],[1709648607,[341,341,0]],[1709648608,[340,340,0]],[1709648609,[339,339,0]],[1709648610,[341,341,0]],[1709648611,[340,340,0]],[1709648612,[339,339,0]],[1709648613,[340,340,0]],[1709648614,[341,341,0]],[1709648615,[340,340,0]],[1709648616,[339,339,0]],[1709648617,[340,340,0]],[1709648618,[341,341,0]],[1709648619,[340,340,0]],[1709648620,[340,340,0]],[1709648621,[340,340,0]],[1709648622,[340,340,0]],[1709648623,[340,340,0]],[1709648624,[340,340,0]],[1709648625,[339,339,0]],[1709648626,[341,341,0]],[1709648627,[338,338,0]],[1709648628,[342,342,0]],[1709648629,[340,340,0]],[1709648630,[340,340,0]],[1709648631,[339,339,0]],[1709648632,[340,340,0]],[1709648633,[340,340,0]],[1709648634,[341,341,0]],[1709648635,[340,340,0]],[1709648636,[340,340,0]],[1709648637,[340,340,0]],[1709648638,[340,340,0]],[1709648639,[339,339,0]],[1709648640,[340,340,0]],[1709648641,[341,341,0]],[1709648642,[340,340,0]],[1709648643,[339,339,0]],[1709648644,[341,341,0]],[1709648645,[340,340,0]],[1709648646,[339,339,0]],[1709648647,[341,341,0]],[1709648648,[340,340,0]],[1709648649,[340,340,0]],[1709648650,[339,339,0]],[1709648651,[341,341,0]],[1709648652,[340,340,0]],[1709648653,[339,339,0]],[1709648654,[341,341,0]],[1709648655,[340,340,0]],[1709648656,[340,340,0]],[1709648657,[340,340,0]],[1709648658,[340,340,0]],[1709648659,[339,339,0]],[1709648660,[341,341,0]],[1709648661,[340,340,0]],[1709648662,[340,340,0]],[1709648663,[339,339,0]],[1709648664,[340,340,0]],[1709648665,[340,340,0]],[1709648666,[341,341,0]],[1709648667,[340,340,0]],[1709648668,[340,340,0]],[1709648669,[340,340,0]],[1709648670,[339,339,0]],[1709648671,[341,341,0]],[1709648672,[340,340,0]],[1709648673,[340,340,0]],[1709648674,[339,339,0]],[1709648675,[341,341,0]],[1709648676,[340,340,0]],[1709648677,[340,340,0]],[1709648678,[339,339,0]],[1709648679,[339,339,0]],[1709648680,[342,342,0]],[1709648681,[340,340,0]],[1709648682,[340,340,0]],[1709648683,[340,340,0]],[1709648684,[339,339,0]],[1709648685,[340,340,0]],[1709648686,[340,340,0]],[1709648687,[341,341,0]],[1709648688,[340,340,0]],[1709648689,[340,340,0]],[1709648690,[340,340,0]],[1709648691,[339,339,0]],[1709648692,[340,340,0]],[1709648693,[341,341,0]],[1709648694,[340,340,0]],[1709648695,[340,340,0]],[1709648696,[340,340,0]],[1709648697,[340,340,0]],[1709648698,[339,339,0]],[1709648699,[340,340,0]],[1709648700,[340,340,0]],[1709648701,[341,341,0]],[1709648702,[340,340,0]],[1709648703,[340,340,0]],[1709648704,[340,340,0]],[1709648705,[340,340,0]],[1709648706,[339,339,0]],[1709648707,[340,340,0]],[1709648708,[340,340,0]],[1709648709,[341,341,0]],[1709648710,[339,339,0]],[1709648711,[340,340,0]],[1709648712,[340,340,0]],[1709648713,[340,340,0]],[1709648714,[340,340,0]],[1709648715,[341,341,0]],[1709648716,[340,340,0]],[1709648717,[340,340,0]],[1709648718,[340,340,0]],[1709648719,[340,340,0]],[1709648720,[340,340,0]],[1709648721,[340,340,0]],[1709648722,[340,340,0]],[1709648723,[501,501,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'