forked from zanfranceschi/rinha-de-backend-2024-q1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1210 lines (1140 loc) · 95.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-04 03:03:05 GMT</span>
</span>
<span class="simulation-information-item">
<span class="simulation-information-label">Duration: </span>
<span>4m 7s </span>
</span>
<span class="simulation-tooltip simulation-information-item description" title="Description" data-content="Rinha de Backend - 2024/Q1: Crébito - maxel-uds">
<span class="simulation-information-label">Description: </span>
<span>Rinha de Backend - 2024/Q1: Crébito - maxel-uds</span>
</span>
</div>
</div>
</div>
</div>
<div id="statistics_table_container">
<div id="stats" class="statistics extensible-geant collapsed">
<div class="title">
<div id="statistics_title" class="title_base"><span class="title_base_stats">Stats</span><span class="expand-table">Fixed height</span><span id="toggle-stats" class="toggle-table"></span><span class="collapse-table">Full size</span></div>
<div class="right">
<button class="statistics-button expand-all-button">Expand all groups</button>
<button class="statistics-button collapse-all-button">Collapse all groups</button>
<button id="statistics_full_screen" class="statistics-button" onclick="openStatisticsTableModal()"><img alt="Fullscreen" src="style/fullscreen.svg"></button>
</div>
</div>
<div class="scrollable">
<table id="container_statistics_head" class="statistics-in extensible-geant">
<thead>
<tr>
<th rowspan="2" id="col-1" class="header sortable sorted-up"><span>Requests</span></th>
<th colspan="5" class="header"><span class="executions">Executions</span></th>
<th colspan="8" class="header"><span class="response-time">Response Time (ms)</span></th>
</tr>
<tr>
<th id="col-2" class="header sortable"><span>Total</span></th>
<th id="col-3" class="header sortable"><span>OK</span></th>
<th id="col-4" class="header sortable"><span>KO</span></th>
<th id="col-5" class="header sortable"><span>% KO</span></th>
<th id="col-6" class="header sortable"><span><abbr title="Count of events per second">Cnt/s</abbr></span></th>
<th id="col-7" class="header sortable"><span>Min</span></th>
<th id="col-8" class="header sortable"><span>50th pct</span></th>
<th id="col-9" class="header sortable"><span>75th pct</span></th>
<th id="col-10" class="header sortable"><span>95th pct</span></th>
<th id="col-11" class="header sortable"><span>99th pct</span></th>
<th id="col-12" class="header sortable"><span>Max</span></th>
<th id="col-13" class="header sortable"><span>Mean</span></th>
<th id="col-14" class="header sortable"><span><abbr title="Standard Deviation">Std Dev</abbr></span></th>
</tr>
</thead>
<tbody></tbody>
</table>
<table id="container_statistics_body" class="statistics-in extensible-geant">
<tbody></tbody>
</table>
</div>
</div>
</div>
<dialog id="statistics_table_modal" class="statistics-table-modal">
<div class="statistics-table-modal-header"><button class="button-modal" onclick="closeStatisticsTableModal()"><img alt="Close" src="style/close.svg"></button></div>
<div class="statistics-table-modal-container">
<div id="statistics_table_modal_content" class="statistics-table-modal-content"></div>
</div>
</dialog>
<script>
function openStatisticsTableModal () {
const statsTable = document.getElementById("stats");
const statsTableModal = document.getElementById("statistics_table_modal");
const fullScreenButton = document.getElementById("statistics_full_screen");
fullScreenButton.disabled = true;
if (typeof statsTableModal.showModal === "function") {
const statsTableModalContent = document.getElementById("statistics_table_modal_content");
statsTableModalContent.innerHTML = "";
statsTableModalContent.appendChild(statsTable);
statsTableModal.showModal();
statsTableModal.addEventListener("close", function () {
const container = document.getElementById("statistics_table_container");
container.appendChild(statsTable);
fullScreenButton.disabled = false;
});
} else {
const incompatibleBrowserVersionMessage = document.createElement("div");
incompatibleBrowserVersionMessage.innerText = "Sorry, the <dialog> API is not supported by this browser.";
statsTable.insertBefore(incompatibleBrowserVersionMessage, statsTable.children[0]);
}
}
function closeStatisticsTableModal () {
const statsTableModal = document.getElementById("statistics_table_modal");
statsTableModal.close();
}
</script>
<div class="statistics extensible-geant collapsed">
<div class="title">
Errors
</div>
<table id="container_errors" class="statistics-in extensible-geant">
<thead>
<tr>
<th id="error-col-1" class="header sortable"><span>Error</span></th>
<th id="error-col-2" class="header sortable"><span>Count</span></th>
<th id="error-col-3" class="header sortable"><span>Percentage</span></th>
</tr>
</thead>
<tbody>
<tr>
<td class="error-col-1 total ko">status.find.in(200,422), but actually found 502<span class="value" style="display:none">0</span></td>
<td class="value error-col-2 total ko">22791</td>
<td class="value error-col-3 total ko">64.701 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">status.find.in(200), but actually found 502<span class="value" style="display:none">1</span></td>
<td class="value error-col-2 total ko">11398</td>
<td class="value error-col-3 total ko">32.358 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">status.find.in([200, 209], 304), found 502<span class="value" style="display:none">2</span></td>
<td class="value error-col-2 total ko">1034</td>
<td class="value error-col-3 total ko">2.935 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">Request timeout to localhost/127.0.0.1:9999 after 60000 ms<span class="value" style="display:none">3</span></td>
<td class="value error-col-2 total ko">2</td>
<td class="value error-col-3 total ko">0.006 %</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: [
[1709521386000,0],[1709521387000,0],[1709521388000,0],[1709521389000,0],[1709521390000,0],[1709521391000,0],[1709521392000,0],[1709521393000,1],[1709521394000,2],[1709521395000,2],[1709521396000,5],[1709521397000,4],[1709521398000,5],[1709521399000,6],[1709521400000,7],[1709521401000,8],[1709521402000,8],[1709521403000,10],[1709521404000,10],[1709521405000,12],[1709521406000,13],[1709521407000,14],[1709521408000,14],[1709521409000,15],[1709521410000,16],[1709521411000,18],[1709521412000,17],[1709521413000,19],[1709521414000,21],[1709521415000,21],[1709521416000,23],[1709521417000,24],[1709521418000,23],[1709521419000,25],[1709521420000,25],[1709521421000,27],[1709521422000,26],[1709521423000,29],[1709521424000,29],[1709521425000,31],[1709521426000,30],[1709521427000,32],[1709521428000,34],[1709521429000,33],[1709521430000,34],[1709521431000,35],[1709521432000,37],[1709521433000,39],[1709521434000,39],[1709521435000,41],[1709521436000,40],[1709521437000,41],[1709521438000,41],[1709521439000,45],[1709521440000,43],[1709521441000,46],[1709521442000,45],[1709521443000,47],[1709521444000,51],[1709521445000,48],[1709521446000,50],[1709521447000,52],[1709521448000,52],[1709521449000,52],[1709521450000,56],[1709521451000,56],[1709521452000,56],[1709521453000,60],[1709521454000,59],[1709521455000,60],[1709521456000,64],[1709521457000,62],[1709521458000,60],[1709521459000,62],[1709521460000,66],[1709521461000,73],[1709521462000,70],[1709521463000,64],[1709521464000,68],[1709521465000,68],[1709521466000,70],[1709521467000,77],[1709521468000,71],[1709521469000,70],[1709521470000,72],[1709521471000,77],[1709521472000,80],[1709521473000,102],[1709521474000,76],[1709521475000,75],[1709521476000,82],[1709521477000,79],[1709521478000,81],[1709521479000,82],[1709521480000,83],[1709521481000,91],[1709521482000,97],[1709521483000,109],[1709521484000,109],[1709521485000,111],[1709521486000,87],[1709521487000,86],[1709521488000,90],[1709521489000,104],[1709521490000,104],[1709521491000,108],[1709521492000,100],[1709521493000,106],[1709521494000,99],[1709521495000,94],[1709521496000,96],[1709521497000,101],[1709521498000,124],[1709521499000,130],[1709521500000,121],[1709521501000,113],[1709521502000,101],[1709521503000,101],[1709521504000,106],[1709521505000,136],[1709521506000,148],[1709521507000,159],[1709521508000,110],[1709521509000,107],[1709521510000,107],[1709521511000,124],[1709521512000,118],[1709521513000,111],[1709521514000,110],[1709521515000,111],[1709521516000,111],[1709521517000,123],[1709521518000,111],[1709521519000,111],[1709521520000,110],[1709521521000,111],[1709521522000,111],[1709521523000,133],[1709521524000,111],[1709521525000,111],[1709521526000,111],[1709521527000,111],[1709521528000,112],[1709521529000,128],[1709521530000,133],[1709521531000,165],[1709521532000,111],[1709521533000,111],[1709521534000,111],[1709521535000,110],[1709521536000,110],[1709521537000,111],[1709521538000,111],[1709521539000,111],[1709521540000,111],[1709521541000,111],[1709521542000,111],[1709521543000,110],[1709521544000,111],[1709521545000,110],[1709521546000,111],[1709521547000,110],[1709521548000,110],[1709521549000,110],[1709521550000,111],[1709521551000,110],[1709521552000,111],[1709521553000,111],[1709521554000,110],[1709521555000,109],[1709521556000,111],[1709521557000,111],[1709521558000,111],[1709521559000,110],[1709521560000,111],[1709521561000,111],[1709521562000,110],[1709521563000,111],[1709521564000,110],[1709521565000,110],[1709521566000,110],[1709521567000,111],[1709521568000,109],[1709521569000,111],[1709521570000,111],[1709521571000,110],[1709521572000,111],[1709521573000,111],[1709521574000,111],[1709521575000,111],[1709521576000,111],[1709521577000,111],[1709521578000,110],[1709521579000,110],[1709521580000,111],[1709521581000,111],[1709521582000,109],[1709521583000,111],[1709521584000,110],[1709521585000,111],[1709521586000,110],[1709521587000,111],[1709521588000,109],[1709521589000,111],[1709521590000,111],[1709521591000,111],[1709521592000,111],[1709521593000,111],[1709521594000,110],[1709521595000,111],[1709521596000,110],[1709521597000,111],[1709521598000,110],[1709521599000,111],[1709521600000,111],[1709521601000,110],[1709521602000,111],[1709521603000,111],[1709521604000,111],[1709521605000,111],[1709521606000,110],[1709521607000,110],[1709521608000,111],[1709521609000,110],[1709521610000,110],[1709521611000,111],[1709521612000,110],[1709521613000,110],[1709521614000,110],[1709521615000,111],[1709521616000,111],[1709521617000,110],[1709521618000,111],[1709521619000,110],[1709521620000,111],[1709521621000,111],[1709521622000,111],[1709521623000,111],[1709521624000,111],[1709521625000,111],[1709521626000,111],[1709521627000,111],[1709521628000,110],[1709521629000,111],[1709521630000,111],[1709521631000,110],[1709521632000,111],[1709521633000,108]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#68b65c',
name: 'débitos',
data: [
[1709521386000,0],[1709521387000,0],[1709521388000,0],[1709521389000,0],[1709521390000,0],[1709521391000,0],[1709521392000,0],[1709521393000,1],[1709521394000,2],[1709521395000,5],[1709521396000,6],[1709521397000,7],[1709521398000,10],[1709521399000,11],[1709521400000,13],[1709521401000,15],[1709521402000,16],[1709521403000,19],[1709521404000,20],[1709521405000,22],[1709521406000,24],[1709521407000,26],[1709521408000,28],[1709521409000,30],[1709521410000,31],[1709521411000,33],[1709521412000,35],[1709521413000,37],[1709521414000,39],[1709521415000,42],[1709521416000,44],[1709521417000,48],[1709521418000,46],[1709521419000,47],[1709521420000,50],[1709521421000,52],[1709521422000,55],[1709521423000,57],[1709521424000,57],[1709521425000,62],[1709521426000,61],[1709521427000,63],[1709521428000,67],[1709521429000,69],[1709521430000,68],[1709521431000,71],[1709521432000,73],[1709521433000,75],[1709521434000,77],[1709521435000,78],[1709521436000,83],[1709521437000,82],[1709521438000,82],[1709521439000,86],[1709521440000,86],[1709521441000,93],[1709521442000,89],[1709521443000,94],[1709521444000,101],[1709521445000,99],[1709521446000,101],[1709521447000,105],[1709521448000,106],[1709521449000,102],[1709521450000,107],[1709521451000,114],[1709521452000,109],[1709521453000,115],[1709521454000,118],[1709521455000,120],[1709521456000,127],[1709521457000,123],[1709521458000,119],[1709521459000,121],[1709521460000,131],[1709521461000,142],[1709521462000,141],[1709521463000,128],[1709521464000,132],[1709521465000,135],[1709521466000,143],[1709521467000,149],[1709521468000,141],[1709521469000,139],[1709521470000,145],[1709521471000,150],[1709521472000,159],[1709521473000,203],[1709521474000,149],[1709521475000,150],[1709521476000,164],[1709521477000,156],[1709521478000,159],[1709521479000,161],[1709521480000,167],[1709521481000,186],[1709521482000,194],[1709521483000,220],[1709521484000,214],[1709521485000,210],[1709521486000,176],[1709521487000,172],[1709521488000,180],[1709521489000,203],[1709521490000,205],[1709521491000,212],[1709521492000,199],[1709521493000,207],[1709521494000,202],[1709521495000,186],[1709521496000,193],[1709521497000,205],[1709521498000,253],[1709521499000,263],[1709521500000,248],[1709521501000,220],[1709521502000,204],[1709521503000,202],[1709521504000,212],[1709521505000,269],[1709521506000,293],[1709521507000,328],[1709521508000,222],[1709521509000,213],[1709521510000,215],[1709521511000,252],[1709521512000,233],[1709521513000,221],[1709521514000,221],[1709521515000,221],[1709521516000,221],[1709521517000,242],[1709521518000,220],[1709521519000,221],[1709521520000,221],[1709521521000,221],[1709521522000,220],[1709521523000,261],[1709521524000,221],[1709521525000,221],[1709521526000,221],[1709521527000,221],[1709521528000,222],[1709521529000,251],[1709521530000,261],[1709521531000,329],[1709521532000,221],[1709521533000,220],[1709521534000,220],[1709521535000,220],[1709521536000,221],[1709521537000,221],[1709521538000,221],[1709521539000,219],[1709521540000,221],[1709521541000,220],[1709521542000,221],[1709521543000,223],[1709521544000,223],[1709521545000,222],[1709521546000,223],[1709521547000,223],[1709521548000,222],[1709521549000,222],[1709521550000,222],[1709521551000,223],[1709521552000,223],[1709521553000,223],[1709521554000,225],[1709521555000,224],[1709521556000,225],[1709521557000,224],[1709521558000,225],[1709521559000,225],[1709521560000,225],[1709521561000,225],[1709521562000,224],[1709521563000,225],[1709521564000,225],[1709521565000,225],[1709521566000,227],[1709521567000,227],[1709521568000,226],[1709521569000,227],[1709521570000,227],[1709521571000,226],[1709521572000,227],[1709521573000,227],[1709521574000,227],[1709521575000,228],[1709521576000,228],[1709521577000,229],[1709521578000,228],[1709521579000,228],[1709521580000,227],[1709521581000,227],[1709521582000,225],[1709521583000,225],[1709521584000,224],[1709521585000,225],[1709521586000,224],[1709521587000,224],[1709521588000,222],[1709521589000,223],[1709521590000,223],[1709521591000,223],[1709521592000,223],[1709521593000,222],[1709521594000,223],[1709521595000,223],[1709521596000,222],[1709521597000,223],[1709521598000,224],[1709521599000,225],[1709521600000,225],[1709521601000,223],[1709521602000,222],[1709521603000,220],[1709521604000,221],[1709521605000,220],[1709521606000,220],[1709521607000,221],[1709521608000,220],[1709521609000,220],[1709521610000,220],[1709521611000,221],[1709521612000,220],[1709521613000,223],[1709521614000,223],[1709521615000,223],[1709521616000,220],[1709521617000,220],[1709521618000,221],[1709521619000,220],[1709521620000,221],[1709521621000,220],[1709521622000,221],[1709521623000,220],[1709521624000,221],[1709521625000,220],[1709521626000,221],[1709521627000,222],[1709521628000,222],[1709521629000,223],[1709521630000,221],[1709521631000,220],[1709521632000,221],[1709521633000,216]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#f15b4f',
name: 'extratos',
data: [
[1709521386000,0],[1709521387000,0],[1709521388000,0],[1709521389000,0],[1709521390000,0],[1709521391000,0],[1709521392000,0],[1709521393000,1],[1709521394000,2],[1709521395000,1],[1709521396000,1],[1709521397000,1],[1709521398000,2],[1709521399000,2],[1709521400000,1],[1709521401000,2],[1709521402000,2],[1709521403000,1],[1709521404000,2],[1709521405000,2],[1709521406000,2],[1709521407000,3],[1709521408000,2],[1709521409000,2],[1709521410000,2],[1709521411000,3],[1709521412000,2],[1709521413000,3],[1709521414000,2],[1709521415000,4],[1709521416000,3],[1709521417000,4],[1709521418000,4],[1709521419000,3],[1709521420000,3],[1709521421000,3],[1709521422000,3],[1709521423000,4],[1709521424000,4],[1709521425000,3],[1709521426000,3],[1709521427000,4],[1709521428000,3],[1709521429000,5],[1709521430000,4],[1709521431000,5],[1709521432000,5],[1709521433000,4],[1709521434000,4],[1709521435000,4],[1709521436000,5],[1709521437000,5],[1709521438000,4],[1709521439000,5],[1709521440000,4],[1709521441000,6],[1709521442000,5],[1709521443000,5],[1709521444000,6],[1709521445000,5],[1709521446000,6],[1709521447000,6],[1709521448000,6],[1709521449000,5],[1709521450000,5],[1709521451000,7],[1709521452000,5],[1709521453000,6],[1709521454000,6],[1709521455000,7],[1709521456000,6],[1709521457000,6],[1709521458000,6],[1709521459000,6],[1709521460000,7],[1709521461000,7],[1709521462000,7],[1709521463000,6],[1709521464000,8],[1709521465000,7],[1709521466000,7],[1709521467000,9],[1709521468000,6],[1709521469000,7],[1709521470000,8],[1709521471000,8],[1709521472000,8],[1709521473000,9],[1709521474000,7],[1709521475000,7],[1709521476000,8],[1709521477000,8],[1709521478000,7],[1709521479000,9],[1709521480000,8],[1709521481000,9],[1709521482000,10],[1709521483000,10],[1709521484000,10],[1709521485000,10],[1709521486000,9],[1709521487000,8],[1709521488000,8],[1709521489000,10],[1709521490000,9],[1709521491000,11],[1709521492000,10],[1709521493000,11],[1709521494000,10],[1709521495000,9],[1709521496000,8],[1709521497000,10],[1709521498000,12],[1709521499000,12],[1709521500000,11],[1709521501000,11],[1709521502000,9],[1709521503000,9],[1709521504000,11],[1709521505000,12],[1709521506000,13],[1709521507000,16],[1709521508000,9],[1709521509000,10],[1709521510000,10],[1709521511000,11],[1709521512000,12],[1709521513000,10],[1709521514000,10],[1709521515000,10],[1709521516000,10],[1709521517000,11],[1709521518000,10],[1709521519000,10],[1709521520000,10],[1709521521000,10],[1709521522000,10],[1709521523000,12],[1709521524000,10],[1709521525000,10],[1709521526000,10],[1709521527000,10],[1709521528000,10],[1709521529000,11],[1709521530000,12],[1709521531000,15],[1709521532000,10],[1709521533000,10],[1709521534000,10],[1709521535000,10],[1709521536000,10],[1709521537000,10],[1709521538000,10],[1709521539000,10],[1709521540000,10],[1709521541000,10],[1709521542000,10],[1709521543000,10],[1709521544000,10],[1709521545000,10],[1709521546000,10],[1709521547000,10],[1709521548000,10],[1709521549000,10],[1709521550000,10],[1709521551000,10],[1709521552000,10],[1709521553000,10],[1709521554000,10],[1709521555000,10],[1709521556000,10],[1709521557000,10],[1709521558000,10],[1709521559000,10],[1709521560000,10],[1709521561000,10],[1709521562000,10],[1709521563000,10],[1709521564000,10],[1709521565000,10],[1709521566000,10],[1709521567000,10],[1709521568000,10],[1709521569000,10],[1709521570000,10],[1709521571000,10],[1709521572000,10],[1709521573000,10],[1709521574000,10],[1709521575000,10],[1709521576000,10],[1709521577000,10],[1709521578000,10],[1709521579000,10],[1709521580000,10],[1709521581000,10],[1709521582000,10],[1709521583000,10],[1709521584000,10],[1709521585000,10],[1709521586000,10],[1709521587000,10],[1709521588000,10],[1709521589000,10],[1709521590000,10],[1709521591000,10],[1709521592000,10],[1709521593000,10],[1709521594000,10],[1709521595000,10],[1709521596000,10],[1709521597000,10],[1709521598000,10],[1709521599000,10],[1709521600000,10],[1709521601000,10],[1709521602000,10],[1709521603000,10],[1709521604000,10],[1709521605000,10],[1709521606000,10],[1709521607000,10],[1709521608000,10],[1709521609000,10],[1709521610000,10],[1709521611000,10],[1709521612000,10],[1709521613000,10],[1709521614000,10],[1709521615000,10],[1709521616000,10],[1709521617000,10],[1709521618000,10],[1709521619000,10],[1709521620000,10],[1709521621000,10],[1709521622000,10],[1709521623000,10],[1709521624000,10],[1709521625000,10],[1709521626000,10],[1709521627000,10],[1709521628000,10],[1709521629000,10],[1709521630000,10],[1709521631000,10],[1709521632000,10],[1709521633000,9]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FFDD00',
name: 'validações',
data: [
[1709521386000,0],[1709521387000,0],[1709521388000,0],[1709521389000,0],[1709521390000,0],[1709521391000,0],[1709521392000,5],[1709521393000,5],[1709521394000,5],[1709521395000,0],[1709521396000,0],[1709521397000,0],[1709521398000,0],[1709521399000,0],[1709521400000,0],[1709521401000,0],[1709521402000,0],[1709521403000,0],[1709521404000,0],[1709521405000,0],[1709521406000,0],[1709521407000,0],[1709521408000,0],[1709521409000,0],[1709521410000,0],[1709521411000,0],[1709521412000,0],[1709521413000,0],[1709521414000,0],[1709521415000,0],[1709521416000,0],[1709521417000,0],[1709521418000,0],[1709521419000,0],[1709521420000,0],[1709521421000,0],[1709521422000,0],[1709521423000,0],[1709521424000,0],[1709521425000,0],[1709521426000,0],[1709521427000,0],[1709521428000,0],[1709521429000,0],[1709521430000,0],[1709521431000,0],[1709521432000,0],[1709521433000,0],[1709521434000,0],[1709521435000,0],[1709521436000,0],[1709521437000,0],[1709521438000,0],[1709521439000,0],[1709521440000,0],[1709521441000,0],[1709521442000,0],[1709521443000,0],[1709521444000,0],[1709521445000,0],[1709521446000,0],[1709521447000,0],[1709521448000,0],[1709521449000,0],[1709521450000,0],[1709521451000,0],[1709521452000,0],[1709521453000,0],[1709521454000,0],[1709521455000,0],[1709521456000,0],[1709521457000,0],[1709521458000,0],[1709521459000,0],[1709521460000,0],[1709521461000,0],[1709521462000,0],[1709521463000,0],[1709521464000,0],[1709521465000,0],[1709521466000,0],[1709521467000,0],[1709521468000,0],[1709521469000,0],[1709521470000,0],[1709521471000,0],[1709521472000,0],[1709521473000,0],[1709521474000,0],[1709521475000,0],[1709521476000,0],[1709521477000,0],[1709521478000,0],[1709521479000,0],[1709521480000,0],[1709521481000,0],[1709521482000,0],[1709521483000,0],[1709521484000,0],[1709521485000,0],[1709521486000,0],[1709521487000,0],[1709521488000,0],[1709521489000,0],[1709521490000,0],[1709521491000,0],[1709521492000,0],[1709521493000,0],[1709521494000,0],[1709521495000,0],[1709521496000,0],[1709521497000,0],[1709521498000,0],[1709521499000,0],[1709521500000,0],[1709521501000,0],[1709521502000,0],[1709521503000,0],[1709521504000,0],[1709521505000,0],[1709521506000,0],[1709521507000,0],[1709521508000,0],[1709521509000,0],[1709521510000,0],[1709521511000,0],[1709521512000,0],[1709521513000,0],[1709521514000,0],[1709521515000,0],[1709521516000,0],[1709521517000,0],[1709521518000,0],[1709521519000,0],[1709521520000,0],[1709521521000,0],[1709521522000,0],[1709521523000,0],[1709521524000,0],[1709521525000,0],[1709521526000,0],[1709521527000,0],[1709521528000,0],[1709521529000,0],[1709521530000,0],[1709521531000,0],[1709521532000,0],[1709521533000,0],[1709521534000,0],[1709521535000,0],[1709521536000,0],[1709521537000,0],[1709521538000,0],[1709521539000,0],[1709521540000,0],[1709521541000,0],[1709521542000,0],[1709521543000,0],[1709521544000,0],[1709521545000,0],[1709521546000,0],[1709521547000,0],[1709521548000,0],[1709521549000,0],[1709521550000,0],[1709521551000,0],[1709521552000,0],[1709521553000,0],[1709521554000,0],[1709521555000,0],[1709521556000,0],[1709521557000,0],[1709521558000,0],[1709521559000,0],[1709521560000,0],[1709521561000,0],[1709521562000,0],[1709521563000,0],[1709521564000,0],[1709521565000,0],[1709521566000,0],[1709521567000,0],[1709521568000,0],[1709521569000,0],[1709521570000,0],[1709521571000,0],[1709521572000,0],[1709521573000,0],[1709521574000,0],[1709521575000,0],[1709521576000,0],[1709521577000,0],[1709521578000,0],[1709521579000,0],[1709521580000,0],[1709521581000,0],[1709521582000,0],[1709521583000,0],[1709521584000,0],[1709521585000,0],[1709521586000,0],[1709521587000,0],[1709521588000,0],[1709521589000,0],[1709521590000,0],[1709521591000,0],[1709521592000,0],[1709521593000,0],[1709521594000,0],[1709521595000,0],[1709521596000,0],[1709521597000,0],[1709521598000,0],[1709521599000,0],[1709521600000,0],[1709521601000,0],[1709521602000,0],[1709521603000,0],[1709521604000,0],[1709521605000,0],[1709521606000,0],[1709521607000,0],[1709521608000,0],[1709521609000,0],[1709521610000,0],[1709521611000,0],[1709521612000,0],[1709521613000,0],[1709521614000,0],[1709521615000,0],[1709521616000,0],[1709521617000,0],[1709521618000,0],[1709521619000,0],[1709521620000,0],[1709521621000,0],[1709521622000,0],[1709521623000,0],[1709521624000,0],[1709521625000,0],[1709521626000,0],[1709521627000,0],[1709521628000,0],[1709521629000,0],[1709521630000,0],[1709521631000,0],[1709521632000,0],[1709521633000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00D5FF',
name: 'validação HTTP 404',
data: [
[1709521386000,0],[1709521387000,0],[1709521388000,0],[1709521389000,0],[1709521390000,0],[1709521391000,0],[1709521392000,1],[1709521393000,1],[1709521394000,0],[1709521395000,0],[1709521396000,0],[1709521397000,0],[1709521398000,0],[1709521399000,0],[1709521400000,0],[1709521401000,0],[1709521402000,0],[1709521403000,0],[1709521404000,0],[1709521405000,0],[1709521406000,0],[1709521407000,0],[1709521408000,0],[1709521409000,0],[1709521410000,0],[1709521411000,0],[1709521412000,0],[1709521413000,0],[1709521414000,0],[1709521415000,0],[1709521416000,0],[1709521417000,0],[1709521418000,0],[1709521419000,0],[1709521420000,0],[1709521421000,0],[1709521422000,0],[1709521423000,0],[1709521424000,0],[1709521425000,0],[1709521426000,0],[1709521427000,0],[1709521428000,0],[1709521429000,0],[1709521430000,0],[1709521431000,0],[1709521432000,0],[1709521433000,0],[1709521434000,0],[1709521435000,0],[1709521436000,0],[1709521437000,0],[1709521438000,0],[1709521439000,0],[1709521440000,0],[1709521441000,0],[1709521442000,0],[1709521443000,0],[1709521444000,0],[1709521445000,0],[1709521446000,0],[1709521447000,0],[1709521448000,0],[1709521449000,0],[1709521450000,0],[1709521451000,0],[1709521452000,0],[1709521453000,0],[1709521454000,0],[1709521455000,0],[1709521456000,0],[1709521457000,0],[1709521458000,0],[1709521459000,0],[1709521460000,0],[1709521461000,0],[1709521462000,0],[1709521463000,0],[1709521464000,0],[1709521465000,0],[1709521466000,0],[1709521467000,0],[1709521468000,0],[1709521469000,0],[1709521470000,0],[1709521471000,0],[1709521472000,0],[1709521473000,0],[1709521474000,0],[1709521475000,0],[1709521476000,0],[1709521477000,0],[1709521478000,0],[1709521479000,0],[1709521480000,0],[1709521481000,0],[1709521482000,0],[1709521483000,0],[1709521484000,0],[1709521485000,0],[1709521486000,0],[1709521487000,0],[1709521488000,0],[1709521489000,0],[1709521490000,0],[1709521491000,0],[1709521492000,0],[1709521493000,0],[1709521494000,0],[1709521495000,0],[1709521496000,0],[1709521497000,0],[1709521498000,0],[1709521499000,0],[1709521500000,0],[1709521501000,0],[1709521502000,0],[1709521503000,0],[1709521504000,0],[1709521505000,0],[1709521506000,0],[1709521507000,0],[1709521508000,0],[1709521509000,0],[1709521510000,0],[1709521511000,0],[1709521512000,0],[1709521513000,0],[1709521514000,0],[1709521515000,0],[1709521516000,0],[1709521517000,0],[1709521518000,0],[1709521519000,0],[1709521520000,0],[1709521521000,0],[1709521522000,0],[1709521523000,0],[1709521524000,0],[1709521525000,0],[1709521526000,0],[1709521527000,0],[1709521528000,0],[1709521529000,0],[1709521530000,0],[1709521531000,0],[1709521532000,0],[1709521533000,0],[1709521534000,0],[1709521535000,0],[1709521536000,0],[1709521537000,0],[1709521538000,0],[1709521539000,0],[1709521540000,0],[1709521541000,0],[1709521542000,0],[1709521543000,0],[1709521544000,0],[1709521545000,0],[1709521546000,0],[1709521547000,0],[1709521548000,0],[1709521549000,0],[1709521550000,0],[1709521551000,0],[1709521552000,0],[1709521553000,0],[1709521554000,0],[1709521555000,0],[1709521556000,0],[1709521557000,0],[1709521558000,0],[1709521559000,0],[1709521560000,0],[1709521561000,0],[1709521562000,0],[1709521563000,0],[1709521564000,0],[1709521565000,0],[1709521566000,0],[1709521567000,0],[1709521568000,0],[1709521569000,0],[1709521570000,0],[1709521571000,0],[1709521572000,0],[1709521573000,0],[1709521574000,0],[1709521575000,0],[1709521576000,0],[1709521577000,0],[1709521578000,0],[1709521579000,0],[1709521580000,0],[1709521581000,0],[1709521582000,0],[1709521583000,0],[1709521584000,0],[1709521585000,0],[1709521586000,0],[1709521587000,0],[1709521588000,0],[1709521589000,0],[1709521590000,0],[1709521591000,0],[1709521592000,0],[1709521593000,0],[1709521594000,0],[1709521595000,0],[1709521596000,0],[1709521597000,0],[1709521598000,0],[1709521599000,0],[1709521600000,0],[1709521601000,0],[1709521602000,0],[1709521603000,0],[1709521604000,0],[1709521605000,0],[1709521606000,0],[1709521607000,0],[1709521608000,0],[1709521609000,0],[1709521610000,0],[1709521611000,0],[1709521612000,0],[1709521613000,0],[1709521614000,0],[1709521615000,0],[1709521616000,0],[1709521617000,0],[1709521618000,0],[1709521619000,0],[1709521620000,0],[1709521621000,0],[1709521622000,0],[1709521623000,0],[1709521624000,0],[1709521625000,0],[1709521626000,0],[1709521627000,0],[1709521628000,0],[1709521629000,0],[1709521630000,0],[1709521631000,0],[1709521632000,0],[1709521633000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00FF00',
name: 'validação concorrência saldo - 0',
data: [
[1709521386000,0],[1709521387000,0],[1709521388000,0],[1709521389000,0],[1709521390000,0],[1709521391000,1],[1709521392000,1],[1709521393000,0],[1709521394000,0],[1709521395000,0],[1709521396000,0],[1709521397000,0],[1709521398000,0],[1709521399000,0],[1709521400000,0],[1709521401000,0],[1709521402000,0],[1709521403000,0],[1709521404000,0],[1709521405000,0],[1709521406000,0],[1709521407000,0],[1709521408000,0],[1709521409000,0],[1709521410000,0],[1709521411000,0],[1709521412000,0],[1709521413000,0],[1709521414000,0],[1709521415000,0],[1709521416000,0],[1709521417000,0],[1709521418000,0],[1709521419000,0],[1709521420000,0],[1709521421000,0],[1709521422000,0],[1709521423000,0],[1709521424000,0],[1709521425000,0],[1709521426000,0],[1709521427000,0],[1709521428000,0],[1709521429000,0],[1709521430000,0],[1709521431000,0],[1709521432000,0],[1709521433000,0],[1709521434000,0],[1709521435000,0],[1709521436000,0],[1709521437000,0],[1709521438000,0],[1709521439000,0],[1709521440000,0],[1709521441000,0],[1709521442000,0],[1709521443000,0],[1709521444000,0],[1709521445000,0],[1709521446000,0],[1709521447000,0],[1709521448000,0],[1709521449000,0],[1709521450000,0],[1709521451000,0],[1709521452000,0],[1709521453000,0],[1709521454000,0],[1709521455000,0],[1709521456000,0],[1709521457000,0],[1709521458000,0],[1709521459000,0],[1709521460000,0],[1709521461000,0],[1709521462000,0],[1709521463000,0],[1709521464000,0],[1709521465000,0],[1709521466000,0],[1709521467000,0],[1709521468000,0],[1709521469000,0],[1709521470000,0],[1709521471000,0],[1709521472000,0],[1709521473000,0],[1709521474000,0],[1709521475000,0],[1709521476000,0],[1709521477000,0],[1709521478000,0],[1709521479000,0],[1709521480000,0],[1709521481000,0],[1709521482000,0],[1709521483000,0],[1709521484000,0],[1709521485000,0],[1709521486000,0],[1709521487000,0],[1709521488000,0],[1709521489000,0],[1709521490000,0],[1709521491000,0],[1709521492000,0],[1709521493000,0],[1709521494000,0],[1709521495000,0],[1709521496000,0],[1709521497000,0],[1709521498000,0],[1709521499000,0],[1709521500000,0],[1709521501000,0],[1709521502000,0],[1709521503000,0],[1709521504000,0],[1709521505000,0],[1709521506000,0],[1709521507000,0],[1709521508000,0],[1709521509000,0],[1709521510000,0],[1709521511000,0],[1709521512000,0],[1709521513000,0],[1709521514000,0],[1709521515000,0],[1709521516000,0],[1709521517000,0],[1709521518000,0],[1709521519000,0],[1709521520000,0],[1709521521000,0],[1709521522000,0],[1709521523000,0],[1709521524000,0],[1709521525000,0],[1709521526000,0],[1709521527000,0],[1709521528000,0],[1709521529000,0],[1709521530000,0],[1709521531000,0],[1709521532000,0],[1709521533000,0],[1709521534000,0],[1709521535000,0],[1709521536000,0],[1709521537000,0],[1709521538000,0],[1709521539000,0],[1709521540000,0],[1709521541000,0],[1709521542000,0],[1709521543000,0],[1709521544000,0],[1709521545000,0],[1709521546000,0],[1709521547000,0],[1709521548000,0],[1709521549000,0],[1709521550000,0],[1709521551000,0],[1709521552000,0],[1709521553000,0],[1709521554000,0],[1709521555000,0],[1709521556000,0],[1709521557000,0],[1709521558000,0],[1709521559000,0],[1709521560000,0],[1709521561000,0],[1709521562000,0],[1709521563000,0],[1709521564000,0],[1709521565000,0],[1709521566000,0],[1709521567000,0],[1709521568000,0],[1709521569000,0],[1709521570000,0],[1709521571000,0],[1709521572000,0],[1709521573000,0],[1709521574000,0],[1709521575000,0],[1709521576000,0],[1709521577000,0],[1709521578000,0],[1709521579000,0],[1709521580000,0],[1709521581000,0],[1709521582000,0],[1709521583000,0],[1709521584000,0],[1709521585000,0],[1709521586000,0],[1709521587000,0],[1709521588000,0],[1709521589000,0],[1709521590000,0],[1709521591000,0],[1709521592000,0],[1709521593000,0],[1709521594000,0],[1709521595000,0],[1709521596000,0],[1709521597000,0],[1709521598000,0],[1709521599000,0],[1709521600000,0],[1709521601000,0],[1709521602000,0],[1709521603000,0],[1709521604000,0],[1709521605000,0],[1709521606000,0],[1709521607000,0],[1709521608000,0],[1709521609000,0],[1709521610000,0],[1709521611000,0],[1709521612000,0],[1709521613000,0],[1709521614000,0],[1709521615000,0],[1709521616000,0],[1709521617000,0],[1709521618000,0],[1709521619000,0],[1709521620000,0],[1709521621000,0],[1709521622000,0],[1709521623000,0],[1709521624000,0],[1709521625000,0],[1709521626000,0],[1709521627000,0],[1709521628000,0],[1709521629000,0],[1709521630000,0],[1709521631000,0],[1709521632000,0],[1709521633000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#9D00FF',
name: 'validação concorrência transações - c',
data: [
[1709521386000,0],[1709521387000,0],[1709521388000,0],[1709521389000,0],[1709521390000,25],[1709521391000,25],[1709521392000,0],[1709521393000,0],[1709521394000,0],[1709521395000,0],[1709521396000,0],[1709521397000,0],[1709521398000,0],[1709521399000,0],[1709521400000,0],[1709521401000,0],[1709521402000,0],[1709521403000,0],[1709521404000,0],[1709521405000,0],[1709521406000,0],[1709521407000,0],[1709521408000,0],[1709521409000,0],[1709521410000,0],[1709521411000,0],[1709521412000,0],[1709521413000,0],[1709521414000,0],[1709521415000,0],[1709521416000,0],[1709521417000,0],[1709521418000,0],[1709521419000,0],[1709521420000,0],[1709521421000,0],[1709521422000,0],[1709521423000,0],[1709521424000,0],[1709521425000,0],[1709521426000,0],[1709521427000,0],[1709521428000,0],[1709521429000,0],[1709521430000,0],[1709521431000,0],[1709521432000,0],[1709521433000,0],[1709521434000,0],[1709521435000,0],[1709521436000,0],[1709521437000,0],[1709521438000,0],[1709521439000,0],[1709521440000,0],[1709521441000,0],[1709521442000,0],[1709521443000,0],[1709521444000,0],[1709521445000,0],[1709521446000,0],[1709521447000,0],[1709521448000,0],[1709521449000,0],[1709521450000,0],[1709521451000,0],[1709521452000,0],[1709521453000,0],[1709521454000,0],[1709521455000,0],[1709521456000,0],[1709521457000,0],[1709521458000,0],[1709521459000,0],[1709521460000,0],[1709521461000,0],[1709521462000,0],[1709521463000,0],[1709521464000,0],[1709521465000,0],[1709521466000,0],[1709521467000,0],[1709521468000,0],[1709521469000,0],[1709521470000,0],[1709521471000,0],[1709521472000,0],[1709521473000,0],[1709521474000,0],[1709521475000,0],[1709521476000,0],[1709521477000,0],[1709521478000,0],[1709521479000,0],[1709521480000,0],[1709521481000,0],[1709521482000,0],[1709521483000,0],[1709521484000,0],[1709521485000,0],[1709521486000,0],[1709521487000,0],[1709521488000,0],[1709521489000,0],[1709521490000,0],[1709521491000,0],[1709521492000,0],[1709521493000,0],[1709521494000,0],[1709521495000,0],[1709521496000,0],[1709521497000,0],[1709521498000,0],[1709521499000,0],[1709521500000,0],[1709521501000,0],[1709521502000,0],[1709521503000,0],[1709521504000,0],[1709521505000,0],[1709521506000,0],[1709521507000,0],[1709521508000,0],[1709521509000,0],[1709521510000,0],[1709521511000,0],[1709521512000,0],[1709521513000,0],[1709521514000,0],[1709521515000,0],[1709521516000,0],[1709521517000,0],[1709521518000,0],[1709521519000,0],[1709521520000,0],[1709521521000,0],[1709521522000,0],[1709521523000,0],[1709521524000,0],[1709521525000,0],[1709521526000,0],[1709521527000,0],[1709521528000,0],[1709521529000,0],[1709521530000,0],[1709521531000,0],[1709521532000,0],[1709521533000,0],[1709521534000,0],[1709521535000,0],[1709521536000,0],[1709521537000,0],[1709521538000,0],[1709521539000,0],[1709521540000,0],[1709521541000,0],[1709521542000,0],[1709521543000,0],[1709521544000,0],[1709521545000,0],[1709521546000,0],[1709521547000,0],[1709521548000,0],[1709521549000,0],[1709521550000,0],[1709521551000,0],[1709521552000,0],[1709521553000,0],[1709521554000,0],[1709521555000,0],[1709521556000,0],[1709521557000,0],[1709521558000,0],[1709521559000,0],[1709521560000,0],[1709521561000,0],[1709521562000,0],[1709521563000,0],[1709521564000,0],[1709521565000,0],[1709521566000,0],[1709521567000,0],[1709521568000,0],[1709521569000,0],[1709521570000,0],[1709521571000,0],[1709521572000,0],[1709521573000,0],[1709521574000,0],[1709521575000,0],[1709521576000,0],[1709521577000,0],[1709521578000,0],[1709521579000,0],[1709521580000,0],[1709521581000,0],[1709521582000,0],[1709521583000,0],[1709521584000,0],[1709521585000,0],[1709521586000,0],[1709521587000,0],[1709521588000,0],[1709521589000,0],[1709521590000,0],[1709521591000,0],[1709521592000,0],[1709521593000,0],[1709521594000,0],[1709521595000,0],[1709521596000,0],[1709521597000,0],[1709521598000,0],[1709521599000,0],[1709521600000,0],[1709521601000,0],[1709521602000,0],[1709521603000,0],[1709521604000,0],[1709521605000,0],[1709521606000,0],[1709521607000,0],[1709521608000,0],[1709521609000,0],[1709521610000,0],[1709521611000,0],[1709521612000,0],[1709521613000,0],[1709521614000,0],[1709521615000,0],[1709521616000,0],[1709521617000,0],[1709521618000,0],[1709521619000,0],[1709521620000,0],[1709521621000,0],[1709521622000,0],[1709521623000,0],[1709521624000,0],[1709521625000,0],[1709521626000,0],[1709521627000,0],[1709521628000,0],[1709521629000,0],[1709521630000,0],[1709521631000,0],[1709521632000,0],[1709521633000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FF00E1',
name: 'validação concorrência saldo - -25',
data: [
[1709521386000,0],[1709521387000,0],[1709521388000,0],[1709521389000,1],[1709521390000,1],[1709521391000,0],[1709521392000,0],[1709521393000,0],[1709521394000,0],[1709521395000,0],[1709521396000,0],[1709521397000,0],[1709521398000,0],[1709521399000,0],[1709521400000,0],[1709521401000,0],[1709521402000,0],[1709521403000,0],[1709521404000,0],[1709521405000,0],[1709521406000,0],[1709521407000,0],[1709521408000,0],[1709521409000,0],[1709521410000,0],[1709521411000,0],[1709521412000,0],[1709521413000,0],[1709521414000,0],[1709521415000,0],[1709521416000,0],[1709521417000,0],[1709521418000,0],[1709521419000,0],[1709521420000,0],[1709521421000,0],[1709521422000,0],[1709521423000,0],[1709521424000,0],[1709521425000,0],[1709521426000,0],[1709521427000,0],[1709521428000,0],[1709521429000,0],[1709521430000,0],[1709521431000,0],[1709521432000,0],[1709521433000,0],[1709521434000,0],[1709521435000,0],[1709521436000,0],[1709521437000,0],[1709521438000,0],[1709521439000,0],[1709521440000,0],[1709521441000,0],[1709521442000,0],[1709521443000,0],[1709521444000,0],[1709521445000,0],[1709521446000,0],[1709521447000,0],[1709521448000,0],[1709521449000,0],[1709521450000,0],[1709521451000,0],[1709521452000,0],[1709521453000,0],[1709521454000,0],[1709521455000,0],[1709521456000,0],[1709521457000,0],[1709521458000,0],[1709521459000,0],[1709521460000,0],[1709521461000,0],[1709521462000,0],[1709521463000,0],[1709521464000,0],[1709521465000,0],[1709521466000,0],[1709521467000,0],[1709521468000,0],[1709521469000,0],[1709521470000,0],[1709521471000,0],[1709521472000,0],[1709521473000,0],[1709521474000,0],[1709521475000,0],[1709521476000,0],[1709521477000,0],[1709521478000,0],[1709521479000,0],[1709521480000,0],[1709521481000,0],[1709521482000,0],[1709521483000,0],[1709521484000,0],[1709521485000,0],[1709521486000,0],[1709521487000,0],[1709521488000,0],[1709521489000,0],[1709521490000,0],[1709521491000,0],[1709521492000,0],[1709521493000,0],[1709521494000,0],[1709521495000,0],[1709521496000,0],[1709521497000,0],[1709521498000,0],[1709521499000,0],[1709521500000,0],[1709521501000,0],[1709521502000,0],[1709521503000,0],[1709521504000,0],[1709521505000,0],[1709521506000,0],[1709521507000,0],[1709521508000,0],[1709521509000,0],[1709521510000,0],[1709521511000,0],[1709521512000,0],[1709521513000,0],[1709521514000,0],[1709521515000,0],[1709521516000,0],[1709521517000,0],[1709521518000,0],[1709521519000,0],[1709521520000,0],[1709521521000,0],[1709521522000,0],[1709521523000,0],[1709521524000,0],[1709521525000,0],[1709521526000,0],[1709521527000,0],[1709521528000,0],[1709521529000,0],[1709521530000,0],[1709521531000,0],[1709521532000,0],[1709521533000,0],[1709521534000,0],[1709521535000,0],[1709521536000,0],[1709521537000,0],[1709521538000,0],[1709521539000,0],[1709521540000,0],[1709521541000,0],[1709521542000,0],[1709521543000,0],[1709521544000,0],[1709521545000,0],[1709521546000,0],[1709521547000,0],[1709521548000,0],[1709521549000,0],[1709521550000,0],[1709521551000,0],[1709521552000,0],[1709521553000,0],[1709521554000,0],[1709521555000,0],[1709521556000,0],[1709521557000,0],[1709521558000,0],[1709521559000,0],[1709521560000,0],[1709521561000,0],[1709521562000,0],[1709521563000,0],[1709521564000,0],[1709521565000,0],[1709521566000,0],[1709521567000,0],[1709521568000,0],[1709521569000,0],[1709521570000,0],[1709521571000,0],[1709521572000,0],[1709521573000,0],[1709521574000,0],[1709521575000,0],[1709521576000,0],[1709521577000,0],[1709521578000,0],[1709521579000,0],[1709521580000,0],[1709521581000,0],[1709521582000,0],[1709521583000,0],[1709521584000,0],[1709521585000,0],[1709521586000,0],[1709521587000,0],[1709521588000,0],[1709521589000,0],[1709521590000,0],[1709521591000,0],[1709521592000,0],[1709521593000,0],[1709521594000,0],[1709521595000,0],[1709521596000,0],[1709521597000,0],[1709521598000,0],[1709521599000,0],[1709521600000,0],[1709521601000,0],[1709521602000,0],[1709521603000,0],[1709521604000,0],[1709521605000,0],[1709521606000,0],[1709521607000,0],[1709521608000,0],[1709521609000,0],[1709521610000,0],[1709521611000,0],[1709521612000,0],[1709521613000,0],[1709521614000,0],[1709521615000,0],[1709521616000,0],[1709521617000,0],[1709521618000,0],[1709521619000,0],[1709521620000,0],[1709521621000,0],[1709521622000,0],[1709521623000,0],[1709521624000,0],[1709521625000,0],[1709521626000,0],[1709521627000,0],[1709521628000,0],[1709521629000,0],[1709521630000,0],[1709521631000,0],[1709521632000,0],[1709521633000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#AECAEB',
name: 'validação concorrência transações - d',
data: [
[1709521386000,25],[1709521387000,25],[1709521388000,25],[1709521389000,1],[1709521390000,0],[1709521391000,0],[1709521392000,0],[1709521393000,0],[1709521394000,0],[1709521395000,0],[1709521396000,0],[1709521397000,0],[1709521398000,0],[1709521399000,0],[1709521400000,0],[1709521401000,0],[1709521402000,0],[1709521403000,0],[1709521404000,0],[1709521405000,0],[1709521406000,0],[1709521407000,0],[1709521408000,0],[1709521409000,0],[1709521410000,0],[1709521411000,0],[1709521412000,0],[1709521413000,0],[1709521414000,0],[1709521415000,0],[1709521416000,0],[1709521417000,0],[1709521418000,0],[1709521419000,0],[1709521420000,0],[1709521421000,0],[1709521422000,0],[1709521423000,0],[1709521424000,0],[1709521425000,0],[1709521426000,0],[1709521427000,0],[1709521428000,0],[1709521429000,0],[1709521430000,0],[1709521431000,0],[1709521432000,0],[1709521433000,0],[1709521434000,0],[1709521435000,0],[1709521436000,0],[1709521437000,0],[1709521438000,0],[1709521439000,0],[1709521440000,0],[1709521441000,0],[1709521442000,0],[1709521443000,0],[1709521444000,0],[1709521445000,0],[1709521446000,0],[1709521447000,0],[1709521448000,0],[1709521449000,0],[1709521450000,0],[1709521451000,0],[1709521452000,0],[1709521453000,0],[1709521454000,0],[1709521455000,0],[1709521456000,0],[1709521457000,0],[1709521458000,0],[1709521459000,0],[1709521460000,0],[1709521461000,0],[1709521462000,0],[1709521463000,0],[1709521464000,0],[1709521465000,0],[1709521466000,0],[1709521467000,0],[1709521468000,0],[1709521469000,0],[1709521470000,0],[1709521471000,0],[1709521472000,0],[1709521473000,0],[1709521474000,0],[1709521475000,0],[1709521476000,0],[1709521477000,0],[1709521478000,0],[1709521479000,0],[1709521480000,0],[1709521481000,0],[1709521482000,0],[1709521483000,0],[1709521484000,0],[1709521485000,0],[1709521486000,0],[1709521487000,0],[1709521488000,0],[1709521489000,0],[1709521490000,0],[1709521491000,0],[1709521492000,0],[1709521493000,0],[1709521494000,0],[1709521495000,0],[1709521496000,0],[1709521497000,0],[1709521498000,0],[1709521499000,0],[1709521500000,0],[1709521501000,0],[1709521502000,0],[1709521503000,0],[1709521504000,0],[1709521505000,0],[1709521506000,0],[1709521507000,0],[1709521508000,0],[1709521509000,0],[1709521510000,0],[1709521511000,0],[1709521512000,0],[1709521513000,0],[1709521514000,0],[1709521515000,0],[1709521516000,0],[1709521517000,0],[1709521518000,0],[1709521519000,0],[1709521520000,0],[1709521521000,0],[1709521522000,0],[1709521523000,0],[1709521524000,0],[1709521525000,0],[1709521526000,0],[1709521527000,0],[1709521528000,0],[1709521529000,0],[1709521530000,0],[1709521531000,0],[1709521532000,0],[1709521533000,0],[1709521534000,0],[1709521535000,0],[1709521536000,0],[1709521537000,0],[1709521538000,0],[1709521539000,0],[1709521540000,0],[1709521541000,0],[1709521542000,0],[1709521543000,0],[1709521544000,0],[1709521545000,0],[1709521546000,0],[1709521547000,0],[1709521548000,0],[1709521549000,0],[1709521550000,0],[1709521551000,0],[1709521552000,0],[1709521553000,0],[1709521554000,0],[1709521555000,0],[1709521556000,0],[1709521557000,0],[1709521558000,0],[1709521559000,0],[1709521560000,0],[1709521561000,0],[1709521562000,0],[1709521563000,0],[1709521564000,0],[1709521565000,0],[1709521566000,0],[1709521567000,0],[1709521568000,0],[1709521569000,0],[1709521570000,0],[1709521571000,0],[1709521572000,0],[1709521573000,0],[1709521574000,0],[1709521575000,0],[1709521576000,0],[1709521577000,0],[1709521578000,0],[1709521579000,0],[1709521580000,0],[1709521581000,0],[1709521582000,0],[1709521583000,0],[1709521584000,0],[1709521585000,0],[1709521586000,0],[1709521587000,0],[1709521588000,0],[1709521589000,0],[1709521590000,0],[1709521591000,0],[1709521592000,0],[1709521593000,0],[1709521594000,0],[1709521595000,0],[1709521596000,0],[1709521597000,0],[1709521598000,0],[1709521599000,0],[1709521600000,0],[1709521601000,0],[1709521602000,0],[1709521603000,0],[1709521604000,0],[1709521605000,0],[1709521606000,0],[1709521607000,0],[1709521608000,0],[1709521609000,0],[1709521610000,0],[1709521611000,0],[1709521612000,0],[1709521613000,0],[1709521614000,0],[1709521615000,0],[1709521616000,0],[1709521617000,0],[1709521618000,0],[1709521619000,0],[1709521620000,0],[1709521621000,0],[1709521622000,0],[1709521623000,0],[1709521624000,0],[1709521625000,0],[1709521626000,0],[1709521627000,0],[1709521628000,0],[1709521629000,0],[1709521630000,0],[1709521631000,0],[1709521632000,0],[1709521633000,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: ['300', '900', '1500', '2100', '2700', '3300', '3900', '4500', '5100', '5700', '6300', '6900', '7500', '8100', '8700', '9300', '9900', '10500', '11100', '11700', '12300', '12900', '13500', '14100', '14700', '15300', '15900', '16500', '17100', '17700', '18300', '18900', '19500', '20100', '20700', '21300', '21900', '22500', '23100', '23700', '24300', '24900', '25500', '26100', '26700', '27300', '27900', '28500', '29100', '29700', '30301', '30901', '31501', '32101', '32701', '33301', '33901', '34501', '35101', '35701', '36301', '36901', '37501', '38101', '38701', '39301', '39901', '40501', '41101', '41701', '42301', '42901', '43501', '44101', '44701', '45301', '45901', '46501', '47101', '47701', '48301', '48901', '49501', '50101', '50701', '51301', '51901', '52501', '53101', '53701', '54301', '54901', '55501', '56101', '56701', '57301', '57901', '58501', '59101', '59701'],
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: [
42.41,0.26,0.0,0.01,0.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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: [
56.94,0.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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([[1709521386,[2019,2236,2446,2735,2818,2823,2884,2931,3095,3147]],[1709521387,null],[1709521388,null],[1709521389,null],[1709521390,[8,8,8,8,8,8,8,8,8,8]],[1709521391,[37,154,445,641,643,649,653,659,719,738]],[1709521392,[47,47,47,47,47,47,47,47,47,47]],[1709521393,[4,11,85,193,204,240,301,344,405,422]],[1709521394,[3,11,89,104,130,194,236,297,406,481]],[1709521395,[9,9,10,14,15,15,16,16,16,17]],[1709521396,[8,9,9,15,15,15,16,18,20,21]],[1709521397,[8,8,10,12,12,13,15,18,20,21]],[1709521398,[7,8,9,11,33,48,48,60,75,79]],[1709521399,[6,8,9,10,10,10,12,14,18,20]],[1709521400,[6,7,8,8,8,8,8,10,10,10]],[1709521401,[5,8,8,10,11,11,13,42,75,84]],[1709521402,[6,8,8,9,10,10,11,13,17,18]],[1709521403,[5,8,8,9,10,11,11,25,46,52]],[1709521404,[6,7,8,10,10,11,14,34,66,73]],[1709521405,[4,7,7,8,9,11,11,26,50,51]],[1709521406,[6,7,7,10,10,10,13,14,43,59]],[1709521407,[5,7,9,34,43,49,66,79,89,90]],[1709521408,[5,6,7,8,9,10,24,57,99,107]],[1709521409,[4,6,7,9,10,15,33,50,63,64]],[1709521410,[4,6,7,8,8,10,11,14,34,53]],[1709521411,[4,6,6,7,7,7,10,14,16,17]],[1709521412,[3,5,6,6,7,7,7,9,22,34]],[1709521413,[4,6,6,7,7,8,8,16,50,70]],[1709521414,[3,6,7,51,58,66,83,118,140,146]],[1709521415,[5,12,40,60,61,73,80,84,98,107]],[1709521416,[4,25,54,75,77,84,98,110,151,160]],[1709521417,[3,7,39,80,85,93,101,116,141,162]],[1709521418,[3,5,7,10,12,17,30,43,71,76]],[1709521419,[2,5,6,9,12,18,27,58,84,98]],[1709521420,[2,4,5,6,7,9,12,18,46,49]],[1709521421,[3,4,5,7,7,9,14,33,60,62]],[1709521422,[2,4,5,10,21,30,46,57,74,78]],[1709521423,[2,5,5,20,34,47,60,76,83,86]],[1709521424,[2,4,5,6,6,7,8,19,29,43]],[1709521425,[2,4,5,7,9,16,24,48,72,86]],[1709521426,[2,4,5,7,7,15,21,48,76,88]],[1709521427,[2,4,5,7,18,33,53,71,81,93]],[1709521428,[2,5,25,71,81,87,98,119,153,171]],[1709521429,[2,4,5,25,30,44,52,65,83,89]],[1709521430,[2,4,4,5,5,6,6,7,9,12]],[1709521431,[2,4,7,40,50,57,66,76,85,87]],[1709521432,[2,5,25,54,55,62,73,79,83,103]],[1709521433,[2,4,6,34,41,50,60,71,96,130]],[1709521434,[2,3,4,10,18,26,46,70,81,85]],[1709521435,[1,4,5,25,37,43,53,69,81,84]],[1709521436,[2,4,6,33,46,55,71,86,119,161]],[1709521437,[2,4,6,25,35,41,52,70,84,86]],[1709521438,[2,3,4,5,6,12,19,39,57,86]],[1709521439,[2,4,6,33,41,52,64,68,77,82]],[1709521440,[1,4,4,8,10,19,41,62,81,87]],[1709521441,[2,4,20,48,54,66,72,78,87,90]],[1709521442,[1,3,4,5,6,6,8,12,27,32]],[1709521443,[2,4,5,32,41,50,61,73,80,82]],[1709521444,[3,31,54,82,88,94,104,113,139,159]],[1709521445,[1,4,6,36,45,49,59,74,80,91]],[1709521446,[2,5,36,65,71,77,88,102,130,139]],[1709521447,[1,13,44,69,76,85,93,124,153,184]],[1709521448,[1,19,44,70,74,80,94,110,147,175]],[1709521449,[2,3,5,45,53,62,73,83,123,159]],[1709521450,[1,3,21,61,67,75,85,99,136,159]],[1709521451,[2,24,50,69,75,79,83,93,118,129]],[1709521452,[1,4,9,41,49,57,67,83,120,135]],[1709521453,[2,8,41,71,80,84,95,108,137,149]],[1709521454,[1,17,44,68,76,81,90,101,142,167]],[1709521455,[1,19,48,71,78,83,89,105,138,187]],[1709521456,[1,31,60,99,120,133,152,186,244,255]],[1709521457,[1,15,51,83,92,103,118,138,164,176]],[1709521458,[1,3,3,4,5,5,7,13,35,52]],[1709521459,[1,3,3,4,4,4,5,6,11,40]],[1709521460,[1,12,48,84,91,101,117,137,237,268]],[1709521461,[4,79,121,174,204,246,276,309,345,348]],[1709521462,[2,7,50,92,110,146,220,275,316,349]],[1709521463,[1,3,4,13,20,34,46,66,87,116]],[1709521464,[1,3,5,27,40,47,61,76,94,122]],[1709521465,[1,4,29,66,75,82,96,115,146,179]],[1709521466,[2,37,70,100,104,114,125,138,163,169]],[1709521467,[1,36,70,106,121,135,156,190,240,258]],[1709521468,[1,4,15,52,61,68,76,84,103,126]],[1709521469,[1,3,4,22,41,52,63,83,120,151]],[1709521470,[1,3,10,43,52,61,66,77,109,120]],[1709521471,[1,24,53,87,96,102,121,147,179,184]],[1709521472,[8,104,175,309,337,362,398,441,485,518]],[1709521473,[3,251,314,393,405,419,437,465,493,547]],[1709521474,[1,4,21,60,69,87,117,165,229,237]],[1709521475,[1,3,4,6,7,13,30,53,79,86]],[1709521476,[1,13,53,84,96,105,133,159,197,204]],[1709521477,[1,3,4,28,36,46,59,74,84,97]],[1709521478,[1,3,4,7,10,27,45,60,76,81]],[1709521479,[1,3,16,50,56,63,75,83,108,145]],[1709521480,[1,24,55,96,115,133,149,168,188,192]],[1709521481,[3,111,154,196,203,214,226,248,272,297]],[1709521482,[46,174,230,282,296,313,341,379,425,449]],[1709521483,[75,245,354,420,439,473,500,557,647,674]],[1709521484,[7,114,299,382,417,486,522,556,586,604]],[1709521485,[28,220,301,439,464,502,547,586,641,694]],[1709521486,[1,3,42,134,165,202,248,296,346,367]],[1709521487,[1,3,3,7,11,21,37,54,71,80]],[1709521488,[1,30,61,95,101,115,139,169,240,298]],[1709521489,[2,79,159,242,254,278,314,352,401,451]],[1709521490,[2,68,145,219,237,255,280,308,335,351]],[1709521491,[2,99,157,235,253,272,293,320,356,383]],[1709521492,[1,33,60,94,103,115,135,206,277,319]],[1709521493,[2,60,115,198,214,233,250,270,308,339]],[1709521494,[1,3,21,116,138,161,183,209,235,258]],[1709521495,[1,2,3,3,3,3,4,5,7,11]],[1709521496,[1,3,5,41,49,57,64,72,93,110]],[1709521497,[1,22,86,188,204,221,237,266,299,338]],[1709521498,[3,295,344,395,412,428,450,479,509,544]],[1709521499,[7,254,386,490,504,517,530,544,570,578]],[1709521500,[2,175,329,497,521,552,577,602,645,685]],[1709521501,[1,14,62,140,171,234,281,312,338,361]],[1709521502,[1,3,13,59,73,85,99,122,171,219]],[1709521503,[1,2,3,5,6,11,23,45,77,88]],[1709521504,[1,3,52,159,176,215,250,285,332,373]],[1709521505,[107,283,338,383,398,420,448,486,552,579]],[1709521506,[182,368,466,533,550,571,592,632,720,748]],[1709521507,[3,321,447,566,593,621,658,689,727,741]],[1709521508,[1,3,5,71,104,151,187,233,294,333]],[1709521509,[1,3,4,5,6,6,7,10,21,31]],[1709521510,[1,3,3,8,14,21,43,63,84,132]],[1709521511,[3,102,163,234,255,278,333,474,560,589]],[1709521512,[1,4,22,94,115,139,171,239,325,347]],[1709521513,[2,4,5,8,12,18,32,53,69,88]],[1709521514,[1,2,3,4,5,5,7,10,22,36]],[1709521515,[1,3,4,5,6,6,7,9,13,18]],[1709521516,[1,3,3,5,5,6,9,42,62,79]],[1709521517,[2,10,56,108,122,138,158,185,226,258]],[1709521518,[1,3,4,18,38,56,77,106,148,184]],[1709521519,[1,3,4,5,5,6,6,7,11,14]],[1709521520,[1,2,3,4,4,5,5,7,12,15]],[1709521521,[1,3,4,5,6,6,7,10,14,23]],[1709521522,[1,2,3,4,5,5,6,9,54,76]],[1709521523,[2,62,143,207,221,235,256,282,341,370]],[1709521524,[1,2,3,4,5,5,6,8,13,17]],[1709521525,[1,3,4,5,6,7,7,9,17,27]],[1709521526,[1,3,4,6,8,12,25,67,96,102]],[1709521527,[1,3,4,6,7,7,9,14,23,30]],[1709521528,[1,3,5,15,30,45,56,70,88,106]],[1709521529,[1,19,69,146,171,222,260,325,447,468]],[1709521530,[2,67,202,352,370,388,432,482,702,960]],[1709521531,[414,914,958,1011,1019,1023,1030,1067,1086,1093]],[1709521532,null],[1709521533,null],[1709521534,null],[1709521535,null],[1709521536,null],[1709521537,null],[1709521538,null],[1709521539,null],[1709521540,null],[1709521541,null],[1709521542,null],[1709521543,null],[1709521544,null],[1709521545,null],[1709521546,null],[1709521547,null],[1709521548,null],[1709521549,null],[1709521550,null],[1709521551,null],[1709521552,null],[1709521553,null],[1709521554,null],[1709521555,null],[1709521556,null],[1709521557,null],[1709521558,null],[1709521559,null],[1709521560,null],[1709521561,null],[1709521562,null],[1709521563,null],[1709521564,null],[1709521565,null],[1709521566,null],[1709521567,null],[1709521568,null],[1709521569,null],[1709521570,null],[1709521571,null],[1709521572,null],[1709521573,null],[1709521574,null],[1709521575,null],[1709521576,null],[1709521577,null],[1709521578,null],[1709521579,null],[1709521580,null],[1709521581,null],[1709521582,null],[1709521583,null],[1709521584,null],[1709521585,null],[1709521586,null],[1709521587,null],[1709521588,null],[1709521589,null],[1709521590,null],[1709521591,null],[1709521592,null],[1709521593,null],[1709521594,null],[1709521595,null],[1709521596,null],[1709521597,null],[1709521598,null],[1709521599,null],[1709521600,null],[1709521601,null],[1709521602,null],[1709521603,null],[1709521604,null],[1709521605,null],[1709521606,null],[1709521607,null],[1709521608,null],[1709521609,null],[1709521610,null],[1709521611,null],[1709521612,null],[1709521613,null],[1709521614,null],[1709521615,null],[1709521616,null],[1709521617,null],[1709521618,null],[1709521619,null],[1709521620,null],[1709521621,null],[1709521622,null],[1709521623,null],[1709521624,null],[1709521625,null],[1709521626,null],[1709521627,null],[1709521628,null],[1709521629,null],[1709521630,null],[1709521631,null],[1709521632,null],[1709521633,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([[1709521386,[25,25,0]],[1709521387,[0,0,0]],[1709521388,[0,0,0]],[1709521389,[0,0,0]],[1709521390,[1,1,0]],[1709521391,[25,25,0]],[1709521392,[1,1,0]],[1709521393,[31,31,0]],[1709521394,[43,43,0]],[1709521395,[6,6,0]],[1709521396,[9,9,0]],[1709521397,[11,11,0]],[1709521398,[13,13,0]],[1709521399,[18,18,0]],[1709521400,[19,19,0]],[1709521401,[24,24,0]],[1709521402,[26,26,0]],[1709521403,[27,27,0]],[1709521404,[32,32,0]],[1709521405,[34,34,0]],[1709521406,[37,37,0]],[1709521407,[39,39,0]],[1709521408,[43,43,0]],[1709521409,[44,44,0]],[1709521410,[49,49,0]],[1709521411,[50,50,0]],[1709521412,[54,54,0]],[1709521413,[56,56,0]],[1709521414,[60,60,0]],[1709521415,[61,61,0]],[1709521416,[65,65,0]],[1709521417,[67,67,0]],[1709521418,[70,70,0]],[1709521419,[74,74,0]],[1709521420,[76,76,0]],[1709521421,[80,80,0]],[1709521422,[81,81,0]],[1709521423,[84,84,0]],[1709521424,[88,88,0]],[1709521425,[90,90,0]],[1709521426,[93,93,0]],[1709521427,[96,96,0]],[1709521428,[98,98,0]],[1709521429,[102,102,0]],[1709521430,[104,104,0]],[1709521431,[107,107,0]],[1709521432,[109,109,0]],[1709521433,[114,114,0]],[1709521434,[115,115,0]],[1709521435,[118,118,0]],[1709521436,[121,121,0]],[1709521437,[124,124,0]],[1709521438,[126,126,0]],[1709521439,[129,129,0]],[1709521440,[133,133,0]],[1709521441,[134,134,0]],[1709521442,[139,139,0]],[1709521443,[140,140,0]],[1709521444,[144,144,0]],[1709521445,[146,146,0]],[1709521446,[149,149,0]],[1709521447,[151,151,0]],[1709521448,[155,155,0]],[1709521449,[157,157,0]],[1709521450,[160,160,0]],[1709521451,[164,164,0]],[1709521452,[165,165,0]],[1709521453,[171,171,0]],[1709521454,[171,171,0]],[1709521455,[174,174,0]],[1709521456,[177,177,0]],[1709521457,[180,180,0]],[1709521458,[183,183,0]],[1709521459,[186,186,0]],[1709521460,[188,188,0]],[1709521461,[192,192,0]],[1709521462,[194,194,0]],[1709521463,[197,197,0]],[1709521464,[198,198,0]],[1709521465,[204,204,0]],[1709521466,[204,204,0]],[1709521467,[208,208,0]],[1709521468,[211,211,0]],[1709521469,[213,213,0]],[1709521470,[218,218,0]],[1709521471,[219,219,0]],[1709521472,[222,222,0]],[1709521473,[225,225,0]],[1709521474,[228,228,0]],[1709521475,[229,229,0]],[1709521476,[234,234,0]],[1709521477,[236,236,0]],[1709521478,[239,239,0]],[1709521479,[242,242,0]],[1709521480,[244,244,0]],[1709521481,[248,248,0]],[1709521482,[250,250,0]],[1709521483,[253,253,0]],[1709521484,[255,255,0]],[1709521485,[260,260,0]],[1709521486,[263,263,0]],[1709521487,[263,263,0]],[1709521488,[267,267,0]],[1709521489,[269,269,0]],[1709521490,[273,273,0]],[1709521491,[275,275,0]],[1709521492,[279,279,0]],[1709521493,[281,281,0]],[1709521494,[284,284,0]],[1709521495,[286,286,0]],[1709521496,[290,290,0]],[1709521497,[292,292,0]],[1709521498,[295,295,0]],[1709521499,[298,298,0]],[1709521500,[301,301,0]],[1709521501,[304,304,0]],[1709521502,[306,306,0]],[1709521503,[309,309,0]],[1709521504,[312,312,0]],[1709521505,[315,315,0]],[1709521506,[317,317,0]],[1709521507,[320,320,0]],[1709521508,[323,323,0]],[1709521509,[326,326,0]],[1709521510,[330,330,0]],[1709521511,[332,332,0]],[1709521512,[334,334,0]],[1709521513,[337,337,0]],[1709521514,[340,340,0]],[1709521515,[340,340,0]],[1709521516,[340,340,0]],[1709521517,[340,340,0]],[1709521518,[340,340,0]],[1709521519,[340,340,0]],[1709521520,[340,340,0]],[1709521521,[340,340,0]],[1709521522,[340,340,0]],[1709521523,[340,340,0]],[1709521524,[340,340,0]],[1709521525,[340,340,0]],[1709521526,[340,340,0]],[1709521527,[340,340,0]],[1709521528,[340,340,0]],[1709521529,[340,340,0]],[1709521530,[340,256,84]],[1709521531,[340,42,298]],[1709521532,[340,0,340]],[1709521533,[340,0,340]],[1709521534,[340,0,340]],[1709521535,[340,0,340]],[1709521536,[340,0,340]],[1709521537,[340,0,340]],[1709521538,[340,0,340]],[1709521539,[340,0,340]],[1709521540,[340,0,340]],[1709521541,[340,0,340]],[1709521542,[340,0,340]],[1709521543,[340,0,340]],[1709521544,[340,0,340]],[1709521545,[340,0,340]],[1709521546,[340,0,340]],[1709521547,[340,0,340]],[1709521548,[340,0,340]],[1709521549,[340,0,340]],[1709521550,[340,0,340]],[1709521551,[340,0,340]],[1709521552,[340,0,340]],[1709521553,[340,0,340]],[1709521554,[340,0,340]],[1709521555,[340,0,340]],[1709521556,[340,0,340]],[1709521557,[340,0,340]],[1709521558,[340,0,340]],[1709521559,[340,0,340]],[1709521560,[340,0,340]],[1709521561,[340,0,340]],[1709521562,[340,0,340]],[1709521563,[340,0,340]],[1709521564,[340,0,340]],[1709521565,[340,0,340]],[1709521566,[340,0,340]],[1709521567,[340,0,340]],[1709521568,[340,0,340]],[1709521569,[340,0,340]],[1709521570,[340,0,340]],[1709521571,[340,0,340]],[1709521572,[340,0,340]],[1709521573,[340,0,340]],[1709521574,[340,0,340]],[1709521575,[340,0,340]],[1709521576,[340,0,340]],[1709521577,[340,0,340]],[1709521578,[340,0,340]],[1709521579,[340,0,340]],[1709521580,[340,0,340]],[1709521581,[340,0,340]],[1709521582,[340,0,340]],[1709521583,[340,0,340]],[1709521584,[340,0,340]],[1709521585,[340,0,340]],[1709521586,[340,0,340]],[1709521587,[340,0,340]],[1709521588,[340,0,340]],[1709521589,[340,0,340]],[1709521590,[340,0,340]],[1709521591,[340,0,340]],[1709521592,[340,0,340]],[1709521593,[340,0,340]],[1709521594,[340,0,340]],[1709521595,[340,0,340]],[1709521596,[340,0,340]],[1709521597,[340,0,340]],[1709521598,[340,0,340]],[1709521599,[340,0,340]],[1709521600,[340,0,340]],[1709521601,[340,0,340]],[1709521602,[340,0,340]],[1709521603,[340,0,340]],[1709521604,[340,0,340]],[1709521605,[340,0,340]],[1709521606,[340,0,340]],[1709521607,[340,0,340]],[1709521608,[340,0,340]],[1709521609,[340,0,340]],[1709521610,[340,0,340]],[1709521611,[340,0,340]],[1709521612,[340,0,340]],[1709521613,[340,0,340]],[1709521614,[340,0,340]],[1709521615,[340,0,340]],[1709521616,[340,0,340]],[1709521617,[340,0,340]],[1709521618,[340,0,340]],[1709521619,[340,0,340]],[1709521620,[340,0,340]],[1709521621,[340,0,340]],[1709521622,[340,0,340]],[1709521623,[340,0,340]],[1709521624,[340,0,340]],[1709521625,[340,0,340]],[1709521626,[340,0,340]],[1709521627,[340,0,340]],[1709521628,[340,0,340]],[1709521629,[340,0,340]],[1709521630,[340,0,340]],[1709521631,[340,0,340]],[1709521632,[340,0,340]],[1709521633,[503,0,503]]]);
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' }
}
}