-
Notifications
You must be signed in to change notification settings - Fork 925
/
index.html
1210 lines (1140 loc) · 93.2 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-08 20:32:18 GMT</span>
</span>
<span class="simulation-information-item">
<span class="simulation-information-label">Duration: </span>
<span>4m 8s </span>
</span>
<span class="simulation-tooltip simulation-information-item description" title="Description" data-content="Rinha de Backend - 2024/Q1: Crébito - gabrielhsferreira">
<span class="simulation-information-label">Description: </span>
<span>Rinha de Backend - 2024/Q1: Crébito - gabrielhsferreira</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">j.i.IOException: Premature close<span class="value" style="display:none">0</span></td>
<td class="value error-col-2 total ko">36416</td>
<td class="value error-col-3 total ko">64.431 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">status.find.in(200,422), but actually found 500<span class="value" style="display:none">1</span></td>
<td class="value error-col-2 total ko">14670</td>
<td class="value error-col-3 total ko">25.956 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">status.find.in(200), but actually found 500<span class="value" style="display:none">2</span></td>
<td class="value error-col-2 total ko">5307</td>
<td class="value error-col-3 total ko">9.39 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">status.find.in([200, 209], 304), found 500<span class="value" style="display:none">3</span></td>
<td class="value error-col-2 total ko">126</td>
<td class="value error-col-3 total ko">0.223 %</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: [
[1709929939000,0],[1709929940000,0],[1709929941000,0],[1709929942000,0],[1709929943000,0],[1709929944000,0],[1709929945000,0],[1709929946000,2],[1709929947000,3],[1709929948000,5],[1709929949000,4],[1709929950000,5],[1709929951000,6],[1709929952000,7],[1709929953000,8],[1709929954000,8],[1709929955000,10],[1709929956000,10],[1709929957000,12],[1709929958000,12],[1709929959000,14],[1709929960000,14],[1709929961000,15],[1709929962000,16],[1709929963000,17],[1709929964000,17],[1709929965000,19],[1709929966000,21],[1709929967000,20],[1709929968000,22],[1709929969000,22],[1709929970000,23],[1709929971000,26],[1709929972000,25],[1709929973000,26],[1709929974000,26],[1709929975000,28],[1709929976000,30],[1709929977000,30],[1709929978000,30],[1709929979000,32],[1709929980000,32],[1709929981000,33],[1709929982000,34],[1709929983000,39],[1709929984000,36],[1709929985000,37],[1709929986000,38],[1709929987000,39],[1709929988000,45],[1709929989000,41],[1709929990000,41],[1709929991000,43],[1709929992000,50],[1709929993000,55],[1709929994000,46],[1709929995000,50],[1709929996000,58],[1709929997000,48],[1709929998000,48],[1709929999000,52],[1709930000000,50],[1709930001000,52],[1709930002000,54],[1709930003000,53],[1709930004000,69],[1709930005000,114],[1709930006000,112],[1709930007000,113],[1709930008000,115],[1709930009000,114],[1709930010000,117],[1709930011000,119],[1709930012000,118],[1709930013000,121],[1709930014000,119],[1709930015000,115],[1709930016000,115],[1709930017000,119],[1709930018000,117],[1709930019000,120],[1709930020000,120],[1709930021000,123],[1709930022000,126],[1709930023000,131],[1709930024000,129],[1709930025000,129],[1709930026000,130],[1709930027000,125],[1709930028000,118],[1709930029000,120],[1709930030000,123],[1709930031000,128],[1709930032000,136],[1709930033000,136],[1709930034000,131],[1709930035000,131],[1709930036000,131],[1709930037000,129],[1709930038000,132],[1709930039000,128],[1709930040000,137],[1709930041000,135],[1709930042000,143],[1709930043000,144],[1709930044000,145],[1709930045000,141],[1709930046000,146],[1709930047000,148],[1709930048000,149],[1709930049000,152],[1709930050000,149],[1709930051000,144],[1709930052000,146],[1709930053000,145],[1709930054000,147],[1709930055000,149],[1709930056000,147],[1709930057000,145],[1709930058000,143],[1709930059000,143],[1709930060000,142],[1709930061000,141],[1709930062000,145],[1709930063000,156],[1709930064000,156],[1709930065000,159],[1709930066000,155],[1709930067000,166],[1709930068000,159],[1709930069000,152],[1709930070000,144],[1709930071000,150],[1709930072000,145],[1709930073000,149],[1709930074000,150],[1709930075000,159],[1709930076000,160],[1709930077000,165],[1709930078000,160],[1709930079000,159],[1709930080000,152],[1709930081000,158],[1709930082000,154],[1709930083000,158],[1709930084000,149],[1709930085000,149],[1709930086000,144],[1709930087000,149],[1709930088000,148],[1709930089000,149],[1709930090000,154],[1709930091000,152],[1709930092000,147],[1709930093000,146],[1709930094000,147],[1709930095000,152],[1709930096000,149],[1709930097000,153],[1709930098000,155],[1709930099000,151],[1709930100000,147],[1709930101000,146],[1709930102000,141],[1709930103000,156],[1709930104000,156],[1709930105000,152],[1709930106000,157],[1709930107000,157],[1709930108000,153],[1709930109000,150],[1709930110000,161],[1709930111000,162],[1709930112000,154],[1709930113000,152],[1709930114000,146],[1709930115000,150],[1709930116000,152],[1709930117000,154],[1709930118000,154],[1709930119000,154],[1709930120000,156],[1709930121000,164],[1709930122000,156],[1709930123000,154],[1709930124000,160],[1709930125000,164],[1709930126000,155],[1709930127000,158],[1709930128000,162],[1709930129000,155],[1709930130000,163],[1709930131000,161],[1709930132000,150],[1709930133000,154],[1709930134000,171],[1709930135000,164],[1709930136000,160],[1709930137000,156],[1709930138000,166],[1709930139000,159],[1709930140000,155],[1709930141000,158],[1709930142000,167],[1709930143000,152],[1709930144000,153],[1709930145000,153],[1709930146000,159],[1709930147000,158],[1709930148000,156],[1709930149000,159],[1709930150000,157],[1709930151000,159],[1709930152000,153],[1709930153000,150],[1709930154000,154],[1709930155000,169],[1709930156000,168],[1709930157000,164],[1709930158000,153],[1709930159000,144],[1709930160000,145],[1709930161000,149],[1709930162000,157],[1709930163000,149],[1709930164000,161],[1709930165000,171],[1709930166000,173],[1709930167000,158],[1709930168000,143],[1709930169000,151],[1709930170000,158],[1709930171000,159],[1709930172000,150],[1709930173000,147],[1709930174000,139],[1709930175000,148],[1709930176000,148],[1709930177000,164],[1709930178000,157],[1709930179000,157],[1709930180000,146],[1709930181000,148],[1709930182000,152],[1709930183000,150],[1709930184000,146],[1709930185000,140],[1709930186000,32],[1709930187000,14]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#68b65c',
name: 'débitos',
data: [
[1709929939000,0],[1709929940000,0],[1709929941000,0],[1709929942000,0],[1709929943000,0],[1709929944000,0],[1709929945000,0],[1709929946000,2],[1709929947000,4],[1709929948000,7],[1709929949000,8],[1709929950000,9],[1709929951000,11],[1709929952000,13],[1709929953000,15],[1709929954000,16],[1709929955000,19],[1709929956000,22],[1709929957000,22],[1709929958000,24],[1709929959000,25],[1709929960000,29],[1709929961000,29],[1709929962000,33],[1709929963000,33],[1709929964000,35],[1709929965000,37],[1709929966000,39],[1709929967000,40],[1709929968000,42],[1709929969000,44],[1709929970000,46],[1709929971000,49],[1709929972000,50],[1709929973000,51],[1709929974000,53],[1709929975000,55],[1709929976000,56],[1709929977000,59],[1709929978000,60],[1709929979000,63],[1709929980000,65],[1709929981000,67],[1709929982000,69],[1709929983000,73],[1709929984000,72],[1709929985000,75],[1709929986000,75],[1709929987000,77],[1709929988000,87],[1709929989000,81],[1709929990000,83],[1709929991000,85],[1709929992000,96],[1709929993000,111],[1709929994000,90],[1709929995000,99],[1709929996000,111],[1709929997000,95],[1709929998000,97],[1709929999000,104],[1709930000000,101],[1709930001000,102],[1709930002000,105],[1709930003000,107],[1709930004000,143],[1709930005000,223],[1709930006000,222],[1709930007000,225],[1709930008000,226],[1709930009000,232],[1709930010000,230],[1709930011000,229],[1709930012000,235],[1709930013000,234],[1709930014000,242],[1709930015000,245],[1709930016000,248],[1709930017000,248],[1709930018000,253],[1709930019000,250],[1709930020000,254],[1709930021000,257],[1709930022000,255],[1709930023000,255],[1709930024000,259],[1709930025000,261],[1709930026000,262],[1709930027000,271],[1709930028000,280],[1709930029000,279],[1709930030000,279],[1709930031000,277],[1709930032000,271],[1709930033000,273],[1709930034000,283],[1709930035000,284],[1709930036000,287],[1709930037000,292],[1709930038000,291],[1709930039000,297],[1709930040000,294],[1709930041000,296],[1709930042000,293],[1709930043000,293],[1709930044000,296],[1709930045000,303],[1709930046000,300],[1709930047000,302],[1709930048000,304],[1709930049000,304],[1709930050000,310],[1709930051000,318],[1709930052000,318],[1709930053000,325],[1709930054000,323],[1709930055000,325],[1709930056000,326],[1709930057000,335],[1709930058000,337],[1709930059000,340],[1709930060000,346],[1709930061000,349],[1709930062000,347],[1709930063000,339],[1709930064000,342],[1709930065000,343],[1709930066000,348],[1709930067000,337],[1709930068000,343],[1709930069000,351],[1709930070000,357],[1709930071000,348],[1709930072000,355],[1709930073000,354],[1709930074000,354],[1709930075000,344],[1709930076000,343],[1709930077000,339],[1709930078000,344],[1709930079000,345],[1709930080000,351],[1709930081000,346],[1709930082000,349],[1709930083000,345],[1709930084000,355],[1709930085000,355],[1709930086000,359],[1709930087000,354],[1709930088000,354],[1709930089000,352],[1709930090000,350],[1709930091000,352],[1709930092000,354],[1709930093000,356],[1709930094000,355],[1709930095000,352],[1709930096000,355],[1709930097000,350],[1709930098000,347],[1709930099000,353],[1709930100000,357],[1709930101000,358],[1709930102000,363],[1709930103000,348],[1709930104000,348],[1709930105000,351],[1709930106000,346],[1709930107000,346],[1709930108000,350],[1709930109000,352],[1709930110000,343],[1709930111000,342],[1709930112000,349],[1709930113000,352],[1709930114000,356],[1709930115000,354],[1709930116000,351],[1709930117000,348],[1709930118000,350],[1709930119000,350],[1709930120000,316],[1709930121000,335],[1709930122000,320],[1709930123000,323],[1709930124000,341],[1709930125000,340],[1709930126000,347],[1709930127000,344],[1709930128000,342],[1709930129000,349],[1709930130000,339],[1709930131000,343],[1709930132000,352],[1709930133000,350],[1709930134000,332],[1709930135000,340],[1709930136000,343],[1709930137000,347],[1709930138000,336],[1709930139000,341],[1709930140000,348],[1709930141000,346],[1709930142000,334],[1709930143000,350],[1709930144000,350],[1709930145000,350],[1709930146000,344],[1709930147000,345],[1709930148000,347],[1709930149000,345],[1709930150000,346],[1709930151000,345],[1709930152000,349],[1709930153000,353],[1709930154000,350],[1709930155000,334],[1709930156000,335],[1709930157000,339],[1709930158000,350],[1709930159000,359],[1709930160000,358],[1709930161000,355],[1709930162000,347],[1709930163000,355],[1709930164000,343],[1709930165000,333],[1709930166000,329],[1709930167000,345],[1709930168000,360],[1709930169000,352],[1709930170000,344],[1709930171000,341],[1709930172000,353],[1709930173000,357],[1709930174000,364],[1709930175000,356],[1709930176000,356],[1709930177000,340],[1709930178000,345],[1709930179000,347],[1709930180000,358],[1709930181000,355],[1709930182000,350],[1709930183000,354],[1709930184000,358],[1709930185000,358],[1709930186000,137],[1709930187000,66]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#f15b4f',
name: 'extratos',
data: [
[1709929939000,0],[1709929940000,0],[1709929941000,0],[1709929942000,0],[1709929943000,0],[1709929944000,0],[1709929945000,1],[1709929946000,2],[1709929947000,1],[1709929948000,1],[1709929949000,1],[1709929950000,1],[1709929951000,2],[1709929952000,1],[1709929953000,2],[1709929954000,2],[1709929955000,1],[1709929956000,2],[1709929957000,2],[1709929958000,2],[1709929959000,2],[1709929960000,2],[1709929961000,2],[1709929962000,2],[1709929963000,3],[1709929964000,2],[1709929965000,3],[1709929966000,2],[1709929967000,3],[1709929968000,2],[1709929969000,3],[1709929970000,3],[1709929971000,3],[1709929972000,3],[1709929973000,3],[1709929974000,3],[1709929975000,3],[1709929976000,4],[1709929977000,3],[1709929978000,3],[1709929979000,4],[1709929980000,3],[1709929981000,4],[1709929982000,4],[1709929983000,4],[1709929984000,4],[1709929985000,4],[1709929986000,4],[1709929987000,4],[1709929988000,5],[1709929989000,4],[1709929990000,4],[1709929991000,5],[1709929992000,4],[1709929993000,5],[1709929994000,5],[1709929995000,4],[1709929996000,5],[1709929997000,5],[1709929998000,5],[1709929999000,5],[1709930000000,5],[1709930001000,5],[1709930002000,5],[1709930003000,6],[1709930004000,7],[1709930005000,9],[1709930006000,9],[1709930007000,9],[1709930008000,8],[1709930009000,7],[1709930010000,9],[1709930011000,10],[1709930012000,10],[1709930013000,11],[1709930014000,9],[1709930015000,10],[1709930016000,10],[1709930017000,10],[1709930018000,10],[1709930019000,13],[1709930020000,11],[1709930021000,10],[1709930022000,9],[1709930023000,9],[1709930024000,8],[1709930025000,11],[1709930026000,10],[1709930027000,10],[1709930028000,10],[1709930029000,12],[1709930030000,11],[1709930031000,13],[1709930032000,11],[1709930033000,12],[1709930034000,11],[1709930035000,12],[1709930036000,11],[1709930037000,13],[1709930038000,13],[1709930039000,12],[1709930040000,11],[1709930041000,10],[1709930042000,10],[1709930043000,12],[1709930044000,12],[1709930045000,13],[1709930046000,11],[1709930047000,11],[1709930048000,12],[1709930049000,12],[1709930050000,12],[1709930051000,12],[1709930052000,11],[1709930053000,10],[1709930054000,11],[1709930055000,11],[1709930056000,13],[1709930057000,11],[1709930058000,11],[1709930059000,11],[1709930060000,10],[1709930061000,12],[1709930062000,11],[1709930063000,11],[1709930064000,10],[1709930065000,10],[1709930066000,10],[1709930067000,11],[1709930068000,11],[1709930069000,11],[1709930070000,13],[1709930071000,14],[1709930072000,13],[1709930073000,11],[1709930074000,10],[1709930075000,10],[1709930076000,10],[1709930077000,10],[1709930078000,10],[1709930079000,10],[1709930080000,10],[1709930081000,10],[1709930082000,10],[1709930083000,10],[1709930084000,10],[1709930085000,10],[1709930086000,11],[1709930087000,11],[1709930088000,11],[1709930089000,10],[1709930090000,10],[1709930091000,10],[1709930092000,11],[1709930093000,11],[1709930094000,11],[1709930095000,10],[1709930096000,10],[1709930097000,10],[1709930098000,10],[1709930099000,10],[1709930100000,10],[1709930101000,10],[1709930102000,10],[1709930103000,10],[1709930104000,10],[1709930105000,10],[1709930106000,10],[1709930107000,10],[1709930108000,10],[1709930109000,10],[1709930110000,10],[1709930111000,10],[1709930112000,10],[1709930113000,10],[1709930114000,10],[1709930115000,10],[1709930116000,10],[1709930117000,10],[1709930118000,10],[1709930119000,10],[1709930120000,15],[1709930121000,14],[1709930122000,15],[1709930123000,14],[1709930124000,11],[1709930125000,10],[1709930126000,10],[1709930127000,10],[1709930128000,10],[1709930129000,10],[1709930130000,10],[1709930131000,10],[1709930132000,10],[1709930133000,10],[1709930134000,10],[1709930135000,10],[1709930136000,10],[1709930137000,10],[1709930138000,10],[1709930139000,10],[1709930140000,10],[1709930141000,10],[1709930142000,10],[1709930143000,10],[1709930144000,10],[1709930145000,11],[1709930146000,10],[1709930147000,10],[1709930148000,10],[1709930149000,10],[1709930150000,10],[1709930151000,10],[1709930152000,10],[1709930153000,10],[1709930154000,10],[1709930155000,10],[1709930156000,10],[1709930157000,11],[1709930158000,11],[1709930159000,11],[1709930160000,10],[1709930161000,10],[1709930162000,10],[1709930163000,10],[1709930164000,10],[1709930165000,10],[1709930166000,11],[1709930167000,11],[1709930168000,11],[1709930169000,11],[1709930170000,12],[1709930171000,12],[1709930172000,11],[1709930173000,10],[1709930174000,10],[1709930175000,10],[1709930176000,10],[1709930177000,10],[1709930178000,10],[1709930179000,10],[1709930180000,10],[1709930181000,10],[1709930182000,10],[1709930183000,10],[1709930184000,10],[1709930185000,9],[1709930186000,0],[1709930187000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FFDD00',
name: 'validações',
data: [
[1709929939000,0],[1709929940000,0],[1709929941000,0],[1709929942000,0],[1709929943000,0],[1709929944000,5],[1709929945000,5],[1709929946000,0],[1709929947000,0],[1709929948000,0],[1709929949000,0],[1709929950000,0],[1709929951000,0],[1709929952000,0],[1709929953000,0],[1709929954000,0],[1709929955000,0],[1709929956000,0],[1709929957000,0],[1709929958000,0],[1709929959000,0],[1709929960000,0],[1709929961000,0],[1709929962000,0],[1709929963000,0],[1709929964000,0],[1709929965000,0],[1709929966000,0],[1709929967000,0],[1709929968000,0],[1709929969000,0],[1709929970000,0],[1709929971000,0],[1709929972000,0],[1709929973000,0],[1709929974000,0],[1709929975000,0],[1709929976000,0],[1709929977000,0],[1709929978000,0],[1709929979000,0],[1709929980000,0],[1709929981000,0],[1709929982000,0],[1709929983000,0],[1709929984000,0],[1709929985000,0],[1709929986000,0],[1709929987000,0],[1709929988000,0],[1709929989000,0],[1709929990000,0],[1709929991000,0],[1709929992000,0],[1709929993000,0],[1709929994000,0],[1709929995000,0],[1709929996000,0],[1709929997000,0],[1709929998000,0],[1709929999000,0],[1709930000000,0],[1709930001000,0],[1709930002000,0],[1709930003000,0],[1709930004000,0],[1709930005000,0],[1709930006000,0],[1709930007000,0],[1709930008000,0],[1709930009000,0],[1709930010000,0],[1709930011000,0],[1709930012000,0],[1709930013000,0],[1709930014000,0],[1709930015000,0],[1709930016000,0],[1709930017000,0],[1709930018000,0],[1709930019000,0],[1709930020000,0],[1709930021000,0],[1709930022000,0],[1709930023000,0],[1709930024000,0],[1709930025000,0],[1709930026000,0],[1709930027000,0],[1709930028000,0],[1709930029000,0],[1709930030000,0],[1709930031000,0],[1709930032000,0],[1709930033000,0],[1709930034000,0],[1709930035000,0],[1709930036000,0],[1709930037000,0],[1709930038000,0],[1709930039000,0],[1709930040000,0],[1709930041000,0],[1709930042000,0],[1709930043000,0],[1709930044000,0],[1709930045000,0],[1709930046000,0],[1709930047000,0],[1709930048000,0],[1709930049000,0],[1709930050000,0],[1709930051000,0],[1709930052000,0],[1709930053000,0],[1709930054000,0],[1709930055000,0],[1709930056000,0],[1709930057000,0],[1709930058000,0],[1709930059000,0],[1709930060000,0],[1709930061000,0],[1709930062000,0],[1709930063000,0],[1709930064000,0],[1709930065000,0],[1709930066000,0],[1709930067000,0],[1709930068000,0],[1709930069000,0],[1709930070000,0],[1709930071000,0],[1709930072000,0],[1709930073000,0],[1709930074000,0],[1709930075000,0],[1709930076000,0],[1709930077000,0],[1709930078000,0],[1709930079000,0],[1709930080000,0],[1709930081000,0],[1709930082000,0],[1709930083000,0],[1709930084000,0],[1709930085000,0],[1709930086000,0],[1709930087000,0],[1709930088000,0],[1709930089000,0],[1709930090000,0],[1709930091000,0],[1709930092000,0],[1709930093000,0],[1709930094000,0],[1709930095000,0],[1709930096000,0],[1709930097000,0],[1709930098000,0],[1709930099000,0],[1709930100000,0],[1709930101000,0],[1709930102000,0],[1709930103000,0],[1709930104000,0],[1709930105000,0],[1709930106000,0],[1709930107000,0],[1709930108000,0],[1709930109000,0],[1709930110000,0],[1709930111000,0],[1709930112000,0],[1709930113000,0],[1709930114000,0],[1709930115000,0],[1709930116000,0],[1709930117000,0],[1709930118000,0],[1709930119000,0],[1709930120000,0],[1709930121000,0],[1709930122000,0],[1709930123000,0],[1709930124000,0],[1709930125000,0],[1709930126000,0],[1709930127000,0],[1709930128000,0],[1709930129000,0],[1709930130000,0],[1709930131000,0],[1709930132000,0],[1709930133000,0],[1709930134000,0],[1709930135000,0],[1709930136000,0],[1709930137000,0],[1709930138000,0],[1709930139000,0],[1709930140000,0],[1709930141000,0],[1709930142000,0],[1709930143000,0],[1709930144000,0],[1709930145000,0],[1709930146000,0],[1709930147000,0],[1709930148000,0],[1709930149000,0],[1709930150000,0],[1709930151000,0],[1709930152000,0],[1709930153000,0],[1709930154000,0],[1709930155000,0],[1709930156000,0],[1709930157000,0],[1709930158000,0],[1709930159000,0],[1709930160000,0],[1709930161000,0],[1709930162000,0],[1709930163000,0],[1709930164000,0],[1709930165000,0],[1709930166000,0],[1709930167000,0],[1709930168000,0],[1709930169000,0],[1709930170000,0],[1709930171000,0],[1709930172000,0],[1709930173000,0],[1709930174000,0],[1709930175000,0],[1709930176000,0],[1709930177000,0],[1709930178000,0],[1709930179000,0],[1709930180000,0],[1709930181000,0],[1709930182000,0],[1709930183000,0],[1709930184000,0],[1709930185000,0],[1709930186000,0],[1709930187000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00D5FF',
name: 'validação HTTP 404',
data: [
[1709929939000,0],[1709929940000,0],[1709929941000,0],[1709929942000,0],[1709929943000,0],[1709929944000,1],[1709929945000,1],[1709929946000,0],[1709929947000,0],[1709929948000,0],[1709929949000,0],[1709929950000,0],[1709929951000,0],[1709929952000,0],[1709929953000,0],[1709929954000,0],[1709929955000,0],[1709929956000,0],[1709929957000,0],[1709929958000,0],[1709929959000,0],[1709929960000,0],[1709929961000,0],[1709929962000,0],[1709929963000,0],[1709929964000,0],[1709929965000,0],[1709929966000,0],[1709929967000,0],[1709929968000,0],[1709929969000,0],[1709929970000,0],[1709929971000,0],[1709929972000,0],[1709929973000,0],[1709929974000,0],[1709929975000,0],[1709929976000,0],[1709929977000,0],[1709929978000,0],[1709929979000,0],[1709929980000,0],[1709929981000,0],[1709929982000,0],[1709929983000,0],[1709929984000,0],[1709929985000,0],[1709929986000,0],[1709929987000,0],[1709929988000,0],[1709929989000,0],[1709929990000,0],[1709929991000,0],[1709929992000,0],[1709929993000,0],[1709929994000,0],[1709929995000,0],[1709929996000,0],[1709929997000,0],[1709929998000,0],[1709929999000,0],[1709930000000,0],[1709930001000,0],[1709930002000,0],[1709930003000,0],[1709930004000,0],[1709930005000,0],[1709930006000,0],[1709930007000,0],[1709930008000,0],[1709930009000,0],[1709930010000,0],[1709930011000,0],[1709930012000,0],[1709930013000,0],[1709930014000,0],[1709930015000,0],[1709930016000,0],[1709930017000,0],[1709930018000,0],[1709930019000,0],[1709930020000,0],[1709930021000,0],[1709930022000,0],[1709930023000,0],[1709930024000,0],[1709930025000,0],[1709930026000,0],[1709930027000,0],[1709930028000,0],[1709930029000,0],[1709930030000,0],[1709930031000,0],[1709930032000,0],[1709930033000,0],[1709930034000,0],[1709930035000,0],[1709930036000,0],[1709930037000,0],[1709930038000,0],[1709930039000,0],[1709930040000,0],[1709930041000,0],[1709930042000,0],[1709930043000,0],[1709930044000,0],[1709930045000,0],[1709930046000,0],[1709930047000,0],[1709930048000,0],[1709930049000,0],[1709930050000,0],[1709930051000,0],[1709930052000,0],[1709930053000,0],[1709930054000,0],[1709930055000,0],[1709930056000,0],[1709930057000,0],[1709930058000,0],[1709930059000,0],[1709930060000,0],[1709930061000,0],[1709930062000,0],[1709930063000,0],[1709930064000,0],[1709930065000,0],[1709930066000,0],[1709930067000,0],[1709930068000,0],[1709930069000,0],[1709930070000,0],[1709930071000,0],[1709930072000,0],[1709930073000,0],[1709930074000,0],[1709930075000,0],[1709930076000,0],[1709930077000,0],[1709930078000,0],[1709930079000,0],[1709930080000,0],[1709930081000,0],[1709930082000,0],[1709930083000,0],[1709930084000,0],[1709930085000,0],[1709930086000,0],[1709930087000,0],[1709930088000,0],[1709930089000,0],[1709930090000,0],[1709930091000,0],[1709930092000,0],[1709930093000,0],[1709930094000,0],[1709930095000,0],[1709930096000,0],[1709930097000,0],[1709930098000,0],[1709930099000,0],[1709930100000,0],[1709930101000,0],[1709930102000,0],[1709930103000,0],[1709930104000,0],[1709930105000,0],[1709930106000,0],[1709930107000,0],[1709930108000,0],[1709930109000,0],[1709930110000,0],[1709930111000,0],[1709930112000,0],[1709930113000,0],[1709930114000,0],[1709930115000,0],[1709930116000,0],[1709930117000,0],[1709930118000,0],[1709930119000,0],[1709930120000,0],[1709930121000,0],[1709930122000,0],[1709930123000,0],[1709930124000,0],[1709930125000,0],[1709930126000,0],[1709930127000,0],[1709930128000,0],[1709930129000,0],[1709930130000,0],[1709930131000,0],[1709930132000,0],[1709930133000,0],[1709930134000,0],[1709930135000,0],[1709930136000,0],[1709930137000,0],[1709930138000,0],[1709930139000,0],[1709930140000,0],[1709930141000,0],[1709930142000,0],[1709930143000,0],[1709930144000,0],[1709930145000,0],[1709930146000,0],[1709930147000,0],[1709930148000,0],[1709930149000,0],[1709930150000,0],[1709930151000,0],[1709930152000,0],[1709930153000,0],[1709930154000,0],[1709930155000,0],[1709930156000,0],[1709930157000,0],[1709930158000,0],[1709930159000,0],[1709930160000,0],[1709930161000,0],[1709930162000,0],[1709930163000,0],[1709930164000,0],[1709930165000,0],[1709930166000,0],[1709930167000,0],[1709930168000,0],[1709930169000,0],[1709930170000,0],[1709930171000,0],[1709930172000,0],[1709930173000,0],[1709930174000,0],[1709930175000,0],[1709930176000,0],[1709930177000,0],[1709930178000,0],[1709930179000,0],[1709930180000,0],[1709930181000,0],[1709930182000,0],[1709930183000,0],[1709930184000,0],[1709930185000,0],[1709930186000,0],[1709930187000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00FF00',
name: 'validação concorrência saldo - 0',
data: [
[1709929939000,0],[1709929940000,0],[1709929941000,0],[1709929942000,0],[1709929943000,1],[1709929944000,0],[1709929945000,0],[1709929946000,0],[1709929947000,0],[1709929948000,0],[1709929949000,0],[1709929950000,0],[1709929951000,0],[1709929952000,0],[1709929953000,0],[1709929954000,0],[1709929955000,0],[1709929956000,0],[1709929957000,0],[1709929958000,0],[1709929959000,0],[1709929960000,0],[1709929961000,0],[1709929962000,0],[1709929963000,0],[1709929964000,0],[1709929965000,0],[1709929966000,0],[1709929967000,0],[1709929968000,0],[1709929969000,0],[1709929970000,0],[1709929971000,0],[1709929972000,0],[1709929973000,0],[1709929974000,0],[1709929975000,0],[1709929976000,0],[1709929977000,0],[1709929978000,0],[1709929979000,0],[1709929980000,0],[1709929981000,0],[1709929982000,0],[1709929983000,0],[1709929984000,0],[1709929985000,0],[1709929986000,0],[1709929987000,0],[1709929988000,0],[1709929989000,0],[1709929990000,0],[1709929991000,0],[1709929992000,0],[1709929993000,0],[1709929994000,0],[1709929995000,0],[1709929996000,0],[1709929997000,0],[1709929998000,0],[1709929999000,0],[1709930000000,0],[1709930001000,0],[1709930002000,0],[1709930003000,0],[1709930004000,0],[1709930005000,0],[1709930006000,0],[1709930007000,0],[1709930008000,0],[1709930009000,0],[1709930010000,0],[1709930011000,0],[1709930012000,0],[1709930013000,0],[1709930014000,0],[1709930015000,0],[1709930016000,0],[1709930017000,0],[1709930018000,0],[1709930019000,0],[1709930020000,0],[1709930021000,0],[1709930022000,0],[1709930023000,0],[1709930024000,0],[1709930025000,0],[1709930026000,0],[1709930027000,0],[1709930028000,0],[1709930029000,0],[1709930030000,0],[1709930031000,0],[1709930032000,0],[1709930033000,0],[1709930034000,0],[1709930035000,0],[1709930036000,0],[1709930037000,0],[1709930038000,0],[1709930039000,0],[1709930040000,0],[1709930041000,0],[1709930042000,0],[1709930043000,0],[1709930044000,0],[1709930045000,0],[1709930046000,0],[1709930047000,0],[1709930048000,0],[1709930049000,0],[1709930050000,0],[1709930051000,0],[1709930052000,0],[1709930053000,0],[1709930054000,0],[1709930055000,0],[1709930056000,0],[1709930057000,0],[1709930058000,0],[1709930059000,0],[1709930060000,0],[1709930061000,0],[1709930062000,0],[1709930063000,0],[1709930064000,0],[1709930065000,0],[1709930066000,0],[1709930067000,0],[1709930068000,0],[1709930069000,0],[1709930070000,0],[1709930071000,0],[1709930072000,0],[1709930073000,0],[1709930074000,0],[1709930075000,0],[1709930076000,0],[1709930077000,0],[1709930078000,0],[1709930079000,0],[1709930080000,0],[1709930081000,0],[1709930082000,0],[1709930083000,0],[1709930084000,0],[1709930085000,0],[1709930086000,0],[1709930087000,0],[1709930088000,0],[1709930089000,0],[1709930090000,0],[1709930091000,0],[1709930092000,0],[1709930093000,0],[1709930094000,0],[1709930095000,0],[1709930096000,0],[1709930097000,0],[1709930098000,0],[1709930099000,0],[1709930100000,0],[1709930101000,0],[1709930102000,0],[1709930103000,0],[1709930104000,0],[1709930105000,0],[1709930106000,0],[1709930107000,0],[1709930108000,0],[1709930109000,0],[1709930110000,0],[1709930111000,0],[1709930112000,0],[1709930113000,0],[1709930114000,0],[1709930115000,0],[1709930116000,0],[1709930117000,0],[1709930118000,0],[1709930119000,0],[1709930120000,0],[1709930121000,0],[1709930122000,0],[1709930123000,0],[1709930124000,0],[1709930125000,0],[1709930126000,0],[1709930127000,0],[1709930128000,0],[1709930129000,0],[1709930130000,0],[1709930131000,0],[1709930132000,0],[1709930133000,0],[1709930134000,0],[1709930135000,0],[1709930136000,0],[1709930137000,0],[1709930138000,0],[1709930139000,0],[1709930140000,0],[1709930141000,0],[1709930142000,0],[1709930143000,0],[1709930144000,0],[1709930145000,0],[1709930146000,0],[1709930147000,0],[1709930148000,0],[1709930149000,0],[1709930150000,0],[1709930151000,0],[1709930152000,0],[1709930153000,0],[1709930154000,0],[1709930155000,0],[1709930156000,0],[1709930157000,0],[1709930158000,0],[1709930159000,0],[1709930160000,0],[1709930161000,0],[1709930162000,0],[1709930163000,0],[1709930164000,0],[1709930165000,0],[1709930166000,0],[1709930167000,0],[1709930168000,0],[1709930169000,0],[1709930170000,0],[1709930171000,0],[1709930172000,0],[1709930173000,0],[1709930174000,0],[1709930175000,0],[1709930176000,0],[1709930177000,0],[1709930178000,0],[1709930179000,0],[1709930180000,0],[1709930181000,0],[1709930182000,0],[1709930183000,0],[1709930184000,0],[1709930185000,0],[1709930186000,0],[1709930187000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#9D00FF',
name: 'validação concorrência transações - c',
data: [
[1709929939000,0],[1709929940000,0],[1709929941000,0],[1709929942000,19],[1709929943000,25],[1709929944000,0],[1709929945000,0],[1709929946000,0],[1709929947000,0],[1709929948000,0],[1709929949000,0],[1709929950000,0],[1709929951000,0],[1709929952000,0],[1709929953000,0],[1709929954000,0],[1709929955000,0],[1709929956000,0],[1709929957000,0],[1709929958000,0],[1709929959000,0],[1709929960000,0],[1709929961000,0],[1709929962000,0],[1709929963000,0],[1709929964000,0],[1709929965000,0],[1709929966000,0],[1709929967000,0],[1709929968000,0],[1709929969000,0],[1709929970000,0],[1709929971000,0],[1709929972000,0],[1709929973000,0],[1709929974000,0],[1709929975000,0],[1709929976000,0],[1709929977000,0],[1709929978000,0],[1709929979000,0],[1709929980000,0],[1709929981000,0],[1709929982000,0],[1709929983000,0],[1709929984000,0],[1709929985000,0],[1709929986000,0],[1709929987000,0],[1709929988000,0],[1709929989000,0],[1709929990000,0],[1709929991000,0],[1709929992000,0],[1709929993000,0],[1709929994000,0],[1709929995000,0],[1709929996000,0],[1709929997000,0],[1709929998000,0],[1709929999000,0],[1709930000000,0],[1709930001000,0],[1709930002000,0],[1709930003000,0],[1709930004000,0],[1709930005000,0],[1709930006000,0],[1709930007000,0],[1709930008000,0],[1709930009000,0],[1709930010000,0],[1709930011000,0],[1709930012000,0],[1709930013000,0],[1709930014000,0],[1709930015000,0],[1709930016000,0],[1709930017000,0],[1709930018000,0],[1709930019000,0],[1709930020000,0],[1709930021000,0],[1709930022000,0],[1709930023000,0],[1709930024000,0],[1709930025000,0],[1709930026000,0],[1709930027000,0],[1709930028000,0],[1709930029000,0],[1709930030000,0],[1709930031000,0],[1709930032000,0],[1709930033000,0],[1709930034000,0],[1709930035000,0],[1709930036000,0],[1709930037000,0],[1709930038000,0],[1709930039000,0],[1709930040000,0],[1709930041000,0],[1709930042000,0],[1709930043000,0],[1709930044000,0],[1709930045000,0],[1709930046000,0],[1709930047000,0],[1709930048000,0],[1709930049000,0],[1709930050000,0],[1709930051000,0],[1709930052000,0],[1709930053000,0],[1709930054000,0],[1709930055000,0],[1709930056000,0],[1709930057000,0],[1709930058000,0],[1709930059000,0],[1709930060000,0],[1709930061000,0],[1709930062000,0],[1709930063000,0],[1709930064000,0],[1709930065000,0],[1709930066000,0],[1709930067000,0],[1709930068000,0],[1709930069000,0],[1709930070000,0],[1709930071000,0],[1709930072000,0],[1709930073000,0],[1709930074000,0],[1709930075000,0],[1709930076000,0],[1709930077000,0],[1709930078000,0],[1709930079000,0],[1709930080000,0],[1709930081000,0],[1709930082000,0],[1709930083000,0],[1709930084000,0],[1709930085000,0],[1709930086000,0],[1709930087000,0],[1709930088000,0],[1709930089000,0],[1709930090000,0],[1709930091000,0],[1709930092000,0],[1709930093000,0],[1709930094000,0],[1709930095000,0],[1709930096000,0],[1709930097000,0],[1709930098000,0],[1709930099000,0],[1709930100000,0],[1709930101000,0],[1709930102000,0],[1709930103000,0],[1709930104000,0],[1709930105000,0],[1709930106000,0],[1709930107000,0],[1709930108000,0],[1709930109000,0],[1709930110000,0],[1709930111000,0],[1709930112000,0],[1709930113000,0],[1709930114000,0],[1709930115000,0],[1709930116000,0],[1709930117000,0],[1709930118000,0],[1709930119000,0],[1709930120000,0],[1709930121000,0],[1709930122000,0],[1709930123000,0],[1709930124000,0],[1709930125000,0],[1709930126000,0],[1709930127000,0],[1709930128000,0],[1709930129000,0],[1709930130000,0],[1709930131000,0],[1709930132000,0],[1709930133000,0],[1709930134000,0],[1709930135000,0],[1709930136000,0],[1709930137000,0],[1709930138000,0],[1709930139000,0],[1709930140000,0],[1709930141000,0],[1709930142000,0],[1709930143000,0],[1709930144000,0],[1709930145000,0],[1709930146000,0],[1709930147000,0],[1709930148000,0],[1709930149000,0],[1709930150000,0],[1709930151000,0],[1709930152000,0],[1709930153000,0],[1709930154000,0],[1709930155000,0],[1709930156000,0],[1709930157000,0],[1709930158000,0],[1709930159000,0],[1709930160000,0],[1709930161000,0],[1709930162000,0],[1709930163000,0],[1709930164000,0],[1709930165000,0],[1709930166000,0],[1709930167000,0],[1709930168000,0],[1709930169000,0],[1709930170000,0],[1709930171000,0],[1709930172000,0],[1709930173000,0],[1709930174000,0],[1709930175000,0],[1709930176000,0],[1709930177000,0],[1709930178000,0],[1709930179000,0],[1709930180000,0],[1709930181000,0],[1709930182000,0],[1709930183000,0],[1709930184000,0],[1709930185000,0],[1709930186000,0],[1709930187000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FF00E1',
name: 'validação concorrência saldo - -25',
data: [
[1709929939000,0],[1709929940000,0],[1709929941000,1],[1709929942000,1],[1709929943000,0],[1709929944000,0],[1709929945000,0],[1709929946000,0],[1709929947000,0],[1709929948000,0],[1709929949000,0],[1709929950000,0],[1709929951000,0],[1709929952000,0],[1709929953000,0],[1709929954000,0],[1709929955000,0],[1709929956000,0],[1709929957000,0],[1709929958000,0],[1709929959000,0],[1709929960000,0],[1709929961000,0],[1709929962000,0],[1709929963000,0],[1709929964000,0],[1709929965000,0],[1709929966000,0],[1709929967000,0],[1709929968000,0],[1709929969000,0],[1709929970000,0],[1709929971000,0],[1709929972000,0],[1709929973000,0],[1709929974000,0],[1709929975000,0],[1709929976000,0],[1709929977000,0],[1709929978000,0],[1709929979000,0],[1709929980000,0],[1709929981000,0],[1709929982000,0],[1709929983000,0],[1709929984000,0],[1709929985000,0],[1709929986000,0],[1709929987000,0],[1709929988000,0],[1709929989000,0],[1709929990000,0],[1709929991000,0],[1709929992000,0],[1709929993000,0],[1709929994000,0],[1709929995000,0],[1709929996000,0],[1709929997000,0],[1709929998000,0],[1709929999000,0],[1709930000000,0],[1709930001000,0],[1709930002000,0],[1709930003000,0],[1709930004000,0],[1709930005000,0],[1709930006000,0],[1709930007000,0],[1709930008000,0],[1709930009000,0],[1709930010000,0],[1709930011000,0],[1709930012000,0],[1709930013000,0],[1709930014000,0],[1709930015000,0],[1709930016000,0],[1709930017000,0],[1709930018000,0],[1709930019000,0],[1709930020000,0],[1709930021000,0],[1709930022000,0],[1709930023000,0],[1709930024000,0],[1709930025000,0],[1709930026000,0],[1709930027000,0],[1709930028000,0],[1709930029000,0],[1709930030000,0],[1709930031000,0],[1709930032000,0],[1709930033000,0],[1709930034000,0],[1709930035000,0],[1709930036000,0],[1709930037000,0],[1709930038000,0],[1709930039000,0],[1709930040000,0],[1709930041000,0],[1709930042000,0],[1709930043000,0],[1709930044000,0],[1709930045000,0],[1709930046000,0],[1709930047000,0],[1709930048000,0],[1709930049000,0],[1709930050000,0],[1709930051000,0],[1709930052000,0],[1709930053000,0],[1709930054000,0],[1709930055000,0],[1709930056000,0],[1709930057000,0],[1709930058000,0],[1709930059000,0],[1709930060000,0],[1709930061000,0],[1709930062000,0],[1709930063000,0],[1709930064000,0],[1709930065000,0],[1709930066000,0],[1709930067000,0],[1709930068000,0],[1709930069000,0],[1709930070000,0],[1709930071000,0],[1709930072000,0],[1709930073000,0],[1709930074000,0],[1709930075000,0],[1709930076000,0],[1709930077000,0],[1709930078000,0],[1709930079000,0],[1709930080000,0],[1709930081000,0],[1709930082000,0],[1709930083000,0],[1709930084000,0],[1709930085000,0],[1709930086000,0],[1709930087000,0],[1709930088000,0],[1709930089000,0],[1709930090000,0],[1709930091000,0],[1709930092000,0],[1709930093000,0],[1709930094000,0],[1709930095000,0],[1709930096000,0],[1709930097000,0],[1709930098000,0],[1709930099000,0],[1709930100000,0],[1709930101000,0],[1709930102000,0],[1709930103000,0],[1709930104000,0],[1709930105000,0],[1709930106000,0],[1709930107000,0],[1709930108000,0],[1709930109000,0],[1709930110000,0],[1709930111000,0],[1709930112000,0],[1709930113000,0],[1709930114000,0],[1709930115000,0],[1709930116000,0],[1709930117000,0],[1709930118000,0],[1709930119000,0],[1709930120000,0],[1709930121000,0],[1709930122000,0],[1709930123000,0],[1709930124000,0],[1709930125000,0],[1709930126000,0],[1709930127000,0],[1709930128000,0],[1709930129000,0],[1709930130000,0],[1709930131000,0],[1709930132000,0],[1709930133000,0],[1709930134000,0],[1709930135000,0],[1709930136000,0],[1709930137000,0],[1709930138000,0],[1709930139000,0],[1709930140000,0],[1709930141000,0],[1709930142000,0],[1709930143000,0],[1709930144000,0],[1709930145000,0],[1709930146000,0],[1709930147000,0],[1709930148000,0],[1709930149000,0],[1709930150000,0],[1709930151000,0],[1709930152000,0],[1709930153000,0],[1709930154000,0],[1709930155000,0],[1709930156000,0],[1709930157000,0],[1709930158000,0],[1709930159000,0],[1709930160000,0],[1709930161000,0],[1709930162000,0],[1709930163000,0],[1709930164000,0],[1709930165000,0],[1709930166000,0],[1709930167000,0],[1709930168000,0],[1709930169000,0],[1709930170000,0],[1709930171000,0],[1709930172000,0],[1709930173000,0],[1709930174000,0],[1709930175000,0],[1709930176000,0],[1709930177000,0],[1709930178000,0],[1709930179000,0],[1709930180000,0],[1709930181000,0],[1709930182000,0],[1709930183000,0],[1709930184000,0],[1709930185000,0],[1709930186000,0],[1709930187000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#AECAEB',
name: 'validação concorrência transações - d',
data: [
[1709929939000,25],[1709929940000,25],[1709929941000,2],[1709929942000,0],[1709929943000,0],[1709929944000,0],[1709929945000,0],[1709929946000,0],[1709929947000,0],[1709929948000,0],[1709929949000,0],[1709929950000,0],[1709929951000,0],[1709929952000,0],[1709929953000,0],[1709929954000,0],[1709929955000,0],[1709929956000,0],[1709929957000,0],[1709929958000,0],[1709929959000,0],[1709929960000,0],[1709929961000,0],[1709929962000,0],[1709929963000,0],[1709929964000,0],[1709929965000,0],[1709929966000,0],[1709929967000,0],[1709929968000,0],[1709929969000,0],[1709929970000,0],[1709929971000,0],[1709929972000,0],[1709929973000,0],[1709929974000,0],[1709929975000,0],[1709929976000,0],[1709929977000,0],[1709929978000,0],[1709929979000,0],[1709929980000,0],[1709929981000,0],[1709929982000,0],[1709929983000,0],[1709929984000,0],[1709929985000,0],[1709929986000,0],[1709929987000,0],[1709929988000,0],[1709929989000,0],[1709929990000,0],[1709929991000,0],[1709929992000,0],[1709929993000,0],[1709929994000,0],[1709929995000,0],[1709929996000,0],[1709929997000,0],[1709929998000,0],[1709929999000,0],[1709930000000,0],[1709930001000,0],[1709930002000,0],[1709930003000,0],[1709930004000,0],[1709930005000,0],[1709930006000,0],[1709930007000,0],[1709930008000,0],[1709930009000,0],[1709930010000,0],[1709930011000,0],[1709930012000,0],[1709930013000,0],[1709930014000,0],[1709930015000,0],[1709930016000,0],[1709930017000,0],[1709930018000,0],[1709930019000,0],[1709930020000,0],[1709930021000,0],[1709930022000,0],[1709930023000,0],[1709930024000,0],[1709930025000,0],[1709930026000,0],[1709930027000,0],[1709930028000,0],[1709930029000,0],[1709930030000,0],[1709930031000,0],[1709930032000,0],[1709930033000,0],[1709930034000,0],[1709930035000,0],[1709930036000,0],[1709930037000,0],[1709930038000,0],[1709930039000,0],[1709930040000,0],[1709930041000,0],[1709930042000,0],[1709930043000,0],[1709930044000,0],[1709930045000,0],[1709930046000,0],[1709930047000,0],[1709930048000,0],[1709930049000,0],[1709930050000,0],[1709930051000,0],[1709930052000,0],[1709930053000,0],[1709930054000,0],[1709930055000,0],[1709930056000,0],[1709930057000,0],[1709930058000,0],[1709930059000,0],[1709930060000,0],[1709930061000,0],[1709930062000,0],[1709930063000,0],[1709930064000,0],[1709930065000,0],[1709930066000,0],[1709930067000,0],[1709930068000,0],[1709930069000,0],[1709930070000,0],[1709930071000,0],[1709930072000,0],[1709930073000,0],[1709930074000,0],[1709930075000,0],[1709930076000,0],[1709930077000,0],[1709930078000,0],[1709930079000,0],[1709930080000,0],[1709930081000,0],[1709930082000,0],[1709930083000,0],[1709930084000,0],[1709930085000,0],[1709930086000,0],[1709930087000,0],[1709930088000,0],[1709930089000,0],[1709930090000,0],[1709930091000,0],[1709930092000,0],[1709930093000,0],[1709930094000,0],[1709930095000,0],[1709930096000,0],[1709930097000,0],[1709930098000,0],[1709930099000,0],[1709930100000,0],[1709930101000,0],[1709930102000,0],[1709930103000,0],[1709930104000,0],[1709930105000,0],[1709930106000,0],[1709930107000,0],[1709930108000,0],[1709930109000,0],[1709930110000,0],[1709930111000,0],[1709930112000,0],[1709930113000,0],[1709930114000,0],[1709930115000,0],[1709930116000,0],[1709930117000,0],[1709930118000,0],[1709930119000,0],[1709930120000,0],[1709930121000,0],[1709930122000,0],[1709930123000,0],[1709930124000,0],[1709930125000,0],[1709930126000,0],[1709930127000,0],[1709930128000,0],[1709930129000,0],[1709930130000,0],[1709930131000,0],[1709930132000,0],[1709930133000,0],[1709930134000,0],[1709930135000,0],[1709930136000,0],[1709930137000,0],[1709930138000,0],[1709930139000,0],[1709930140000,0],[1709930141000,0],[1709930142000,0],[1709930143000,0],[1709930144000,0],[1709930145000,0],[1709930146000,0],[1709930147000,0],[1709930148000,0],[1709930149000,0],[1709930150000,0],[1709930151000,0],[1709930152000,0],[1709930153000,0],[1709930154000,0],[1709930155000,0],[1709930156000,0],[1709930157000,0],[1709930158000,0],[1709930159000,0],[1709930160000,0],[1709930161000,0],[1709930162000,0],[1709930163000,0],[1709930164000,0],[1709930165000,0],[1709930166000,0],[1709930167000,0],[1709930168000,0],[1709930169000,0],[1709930170000,0],[1709930171000,0],[1709930172000,0],[1709930173000,0],[1709930174000,0],[1709930175000,0],[1709930176000,0],[1709930177000,0],[1709930178000,0],[1709930179000,0],[1709930180000,0],[1709930181000,0],[1709930182000,0],[1709930183000,0],[1709930184000,0],[1709930185000,0],[1709930186000,0],[1709930187000,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: ['27', '81', '135', '189', '243', '297', '351', '405', '459', '513', '567', '621', '675', '728', '782', '836', '890', '944', '998', '1052', '1106', '1160', '1214', '1268', '1322', '1376', '1430', '1484', '1538', '1592', '1646', '1700', '1754', '1808', '1862', '1916', '1970', '2024', '2077', '2131', '2185', '2239', '2293', '2347', '2401', '2455', '2509', '2563', '2617', '2671', '2725', '2779', '2833', '2887', '2941', '2995', '3049', '3103', '3157', '3211', '3265', '3319', '3373', '3426', '3480', '3534', '3588', '3642', '3696', '3750', '3804', '3858', '3912', '3966', '4020', '4074', '4128', '4182', '4236', '4290', '4344', '4398', '4452', '4506', '4560', '4614', '4668', '4722', '4775', '4829', '4883', '4937', '4991', '5045', '5099', '5153', '5207', '5261', '5315', '5369'],
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: [
6.85,0.51,0.19,0.15,0.09,0.06,0.04,0.03,0.02,0.02,0.0,0.0,0.01,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
],
tooltip: { yDecimals: 0, ySuffix: 'ms' }
},
{
type: 'column',
color: '#f15b4f',
name: 'KO',
data: [
69.15,0.37,0.09,0.1,0.08,0.09,0.1,0.07,0.05,0.12,0.1,0.11,0.16,0.14,0.17,0.12,0.21,0.23,0.3,0.35,0.44,0.28,0.29,0.29,0.36,0.82,0.57,0.53,0.59,0.81,0.13,0.11,0.08,0.06,0.08,0.13,0.16,0.08,0.13,0.09,0.11,0.05,0.17,0.13,0.22,0.14,0.2,0.45,1.14,1.18,1.19,1.67,0.94,1.79,1.15,0.54,0.1,0.15,0.12,0.12,0.05,0.04,0.05,0.04,0.06,0.03,0.05,0.02,0.11,0.09,0.18,0.1,0.1,0.05,0.06,0.06,0.03,0.07,0.02,0.03,0.01,0.01,0.01,0.02,0.01,0.01,0.01,0.0,0.03,0.06,0.11,0.01,0.04,0.0,0.02,0.02,0.03,0.03,0.07,0.03
],
tooltip: { yDecimals: 0, ySuffix: 'ms' }
}
]
});
responsetimeDistributionChart.setTitle({
text: '<span class="chart_title">Response Time Distribution</span>',
useHTML: true
});
var responsetimepercentilesovertimeokPercentiles = unpack([[1709929939,[1295,1413,1502,1603,1608,1616,1622,2570,2876,2898]],[1709929940,null],[1709929941,null],[1709929942,[8,8,8,8,8,8,8,8,8,8]],[1709929943,[670,713,728,774,779,781,786,791,798,801]],[1709929944,[6,6,6,6,6,6,6,6,6,6]],[1709929945,[3,9,24,89,91,97,145,199,201,203]],[1709929946,[1,2,3,5,9,11,27,88,89,90]],[1709929947,[8,9,11,14,15,26,37,48,56,59]],[1709929948,[9,9,10,10,11,13,16,19,23,24]],[1709929949,[7,8,9,11,12,13,15,16,16,17]],[1709929950,[7,8,8,10,11,12,12,33,58,65]],[1709929951,[5,7,8,9,9,10,11,11,15,17]],[1709929952,[6,7,8,8,9,10,13,14,18,20]],[1709929953,[6,7,7,8,8,10,23,45,64,69]],[1709929954,[5,7,7,8,9,9,11,33,71,81]],[1709929955,[6,7,8,9,9,12,13,15,19,21]],[1709929956,[6,7,9,11,14,16,21,45,70,72]],[1709929957,[5,7,7,8,9,9,9,11,14,15]],[1709929958,[5,6,7,11,24,39,57,66,77,79]],[1709929959,[4,6,7,8,8,10,10,12,13,14]],[1709929960,[3,6,7,8,9,10,13,43,49,49]],[1709929961,[5,6,6,7,7,8,8,11,29,42]],[1709929962,[4,6,7,18,35,47,58,80,85,87]],[1709929963,[3,6,6,7,7,7,7,8,14,21]],[1709929964,[3,4,6,6,7,7,8,8,32,49]],[1709929965,[3,6,7,24,34,51,56,69,85,88]],[1709929966,[4,6,14,53,65,69,77,82,117,135]],[1709929967,[3,5,6,8,9,11,16,66,94,105]],[1709929968,[3,5,7,37,61,62,90,124,166,187]],[1709929969,[3,5,6,7,7,8,8,9,13,16]],[1709929970,[3,5,7,8,8,10,18,28,51,66]],[1709929971,[3,5,6,16,26,38,60,77,102,113]],[1709929972,[3,5,6,6,7,7,8,10,65,78]],[1709929973,[2,5,6,7,7,7,8,10,15,22]],[1709929974,[2,5,6,8,9,12,17,52,85,93]],[1709929975,[2,5,6,7,7,7,8,12,37,41]],[1709929976,[2,5,6,7,7,8,8,29,48,74]],[1709929977,[2,5,5,6,6,7,8,9,13,15]],[1709929978,[2,5,6,7,7,9,10,18,42,50]],[1709929979,[2,5,6,7,8,9,13,40,75,79]],[1709929980,[2,5,6,7,8,8,10,11,14,16]],[1709929981,[2,5,6,9,11,16,26,43,69,72]],[1709929982,[2,5,6,7,8,8,9,11,12,25]],[1709929983,[2,6,29,98,108,133,153,174,198,258]],[1709929984,[2,5,5,7,8,9,27,49,69,93]],[1709929985,[2,5,5,7,7,7,8,22,43,54]],[1709929986,[2,5,6,7,8,10,19,36,62,70]],[1709929987,[2,5,6,8,9,10,30,56,96,121]],[1709929988,[2,19,115,204,226,265,282,311,370,429]],[1709929989,[2,6,7,35,51,63,99,131,177,196]],[1709929990,[2,5,6,7,8,9,17,40,67,99]],[1709929991,[2,5,6,17,31,47,58,84,94,116]],[1709929992,[2,23,147,267,319,390,509,593,700,756]],[1709929993,[2,30,91,206,231,262,343,417,516,554]],[1709929994,[2,4,5,6,7,8,9,12,35,40]],[1709929995,[2,5,40,180,216,302,375,445,502,537]],[1709929996,[3,8,64,173,213,257,300,341,434,468]],[1709929997,[2,4,5,6,6,6,6,9,38,48]],[1709929998,[2,4,5,7,11,19,30,48,70,88]],[1709929999,[2,5,6,21,30,46,58,81,132,154]],[1709930000,[2,4,6,13,22,32,52,70,111,128]],[1709930001,[2,4,5,6,6,7,8,10,13,15]],[1709930002,[2,5,6,7,9,14,18,33,59,66]],[1709930003,[2,5,6,11,14,65,102,157,231,279]],[1709930004,[6,82,184,361,388,410,430,468,496,510]],[1709930005,null],[1709930006,null],[1709930007,null],[1709930008,null],[1709930009,null],[1709930010,null],[1709930011,null],[1709930012,null],[1709930013,null],[1709930014,null],[1709930015,null],[1709930016,null],[1709930017,null],[1709930018,null],[1709930019,null],[1709930020,null],[1709930021,null],[1709930022,null],[1709930023,null],[1709930024,null],[1709930025,null],[1709930026,null],[1709930027,null],[1709930028,null],[1709930029,null],[1709930030,null],[1709930031,null],[1709930032,null],[1709930033,null],[1709930034,null],[1709930035,null],[1709930036,null],[1709930037,null],[1709930038,null],[1709930039,null],[1709930040,null],[1709930041,null],[1709930042,null],[1709930043,null],[1709930044,null],[1709930045,null],[1709930046,null],[1709930047,null],[1709930048,null],[1709930049,null],[1709930050,null],[1709930051,null],[1709930052,null],[1709930053,null],[1709930054,null],[1709930055,null],[1709930056,null],[1709930057,null],[1709930058,null],[1709930059,null],[1709930060,null],[1709930061,null],[1709930062,null],[1709930063,null],[1709930064,null],[1709930065,null],[1709930066,null],[1709930067,null],[1709930068,null],[1709930069,null],[1709930070,null],[1709930071,null],[1709930072,null],[1709930073,null],[1709930074,null],[1709930075,null],[1709930076,null],[1709930077,null],[1709930078,null],[1709930079,null],[1709930080,null],[1709930081,null],[1709930082,null],[1709930083,null],[1709930084,null],[1709930085,null],[1709930086,null],[1709930087,null],[1709930088,null],[1709930089,null],[1709930090,null],[1709930091,null],[1709930092,null],[1709930093,null],[1709930094,null],[1709930095,null],[1709930096,null],[1709930097,null],[1709930098,null],[1709930099,null],[1709930100,null],[1709930101,null],[1709930102,null],[1709930103,null],[1709930104,null],[1709930105,null],[1709930106,null],[1709930107,null],[1709930108,null],[1709930109,null],[1709930110,null],[1709930111,null],[1709930112,null],[1709930113,null],[1709930114,null],[1709930115,null],[1709930116,null],[1709930117,null],[1709930118,null],[1709930119,null],[1709930120,null],[1709930121,null],[1709930122,null],[1709930123,null],[1709930124,null],[1709930125,null],[1709930126,null],[1709930127,null],[1709930128,null],[1709930129,null],[1709930130,null],[1709930131,null],[1709930132,null],[1709930133,null],[1709930134,null],[1709930135,null],[1709930136,null],[1709930137,null],[1709930138,null],[1709930139,null],[1709930140,null],[1709930141,null],[1709930142,null],[1709930143,null],[1709930144,null],[1709930145,null],[1709930146,null],[1709930147,null],[1709930148,null],[1709930149,null],[1709930150,null],[1709930151,null],[1709930152,null],[1709930153,null],[1709930154,null],[1709930155,null],[1709930156,null],[1709930157,null],[1709930158,null],[1709930159,null],[1709930160,null],[1709930161,null],[1709930162,null],[1709930163,null],[1709930164,null],[1709930165,null],[1709930166,null],[1709930167,null],[1709930168,null],[1709930169,null],[1709930170,null],[1709930171,null],[1709930172,null],[1709930173,null],[1709930174,null],[1709930175,null],[1709930176,null],[1709930177,null],[1709930178,null],[1709930179,null],[1709930180,null],[1709930181,null],[1709930182,null],[1709930183,null],[1709930184,null],[1709930185,null],[1709930186,null],[1709930187,null]]);
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([[1709929939,[25,25,0]],[1709929940,[0,0,0]],[1709929941,[0,0,0]],[1709929942,[1,1,0]],[1709929943,[25,25,0]],[1709929944,[1,1,0]],[1709929945,[55,55,0]],[1709929946,[19,19,0]],[1709929947,[6,6,0]],[1709929948,[9,9,0]],[1709929949,[11,11,0]],[1709929950,[13,13,0]],[1709929951,[18,18,0]],[1709929952,[19,19,0]],[1709929953,[24,24,0]],[1709929954,[26,26,0]],[1709929955,[27,27,0]],[1709929956,[32,32,0]],[1709929957,[34,34,0]],[1709929958,[37,37,0]],[1709929959,[39,39,0]],[1709929960,[43,43,0]],[1709929961,[44,44,0]],[1709929962,[48,48,0]],[1709929963,[50,50,0]],[1709929964,[54,54,0]],[1709929965,[57,57,0]],[1709929966,[60,60,0]],[1709929967,[61,61,0]],[1709929968,[65,65,0]],[1709929969,[67,67,0]],[1709929970,[70,70,0]],[1709929971,[74,74,0]],[1709929972,[76,76,0]],[1709929973,[80,80,0]],[1709929974,[81,81,0]],[1709929975,[84,84,0]],[1709929976,[87,87,0]],[1709929977,[91,91,0]],[1709929978,[92,92,0]],[1709929979,[96,96,0]],[1709929980,[98,98,0]],[1709929981,[101,101,0]],[1709929982,[105,105,0]],[1709929983,[108,108,0]],[1709929984,[109,109,0]],[1709929985,[114,114,0]],[1709929986,[115,115,0]],[1709929987,[118,118,0]],[1709929988,[121,121,0]],[1709929989,[124,124,0]],[1709929990,[126,126,0]],[1709929991,[129,129,0]],[1709929992,[133,133,0]],[1709929993,[134,134,0]],[1709929994,[138,138,0]],[1709929995,[141,141,0]],[1709929996,[143,143,0]],[1709929997,[146,146,0]],[1709929998,[149,149,0]],[1709929999,[152,152,0]],[1709930000,[154,154,0]],[1709930001,[158,158,0]],[1709930002,[160,160,0]],[1709930003,[164,164,0]],[1709930004,[165,43,122]],[1709930005,[170,0,170]],[1709930006,[172,0,172]],[1709930007,[174,0,174]],[1709930008,[176,0,176]],[1709930009,[181,0,181]],[1709930010,[183,0,183]],[1709930011,[185,0,185]],[1709930012,[189,0,189]],[1709930013,[191,0,191]],[1709930014,[194,0,194]],[1709930015,[196,0,196]],[1709930016,[200,0,200]],[1709930017,[202,0,202]],[1709930018,[206,0,206]],[1709930019,[208,0,208]],[1709930020,[211,0,211]],[1709930021,[213,0,213]],[1709930022,[217,0,217]],[1709930023,[220,0,220]],[1709930024,[222,0,222]],[1709930025,[224,0,224]],[1709930026,[228,0,228]],[1709930027,[230,0,230]],[1709930028,[234,0,234]],[1709930029,[235,0,235]],[1709930030,[239,0,239]],[1709930031,[242,0,242]],[1709930032,[244,0,244]],[1709930033,[248,0,248]],[1709930034,[251,0,251]],[1709930035,[252,0,252]],[1709930036,[256,0,256]],[1709930037,[259,0,259]],[1709930038,[262,0,262]],[1709930039,[265,0,265]],[1709930040,[266,0,266]],[1709930041,[270,0,270]],[1709930042,[272,0,272]],[1709930043,[275,0,275]],[1709930044,[279,0,279]],[1709930045,[281,0,281]],[1709930046,[284,0,284]],[1709930047,[286,0,286]],[1709930048,[290,0,290]],[1709930049,[291,0,291]],[1709930050,[296,0,296]],[1709930051,[298,0,298]],[1709930052,[300,0,300]],[1709930053,[304,0,304]],[1709930054,[306,0,306]],[1709930055,[310,0,310]],[1709930056,[313,0,313]],[1709930057,[313,0,313]],[1709930058,[319,0,319]],[1709930059,[320,0,320]],[1709930060,[323,0,323]],[1709930061,[326,0,326]],[1709930062,[329,0,329]],[1709930063,[332,0,332]],[1709930064,[334,0,334]],[1709930065,[338,0,338]],[1709930066,[340,0,340]],[1709930067,[340,0,340]],[1709930068,[340,0,340]],[1709930069,[340,0,340]],[1709930070,[340,0,340]],[1709930071,[340,0,340]],[1709930072,[340,0,340]],[1709930073,[340,0,340]],[1709930074,[340,0,340]],[1709930075,[340,0,340]],[1709930076,[340,0,340]],[1709930077,[340,0,340]],[1709930078,[340,0,340]],[1709930079,[340,0,340]],[1709930080,[340,0,340]],[1709930081,[340,0,340]],[1709930082,[340,0,340]],[1709930083,[340,0,340]],[1709930084,[340,0,340]],[1709930085,[340,0,340]],[1709930086,[340,0,340]],[1709930087,[340,0,340]],[1709930088,[340,0,340]],[1709930089,[340,0,340]],[1709930090,[340,0,340]],[1709930091,[340,0,340]],[1709930092,[340,0,340]],[1709930093,[340,0,340]],[1709930094,[340,0,340]],[1709930095,[340,0,340]],[1709930096,[340,0,340]],[1709930097,[340,0,340]],[1709930098,[340,0,340]],[1709930099,[340,0,340]],[1709930100,[340,0,340]],[1709930101,[340,0,340]],[1709930102,[340,0,340]],[1709930103,[340,0,340]],[1709930104,[340,0,340]],[1709930105,[340,0,340]],[1709930106,[340,0,340]],[1709930107,[340,0,340]],[1709930108,[340,0,340]],[1709930109,[340,0,340]],[1709930110,[340,0,340]],[1709930111,[340,0,340]],[1709930112,[340,0,340]],[1709930113,[340,0,340]],[1709930114,[340,0,340]],[1709930115,[340,0,340]],[1709930116,[340,0,340]],[1709930117,[340,0,340]],[1709930118,[340,0,340]],[1709930119,[340,0,340]],[1709930120,[340,0,340]],[1709930121,[340,0,340]],[1709930122,[340,0,340]],[1709930123,[340,0,340]],[1709930124,[340,0,340]],[1709930125,[340,0,340]],[1709930126,[339,0,339]],[1709930127,[341,0,341]],[1709930128,[340,0,340]],[1709930129,[340,0,340]],[1709930130,[340,0,340]],[1709930131,[340,0,340]],[1709930132,[340,0,340]],[1709930133,[340,0,340]],[1709930134,[340,0,340]],[1709930135,[340,0,340]],[1709930136,[340,0,340]],[1709930137,[340,0,340]],[1709930138,[340,0,340]],[1709930139,[340,0,340]],[1709930140,[340,0,340]],[1709930141,[340,0,340]],[1709930142,[340,0,340]],[1709930143,[340,0,340]],[1709930144,[340,0,340]],[1709930145,[340,0,340]],[1709930146,[340,0,340]],[1709930147,[340,0,340]],[1709930148,[340,0,340]],[1709930149,[340,0,340]],[1709930150,[340,0,340]],[1709930151,[340,0,340]],[1709930152,[340,0,340]],[1709930153,[340,0,340]],[1709930154,[340,0,340]],[1709930155,[340,0,340]],[1709930156,[340,0,340]],[1709930157,[340,0,340]],[1709930158,[340,0,340]],[1709930159,[340,0,340]],[1709930160,[340,0,340]],[1709930161,[340,0,340]],[1709930162,[340,0,340]],[1709930163,[340,0,340]],[1709930164,[340,0,340]],[1709930165,[340,0,340]],[1709930166,[340,0,340]],[1709930167,[340,0,340]],[1709930168,[340,0,340]],[1709930169,[340,0,340]],[1709930170,[340,0,340]],[1709930171,[340,0,340]],[1709930172,[340,0,340]],[1709930173,[340,0,340]],[1709930174,[340,0,340]],[1709930175,[340,0,340]],[1709930176,[340,0,340]],[1709930177,[340,0,340]],[1709930178,[340,0,340]],[1709930179,[340,0,340]],[1709930180,[340,0,340]],[1709930181,[340,0,340]],[1709930182,[340,0,340]],[1709930183,[340,0,340]],[1709930184,[340,0,340]],[1709930185,[340,0,340]],[1709930186,[163,0,163]],[1709930187,[0,0,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' }
}
}