-
Notifications
You must be signed in to change notification settings - Fork 925
/
index.html
1200 lines (1130 loc) · 94.4 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="shortcut icon" type="image/x-icon" href="style/favicon.ico"/>
<link href="style/style.css" rel="stylesheet" type="text/css" />
<link href="style/bootstrap.min.css" rel="stylesheet" type="text/css" />
<script src="js/jquery-3.5.1.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/gatling.js"></script>
<script src="js/menu.js"></script>
<script src="js/ellipsis.js"></script>
<script src="js/all_sessions.js"></script>
<script src="js/stats.js"></script>
<script src="js/highstock.js"></script>
<script src="js/highcharts-more.js"></script>
<script src="js/theme.js"></script>
<script src="js/unpack.js"></script>
<title>Gatling Stats - Global Information</title>
</head>
<body>
<script>
const storedTheme = localStorage.getItem('theme') || (window.matchMedia("(prefers-color-scheme: dark)").matches ? "dark" : "light");
if (storedTheme) document.documentElement.setAttribute('data-theme', storedTheme)
function toggleTheme() {
const currentTheme = document.documentElement.getAttribute("data-theme");
const targetTheme = currentTheme === "light" ? "dark" : "light";
document.documentElement.setAttribute('data-theme', targetTheme)
localStorage.setItem('theme', targetTheme);
};
</script>
<div class="app-container">
<div class="frise"></div>
<div class="head">
<div class="gatling-open-source">
<a class="gatling-logo gatling-logo-light" href="https://gatling.io" target="blank_" title="Gatling Home Page"><img alt="Gatling" src="style/logo-light.svg"/></a>
<a class="gatling-logo gatling-logo-dark" href="https://gatling.io" target="blank_" title="Gatling Home Page"><img alt="Gatling" src="style/logo-dark.svg"/></a>
<a class="gatling-documentation" href="https://gatling.io/docs/" target="_blank">Documentation</a>
</div>
<div class="nav spacer"></div>
<a class="enterprise" href="https://gatling.io/enterprise/next-step/" target="_blank"><strong>Try</strong>
<img class="logo-enterprise-light" alt="Gatling Enterprise" src="style/logo-enterprise-light.svg"/>
<img class="logo-enterprise-dark" alt="Gatling Enterprise" src="style/logo-enterprise-dark.svg"/>
</a>
<button id="theme-toggle" class="theme-toggle" type="button" onclick="toggleTheme()" aria-label="Toggle user interface mode">
<span class="toggle-dark"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-moon"><path d="M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z"></path></svg></span>
<span class="toggle-light"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-sun"><circle cx="12" cy="12" r="5"></circle><line x1="12" y1="1" x2="12" y2="3"></line><line x1="12" y1="21" x2="12" y2="23"></line><line x1="4.22" y1="4.22" x2="5.64" y2="5.64"></line><line x1="18.36" y1="18.36" x2="19.78" y2="19.78"></line><line x1="1" y1="12" x2="3" y2="12"></line><line x1="21" y1="12" x2="23" y2="12"></line><line x1="4.22" y1="19.78" x2="5.64" y2="18.36"></line><line x1="18.36" y1="5.64" x2="19.78" y2="4.22"></line></svg></span>
</button>
</div>
<div class="container details">
<div class="nav">
<ul></ul>
</div>
<div class="cadre">
<div class="content">
<div class="content-header">
<div class="onglet">
RinhaBackendCrebitosSimulation
</div>
<div class="sous-menu" id="sousMenu">
<div class="sous-menu-spacer">
<div class="item ouvert"><a href="index.html">Global</a></div>
<div class="item "><a id="details_link" href="#">Details</a></div>
</div>
</div>
</div>
<div class="content-in">
<div class="container-article">
<div class="article">
<div class="schema-container">
<div id="ranges" class="schema ranges">
</div>
<div class="schema polar">
<div id="container_number_of_requests"></div>
</div>
<div class="simulation-card">
<div class="simulation-version-information">
<span class="simulation-information-title">Gatling Version</span>
<span class="simulation-information-item">
<span class="simulation-information-label">Version: </span>
<span>3.10.3</span>
</span>
<span class="simulation-information-item">
<span class="simulation-information-label">Released: </span>
<span>2023-12-20</span>
</span>
</div>
<div id="simulation-information" class="simulation-version-information">
<span class="simulation-information-title">Run Information</span>
<div class="simulation-information-container">
<span class="simulation-information-item">
<span class="simulation-information-label">Date: </span>
<span>2024-03-09 18:28:43 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 - AlcivanLucas">
<span class="simulation-information-label">Description: </span>
<span>Rinha de Backend - 2024/Q1: Crébito - AlcivanLucas</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(422,400), but actually found 404<span class="value" style="display:none">0</span></td>
<td class="value error-col-2 total ko">25</td>
<td class="value error-col-3 total ko">96.154 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">jmesPath(saldo.total).find.is(-25), but actually found -2<span class="value" style="display:none">1</span></td>
<td class="value error-col-2 total ko">1</td>
<td class="value error-col-3 total ko">3.846 %</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: [
[1710008923000,0],[1710008924000,0],[1710008925000,0],[1710008926000,0],[1710008927000,1],[1710008928000,2],[1710008929000,2],[1710008930000,4],[1710008931000,4],[1710008932000,5],[1710008933000,6],[1710008934000,7],[1710008935000,8],[1710008936000,8],[1710008937000,10],[1710008938000,10],[1710008939000,12],[1710008940000,12],[1710008941000,14],[1710008942000,14],[1710008943000,15],[1710008944000,16],[1710008945000,17],[1710008946000,17],[1710008947000,19],[1710008948000,20],[1710008949000,20],[1710008950000,22],[1710008951000,22],[1710008952000,23],[1710008953000,25],[1710008954000,25],[1710008955000,26],[1710008956000,26],[1710008957000,28],[1710008958000,29],[1710008959000,30],[1710008960000,30],[1710008961000,32],[1710008962000,32],[1710008963000,33],[1710008964000,34],[1710008965000,35],[1710008966000,36],[1710008967000,37],[1710008968000,38],[1710008969000,39],[1710008970000,39],[1710008971000,41],[1710008972000,41],[1710008973000,43],[1710008974000,43],[1710008975000,44],[1710008976000,45],[1710008977000,46],[1710008978000,47],[1710008979000,48],[1710008980000,48],[1710008981000,50],[1710008982000,50],[1710008983000,52],[1710008984000,52],[1710008985000,53],[1710008986000,54],[1710008987000,56],[1710008988000,55],[1710008989000,57],[1710008990000,59],[1710008991000,60],[1710008992000,60],[1710008993000,62],[1710008994000,62],[1710008995000,64],[1710008996000,64],[1710008997000,65],[1710008998000,66],[1710008999000,67],[1710009000000,68],[1710009001000,69],[1710009002000,69],[1710009003000,71],[1710009004000,71],[1710009005000,73],[1710009006000,72],[1710009007000,73],[1710009008000,75],[1710009009000,76],[1710009010000,77],[1710009011000,77],[1710009012000,78],[1710009013000,79],[1710009014000,79],[1710009015000,81],[1710009016000,81],[1710009017000,82],[1710009018000,83],[1710009019000,85],[1710009020000,85],[1710009021000,86],[1710009022000,86],[1710009023000,88],[1710009024000,89],[1710009025000,89],[1710009026000,91],[1710009027000,91],[1710009028000,92],[1710009029000,94],[1710009030000,94],[1710009031000,95],[1710009032000,96],[1710009033000,97],[1710009034000,97],[1710009035000,99],[1710009036000,99],[1710009037000,101],[1710009038000,101],[1710009039000,103],[1710009040000,103],[1710009041000,104],[1710009042000,105],[1710009043000,106],[1710009044000,107],[1710009045000,107],[1710009046000,109],[1710009047000,110],[1710009048000,110],[1710009049000,110],[1710009050000,110],[1710009051000,110],[1710009052000,110],[1710009053000,110],[1710009054000,110],[1710009055000,110],[1710009056000,110],[1710009057000,110],[1710009058000,110],[1710009059000,110],[1710009060000,134],[1710009061000,110],[1710009062000,110],[1710009063000,110],[1710009064000,110],[1710009065000,110],[1710009066000,110],[1710009067000,110],[1710009068000,110],[1710009069000,110],[1710009070000,110],[1710009071000,110],[1710009072000,110],[1710009073000,110],[1710009074000,110],[1710009075000,110],[1710009076000,112],[1710009077000,110],[1710009078000,110],[1710009079000,110],[1710009080000,110],[1710009081000,110],[1710009082000,110],[1710009083000,110],[1710009084000,110],[1710009085000,110],[1710009086000,113],[1710009087000,110],[1710009088000,110],[1710009089000,110],[1710009090000,110],[1710009091000,110],[1710009092000,111],[1710009093000,110],[1710009094000,110],[1710009095000,110],[1710009096000,110],[1710009097000,110],[1710009098000,110],[1710009099000,110],[1710009100000,110],[1710009101000,110],[1710009102000,110],[1710009103000,110],[1710009104000,110],[1710009105000,110],[1710009106000,110],[1710009107000,110],[1710009108000,110],[1710009109000,110],[1710009110000,110],[1710009111000,110],[1710009112000,110],[1710009113000,110],[1710009114000,110],[1710009115000,110],[1710009116000,110],[1710009117000,110],[1710009118000,110],[1710009119000,110],[1710009120000,157],[1710009121000,160],[1710009122000,135],[1710009123000,116],[1710009124000,110],[1710009125000,110],[1710009126000,110],[1710009127000,110],[1710009128000,110],[1710009129000,110],[1710009130000,110],[1710009131000,110],[1710009132000,110],[1710009133000,110],[1710009134000,110],[1710009135000,110],[1710009136000,110],[1710009137000,110],[1710009138000,110],[1710009139000,110],[1710009140000,110],[1710009141000,110],[1710009142000,110],[1710009143000,110],[1710009144000,110],[1710009145000,110],[1710009146000,110],[1710009147000,110],[1710009148000,110],[1710009149000,110],[1710009150000,110],[1710009151000,110],[1710009152000,110],[1710009153000,110],[1710009154000,110],[1710009155000,110],[1710009156000,110],[1710009157000,111],[1710009158000,110],[1710009159000,110],[1710009160000,110],[1710009161000,110],[1710009162000,110],[1710009163000,110],[1710009164000,110],[1710009165000,110],[1710009166000,110],[1710009167000,108]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#68b65c',
name: 'débitos',
data: [
[1710008923000,0],[1710008924000,0],[1710008925000,0],[1710008926000,0],[1710008927000,1],[1710008928000,2],[1710008929000,4],[1710008930000,6],[1710008931000,7],[1710008932000,9],[1710008933000,11],[1710008934000,13],[1710008935000,15],[1710008936000,16],[1710008937000,19],[1710008938000,20],[1710008939000,22],[1710008940000,24],[1710008941000,25],[1710008942000,28],[1710008943000,29],[1710008944000,31],[1710008945000,33],[1710008946000,35],[1710008947000,37],[1710008948000,38],[1710008949000,40],[1710008950000,42],[1710008951000,44],[1710008952000,46],[1710008953000,47],[1710008954000,50],[1710008955000,51],[1710008956000,53],[1710008957000,55],[1710008958000,56],[1710008959000,60],[1710008960000,61],[1710008961000,63],[1710008962000,65],[1710008963000,67],[1710008964000,69],[1710008965000,70],[1710008966000,72],[1710008967000,74],[1710008968000,75],[1710008969000,77],[1710008970000,79],[1710008971000,80],[1710008972000,82],[1710008973000,84],[1710008974000,86],[1710008975000,88],[1710008976000,89],[1710008977000,92],[1710008978000,93],[1710008979000,95],[1710008980000,97],[1710008981000,98],[1710008982000,101],[1710008983000,102],[1710008984000,104],[1710008985000,106],[1710008986000,108],[1710008987000,110],[1710008988000,111],[1710008989000,113],[1710008990000,115],[1710008991000,118],[1710008992000,120],[1710008993000,120],[1710008994000,124],[1710008995000,125],[1710008996000,127],[1710008997000,129],[1710008998000,129],[1710008999000,133],[1710009000000,134],[1710009001000,136],[1710009002000,137],[1710009003000,140],[1710009004000,142],[1710009005000,143],[1710009006000,144],[1710009007000,148],[1710009008000,148],[1710009009000,151],[1710009010000,153],[1710009011000,154],[1710009012000,155],[1710009013000,157],[1710009014000,159],[1710009015000,161],[1710009016000,162],[1710009017000,165],[1710009018000,166],[1710009019000,168],[1710009020000,170],[1710009021000,171],[1710009022000,174],[1710009023000,176],[1710009024000,178],[1710009025000,180],[1710009026000,182],[1710009027000,184],[1710009028000,185],[1710009029000,187],[1710009030000,189],[1710009031000,191],[1710009032000,193],[1710009033000,194],[1710009034000,197],[1710009035000,198],[1710009036000,200],[1710009037000,202],[1710009038000,203],[1710009039000,205],[1710009040000,208],[1710009041000,209],[1710009042000,210],[1710009043000,213],[1710009044000,214],[1710009045000,216],[1710009046000,217],[1710009047000,221],[1710009048000,220],[1710009049000,221],[1710009050000,220],[1710009051000,221],[1710009052000,220],[1710009053000,221],[1710009054000,220],[1710009055000,220],[1710009056000,220],[1710009057000,221],[1710009058000,220],[1710009059000,220],[1710009060000,259],[1710009061000,220],[1710009062000,220],[1710009063000,220],[1710009064000,220],[1710009065000,220],[1710009066000,221],[1710009067000,220],[1710009068000,221],[1710009069000,220],[1710009070000,220],[1710009071000,220],[1710009072000,220],[1710009073000,220],[1710009074000,221],[1710009075000,220],[1710009076000,223],[1710009077000,220],[1710009078000,221],[1710009079000,220],[1710009080000,220],[1710009081000,221],[1710009082000,220],[1710009083000,220],[1710009084000,221],[1710009085000,220],[1710009086000,224],[1710009087000,220],[1710009088000,220],[1710009089000,220],[1710009090000,220],[1710009091000,220],[1710009092000,221],[1710009093000,220],[1710009094000,220],[1710009095000,220],[1710009096000,220],[1710009097000,220],[1710009098000,220],[1710009099000,220],[1710009100000,220],[1710009101000,220],[1710009102000,220],[1710009103000,220],[1710009104000,221],[1710009105000,220],[1710009106000,221],[1710009107000,220],[1710009108000,220],[1710009109000,221],[1710009110000,220],[1710009111000,221],[1710009112000,221],[1710009113000,220],[1710009114000,220],[1710009115000,220],[1710009116000,220],[1710009117000,221],[1710009118000,220],[1710009119000,221],[1710009120000,300],[1710009121000,295],[1710009122000,263],[1710009123000,234],[1710009124000,220],[1710009125000,221],[1710009126000,220],[1710009127000,220],[1710009128000,221],[1710009129000,221],[1710009130000,220],[1710009131000,220],[1710009132000,220],[1710009133000,221],[1710009134000,220],[1710009135000,220],[1710009136000,221],[1710009137000,220],[1710009138000,220],[1710009139000,220],[1710009140000,220],[1710009141000,220],[1710009142000,220],[1710009143000,220],[1710009144000,220],[1710009145000,220],[1710009146000,220],[1710009147000,220],[1710009148000,220],[1710009149000,220],[1710009150000,220],[1710009151000,220],[1710009152000,221],[1710009153000,220],[1710009154000,221],[1710009155000,220],[1710009156000,221],[1710009157000,222],[1710009158000,221],[1710009159000,220],[1710009160000,220],[1710009161000,220],[1710009162000,220],[1710009163000,220],[1710009164000,221],[1710009165000,220],[1710009166000,221],[1710009167000,216]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#f15b4f',
name: 'extratos',
data: [
[1710008923000,0],[1710008924000,0],[1710008925000,0],[1710008926000,0],[1710008927000,1],[1710008928000,2],[1710008929000,1],[1710008930000,1],[1710008931000,1],[1710008932000,1],[1710008933000,2],[1710008934000,1],[1710008935000,2],[1710008936000,2],[1710008937000,1],[1710008938000,2],[1710008939000,2],[1710008940000,2],[1710008941000,2],[1710008942000,2],[1710008943000,2],[1710008944000,2],[1710008945000,3],[1710008946000,2],[1710008947000,3],[1710008948000,2],[1710008949000,3],[1710008950000,2],[1710008951000,3],[1710008952000,3],[1710008953000,3],[1710008954000,3],[1710008955000,3],[1710008956000,3],[1710008957000,3],[1710008958000,4],[1710008959000,3],[1710008960000,3],[1710008961000,4],[1710008962000,3],[1710008963000,4],[1710008964000,4],[1710008965000,4],[1710008966000,4],[1710008967000,4],[1710008968000,4],[1710008969000,4],[1710008970000,4],[1710008971000,4],[1710008972000,4],[1710008973000,5],[1710008974000,4],[1710008975000,5],[1710008976000,5],[1710008977000,4],[1710008978000,5],[1710008979000,5],[1710008980000,5],[1710008981000,5],[1710008982000,5],[1710008983000,5],[1710008984000,5],[1710008985000,6],[1710008986000,5],[1710008987000,6],[1710008988000,5],[1710008989000,6],[1710008990000,5],[1710008991000,6],[1710008992000,6],[1710008993000,6],[1710008994000,6],[1710008995000,6],[1710008996000,6],[1710008997000,6],[1710008998000,7],[1710008999000,6],[1710009000000,6],[1710009001000,7],[1710009002000,6],[1710009003000,7],[1710009004000,7],[1710009005000,7],[1710009006000,7],[1710009007000,7],[1710009008000,7],[1710009009000,7],[1710009010000,7],[1710009011000,7],[1710009012000,7],[1710009013000,8],[1710009014000,7],[1710009015000,8],[1710009016000,8],[1710009017000,7],[1710009018000,8],[1710009019000,8],[1710009020000,8],[1710009021000,8],[1710009022000,8],[1710009023000,8],[1710009024000,8],[1710009025000,9],[1710009026000,8],[1710009027000,9],[1710009028000,8],[1710009029000,9],[1710009030000,8],[1710009031000,9],[1710009032000,9],[1710009033000,9],[1710009034000,9],[1710009035000,9],[1710009036000,9],[1710009037000,9],[1710009038000,10],[1710009039000,9],[1710009040000,9],[1710009041000,10],[1710009042000,9],[1710009043000,10],[1710009044000,10],[1710009045000,10],[1710009046000,10],[1710009047000,10],[1710009048000,10],[1710009049000,10],[1710009050000,10],[1710009051000,10],[1710009052000,10],[1710009053000,10],[1710009054000,10],[1710009055000,10],[1710009056000,10],[1710009057000,10],[1710009058000,10],[1710009059000,10],[1710009060000,12],[1710009061000,10],[1710009062000,10],[1710009063000,10],[1710009064000,10],[1710009065000,10],[1710009066000,10],[1710009067000,10],[1710009068000,10],[1710009069000,10],[1710009070000,10],[1710009071000,10],[1710009072000,10],[1710009073000,10],[1710009074000,10],[1710009075000,10],[1710009076000,11],[1710009077000,10],[1710009078000,10],[1710009079000,10],[1710009080000,10],[1710009081000,10],[1710009082000,10],[1710009083000,10],[1710009084000,10],[1710009085000,10],[1710009086000,11],[1710009087000,10],[1710009088000,10],[1710009089000,10],[1710009090000,10],[1710009091000,10],[1710009092000,10],[1710009093000,10],[1710009094000,10],[1710009095000,10],[1710009096000,10],[1710009097000,10],[1710009098000,10],[1710009099000,10],[1710009100000,10],[1710009101000,10],[1710009102000,10],[1710009103000,10],[1710009104000,10],[1710009105000,10],[1710009106000,10],[1710009107000,10],[1710009108000,10],[1710009109000,10],[1710009110000,10],[1710009111000,10],[1710009112000,10],[1710009113000,10],[1710009114000,10],[1710009115000,10],[1710009116000,10],[1710009117000,10],[1710009118000,10],[1710009119000,10],[1710009120000,13],[1710009121000,13],[1710009122000,12],[1710009123000,11],[1710009124000,10],[1710009125000,10],[1710009126000,10],[1710009127000,10],[1710009128000,10],[1710009129000,10],[1710009130000,10],[1710009131000,10],[1710009132000,10],[1710009133000,10],[1710009134000,10],[1710009135000,10],[1710009136000,10],[1710009137000,10],[1710009138000,10],[1710009139000,10],[1710009140000,10],[1710009141000,10],[1710009142000,10],[1710009143000,10],[1710009144000,10],[1710009145000,10],[1710009146000,10],[1710009147000,10],[1710009148000,10],[1710009149000,10],[1710009150000,10],[1710009151000,10],[1710009152000,10],[1710009153000,10],[1710009154000,10],[1710009155000,10],[1710009156000,10],[1710009157000,10],[1710009158000,10],[1710009159000,10],[1710009160000,10],[1710009161000,10],[1710009162000,10],[1710009163000,10],[1710009164000,10],[1710009165000,10],[1710009166000,10],[1710009167000,9]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FFDD00',
name: 'validação HTTP 404',
data: [
[1710008923000,0],[1710008924000,0],[1710008925000,0],[1710008926000,1],[1710008927000,0],[1710008928000,0],[1710008929000,0],[1710008930000,0],[1710008931000,0],[1710008932000,0],[1710008933000,0],[1710008934000,0],[1710008935000,0],[1710008936000,0],[1710008937000,0],[1710008938000,0],[1710008939000,0],[1710008940000,0],[1710008941000,0],[1710008942000,0],[1710008943000,0],[1710008944000,0],[1710008945000,0],[1710008946000,0],[1710008947000,0],[1710008948000,0],[1710008949000,0],[1710008950000,0],[1710008951000,0],[1710008952000,0],[1710008953000,0],[1710008954000,0],[1710008955000,0],[1710008956000,0],[1710008957000,0],[1710008958000,0],[1710008959000,0],[1710008960000,0],[1710008961000,0],[1710008962000,0],[1710008963000,0],[1710008964000,0],[1710008965000,0],[1710008966000,0],[1710008967000,0],[1710008968000,0],[1710008969000,0],[1710008970000,0],[1710008971000,0],[1710008972000,0],[1710008973000,0],[1710008974000,0],[1710008975000,0],[1710008976000,0],[1710008977000,0],[1710008978000,0],[1710008979000,0],[1710008980000,0],[1710008981000,0],[1710008982000,0],[1710008983000,0],[1710008984000,0],[1710008985000,0],[1710008986000,0],[1710008987000,0],[1710008988000,0],[1710008989000,0],[1710008990000,0],[1710008991000,0],[1710008992000,0],[1710008993000,0],[1710008994000,0],[1710008995000,0],[1710008996000,0],[1710008997000,0],[1710008998000,0],[1710008999000,0],[1710009000000,0],[1710009001000,0],[1710009002000,0],[1710009003000,0],[1710009004000,0],[1710009005000,0],[1710009006000,0],[1710009007000,0],[1710009008000,0],[1710009009000,0],[1710009010000,0],[1710009011000,0],[1710009012000,0],[1710009013000,0],[1710009014000,0],[1710009015000,0],[1710009016000,0],[1710009017000,0],[1710009018000,0],[1710009019000,0],[1710009020000,0],[1710009021000,0],[1710009022000,0],[1710009023000,0],[1710009024000,0],[1710009025000,0],[1710009026000,0],[1710009027000,0],[1710009028000,0],[1710009029000,0],[1710009030000,0],[1710009031000,0],[1710009032000,0],[1710009033000,0],[1710009034000,0],[1710009035000,0],[1710009036000,0],[1710009037000,0],[1710009038000,0],[1710009039000,0],[1710009040000,0],[1710009041000,0],[1710009042000,0],[1710009043000,0],[1710009044000,0],[1710009045000,0],[1710009046000,0],[1710009047000,0],[1710009048000,0],[1710009049000,0],[1710009050000,0],[1710009051000,0],[1710009052000,0],[1710009053000,0],[1710009054000,0],[1710009055000,0],[1710009056000,0],[1710009057000,0],[1710009058000,0],[1710009059000,0],[1710009060000,0],[1710009061000,0],[1710009062000,0],[1710009063000,0],[1710009064000,0],[1710009065000,0],[1710009066000,0],[1710009067000,0],[1710009068000,0],[1710009069000,0],[1710009070000,0],[1710009071000,0],[1710009072000,0],[1710009073000,0],[1710009074000,0],[1710009075000,0],[1710009076000,0],[1710009077000,0],[1710009078000,0],[1710009079000,0],[1710009080000,0],[1710009081000,0],[1710009082000,0],[1710009083000,0],[1710009084000,0],[1710009085000,0],[1710009086000,0],[1710009087000,0],[1710009088000,0],[1710009089000,0],[1710009090000,0],[1710009091000,0],[1710009092000,0],[1710009093000,0],[1710009094000,0],[1710009095000,0],[1710009096000,0],[1710009097000,0],[1710009098000,0],[1710009099000,0],[1710009100000,0],[1710009101000,0],[1710009102000,0],[1710009103000,0],[1710009104000,0],[1710009105000,0],[1710009106000,0],[1710009107000,0],[1710009108000,0],[1710009109000,0],[1710009110000,0],[1710009111000,0],[1710009112000,0],[1710009113000,0],[1710009114000,0],[1710009115000,0],[1710009116000,0],[1710009117000,0],[1710009118000,0],[1710009119000,0],[1710009120000,0],[1710009121000,0],[1710009122000,0],[1710009123000,0],[1710009124000,0],[1710009125000,0],[1710009126000,0],[1710009127000,0],[1710009128000,0],[1710009129000,0],[1710009130000,0],[1710009131000,0],[1710009132000,0],[1710009133000,0],[1710009134000,0],[1710009135000,0],[1710009136000,0],[1710009137000,0],[1710009138000,0],[1710009139000,0],[1710009140000,0],[1710009141000,0],[1710009142000,0],[1710009143000,0],[1710009144000,0],[1710009145000,0],[1710009146000,0],[1710009147000,0],[1710009148000,0],[1710009149000,0],[1710009150000,0],[1710009151000,0],[1710009152000,0],[1710009153000,0],[1710009154000,0],[1710009155000,0],[1710009156000,0],[1710009157000,0],[1710009158000,0],[1710009159000,0],[1710009160000,0],[1710009161000,0],[1710009162000,0],[1710009163000,0],[1710009164000,0],[1710009165000,0],[1710009166000,0],[1710009167000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00D5FF',
name: 'validações',
data: [
[1710008923000,0],[1710008924000,0],[1710008925000,0],[1710008926000,5],[1710008927000,5],[1710008928000,0],[1710008929000,0],[1710008930000,0],[1710008931000,0],[1710008932000,0],[1710008933000,0],[1710008934000,0],[1710008935000,0],[1710008936000,0],[1710008937000,0],[1710008938000,0],[1710008939000,0],[1710008940000,0],[1710008941000,0],[1710008942000,0],[1710008943000,0],[1710008944000,0],[1710008945000,0],[1710008946000,0],[1710008947000,0],[1710008948000,0],[1710008949000,0],[1710008950000,0],[1710008951000,0],[1710008952000,0],[1710008953000,0],[1710008954000,0],[1710008955000,0],[1710008956000,0],[1710008957000,0],[1710008958000,0],[1710008959000,0],[1710008960000,0],[1710008961000,0],[1710008962000,0],[1710008963000,0],[1710008964000,0],[1710008965000,0],[1710008966000,0],[1710008967000,0],[1710008968000,0],[1710008969000,0],[1710008970000,0],[1710008971000,0],[1710008972000,0],[1710008973000,0],[1710008974000,0],[1710008975000,0],[1710008976000,0],[1710008977000,0],[1710008978000,0],[1710008979000,0],[1710008980000,0],[1710008981000,0],[1710008982000,0],[1710008983000,0],[1710008984000,0],[1710008985000,0],[1710008986000,0],[1710008987000,0],[1710008988000,0],[1710008989000,0],[1710008990000,0],[1710008991000,0],[1710008992000,0],[1710008993000,0],[1710008994000,0],[1710008995000,0],[1710008996000,0],[1710008997000,0],[1710008998000,0],[1710008999000,0],[1710009000000,0],[1710009001000,0],[1710009002000,0],[1710009003000,0],[1710009004000,0],[1710009005000,0],[1710009006000,0],[1710009007000,0],[1710009008000,0],[1710009009000,0],[1710009010000,0],[1710009011000,0],[1710009012000,0],[1710009013000,0],[1710009014000,0],[1710009015000,0],[1710009016000,0],[1710009017000,0],[1710009018000,0],[1710009019000,0],[1710009020000,0],[1710009021000,0],[1710009022000,0],[1710009023000,0],[1710009024000,0],[1710009025000,0],[1710009026000,0],[1710009027000,0],[1710009028000,0],[1710009029000,0],[1710009030000,0],[1710009031000,0],[1710009032000,0],[1710009033000,0],[1710009034000,0],[1710009035000,0],[1710009036000,0],[1710009037000,0],[1710009038000,0],[1710009039000,0],[1710009040000,0],[1710009041000,0],[1710009042000,0],[1710009043000,0],[1710009044000,0],[1710009045000,0],[1710009046000,0],[1710009047000,0],[1710009048000,0],[1710009049000,0],[1710009050000,0],[1710009051000,0],[1710009052000,0],[1710009053000,0],[1710009054000,0],[1710009055000,0],[1710009056000,0],[1710009057000,0],[1710009058000,0],[1710009059000,0],[1710009060000,0],[1710009061000,0],[1710009062000,0],[1710009063000,0],[1710009064000,0],[1710009065000,0],[1710009066000,0],[1710009067000,0],[1710009068000,0],[1710009069000,0],[1710009070000,0],[1710009071000,0],[1710009072000,0],[1710009073000,0],[1710009074000,0],[1710009075000,0],[1710009076000,0],[1710009077000,0],[1710009078000,0],[1710009079000,0],[1710009080000,0],[1710009081000,0],[1710009082000,0],[1710009083000,0],[1710009084000,0],[1710009085000,0],[1710009086000,0],[1710009087000,0],[1710009088000,0],[1710009089000,0],[1710009090000,0],[1710009091000,0],[1710009092000,0],[1710009093000,0],[1710009094000,0],[1710009095000,0],[1710009096000,0],[1710009097000,0],[1710009098000,0],[1710009099000,0],[1710009100000,0],[1710009101000,0],[1710009102000,0],[1710009103000,0],[1710009104000,0],[1710009105000,0],[1710009106000,0],[1710009107000,0],[1710009108000,0],[1710009109000,0],[1710009110000,0],[1710009111000,0],[1710009112000,0],[1710009113000,0],[1710009114000,0],[1710009115000,0],[1710009116000,0],[1710009117000,0],[1710009118000,0],[1710009119000,0],[1710009120000,0],[1710009121000,0],[1710009122000,0],[1710009123000,0],[1710009124000,0],[1710009125000,0],[1710009126000,0],[1710009127000,0],[1710009128000,0],[1710009129000,0],[1710009130000,0],[1710009131000,0],[1710009132000,0],[1710009133000,0],[1710009134000,0],[1710009135000,0],[1710009136000,0],[1710009137000,0],[1710009138000,0],[1710009139000,0],[1710009140000,0],[1710009141000,0],[1710009142000,0],[1710009143000,0],[1710009144000,0],[1710009145000,0],[1710009146000,0],[1710009147000,0],[1710009148000,0],[1710009149000,0],[1710009150000,0],[1710009151000,0],[1710009152000,0],[1710009153000,0],[1710009154000,0],[1710009155000,0],[1710009156000,0],[1710009157000,0],[1710009158000,0],[1710009159000,0],[1710009160000,0],[1710009161000,0],[1710009162000,0],[1710009163000,0],[1710009164000,0],[1710009165000,0],[1710009166000,0],[1710009167000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00FF00',
name: 'validação concorrência saldo - 0',
data: [
[1710008923000,0],[1710008924000,0],[1710008925000,1],[1710008926000,0],[1710008927000,0],[1710008928000,0],[1710008929000,0],[1710008930000,0],[1710008931000,0],[1710008932000,0],[1710008933000,0],[1710008934000,0],[1710008935000,0],[1710008936000,0],[1710008937000,0],[1710008938000,0],[1710008939000,0],[1710008940000,0],[1710008941000,0],[1710008942000,0],[1710008943000,0],[1710008944000,0],[1710008945000,0],[1710008946000,0],[1710008947000,0],[1710008948000,0],[1710008949000,0],[1710008950000,0],[1710008951000,0],[1710008952000,0],[1710008953000,0],[1710008954000,0],[1710008955000,0],[1710008956000,0],[1710008957000,0],[1710008958000,0],[1710008959000,0],[1710008960000,0],[1710008961000,0],[1710008962000,0],[1710008963000,0],[1710008964000,0],[1710008965000,0],[1710008966000,0],[1710008967000,0],[1710008968000,0],[1710008969000,0],[1710008970000,0],[1710008971000,0],[1710008972000,0],[1710008973000,0],[1710008974000,0],[1710008975000,0],[1710008976000,0],[1710008977000,0],[1710008978000,0],[1710008979000,0],[1710008980000,0],[1710008981000,0],[1710008982000,0],[1710008983000,0],[1710008984000,0],[1710008985000,0],[1710008986000,0],[1710008987000,0],[1710008988000,0],[1710008989000,0],[1710008990000,0],[1710008991000,0],[1710008992000,0],[1710008993000,0],[1710008994000,0],[1710008995000,0],[1710008996000,0],[1710008997000,0],[1710008998000,0],[1710008999000,0],[1710009000000,0],[1710009001000,0],[1710009002000,0],[1710009003000,0],[1710009004000,0],[1710009005000,0],[1710009006000,0],[1710009007000,0],[1710009008000,0],[1710009009000,0],[1710009010000,0],[1710009011000,0],[1710009012000,0],[1710009013000,0],[1710009014000,0],[1710009015000,0],[1710009016000,0],[1710009017000,0],[1710009018000,0],[1710009019000,0],[1710009020000,0],[1710009021000,0],[1710009022000,0],[1710009023000,0],[1710009024000,0],[1710009025000,0],[1710009026000,0],[1710009027000,0],[1710009028000,0],[1710009029000,0],[1710009030000,0],[1710009031000,0],[1710009032000,0],[1710009033000,0],[1710009034000,0],[1710009035000,0],[1710009036000,0],[1710009037000,0],[1710009038000,0],[1710009039000,0],[1710009040000,0],[1710009041000,0],[1710009042000,0],[1710009043000,0],[1710009044000,0],[1710009045000,0],[1710009046000,0],[1710009047000,0],[1710009048000,0],[1710009049000,0],[1710009050000,0],[1710009051000,0],[1710009052000,0],[1710009053000,0],[1710009054000,0],[1710009055000,0],[1710009056000,0],[1710009057000,0],[1710009058000,0],[1710009059000,0],[1710009060000,0],[1710009061000,0],[1710009062000,0],[1710009063000,0],[1710009064000,0],[1710009065000,0],[1710009066000,0],[1710009067000,0],[1710009068000,0],[1710009069000,0],[1710009070000,0],[1710009071000,0],[1710009072000,0],[1710009073000,0],[1710009074000,0],[1710009075000,0],[1710009076000,0],[1710009077000,0],[1710009078000,0],[1710009079000,0],[1710009080000,0],[1710009081000,0],[1710009082000,0],[1710009083000,0],[1710009084000,0],[1710009085000,0],[1710009086000,0],[1710009087000,0],[1710009088000,0],[1710009089000,0],[1710009090000,0],[1710009091000,0],[1710009092000,0],[1710009093000,0],[1710009094000,0],[1710009095000,0],[1710009096000,0],[1710009097000,0],[1710009098000,0],[1710009099000,0],[1710009100000,0],[1710009101000,0],[1710009102000,0],[1710009103000,0],[1710009104000,0],[1710009105000,0],[1710009106000,0],[1710009107000,0],[1710009108000,0],[1710009109000,0],[1710009110000,0],[1710009111000,0],[1710009112000,0],[1710009113000,0],[1710009114000,0],[1710009115000,0],[1710009116000,0],[1710009117000,0],[1710009118000,0],[1710009119000,0],[1710009120000,0],[1710009121000,0],[1710009122000,0],[1710009123000,0],[1710009124000,0],[1710009125000,0],[1710009126000,0],[1710009127000,0],[1710009128000,0],[1710009129000,0],[1710009130000,0],[1710009131000,0],[1710009132000,0],[1710009133000,0],[1710009134000,0],[1710009135000,0],[1710009136000,0],[1710009137000,0],[1710009138000,0],[1710009139000,0],[1710009140000,0],[1710009141000,0],[1710009142000,0],[1710009143000,0],[1710009144000,0],[1710009145000,0],[1710009146000,0],[1710009147000,0],[1710009148000,0],[1710009149000,0],[1710009150000,0],[1710009151000,0],[1710009152000,0],[1710009153000,0],[1710009154000,0],[1710009155000,0],[1710009156000,0],[1710009157000,0],[1710009158000,0],[1710009159000,0],[1710009160000,0],[1710009161000,0],[1710009162000,0],[1710009163000,0],[1710009164000,0],[1710009165000,0],[1710009166000,0],[1710009167000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#9D00FF',
name: 'validação concorrência transações - c',
data: [
[1710008923000,0],[1710008924000,25],[1710008925000,25],[1710008926000,0],[1710008927000,0],[1710008928000,0],[1710008929000,0],[1710008930000,0],[1710008931000,0],[1710008932000,0],[1710008933000,0],[1710008934000,0],[1710008935000,0],[1710008936000,0],[1710008937000,0],[1710008938000,0],[1710008939000,0],[1710008940000,0],[1710008941000,0],[1710008942000,0],[1710008943000,0],[1710008944000,0],[1710008945000,0],[1710008946000,0],[1710008947000,0],[1710008948000,0],[1710008949000,0],[1710008950000,0],[1710008951000,0],[1710008952000,0],[1710008953000,0],[1710008954000,0],[1710008955000,0],[1710008956000,0],[1710008957000,0],[1710008958000,0],[1710008959000,0],[1710008960000,0],[1710008961000,0],[1710008962000,0],[1710008963000,0],[1710008964000,0],[1710008965000,0],[1710008966000,0],[1710008967000,0],[1710008968000,0],[1710008969000,0],[1710008970000,0],[1710008971000,0],[1710008972000,0],[1710008973000,0],[1710008974000,0],[1710008975000,0],[1710008976000,0],[1710008977000,0],[1710008978000,0],[1710008979000,0],[1710008980000,0],[1710008981000,0],[1710008982000,0],[1710008983000,0],[1710008984000,0],[1710008985000,0],[1710008986000,0],[1710008987000,0],[1710008988000,0],[1710008989000,0],[1710008990000,0],[1710008991000,0],[1710008992000,0],[1710008993000,0],[1710008994000,0],[1710008995000,0],[1710008996000,0],[1710008997000,0],[1710008998000,0],[1710008999000,0],[1710009000000,0],[1710009001000,0],[1710009002000,0],[1710009003000,0],[1710009004000,0],[1710009005000,0],[1710009006000,0],[1710009007000,0],[1710009008000,0],[1710009009000,0],[1710009010000,0],[1710009011000,0],[1710009012000,0],[1710009013000,0],[1710009014000,0],[1710009015000,0],[1710009016000,0],[1710009017000,0],[1710009018000,0],[1710009019000,0],[1710009020000,0],[1710009021000,0],[1710009022000,0],[1710009023000,0],[1710009024000,0],[1710009025000,0],[1710009026000,0],[1710009027000,0],[1710009028000,0],[1710009029000,0],[1710009030000,0],[1710009031000,0],[1710009032000,0],[1710009033000,0],[1710009034000,0],[1710009035000,0],[1710009036000,0],[1710009037000,0],[1710009038000,0],[1710009039000,0],[1710009040000,0],[1710009041000,0],[1710009042000,0],[1710009043000,0],[1710009044000,0],[1710009045000,0],[1710009046000,0],[1710009047000,0],[1710009048000,0],[1710009049000,0],[1710009050000,0],[1710009051000,0],[1710009052000,0],[1710009053000,0],[1710009054000,0],[1710009055000,0],[1710009056000,0],[1710009057000,0],[1710009058000,0],[1710009059000,0],[1710009060000,0],[1710009061000,0],[1710009062000,0],[1710009063000,0],[1710009064000,0],[1710009065000,0],[1710009066000,0],[1710009067000,0],[1710009068000,0],[1710009069000,0],[1710009070000,0],[1710009071000,0],[1710009072000,0],[1710009073000,0],[1710009074000,0],[1710009075000,0],[1710009076000,0],[1710009077000,0],[1710009078000,0],[1710009079000,0],[1710009080000,0],[1710009081000,0],[1710009082000,0],[1710009083000,0],[1710009084000,0],[1710009085000,0],[1710009086000,0],[1710009087000,0],[1710009088000,0],[1710009089000,0],[1710009090000,0],[1710009091000,0],[1710009092000,0],[1710009093000,0],[1710009094000,0],[1710009095000,0],[1710009096000,0],[1710009097000,0],[1710009098000,0],[1710009099000,0],[1710009100000,0],[1710009101000,0],[1710009102000,0],[1710009103000,0],[1710009104000,0],[1710009105000,0],[1710009106000,0],[1710009107000,0],[1710009108000,0],[1710009109000,0],[1710009110000,0],[1710009111000,0],[1710009112000,0],[1710009113000,0],[1710009114000,0],[1710009115000,0],[1710009116000,0],[1710009117000,0],[1710009118000,0],[1710009119000,0],[1710009120000,0],[1710009121000,0],[1710009122000,0],[1710009123000,0],[1710009124000,0],[1710009125000,0],[1710009126000,0],[1710009127000,0],[1710009128000,0],[1710009129000,0],[1710009130000,0],[1710009131000,0],[1710009132000,0],[1710009133000,0],[1710009134000,0],[1710009135000,0],[1710009136000,0],[1710009137000,0],[1710009138000,0],[1710009139000,0],[1710009140000,0],[1710009141000,0],[1710009142000,0],[1710009143000,0],[1710009144000,0],[1710009145000,0],[1710009146000,0],[1710009147000,0],[1710009148000,0],[1710009149000,0],[1710009150000,0],[1710009151000,0],[1710009152000,0],[1710009153000,0],[1710009154000,0],[1710009155000,0],[1710009156000,0],[1710009157000,0],[1710009158000,0],[1710009159000,0],[1710009160000,0],[1710009161000,0],[1710009162000,0],[1710009163000,0],[1710009164000,0],[1710009165000,0],[1710009166000,0],[1710009167000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FF00E1',
name: 'validação concorrência saldo - -25',
data: [
[1710008923000,1],[1710008924000,1],[1710008925000,0],[1710008926000,0],[1710008927000,0],[1710008928000,0],[1710008929000,0],[1710008930000,0],[1710008931000,0],[1710008932000,0],[1710008933000,0],[1710008934000,0],[1710008935000,0],[1710008936000,0],[1710008937000,0],[1710008938000,0],[1710008939000,0],[1710008940000,0],[1710008941000,0],[1710008942000,0],[1710008943000,0],[1710008944000,0],[1710008945000,0],[1710008946000,0],[1710008947000,0],[1710008948000,0],[1710008949000,0],[1710008950000,0],[1710008951000,0],[1710008952000,0],[1710008953000,0],[1710008954000,0],[1710008955000,0],[1710008956000,0],[1710008957000,0],[1710008958000,0],[1710008959000,0],[1710008960000,0],[1710008961000,0],[1710008962000,0],[1710008963000,0],[1710008964000,0],[1710008965000,0],[1710008966000,0],[1710008967000,0],[1710008968000,0],[1710008969000,0],[1710008970000,0],[1710008971000,0],[1710008972000,0],[1710008973000,0],[1710008974000,0],[1710008975000,0],[1710008976000,0],[1710008977000,0],[1710008978000,0],[1710008979000,0],[1710008980000,0],[1710008981000,0],[1710008982000,0],[1710008983000,0],[1710008984000,0],[1710008985000,0],[1710008986000,0],[1710008987000,0],[1710008988000,0],[1710008989000,0],[1710008990000,0],[1710008991000,0],[1710008992000,0],[1710008993000,0],[1710008994000,0],[1710008995000,0],[1710008996000,0],[1710008997000,0],[1710008998000,0],[1710008999000,0],[1710009000000,0],[1710009001000,0],[1710009002000,0],[1710009003000,0],[1710009004000,0],[1710009005000,0],[1710009006000,0],[1710009007000,0],[1710009008000,0],[1710009009000,0],[1710009010000,0],[1710009011000,0],[1710009012000,0],[1710009013000,0],[1710009014000,0],[1710009015000,0],[1710009016000,0],[1710009017000,0],[1710009018000,0],[1710009019000,0],[1710009020000,0],[1710009021000,0],[1710009022000,0],[1710009023000,0],[1710009024000,0],[1710009025000,0],[1710009026000,0],[1710009027000,0],[1710009028000,0],[1710009029000,0],[1710009030000,0],[1710009031000,0],[1710009032000,0],[1710009033000,0],[1710009034000,0],[1710009035000,0],[1710009036000,0],[1710009037000,0],[1710009038000,0],[1710009039000,0],[1710009040000,0],[1710009041000,0],[1710009042000,0],[1710009043000,0],[1710009044000,0],[1710009045000,0],[1710009046000,0],[1710009047000,0],[1710009048000,0],[1710009049000,0],[1710009050000,0],[1710009051000,0],[1710009052000,0],[1710009053000,0],[1710009054000,0],[1710009055000,0],[1710009056000,0],[1710009057000,0],[1710009058000,0],[1710009059000,0],[1710009060000,0],[1710009061000,0],[1710009062000,0],[1710009063000,0],[1710009064000,0],[1710009065000,0],[1710009066000,0],[1710009067000,0],[1710009068000,0],[1710009069000,0],[1710009070000,0],[1710009071000,0],[1710009072000,0],[1710009073000,0],[1710009074000,0],[1710009075000,0],[1710009076000,0],[1710009077000,0],[1710009078000,0],[1710009079000,0],[1710009080000,0],[1710009081000,0],[1710009082000,0],[1710009083000,0],[1710009084000,0],[1710009085000,0],[1710009086000,0],[1710009087000,0],[1710009088000,0],[1710009089000,0],[1710009090000,0],[1710009091000,0],[1710009092000,0],[1710009093000,0],[1710009094000,0],[1710009095000,0],[1710009096000,0],[1710009097000,0],[1710009098000,0],[1710009099000,0],[1710009100000,0],[1710009101000,0],[1710009102000,0],[1710009103000,0],[1710009104000,0],[1710009105000,0],[1710009106000,0],[1710009107000,0],[1710009108000,0],[1710009109000,0],[1710009110000,0],[1710009111000,0],[1710009112000,0],[1710009113000,0],[1710009114000,0],[1710009115000,0],[1710009116000,0],[1710009117000,0],[1710009118000,0],[1710009119000,0],[1710009120000,0],[1710009121000,0],[1710009122000,0],[1710009123000,0],[1710009124000,0],[1710009125000,0],[1710009126000,0],[1710009127000,0],[1710009128000,0],[1710009129000,0],[1710009130000,0],[1710009131000,0],[1710009132000,0],[1710009133000,0],[1710009134000,0],[1710009135000,0],[1710009136000,0],[1710009137000,0],[1710009138000,0],[1710009139000,0],[1710009140000,0],[1710009141000,0],[1710009142000,0],[1710009143000,0],[1710009144000,0],[1710009145000,0],[1710009146000,0],[1710009147000,0],[1710009148000,0],[1710009149000,0],[1710009150000,0],[1710009151000,0],[1710009152000,0],[1710009153000,0],[1710009154000,0],[1710009155000,0],[1710009156000,0],[1710009157000,0],[1710009158000,0],[1710009159000,0],[1710009160000,0],[1710009161000,0],[1710009162000,0],[1710009163000,0],[1710009164000,0],[1710009165000,0],[1710009166000,0],[1710009167000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#AECAEB',
name: 'validação concorrência transações - d',
data: [
[1710008923000,25],[1710008924000,0],[1710008925000,0],[1710008926000,0],[1710008927000,0],[1710008928000,0],[1710008929000,0],[1710008930000,0],[1710008931000,0],[1710008932000,0],[1710008933000,0],[1710008934000,0],[1710008935000,0],[1710008936000,0],[1710008937000,0],[1710008938000,0],[1710008939000,0],[1710008940000,0],[1710008941000,0],[1710008942000,0],[1710008943000,0],[1710008944000,0],[1710008945000,0],[1710008946000,0],[1710008947000,0],[1710008948000,0],[1710008949000,0],[1710008950000,0],[1710008951000,0],[1710008952000,0],[1710008953000,0],[1710008954000,0],[1710008955000,0],[1710008956000,0],[1710008957000,0],[1710008958000,0],[1710008959000,0],[1710008960000,0],[1710008961000,0],[1710008962000,0],[1710008963000,0],[1710008964000,0],[1710008965000,0],[1710008966000,0],[1710008967000,0],[1710008968000,0],[1710008969000,0],[1710008970000,0],[1710008971000,0],[1710008972000,0],[1710008973000,0],[1710008974000,0],[1710008975000,0],[1710008976000,0],[1710008977000,0],[1710008978000,0],[1710008979000,0],[1710008980000,0],[1710008981000,0],[1710008982000,0],[1710008983000,0],[1710008984000,0],[1710008985000,0],[1710008986000,0],[1710008987000,0],[1710008988000,0],[1710008989000,0],[1710008990000,0],[1710008991000,0],[1710008992000,0],[1710008993000,0],[1710008994000,0],[1710008995000,0],[1710008996000,0],[1710008997000,0],[1710008998000,0],[1710008999000,0],[1710009000000,0],[1710009001000,0],[1710009002000,0],[1710009003000,0],[1710009004000,0],[1710009005000,0],[1710009006000,0],[1710009007000,0],[1710009008000,0],[1710009009000,0],[1710009010000,0],[1710009011000,0],[1710009012000,0],[1710009013000,0],[1710009014000,0],[1710009015000,0],[1710009016000,0],[1710009017000,0],[1710009018000,0],[1710009019000,0],[1710009020000,0],[1710009021000,0],[1710009022000,0],[1710009023000,0],[1710009024000,0],[1710009025000,0],[1710009026000,0],[1710009027000,0],[1710009028000,0],[1710009029000,0],[1710009030000,0],[1710009031000,0],[1710009032000,0],[1710009033000,0],[1710009034000,0],[1710009035000,0],[1710009036000,0],[1710009037000,0],[1710009038000,0],[1710009039000,0],[1710009040000,0],[1710009041000,0],[1710009042000,0],[1710009043000,0],[1710009044000,0],[1710009045000,0],[1710009046000,0],[1710009047000,0],[1710009048000,0],[1710009049000,0],[1710009050000,0],[1710009051000,0],[1710009052000,0],[1710009053000,0],[1710009054000,0],[1710009055000,0],[1710009056000,0],[1710009057000,0],[1710009058000,0],[1710009059000,0],[1710009060000,0],[1710009061000,0],[1710009062000,0],[1710009063000,0],[1710009064000,0],[1710009065000,0],[1710009066000,0],[1710009067000,0],[1710009068000,0],[1710009069000,0],[1710009070000,0],[1710009071000,0],[1710009072000,0],[1710009073000,0],[1710009074000,0],[1710009075000,0],[1710009076000,0],[1710009077000,0],[1710009078000,0],[1710009079000,0],[1710009080000,0],[1710009081000,0],[1710009082000,0],[1710009083000,0],[1710009084000,0],[1710009085000,0],[1710009086000,0],[1710009087000,0],[1710009088000,0],[1710009089000,0],[1710009090000,0],[1710009091000,0],[1710009092000,0],[1710009093000,0],[1710009094000,0],[1710009095000,0],[1710009096000,0],[1710009097000,0],[1710009098000,0],[1710009099000,0],[1710009100000,0],[1710009101000,0],[1710009102000,0],[1710009103000,0],[1710009104000,0],[1710009105000,0],[1710009106000,0],[1710009107000,0],[1710009108000,0],[1710009109000,0],[1710009110000,0],[1710009111000,0],[1710009112000,0],[1710009113000,0],[1710009114000,0],[1710009115000,0],[1710009116000,0],[1710009117000,0],[1710009118000,0],[1710009119000,0],[1710009120000,0],[1710009121000,0],[1710009122000,0],[1710009123000,0],[1710009124000,0],[1710009125000,0],[1710009126000,0],[1710009127000,0],[1710009128000,0],[1710009129000,0],[1710009130000,0],[1710009131000,0],[1710009132000,0],[1710009133000,0],[1710009134000,0],[1710009135000,0],[1710009136000,0],[1710009137000,0],[1710009138000,0],[1710009139000,0],[1710009140000,0],[1710009141000,0],[1710009142000,0],[1710009143000,0],[1710009144000,0],[1710009145000,0],[1710009146000,0],[1710009147000,0],[1710009148000,0],[1710009149000,0],[1710009150000,0],[1710009151000,0],[1710009152000,0],[1710009153000,0],[1710009154000,0],[1710009155000,0],[1710009156000,0],[1710009157000,0],[1710009158000,0],[1710009159000,0],[1710009160000,0],[1710009161000,0],[1710009162000,0],[1710009163000,0],[1710009164000,0],[1710009165000,0],[1710009166000,0],[1710009167000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
allUsersData
]
});
allUsersChart.setTitle({
text: '<span class="chart_title">Active Users along the Simulation</span>',
useHTML: true
});
allUsersData.yAxis = 1;
var responsetimeDistributionChart = new Highcharts.Chart({
chart: {
renderTo: 'responsetimeDistributionContainer',
type: 'column',
marginBottom: 60
},
credits: { enabled: false },
legend: {
enabled: true,
floating: true,
y: 5,
borderWidth: 0,
itemStyle: { fontWeight: "normal" },
symbolRadius: 0
},
title: { text: 'A title to let highcharts reserve the place for the title set later' },
navigator: {
maskInside: false
},
xAxis: {
categories: ['4', '11', '18', '25', '31', '38', '45', '52', '58', '65', '72', '79', '86', '92', '99', '106', '113', '119', '126', '133', '140', '146', '153', '160', '167', '173', '180', '187', '194', '200', '207', '214', '221', '227', '234', '241', '248', '255', '261', '268', '275', '282', '288', '295', '302', '309', '315', '322', '329', '336', '342', '349', '356', '363', '369', '376', '383', '390', '396', '403', '410', '417', '424', '430', '437', '444', '451', '457', '464', '471', '478', '484', '491', '498', '505', '511', '518', '525', '532', '538', '545', '552', '559', '565', '572', '579', '586', '593', '599', '606', '613', '620', '626', '633', '640', '647', '653', '660', '667', '674'],
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: [
94.19,1.13,0.45,0.31,0.23,0.22,0.18,0.18,0.13,0.13,0.11,0.08,0.08,0.07,0.06,0.06,0.04,0.05,0.04,0.05,0.03,0.05,0.04,0.03,0.04,0.06,0.04,0.04,0.05,0.03,0.04,0.03,0.04,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.06,0.04,0.05,0.04,0.04,0.02,0.03,0.02,0.02,0.02,0.02,0.01,0.01,0.01,0.01,0.01,0.01,0.02,0.01,0.01,0.01,0.01,0.01,0.02,0.01,0.03,0.01,0.02,0.01,0.02,0.0,0.02,0.01,0.02,0.0,0.02,0.01,0.02,0.02,0.01,0.02,0.02,0.01,0.01,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
],
tooltip: { yDecimals: 0, ySuffix: 'ms' }
},
{
type: 'column',
color: '#f15b4f',
name: 'KO',
data: [
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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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([[1710008923,[126,234,244,254,255,264,270,274,281,283]],[1710008924,null],[1710008925,[26,35,111,165,165,165,165,165,167,168]],[1710008926,[6,6,6,6,6,6,6,6,6,6]],[1710008927,[5,8,13,20,22,25,27,29,30,32]],[1710008928,[7,7,8,8,8,8,8,8,8,8]],[1710008929,[5,6,6,6,7,7,7,7,7,8]],[1710008930,[5,6,6,7,7,7,8,9,9,10]],[1710008931,[5,5,6,6,7,7,8,9,9,10]],[1710008932,[5,5,5,6,6,6,6,6,7,8]],[1710008933,[4,5,5,6,6,6,6,7,7,8]],[1710008934,[4,5,5,6,6,6,6,7,7,7]],[1710008935,[4,5,5,5,5,6,6,6,6,6]],[1710008936,[4,5,5,6,6,6,7,7,8,9]],[1710008937,[4,5,5,5,5,6,6,6,8,9]],[1710008938,[4,5,5,6,6,6,6,6,7,7]],[1710008939,[4,5,5,5,5,6,6,6,7,7]],[1710008940,[3,5,5,6,6,6,6,6,7,8]],[1710008941,[3,4,5,5,5,5,6,6,6,6]],[1710008942,[4,4,5,5,5,5,5,6,6,7]],[1710008943,[3,4,4,5,5,5,5,6,7,8]],[1710008944,[3,4,4,5,5,5,5,6,6,6]],[1710008945,[3,4,4,5,5,5,6,14,48,55]],[1710008946,[2,4,4,4,4,5,5,5,5,5]],[1710008947,[2,3,4,4,4,4,5,5,5,6]],[1710008948,[2,3,4,4,4,4,5,5,6,7]],[1710008949,[2,4,4,5,5,5,5,5,6,6]],[1710008950,[2,4,4,4,5,5,5,5,7,7]],[1710008951,[2,4,4,4,5,5,5,5,5,6]],[1710008952,[2,3,4,5,5,5,5,5,6,6]],[1710008953,[2,3,4,4,5,5,5,5,6,7]],[1710008954,[2,3,4,4,4,4,5,6,10,10]],[1710008955,[2,4,4,4,4,5,5,5,9,24]],[1710008956,[2,4,4,4,4,5,5,5,6,6]],[1710008957,[2,3,4,4,4,4,4,5,5,5]],[1710008958,[2,3,3,4,4,4,4,5,5,6]],[1710008959,[1,3,4,4,4,4,4,5,5,6]],[1710008960,[2,3,4,4,4,4,5,5,6,6]],[1710008961,[2,4,4,4,4,5,5,5,6,6]],[1710008962,[2,3,4,4,4,4,5,5,5,5]],[1710008963,[2,3,4,4,4,5,5,5,6,7]],[1710008964,[2,4,4,4,4,4,5,5,5,6]],[1710008965,[2,3,4,4,4,5,5,15,46,66]],[1710008966,[1,3,3,4,4,4,4,5,6,7]],[1710008967,[2,3,3,4,4,4,4,5,5,5]],[1710008968,[2,3,4,4,4,4,4,5,5,5]],[1710008969,[1,3,3,4,4,4,4,4,4,5]],[1710008970,[1,3,3,4,4,4,4,5,5,6]],[1710008971,[1,3,3,4,4,4,4,4,5,6]],[1710008972,[1,3,3,4,4,4,4,4,4,5]],[1710008973,[2,3,4,4,4,4,5,5,5,6]],[1710008974,[2,3,4,4,4,4,4,5,5,6]],[1710008975,[2,3,4,4,4,4,5,5,8,13]],[1710008976,[2,3,4,4,4,4,4,4,5,5]],[1710008977,[2,3,4,4,4,4,4,4,5,5]],[1710008978,[1,2,3,4,4,4,4,4,4,11]],[1710008979,[1,3,3,3,4,4,4,4,4,5]],[1710008980,[1,3,3,3,3,4,4,4,4,4]],[1710008981,[1,3,3,4,4,4,4,4,4,5]],[1710008982,[1,3,3,4,4,4,4,4,5,6]],[1710008983,[1,2,3,3,4,4,4,4,5,5]],[1710008984,[1,3,3,4,4,4,4,4,5,5]],[1710008985,[1,3,3,4,4,4,4,5,36,45]],[1710008986,[1,3,3,4,4,4,4,4,5,6]],[1710008987,[2,3,3,4,4,4,4,4,6,7]],[1710008988,[1,3,4,4,4,4,5,5,7,11]],[1710008989,[1,3,3,4,4,4,4,4,5,5]],[1710008990,[1,2,3,3,3,3,4,4,4,6]],[1710008991,[1,2,3,3,3,4,4,4,4,5]],[1710008992,[1,3,3,3,3,4,4,4,4,5]],[1710008993,[1,2,3,3,3,3,3,4,4,5]],[1710008994,[1,2,3,3,3,3,4,4,5,6]],[1710008995,[1,3,3,3,3,4,4,5,28,32]],[1710008996,[1,3,3,4,4,4,4,4,6,7]],[1710008997,[1,3,3,4,4,4,4,4,4,5]],[1710008998,[1,3,3,3,3,4,4,4,4,4]],[1710008999,[1,3,3,3,4,4,7,27,48,58]],[1710009000,[1,3,3,4,4,4,4,4,4,5]],[1710009001,[1,3,3,3,3,4,4,4,4,5]],[1710009002,[1,3,3,3,4,4,4,4,5,5]],[1710009003,[2,3,3,4,4,4,4,4,5,5]],[1710009004,[2,2,3,4,4,4,4,4,5,10]],[1710009005,[1,3,3,4,4,4,4,13,26,49]],[1710009006,[1,2,3,4,4,4,4,4,4,5]],[1710009007,[1,3,3,3,4,4,4,4,4,4]],[1710009008,[1,2,3,3,3,4,4,4,4,5]],[1710009009,[2,3,3,4,4,4,4,4,4,5]],[1710009010,[2,3,4,4,4,4,4,4,4,6]],[1710009011,[2,3,3,4,4,4,4,5,6,10]],[1710009012,[1,2,3,3,3,4,4,4,4,5]],[1710009013,[1,2,3,3,3,3,3,4,4,5]],[1710009014,[1,2,3,3,3,3,3,4,4,5]],[1710009015,[1,2,3,3,3,4,4,4,26,41]],[1710009016,[1,3,3,4,4,4,4,4,4,5]],[1710009017,[1,3,3,4,4,4,4,4,5,9]],[1710009018,[1,2,3,3,4,4,4,4,5,7]],[1710009019,[1,2,3,3,3,3,3,3,4,4]],[1710009020,[1,2,3,3,3,3,4,4,4,4]],[1710009021,[1,3,3,3,4,4,4,4,4,5]],[1710009022,[1,3,3,3,3,4,4,4,4,5]],[1710009023,[2,3,3,4,4,4,4,4,4,5]],[1710009024,[1,3,3,4,4,4,4,4,6,12]],[1710009025,[1,3,3,4,4,4,5,20,48,64]],[1710009026,[1,3,3,3,3,3,4,4,4,5]],[1710009027,[1,3,3,3,4,4,4,4,4,5]],[1710009028,[1,3,3,4,4,4,4,4,5,6]],[1710009029,[1,2,3,3,3,4,4,4,6,9]],[1710009030,[1,3,3,4,4,4,4,4,4,5]],[1710009031,[2,3,3,4,4,4,4,4,5,5]],[1710009032,[1,3,3,4,4,4,4,4,5,5]],[1710009033,[1,2,3,3,3,3,4,4,4,5]],[1710009034,[1,3,3,3,3,3,4,4,4,4]],[1710009035,[1,3,3,4,4,7,19,48,70,94]],[1710009036,[1,2,3,3,3,3,4,4,5,9]],[1710009037,[1,2,3,3,3,3,3,4,4,5]],[1710009038,[1,2,3,3,3,4,4,4,4,5]],[1710009039,[1,3,3,4,4,4,5,5,6,8]],[1710009040,[1,3,3,4,4,5,5,6,12,24]],[1710009041,[2,4,5,5,5,5,5,6,6,8]],[1710009042,[1,3,3,4,4,4,4,4,5,6]],[1710009043,[1,3,4,4,4,5,5,5,6,6]],[1710009044,[1,2,3,3,3,3,4,5,7,7]],[1710009045,[2,4,5,6,6,7,15,33,92,103]],[1710009046,[2,3,3,4,4,4,7,26,51,59]],[1710009047,[2,4,4,5,5,5,6,6,7,7]],[1710009048,[1,3,3,4,4,4,4,5,5,7]],[1710009049,[1,4,5,5,6,6,6,7,15,31]],[1710009050,[1,3,3,4,4,4,5,5,12,26]],[1710009051,[2,4,4,5,5,5,6,6,7,8]],[1710009052,[1,3,3,4,4,4,4,5,8,8]],[1710009053,[1,3,4,5,5,5,6,7,8,8]],[1710009054,[1,3,4,4,5,5,5,6,19,31]],[1710009055,[2,3,4,5,5,6,6,7,7,9]],[1710009056,[2,3,4,5,6,14,34,58,86,100]],[1710009057,[2,3,4,4,4,5,5,5,6,6]],[1710009058,[1,2,3,4,4,4,4,5,6,7]],[1710009059,[1,3,3,6,7,16,92,172,239,355]],[1710009060,[2,85,154,231,252,271,291,306,334,344]],[1710009061,[1,3,4,5,6,7,16,39,54,66]],[1710009062,[1,3,3,4,5,5,5,6,7,8]],[1710009063,[1,3,3,5,5,5,6,6,7,7]],[1710009064,[1,3,3,5,5,5,5,6,12,23]],[1710009065,[1,3,3,4,5,5,6,7,35,43]],[1710009066,[1,3,4,9,17,29,46,61,89,125]],[1710009067,[1,2,3,3,3,4,4,5,5,7]],[1710009068,[1,2,3,4,4,4,5,5,9,22]],[1710009069,[1,2,3,3,3,4,4,5,8,20]],[1710009070,[1,3,4,5,5,5,5,6,6,8]],[1710009071,[1,3,3,4,4,4,4,5,6,6]],[1710009072,[2,3,4,5,5,6,6,6,7,8]],[1710009073,[2,3,4,4,4,4,5,6,20,29]],[1710009074,[1,3,4,5,5,5,6,6,7,9]],[1710009075,[1,3,3,4,4,4,4,5,6,7]],[1710009076,[1,3,4,13,21,32,47,68,92,97]],[1710009077,[1,2,3,2,3,4,4,4,5,6]],[1710009078,[1,3,4,5,5,5,5,6,7,13]],[1710009079,[1,2,3,3,3,4,4,4,5,6]],[1710009080,[1,3,4,5,5,5,5,6,7,8]],[1710009081,[1,2,3,4,4,4,4,5,6,7]],[1710009082,[1,3,4,5,5,5,6,7,9,18]],[1710009083,[1,3,3,4,4,4,4,5,19,31]],[1710009084,[1,3,4,4,5,5,5,6,7,7]],[1710009085,[1,2,3,3,3,4,4,4,5,7]],[1710009086,[2,3,4,6,7,13,27,45,72,83]],[1710009087,[2,3,3,4,4,4,4,5,7,16]],[1710009088,[1,2,3,4,4,4,4,5,7,11]],[1710009089,[1,2,3,3,3,4,4,4,5,6]],[1710009090,[2,3,4,4,5,5,5,6,7,9]],[1710009091,[1,3,3,4,4,4,4,5,6,8]],[1710009092,[1,3,3,4,5,5,5,7,20,31]],[1710009093,[1,3,3,4,4,4,5,5,6,8]],[1710009094,[1,3,3,4,4,4,5,6,7,8]],[1710009095,[1,2,3,4,4,4,5,5,6,8]],[1710009096,[1,2,3,4,5,11,27,44,65,69]],[1710009097,[1,3,3,4,5,5,6,6,10,30]],[1710009098,[1,2,3,4,4,4,4,5,6,6]],[1710009099,[1,3,3,4,4,5,5,6,7,8]],[1710009100,[1,2,3,4,4,4,4,5,6,7]],[1710009101,[1,2,3,4,4,4,4,5,6,7]],[1710009102,[1,3,4,5,5,5,6,7,12,23]],[1710009103,[1,3,3,4,5,5,5,6,6,9]],[1710009104,[1,3,4,5,5,5,6,7,8,10]],[1710009105,[1,3,3,5,5,5,5,6,7,9]],[1710009106,[1,3,4,6,7,11,22,41,73,81]],[1710009107,[1,3,3,4,4,5,5,5,7,9]],[1710009108,[1,3,4,5,6,6,6,7,8,16]],[1710009109,[1,3,3,5,5,6,6,7,9,11]],[1710009110,[1,2,3,4,4,4,5,5,7,8]],[1710009111,[1,3,3,4,4,5,5,6,7,16]],[1710009112,[1,3,3,5,5,5,6,6,8,12]],[1710009113,[1,3,4,5,5,5,5,6,7,8]],[1710009114,[2,3,4,4,4,5,5,5,6,8]],[1710009115,[1,3,4,5,5,5,6,6,7,9]],[1710009116,[1,3,3,6,10,20,36,53,76,89]],[1710009117,[1,3,4,5,5,5,6,7,24,39]],[1710009118,[1,3,3,4,4,4,4,5,6,7]],[1710009119,[1,3,4,5,5,7,117,174,359,389]],[1710009120,[101,382,495,551,562,574,590,609,644,677]],[1710009121,[117,261,326,409,425,442,460,486,514,545]],[1710009122,[15,146,211,262,272,286,295,313,335,344]],[1710009123,[2,23,65,106,122,140,164,195,241,252]],[1710009124,[1,2,3,3,4,4,4,5,7,9]],[1710009125,[1,3,4,5,5,6,6,6,8,9]],[1710009126,[1,3,3,4,4,6,10,24,60,69]],[1710009127,[2,4,5,6,6,6,7,10,41,49]],[1710009128,[1,2,3,3,4,4,4,4,6,8]],[1710009129,[1,3,4,5,5,5,6,6,8,9]],[1710009130,[2,2,3,4,4,4,4,5,7,15]],[1710009131,[1,3,4,5,5,5,6,7,11,27]],[1710009132,[1,3,3,3,4,4,4,5,6,7]],[1710009133,[1,3,4,5,5,6,6,6,10,24]],[1710009134,[1,3,3,4,4,4,5,5,7,8]],[1710009135,[1,3,4,4,4,5,5,7,14,22]],[1710009136,[1,2,3,3,4,4,5,8,63,74]],[1710009137,[1,3,3,5,5,5,8,21,46,61]],[1710009138,[1,3,3,4,4,5,5,6,7,9]],[1710009139,[1,3,3,4,5,5,6,6,7,8]],[1710009140,[1,3,3,4,5,5,6,7,11,22]],[1710009141,[1,2,3,4,4,5,5,6,8,10]],[1710009142,[1,3,3,4,4,5,5,6,7,8]],[1710009143,[1,3,3,4,5,5,6,6,7,9]],[1710009144,[2,3,4,4,5,5,5,6,7,9]],[1710009145,[1,2,3,4,4,5,6,7,14,20]],[1710009146,[1,3,3,4,5,5,5,6,7,9]],[1710009147,[1,2,3,15,22,37,50,69,92,107]],[1710009148,[1,3,3,4,4,4,5,6,7,8]],[1710009149,[1,3,3,4,4,4,4,5,7,9]],[1710009150,[1,3,3,5,5,6,6,6,12,16]],[1710009151,[1,2,3,3,3,3,4,4,6,7]],[1710009152,[1,3,3,4,5,5,6,6,8,9]],[1710009153,[1,3,3,4,4,4,4,4,7,7]],[1710009154,[1,3,3,4,5,5,5,6,8,17]],[1710009155,[1,2,3,3,4,4,4,6,10,22]],[1710009156,[1,3,4,4,5,5,5,6,8,11]],[1710009157,[1,3,4,25,34,46,54,66,90,105]],[1710009158,[1,3,3,4,5,5,5,6,7,9]],[1710009159,[1,2,3,4,4,4,4,5,7,16]],[1710009160,[1,3,3,4,5,5,5,6,15,32]],[1710009161,[1,3,3,4,4,4,4,5,8,15]],[1710009162,[1,3,3,4,4,4,4,5,6,8]],[1710009163,[1,2,3,3,3,2,4,4,6,7]],[1710009164,[1,3,3,4,4,5,5,6,8,15]],[1710009165,[1,3,3,5,5,5,6,7,8,11]],[1710009166,[1,3,4,5,5,6,6,6,8,9]],[1710009167,[1,3,4,6,6,8,17,40,67,92]]]);
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([[1710008923,[25,25,0]],[1710008924,[1,0,1]],[1710008925,[25,25,0]],[1710008926,[1,1,0]],[1710008927,[71,46,25]],[1710008928,[3,3,0]],[1710008929,[6,6,0]],[1710008930,[9,9,0]],[1710008931,[11,11,0]],[1710008932,[13,13,0]],[1710008933,[18,18,0]],[1710008934,[19,19,0]],[1710008935,[24,24,0]],[1710008936,[26,26,0]],[1710008937,[27,27,0]],[1710008938,[32,32,0]],[1710008939,[34,34,0]],[1710008940,[37,37,0]],[1710008941,[39,39,0]],[1710008942,[43,43,0]],[1710008943,[44,44,0]],[1710008944,[48,48,0]],[1710008945,[51,51,0]],[1710008946,[54,54,0]],[1710008947,[56,56,0]],[1710008948,[60,60,0]],[1710008949,[61,61,0]],[1710008950,[65,65,0]],[1710008951,[67,67,0]],[1710008952,[70,70,0]],[1710008953,[74,74,0]],[1710008954,[76,76,0]],[1710008955,[80,80,0]],[1710008956,[81,81,0]],[1710008957,[84,84,0]],[1710008958,[87,87,0]],[1710008959,[91,91,0]],[1710008960,[92,92,0]],[1710008961,[96,96,0]],[1710008962,[99,99,0]],[1710008963,[101,101,0]],[1710008964,[105,105,0]],[1710008965,[107,107,0]],[1710008966,[109,109,0]],[1710008967,[114,114,0]],[1710008968,[115,115,0]],[1710008969,[118,118,0]],[1710008970,[121,121,0]],[1710008971,[124,124,0]],[1710008972,[126,126,0]],[1710008973,[129,129,0]],[1710008974,[133,133,0]],[1710008975,[134,134,0]],[1710008976,[138,138,0]],[1710008977,[141,141,0]],[1710008978,[143,143,0]],[1710008979,[146,146,0]],[1710008980,[149,149,0]],[1710008981,[152,152,0]],[1710008982,[155,155,0]],[1710008983,[157,157,0]],[1710008984,[160,160,0]],[1710008985,[164,164,0]],[1710008986,[165,165,0]],[1710008987,[170,170,0]],[1710008988,[172,172,0]],[1710008989,[174,174,0]],[1710008990,[176,176,0]],[1710008991,[181,181,0]],[1710008992,[183,183,0]],[1710008993,[185,185,0]],[1710008994,[189,189,0]],[1710008995,[191,191,0]],[1710008996,[195,195,0]],[1710008997,[197,197,0]],[1710008998,[198,198,0]],[1710008999,[204,204,0]],[1710009000,[204,204,0]],[1710009001,[208,208,0]],[1710009002,[211,211,0]],[1710009003,[213,213,0]],[1710009004,[217,217,0]],[1710009005,[220,220,0]],[1710009006,[222,222,0]],[1710009007,[224,224,0]],[1710009008,[228,228,0]],[1710009009,[230,230,0]],[1710009010,[234,234,0]],[1710009011,[235,235,0]],[1710009012,[239,239,0]],[1710009013,[242,242,0]],[1710009014,[245,245,0]],[1710009015,[248,248,0]],[1710009016,[250,250,0]],[1710009017,[253,253,0]],[1710009018,[255,255,0]],[1710009019,[259,259,0]],[1710009020,[262,262,0]],[1710009021,[265,265,0]],[1710009022,[266,266,0]],[1710009023,[270,270,0]],[1710009024,[272,272,0]],[1710009025,[275,275,0]],[1710009026,[279,279,0]],[1710009027,[281,281,0]],[1710009028,[284,284,0]],[1710009029,[286,286,0]],[1710009030,[291,291,0]],[1710009031,[292,292,0]],[1710009032,[295,295,0]],[1710009033,[298,298,0]],[1710009034,[301,301,0]],[1710009035,[303,303,0]],[1710009036,[306,306,0]],[1710009037,[309,309,0]],[1710009038,[313,313,0]],[1710009039,[314,314,0]],[1710009040,[318,318,0]],[1710009041,[320,320,0]],[1710009042,[323,323,0]],[1710009043,[326,326,0]],[1710009044,[330,330,0]],[1710009045,[331,331,0]],[1710009046,[334,334,0]],[1710009047,[338,338,0]],[1710009048,[340,340,0]],[1710009049,[340,340,0]],[1710009050,[340,340,0]],[1710009051,[340,340,0]],[1710009052,[340,340,0]],[1710009053,[340,340,0]],[1710009054,[340,340,0]],[1710009055,[340,340,0]],[1710009056,[340,340,0]],[1710009057,[340,340,0]],[1710009058,[340,340,0]],[1710009059,[340,340,0]],[1710009060,[340,340,0]],[1710009061,[340,340,0]],[1710009062,[340,340,0]],[1710009063,[340,340,0]],[1710009064,[340,340,0]],[1710009065,[340,340,0]],[1710009066,[340,340,0]],[1710009067,[340,340,0]],[1710009068,[340,340,0]],[1710009069,[340,340,0]],[1710009070,[340,340,0]],[1710009071,[340,340,0]],[1710009072,[340,340,0]],[1710009073,[340,340,0]],[1710009074,[340,340,0]],[1710009075,[340,340,0]],[1710009076,[340,340,0]],[1710009077,[340,340,0]],[1710009078,[340,340,0]],[1710009079,[340,340,0]],[1710009080,[340,340,0]],[1710009081,[340,340,0]],[1710009082,[340,340,0]],[1710009083,[340,340,0]],[1710009084,[340,340,0]],[1710009085,[340,340,0]],[1710009086,[340,340,0]],[1710009087,[340,340,0]],[1710009088,[340,340,0]],[1710009089,[340,340,0]],[1710009090,[340,340,0]],[1710009091,[340,340,0]],[1710009092,[340,340,0]],[1710009093,[340,340,0]],[1710009094,[340,340,0]],[1710009095,[340,340,0]],[1710009096,[340,340,0]],[1710009097,[340,340,0]],[1710009098,[340,340,0]],[1710009099,[340,340,0]],[1710009100,[340,340,0]],[1710009101,[340,340,0]],[1710009102,[340,340,0]],[1710009103,[340,340,0]],[1710009104,[340,340,0]],[1710009105,[340,340,0]],[1710009106,[340,340,0]],[1710009107,[340,340,0]],[1710009108,[340,340,0]],[1710009109,[340,340,0]],[1710009110,[340,340,0]],[1710009111,[340,340,0]],[1710009112,[340,340,0]],[1710009113,[340,340,0]],[1710009114,[340,340,0]],[1710009115,[340,340,0]],[1710009116,[340,340,0]],[1710009117,[340,340,0]],[1710009118,[340,340,0]],[1710009119,[340,340,0]],[1710009120,[340,340,0]],[1710009121,[340,340,0]],[1710009122,[340,340,0]],[1710009123,[340,340,0]],[1710009124,[340,340,0]],[1710009125,[340,340,0]],[1710009126,[340,340,0]],[1710009127,[340,340,0]],[1710009128,[340,340,0]],[1710009129,[340,340,0]],[1710009130,[340,340,0]],[1710009131,[340,340,0]],[1710009132,[340,340,0]],[1710009133,[340,340,0]],[1710009134,[340,340,0]],[1710009135,[340,340,0]],[1710009136,[340,340,0]],[1710009137,[340,340,0]],[1710009138,[340,340,0]],[1710009139,[340,340,0]],[1710009140,[340,340,0]],[1710009141,[340,340,0]],[1710009142,[340,340,0]],[1710009143,[340,340,0]],[1710009144,[340,340,0]],[1710009145,[340,340,0]],[1710009146,[340,340,0]],[1710009147,[340,340,0]],[1710009148,[340,340,0]],[1710009149,[340,340,0]],[1710009150,[340,340,0]],[1710009151,[340,340,0]],[1710009152,[340,340,0]],[1710009153,[340,340,0]],[1710009154,[340,340,0]],[1710009155,[340,340,0]],[1710009156,[340,340,0]],[1710009157,[340,340,0]],[1710009158,[340,340,0]],[1710009159,[340,340,0]],[1710009160,[340,340,0]],[1710009161,[340,340,0]],[1710009162,[340,340,0]],[1710009163,[340,340,0]],[1710009164,[340,340,0]],[1710009165,[340,340,0]],[1710009166,[340,340,0]],[1710009167,[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'