-
Notifications
You must be signed in to change notification settings - Fork 925
/
index.html
1195 lines (1125 loc) · 94 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="shortcut icon" type="image/x-icon" href="style/favicon.ico"/>
<link href="style/style.css" rel="stylesheet" type="text/css" />
<link href="style/bootstrap.min.css" rel="stylesheet" type="text/css" />
<script src="js/jquery-3.5.1.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/gatling.js"></script>
<script src="js/menu.js"></script>
<script src="js/ellipsis.js"></script>
<script src="js/all_sessions.js"></script>
<script src="js/stats.js"></script>
<script src="js/highstock.js"></script>
<script src="js/highcharts-more.js"></script>
<script src="js/theme.js"></script>
<script src="js/unpack.js"></script>
<title>Gatling Stats - Global Information</title>
</head>
<body>
<script>
const storedTheme = localStorage.getItem('theme') || (window.matchMedia("(prefers-color-scheme: dark)").matches ? "dark" : "light");
if (storedTheme) document.documentElement.setAttribute('data-theme', storedTheme)
function toggleTheme() {
const currentTheme = document.documentElement.getAttribute("data-theme");
const targetTheme = currentTheme === "light" ? "dark" : "light";
document.documentElement.setAttribute('data-theme', targetTheme)
localStorage.setItem('theme', targetTheme);
};
</script>
<div class="app-container">
<div class="frise"></div>
<div class="head">
<div class="gatling-open-source">
<a class="gatling-logo gatling-logo-light" href="https://gatling.io" target="blank_" title="Gatling Home Page"><img alt="Gatling" src="style/logo-light.svg"/></a>
<a class="gatling-logo gatling-logo-dark" href="https://gatling.io" target="blank_" title="Gatling Home Page"><img alt="Gatling" src="style/logo-dark.svg"/></a>
<a class="gatling-documentation" href="https://gatling.io/docs/" target="_blank">Documentation</a>
</div>
<div class="nav spacer"></div>
<a class="enterprise" href="https://gatling.io/enterprise/next-step/" target="_blank"><strong>Try</strong>
<img class="logo-enterprise-light" alt="Gatling Enterprise" src="style/logo-enterprise-light.svg"/>
<img class="logo-enterprise-dark" alt="Gatling Enterprise" src="style/logo-enterprise-dark.svg"/>
</a>
<button id="theme-toggle" class="theme-toggle" type="button" onclick="toggleTheme()" aria-label="Toggle user interface mode">
<span class="toggle-dark"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-moon"><path d="M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z"></path></svg></span>
<span class="toggle-light"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-sun"><circle cx="12" cy="12" r="5"></circle><line x1="12" y1="1" x2="12" y2="3"></line><line x1="12" y1="21" x2="12" y2="23"></line><line x1="4.22" y1="4.22" x2="5.64" y2="5.64"></line><line x1="18.36" y1="18.36" x2="19.78" y2="19.78"></line><line x1="1" y1="12" x2="3" y2="12"></line><line x1="21" y1="12" x2="23" y2="12"></line><line x1="4.22" y1="19.78" x2="5.64" y2="18.36"></line><line x1="18.36" y1="5.64" x2="19.78" y2="4.22"></line></svg></span>
</button>
</div>
<div class="container details">
<div class="nav">
<ul></ul>
</div>
<div class="cadre">
<div class="content">
<div class="content-header">
<div class="onglet">
RinhaBackendCrebitosSimulation
</div>
<div class="sous-menu" id="sousMenu">
<div class="sous-menu-spacer">
<div class="item ouvert"><a href="index.html">Global</a></div>
<div class="item "><a id="details_link" href="#">Details</a></div>
</div>
</div>
</div>
<div class="content-in">
<div class="container-article">
<div class="article">
<div class="schema-container">
<div id="ranges" class="schema ranges">
</div>
<div class="schema polar">
<div id="container_number_of_requests"></div>
</div>
<div class="simulation-card">
<div class="simulation-version-information">
<span class="simulation-information-title">Gatling Version</span>
<span class="simulation-information-item">
<span class="simulation-information-label">Version: </span>
<span>3.10.3</span>
</span>
<span class="simulation-information-item">
<span class="simulation-information-label">Released: </span>
<span>2023-12-20</span>
</span>
</div>
<div id="simulation-information" class="simulation-version-information">
<span class="simulation-information-title">Run Information</span>
<div class="simulation-information-container">
<span class="simulation-information-item">
<span class="simulation-information-label">Date: </span>
<span>2024-02-19 11:25:52 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 - marcusadriano-go">
<span class="simulation-information-label">Description: </span>
<span>Rinha de Backend - 2024/Q1: Crébito - marcusadriano-go</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">status.find.in(200), but actually found 500<span class="value" style="display:none">0</span></td>
<td class="value error-col-2 total ko">1</td>
<td class="value error-col-3 total ko">100 %</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: [
[1708341952000,0],[1708341953000,0],[1708341954000,0],[1708341955000,0],[1708341956000,1],[1708341957000,2],[1708341958000,2],[1708341959000,4],[1708341960000,4],[1708341961000,5],[1708341962000,6],[1708341963000,7],[1708341964000,8],[1708341965000,8],[1708341966000,10],[1708341967000,10],[1708341968000,12],[1708341969000,12],[1708341970000,14],[1708341971000,14],[1708341972000,15],[1708341973000,16],[1708341974000,17],[1708341975000,17],[1708341976000,19],[1708341977000,20],[1708341978000,20],[1708341979000,22],[1708341980000,22],[1708341981000,23],[1708341982000,25],[1708341983000,25],[1708341984000,26],[1708341985000,26],[1708341986000,28],[1708341987000,29],[1708341988000,30],[1708341989000,30],[1708341990000,32],[1708341991000,32],[1708341992000,33],[1708341993000,34],[1708341994000,35],[1708341995000,36],[1708341996000,37],[1708341997000,38],[1708341998000,39],[1708341999000,39],[1708342000000,41],[1708342001000,41],[1708342002000,43],[1708342003000,43],[1708342004000,44],[1708342005000,45],[1708342006000,46],[1708342007000,47],[1708342008000,48],[1708342009000,48],[1708342010000,50],[1708342011000,50],[1708342012000,52],[1708342013000,52],[1708342014000,53],[1708342015000,54],[1708342016000,56],[1708342017000,55],[1708342018000,57],[1708342019000,59],[1708342020000,60],[1708342021000,60],[1708342022000,62],[1708342023000,62],[1708342024000,64],[1708342025000,64],[1708342026000,65],[1708342027000,66],[1708342028000,67],[1708342029000,68],[1708342030000,69],[1708342031000,69],[1708342032000,71],[1708342033000,70],[1708342034000,72],[1708342035000,73],[1708342036000,74],[1708342037000,74],[1708342038000,75],[1708342039000,76],[1708342040000,77],[1708342041000,78],[1708342042000,79],[1708342043000,79],[1708342044000,82],[1708342045000,81],[1708342046000,82],[1708342047000,83],[1708342048000,85],[1708342049000,85],[1708342050000,86],[1708342051000,86],[1708342052000,88],[1708342053000,89],[1708342054000,89],[1708342055000,91],[1708342056000,91],[1708342057000,92],[1708342058000,94],[1708342059000,94],[1708342060000,95],[1708342061000,96],[1708342062000,97],[1708342063000,98],[1708342064000,99],[1708342065000,99],[1708342066000,101],[1708342067000,101],[1708342068000,103],[1708342069000,103],[1708342070000,104],[1708342071000,105],[1708342072000,106],[1708342073000,107],[1708342074000,107],[1708342075000,109],[1708342076000,110],[1708342077000,110],[1708342078000,110],[1708342079000,110],[1708342080000,111],[1708342081000,110],[1708342082000,110],[1708342083000,110],[1708342084000,110],[1708342085000,110],[1708342086000,110],[1708342087000,110],[1708342088000,110],[1708342089000,110],[1708342090000,110],[1708342091000,110],[1708342092000,110],[1708342093000,110],[1708342094000,110],[1708342095000,110],[1708342096000,110],[1708342097000,110],[1708342098000,110],[1708342099000,110],[1708342100000,110],[1708342101000,110],[1708342102000,110],[1708342103000,110],[1708342104000,110],[1708342105000,110],[1708342106000,110],[1708342107000,110],[1708342108000,110],[1708342109000,110],[1708342110000,110],[1708342111000,111],[1708342112000,110],[1708342113000,111],[1708342114000,110],[1708342115000,110],[1708342116000,110],[1708342117000,110],[1708342118000,110],[1708342119000,110],[1708342120000,110],[1708342121000,110],[1708342122000,110],[1708342123000,110],[1708342124000,110],[1708342125000,110],[1708342126000,111],[1708342127000,110],[1708342128000,110],[1708342129000,110],[1708342130000,110],[1708342131000,110],[1708342132000,110],[1708342133000,110],[1708342134000,110],[1708342135000,110],[1708342136000,110],[1708342137000,110],[1708342138000,110],[1708342139000,110],[1708342140000,110],[1708342141000,110],[1708342142000,110],[1708342143000,110],[1708342144000,110],[1708342145000,110],[1708342146000,110],[1708342147000,110],[1708342148000,110],[1708342149000,110],[1708342150000,110],[1708342151000,110],[1708342152000,110],[1708342153000,110],[1708342154000,110],[1708342155000,110],[1708342156000,110],[1708342157000,110],[1708342158000,112],[1708342159000,110],[1708342160000,110],[1708342161000,110],[1708342162000,111],[1708342163000,110],[1708342164000,110],[1708342165000,110],[1708342166000,111],[1708342167000,110],[1708342168000,110],[1708342169000,110],[1708342170000,110],[1708342171000,111],[1708342172000,110],[1708342173000,110],[1708342174000,110],[1708342175000,110],[1708342176000,111],[1708342177000,110],[1708342178000,110],[1708342179000,110],[1708342180000,110],[1708342181000,110],[1708342182000,110],[1708342183000,110],[1708342184000,110],[1708342185000,110],[1708342186000,110],[1708342187000,110],[1708342188000,110],[1708342189000,110],[1708342190000,110],[1708342191000,110],[1708342192000,110],[1708342193000,110],[1708342194000,110],[1708342195000,110],[1708342196000,108]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#68b65c',
name: 'débitos',
data: [
[1708341952000,0],[1708341953000,0],[1708341954000,0],[1708341955000,0],[1708341956000,1],[1708341957000,2],[1708341958000,4],[1708341959000,6],[1708341960000,7],[1708341961000,9],[1708341962000,11],[1708341963000,13],[1708341964000,15],[1708341965000,16],[1708341966000,19],[1708341967000,20],[1708341968000,22],[1708341969000,24],[1708341970000,25],[1708341971000,28],[1708341972000,29],[1708341973000,31],[1708341974000,33],[1708341975000,35],[1708341976000,37],[1708341977000,38],[1708341978000,40],[1708341979000,42],[1708341980000,44],[1708341981000,46],[1708341982000,47],[1708341983000,50],[1708341984000,51],[1708341985000,53],[1708341986000,55],[1708341987000,57],[1708341988000,60],[1708341989000,60],[1708341990000,63],[1708341991000,65],[1708341992000,67],[1708341993000,69],[1708341994000,70],[1708341995000,72],[1708341996000,74],[1708341997000,74],[1708341998000,77],[1708341999000,79],[1708342000000,80],[1708342001000,82],[1708342002000,84],[1708342003000,86],[1708342004000,88],[1708342005000,89],[1708342006000,92],[1708342007000,93],[1708342008000,95],[1708342009000,97],[1708342010000,98],[1708342011000,101],[1708342012000,102],[1708342013000,104],[1708342014000,106],[1708342015000,108],[1708342016000,110],[1708342017000,111],[1708342018000,113],[1708342019000,115],[1708342020000,118],[1708342021000,120],[1708342022000,120],[1708342023000,124],[1708342024000,125],[1708342025000,127],[1708342026000,128],[1708342027000,129],[1708342028000,132],[1708342029000,134],[1708342030000,135],[1708342031000,137],[1708342032000,140],[1708342033000,142],[1708342034000,143],[1708342035000,144],[1708342036000,147],[1708342037000,147],[1708342038000,150],[1708342039000,152],[1708342040000,153],[1708342041000,155],[1708342042000,157],[1708342043000,159],[1708342044000,161],[1708342045000,162],[1708342046000,165],[1708342047000,166],[1708342048000,168],[1708342049000,170],[1708342050000,171],[1708342051000,174],[1708342052000,176],[1708342053000,178],[1708342054000,180],[1708342055000,182],[1708342056000,184],[1708342057000,185],[1708342058000,187],[1708342059000,188],[1708342060000,191],[1708342061000,192],[1708342062000,194],[1708342063000,197],[1708342064000,198],[1708342065000,199],[1708342066000,201],[1708342067000,202],[1708342068000,205],[1708342069000,208],[1708342070000,209],[1708342071000,211],[1708342072000,213],[1708342073000,214],[1708342074000,216],[1708342075000,217],[1708342076000,221],[1708342077000,220],[1708342078000,221],[1708342079000,220],[1708342080000,222],[1708342081000,220],[1708342082000,220],[1708342083000,220],[1708342084000,222],[1708342085000,220],[1708342086000,221],[1708342087000,220],[1708342088000,221],[1708342089000,220],[1708342090000,221],[1708342091000,220],[1708342092000,221],[1708342093000,220],[1708342094000,221],[1708342095000,221],[1708342096000,220],[1708342097000,220],[1708342098000,221],[1708342099000,220],[1708342100000,220],[1708342101000,220],[1708342102000,220],[1708342103000,220],[1708342104000,220],[1708342105000,220],[1708342106000,220],[1708342107000,220],[1708342108000,220],[1708342109000,220],[1708342110000,220],[1708342111000,221],[1708342112000,220],[1708342113000,221],[1708342114000,220],[1708342115000,221],[1708342116000,221],[1708342117000,220],[1708342118000,220],[1708342119000,220],[1708342120000,220],[1708342121000,221],[1708342122000,220],[1708342123000,220],[1708342124000,220],[1708342125000,220],[1708342126000,220],[1708342127000,220],[1708342128000,220],[1708342129000,220],[1708342130000,220],[1708342131000,221],[1708342132000,220],[1708342133000,221],[1708342134000,220],[1708342135000,220],[1708342136000,220],[1708342137000,221],[1708342138000,220],[1708342139000,222],[1708342140000,221],[1708342141000,221],[1708342142000,220],[1708342143000,221],[1708342144000,220],[1708342145000,221],[1708342146000,220],[1708342147000,221],[1708342148000,220],[1708342149000,220],[1708342150000,220],[1708342151000,220],[1708342152000,221],[1708342153000,220],[1708342154000,221],[1708342155000,220],[1708342156000,221],[1708342157000,220],[1708342158000,220],[1708342159000,220],[1708342160000,221],[1708342161000,220],[1708342162000,222],[1708342163000,220],[1708342164000,221],[1708342165000,220],[1708342166000,221],[1708342167000,220],[1708342168000,221],[1708342169000,220],[1708342170000,221],[1708342171000,222],[1708342172000,221],[1708342173000,220],[1708342174000,221],[1708342175000,220],[1708342176000,220],[1708342177000,220],[1708342178000,220],[1708342179000,220],[1708342180000,220],[1708342181000,220],[1708342182000,220],[1708342183000,220],[1708342184000,220],[1708342185000,220],[1708342186000,220],[1708342187000,220],[1708342188000,220],[1708342189000,220],[1708342190000,220],[1708342191000,220],[1708342192000,220],[1708342193000,220],[1708342194000,220],[1708342195000,220],[1708342196000,217]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#f15b4f',
name: 'extratos',
data: [
[1708341952000,0],[1708341953000,0],[1708341954000,0],[1708341955000,0],[1708341956000,1],[1708341957000,1],[1708341958000,1],[1708341959000,1],[1708341960000,1],[1708341961000,1],[1708341962000,2],[1708341963000,1],[1708341964000,2],[1708341965000,2],[1708341966000,1],[1708341967000,2],[1708341968000,2],[1708341969000,2],[1708341970000,2],[1708341971000,2],[1708341972000,2],[1708341973000,2],[1708341974000,3],[1708341975000,2],[1708341976000,3],[1708341977000,2],[1708341978000,3],[1708341979000,2],[1708341980000,3],[1708341981000,3],[1708341982000,3],[1708341983000,3],[1708341984000,3],[1708341985000,3],[1708341986000,3],[1708341987000,4],[1708341988000,3],[1708341989000,3],[1708341990000,4],[1708341991000,3],[1708341992000,4],[1708341993000,4],[1708341994000,4],[1708341995000,4],[1708341996000,4],[1708341997000,4],[1708341998000,4],[1708341999000,4],[1708342000000,4],[1708342001000,4],[1708342002000,5],[1708342003000,4],[1708342004000,5],[1708342005000,5],[1708342006000,4],[1708342007000,5],[1708342008000,5],[1708342009000,5],[1708342010000,5],[1708342011000,5],[1708342012000,5],[1708342013000,5],[1708342014000,6],[1708342015000,5],[1708342016000,6],[1708342017000,5],[1708342018000,6],[1708342019000,5],[1708342020000,6],[1708342021000,6],[1708342022000,6],[1708342023000,6],[1708342024000,6],[1708342025000,6],[1708342026000,6],[1708342027000,7],[1708342028000,6],[1708342029000,6],[1708342030000,7],[1708342031000,6],[1708342032000,7],[1708342033000,7],[1708342034000,7],[1708342035000,7],[1708342036000,7],[1708342037000,7],[1708342038000,7],[1708342039000,7],[1708342040000,7],[1708342041000,7],[1708342042000,8],[1708342043000,7],[1708342044000,8],[1708342045000,8],[1708342046000,7],[1708342047000,8],[1708342048000,8],[1708342049000,8],[1708342050000,8],[1708342051000,8],[1708342052000,8],[1708342053000,8],[1708342054000,9],[1708342055000,8],[1708342056000,9],[1708342057000,8],[1708342058000,9],[1708342059000,8],[1708342060000,9],[1708342061000,9],[1708342062000,9],[1708342063000,9],[1708342064000,9],[1708342065000,9],[1708342066000,9],[1708342067000,10],[1708342068000,9],[1708342069000,9],[1708342070000,10],[1708342071000,9],[1708342072000,10],[1708342073000,10],[1708342074000,10],[1708342075000,10],[1708342076000,10],[1708342077000,10],[1708342078000,10],[1708342079000,10],[1708342080000,10],[1708342081000,10],[1708342082000,10],[1708342083000,10],[1708342084000,10],[1708342085000,10],[1708342086000,10],[1708342087000,10],[1708342088000,10],[1708342089000,10],[1708342090000,10],[1708342091000,10],[1708342092000,10],[1708342093000,10],[1708342094000,10],[1708342095000,10],[1708342096000,10],[1708342097000,10],[1708342098000,10],[1708342099000,10],[1708342100000,10],[1708342101000,10],[1708342102000,10],[1708342103000,10],[1708342104000,10],[1708342105000,10],[1708342106000,10],[1708342107000,10],[1708342108000,10],[1708342109000,10],[1708342110000,10],[1708342111000,10],[1708342112000,10],[1708342113000,10],[1708342114000,10],[1708342115000,10],[1708342116000,10],[1708342117000,10],[1708342118000,10],[1708342119000,10],[1708342120000,10],[1708342121000,10],[1708342122000,10],[1708342123000,10],[1708342124000,10],[1708342125000,10],[1708342126000,10],[1708342127000,10],[1708342128000,10],[1708342129000,10],[1708342130000,10],[1708342131000,10],[1708342132000,10],[1708342133000,10],[1708342134000,10],[1708342135000,10],[1708342136000,10],[1708342137000,10],[1708342138000,10],[1708342139000,10],[1708342140000,10],[1708342141000,10],[1708342142000,10],[1708342143000,10],[1708342144000,10],[1708342145000,10],[1708342146000,10],[1708342147000,10],[1708342148000,10],[1708342149000,10],[1708342150000,10],[1708342151000,10],[1708342152000,10],[1708342153000,10],[1708342154000,10],[1708342155000,10],[1708342156000,10],[1708342157000,10],[1708342158000,10],[1708342159000,10],[1708342160000,10],[1708342161000,10],[1708342162000,10],[1708342163000,10],[1708342164000,10],[1708342165000,10],[1708342166000,10],[1708342167000,10],[1708342168000,10],[1708342169000,10],[1708342170000,10],[1708342171000,10],[1708342172000,10],[1708342173000,10],[1708342174000,10],[1708342175000,10],[1708342176000,10],[1708342177000,10],[1708342178000,10],[1708342179000,10],[1708342180000,10],[1708342181000,10],[1708342182000,10],[1708342183000,10],[1708342184000,10],[1708342185000,10],[1708342186000,10],[1708342187000,10],[1708342188000,10],[1708342189000,10],[1708342190000,10],[1708342191000,10],[1708342192000,10],[1708342193000,10],[1708342194000,10],[1708342195000,10],[1708342196000,9]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FFDD00',
name: 'validações',
data: [
[1708341952000,0],[1708341953000,0],[1708341954000,0],[1708341955000,5],[1708341956000,5],[1708341957000,0],[1708341958000,0],[1708341959000,0],[1708341960000,0],[1708341961000,0],[1708341962000,0],[1708341963000,0],[1708341964000,0],[1708341965000,0],[1708341966000,0],[1708341967000,0],[1708341968000,0],[1708341969000,0],[1708341970000,0],[1708341971000,0],[1708341972000,0],[1708341973000,0],[1708341974000,0],[1708341975000,0],[1708341976000,0],[1708341977000,0],[1708341978000,0],[1708341979000,0],[1708341980000,0],[1708341981000,0],[1708341982000,0],[1708341983000,0],[1708341984000,0],[1708341985000,0],[1708341986000,0],[1708341987000,0],[1708341988000,0],[1708341989000,0],[1708341990000,0],[1708341991000,0],[1708341992000,0],[1708341993000,0],[1708341994000,0],[1708341995000,0],[1708341996000,0],[1708341997000,0],[1708341998000,0],[1708341999000,0],[1708342000000,0],[1708342001000,0],[1708342002000,0],[1708342003000,0],[1708342004000,0],[1708342005000,0],[1708342006000,0],[1708342007000,0],[1708342008000,0],[1708342009000,0],[1708342010000,0],[1708342011000,0],[1708342012000,0],[1708342013000,0],[1708342014000,0],[1708342015000,0],[1708342016000,0],[1708342017000,0],[1708342018000,0],[1708342019000,0],[1708342020000,0],[1708342021000,0],[1708342022000,0],[1708342023000,0],[1708342024000,0],[1708342025000,0],[1708342026000,0],[1708342027000,0],[1708342028000,0],[1708342029000,0],[1708342030000,0],[1708342031000,0],[1708342032000,0],[1708342033000,0],[1708342034000,0],[1708342035000,0],[1708342036000,0],[1708342037000,0],[1708342038000,0],[1708342039000,0],[1708342040000,0],[1708342041000,0],[1708342042000,0],[1708342043000,0],[1708342044000,0],[1708342045000,0],[1708342046000,0],[1708342047000,0],[1708342048000,0],[1708342049000,0],[1708342050000,0],[1708342051000,0],[1708342052000,0],[1708342053000,0],[1708342054000,0],[1708342055000,0],[1708342056000,0],[1708342057000,0],[1708342058000,0],[1708342059000,0],[1708342060000,0],[1708342061000,0],[1708342062000,0],[1708342063000,0],[1708342064000,0],[1708342065000,0],[1708342066000,0],[1708342067000,0],[1708342068000,0],[1708342069000,0],[1708342070000,0],[1708342071000,0],[1708342072000,0],[1708342073000,0],[1708342074000,0],[1708342075000,0],[1708342076000,0],[1708342077000,0],[1708342078000,0],[1708342079000,0],[1708342080000,0],[1708342081000,0],[1708342082000,0],[1708342083000,0],[1708342084000,0],[1708342085000,0],[1708342086000,0],[1708342087000,0],[1708342088000,0],[1708342089000,0],[1708342090000,0],[1708342091000,0],[1708342092000,0],[1708342093000,0],[1708342094000,0],[1708342095000,0],[1708342096000,0],[1708342097000,0],[1708342098000,0],[1708342099000,0],[1708342100000,0],[1708342101000,0],[1708342102000,0],[1708342103000,0],[1708342104000,0],[1708342105000,0],[1708342106000,0],[1708342107000,0],[1708342108000,0],[1708342109000,0],[1708342110000,0],[1708342111000,0],[1708342112000,0],[1708342113000,0],[1708342114000,0],[1708342115000,0],[1708342116000,0],[1708342117000,0],[1708342118000,0],[1708342119000,0],[1708342120000,0],[1708342121000,0],[1708342122000,0],[1708342123000,0],[1708342124000,0],[1708342125000,0],[1708342126000,0],[1708342127000,0],[1708342128000,0],[1708342129000,0],[1708342130000,0],[1708342131000,0],[1708342132000,0],[1708342133000,0],[1708342134000,0],[1708342135000,0],[1708342136000,0],[1708342137000,0],[1708342138000,0],[1708342139000,0],[1708342140000,0],[1708342141000,0],[1708342142000,0],[1708342143000,0],[1708342144000,0],[1708342145000,0],[1708342146000,0],[1708342147000,0],[1708342148000,0],[1708342149000,0],[1708342150000,0],[1708342151000,0],[1708342152000,0],[1708342153000,0],[1708342154000,0],[1708342155000,0],[1708342156000,0],[1708342157000,0],[1708342158000,0],[1708342159000,0],[1708342160000,0],[1708342161000,0],[1708342162000,0],[1708342163000,0],[1708342164000,0],[1708342165000,0],[1708342166000,0],[1708342167000,0],[1708342168000,0],[1708342169000,0],[1708342170000,0],[1708342171000,0],[1708342172000,0],[1708342173000,0],[1708342174000,0],[1708342175000,0],[1708342176000,0],[1708342177000,0],[1708342178000,0],[1708342179000,0],[1708342180000,0],[1708342181000,0],[1708342182000,0],[1708342183000,0],[1708342184000,0],[1708342185000,0],[1708342186000,0],[1708342187000,0],[1708342188000,0],[1708342189000,0],[1708342190000,0],[1708342191000,0],[1708342192000,0],[1708342193000,0],[1708342194000,0],[1708342195000,0],[1708342196000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00D5FF',
name: 'validação HTTP 404',
data: [
[1708341952000,0],[1708341953000,0],[1708341954000,0],[1708341955000,1],[1708341956000,0],[1708341957000,0],[1708341958000,0],[1708341959000,0],[1708341960000,0],[1708341961000,0],[1708341962000,0],[1708341963000,0],[1708341964000,0],[1708341965000,0],[1708341966000,0],[1708341967000,0],[1708341968000,0],[1708341969000,0],[1708341970000,0],[1708341971000,0],[1708341972000,0],[1708341973000,0],[1708341974000,0],[1708341975000,0],[1708341976000,0],[1708341977000,0],[1708341978000,0],[1708341979000,0],[1708341980000,0],[1708341981000,0],[1708341982000,0],[1708341983000,0],[1708341984000,0],[1708341985000,0],[1708341986000,0],[1708341987000,0],[1708341988000,0],[1708341989000,0],[1708341990000,0],[1708341991000,0],[1708341992000,0],[1708341993000,0],[1708341994000,0],[1708341995000,0],[1708341996000,0],[1708341997000,0],[1708341998000,0],[1708341999000,0],[1708342000000,0],[1708342001000,0],[1708342002000,0],[1708342003000,0],[1708342004000,0],[1708342005000,0],[1708342006000,0],[1708342007000,0],[1708342008000,0],[1708342009000,0],[1708342010000,0],[1708342011000,0],[1708342012000,0],[1708342013000,0],[1708342014000,0],[1708342015000,0],[1708342016000,0],[1708342017000,0],[1708342018000,0],[1708342019000,0],[1708342020000,0],[1708342021000,0],[1708342022000,0],[1708342023000,0],[1708342024000,0],[1708342025000,0],[1708342026000,0],[1708342027000,0],[1708342028000,0],[1708342029000,0],[1708342030000,0],[1708342031000,0],[1708342032000,0],[1708342033000,0],[1708342034000,0],[1708342035000,0],[1708342036000,0],[1708342037000,0],[1708342038000,0],[1708342039000,0],[1708342040000,0],[1708342041000,0],[1708342042000,0],[1708342043000,0],[1708342044000,0],[1708342045000,0],[1708342046000,0],[1708342047000,0],[1708342048000,0],[1708342049000,0],[1708342050000,0],[1708342051000,0],[1708342052000,0],[1708342053000,0],[1708342054000,0],[1708342055000,0],[1708342056000,0],[1708342057000,0],[1708342058000,0],[1708342059000,0],[1708342060000,0],[1708342061000,0],[1708342062000,0],[1708342063000,0],[1708342064000,0],[1708342065000,0],[1708342066000,0],[1708342067000,0],[1708342068000,0],[1708342069000,0],[1708342070000,0],[1708342071000,0],[1708342072000,0],[1708342073000,0],[1708342074000,0],[1708342075000,0],[1708342076000,0],[1708342077000,0],[1708342078000,0],[1708342079000,0],[1708342080000,0],[1708342081000,0],[1708342082000,0],[1708342083000,0],[1708342084000,0],[1708342085000,0],[1708342086000,0],[1708342087000,0],[1708342088000,0],[1708342089000,0],[1708342090000,0],[1708342091000,0],[1708342092000,0],[1708342093000,0],[1708342094000,0],[1708342095000,0],[1708342096000,0],[1708342097000,0],[1708342098000,0],[1708342099000,0],[1708342100000,0],[1708342101000,0],[1708342102000,0],[1708342103000,0],[1708342104000,0],[1708342105000,0],[1708342106000,0],[1708342107000,0],[1708342108000,0],[1708342109000,0],[1708342110000,0],[1708342111000,0],[1708342112000,0],[1708342113000,0],[1708342114000,0],[1708342115000,0],[1708342116000,0],[1708342117000,0],[1708342118000,0],[1708342119000,0],[1708342120000,0],[1708342121000,0],[1708342122000,0],[1708342123000,0],[1708342124000,0],[1708342125000,0],[1708342126000,0],[1708342127000,0],[1708342128000,0],[1708342129000,0],[1708342130000,0],[1708342131000,0],[1708342132000,0],[1708342133000,0],[1708342134000,0],[1708342135000,0],[1708342136000,0],[1708342137000,0],[1708342138000,0],[1708342139000,0],[1708342140000,0],[1708342141000,0],[1708342142000,0],[1708342143000,0],[1708342144000,0],[1708342145000,0],[1708342146000,0],[1708342147000,0],[1708342148000,0],[1708342149000,0],[1708342150000,0],[1708342151000,0],[1708342152000,0],[1708342153000,0],[1708342154000,0],[1708342155000,0],[1708342156000,0],[1708342157000,0],[1708342158000,0],[1708342159000,0],[1708342160000,0],[1708342161000,0],[1708342162000,0],[1708342163000,0],[1708342164000,0],[1708342165000,0],[1708342166000,0],[1708342167000,0],[1708342168000,0],[1708342169000,0],[1708342170000,0],[1708342171000,0],[1708342172000,0],[1708342173000,0],[1708342174000,0],[1708342175000,0],[1708342176000,0],[1708342177000,0],[1708342178000,0],[1708342179000,0],[1708342180000,0],[1708342181000,0],[1708342182000,0],[1708342183000,0],[1708342184000,0],[1708342185000,0],[1708342186000,0],[1708342187000,0],[1708342188000,0],[1708342189000,0],[1708342190000,0],[1708342191000,0],[1708342192000,0],[1708342193000,0],[1708342194000,0],[1708342195000,0],[1708342196000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00FF00',
name: 'validação concorrência saldo - 0',
data: [
[1708341952000,0],[1708341953000,0],[1708341954000,1],[1708341955000,0],[1708341956000,0],[1708341957000,0],[1708341958000,0],[1708341959000,0],[1708341960000,0],[1708341961000,0],[1708341962000,0],[1708341963000,0],[1708341964000,0],[1708341965000,0],[1708341966000,0],[1708341967000,0],[1708341968000,0],[1708341969000,0],[1708341970000,0],[1708341971000,0],[1708341972000,0],[1708341973000,0],[1708341974000,0],[1708341975000,0],[1708341976000,0],[1708341977000,0],[1708341978000,0],[1708341979000,0],[1708341980000,0],[1708341981000,0],[1708341982000,0],[1708341983000,0],[1708341984000,0],[1708341985000,0],[1708341986000,0],[1708341987000,0],[1708341988000,0],[1708341989000,0],[1708341990000,0],[1708341991000,0],[1708341992000,0],[1708341993000,0],[1708341994000,0],[1708341995000,0],[1708341996000,0],[1708341997000,0],[1708341998000,0],[1708341999000,0],[1708342000000,0],[1708342001000,0],[1708342002000,0],[1708342003000,0],[1708342004000,0],[1708342005000,0],[1708342006000,0],[1708342007000,0],[1708342008000,0],[1708342009000,0],[1708342010000,0],[1708342011000,0],[1708342012000,0],[1708342013000,0],[1708342014000,0],[1708342015000,0],[1708342016000,0],[1708342017000,0],[1708342018000,0],[1708342019000,0],[1708342020000,0],[1708342021000,0],[1708342022000,0],[1708342023000,0],[1708342024000,0],[1708342025000,0],[1708342026000,0],[1708342027000,0],[1708342028000,0],[1708342029000,0],[1708342030000,0],[1708342031000,0],[1708342032000,0],[1708342033000,0],[1708342034000,0],[1708342035000,0],[1708342036000,0],[1708342037000,0],[1708342038000,0],[1708342039000,0],[1708342040000,0],[1708342041000,0],[1708342042000,0],[1708342043000,0],[1708342044000,0],[1708342045000,0],[1708342046000,0],[1708342047000,0],[1708342048000,0],[1708342049000,0],[1708342050000,0],[1708342051000,0],[1708342052000,0],[1708342053000,0],[1708342054000,0],[1708342055000,0],[1708342056000,0],[1708342057000,0],[1708342058000,0],[1708342059000,0],[1708342060000,0],[1708342061000,0],[1708342062000,0],[1708342063000,0],[1708342064000,0],[1708342065000,0],[1708342066000,0],[1708342067000,0],[1708342068000,0],[1708342069000,0],[1708342070000,0],[1708342071000,0],[1708342072000,0],[1708342073000,0],[1708342074000,0],[1708342075000,0],[1708342076000,0],[1708342077000,0],[1708342078000,0],[1708342079000,0],[1708342080000,0],[1708342081000,0],[1708342082000,0],[1708342083000,0],[1708342084000,0],[1708342085000,0],[1708342086000,0],[1708342087000,0],[1708342088000,0],[1708342089000,0],[1708342090000,0],[1708342091000,0],[1708342092000,0],[1708342093000,0],[1708342094000,0],[1708342095000,0],[1708342096000,0],[1708342097000,0],[1708342098000,0],[1708342099000,0],[1708342100000,0],[1708342101000,0],[1708342102000,0],[1708342103000,0],[1708342104000,0],[1708342105000,0],[1708342106000,0],[1708342107000,0],[1708342108000,0],[1708342109000,0],[1708342110000,0],[1708342111000,0],[1708342112000,0],[1708342113000,0],[1708342114000,0],[1708342115000,0],[1708342116000,0],[1708342117000,0],[1708342118000,0],[1708342119000,0],[1708342120000,0],[1708342121000,0],[1708342122000,0],[1708342123000,0],[1708342124000,0],[1708342125000,0],[1708342126000,0],[1708342127000,0],[1708342128000,0],[1708342129000,0],[1708342130000,0],[1708342131000,0],[1708342132000,0],[1708342133000,0],[1708342134000,0],[1708342135000,0],[1708342136000,0],[1708342137000,0],[1708342138000,0],[1708342139000,0],[1708342140000,0],[1708342141000,0],[1708342142000,0],[1708342143000,0],[1708342144000,0],[1708342145000,0],[1708342146000,0],[1708342147000,0],[1708342148000,0],[1708342149000,0],[1708342150000,0],[1708342151000,0],[1708342152000,0],[1708342153000,0],[1708342154000,0],[1708342155000,0],[1708342156000,0],[1708342157000,0],[1708342158000,0],[1708342159000,0],[1708342160000,0],[1708342161000,0],[1708342162000,0],[1708342163000,0],[1708342164000,0],[1708342165000,0],[1708342166000,0],[1708342167000,0],[1708342168000,0],[1708342169000,0],[1708342170000,0],[1708342171000,0],[1708342172000,0],[1708342173000,0],[1708342174000,0],[1708342175000,0],[1708342176000,0],[1708342177000,0],[1708342178000,0],[1708342179000,0],[1708342180000,0],[1708342181000,0],[1708342182000,0],[1708342183000,0],[1708342184000,0],[1708342185000,0],[1708342186000,0],[1708342187000,0],[1708342188000,0],[1708342189000,0],[1708342190000,0],[1708342191000,0],[1708342192000,0],[1708342193000,0],[1708342194000,0],[1708342195000,0],[1708342196000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#9D00FF',
name: 'validação concorrência transações - c',
data: [
[1708341952000,0],[1708341953000,25],[1708341954000,20],[1708341955000,0],[1708341956000,0],[1708341957000,0],[1708341958000,0],[1708341959000,0],[1708341960000,0],[1708341961000,0],[1708341962000,0],[1708341963000,0],[1708341964000,0],[1708341965000,0],[1708341966000,0],[1708341967000,0],[1708341968000,0],[1708341969000,0],[1708341970000,0],[1708341971000,0],[1708341972000,0],[1708341973000,0],[1708341974000,0],[1708341975000,0],[1708341976000,0],[1708341977000,0],[1708341978000,0],[1708341979000,0],[1708341980000,0],[1708341981000,0],[1708341982000,0],[1708341983000,0],[1708341984000,0],[1708341985000,0],[1708341986000,0],[1708341987000,0],[1708341988000,0],[1708341989000,0],[1708341990000,0],[1708341991000,0],[1708341992000,0],[1708341993000,0],[1708341994000,0],[1708341995000,0],[1708341996000,0],[1708341997000,0],[1708341998000,0],[1708341999000,0],[1708342000000,0],[1708342001000,0],[1708342002000,0],[1708342003000,0],[1708342004000,0],[1708342005000,0],[1708342006000,0],[1708342007000,0],[1708342008000,0],[1708342009000,0],[1708342010000,0],[1708342011000,0],[1708342012000,0],[1708342013000,0],[1708342014000,0],[1708342015000,0],[1708342016000,0],[1708342017000,0],[1708342018000,0],[1708342019000,0],[1708342020000,0],[1708342021000,0],[1708342022000,0],[1708342023000,0],[1708342024000,0],[1708342025000,0],[1708342026000,0],[1708342027000,0],[1708342028000,0],[1708342029000,0],[1708342030000,0],[1708342031000,0],[1708342032000,0],[1708342033000,0],[1708342034000,0],[1708342035000,0],[1708342036000,0],[1708342037000,0],[1708342038000,0],[1708342039000,0],[1708342040000,0],[1708342041000,0],[1708342042000,0],[1708342043000,0],[1708342044000,0],[1708342045000,0],[1708342046000,0],[1708342047000,0],[1708342048000,0],[1708342049000,0],[1708342050000,0],[1708342051000,0],[1708342052000,0],[1708342053000,0],[1708342054000,0],[1708342055000,0],[1708342056000,0],[1708342057000,0],[1708342058000,0],[1708342059000,0],[1708342060000,0],[1708342061000,0],[1708342062000,0],[1708342063000,0],[1708342064000,0],[1708342065000,0],[1708342066000,0],[1708342067000,0],[1708342068000,0],[1708342069000,0],[1708342070000,0],[1708342071000,0],[1708342072000,0],[1708342073000,0],[1708342074000,0],[1708342075000,0],[1708342076000,0],[1708342077000,0],[1708342078000,0],[1708342079000,0],[1708342080000,0],[1708342081000,0],[1708342082000,0],[1708342083000,0],[1708342084000,0],[1708342085000,0],[1708342086000,0],[1708342087000,0],[1708342088000,0],[1708342089000,0],[1708342090000,0],[1708342091000,0],[1708342092000,0],[1708342093000,0],[1708342094000,0],[1708342095000,0],[1708342096000,0],[1708342097000,0],[1708342098000,0],[1708342099000,0],[1708342100000,0],[1708342101000,0],[1708342102000,0],[1708342103000,0],[1708342104000,0],[1708342105000,0],[1708342106000,0],[1708342107000,0],[1708342108000,0],[1708342109000,0],[1708342110000,0],[1708342111000,0],[1708342112000,0],[1708342113000,0],[1708342114000,0],[1708342115000,0],[1708342116000,0],[1708342117000,0],[1708342118000,0],[1708342119000,0],[1708342120000,0],[1708342121000,0],[1708342122000,0],[1708342123000,0],[1708342124000,0],[1708342125000,0],[1708342126000,0],[1708342127000,0],[1708342128000,0],[1708342129000,0],[1708342130000,0],[1708342131000,0],[1708342132000,0],[1708342133000,0],[1708342134000,0],[1708342135000,0],[1708342136000,0],[1708342137000,0],[1708342138000,0],[1708342139000,0],[1708342140000,0],[1708342141000,0],[1708342142000,0],[1708342143000,0],[1708342144000,0],[1708342145000,0],[1708342146000,0],[1708342147000,0],[1708342148000,0],[1708342149000,0],[1708342150000,0],[1708342151000,0],[1708342152000,0],[1708342153000,0],[1708342154000,0],[1708342155000,0],[1708342156000,0],[1708342157000,0],[1708342158000,0],[1708342159000,0],[1708342160000,0],[1708342161000,0],[1708342162000,0],[1708342163000,0],[1708342164000,0],[1708342165000,0],[1708342166000,0],[1708342167000,0],[1708342168000,0],[1708342169000,0],[1708342170000,0],[1708342171000,0],[1708342172000,0],[1708342173000,0],[1708342174000,0],[1708342175000,0],[1708342176000,0],[1708342177000,0],[1708342178000,0],[1708342179000,0],[1708342180000,0],[1708342181000,0],[1708342182000,0],[1708342183000,0],[1708342184000,0],[1708342185000,0],[1708342186000,0],[1708342187000,0],[1708342188000,0],[1708342189000,0],[1708342190000,0],[1708342191000,0],[1708342192000,0],[1708342193000,0],[1708342194000,0],[1708342195000,0],[1708342196000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FF00E1',
name: 'validação concorrência saldo - -25',
data: [
[1708341952000,1],[1708341953000,1],[1708341954000,0],[1708341955000,0],[1708341956000,0],[1708341957000,0],[1708341958000,0],[1708341959000,0],[1708341960000,0],[1708341961000,0],[1708341962000,0],[1708341963000,0],[1708341964000,0],[1708341965000,0],[1708341966000,0],[1708341967000,0],[1708341968000,0],[1708341969000,0],[1708341970000,0],[1708341971000,0],[1708341972000,0],[1708341973000,0],[1708341974000,0],[1708341975000,0],[1708341976000,0],[1708341977000,0],[1708341978000,0],[1708341979000,0],[1708341980000,0],[1708341981000,0],[1708341982000,0],[1708341983000,0],[1708341984000,0],[1708341985000,0],[1708341986000,0],[1708341987000,0],[1708341988000,0],[1708341989000,0],[1708341990000,0],[1708341991000,0],[1708341992000,0],[1708341993000,0],[1708341994000,0],[1708341995000,0],[1708341996000,0],[1708341997000,0],[1708341998000,0],[1708341999000,0],[1708342000000,0],[1708342001000,0],[1708342002000,0],[1708342003000,0],[1708342004000,0],[1708342005000,0],[1708342006000,0],[1708342007000,0],[1708342008000,0],[1708342009000,0],[1708342010000,0],[1708342011000,0],[1708342012000,0],[1708342013000,0],[1708342014000,0],[1708342015000,0],[1708342016000,0],[1708342017000,0],[1708342018000,0],[1708342019000,0],[1708342020000,0],[1708342021000,0],[1708342022000,0],[1708342023000,0],[1708342024000,0],[1708342025000,0],[1708342026000,0],[1708342027000,0],[1708342028000,0],[1708342029000,0],[1708342030000,0],[1708342031000,0],[1708342032000,0],[1708342033000,0],[1708342034000,0],[1708342035000,0],[1708342036000,0],[1708342037000,0],[1708342038000,0],[1708342039000,0],[1708342040000,0],[1708342041000,0],[1708342042000,0],[1708342043000,0],[1708342044000,0],[1708342045000,0],[1708342046000,0],[1708342047000,0],[1708342048000,0],[1708342049000,0],[1708342050000,0],[1708342051000,0],[1708342052000,0],[1708342053000,0],[1708342054000,0],[1708342055000,0],[1708342056000,0],[1708342057000,0],[1708342058000,0],[1708342059000,0],[1708342060000,0],[1708342061000,0],[1708342062000,0],[1708342063000,0],[1708342064000,0],[1708342065000,0],[1708342066000,0],[1708342067000,0],[1708342068000,0],[1708342069000,0],[1708342070000,0],[1708342071000,0],[1708342072000,0],[1708342073000,0],[1708342074000,0],[1708342075000,0],[1708342076000,0],[1708342077000,0],[1708342078000,0],[1708342079000,0],[1708342080000,0],[1708342081000,0],[1708342082000,0],[1708342083000,0],[1708342084000,0],[1708342085000,0],[1708342086000,0],[1708342087000,0],[1708342088000,0],[1708342089000,0],[1708342090000,0],[1708342091000,0],[1708342092000,0],[1708342093000,0],[1708342094000,0],[1708342095000,0],[1708342096000,0],[1708342097000,0],[1708342098000,0],[1708342099000,0],[1708342100000,0],[1708342101000,0],[1708342102000,0],[1708342103000,0],[1708342104000,0],[1708342105000,0],[1708342106000,0],[1708342107000,0],[1708342108000,0],[1708342109000,0],[1708342110000,0],[1708342111000,0],[1708342112000,0],[1708342113000,0],[1708342114000,0],[1708342115000,0],[1708342116000,0],[1708342117000,0],[1708342118000,0],[1708342119000,0],[1708342120000,0],[1708342121000,0],[1708342122000,0],[1708342123000,0],[1708342124000,0],[1708342125000,0],[1708342126000,0],[1708342127000,0],[1708342128000,0],[1708342129000,0],[1708342130000,0],[1708342131000,0],[1708342132000,0],[1708342133000,0],[1708342134000,0],[1708342135000,0],[1708342136000,0],[1708342137000,0],[1708342138000,0],[1708342139000,0],[1708342140000,0],[1708342141000,0],[1708342142000,0],[1708342143000,0],[1708342144000,0],[1708342145000,0],[1708342146000,0],[1708342147000,0],[1708342148000,0],[1708342149000,0],[1708342150000,0],[1708342151000,0],[1708342152000,0],[1708342153000,0],[1708342154000,0],[1708342155000,0],[1708342156000,0],[1708342157000,0],[1708342158000,0],[1708342159000,0],[1708342160000,0],[1708342161000,0],[1708342162000,0],[1708342163000,0],[1708342164000,0],[1708342165000,0],[1708342166000,0],[1708342167000,0],[1708342168000,0],[1708342169000,0],[1708342170000,0],[1708342171000,0],[1708342172000,0],[1708342173000,0],[1708342174000,0],[1708342175000,0],[1708342176000,0],[1708342177000,0],[1708342178000,0],[1708342179000,0],[1708342180000,0],[1708342181000,0],[1708342182000,0],[1708342183000,0],[1708342184000,0],[1708342185000,0],[1708342186000,0],[1708342187000,0],[1708342188000,0],[1708342189000,0],[1708342190000,0],[1708342191000,0],[1708342192000,0],[1708342193000,0],[1708342194000,0],[1708342195000,0],[1708342196000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#AECAEB',
name: 'validação concorrência transações - d',
data: [
[1708341952000,25],[1708341953000,0],[1708341954000,0],[1708341955000,0],[1708341956000,0],[1708341957000,0],[1708341958000,0],[1708341959000,0],[1708341960000,0],[1708341961000,0],[1708341962000,0],[1708341963000,0],[1708341964000,0],[1708341965000,0],[1708341966000,0],[1708341967000,0],[1708341968000,0],[1708341969000,0],[1708341970000,0],[1708341971000,0],[1708341972000,0],[1708341973000,0],[1708341974000,0],[1708341975000,0],[1708341976000,0],[1708341977000,0],[1708341978000,0],[1708341979000,0],[1708341980000,0],[1708341981000,0],[1708341982000,0],[1708341983000,0],[1708341984000,0],[1708341985000,0],[1708341986000,0],[1708341987000,0],[1708341988000,0],[1708341989000,0],[1708341990000,0],[1708341991000,0],[1708341992000,0],[1708341993000,0],[1708341994000,0],[1708341995000,0],[1708341996000,0],[1708341997000,0],[1708341998000,0],[1708341999000,0],[1708342000000,0],[1708342001000,0],[1708342002000,0],[1708342003000,0],[1708342004000,0],[1708342005000,0],[1708342006000,0],[1708342007000,0],[1708342008000,0],[1708342009000,0],[1708342010000,0],[1708342011000,0],[1708342012000,0],[1708342013000,0],[1708342014000,0],[1708342015000,0],[1708342016000,0],[1708342017000,0],[1708342018000,0],[1708342019000,0],[1708342020000,0],[1708342021000,0],[1708342022000,0],[1708342023000,0],[1708342024000,0],[1708342025000,0],[1708342026000,0],[1708342027000,0],[1708342028000,0],[1708342029000,0],[1708342030000,0],[1708342031000,0],[1708342032000,0],[1708342033000,0],[1708342034000,0],[1708342035000,0],[1708342036000,0],[1708342037000,0],[1708342038000,0],[1708342039000,0],[1708342040000,0],[1708342041000,0],[1708342042000,0],[1708342043000,0],[1708342044000,0],[1708342045000,0],[1708342046000,0],[1708342047000,0],[1708342048000,0],[1708342049000,0],[1708342050000,0],[1708342051000,0],[1708342052000,0],[1708342053000,0],[1708342054000,0],[1708342055000,0],[1708342056000,0],[1708342057000,0],[1708342058000,0],[1708342059000,0],[1708342060000,0],[1708342061000,0],[1708342062000,0],[1708342063000,0],[1708342064000,0],[1708342065000,0],[1708342066000,0],[1708342067000,0],[1708342068000,0],[1708342069000,0],[1708342070000,0],[1708342071000,0],[1708342072000,0],[1708342073000,0],[1708342074000,0],[1708342075000,0],[1708342076000,0],[1708342077000,0],[1708342078000,0],[1708342079000,0],[1708342080000,0],[1708342081000,0],[1708342082000,0],[1708342083000,0],[1708342084000,0],[1708342085000,0],[1708342086000,0],[1708342087000,0],[1708342088000,0],[1708342089000,0],[1708342090000,0],[1708342091000,0],[1708342092000,0],[1708342093000,0],[1708342094000,0],[1708342095000,0],[1708342096000,0],[1708342097000,0],[1708342098000,0],[1708342099000,0],[1708342100000,0],[1708342101000,0],[1708342102000,0],[1708342103000,0],[1708342104000,0],[1708342105000,0],[1708342106000,0],[1708342107000,0],[1708342108000,0],[1708342109000,0],[1708342110000,0],[1708342111000,0],[1708342112000,0],[1708342113000,0],[1708342114000,0],[1708342115000,0],[1708342116000,0],[1708342117000,0],[1708342118000,0],[1708342119000,0],[1708342120000,0],[1708342121000,0],[1708342122000,0],[1708342123000,0],[1708342124000,0],[1708342125000,0],[1708342126000,0],[1708342127000,0],[1708342128000,0],[1708342129000,0],[1708342130000,0],[1708342131000,0],[1708342132000,0],[1708342133000,0],[1708342134000,0],[1708342135000,0],[1708342136000,0],[1708342137000,0],[1708342138000,0],[1708342139000,0],[1708342140000,0],[1708342141000,0],[1708342142000,0],[1708342143000,0],[1708342144000,0],[1708342145000,0],[1708342146000,0],[1708342147000,0],[1708342148000,0],[1708342149000,0],[1708342150000,0],[1708342151000,0],[1708342152000,0],[1708342153000,0],[1708342154000,0],[1708342155000,0],[1708342156000,0],[1708342157000,0],[1708342158000,0],[1708342159000,0],[1708342160000,0],[1708342161000,0],[1708342162000,0],[1708342163000,0],[1708342164000,0],[1708342165000,0],[1708342166000,0],[1708342167000,0],[1708342168000,0],[1708342169000,0],[1708342170000,0],[1708342171000,0],[1708342172000,0],[1708342173000,0],[1708342174000,0],[1708342175000,0],[1708342176000,0],[1708342177000,0],[1708342178000,0],[1708342179000,0],[1708342180000,0],[1708342181000,0],[1708342182000,0],[1708342183000,0],[1708342184000,0],[1708342185000,0],[1708342186000,0],[1708342187000,0],[1708342188000,0],[1708342189000,0],[1708342190000,0],[1708342191000,0],[1708342192000,0],[1708342193000,0],[1708342194000,0],[1708342195000,0],[1708342196000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
allUsersData
]
});
allUsersChart.setTitle({
text: '<span class="chart_title">Active Users along the Simulation</span>',
useHTML: true
});
allUsersData.yAxis = 1;
var responsetimeDistributionChart = new Highcharts.Chart({
chart: {
renderTo: 'responsetimeDistributionContainer',
type: 'column',
marginBottom: 60
},
credits: { enabled: false },
legend: {
enabled: true,
floating: true,
y: 5,
borderWidth: 0,
itemStyle: { fontWeight: "normal" },
symbolRadius: 0
},
title: { text: 'A title to let highcharts reserve the place for the title set later' },
navigator: {
maskInside: false
},
xAxis: {
categories: ['1', '4', '7', '9', '12', '15', '18', '20', '23', '26', '28', '31', '34', '37', '39', '42', '45', '47', '50', '53', '56', '58', '61', '64', '66', '69', '72', '75', '77', '80', '83', '85', '88', '91', '93', '96', '99', '102', '104', '107', '110', '112', '115', '118', '121', '123', '126', '129', '131', '134', '137', '140', '142', '145', '148', '150', '153', '156', '159', '161', '164', '167', '169', '172', '175', '178', '180', '183', '186', '188', '191', '194', '196', '199', '202', '205', '207', '210', '213', '215', '218', '221', '224', '226', '229', '232', '234', '237', '240', '243', '245', '248', '251', '253', '256', '259', '262', '264', '267', '270'],
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: [
43.93,46.66,7.61,0.71,0.37,0.12,0.06,0.04,0.03,0.01,0.01,0.01,0.02,0.0,0.02,0.01,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.01,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.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
],
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([[1708341952,[27,106,118,122,126,131,132,134,138,139]],[1708341953,[3,3,3,3,3,3,3,3,3,3]],[1708341954,[5,16,24,36,37,38,39,40,42,43]],[1708341955,[3,3,3,3,3,3,3,3,3,3]],[1708341956,[0,1,4,6,7,9,10,13,21,23]],[1708341957,[4,4,4,5,5,6,6,6,6,7]],[1708341958,[3,4,4,5,5,5,5,5,5,6]],[1708341959,[3,4,4,5,5,5,5,5,5,5]],[1708341960,[3,4,4,5,5,5,5,5,5,6]],[1708341961,[3,4,4,4,4,5,5,5,5,6]],[1708341962,[2,4,4,4,4,5,5,5,6,7]],[1708341963,[3,4,4,4,4,4,4,4,4,5]],[1708341964,[2,3,4,4,4,4,4,4,5,5]],[1708341965,[2,3,4,5,5,5,6,6,6,6]],[1708341966,[2,3,4,4,5,5,6,6,9,10]],[1708341967,[2,4,4,4,4,4,5,5,5,6]],[1708341968,[2,3,4,4,4,4,5,5,8,9]],[1708341969,[1,3,4,4,4,5,6,7,8,9]],[1708341970,[2,3,3,4,4,4,5,5,10,14]],[1708341971,[2,3,4,4,4,5,5,5,6,7]],[1708341972,[1,2,3,4,4,4,5,5,6,7]],[1708341973,[1,3,3,4,4,4,4,4,8,9]],[1708341974,[2,3,3,4,4,4,4,4,4,5]],[1708341975,[1,3,3,3,4,4,4,5,10,12]],[1708341976,[1,3,3,3,3,4,4,4,5,5]],[1708341977,[1,3,3,3,4,4,4,4,5,6]],[1708341978,[1,3,3,3,3,4,4,4,5,7]],[1708341979,[1,3,3,4,4,4,4,4,6,7]],[1708341980,[1,3,3,4,4,5,5,8,52,53]],[1708341981,[1,3,3,4,4,4,5,7,11,14]],[1708341982,[1,3,3,3,3,4,4,5,7,9]],[1708341983,[1,3,3,3,4,4,5,5,10,13]],[1708341984,[1,3,3,4,4,5,5,6,7,7]],[1708341985,[1,2,3,3,4,4,4,4,6,6]],[1708341986,[1,3,3,4,4,4,5,5,7,9]],[1708341987,[1,2,3,3,3,3,4,4,4,6]],[1708341988,[1,2,3,3,3,3,3,4,4,5]],[1708341989,[1,3,3,3,3,4,4,5,6,8]],[1708341990,[1,2,3,3,4,4,4,5,5,5]],[1708341991,[1,3,3,3,4,4,4,5,6,6]],[1708341992,[1,3,3,4,4,4,5,6,8,10]],[1708341993,[1,3,3,4,4,4,5,5,8,11]],[1708341994,[1,2,3,3,3,4,4,4,6,6]],[1708341995,[1,2,3,3,3,3,4,4,5,6]],[1708341996,[1,2,3,3,3,4,4,4,8,9]],[1708341997,[1,2,3,3,4,4,4,5,7,8]],[1708341998,[1,2,3,3,3,3,4,5,5,7]],[1708341999,[1,2,3,3,3,3,3,4,5,5]],[1708342000,[1,2,2,3,3,3,3,3,4,5]],[1708342001,[1,2,2,3,3,3,3,5,7,11]],[1708342002,[1,2,2,3,3,3,3,4,7,12]],[1708342003,[1,2,3,3,3,4,4,4,7,13]],[1708342004,[1,2,3,4,4,4,4,5,6,8]],[1708342005,[1,2,3,3,3,4,4,4,5,11]],[1708342006,[1,2,3,3,3,3,4,5,5,7]],[1708342007,[1,2,3,3,3,3,4,4,5,5]],[1708342008,[1,2,2,3,3,3,3,4,6,16]],[1708342009,[1,2,3,3,3,3,3,4,5,8]],[1708342010,[0,2,2,3,3,3,3,3,4,4]],[1708342011,[1,2,3,3,3,3,3,4,6,7]],[1708342012,[1,2,2,3,3,3,3,3,10,18]],[1708342013,[1,2,2,3,3,3,4,4,6,9]],[1708342014,[1,2,3,3,4,4,4,4,6,6]],[1708342015,[1,2,3,4,4,4,5,5,7,9]],[1708342016,[1,2,2,3,3,3,4,4,5,5]],[1708342017,[1,2,2,3,3,3,4,5,15,17]],[1708342018,[1,2,3,3,3,3,4,4,4,5]],[1708342019,[1,2,3,3,3,3,3,4,4,5]],[1708342020,[1,2,2,3,3,3,3,4,6,12]],[1708342021,[1,2,2,3,3,3,4,4,9,11]],[1708342022,[0,2,2,3,3,3,3,4,9,16]],[1708342023,[1,2,2,3,3,3,4,5,10,13]],[1708342024,[1,2,2,3,3,3,3,4,23,33]],[1708342025,[0,2,2,3,3,3,4,4,5,9]],[1708342026,[0,2,2,3,3,4,4,5,8,11]],[1708342027,[1,2,2,3,3,3,3,4,5,6]],[1708342028,[1,2,3,3,3,3,4,4,6,9]],[1708342029,[0,2,2,3,3,3,4,4,5,9]],[1708342030,[0,2,2,3,3,3,3,4,7,8]],[1708342031,[1,2,2,3,3,3,4,4,7,7]],[1708342032,[1,2,2,3,3,3,3,4,6,10]],[1708342033,[0,2,2,3,3,3,3,4,6,9]],[1708342034,[0,2,2,2,2,2,3,3,7,9]],[1708342035,[0,2,2,3,3,3,4,4,6,7]],[1708342036,[1,2,2,3,3,3,4,4,5,10]],[1708342037,[1,2,3,3,3,3,3,4,8,13]],[1708342038,[1,2,2,3,3,3,3,4,6,10]],[1708342039,[0,2,2,3,3,3,4,4,10,13]],[1708342040,[1,2,2,2,3,3,3,4,6,8]],[1708342041,[1,2,2,2,3,3,3,4,8,11]],[1708342042,[1,2,2,3,3,3,3,4,4,6]],[1708342043,[1,2,2,3,3,3,3,3,5,8]],[1708342044,[1,2,2,3,3,3,3,4,6,9]],[1708342045,[1,2,2,3,3,4,4,4,7,9]],[1708342046,[1,2,3,3,3,3,4,4,5,9]],[1708342047,[0,2,2,3,3,4,4,6,15,19]],[1708342048,[1,2,2,3,3,3,4,4,5,7]],[1708342049,[1,2,2,3,3,3,4,4,5,10]],[1708342050,[1,2,2,3,3,3,4,4,8,9]],[1708342051,[1,2,2,3,3,3,3,4,5,8]],[1708342052,[0,2,2,3,3,3,3,4,5,6]],[1708342053,[0,2,2,3,3,3,3,4,7,9]],[1708342054,[1,2,2,3,3,3,3,4,4,6]],[1708342055,[1,2,2,3,3,3,3,4,7,10]],[1708342056,[0,2,2,3,3,3,4,5,9,24]],[1708342057,[1,2,2,3,3,3,4,4,8,13]],[1708342058,[0,2,2,3,3,3,4,4,7,11]],[1708342059,[0,2,2,3,3,3,4,4,7,10]],[1708342060,[1,2,3,50,98,130,169,205,246,271]],[1708342061,[1,2,3,3,3,4,4,4,7,10]],[1708342062,[0,2,2,3,3,3,3,4,10,13]],[1708342063,[0,2,2,3,3,4,4,5,14,19]],[1708342064,[1,2,3,3,3,3,4,4,6,8]],[1708342065,[0,2,2,3,3,3,4,4,7,12]],[1708342066,[1,1,2,2,3,3,3,3,4,4]],[1708342067,[1,2,2,3,3,4,4,4,5,7]],[1708342068,[1,2,3,3,3,4,4,5,7,13]],[1708342069,[1,2,3,5,5,6,6,7,9,16]],[1708342070,[1,3,4,5,6,6,6,7,9,12]],[1708342071,[1,3,3,5,5,6,6,7,15,25]],[1708342072,[1,3,4,5,5,6,6,7,8,10]],[1708342073,[0,2,3,5,6,6,7,12,22,31]],[1708342074,[1,3,4,5,5,6,6,7,8,11]],[1708342075,[1,2,3,4,4,5,6,8,14,19]],[1708342076,[1,3,4,5,5,5,6,7,8,11]],[1708342077,[0,2,3,3,4,4,4,5,6,7]],[1708342078,[1,2,4,5,5,5,6,6,8,12]],[1708342079,[0,2,3,4,4,4,5,6,8,15]],[1708342080,[1,3,4,6,6,6,7,8,14,20]],[1708342081,[1,2,3,4,4,4,5,6,9,16]],[1708342082,[1,3,4,5,6,6,6,7,11,20]],[1708342083,[1,2,2,4,4,4,4,5,12,19]],[1708342084,[0,3,4,6,6,6,7,7,9,15]],[1708342085,[1,2,2,3,3,4,4,4,5,8]],[1708342086,[1,4,5,6,6,6,7,7,8,8]],[1708342087,[0,2,2,3,3,4,4,5,8,12]],[1708342088,[0,3,4,6,6,6,7,8,10,12]],[1708342089,[1,2,2,3,3,4,4,4,8,12]],[1708342090,[1,4,5,6,7,7,7,9,12,19]],[1708342091,[0,2,3,3,4,4,4,6,9,12]],[1708342092,[1,3,4,5,5,6,6,7,8,11]],[1708342093,[0,2,2,3,3,4,4,7,10,13]],[1708342094,[1,3,4,5,6,6,7,8,11,13]],[1708342095,[0,2,2,3,4,4,4,5,6,8]],[1708342096,[0,2,3,4,5,5,6,6,9,17]],[1708342097,[1,2,2,4,4,4,5,6,8,10]],[1708342098,[1,2,3,4,5,5,6,6,7,9]],[1708342099,[1,2,3,4,4,5,5,6,10,14]],[1708342100,[1,2,3,4,5,5,5,6,11,18]],[1708342101,[0,2,3,4,4,5,5,6,9,13]],[1708342102,[0,2,2,4,4,4,5,5,9,15]],[1708342103,[0,2,2,3,3,4,4,6,10,12]],[1708342104,[0,2,2,4,5,6,6,8,13,19]],[1708342105,[1,2,3,5,6,6,7,8,9,12]],[1708342106,[0,2,2,3,3,4,5,38,66,88]],[1708342107,[0,2,3,4,4,4,5,6,21,34]],[1708342108,[1,2,3,4,4,4,4,5,7,10]],[1708342109,[0,2,3,5,5,6,6,7,8,9]],[1708342110,[0,1,2,3,3,4,4,5,8,9]],[1708342111,[0,2,3,5,5,6,7,7,8,13]],[1708342112,[0,1,2,2,3,4,4,6,11,17]],[1708342113,[1,2,4,6,6,6,7,8,9,10]],[1708342114,[1,2,3,2,3,4,4,5,7,7]],[1708342115,[1,2,3,4,5,5,6,7,8,14]],[1708342116,[0,2,2,3,3,3,3,3,6,10]],[1708342117,[0,2,3,5,5,5,6,7,8,9]],[1708342118,[0,2,2,3,3,3,4,4,5,7]],[1708342119,[0,2,3,4,5,5,6,7,10,16]],[1708342120,[0,2,2,3,3,4,4,6,8,10]],[1708342121,[0,2,2,4,4,4,5,6,12,17]],[1708342122,[1,2,2,3,3,4,4,5,7,11]],[1708342123,[1,2,3,4,4,5,5,6,9,10]],[1708342124,[1,2,2,3,3,4,4,4,8,9]],[1708342125,[0,2,3,4,4,4,5,5,9,15]],[1708342126,[0,2,2,3,3,4,4,6,12,15]],[1708342127,[1,2,3,4,4,4,5,6,9,10]],[1708342128,[1,2,3,3,4,4,4,5,15,28]],[1708342129,[1,2,3,4,4,4,5,5,6,8]],[1708342130,[0,2,2,3,3,3,4,4,5,8]],[1708342131,[0,3,4,5,5,6,6,7,8,10]],[1708342132,[1,2,3,4,4,4,5,6,7,8]],[1708342133,[2,4,4,5,5,6,6,7,10,14]],[1708342134,[1,1,2,3,3,3,4,5,7,8]],[1708342135,[2,4,5,6,6,6,7,7,11,17]],[1708342136,[0,2,2,3,4,4,5,6,9,13]],[1708342137,[0,3,4,5,5,6,6,7,10,13]],[1708342138,[0,1,2,3,3,3,4,5,7,11]],[1708342139,[1,3,4,5,6,6,7,9,14,18]],[1708342140,[1,2,3,4,4,4,5,6,7,10]],[1708342141,[1,3,4,5,5,6,6,7,10,15]],[1708342142,[0,2,2,3,4,4,4,5,6,10]],[1708342143,[1,3,4,5,6,6,7,7,10,14]],[1708342144,[0,2,2,4,4,4,5,6,8,9]],[1708342145,[0,2,3,4,5,5,5,6,8,9]],[1708342146,[0,2,2,4,4,5,5,6,6,8]],[1708342147,[1,2,4,5,5,6,6,7,9,10]],[1708342148,[1,2,3,5,5,6,6,7,10,12]],[1708342149,[1,2,3,4,5,5,5,6,7,8]],[1708342150,[1,2,3,4,5,5,6,6,8,11]],[1708342151,[0,2,3,4,4,5,5,6,7,10]],[1708342152,[1,2,3,4,5,5,6,7,10,12]],[1708342153,[0,2,3,4,4,5,5,6,11,13]],[1708342154,[1,2,3,4,5,5,5,6,7,9]],[1708342155,[1,2,3,5,5,6,7,16,39,67]],[1708342156,[0,3,3,5,5,6,7,7,14,16]],[1708342157,[0,2,2,4,4,4,5,6,8,12]],[1708342158,[1,3,4,5,5,6,7,8,17,26]],[1708342159,[1,2,3,3,4,4,5,7,23,32]],[1708342160,[1,3,4,5,6,6,6,7,8,9]],[1708342161,[0,2,2,3,3,4,4,5,8,11]],[1708342162,[1,3,4,5,6,6,7,7,13,20]],[1708342163,[0,2,2,3,4,4,4,6,10,13]],[1708342164,[1,2,4,5,5,6,6,7,9,11]],[1708342165,[1,1,2,3,4,4,4,4,7,8]],[1708342166,[1,3,5,6,7,7,8,9,22,34]],[1708342167,[0,2,3,28,44,67,105,146,177,185]],[1708342168,[1,2,4,6,6,6,7,7,9,14]],[1708342169,[1,2,2,3,4,4,4,5,11,16]],[1708342170,[0,2,3,4,5,5,6,7,8,9]],[1708342171,[0,2,2,3,3,4,4,5,10,13]],[1708342172,[1,3,4,5,6,6,7,8,9,13]],[1708342173,[1,2,2,3,3,4,4,4,7,12]],[1708342174,[1,2,4,5,5,6,6,7,8,13]],[1708342175,[0,2,2,3,3,3,3,4,5,9]],[1708342176,[0,2,3,4,5,5,6,7,7,12]],[1708342177,[1,2,3,3,4,4,4,5,6,8]],[1708342178,[1,3,3,5,5,5,6,6,8,9]],[1708342179,[1,2,2,3,4,4,5,6,7,12]],[1708342180,[1,2,3,4,5,5,6,6,7,10]],[1708342181,[1,2,3,4,4,4,5,6,9,15]],[1708342182,[1,2,2,4,4,4,4,5,7,10]],[1708342183,[1,2,3,4,4,5,6,7,10,12]],[1708342184,[1,2,3,3,4,4,4,6,8,8]],[1708342185,[1,2,2,4,5,5,6,7,9,14]],[1708342186,[0,2,2,2,2,3,3,4,5,6]],[1708342187,[0,2,3,4,4,4,4,5,7,7]],[1708342188,[1,2,3,3,4,4,4,6,8,17]],[1708342189,[1,2,3,4,4,4,5,6,9,10]],[1708342190,[0,1,2,3,3,4,4,4,7,11]],[1708342191,[0,2,3,4,4,4,5,6,8,13]],[1708342192,[1,1,2,3,3,4,4,4,5,5]],[1708342193,[0,2,2,4,5,5,6,7,9,10]],[1708342194,[0,3,4,6,6,6,7,8,9,10]],[1708342195,[1,2,4,5,6,6,7,8,9,11]],[1708342196,[1,3,4,5,6,6,7,7,9,13]]]);
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([[1708341952,[25,25,0]],[1708341953,[1,1,0]],[1708341954,[25,25,0]],[1708341955,[1,1,0]],[1708341956,[71,71,0]],[1708341957,[3,3,0]],[1708341958,[6,6,0]],[1708341959,[9,9,0]],[1708341960,[11,11,0]],[1708341961,[13,13,0]],[1708341962,[18,18,0]],[1708341963,[19,19,0]],[1708341964,[24,24,0]],[1708341965,[26,26,0]],[1708341966,[27,27,0]],[1708341967,[32,32,0]],[1708341968,[34,34,0]],[1708341969,[37,37,0]],[1708341970,[39,39,0]],[1708341971,[43,43,0]],[1708341972,[44,44,0]],[1708341973,[48,48,0]],[1708341974,[51,51,0]],[1708341975,[54,54,0]],[1708341976,[56,56,0]],[1708341977,[60,60,0]],[1708341978,[61,61,0]],[1708341979,[65,65,0]],[1708341980,[67,67,0]],[1708341981,[70,70,0]],[1708341982,[74,74,0]],[1708341983,[76,76,0]],[1708341984,[80,80,0]],[1708341985,[81,81,0]],[1708341986,[84,84,0]],[1708341987,[87,87,0]],[1708341988,[91,91,0]],[1708341989,[92,92,0]],[1708341990,[96,96,0]],[1708341991,[99,99,0]],[1708341992,[101,101,0]],[1708341993,[105,105,0]],[1708341994,[107,107,0]],[1708341995,[109,109,0]],[1708341996,[114,114,0]],[1708341997,[115,115,0]],[1708341998,[118,118,0]],[1708341999,[121,121,0]],[1708342000,[124,124,0]],[1708342001,[126,126,0]],[1708342002,[129,129,0]],[1708342003,[133,133,0]],[1708342004,[134,134,0]],[1708342005,[138,138,0]],[1708342006,[141,141,0]],[1708342007,[143,143,0]],[1708342008,[147,147,0]],[1708342009,[148,148,0]],[1708342010,[152,152,0]],[1708342011,[155,155,0]],[1708342012,[157,157,0]],[1708342013,[160,160,0]],[1708342014,[164,164,0]],[1708342015,[165,165,0]],[1708342016,[170,170,0]],[1708342017,[172,172,0]],[1708342018,[174,174,0]],[1708342019,[176,176,0]],[1708342020,[181,181,0]],[1708342021,[183,183,0]],[1708342022,[185,185,0]],[1708342023,[189,189,0]],[1708342024,[191,191,0]],[1708342025,[195,195,0]],[1708342026,[197,197,0]],[1708342027,[198,198,0]],[1708342028,[204,204,0]],[1708342029,[204,204,0]],[1708342030,[208,208,0]],[1708342031,[211,211,0]],[1708342032,[213,213,0]],[1708342033,[217,217,0]],[1708342034,[220,220,0]],[1708342035,[222,222,0]],[1708342036,[224,224,0]],[1708342037,[228,228,0]],[1708342038,[230,230,0]],[1708342039,[234,234,0]],[1708342040,[235,235,0]],[1708342041,[239,239,0]],[1708342042,[243,243,0]],[1708342043,[244,244,0]],[1708342044,[248,248,0]],[1708342045,[250,250,0]],[1708342046,[253,253,0]],[1708342047,[255,255,0]],[1708342048,[259,259,0]],[1708342049,[262,262,0]],[1708342050,[265,265,0]],[1708342051,[266,266,0]],[1708342052,[270,270,0]],[1708342053,[272,272,0]],[1708342054,[275,275,0]],[1708342055,[279,279,0]],[1708342056,[281,281,0]],[1708342057,[284,284,0]],[1708342058,[286,286,0]],[1708342059,[291,291,0]],[1708342060,[292,292,0]],[1708342061,[295,295,0]],[1708342062,[298,298,0]],[1708342063,[301,301,0]],[1708342064,[303,303,0]],[1708342065,[306,306,0]],[1708342066,[309,309,0]],[1708342067,[313,313,0]],[1708342068,[314,314,0]],[1708342069,[318,318,0]],[1708342070,[320,320,0]],[1708342071,[323,323,0]],[1708342072,[326,326,0]],[1708342073,[330,330,0]],[1708342074,[331,331,0]],[1708342075,[334,334,0]],[1708342076,[338,338,0]],[1708342077,[340,340,0]],[1708342078,[340,340,0]],[1708342079,[340,340,0]],[1708342080,[340,340,0]],[1708342081,[340,340,0]],[1708342082,[340,340,0]],[1708342083,[340,340,0]],[1708342084,[340,340,0]],[1708342085,[340,340,0]],[1708342086,[340,340,0]],[1708342087,[340,340,0]],[1708342088,[340,340,0]],[1708342089,[340,340,0]],[1708342090,[340,340,0]],[1708342091,[340,340,0]],[1708342092,[340,340,0]],[1708342093,[340,340,0]],[1708342094,[340,340,0]],[1708342095,[340,340,0]],[1708342096,[340,340,0]],[1708342097,[340,340,0]],[1708342098,[340,340,0]],[1708342099,[340,340,0]],[1708342100,[340,340,0]],[1708342101,[340,340,0]],[1708342102,[340,340,0]],[1708342103,[340,340,0]],[1708342104,[340,340,0]],[1708342105,[340,340,0]],[1708342106,[340,340,0]],[1708342107,[340,340,0]],[1708342108,[340,339,1]],[1708342109,[340,340,0]],[1708342110,[340,340,0]],[1708342111,[340,340,0]],[1708342112,[340,340,0]],[1708342113,[340,340,0]],[1708342114,[340,340,0]],[1708342115,[340,340,0]],[1708342116,[340,340,0]],[1708342117,[340,340,0]],[1708342118,[340,340,0]],[1708342119,[340,340,0]],[1708342120,[340,340,0]],[1708342121,[340,340,0]],[1708342122,[340,340,0]],[1708342123,[340,340,0]],[1708342124,[340,340,0]],[1708342125,[340,340,0]],[1708342126,[340,340,0]],[1708342127,[340,340,0]],[1708342128,[340,340,0]],[1708342129,[340,340,0]],[1708342130,[340,340,0]],[1708342131,[340,340,0]],[1708342132,[340,340,0]],[1708342133,[340,340,0]],[1708342134,[340,340,0]],[1708342135,[340,340,0]],[1708342136,[340,340,0]],[1708342137,[340,340,0]],[1708342138,[340,340,0]],[1708342139,[340,340,0]],[1708342140,[340,340,0]],[1708342141,[340,340,0]],[1708342142,[340,340,0]],[1708342143,[340,340,0]],[1708342144,[340,340,0]],[1708342145,[340,340,0]],[1708342146,[340,340,0]],[1708342147,[340,340,0]],[1708342148,[340,340,0]],[1708342149,[340,340,0]],[1708342150,[340,340,0]],[1708342151,[340,340,0]],[1708342152,[340,340,0]],[1708342153,[340,340,0]],[1708342154,[340,340,0]],[1708342155,[340,340,0]],[1708342156,[340,340,0]],[1708342157,[340,340,0]],[1708342158,[340,340,0]],[1708342159,[340,340,0]],[1708342160,[340,340,0]],[1708342161,[340,340,0]],[1708342162,[340,340,0]],[1708342163,[340,340,0]],[1708342164,[340,340,0]],[1708342165,[340,340,0]],[1708342166,[340,340,0]],[1708342167,[340,340,0]],[1708342168,[340,340,0]],[1708342169,[340,340,0]],[1708342170,[340,340,0]],[1708342171,[340,340,0]],[1708342172,[340,340,0]],[1708342173,[340,340,0]],[1708342174,[340,340,0]],[1708342175,[340,340,0]],[1708342176,[340,340,0]],[1708342177,[340,340,0]],[1708342178,[340,340,0]],[1708342179,[340,340,0]],[1708342180,[340,340,0]],[1708342181,[340,340,0]],[1708342182,[340,340,0]],[1708342183,[340,340,0]],[1708342184,[340,340,0]],[1708342185,[340,340,0]],[1708342186,[340,340,0]],[1708342187,[340,340,0]],[1708342188,[340,340,0]],[1708342189,[340,340,0]],[1708342190,[340,340,0]],[1708342191,[340,340,0]],[1708342192,[340,340,0]],[1708342193,[340,340,0]],[1708342194,[340,340,0]],[1708342195,[340,340,0]],[1708342196,[503,503,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'
}, {
type : 'hour',
count : 1,
text : '1h'
}, {