-
Notifications
You must be signed in to change notification settings - Fork 923
/
Copy pathindex.html
1235 lines (1165 loc) · 156 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-01 13:51:56 GMT</span>
</span>
<span class="simulation-information-item">
<span class="simulation-information-label">Duration: </span>
<span>8m 58s </span>
</span>
<span class="simulation-tooltip simulation-information-item description" title="Description" data-content="Rinha de Backend - 2024/Q1: Crébito - felipefrmelo">
<span class="simulation-information-label">Description: </span>
<span>Rinha de Backend - 2024/Q1: Crébito - felipefrmelo</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">33644</td>
<td class="value error-col-3 total ko">54.728 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">status.find.in(200,422), but actually found 502<span class="value" style="display:none">1</span></td>
<td class="value error-col-2 total ko">17626</td>
<td class="value error-col-3 total ko">28.672 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">status.find.in(200), but actually found 502<span class="value" style="display:none">2</span></td>
<td class="value error-col-2 total ko">8781</td>
<td class="value error-col-3 total ko">14.284 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">status.find.in([200, 209], 304), found 502<span class="value" style="display:none">3</span></td>
<td class="value error-col-2 total ko">813</td>
<td class="value error-col-3 total ko">1.322 %</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">4</span></td>
<td class="value error-col-2 total ko">449</td>
<td class="value error-col-3 total ko">0.73 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">status.find.in(200,422), but actually found 504<span class="value" style="display:none">5</span></td>
<td class="value error-col-2 total ko">99</td>
<td class="value error-col-3 total ko">0.161 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">status.find.in(200), but actually found 504<span class="value" style="display:none">6</span></td>
<td class="value error-col-2 total ko">37</td>
<td class="value error-col-3 total ko">0.06 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">status.find.in(422,400), but actually found 502<span class="value" style="display:none">7</span></td>
<td class="value error-col-2 total ko">25</td>
<td class="value error-col-3 total ko">0.041 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">jmesPath(saldo.total).find.is(-25), but actually found -8<span class="value" style="display:none">8</span></td>
<td class="value error-col-2 total ko">1</td>
<td class="value error-col-3 total ko">0.002 %</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: [
[1709301116000,0],[1709301117000,0],[1709301118000,0],[1709301119000,0],[1709301120000,0],[1709301121000,0],[1709301122000,0],[1709301123000,0],[1709301124000,0],[1709301125000,0],[1709301126000,0],[1709301127000,0],[1709301128000,0],[1709301129000,0],[1709301130000,0],[1709301131000,0],[1709301132000,0],[1709301133000,0],[1709301134000,0],[1709301135000,0],[1709301136000,0],[1709301137000,0],[1709301138000,0],[1709301139000,0],[1709301140000,0],[1709301141000,0],[1709301142000,0],[1709301143000,0],[1709301144000,0],[1709301145000,0],[1709301146000,0],[1709301147000,0],[1709301148000,0],[1709301149000,0],[1709301150000,0],[1709301151000,0],[1709301152000,0],[1709301153000,0],[1709301154000,0],[1709301155000,0],[1709301156000,0],[1709301157000,0],[1709301158000,0],[1709301159000,0],[1709301160000,0],[1709301161000,0],[1709301162000,0],[1709301163000,0],[1709301164000,0],[1709301165000,0],[1709301166000,0],[1709301167000,0],[1709301168000,0],[1709301169000,0],[1709301170000,0],[1709301171000,0],[1709301172000,0],[1709301173000,0],[1709301174000,0],[1709301175000,0],[1709301176000,0],[1709301177000,0],[1709301178000,0],[1709301179000,0],[1709301180000,0],[1709301181000,0],[1709301182000,0],[1709301183000,0],[1709301184000,0],[1709301185000,0],[1709301186000,0],[1709301187000,0],[1709301188000,0],[1709301189000,0],[1709301190000,0],[1709301191000,0],[1709301192000,0],[1709301193000,0],[1709301194000,0],[1709301195000,0],[1709301196000,0],[1709301197000,0],[1709301198000,0],[1709301199000,0],[1709301200000,0],[1709301201000,0],[1709301202000,0],[1709301203000,0],[1709301204000,0],[1709301205000,0],[1709301206000,0],[1709301207000,0],[1709301208000,0],[1709301209000,0],[1709301210000,0],[1709301211000,0],[1709301212000,0],[1709301213000,0],[1709301214000,0],[1709301215000,0],[1709301216000,0],[1709301217000,0],[1709301218000,0],[1709301219000,0],[1709301220000,0],[1709301221000,0],[1709301222000,0],[1709301223000,0],[1709301224000,0],[1709301225000,0],[1709301226000,0],[1709301227000,0],[1709301228000,0],[1709301229000,0],[1709301230000,0],[1709301231000,0],[1709301232000,0],[1709301233000,0],[1709301234000,0],[1709301235000,0],[1709301236000,0],[1709301237000,0],[1709301238000,0],[1709301239000,0],[1709301240000,0],[1709301241000,0],[1709301242000,0],[1709301243000,0],[1709301244000,0],[1709301245000,0],[1709301246000,0],[1709301247000,0],[1709301248000,0],[1709301249000,0],[1709301250000,0],[1709301251000,0],[1709301252000,0],[1709301253000,0],[1709301254000,0],[1709301255000,0],[1709301256000,0],[1709301257000,0],[1709301258000,0],[1709301259000,0],[1709301260000,0],[1709301261000,0],[1709301262000,0],[1709301263000,0],[1709301264000,0],[1709301265000,0],[1709301266000,0],[1709301267000,0],[1709301268000,0],[1709301269000,0],[1709301270000,0],[1709301271000,0],[1709301272000,0],[1709301273000,0],[1709301274000,0],[1709301275000,0],[1709301276000,0],[1709301277000,0],[1709301278000,0],[1709301279000,0],[1709301280000,0],[1709301281000,0],[1709301282000,0],[1709301283000,0],[1709301284000,0],[1709301285000,0],[1709301286000,0],[1709301287000,0],[1709301288000,0],[1709301289000,0],[1709301290000,0],[1709301291000,0],[1709301292000,0],[1709301293000,0],[1709301294000,0],[1709301295000,0],[1709301296000,0],[1709301297000,0],[1709301298000,0],[1709301299000,0],[1709301300000,0],[1709301301000,0],[1709301302000,0],[1709301303000,0],[1709301304000,0],[1709301305000,0],[1709301306000,0],[1709301307000,0],[1709301308000,0],[1709301309000,0],[1709301310000,0],[1709301311000,0],[1709301312000,0],[1709301313000,0],[1709301314000,0],[1709301315000,0],[1709301316000,0],[1709301317000,0],[1709301318000,0],[1709301319000,0],[1709301320000,0],[1709301321000,0],[1709301322000,0],[1709301323000,0],[1709301324000,0],[1709301325000,0],[1709301326000,0],[1709301327000,0],[1709301328000,0],[1709301329000,0],[1709301330000,0],[1709301331000,0],[1709301332000,0],[1709301333000,0],[1709301334000,0],[1709301335000,0],[1709301336000,0],[1709301337000,0],[1709301338000,0],[1709301339000,0],[1709301340000,0],[1709301341000,0],[1709301342000,0],[1709301343000,0],[1709301344000,0],[1709301345000,0],[1709301346000,0],[1709301347000,0],[1709301348000,0],[1709301349000,0],[1709301350000,0],[1709301351000,0],[1709301352000,0],[1709301353000,0],[1709301354000,0],[1709301355000,0],[1709301356000,0],[1709301357000,0],[1709301358000,0],[1709301359000,0],[1709301360000,1],[1709301361000,2],[1709301362000,2],[1709301363000,4],[1709301364000,4],[1709301365000,5],[1709301366000,6],[1709301367000,7],[1709301368000,8],[1709301369000,8],[1709301370000,10],[1709301371000,10],[1709301372000,12],[1709301373000,12],[1709301374000,14],[1709301375000,14],[1709301376000,15],[1709301377000,16],[1709301378000,17],[1709301379000,17],[1709301380000,19],[1709301381000,20],[1709301382000,21],[1709301383000,23],[1709301384000,23],[1709301385000,24],[1709301386000,26],[1709301387000,26],[1709301388000,27],[1709301389000,27],[1709301390000,29],[1709301391000,30],[1709301392000,31],[1709301393000,32],[1709301394000,34],[1709301395000,34],[1709301396000,35],[1709301397000,36],[1709301398000,37],[1709301399000,38],[1709301400000,39],[1709301401000,40],[1709301402000,41],[1709301403000,41],[1709301404000,44],[1709301405000,44],[1709301406000,46],[1709301407000,46],[1709301408000,47],[1709301409000,48],[1709301410000,49],[1709301411000,50],[1709301412000,51],[1709301413000,51],[1709301414000,53],[1709301415000,54],[1709301416000,56],[1709301417000,56],[1709301418000,57],[1709301419000,58],[1709301420000,60],[1709301421000,59],[1709301422000,61],[1709301423000,62],[1709301424000,63],[1709301425000,63],[1709301426000,65],[1709301427000,65],[1709301428000,67],[1709301429000,67],[1709301430000,68],[1709301431000,93],[1709301432000,148],[1709301433000,148],[1709301434000,149],[1709301435000,150],[1709301436000,152],[1709301437000,152],[1709301438000,153],[1709301439000,153],[1709301440000,154],[1709301441000,155],[1709301442000,155],[1709301443000,156],[1709301444000,157],[1709301445000,158],[1709301446000,159],[1709301447000,159],[1709301448000,161],[1709301449000,161],[1709301450000,162],[1709301451000,163],[1709301452000,165],[1709301453000,165],[1709301454000,166],[1709301455000,166],[1709301456000,168],[1709301457000,169],[1709301458000,169],[1709301459000,171],[1709301460000,171],[1709301461000,172],[1709301462000,174],[1709301463000,174],[1709301464000,174],[1709301465000,175],[1709301466000,176],[1709301467000,176],[1709301468000,178],[1709301469000,178],[1709301470000,180],[1709301471000,180],[1709301472000,182],[1709301473000,182],[1709301474000,183],[1709301475000,184],[1709301476000,185],[1709301477000,186],[1709301478000,186],[1709301479000,188],[1709301480000,189],[1709301481000,189],[1709301482000,189],[1709301483000,189],[1709301484000,189],[1709301485000,189],[1709301486000,190],[1709301487000,190],[1709301488000,190],[1709301489000,190],[1709301490000,190],[1709301491000,171],[1709301492000,118],[1709301493000,118],[1709301494000,118],[1709301495000,118],[1709301496000,118],[1709301497000,118],[1709301498000,118],[1709301499000,118],[1709301500000,118],[1709301501000,118],[1709301502000,118],[1709301503000,119],[1709301504000,119],[1709301505000,119],[1709301506000,119],[1709301507000,119],[1709301508000,119],[1709301509000,119],[1709301510000,119],[1709301511000,119],[1709301512000,119],[1709301513000,160],[1709301514000,189],[1709301515000,189],[1709301516000,189],[1709301517000,189],[1709301518000,189],[1709301519000,189],[1709301520000,189],[1709301521000,189],[1709301522000,189],[1709301523000,189],[1709301524000,189],[1709301525000,189],[1709301526000,189],[1709301527000,189],[1709301528000,189],[1709301529000,189],[1709301530000,189],[1709301531000,189],[1709301532000,189],[1709301533000,189],[1709301534000,189],[1709301535000,189],[1709301536000,189],[1709301537000,189],[1709301538000,189],[1709301539000,189],[1709301540000,189],[1709301541000,189],[1709301542000,189],[1709301543000,189],[1709301544000,189],[1709301545000,189],[1709301546000,188],[1709301547000,188],[1709301548000,188],[1709301549000,188],[1709301550000,188],[1709301551000,192],[1709301552000,192],[1709301553000,192],[1709301554000,192],[1709301555000,192],[1709301556000,192],[1709301557000,192],[1709301558000,192],[1709301559000,192],[1709301560000,192],[1709301561000,192],[1709301562000,192],[1709301563000,192],[1709301564000,192],[1709301565000,192],[1709301566000,192],[1709301567000,192],[1709301568000,192],[1709301569000,192],[1709301570000,192],[1709301571000,192],[1709301572000,192],[1709301573000,150],[1709301574000,121],[1709301575000,121],[1709301576000,121],[1709301577000,121],[1709301578000,121],[1709301579000,121],[1709301580000,121],[1709301581000,121],[1709301582000,121],[1709301583000,121],[1709301584000,121],[1709301585000,121],[1709301586000,121],[1709301587000,121],[1709301588000,121],[1709301589000,121],[1709301590000,121],[1709301591000,121],[1709301592000,121],[1709301593000,121],[1709301594000,121],[1709301595000,121],[1709301596000,121],[1709301597000,121],[1709301598000,121],[1709301599000,121],[1709301600000,119],[1709301601000,11],[1709301602000,11],[1709301603000,11],[1709301604000,11],[1709301605000,11],[1709301606000,11],[1709301607000,11],[1709301608000,11],[1709301609000,11],[1709301610000,11],[1709301611000,2],[1709301612000,2],[1709301613000,2],[1709301614000,2],[1709301615000,2],[1709301616000,2],[1709301617000,2],[1709301618000,2],[1709301619000,2],[1709301620000,2],[1709301621000,2],[1709301622000,2],[1709301623000,1],[1709301624000,1],[1709301625000,1],[1709301626000,1],[1709301627000,1],[1709301628000,1],[1709301629000,1],[1709301630000,1],[1709301631000,1],[1709301632000,1],[1709301633000,1],[1709301634000,1],[1709301635000,1],[1709301636000,1],[1709301637000,1],[1709301638000,1],[1709301639000,1],[1709301640000,1],[1709301641000,1],[1709301642000,1],[1709301643000,1],[1709301644000,1],[1709301645000,1],[1709301646000,1],[1709301647000,1],[1709301648000,1],[1709301649000,1],[1709301650000,1],[1709301651000,1],[1709301652000,1],[1709301653000,1],[1709301654000,1]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#68b65c',
name: 'débitos',
data: [
[1709301116000,0],[1709301117000,0],[1709301118000,0],[1709301119000,0],[1709301120000,0],[1709301121000,0],[1709301122000,0],[1709301123000,0],[1709301124000,0],[1709301125000,0],[1709301126000,0],[1709301127000,0],[1709301128000,0],[1709301129000,0],[1709301130000,0],[1709301131000,0],[1709301132000,0],[1709301133000,0],[1709301134000,0],[1709301135000,0],[1709301136000,0],[1709301137000,0],[1709301138000,0],[1709301139000,0],[1709301140000,0],[1709301141000,0],[1709301142000,0],[1709301143000,0],[1709301144000,0],[1709301145000,0],[1709301146000,0],[1709301147000,0],[1709301148000,0],[1709301149000,0],[1709301150000,0],[1709301151000,0],[1709301152000,0],[1709301153000,0],[1709301154000,0],[1709301155000,0],[1709301156000,0],[1709301157000,0],[1709301158000,0],[1709301159000,0],[1709301160000,0],[1709301161000,0],[1709301162000,0],[1709301163000,0],[1709301164000,0],[1709301165000,0],[1709301166000,0],[1709301167000,0],[1709301168000,0],[1709301169000,0],[1709301170000,0],[1709301171000,0],[1709301172000,0],[1709301173000,0],[1709301174000,0],[1709301175000,0],[1709301176000,0],[1709301177000,0],[1709301178000,0],[1709301179000,0],[1709301180000,0],[1709301181000,0],[1709301182000,0],[1709301183000,0],[1709301184000,0],[1709301185000,0],[1709301186000,0],[1709301187000,0],[1709301188000,0],[1709301189000,0],[1709301190000,0],[1709301191000,0],[1709301192000,0],[1709301193000,0],[1709301194000,0],[1709301195000,0],[1709301196000,0],[1709301197000,0],[1709301198000,0],[1709301199000,0],[1709301200000,0],[1709301201000,0],[1709301202000,0],[1709301203000,0],[1709301204000,0],[1709301205000,0],[1709301206000,0],[1709301207000,0],[1709301208000,0],[1709301209000,0],[1709301210000,0],[1709301211000,0],[1709301212000,0],[1709301213000,0],[1709301214000,0],[1709301215000,0],[1709301216000,0],[1709301217000,0],[1709301218000,0],[1709301219000,0],[1709301220000,0],[1709301221000,0],[1709301222000,0],[1709301223000,0],[1709301224000,0],[1709301225000,0],[1709301226000,0],[1709301227000,0],[1709301228000,0],[1709301229000,0],[1709301230000,0],[1709301231000,0],[1709301232000,0],[1709301233000,0],[1709301234000,0],[1709301235000,0],[1709301236000,0],[1709301237000,0],[1709301238000,0],[1709301239000,0],[1709301240000,0],[1709301241000,0],[1709301242000,0],[1709301243000,0],[1709301244000,0],[1709301245000,0],[1709301246000,0],[1709301247000,0],[1709301248000,0],[1709301249000,0],[1709301250000,0],[1709301251000,0],[1709301252000,0],[1709301253000,0],[1709301254000,0],[1709301255000,0],[1709301256000,0],[1709301257000,0],[1709301258000,0],[1709301259000,0],[1709301260000,0],[1709301261000,0],[1709301262000,0],[1709301263000,0],[1709301264000,0],[1709301265000,0],[1709301266000,0],[1709301267000,0],[1709301268000,0],[1709301269000,0],[1709301270000,0],[1709301271000,0],[1709301272000,0],[1709301273000,0],[1709301274000,0],[1709301275000,0],[1709301276000,0],[1709301277000,0],[1709301278000,0],[1709301279000,0],[1709301280000,0],[1709301281000,0],[1709301282000,0],[1709301283000,0],[1709301284000,0],[1709301285000,0],[1709301286000,0],[1709301287000,0],[1709301288000,0],[1709301289000,0],[1709301290000,0],[1709301291000,0],[1709301292000,0],[1709301293000,0],[1709301294000,0],[1709301295000,0],[1709301296000,0],[1709301297000,0],[1709301298000,0],[1709301299000,0],[1709301300000,0],[1709301301000,0],[1709301302000,0],[1709301303000,0],[1709301304000,0],[1709301305000,0],[1709301306000,0],[1709301307000,0],[1709301308000,0],[1709301309000,0],[1709301310000,0],[1709301311000,0],[1709301312000,0],[1709301313000,0],[1709301314000,0],[1709301315000,0],[1709301316000,0],[1709301317000,0],[1709301318000,0],[1709301319000,0],[1709301320000,0],[1709301321000,0],[1709301322000,0],[1709301323000,0],[1709301324000,0],[1709301325000,0],[1709301326000,0],[1709301327000,0],[1709301328000,0],[1709301329000,0],[1709301330000,0],[1709301331000,0],[1709301332000,0],[1709301333000,0],[1709301334000,0],[1709301335000,0],[1709301336000,0],[1709301337000,0],[1709301338000,0],[1709301339000,0],[1709301340000,0],[1709301341000,0],[1709301342000,0],[1709301343000,0],[1709301344000,0],[1709301345000,0],[1709301346000,0],[1709301347000,0],[1709301348000,0],[1709301349000,0],[1709301350000,0],[1709301351000,0],[1709301352000,0],[1709301353000,0],[1709301354000,0],[1709301355000,0],[1709301356000,0],[1709301357000,0],[1709301358000,0],[1709301359000,0],[1709301360000,1],[1709301361000,1],[1709301362000,4],[1709301363000,6],[1709301364000,7],[1709301365000,9],[1709301366000,11],[1709301367000,13],[1709301368000,15],[1709301369000,16],[1709301370000,19],[1709301371000,22],[1709301372000,24],[1709301373000,26],[1709301374000,27],[1709301375000,30],[1709301376000,31],[1709301377000,33],[1709301378000,35],[1709301379000,37],[1709301380000,39],[1709301381000,40],[1709301382000,43],[1709301383000,45],[1709301384000,47],[1709301385000,49],[1709301386000,50],[1709301387000,53],[1709301388000,54],[1709301389000,56],[1709301390000,58],[1709301391000,59],[1709301392000,62],[1709301393000,64],[1709301394000,66],[1709301395000,68],[1709301396000,71],[1709301397000,72],[1709301398000,74],[1709301399000,76],[1709301400000,78],[1709301401000,78],[1709301402000,81],[1709301403000,83],[1709301404000,85],[1709301405000,87],[1709301406000,89],[1709301407000,91],[1709301408000,93],[1709301409000,94],[1709301410000,97],[1709301411000,98],[1709301412000,100],[1709301413000,102],[1709301414000,103],[1709301415000,107],[1709301416000,108],[1709301417000,110],[1709301418000,112],[1709301419000,114],[1709301420000,116],[1709301421000,117],[1709301422000,119],[1709301423000,121],[1709301424000,123],[1709301425000,125],[1709301426000,128],[1709301427000,131],[1709301428000,132],[1709301429000,134],[1709301430000,136],[1709301431000,184],[1709301432000,292],[1709301433000,293],[1709301434000,296],[1709301435000,298],[1709301436000,300],[1709301437000,301],[1709301438000,303],[1709301439000,304],[1709301440000,307],[1709301441000,307],[1709301442000,311],[1709301443000,313],[1709301444000,314],[1709301445000,316],[1709301446000,318],[1709301447000,320],[1709301448000,322],[1709301449000,323],[1709301450000,326],[1709301451000,327],[1709301452000,329],[1709301453000,331],[1709301454000,332],[1709301455000,335],[1709301456000,336],[1709301457000,338],[1709301458000,340],[1709301459000,342],[1709301460000,344],[1709301461000,345],[1709301462000,347],[1709301463000,349],[1709301464000,352],[1709301465000,354],[1709301466000,355],[1709301467000,358],[1709301468000,359],[1709301469000,361],[1709301470000,364],[1709301471000,364],[1709301472000,367],[1709301473000,369],[1709301474000,370],[1709301475000,373],[1709301476000,374],[1709301477000,376],[1709301478000,377],[1709301479000,379],[1709301480000,382],[1709301481000,382],[1709301482000,382],[1709301483000,382],[1709301484000,382],[1709301485000,382],[1709301486000,381],[1709301487000,381],[1709301488000,381],[1709301489000,381],[1709301490000,381],[1709301491000,350],[1709301492000,245],[1709301493000,245],[1709301494000,245],[1709301495000,245],[1709301496000,245],[1709301497000,245],[1709301498000,245],[1709301499000,245],[1709301500000,245],[1709301501000,245],[1709301502000,243],[1709301503000,244],[1709301504000,244],[1709301505000,244],[1709301506000,244],[1709301507000,244],[1709301508000,244],[1709301509000,244],[1709301510000,244],[1709301511000,244],[1709301512000,244],[1709301513000,328],[1709301514000,384],[1709301515000,384],[1709301516000,384],[1709301517000,384],[1709301518000,384],[1709301519000,384],[1709301520000,384],[1709301521000,384],[1709301522000,384],[1709301523000,384],[1709301524000,384],[1709301525000,384],[1709301526000,384],[1709301527000,384],[1709301528000,384],[1709301529000,384],[1709301530000,384],[1709301531000,384],[1709301532000,384],[1709301533000,384],[1709301534000,384],[1709301535000,384],[1709301536000,384],[1709301537000,384],[1709301538000,384],[1709301539000,384],[1709301540000,384],[1709301541000,384],[1709301542000,384],[1709301543000,384],[1709301544000,384],[1709301545000,384],[1709301546000,385],[1709301547000,385],[1709301548000,385],[1709301549000,385],[1709301550000,385],[1709301551000,381],[1709301552000,381],[1709301553000,381],[1709301554000,381],[1709301555000,381],[1709301556000,381],[1709301557000,381],[1709301558000,381],[1709301559000,381],[1709301560000,381],[1709301561000,381],[1709301562000,381],[1709301563000,380],[1709301564000,380],[1709301565000,380],[1709301566000,380],[1709301567000,380],[1709301568000,380],[1709301569000,380],[1709301570000,380],[1709301571000,380],[1709301572000,380],[1709301573000,295],[1709301574000,240],[1709301575000,240],[1709301576000,240],[1709301577000,240],[1709301578000,240],[1709301579000,240],[1709301580000,240],[1709301581000,240],[1709301582000,240],[1709301583000,240],[1709301584000,238],[1709301585000,238],[1709301586000,238],[1709301587000,238],[1709301588000,238],[1709301589000,238],[1709301590000,238],[1709301591000,238],[1709301592000,238],[1709301593000,238],[1709301594000,238],[1709301595000,238],[1709301596000,238],[1709301597000,238],[1709301598000,238],[1709301599000,238],[1709301600000,234],[1709301601000,18],[1709301602000,18],[1709301603000,18],[1709301604000,18],[1709301605000,18],[1709301606000,16],[1709301607000,16],[1709301608000,16],[1709301609000,16],[1709301610000,16],[1709301611000,2],[1709301612000,2],[1709301613000,2],[1709301614000,2],[1709301615000,2],[1709301616000,2],[1709301617000,2],[1709301618000,2],[1709301619000,2],[1709301620000,2],[1709301621000,2],[1709301622000,2],[1709301623000,2],[1709301624000,2],[1709301625000,2],[1709301626000,2],[1709301627000,2],[1709301628000,2],[1709301629000,2],[1709301630000,2],[1709301631000,2],[1709301632000,2],[1709301633000,2],[1709301634000,1],[1709301635000,1],[1709301636000,1],[1709301637000,1],[1709301638000,1],[1709301639000,1],[1709301640000,1],[1709301641000,1],[1709301642000,1],[1709301643000,1],[1709301644000,1],[1709301645000,1],[1709301646000,1],[1709301647000,1],[1709301648000,1],[1709301649000,1],[1709301650000,1],[1709301651000,1],[1709301652000,1],[1709301653000,1],[1709301654000,1]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#f15b4f',
name: 'extratos',
data: [
[1709301116000,0],[1709301117000,0],[1709301118000,0],[1709301119000,0],[1709301120000,0],[1709301121000,0],[1709301122000,0],[1709301123000,0],[1709301124000,0],[1709301125000,0],[1709301126000,0],[1709301127000,0],[1709301128000,0],[1709301129000,0],[1709301130000,0],[1709301131000,0],[1709301132000,0],[1709301133000,0],[1709301134000,0],[1709301135000,0],[1709301136000,0],[1709301137000,0],[1709301138000,0],[1709301139000,0],[1709301140000,0],[1709301141000,0],[1709301142000,0],[1709301143000,0],[1709301144000,0],[1709301145000,0],[1709301146000,0],[1709301147000,0],[1709301148000,0],[1709301149000,0],[1709301150000,0],[1709301151000,0],[1709301152000,0],[1709301153000,0],[1709301154000,0],[1709301155000,0],[1709301156000,0],[1709301157000,0],[1709301158000,0],[1709301159000,0],[1709301160000,0],[1709301161000,0],[1709301162000,0],[1709301163000,0],[1709301164000,0],[1709301165000,0],[1709301166000,0],[1709301167000,0],[1709301168000,0],[1709301169000,0],[1709301170000,0],[1709301171000,0],[1709301172000,0],[1709301173000,0],[1709301174000,0],[1709301175000,0],[1709301176000,0],[1709301177000,0],[1709301178000,0],[1709301179000,0],[1709301180000,0],[1709301181000,0],[1709301182000,0],[1709301183000,0],[1709301184000,0],[1709301185000,0],[1709301186000,0],[1709301187000,0],[1709301188000,0],[1709301189000,0],[1709301190000,0],[1709301191000,0],[1709301192000,0],[1709301193000,0],[1709301194000,0],[1709301195000,0],[1709301196000,0],[1709301197000,0],[1709301198000,0],[1709301199000,0],[1709301200000,0],[1709301201000,0],[1709301202000,0],[1709301203000,0],[1709301204000,0],[1709301205000,0],[1709301206000,0],[1709301207000,0],[1709301208000,0],[1709301209000,0],[1709301210000,0],[1709301211000,0],[1709301212000,0],[1709301213000,0],[1709301214000,0],[1709301215000,0],[1709301216000,0],[1709301217000,0],[1709301218000,0],[1709301219000,0],[1709301220000,0],[1709301221000,0],[1709301222000,0],[1709301223000,0],[1709301224000,0],[1709301225000,0],[1709301226000,0],[1709301227000,0],[1709301228000,0],[1709301229000,0],[1709301230000,0],[1709301231000,0],[1709301232000,0],[1709301233000,0],[1709301234000,0],[1709301235000,0],[1709301236000,0],[1709301237000,0],[1709301238000,0],[1709301239000,0],[1709301240000,0],[1709301241000,0],[1709301242000,0],[1709301243000,0],[1709301244000,0],[1709301245000,0],[1709301246000,0],[1709301247000,0],[1709301248000,0],[1709301249000,0],[1709301250000,0],[1709301251000,0],[1709301252000,0],[1709301253000,0],[1709301254000,0],[1709301255000,0],[1709301256000,0],[1709301257000,0],[1709301258000,0],[1709301259000,0],[1709301260000,0],[1709301261000,0],[1709301262000,0],[1709301263000,0],[1709301264000,0],[1709301265000,0],[1709301266000,0],[1709301267000,0],[1709301268000,0],[1709301269000,0],[1709301270000,0],[1709301271000,0],[1709301272000,0],[1709301273000,0],[1709301274000,0],[1709301275000,0],[1709301276000,0],[1709301277000,0],[1709301278000,0],[1709301279000,0],[1709301280000,0],[1709301281000,0],[1709301282000,0],[1709301283000,0],[1709301284000,0],[1709301285000,0],[1709301286000,0],[1709301287000,0],[1709301288000,0],[1709301289000,0],[1709301290000,0],[1709301291000,0],[1709301292000,0],[1709301293000,0],[1709301294000,0],[1709301295000,0],[1709301296000,0],[1709301297000,0],[1709301298000,0],[1709301299000,0],[1709301300000,0],[1709301301000,0],[1709301302000,0],[1709301303000,0],[1709301304000,0],[1709301305000,0],[1709301306000,0],[1709301307000,0],[1709301308000,0],[1709301309000,0],[1709301310000,0],[1709301311000,0],[1709301312000,0],[1709301313000,0],[1709301314000,0],[1709301315000,0],[1709301316000,0],[1709301317000,0],[1709301318000,0],[1709301319000,0],[1709301320000,0],[1709301321000,0],[1709301322000,0],[1709301323000,0],[1709301324000,0],[1709301325000,0],[1709301326000,0],[1709301327000,0],[1709301328000,0],[1709301329000,0],[1709301330000,0],[1709301331000,0],[1709301332000,0],[1709301333000,0],[1709301334000,0],[1709301335000,0],[1709301336000,0],[1709301337000,0],[1709301338000,0],[1709301339000,0],[1709301340000,0],[1709301341000,0],[1709301342000,0],[1709301343000,0],[1709301344000,0],[1709301345000,0],[1709301346000,0],[1709301347000,0],[1709301348000,0],[1709301349000,0],[1709301350000,0],[1709301351000,0],[1709301352000,0],[1709301353000,0],[1709301354000,0],[1709301355000,0],[1709301356000,0],[1709301357000,0],[1709301358000,0],[1709301359000,0],[1709301360000,1],[1709301361000,1],[1709301362000,1],[1709301363000,1],[1709301364000,1],[1709301365000,1],[1709301366000,2],[1709301367000,1],[1709301368000,2],[1709301369000,2],[1709301370000,1],[1709301371000,2],[1709301372000,2],[1709301373000,2],[1709301374000,2],[1709301375000,2],[1709301376000,2],[1709301377000,2],[1709301378000,3],[1709301379000,2],[1709301380000,3],[1709301381000,2],[1709301382000,3],[1709301383000,2],[1709301384000,3],[1709301385000,3],[1709301386000,3],[1709301387000,3],[1709301388000,3],[1709301389000,3],[1709301390000,3],[1709301391000,4],[1709301392000,3],[1709301393000,3],[1709301394000,4],[1709301395000,3],[1709301396000,4],[1709301397000,4],[1709301398000,4],[1709301399000,4],[1709301400000,4],[1709301401000,4],[1709301402000,4],[1709301403000,4],[1709301404000,4],[1709301405000,4],[1709301406000,5],[1709301407000,4],[1709301408000,5],[1709301409000,5],[1709301410000,4],[1709301411000,5],[1709301412000,5],[1709301413000,5],[1709301414000,5],[1709301415000,5],[1709301416000,5],[1709301417000,5],[1709301418000,6],[1709301419000,5],[1709301420000,6],[1709301421000,5],[1709301422000,6],[1709301423000,5],[1709301424000,6],[1709301425000,6],[1709301426000,6],[1709301427000,6],[1709301428000,6],[1709301429000,6],[1709301430000,6],[1709301431000,10],[1709301432000,14],[1709301433000,14],[1709301434000,15],[1709301435000,14],[1709301436000,15],[1709301437000,15],[1709301438000,15],[1709301439000,15],[1709301440000,15],[1709301441000,15],[1709301442000,15],[1709301443000,15],[1709301444000,15],[1709301445000,15],[1709301446000,16],[1709301447000,15],[1709301448000,16],[1709301449000,16],[1709301450000,15],[1709301451000,16],[1709301452000,16],[1709301453000,16],[1709301454000,16],[1709301455000,16],[1709301456000,16],[1709301457000,16],[1709301458000,17],[1709301459000,16],[1709301460000,17],[1709301461000,16],[1709301462000,17],[1709301463000,16],[1709301464000,17],[1709301465000,17],[1709301466000,17],[1709301467000,17],[1709301468000,17],[1709301469000,17],[1709301470000,17],[1709301471000,18],[1709301472000,17],[1709301473000,17],[1709301474000,18],[1709301475000,17],[1709301476000,18],[1709301477000,18],[1709301478000,18],[1709301479000,18],[1709301480000,18],[1709301481000,18],[1709301482000,18],[1709301483000,18],[1709301484000,18],[1709301485000,18],[1709301486000,18],[1709301487000,18],[1709301488000,18],[1709301489000,18],[1709301490000,18],[1709301491000,15],[1709301492000,10],[1709301493000,10],[1709301494000,10],[1709301495000,10],[1709301496000,10],[1709301497000,10],[1709301498000,10],[1709301499000,10],[1709301500000,10],[1709301501000,10],[1709301502000,10],[1709301503000,10],[1709301504000,10],[1709301505000,10],[1709301506000,10],[1709301507000,10],[1709301508000,10],[1709301509000,10],[1709301510000,10],[1709301511000,10],[1709301512000,10],[1709301513000,14],[1709301514000,16],[1709301515000,16],[1709301516000,16],[1709301517000,16],[1709301518000,16],[1709301519000,16],[1709301520000,16],[1709301521000,16],[1709301522000,16],[1709301523000,16],[1709301524000,16],[1709301525000,16],[1709301526000,16],[1709301527000,16],[1709301528000,16],[1709301529000,16],[1709301530000,16],[1709301531000,16],[1709301532000,16],[1709301533000,16],[1709301534000,16],[1709301535000,16],[1709301536000,16],[1709301537000,16],[1709301538000,16],[1709301539000,16],[1709301540000,16],[1709301541000,16],[1709301542000,16],[1709301543000,16],[1709301544000,16],[1709301545000,16],[1709301546000,16],[1709301547000,16],[1709301548000,16],[1709301549000,16],[1709301550000,16],[1709301551000,16],[1709301552000,16],[1709301553000,16],[1709301554000,16],[1709301555000,16],[1709301556000,16],[1709301557000,16],[1709301558000,16],[1709301559000,16],[1709301560000,16],[1709301561000,16],[1709301562000,16],[1709301563000,16],[1709301564000,16],[1709301565000,16],[1709301566000,16],[1709301567000,16],[1709301568000,16],[1709301569000,16],[1709301570000,16],[1709301571000,16],[1709301572000,16],[1709301573000,12],[1709301574000,10],[1709301575000,10],[1709301576000,10],[1709301577000,10],[1709301578000,10],[1709301579000,10],[1709301580000,10],[1709301581000,10],[1709301582000,10],[1709301583000,10],[1709301584000,10],[1709301585000,10],[1709301586000,10],[1709301587000,10],[1709301588000,10],[1709301589000,10],[1709301590000,10],[1709301591000,10],[1709301592000,10],[1709301593000,10],[1709301594000,10],[1709301595000,10],[1709301596000,10],[1709301597000,10],[1709301598000,10],[1709301599000,10],[1709301600000,9],[1709301601000,0],[1709301602000,0],[1709301603000,0],[1709301604000,0],[1709301605000,0],[1709301606000,0],[1709301607000,0],[1709301608000,0],[1709301609000,0],[1709301610000,0],[1709301611000,0],[1709301612000,0],[1709301613000,0],[1709301614000,0],[1709301615000,0],[1709301616000,0],[1709301617000,0],[1709301618000,0],[1709301619000,0],[1709301620000,0],[1709301621000,0],[1709301622000,0],[1709301623000,0],[1709301624000,0],[1709301625000,0],[1709301626000,0],[1709301627000,0],[1709301628000,0],[1709301629000,0],[1709301630000,0],[1709301631000,0],[1709301632000,0],[1709301633000,0],[1709301634000,0],[1709301635000,0],[1709301636000,0],[1709301637000,0],[1709301638000,0],[1709301639000,0],[1709301640000,0],[1709301641000,0],[1709301642000,0],[1709301643000,0],[1709301644000,0],[1709301645000,0],[1709301646000,0],[1709301647000,0],[1709301648000,0],[1709301649000,0],[1709301650000,0],[1709301651000,0],[1709301652000,0],[1709301653000,0],[1709301654000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FFDD00',
name: 'validação HTTP 404',
data: [
[1709301116000,0],[1709301117000,0],[1709301118000,0],[1709301119000,0],[1709301120000,0],[1709301121000,0],[1709301122000,0],[1709301123000,0],[1709301124000,0],[1709301125000,0],[1709301126000,0],[1709301127000,0],[1709301128000,0],[1709301129000,0],[1709301130000,0],[1709301131000,0],[1709301132000,0],[1709301133000,0],[1709301134000,0],[1709301135000,0],[1709301136000,0],[1709301137000,0],[1709301138000,0],[1709301139000,0],[1709301140000,0],[1709301141000,0],[1709301142000,0],[1709301143000,0],[1709301144000,0],[1709301145000,0],[1709301146000,0],[1709301147000,0],[1709301148000,0],[1709301149000,0],[1709301150000,0],[1709301151000,0],[1709301152000,0],[1709301153000,0],[1709301154000,0],[1709301155000,0],[1709301156000,0],[1709301157000,0],[1709301158000,0],[1709301159000,0],[1709301160000,0],[1709301161000,0],[1709301162000,0],[1709301163000,0],[1709301164000,0],[1709301165000,0],[1709301166000,0],[1709301167000,0],[1709301168000,0],[1709301169000,0],[1709301170000,0],[1709301171000,0],[1709301172000,0],[1709301173000,0],[1709301174000,0],[1709301175000,0],[1709301176000,0],[1709301177000,0],[1709301178000,0],[1709301179000,0],[1709301180000,0],[1709301181000,0],[1709301182000,0],[1709301183000,0],[1709301184000,0],[1709301185000,0],[1709301186000,0],[1709301187000,0],[1709301188000,0],[1709301189000,0],[1709301190000,0],[1709301191000,0],[1709301192000,0],[1709301193000,0],[1709301194000,0],[1709301195000,0],[1709301196000,0],[1709301197000,0],[1709301198000,0],[1709301199000,0],[1709301200000,0],[1709301201000,0],[1709301202000,0],[1709301203000,0],[1709301204000,0],[1709301205000,0],[1709301206000,0],[1709301207000,0],[1709301208000,0],[1709301209000,0],[1709301210000,0],[1709301211000,0],[1709301212000,0],[1709301213000,0],[1709301214000,0],[1709301215000,0],[1709301216000,0],[1709301217000,0],[1709301218000,0],[1709301219000,0],[1709301220000,0],[1709301221000,0],[1709301222000,0],[1709301223000,0],[1709301224000,0],[1709301225000,0],[1709301226000,0],[1709301227000,0],[1709301228000,0],[1709301229000,0],[1709301230000,0],[1709301231000,0],[1709301232000,0],[1709301233000,0],[1709301234000,0],[1709301235000,0],[1709301236000,0],[1709301237000,0],[1709301238000,0],[1709301239000,0],[1709301240000,0],[1709301241000,0],[1709301242000,0],[1709301243000,0],[1709301244000,0],[1709301245000,0],[1709301246000,0],[1709301247000,0],[1709301248000,0],[1709301249000,0],[1709301250000,0],[1709301251000,0],[1709301252000,0],[1709301253000,0],[1709301254000,0],[1709301255000,0],[1709301256000,0],[1709301257000,0],[1709301258000,0],[1709301259000,0],[1709301260000,0],[1709301261000,0],[1709301262000,0],[1709301263000,0],[1709301264000,0],[1709301265000,0],[1709301266000,0],[1709301267000,0],[1709301268000,0],[1709301269000,0],[1709301270000,0],[1709301271000,0],[1709301272000,0],[1709301273000,0],[1709301274000,0],[1709301275000,0],[1709301276000,0],[1709301277000,0],[1709301278000,0],[1709301279000,0],[1709301280000,0],[1709301281000,0],[1709301282000,0],[1709301283000,0],[1709301284000,0],[1709301285000,0],[1709301286000,0],[1709301287000,0],[1709301288000,0],[1709301289000,0],[1709301290000,0],[1709301291000,0],[1709301292000,0],[1709301293000,0],[1709301294000,0],[1709301295000,0],[1709301296000,0],[1709301297000,0],[1709301298000,0],[1709301299000,1],[1709301300000,1],[1709301301000,1],[1709301302000,1],[1709301303000,1],[1709301304000,1],[1709301305000,1],[1709301306000,1],[1709301307000,1],[1709301308000,1],[1709301309000,1],[1709301310000,1],[1709301311000,1],[1709301312000,1],[1709301313000,1],[1709301314000,1],[1709301315000,1],[1709301316000,1],[1709301317000,1],[1709301318000,1],[1709301319000,1],[1709301320000,1],[1709301321000,1],[1709301322000,1],[1709301323000,1],[1709301324000,1],[1709301325000,1],[1709301326000,1],[1709301327000,1],[1709301328000,1],[1709301329000,1],[1709301330000,1],[1709301331000,1],[1709301332000,1],[1709301333000,1],[1709301334000,1],[1709301335000,1],[1709301336000,1],[1709301337000,1],[1709301338000,1],[1709301339000,1],[1709301340000,1],[1709301341000,1],[1709301342000,1],[1709301343000,1],[1709301344000,1],[1709301345000,1],[1709301346000,1],[1709301347000,1],[1709301348000,1],[1709301349000,1],[1709301350000,1],[1709301351000,1],[1709301352000,1],[1709301353000,1],[1709301354000,1],[1709301355000,1],[1709301356000,1],[1709301357000,1],[1709301358000,1],[1709301359000,1],[1709301360000,0],[1709301361000,0],[1709301362000,0],[1709301363000,0],[1709301364000,0],[1709301365000,0],[1709301366000,0],[1709301367000,0],[1709301368000,0],[1709301369000,0],[1709301370000,0],[1709301371000,0],[1709301372000,0],[1709301373000,0],[1709301374000,0],[1709301375000,0],[1709301376000,0],[1709301377000,0],[1709301378000,0],[1709301379000,0],[1709301380000,0],[1709301381000,0],[1709301382000,0],[1709301383000,0],[1709301384000,0],[1709301385000,0],[1709301386000,0],[1709301387000,0],[1709301388000,0],[1709301389000,0],[1709301390000,0],[1709301391000,0],[1709301392000,0],[1709301393000,0],[1709301394000,0],[1709301395000,0],[1709301396000,0],[1709301397000,0],[1709301398000,0],[1709301399000,0],[1709301400000,0],[1709301401000,0],[1709301402000,0],[1709301403000,0],[1709301404000,0],[1709301405000,0],[1709301406000,0],[1709301407000,0],[1709301408000,0],[1709301409000,0],[1709301410000,0],[1709301411000,0],[1709301412000,0],[1709301413000,0],[1709301414000,0],[1709301415000,0],[1709301416000,0],[1709301417000,0],[1709301418000,0],[1709301419000,0],[1709301420000,0],[1709301421000,0],[1709301422000,0],[1709301423000,0],[1709301424000,0],[1709301425000,0],[1709301426000,0],[1709301427000,0],[1709301428000,0],[1709301429000,0],[1709301430000,0],[1709301431000,0],[1709301432000,0],[1709301433000,0],[1709301434000,0],[1709301435000,0],[1709301436000,0],[1709301437000,0],[1709301438000,0],[1709301439000,0],[1709301440000,0],[1709301441000,0],[1709301442000,0],[1709301443000,0],[1709301444000,0],[1709301445000,0],[1709301446000,0],[1709301447000,0],[1709301448000,0],[1709301449000,0],[1709301450000,0],[1709301451000,0],[1709301452000,0],[1709301453000,0],[1709301454000,0],[1709301455000,0],[1709301456000,0],[1709301457000,0],[1709301458000,0],[1709301459000,0],[1709301460000,0],[1709301461000,0],[1709301462000,0],[1709301463000,0],[1709301464000,0],[1709301465000,0],[1709301466000,0],[1709301467000,0],[1709301468000,0],[1709301469000,0],[1709301470000,0],[1709301471000,0],[1709301472000,0],[1709301473000,0],[1709301474000,0],[1709301475000,0],[1709301476000,0],[1709301477000,0],[1709301478000,0],[1709301479000,0],[1709301480000,0],[1709301481000,0],[1709301482000,0],[1709301483000,0],[1709301484000,0],[1709301485000,0],[1709301486000,0],[1709301487000,0],[1709301488000,0],[1709301489000,0],[1709301490000,0],[1709301491000,0],[1709301492000,0],[1709301493000,0],[1709301494000,0],[1709301495000,0],[1709301496000,0],[1709301497000,0],[1709301498000,0],[1709301499000,0],[1709301500000,0],[1709301501000,0],[1709301502000,0],[1709301503000,0],[1709301504000,0],[1709301505000,0],[1709301506000,0],[1709301507000,0],[1709301508000,0],[1709301509000,0],[1709301510000,0],[1709301511000,0],[1709301512000,0],[1709301513000,0],[1709301514000,0],[1709301515000,0],[1709301516000,0],[1709301517000,0],[1709301518000,0],[1709301519000,0],[1709301520000,0],[1709301521000,0],[1709301522000,0],[1709301523000,0],[1709301524000,0],[1709301525000,0],[1709301526000,0],[1709301527000,0],[1709301528000,0],[1709301529000,0],[1709301530000,0],[1709301531000,0],[1709301532000,0],[1709301533000,0],[1709301534000,0],[1709301535000,0],[1709301536000,0],[1709301537000,0],[1709301538000,0],[1709301539000,0],[1709301540000,0],[1709301541000,0],[1709301542000,0],[1709301543000,0],[1709301544000,0],[1709301545000,0],[1709301546000,0],[1709301547000,0],[1709301548000,0],[1709301549000,0],[1709301550000,0],[1709301551000,0],[1709301552000,0],[1709301553000,0],[1709301554000,0],[1709301555000,0],[1709301556000,0],[1709301557000,0],[1709301558000,0],[1709301559000,0],[1709301560000,0],[1709301561000,0],[1709301562000,0],[1709301563000,0],[1709301564000,0],[1709301565000,0],[1709301566000,0],[1709301567000,0],[1709301568000,0],[1709301569000,0],[1709301570000,0],[1709301571000,0],[1709301572000,0],[1709301573000,0],[1709301574000,0],[1709301575000,0],[1709301576000,0],[1709301577000,0],[1709301578000,0],[1709301579000,0],[1709301580000,0],[1709301581000,0],[1709301582000,0],[1709301583000,0],[1709301584000,0],[1709301585000,0],[1709301586000,0],[1709301587000,0],[1709301588000,0],[1709301589000,0],[1709301590000,0],[1709301591000,0],[1709301592000,0],[1709301593000,0],[1709301594000,0],[1709301595000,0],[1709301596000,0],[1709301597000,0],[1709301598000,0],[1709301599000,0],[1709301600000,0],[1709301601000,0],[1709301602000,0],[1709301603000,0],[1709301604000,0],[1709301605000,0],[1709301606000,0],[1709301607000,0],[1709301608000,0],[1709301609000,0],[1709301610000,0],[1709301611000,0],[1709301612000,0],[1709301613000,0],[1709301614000,0],[1709301615000,0],[1709301616000,0],[1709301617000,0],[1709301618000,0],[1709301619000,0],[1709301620000,0],[1709301621000,0],[1709301622000,0],[1709301623000,0],[1709301624000,0],[1709301625000,0],[1709301626000,0],[1709301627000,0],[1709301628000,0],[1709301629000,0],[1709301630000,0],[1709301631000,0],[1709301632000,0],[1709301633000,0],[1709301634000,0],[1709301635000,0],[1709301636000,0],[1709301637000,0],[1709301638000,0],[1709301639000,0],[1709301640000,0],[1709301641000,0],[1709301642000,0],[1709301643000,0],[1709301644000,0],[1709301645000,0],[1709301646000,0],[1709301647000,0],[1709301648000,0],[1709301649000,0],[1709301650000,0],[1709301651000,0],[1709301652000,0],[1709301653000,0],[1709301654000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00D5FF',
name: 'validações',
data: [
[1709301116000,0],[1709301117000,0],[1709301118000,0],[1709301119000,0],[1709301120000,0],[1709301121000,0],[1709301122000,0],[1709301123000,0],[1709301124000,0],[1709301125000,0],[1709301126000,0],[1709301127000,0],[1709301128000,0],[1709301129000,0],[1709301130000,0],[1709301131000,0],[1709301132000,0],[1709301133000,0],[1709301134000,0],[1709301135000,0],[1709301136000,0],[1709301137000,0],[1709301138000,0],[1709301139000,0],[1709301140000,0],[1709301141000,0],[1709301142000,0],[1709301143000,0],[1709301144000,0],[1709301145000,0],[1709301146000,0],[1709301147000,0],[1709301148000,0],[1709301149000,0],[1709301150000,0],[1709301151000,0],[1709301152000,0],[1709301153000,0],[1709301154000,0],[1709301155000,0],[1709301156000,0],[1709301157000,0],[1709301158000,0],[1709301159000,0],[1709301160000,0],[1709301161000,0],[1709301162000,0],[1709301163000,0],[1709301164000,0],[1709301165000,0],[1709301166000,0],[1709301167000,0],[1709301168000,0],[1709301169000,0],[1709301170000,0],[1709301171000,0],[1709301172000,0],[1709301173000,0],[1709301174000,0],[1709301175000,0],[1709301176000,0],[1709301177000,0],[1709301178000,0],[1709301179000,0],[1709301180000,0],[1709301181000,0],[1709301182000,0],[1709301183000,0],[1709301184000,0],[1709301185000,0],[1709301186000,0],[1709301187000,0],[1709301188000,0],[1709301189000,0],[1709301190000,0],[1709301191000,0],[1709301192000,0],[1709301193000,0],[1709301194000,0],[1709301195000,0],[1709301196000,0],[1709301197000,0],[1709301198000,0],[1709301199000,0],[1709301200000,0],[1709301201000,0],[1709301202000,0],[1709301203000,0],[1709301204000,0],[1709301205000,0],[1709301206000,0],[1709301207000,0],[1709301208000,0],[1709301209000,0],[1709301210000,0],[1709301211000,0],[1709301212000,0],[1709301213000,0],[1709301214000,0],[1709301215000,0],[1709301216000,0],[1709301217000,0],[1709301218000,0],[1709301219000,0],[1709301220000,0],[1709301221000,0],[1709301222000,0],[1709301223000,0],[1709301224000,0],[1709301225000,0],[1709301226000,0],[1709301227000,0],[1709301228000,0],[1709301229000,0],[1709301230000,0],[1709301231000,0],[1709301232000,0],[1709301233000,0],[1709301234000,0],[1709301235000,0],[1709301236000,0],[1709301237000,0],[1709301238000,0],[1709301239000,0],[1709301240000,0],[1709301241000,0],[1709301242000,0],[1709301243000,0],[1709301244000,0],[1709301245000,0],[1709301246000,0],[1709301247000,0],[1709301248000,0],[1709301249000,0],[1709301250000,0],[1709301251000,0],[1709301252000,0],[1709301253000,0],[1709301254000,0],[1709301255000,0],[1709301256000,0],[1709301257000,0],[1709301258000,0],[1709301259000,0],[1709301260000,0],[1709301261000,0],[1709301262000,0],[1709301263000,0],[1709301264000,0],[1709301265000,0],[1709301266000,0],[1709301267000,0],[1709301268000,0],[1709301269000,0],[1709301270000,0],[1709301271000,0],[1709301272000,0],[1709301273000,0],[1709301274000,0],[1709301275000,0],[1709301276000,0],[1709301277000,0],[1709301278000,0],[1709301279000,0],[1709301280000,0],[1709301281000,0],[1709301282000,0],[1709301283000,0],[1709301284000,0],[1709301285000,0],[1709301286000,0],[1709301287000,0],[1709301288000,0],[1709301289000,0],[1709301290000,0],[1709301291000,0],[1709301292000,0],[1709301293000,0],[1709301294000,0],[1709301295000,0],[1709301296000,0],[1709301297000,0],[1709301298000,0],[1709301299000,5],[1709301300000,5],[1709301301000,5],[1709301302000,5],[1709301303000,5],[1709301304000,5],[1709301305000,5],[1709301306000,5],[1709301307000,5],[1709301308000,5],[1709301309000,5],[1709301310000,5],[1709301311000,5],[1709301312000,5],[1709301313000,5],[1709301314000,5],[1709301315000,5],[1709301316000,5],[1709301317000,5],[1709301318000,5],[1709301319000,5],[1709301320000,5],[1709301321000,5],[1709301322000,5],[1709301323000,5],[1709301324000,5],[1709301325000,5],[1709301326000,5],[1709301327000,5],[1709301328000,5],[1709301329000,5],[1709301330000,5],[1709301331000,5],[1709301332000,5],[1709301333000,5],[1709301334000,5],[1709301335000,5],[1709301336000,5],[1709301337000,5],[1709301338000,5],[1709301339000,5],[1709301340000,5],[1709301341000,5],[1709301342000,5],[1709301343000,5],[1709301344000,5],[1709301345000,5],[1709301346000,5],[1709301347000,5],[1709301348000,5],[1709301349000,5],[1709301350000,5],[1709301351000,5],[1709301352000,5],[1709301353000,5],[1709301354000,5],[1709301355000,5],[1709301356000,5],[1709301357000,5],[1709301358000,5],[1709301359000,5],[1709301360000,5],[1709301361000,0],[1709301362000,0],[1709301363000,0],[1709301364000,0],[1709301365000,0],[1709301366000,0],[1709301367000,0],[1709301368000,0],[1709301369000,0],[1709301370000,0],[1709301371000,0],[1709301372000,0],[1709301373000,0],[1709301374000,0],[1709301375000,0],[1709301376000,0],[1709301377000,0],[1709301378000,0],[1709301379000,0],[1709301380000,0],[1709301381000,0],[1709301382000,0],[1709301383000,0],[1709301384000,0],[1709301385000,0],[1709301386000,0],[1709301387000,0],[1709301388000,0],[1709301389000,0],[1709301390000,0],[1709301391000,0],[1709301392000,0],[1709301393000,0],[1709301394000,0],[1709301395000,0],[1709301396000,0],[1709301397000,0],[1709301398000,0],[1709301399000,0],[1709301400000,0],[1709301401000,0],[1709301402000,0],[1709301403000,0],[1709301404000,0],[1709301405000,0],[1709301406000,0],[1709301407000,0],[1709301408000,0],[1709301409000,0],[1709301410000,0],[1709301411000,0],[1709301412000,0],[1709301413000,0],[1709301414000,0],[1709301415000,0],[1709301416000,0],[1709301417000,0],[1709301418000,0],[1709301419000,0],[1709301420000,0],[1709301421000,0],[1709301422000,0],[1709301423000,0],[1709301424000,0],[1709301425000,0],[1709301426000,0],[1709301427000,0],[1709301428000,0],[1709301429000,0],[1709301430000,0],[1709301431000,0],[1709301432000,0],[1709301433000,0],[1709301434000,0],[1709301435000,0],[1709301436000,0],[1709301437000,0],[1709301438000,0],[1709301439000,0],[1709301440000,0],[1709301441000,0],[1709301442000,0],[1709301443000,0],[1709301444000,0],[1709301445000,0],[1709301446000,0],[1709301447000,0],[1709301448000,0],[1709301449000,0],[1709301450000,0],[1709301451000,0],[1709301452000,0],[1709301453000,0],[1709301454000,0],[1709301455000,0],[1709301456000,0],[1709301457000,0],[1709301458000,0],[1709301459000,0],[1709301460000,0],[1709301461000,0],[1709301462000,0],[1709301463000,0],[1709301464000,0],[1709301465000,0],[1709301466000,0],[1709301467000,0],[1709301468000,0],[1709301469000,0],[1709301470000,0],[1709301471000,0],[1709301472000,0],[1709301473000,0],[1709301474000,0],[1709301475000,0],[1709301476000,0],[1709301477000,0],[1709301478000,0],[1709301479000,0],[1709301480000,0],[1709301481000,0],[1709301482000,0],[1709301483000,0],[1709301484000,0],[1709301485000,0],[1709301486000,0],[1709301487000,0],[1709301488000,0],[1709301489000,0],[1709301490000,0],[1709301491000,0],[1709301492000,0],[1709301493000,0],[1709301494000,0],[1709301495000,0],[1709301496000,0],[1709301497000,0],[1709301498000,0],[1709301499000,0],[1709301500000,0],[1709301501000,0],[1709301502000,0],[1709301503000,0],[1709301504000,0],[1709301505000,0],[1709301506000,0],[1709301507000,0],[1709301508000,0],[1709301509000,0],[1709301510000,0],[1709301511000,0],[1709301512000,0],[1709301513000,0],[1709301514000,0],[1709301515000,0],[1709301516000,0],[1709301517000,0],[1709301518000,0],[1709301519000,0],[1709301520000,0],[1709301521000,0],[1709301522000,0],[1709301523000,0],[1709301524000,0],[1709301525000,0],[1709301526000,0],[1709301527000,0],[1709301528000,0],[1709301529000,0],[1709301530000,0],[1709301531000,0],[1709301532000,0],[1709301533000,0],[1709301534000,0],[1709301535000,0],[1709301536000,0],[1709301537000,0],[1709301538000,0],[1709301539000,0],[1709301540000,0],[1709301541000,0],[1709301542000,0],[1709301543000,0],[1709301544000,0],[1709301545000,0],[1709301546000,0],[1709301547000,0],[1709301548000,0],[1709301549000,0],[1709301550000,0],[1709301551000,0],[1709301552000,0],[1709301553000,0],[1709301554000,0],[1709301555000,0],[1709301556000,0],[1709301557000,0],[1709301558000,0],[1709301559000,0],[1709301560000,0],[1709301561000,0],[1709301562000,0],[1709301563000,0],[1709301564000,0],[1709301565000,0],[1709301566000,0],[1709301567000,0],[1709301568000,0],[1709301569000,0],[1709301570000,0],[1709301571000,0],[1709301572000,0],[1709301573000,0],[1709301574000,0],[1709301575000,0],[1709301576000,0],[1709301577000,0],[1709301578000,0],[1709301579000,0],[1709301580000,0],[1709301581000,0],[1709301582000,0],[1709301583000,0],[1709301584000,0],[1709301585000,0],[1709301586000,0],[1709301587000,0],[1709301588000,0],[1709301589000,0],[1709301590000,0],[1709301591000,0],[1709301592000,0],[1709301593000,0],[1709301594000,0],[1709301595000,0],[1709301596000,0],[1709301597000,0],[1709301598000,0],[1709301599000,0],[1709301600000,0],[1709301601000,0],[1709301602000,0],[1709301603000,0],[1709301604000,0],[1709301605000,0],[1709301606000,0],[1709301607000,0],[1709301608000,0],[1709301609000,0],[1709301610000,0],[1709301611000,0],[1709301612000,0],[1709301613000,0],[1709301614000,0],[1709301615000,0],[1709301616000,0],[1709301617000,0],[1709301618000,0],[1709301619000,0],[1709301620000,0],[1709301621000,0],[1709301622000,0],[1709301623000,0],[1709301624000,0],[1709301625000,0],[1709301626000,0],[1709301627000,0],[1709301628000,0],[1709301629000,0],[1709301630000,0],[1709301631000,0],[1709301632000,0],[1709301633000,0],[1709301634000,0],[1709301635000,0],[1709301636000,0],[1709301637000,0],[1709301638000,0],[1709301639000,0],[1709301640000,0],[1709301641000,0],[1709301642000,0],[1709301643000,0],[1709301644000,0],[1709301645000,0],[1709301646000,0],[1709301647000,0],[1709301648000,0],[1709301649000,0],[1709301650000,0],[1709301651000,0],[1709301652000,0],[1709301653000,0],[1709301654000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00FF00',
name: 'validação concorrência saldo - 0',
data: [
[1709301116000,0],[1709301117000,0],[1709301118000,0],[1709301119000,0],[1709301120000,0],[1709301121000,0],[1709301122000,0],[1709301123000,0],[1709301124000,0],[1709301125000,0],[1709301126000,0],[1709301127000,0],[1709301128000,0],[1709301129000,0],[1709301130000,0],[1709301131000,0],[1709301132000,0],[1709301133000,0],[1709301134000,0],[1709301135000,0],[1709301136000,0],[1709301137000,0],[1709301138000,0],[1709301139000,0],[1709301140000,0],[1709301141000,0],[1709301142000,0],[1709301143000,0],[1709301144000,0],[1709301145000,0],[1709301146000,0],[1709301147000,0],[1709301148000,0],[1709301149000,0],[1709301150000,0],[1709301151000,0],[1709301152000,0],[1709301153000,0],[1709301154000,0],[1709301155000,0],[1709301156000,0],[1709301157000,0],[1709301158000,0],[1709301159000,0],[1709301160000,0],[1709301161000,0],[1709301162000,0],[1709301163000,0],[1709301164000,0],[1709301165000,0],[1709301166000,0],[1709301167000,0],[1709301168000,0],[1709301169000,0],[1709301170000,0],[1709301171000,0],[1709301172000,0],[1709301173000,0],[1709301174000,0],[1709301175000,0],[1709301176000,0],[1709301177000,0],[1709301178000,0],[1709301179000,0],[1709301180000,0],[1709301181000,0],[1709301182000,0],[1709301183000,0],[1709301184000,0],[1709301185000,0],[1709301186000,0],[1709301187000,0],[1709301188000,0],[1709301189000,0],[1709301190000,0],[1709301191000,0],[1709301192000,0],[1709301193000,0],[1709301194000,0],[1709301195000,0],[1709301196000,0],[1709301197000,0],[1709301198000,0],[1709301199000,0],[1709301200000,0],[1709301201000,0],[1709301202000,0],[1709301203000,0],[1709301204000,0],[1709301205000,0],[1709301206000,0],[1709301207000,0],[1709301208000,0],[1709301209000,0],[1709301210000,0],[1709301211000,0],[1709301212000,0],[1709301213000,0],[1709301214000,0],[1709301215000,0],[1709301216000,0],[1709301217000,0],[1709301218000,0],[1709301219000,0],[1709301220000,0],[1709301221000,0],[1709301222000,0],[1709301223000,0],[1709301224000,0],[1709301225000,0],[1709301226000,0],[1709301227000,0],[1709301228000,0],[1709301229000,0],[1709301230000,0],[1709301231000,0],[1709301232000,0],[1709301233000,0],[1709301234000,0],[1709301235000,0],[1709301236000,0],[1709301237000,0],[1709301238000,1],[1709301239000,1],[1709301240000,1],[1709301241000,1],[1709301242000,1],[1709301243000,1],[1709301244000,1],[1709301245000,1],[1709301246000,1],[1709301247000,1],[1709301248000,1],[1709301249000,1],[1709301250000,1],[1709301251000,1],[1709301252000,1],[1709301253000,1],[1709301254000,1],[1709301255000,1],[1709301256000,1],[1709301257000,1],[1709301258000,1],[1709301259000,1],[1709301260000,1],[1709301261000,1],[1709301262000,1],[1709301263000,1],[1709301264000,1],[1709301265000,1],[1709301266000,1],[1709301267000,1],[1709301268000,1],[1709301269000,1],[1709301270000,1],[1709301271000,1],[1709301272000,1],[1709301273000,1],[1709301274000,1],[1709301275000,1],[1709301276000,1],[1709301277000,1],[1709301278000,1],[1709301279000,1],[1709301280000,1],[1709301281000,1],[1709301282000,1],[1709301283000,1],[1709301284000,1],[1709301285000,1],[1709301286000,1],[1709301287000,1],[1709301288000,1],[1709301289000,1],[1709301290000,1],[1709301291000,1],[1709301292000,1],[1709301293000,1],[1709301294000,1],[1709301295000,1],[1709301296000,1],[1709301297000,1],[1709301298000,1],[1709301299000,0],[1709301300000,0],[1709301301000,0],[1709301302000,0],[1709301303000,0],[1709301304000,0],[1709301305000,0],[1709301306000,0],[1709301307000,0],[1709301308000,0],[1709301309000,0],[1709301310000,0],[1709301311000,0],[1709301312000,0],[1709301313000,0],[1709301314000,0],[1709301315000,0],[1709301316000,0],[1709301317000,0],[1709301318000,0],[1709301319000,0],[1709301320000,0],[1709301321000,0],[1709301322000,0],[1709301323000,0],[1709301324000,0],[1709301325000,0],[1709301326000,0],[1709301327000,0],[1709301328000,0],[1709301329000,0],[1709301330000,0],[1709301331000,0],[1709301332000,0],[1709301333000,0],[1709301334000,0],[1709301335000,0],[1709301336000,0],[1709301337000,0],[1709301338000,0],[1709301339000,0],[1709301340000,0],[1709301341000,0],[1709301342000,0],[1709301343000,0],[1709301344000,0],[1709301345000,0],[1709301346000,0],[1709301347000,0],[1709301348000,0],[1709301349000,0],[1709301350000,0],[1709301351000,0],[1709301352000,0],[1709301353000,0],[1709301354000,0],[1709301355000,0],[1709301356000,0],[1709301357000,0],[1709301358000,0],[1709301359000,0],[1709301360000,0],[1709301361000,0],[1709301362000,0],[1709301363000,0],[1709301364000,0],[1709301365000,0],[1709301366000,0],[1709301367000,0],[1709301368000,0],[1709301369000,0],[1709301370000,0],[1709301371000,0],[1709301372000,0],[1709301373000,0],[1709301374000,0],[1709301375000,0],[1709301376000,0],[1709301377000,0],[1709301378000,0],[1709301379000,0],[1709301380000,0],[1709301381000,0],[1709301382000,0],[1709301383000,0],[1709301384000,0],[1709301385000,0],[1709301386000,0],[1709301387000,0],[1709301388000,0],[1709301389000,0],[1709301390000,0],[1709301391000,0],[1709301392000,0],[1709301393000,0],[1709301394000,0],[1709301395000,0],[1709301396000,0],[1709301397000,0],[1709301398000,0],[1709301399000,0],[1709301400000,0],[1709301401000,0],[1709301402000,0],[1709301403000,0],[1709301404000,0],[1709301405000,0],[1709301406000,0],[1709301407000,0],[1709301408000,0],[1709301409000,0],[1709301410000,0],[1709301411000,0],[1709301412000,0],[1709301413000,0],[1709301414000,0],[1709301415000,0],[1709301416000,0],[1709301417000,0],[1709301418000,0],[1709301419000,0],[1709301420000,0],[1709301421000,0],[1709301422000,0],[1709301423000,0],[1709301424000,0],[1709301425000,0],[1709301426000,0],[1709301427000,0],[1709301428000,0],[1709301429000,0],[1709301430000,0],[1709301431000,0],[1709301432000,0],[1709301433000,0],[1709301434000,0],[1709301435000,0],[1709301436000,0],[1709301437000,0],[1709301438000,0],[1709301439000,0],[1709301440000,0],[1709301441000,0],[1709301442000,0],[1709301443000,0],[1709301444000,0],[1709301445000,0],[1709301446000,0],[1709301447000,0],[1709301448000,0],[1709301449000,0],[1709301450000,0],[1709301451000,0],[1709301452000,0],[1709301453000,0],[1709301454000,0],[1709301455000,0],[1709301456000,0],[1709301457000,0],[1709301458000,0],[1709301459000,0],[1709301460000,0],[1709301461000,0],[1709301462000,0],[1709301463000,0],[1709301464000,0],[1709301465000,0],[1709301466000,0],[1709301467000,0],[1709301468000,0],[1709301469000,0],[1709301470000,0],[1709301471000,0],[1709301472000,0],[1709301473000,0],[1709301474000,0],[1709301475000,0],[1709301476000,0],[1709301477000,0],[1709301478000,0],[1709301479000,0],[1709301480000,0],[1709301481000,0],[1709301482000,0],[1709301483000,0],[1709301484000,0],[1709301485000,0],[1709301486000,0],[1709301487000,0],[1709301488000,0],[1709301489000,0],[1709301490000,0],[1709301491000,0],[1709301492000,0],[1709301493000,0],[1709301494000,0],[1709301495000,0],[1709301496000,0],[1709301497000,0],[1709301498000,0],[1709301499000,0],[1709301500000,0],[1709301501000,0],[1709301502000,0],[1709301503000,0],[1709301504000,0],[1709301505000,0],[1709301506000,0],[1709301507000,0],[1709301508000,0],[1709301509000,0],[1709301510000,0],[1709301511000,0],[1709301512000,0],[1709301513000,0],[1709301514000,0],[1709301515000,0],[1709301516000,0],[1709301517000,0],[1709301518000,0],[1709301519000,0],[1709301520000,0],[1709301521000,0],[1709301522000,0],[1709301523000,0],[1709301524000,0],[1709301525000,0],[1709301526000,0],[1709301527000,0],[1709301528000,0],[1709301529000,0],[1709301530000,0],[1709301531000,0],[1709301532000,0],[1709301533000,0],[1709301534000,0],[1709301535000,0],[1709301536000,0],[1709301537000,0],[1709301538000,0],[1709301539000,0],[1709301540000,0],[1709301541000,0],[1709301542000,0],[1709301543000,0],[1709301544000,0],[1709301545000,0],[1709301546000,0],[1709301547000,0],[1709301548000,0],[1709301549000,0],[1709301550000,0],[1709301551000,0],[1709301552000,0],[1709301553000,0],[1709301554000,0],[1709301555000,0],[1709301556000,0],[1709301557000,0],[1709301558000,0],[1709301559000,0],[1709301560000,0],[1709301561000,0],[1709301562000,0],[1709301563000,0],[1709301564000,0],[1709301565000,0],[1709301566000,0],[1709301567000,0],[1709301568000,0],[1709301569000,0],[1709301570000,0],[1709301571000,0],[1709301572000,0],[1709301573000,0],[1709301574000,0],[1709301575000,0],[1709301576000,0],[1709301577000,0],[1709301578000,0],[1709301579000,0],[1709301580000,0],[1709301581000,0],[1709301582000,0],[1709301583000,0],[1709301584000,0],[1709301585000,0],[1709301586000,0],[1709301587000,0],[1709301588000,0],[1709301589000,0],[1709301590000,0],[1709301591000,0],[1709301592000,0],[1709301593000,0],[1709301594000,0],[1709301595000,0],[1709301596000,0],[1709301597000,0],[1709301598000,0],[1709301599000,0],[1709301600000,0],[1709301601000,0],[1709301602000,0],[1709301603000,0],[1709301604000,0],[1709301605000,0],[1709301606000,0],[1709301607000,0],[1709301608000,0],[1709301609000,0],[1709301610000,0],[1709301611000,0],[1709301612000,0],[1709301613000,0],[1709301614000,0],[1709301615000,0],[1709301616000,0],[1709301617000,0],[1709301618000,0],[1709301619000,0],[1709301620000,0],[1709301621000,0],[1709301622000,0],[1709301623000,0],[1709301624000,0],[1709301625000,0],[1709301626000,0],[1709301627000,0],[1709301628000,0],[1709301629000,0],[1709301630000,0],[1709301631000,0],[1709301632000,0],[1709301633000,0],[1709301634000,0],[1709301635000,0],[1709301636000,0],[1709301637000,0],[1709301638000,0],[1709301639000,0],[1709301640000,0],[1709301641000,0],[1709301642000,0],[1709301643000,0],[1709301644000,0],[1709301645000,0],[1709301646000,0],[1709301647000,0],[1709301648000,0],[1709301649000,0],[1709301650000,0],[1709301651000,0],[1709301652000,0],[1709301653000,0],[1709301654000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#9D00FF',
name: 'validação concorrência transações - c',
data: [
[1709301116000,0],[1709301117000,0],[1709301118000,0],[1709301119000,0],[1709301120000,0],[1709301121000,0],[1709301122000,0],[1709301123000,0],[1709301124000,0],[1709301125000,0],[1709301126000,0],[1709301127000,0],[1709301128000,0],[1709301129000,0],[1709301130000,0],[1709301131000,0],[1709301132000,0],[1709301133000,0],[1709301134000,0],[1709301135000,0],[1709301136000,0],[1709301137000,0],[1709301138000,0],[1709301139000,0],[1709301140000,0],[1709301141000,0],[1709301142000,0],[1709301143000,0],[1709301144000,0],[1709301145000,0],[1709301146000,0],[1709301147000,0],[1709301148000,0],[1709301149000,0],[1709301150000,0],[1709301151000,0],[1709301152000,0],[1709301153000,0],[1709301154000,0],[1709301155000,0],[1709301156000,0],[1709301157000,0],[1709301158000,0],[1709301159000,0],[1709301160000,0],[1709301161000,0],[1709301162000,0],[1709301163000,0],[1709301164000,0],[1709301165000,0],[1709301166000,0],[1709301167000,0],[1709301168000,0],[1709301169000,0],[1709301170000,0],[1709301171000,0],[1709301172000,0],[1709301173000,0],[1709301174000,0],[1709301175000,0],[1709301176000,0],[1709301177000,25],[1709301178000,25],[1709301179000,25],[1709301180000,25],[1709301181000,25],[1709301182000,25],[1709301183000,25],[1709301184000,25],[1709301185000,25],[1709301186000,25],[1709301187000,25],[1709301188000,25],[1709301189000,25],[1709301190000,25],[1709301191000,25],[1709301192000,25],[1709301193000,25],[1709301194000,25],[1709301195000,25],[1709301196000,25],[1709301197000,25],[1709301198000,25],[1709301199000,25],[1709301200000,25],[1709301201000,25],[1709301202000,25],[1709301203000,25],[1709301204000,25],[1709301205000,25],[1709301206000,25],[1709301207000,25],[1709301208000,25],[1709301209000,25],[1709301210000,25],[1709301211000,25],[1709301212000,25],[1709301213000,25],[1709301214000,25],[1709301215000,25],[1709301216000,25],[1709301217000,25],[1709301218000,25],[1709301219000,25],[1709301220000,25],[1709301221000,25],[1709301222000,25],[1709301223000,25],[1709301224000,25],[1709301225000,25],[1709301226000,25],[1709301227000,25],[1709301228000,25],[1709301229000,25],[1709301230000,25],[1709301231000,25],[1709301232000,25],[1709301233000,25],[1709301234000,25],[1709301235000,25],[1709301236000,25],[1709301237000,25],[1709301238000,0],[1709301239000,0],[1709301240000,0],[1709301241000,0],[1709301242000,0],[1709301243000,0],[1709301244000,0],[1709301245000,0],[1709301246000,0],[1709301247000,0],[1709301248000,0],[1709301249000,0],[1709301250000,0],[1709301251000,0],[1709301252000,0],[1709301253000,0],[1709301254000,0],[1709301255000,0],[1709301256000,0],[1709301257000,0],[1709301258000,0],[1709301259000,0],[1709301260000,0],[1709301261000,0],[1709301262000,0],[1709301263000,0],[1709301264000,0],[1709301265000,0],[1709301266000,0],[1709301267000,0],[1709301268000,0],[1709301269000,0],[1709301270000,0],[1709301271000,0],[1709301272000,0],[1709301273000,0],[1709301274000,0],[1709301275000,0],[1709301276000,0],[1709301277000,0],[1709301278000,0],[1709301279000,0],[1709301280000,0],[1709301281000,0],[1709301282000,0],[1709301283000,0],[1709301284000,0],[1709301285000,0],[1709301286000,0],[1709301287000,0],[1709301288000,0],[1709301289000,0],[1709301290000,0],[1709301291000,0],[1709301292000,0],[1709301293000,0],[1709301294000,0],[1709301295000,0],[1709301296000,0],[1709301297000,0],[1709301298000,0],[1709301299000,0],[1709301300000,0],[1709301301000,0],[1709301302000,0],[1709301303000,0],[1709301304000,0],[1709301305000,0],[1709301306000,0],[1709301307000,0],[1709301308000,0],[1709301309000,0],[1709301310000,0],[1709301311000,0],[1709301312000,0],[1709301313000,0],[1709301314000,0],[1709301315000,0],[1709301316000,0],[1709301317000,0],[1709301318000,0],[1709301319000,0],[1709301320000,0],[1709301321000,0],[1709301322000,0],[1709301323000,0],[1709301324000,0],[1709301325000,0],[1709301326000,0],[1709301327000,0],[1709301328000,0],[1709301329000,0],[1709301330000,0],[1709301331000,0],[1709301332000,0],[1709301333000,0],[1709301334000,0],[1709301335000,0],[1709301336000,0],[1709301337000,0],[1709301338000,0],[1709301339000,0],[1709301340000,0],[1709301341000,0],[1709301342000,0],[1709301343000,0],[1709301344000,0],[1709301345000,0],[1709301346000,0],[1709301347000,0],[1709301348000,0],[1709301349000,0],[1709301350000,0],[1709301351000,0],[1709301352000,0],[1709301353000,0],[1709301354000,0],[1709301355000,0],[1709301356000,0],[1709301357000,0],[1709301358000,0],[1709301359000,0],[1709301360000,0],[1709301361000,0],[1709301362000,0],[1709301363000,0],[1709301364000,0],[1709301365000,0],[1709301366000,0],[1709301367000,0],[1709301368000,0],[1709301369000,0],[1709301370000,0],[1709301371000,0],[1709301372000,0],[1709301373000,0],[1709301374000,0],[1709301375000,0],[1709301376000,0],[1709301377000,0],[1709301378000,0],[1709301379000,0],[1709301380000,0],[1709301381000,0],[1709301382000,0],[1709301383000,0],[1709301384000,0],[1709301385000,0],[1709301386000,0],[1709301387000,0],[1709301388000,0],[1709301389000,0],[1709301390000,0],[1709301391000,0],[1709301392000,0],[1709301393000,0],[1709301394000,0],[1709301395000,0],[1709301396000,0],[1709301397000,0],[1709301398000,0],[1709301399000,0],[1709301400000,0],[1709301401000,0],[1709301402000,0],[1709301403000,0],[1709301404000,0],[1709301405000,0],[1709301406000,0],[1709301407000,0],[1709301408000,0],[1709301409000,0],[1709301410000,0],[1709301411000,0],[1709301412000,0],[1709301413000,0],[1709301414000,0],[1709301415000,0],[1709301416000,0],[1709301417000,0],[1709301418000,0],[1709301419000,0],[1709301420000,0],[1709301421000,0],[1709301422000,0],[1709301423000,0],[1709301424000,0],[1709301425000,0],[1709301426000,0],[1709301427000,0],[1709301428000,0],[1709301429000,0],[1709301430000,0],[1709301431000,0],[1709301432000,0],[1709301433000,0],[1709301434000,0],[1709301435000,0],[1709301436000,0],[1709301437000,0],[1709301438000,0],[1709301439000,0],[1709301440000,0],[1709301441000,0],[1709301442000,0],[1709301443000,0],[1709301444000,0],[1709301445000,0],[1709301446000,0],[1709301447000,0],[1709301448000,0],[1709301449000,0],[1709301450000,0],[1709301451000,0],[1709301452000,0],[1709301453000,0],[1709301454000,0],[1709301455000,0],[1709301456000,0],[1709301457000,0],[1709301458000,0],[1709301459000,0],[1709301460000,0],[1709301461000,0],[1709301462000,0],[1709301463000,0],[1709301464000,0],[1709301465000,0],[1709301466000,0],[1709301467000,0],[1709301468000,0],[1709301469000,0],[1709301470000,0],[1709301471000,0],[1709301472000,0],[1709301473000,0],[1709301474000,0],[1709301475000,0],[1709301476000,0],[1709301477000,0],[1709301478000,0],[1709301479000,0],[1709301480000,0],[1709301481000,0],[1709301482000,0],[1709301483000,0],[1709301484000,0],[1709301485000,0],[1709301486000,0],[1709301487000,0],[1709301488000,0],[1709301489000,0],[1709301490000,0],[1709301491000,0],[1709301492000,0],[1709301493000,0],[1709301494000,0],[1709301495000,0],[1709301496000,0],[1709301497000,0],[1709301498000,0],[1709301499000,0],[1709301500000,0],[1709301501000,0],[1709301502000,0],[1709301503000,0],[1709301504000,0],[1709301505000,0],[1709301506000,0],[1709301507000,0],[1709301508000,0],[1709301509000,0],[1709301510000,0],[1709301511000,0],[1709301512000,0],[1709301513000,0],[1709301514000,0],[1709301515000,0],[1709301516000,0],[1709301517000,0],[1709301518000,0],[1709301519000,0],[1709301520000,0],[1709301521000,0],[1709301522000,0],[1709301523000,0],[1709301524000,0],[1709301525000,0],[1709301526000,0],[1709301527000,0],[1709301528000,0],[1709301529000,0],[1709301530000,0],[1709301531000,0],[1709301532000,0],[1709301533000,0],[1709301534000,0],[1709301535000,0],[1709301536000,0],[1709301537000,0],[1709301538000,0],[1709301539000,0],[1709301540000,0],[1709301541000,0],[1709301542000,0],[1709301543000,0],[1709301544000,0],[1709301545000,0],[1709301546000,0],[1709301547000,0],[1709301548000,0],[1709301549000,0],[1709301550000,0],[1709301551000,0],[1709301552000,0],[1709301553000,0],[1709301554000,0],[1709301555000,0],[1709301556000,0],[1709301557000,0],[1709301558000,0],[1709301559000,0],[1709301560000,0],[1709301561000,0],[1709301562000,0],[1709301563000,0],[1709301564000,0],[1709301565000,0],[1709301566000,0],[1709301567000,0],[1709301568000,0],[1709301569000,0],[1709301570000,0],[1709301571000,0],[1709301572000,0],[1709301573000,0],[1709301574000,0],[1709301575000,0],[1709301576000,0],[1709301577000,0],[1709301578000,0],[1709301579000,0],[1709301580000,0],[1709301581000,0],[1709301582000,0],[1709301583000,0],[1709301584000,0],[1709301585000,0],[1709301586000,0],[1709301587000,0],[1709301588000,0],[1709301589000,0],[1709301590000,0],[1709301591000,0],[1709301592000,0],[1709301593000,0],[1709301594000,0],[1709301595000,0],[1709301596000,0],[1709301597000,0],[1709301598000,0],[1709301599000,0],[1709301600000,0],[1709301601000,0],[1709301602000,0],[1709301603000,0],[1709301604000,0],[1709301605000,0],[1709301606000,0],[1709301607000,0],[1709301608000,0],[1709301609000,0],[1709301610000,0],[1709301611000,0],[1709301612000,0],[1709301613000,0],[1709301614000,0],[1709301615000,0],[1709301616000,0],[1709301617000,0],[1709301618000,0],[1709301619000,0],[1709301620000,0],[1709301621000,0],[1709301622000,0],[1709301623000,0],[1709301624000,0],[1709301625000,0],[1709301626000,0],[1709301627000,0],[1709301628000,0],[1709301629000,0],[1709301630000,0],[1709301631000,0],[1709301632000,0],[1709301633000,0],[1709301634000,0],[1709301635000,0],[1709301636000,0],[1709301637000,0],[1709301638000,0],[1709301639000,0],[1709301640000,0],[1709301641000,0],[1709301642000,0],[1709301643000,0],[1709301644000,0],[1709301645000,0],[1709301646000,0],[1709301647000,0],[1709301648000,0],[1709301649000,0],[1709301650000,0],[1709301651000,0],[1709301652000,0],[1709301653000,0],[1709301654000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FF00E1',
name: 'validação concorrência saldo - -25',
data: [
[1709301116000,0],[1709301117000,0],[1709301118000,0],[1709301119000,0],[1709301120000,0],[1709301121000,0],[1709301122000,0],[1709301123000,0],[1709301124000,0],[1709301125000,0],[1709301126000,0],[1709301127000,0],[1709301128000,0],[1709301129000,0],[1709301130000,0],[1709301131000,0],[1709301132000,0],[1709301133000,0],[1709301134000,0],[1709301135000,0],[1709301136000,0],[1709301137000,0],[1709301138000,0],[1709301139000,0],[1709301140000,0],[1709301141000,0],[1709301142000,0],[1709301143000,0],[1709301144000,0],[1709301145000,0],[1709301146000,0],[1709301147000,0],[1709301148000,0],[1709301149000,0],[1709301150000,0],[1709301151000,0],[1709301152000,0],[1709301153000,0],[1709301154000,0],[1709301155000,0],[1709301156000,0],[1709301157000,0],[1709301158000,0],[1709301159000,0],[1709301160000,0],[1709301161000,0],[1709301162000,0],[1709301163000,0],[1709301164000,0],[1709301165000,0],[1709301166000,0],[1709301167000,0],[1709301168000,0],[1709301169000,0],[1709301170000,0],[1709301171000,0],[1709301172000,0],[1709301173000,0],[1709301174000,0],[1709301175000,0],[1709301176000,1],[1709301177000,1],[1709301178000,0],[1709301179000,0],[1709301180000,0],[1709301181000,0],[1709301182000,0],[1709301183000,0],[1709301184000,0],[1709301185000,0],[1709301186000,0],[1709301187000,0],[1709301188000,0],[1709301189000,0],[1709301190000,0],[1709301191000,0],[1709301192000,0],[1709301193000,0],[1709301194000,0],[1709301195000,0],[1709301196000,0],[1709301197000,0],[1709301198000,0],[1709301199000,0],[1709301200000,0],[1709301201000,0],[1709301202000,0],[1709301203000,0],[1709301204000,0],[1709301205000,0],[1709301206000,0],[1709301207000,0],[1709301208000,0],[1709301209000,0],[1709301210000,0],[1709301211000,0],[1709301212000,0],[1709301213000,0],[1709301214000,0],[1709301215000,0],[1709301216000,0],[1709301217000,0],[1709301218000,0],[1709301219000,0],[1709301220000,0],[1709301221000,0],[1709301222000,0],[1709301223000,0],[1709301224000,0],[1709301225000,0],[1709301226000,0],[1709301227000,0],[1709301228000,0],[1709301229000,0],[1709301230000,0],[1709301231000,0],[1709301232000,0],[1709301233000,0],[1709301234000,0],[1709301235000,0],[1709301236000,0],[1709301237000,0],[1709301238000,0],[1709301239000,0],[1709301240000,0],[1709301241000,0],[1709301242000,0],[1709301243000,0],[1709301244000,0],[1709301245000,0],[1709301246000,0],[1709301247000,0],[1709301248000,0],[1709301249000,0],[1709301250000,0],[1709301251000,0],[1709301252000,0],[1709301253000,0],[1709301254000,0],[1709301255000,0],[1709301256000,0],[1709301257000,0],[1709301258000,0],[1709301259000,0],[1709301260000,0],[1709301261000,0],[1709301262000,0],[1709301263000,0],[1709301264000,0],[1709301265000,0],[1709301266000,0],[1709301267000,0],[1709301268000,0],[1709301269000,0],[1709301270000,0],[1709301271000,0],[1709301272000,0],[1709301273000,0],[1709301274000,0],[1709301275000,0],[1709301276000,0],[1709301277000,0],[1709301278000,0],[1709301279000,0],[1709301280000,0],[1709301281000,0],[1709301282000,0],[1709301283000,0],[1709301284000,0],[1709301285000,0],[1709301286000,0],[1709301287000,0],[1709301288000,0],[1709301289000,0],[1709301290000,0],[1709301291000,0],[1709301292000,0],[1709301293000,0],[1709301294000,0],[1709301295000,0],[1709301296000,0],[1709301297000,0],[1709301298000,0],[1709301299000,0],[1709301300000,0],[1709301301000,0],[1709301302000,0],[1709301303000,0],[1709301304000,0],[1709301305000,0],[1709301306000,0],[1709301307000,0],[1709301308000,0],[1709301309000,0],[1709301310000,0],[1709301311000,0],[1709301312000,0],[1709301313000,0],[1709301314000,0],[1709301315000,0],[1709301316000,0],[1709301317000,0],[1709301318000,0],[1709301319000,0],[1709301320000,0],[1709301321000,0],[1709301322000,0],[1709301323000,0],[1709301324000,0],[1709301325000,0],[1709301326000,0],[1709301327000,0],[1709301328000,0],[1709301329000,0],[1709301330000,0],[1709301331000,0],[1709301332000,0],[1709301333000,0],[1709301334000,0],[1709301335000,0],[1709301336000,0],[1709301337000,0],[1709301338000,0],[1709301339000,0],[1709301340000,0],[1709301341000,0],[1709301342000,0],[1709301343000,0],[1709301344000,0],[1709301345000,0],[1709301346000,0],[1709301347000,0],[1709301348000,0],[1709301349000,0],[1709301350000,0],[1709301351000,0],[1709301352000,0],[1709301353000,0],[1709301354000,0],[1709301355000,0],[1709301356000,0],[1709301357000,0],[1709301358000,0],[1709301359000,0],[1709301360000,0],[1709301361000,0],[1709301362000,0],[1709301363000,0],[1709301364000,0],[1709301365000,0],[1709301366000,0],[1709301367000,0],[1709301368000,0],[1709301369000,0],[1709301370000,0],[1709301371000,0],[1709301372000,0],[1709301373000,0],[1709301374000,0],[1709301375000,0],[1709301376000,0],[1709301377000,0],[1709301378000,0],[1709301379000,0],[1709301380000,0],[1709301381000,0],[1709301382000,0],[1709301383000,0],[1709301384000,0],[1709301385000,0],[1709301386000,0],[1709301387000,0],[1709301388000,0],[1709301389000,0],[1709301390000,0],[1709301391000,0],[1709301392000,0],[1709301393000,0],[1709301394000,0],[1709301395000,0],[1709301396000,0],[1709301397000,0],[1709301398000,0],[1709301399000,0],[1709301400000,0],[1709301401000,0],[1709301402000,0],[1709301403000,0],[1709301404000,0],[1709301405000,0],[1709301406000,0],[1709301407000,0],[1709301408000,0],[1709301409000,0],[1709301410000,0],[1709301411000,0],[1709301412000,0],[1709301413000,0],[1709301414000,0],[1709301415000,0],[1709301416000,0],[1709301417000,0],[1709301418000,0],[1709301419000,0],[1709301420000,0],[1709301421000,0],[1709301422000,0],[1709301423000,0],[1709301424000,0],[1709301425000,0],[1709301426000,0],[1709301427000,0],[1709301428000,0],[1709301429000,0],[1709301430000,0],[1709301431000,0],[1709301432000,0],[1709301433000,0],[1709301434000,0],[1709301435000,0],[1709301436000,0],[1709301437000,0],[1709301438000,0],[1709301439000,0],[1709301440000,0],[1709301441000,0],[1709301442000,0],[1709301443000,0],[1709301444000,0],[1709301445000,0],[1709301446000,0],[1709301447000,0],[1709301448000,0],[1709301449000,0],[1709301450000,0],[1709301451000,0],[1709301452000,0],[1709301453000,0],[1709301454000,0],[1709301455000,0],[1709301456000,0],[1709301457000,0],[1709301458000,0],[1709301459000,0],[1709301460000,0],[1709301461000,0],[1709301462000,0],[1709301463000,0],[1709301464000,0],[1709301465000,0],[1709301466000,0],[1709301467000,0],[1709301468000,0],[1709301469000,0],[1709301470000,0],[1709301471000,0],[1709301472000,0],[1709301473000,0],[1709301474000,0],[1709301475000,0],[1709301476000,0],[1709301477000,0],[1709301478000,0],[1709301479000,0],[1709301480000,0],[1709301481000,0],[1709301482000,0],[1709301483000,0],[1709301484000,0],[1709301485000,0],[1709301486000,0],[1709301487000,0],[1709301488000,0],[1709301489000,0],[1709301490000,0],[1709301491000,0],[1709301492000,0],[1709301493000,0],[1709301494000,0],[1709301495000,0],[1709301496000,0],[1709301497000,0],[1709301498000,0],[1709301499000,0],[1709301500000,0],[1709301501000,0],[1709301502000,0],[1709301503000,0],[1709301504000,0],[1709301505000,0],[1709301506000,0],[1709301507000,0],[1709301508000,0],[1709301509000,0],[1709301510000,0],[1709301511000,0],[1709301512000,0],[1709301513000,0],[1709301514000,0],[1709301515000,0],[1709301516000,0],[1709301517000,0],[1709301518000,0],[1709301519000,0],[1709301520000,0],[1709301521000,0],[1709301522000,0],[1709301523000,0],[1709301524000,0],[1709301525000,0],[1709301526000,0],[1709301527000,0],[1709301528000,0],[1709301529000,0],[1709301530000,0],[1709301531000,0],[1709301532000,0],[1709301533000,0],[1709301534000,0],[1709301535000,0],[1709301536000,0],[1709301537000,0],[1709301538000,0],[1709301539000,0],[1709301540000,0],[1709301541000,0],[1709301542000,0],[1709301543000,0],[1709301544000,0],[1709301545000,0],[1709301546000,0],[1709301547000,0],[1709301548000,0],[1709301549000,0],[1709301550000,0],[1709301551000,0],[1709301552000,0],[1709301553000,0],[1709301554000,0],[1709301555000,0],[1709301556000,0],[1709301557000,0],[1709301558000,0],[1709301559000,0],[1709301560000,0],[1709301561000,0],[1709301562000,0],[1709301563000,0],[1709301564000,0],[1709301565000,0],[1709301566000,0],[1709301567000,0],[1709301568000,0],[1709301569000,0],[1709301570000,0],[1709301571000,0],[1709301572000,0],[1709301573000,0],[1709301574000,0],[1709301575000,0],[1709301576000,0],[1709301577000,0],[1709301578000,0],[1709301579000,0],[1709301580000,0],[1709301581000,0],[1709301582000,0],[1709301583000,0],[1709301584000,0],[1709301585000,0],[1709301586000,0],[1709301587000,0],[1709301588000,0],[1709301589000,0],[1709301590000,0],[1709301591000,0],[1709301592000,0],[1709301593000,0],[1709301594000,0],[1709301595000,0],[1709301596000,0],[1709301597000,0],[1709301598000,0],[1709301599000,0],[1709301600000,0],[1709301601000,0],[1709301602000,0],[1709301603000,0],[1709301604000,0],[1709301605000,0],[1709301606000,0],[1709301607000,0],[1709301608000,0],[1709301609000,0],[1709301610000,0],[1709301611000,0],[1709301612000,0],[1709301613000,0],[1709301614000,0],[1709301615000,0],[1709301616000,0],[1709301617000,0],[1709301618000,0],[1709301619000,0],[1709301620000,0],[1709301621000,0],[1709301622000,0],[1709301623000,0],[1709301624000,0],[1709301625000,0],[1709301626000,0],[1709301627000,0],[1709301628000,0],[1709301629000,0],[1709301630000,0],[1709301631000,0],[1709301632000,0],[1709301633000,0],[1709301634000,0],[1709301635000,0],[1709301636000,0],[1709301637000,0],[1709301638000,0],[1709301639000,0],[1709301640000,0],[1709301641000,0],[1709301642000,0],[1709301643000,0],[1709301644000,0],[1709301645000,0],[1709301646000,0],[1709301647000,0],[1709301648000,0],[1709301649000,0],[1709301650000,0],[1709301651000,0],[1709301652000,0],[1709301653000,0],[1709301654000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#AECAEB',
name: 'validação concorrência transações - d',
data: [
[1709301116000,25],[1709301117000,17],[1709301118000,17],[1709301119000,17],[1709301120000,17],[1709301121000,17],[1709301122000,17],[1709301123000,17],[1709301124000,17],[1709301125000,17],[1709301126000,17],[1709301127000,17],[1709301128000,17],[1709301129000,17],[1709301130000,17],[1709301131000,17],[1709301132000,17],[1709301133000,17],[1709301134000,17],[1709301135000,17],[1709301136000,17],[1709301137000,17],[1709301138000,17],[1709301139000,17],[1709301140000,17],[1709301141000,17],[1709301142000,17],[1709301143000,17],[1709301144000,17],[1709301145000,17],[1709301146000,17],[1709301147000,17],[1709301148000,17],[1709301149000,17],[1709301150000,17],[1709301151000,17],[1709301152000,17],[1709301153000,17],[1709301154000,17],[1709301155000,17],[1709301156000,17],[1709301157000,17],[1709301158000,17],[1709301159000,17],[1709301160000,17],[1709301161000,17],[1709301162000,17],[1709301163000,17],[1709301164000,17],[1709301165000,17],[1709301166000,17],[1709301167000,17],[1709301168000,17],[1709301169000,17],[1709301170000,17],[1709301171000,17],[1709301172000,17],[1709301173000,17],[1709301174000,17],[1709301175000,17],[1709301176000,17],[1709301177000,0],[1709301178000,0],[1709301179000,0],[1709301180000,0],[1709301181000,0],[1709301182000,0],[1709301183000,0],[1709301184000,0],[1709301185000,0],[1709301186000,0],[1709301187000,0],[1709301188000,0],[1709301189000,0],[1709301190000,0],[1709301191000,0],[1709301192000,0],[1709301193000,0],[1709301194000,0],[1709301195000,0],[1709301196000,0],[1709301197000,0],[1709301198000,0],[1709301199000,0],[1709301200000,0],[1709301201000,0],[1709301202000,0],[1709301203000,0],[1709301204000,0],[1709301205000,0],[1709301206000,0],[1709301207000,0],[1709301208000,0],[1709301209000,0],[1709301210000,0],[1709301211000,0],[1709301212000,0],[1709301213000,0],[1709301214000,0],[1709301215000,0],[1709301216000,0],[1709301217000,0],[1709301218000,0],[1709301219000,0],[1709301220000,0],[1709301221000,0],[1709301222000,0],[1709301223000,0],[1709301224000,0],[1709301225000,0],[1709301226000,0],[1709301227000,0],[1709301228000,0],[1709301229000,0],[1709301230000,0],[1709301231000,0],[1709301232000,0],[1709301233000,0],[1709301234000,0],[1709301235000,0],[1709301236000,0],[1709301237000,0],[1709301238000,0],[1709301239000,0],[1709301240000,0],[1709301241000,0],[1709301242000,0],[1709301243000,0],[1709301244000,0],[1709301245000,0],[1709301246000,0],[1709301247000,0],[1709301248000,0],[1709301249000,0],[1709301250000,0],[1709301251000,0],[1709301252000,0],[1709301253000,0],[1709301254000,0],[1709301255000,0],[1709301256000,0],[1709301257000,0],[1709301258000,0],[1709301259000,0],[1709301260000,0],[1709301261000,0],[1709301262000,0],[1709301263000,0],[1709301264000,0],[1709301265000,0],[1709301266000,0],[1709301267000,0],[1709301268000,0],[1709301269000,0],[1709301270000,0],[1709301271000,0],[1709301272000,0],[1709301273000,0],[1709301274000,0],[1709301275000,0],[1709301276000,0],[1709301277000,0],[1709301278000,0],[1709301279000,0],[1709301280000,0],[1709301281000,0],[1709301282000,0],[1709301283000,0],[1709301284000,0],[1709301285000,0],[1709301286000,0],[1709301287000,0],[1709301288000,0],[1709301289000,0],[1709301290000,0],[1709301291000,0],[1709301292000,0],[1709301293000,0],[1709301294000,0],[1709301295000,0],[1709301296000,0],[1709301297000,0],[1709301298000,0],[1709301299000,0],[1709301300000,0],[1709301301000,0],[1709301302000,0],[1709301303000,0],[1709301304000,0],[1709301305000,0],[1709301306000,0],[1709301307000,0],[1709301308000,0],[1709301309000,0],[1709301310000,0],[1709301311000,0],[1709301312000,0],[1709301313000,0],[1709301314000,0],[1709301315000,0],[1709301316000,0],[1709301317000,0],[1709301318000,0],[1709301319000,0],[1709301320000,0],[1709301321000,0],[1709301322000,0],[1709301323000,0],[1709301324000,0],[1709301325000,0],[1709301326000,0],[1709301327000,0],[1709301328000,0],[1709301329000,0],[1709301330000,0],[1709301331000,0],[1709301332000,0],[1709301333000,0],[1709301334000,0],[1709301335000,0],[1709301336000,0],[1709301337000,0],[1709301338000,0],[1709301339000,0],[1709301340000,0],[1709301341000,0],[1709301342000,0],[1709301343000,0],[1709301344000,0],[1709301345000,0],[1709301346000,0],[1709301347000,0],[1709301348000,0],[1709301349000,0],[1709301350000,0],[1709301351000,0],[1709301352000,0],[1709301353000,0],[1709301354000,0],[1709301355000,0],[1709301356000,0],[1709301357000,0],[1709301358000,0],[1709301359000,0],[1709301360000,0],[1709301361000,0],[1709301362000,0],[1709301363000,0],[1709301364000,0],[1709301365000,0],[1709301366000,0],[1709301367000,0],[1709301368000,0],[1709301369000,0],[1709301370000,0],[1709301371000,0],[1709301372000,0],[1709301373000,0],[1709301374000,0],[1709301375000,0],[1709301376000,0],[1709301377000,0],[1709301378000,0],[1709301379000,0],[1709301380000,0],[1709301381000,0],[1709301382000,0],[1709301383000,0],[1709301384000,0],[1709301385000,0],[1709301386000,0],[1709301387000,0],[1709301388000,0],[1709301389000,0],[1709301390000,0],[1709301391000,0],[1709301392000,0],[1709301393000,0],[1709301394000,0],[1709301395000,0],[1709301396000,0],[1709301397000,0],[1709301398000,0],[1709301399000,0],[1709301400000,0],[1709301401000,0],[1709301402000,0],[1709301403000,0],[1709301404000,0],[1709301405000,0],[1709301406000,0],[1709301407000,0],[1709301408000,0],[1709301409000,0],[1709301410000,0],[1709301411000,0],[1709301412000,0],[1709301413000,0],[1709301414000,0],[1709301415000,0],[1709301416000,0],[1709301417000,0],[1709301418000,0],[1709301419000,0],[1709301420000,0],[1709301421000,0],[1709301422000,0],[1709301423000,0],[1709301424000,0],[1709301425000,0],[1709301426000,0],[1709301427000,0],[1709301428000,0],[1709301429000,0],[1709301430000,0],[1709301431000,0],[1709301432000,0],[1709301433000,0],[1709301434000,0],[1709301435000,0],[1709301436000,0],[1709301437000,0],[1709301438000,0],[1709301439000,0],[1709301440000,0],[1709301441000,0],[1709301442000,0],[1709301443000,0],[1709301444000,0],[1709301445000,0],[1709301446000,0],[1709301447000,0],[1709301448000,0],[1709301449000,0],[1709301450000,0],[1709301451000,0],[1709301452000,0],[1709301453000,0],[1709301454000,0],[1709301455000,0],[1709301456000,0],[1709301457000,0],[1709301458000,0],[1709301459000,0],[1709301460000,0],[1709301461000,0],[1709301462000,0],[1709301463000,0],[1709301464000,0],[1709301465000,0],[1709301466000,0],[1709301467000,0],[1709301468000,0],[1709301469000,0],[1709301470000,0],[1709301471000,0],[1709301472000,0],[1709301473000,0],[1709301474000,0],[1709301475000,0],[1709301476000,0],[1709301477000,0],[1709301478000,0],[1709301479000,0],[1709301480000,0],[1709301481000,0],[1709301482000,0],[1709301483000,0],[1709301484000,0],[1709301485000,0],[1709301486000,0],[1709301487000,0],[1709301488000,0],[1709301489000,0],[1709301490000,0],[1709301491000,0],[1709301492000,0],[1709301493000,0],[1709301494000,0],[1709301495000,0],[1709301496000,0],[1709301497000,0],[1709301498000,0],[1709301499000,0],[1709301500000,0],[1709301501000,0],[1709301502000,0],[1709301503000,0],[1709301504000,0],[1709301505000,0],[1709301506000,0],[1709301507000,0],[1709301508000,0],[1709301509000,0],[1709301510000,0],[1709301511000,0],[1709301512000,0],[1709301513000,0],[1709301514000,0],[1709301515000,0],[1709301516000,0],[1709301517000,0],[1709301518000,0],[1709301519000,0],[1709301520000,0],[1709301521000,0],[1709301522000,0],[1709301523000,0],[1709301524000,0],[1709301525000,0],[1709301526000,0],[1709301527000,0],[1709301528000,0],[1709301529000,0],[1709301530000,0],[1709301531000,0],[1709301532000,0],[1709301533000,0],[1709301534000,0],[1709301535000,0],[1709301536000,0],[1709301537000,0],[1709301538000,0],[1709301539000,0],[1709301540000,0],[1709301541000,0],[1709301542000,0],[1709301543000,0],[1709301544000,0],[1709301545000,0],[1709301546000,0],[1709301547000,0],[1709301548000,0],[1709301549000,0],[1709301550000,0],[1709301551000,0],[1709301552000,0],[1709301553000,0],[1709301554000,0],[1709301555000,0],[1709301556000,0],[1709301557000,0],[1709301558000,0],[1709301559000,0],[1709301560000,0],[1709301561000,0],[1709301562000,0],[1709301563000,0],[1709301564000,0],[1709301565000,0],[1709301566000,0],[1709301567000,0],[1709301568000,0],[1709301569000,0],[1709301570000,0],[1709301571000,0],[1709301572000,0],[1709301573000,0],[1709301574000,0],[1709301575000,0],[1709301576000,0],[1709301577000,0],[1709301578000,0],[1709301579000,0],[1709301580000,0],[1709301581000,0],[1709301582000,0],[1709301583000,0],[1709301584000,0],[1709301585000,0],[1709301586000,0],[1709301587000,0],[1709301588000,0],[1709301589000,0],[1709301590000,0],[1709301591000,0],[1709301592000,0],[1709301593000,0],[1709301594000,0],[1709301595000,0],[1709301596000,0],[1709301597000,0],[1709301598000,0],[1709301599000,0],[1709301600000,0],[1709301601000,0],[1709301602000,0],[1709301603000,0],[1709301604000,0],[1709301605000,0],[1709301606000,0],[1709301607000,0],[1709301608000,0],[1709301609000,0],[1709301610000,0],[1709301611000,0],[1709301612000,0],[1709301613000,0],[1709301614000,0],[1709301615000,0],[1709301616000,0],[1709301617000,0],[1709301618000,0],[1709301619000,0],[1709301620000,0],[1709301621000,0],[1709301622000,0],[1709301623000,0],[1709301624000,0],[1709301625000,0],[1709301626000,0],[1709301627000,0],[1709301628000,0],[1709301629000,0],[1709301630000,0],[1709301631000,0],[1709301632000,0],[1709301633000,0],[1709301634000,0],[1709301635000,0],[1709301636000,0],[1709301637000,0],[1709301638000,0],[1709301639000,0],[1709301640000,0],[1709301641000,0],[1709301642000,0],[1709301643000,0],[1709301644000,0],[1709301645000,0],[1709301646000,0],[1709301647000,0],[1709301648000,0],[1709301649000,0],[1709301650000,0],[1709301651000,0],[1709301652000,0],[1709301653000,0],[1709301654000,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', '15301', '15901', '16501', '17101', '17701', '18301', '18901', '19501', '20101', '20701', '21301', '21901', '22501', '23101', '23701', '24301', '24901', '25501', '26101', '26701', '27301', '27901', '28501', '29101', '29701', '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', '45302', '45902', '46502', '47102', '47702', '48302', '48902', '49502', '50102', '50702', '51302', '51902', '52502', '53102', '53702', '54302', '54902', '55502', '56102', '56702', '57302', '57902', '58502', '59102', '59702'],
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: [
0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
],
tooltip: { yDecimals: 0, ySuffix: 'ms' }
},
{
type: 'column',
color: '#f15b4f',
name: 'KO',
data: [
99.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.95
],
tooltip: { yDecimals: 0, ySuffix: 'ms' }
}
]
});
responsetimeDistributionChart.setTitle({
text: '<span class="chart_title">Response Time Distribution</span>',
useHTML: true
});
var responsetimepercentilesovertimeokPercentiles = unpack([[1709301116,[22,30,35,37,38,38,41,44,46,47]],[1709301117,null],[1709301118,null],[1709301119,null],[1709301120,null],[1709301121,null],[1709301122,null],[1709301123,null],[1709301124,null],[1709301125,null],[1709301126,null],[1709301127,null],[1709301128,null],[1709301129,null],[1709301130,null],[1709301131,null],[1709301132,null],[1709301133,null],[1709301134,null],[1709301135,null],[1709301136,null],[1709301137,null],[1709301138,null],[1709301139,null],[1709301140,null],[1709301141,null],[1709301142,null],[1709301143,null],[1709301144,null],[1709301145,null],[1709301146,null],[1709301147,null],[1709301148,null],[1709301149,null],[1709301150,null],[1709301151,null],[1709301152,null],[1709301153,null],[1709301154,null],[1709301155,null],[1709301156,null],[1709301157,null],[1709301158,null],[1709301159,null],[1709301160,null],[1709301161,null],[1709301162,null],[1709301163,null],[1709301164,null],[1709301165,null],[1709301166,null],[1709301167,null],[1709301168,null],[1709301169,null],[1709301170,null],[1709301171,null],[1709301172,null],[1709301173,null],[1709301174,null],[1709301175,null],[1709301176,null],[1709301177,null],[1709301178,null],[1709301179,null],[1709301180,null],[1709301181,null],[1709301182,null],[1709301183,null],[1709301184,null],[1709301185,null],[1709301186,null],[1709301187,null],[1709301188,null],[1709301189,null],[1709301190,null],[1709301191,null],[1709301192,null],[1709301193,null],[1709301194,null],[1709301195,null],[1709301196,null],[1709301197,null],[1709301198,null],[1709301199,null],[1709301200,null],[1709301201,null],[1709301202,null],[1709301203,null],[1709301204,null],[1709301205,null],[1709301206,null],[1709301207,null],[1709301208,null],[1709301209,null],[1709301210,null],[1709301211,null],[1709301212,null],[1709301213,null],[1709301214,null],[1709301215,null],[1709301216,null],[1709301217,null],[1709301218,null],[1709301219,null],[1709301220,null],[1709301221,null],[1709301222,null],[1709301223,null],[1709301224,null],[1709301225,null],[1709301226,null],[1709301227,null],[1709301228,null],[1709301229,null],[1709301230,null],[1709301231,null],[1709301232,null],[1709301233,null],[1709301234,null],[1709301235,null],[1709301236,null],[1709301237,null],[1709301238,null],[1709301239,null],[1709301240,null],[1709301241,null],[1709301242,null],[1709301243,null],[1709301244,null],[1709301245,null],[1709301246,null],[1709301247,null],[1709301248,null],[1709301249,null],[1709301250,null],[1709301251,null],[1709301252,null],[1709301253,null],[1709301254,null],[1709301255,null],[1709301256,null],[1709301257,null],[1709301258,null],[1709301259,null],[1709301260,null],[1709301261,null],[1709301262,null],[1709301263,null],[1709301264,null],[1709301265,null],[1709301266,null],[1709301267,null],[1709301268,null],[1709301269,null],[1709301270,null],[1709301271,null],[1709301272,null],[1709301273,null],[1709301274,null],[1709301275,null],[1709301276,null],[1709301277,null],[1709301278,null],[1709301279,null],[1709301280,null],[1709301281,null],[1709301282,null],[1709301283,null],[1709301284,null],[1709301285,null],[1709301286,null],[1709301287,null],[1709301288,null],[1709301289,null],[1709301290,null],[1709301291,null],[1709301292,null],[1709301293,null],[1709301294,null],[1709301295,null],[1709301296,null],[1709301297,null],[1709301298,null],[1709301299,null],[1709301300,null],[1709301301,null],[1709301302,null],[1709301303,null],[1709301304,null],[1709301305,null],[1709301306,null],[1709301307,null],[1709301308,null],[1709301309,null],[1709301310,null],[1709301311,null],[1709301312,null],[1709301313,null],[1709301314,null],[1709301315,null],[1709301316,null],[1709301317,null],[1709301318,null],[1709301319,null],[1709301320,null],[1709301321,null],[1709301322,null],[1709301323,null],[1709301324,null],[1709301325,null],[1709301326,null],[1709301327,null],[1709301328,null],[1709301329,null],[1709301330,null],[1709301331,null],[1709301332,null],[1709301333,null],[1709301334,null],[1709301335,null],[1709301336,null],[1709301337,null],[1709301338,null],[1709301339,null],[1709301340,null],[1709301341,null],[1709301342,null],[1709301343,null],[1709301344,null],[1709301345,null],[1709301346,null],[1709301347,null],[1709301348,null],[1709301349,null],[1709301350,null],[1709301351,null],[1709301352,null],[1709301353,null],[1709301354,null],[1709301355,null],[1709301356,null],[1709301357,null],[1709301358,null],[1709301359,null],[1709301360,null],[1709301361,null],[1709301362,null],[1709301363,null],[1709301364,null],[1709301365,null],[1709301366,null],[1709301367,null],[1709301368,null],[1709301369,null],[1709301370,null],[1709301371,null],[1709301372,null],[1709301373,null],[1709301374,null],[1709301375,null],[1709301376,null],[1709301377,null],[1709301378,null],[1709301379,null],[1709301380,null],[1709301381,null],[1709301382,null],[1709301383,null],[1709301384,null],[1709301385,null],[1709301386,null],[1709301387,null],[1709301388,null],[1709301389,null],[1709301390,null],[1709301391,null],[1709301392,null],[1709301393,null],[1709301394,null],[1709301395,null],[1709301396,null],[1709301397,null],[1709301398,null],[1709301399,null],[1709301400,null],[1709301401,null],[1709301402,null],[1709301403,null],[1709301404,null],[1709301405,null],[1709301406,null],[1709301407,null],[1709301408,null],[1709301409,null],[1709301410,null],[1709301411,null],[1709301412,null],[1709301413,null],[1709301414,null],[1709301415,null],[1709301416,null],[1709301417,null],[1709301418,null],[1709301419,null],[1709301420,null],[1709301421,null],[1709301422,null],[1709301423,null],[1709301424,null],[1709301425,null],[1709301426,null],[1709301427,null],[1709301428,null],[1709301429,null],[1709301430,null],[1709301431,null],[1709301432,null],[1709301433,null],[1709301434,null],[1709301435,null],[1709301436,null],[1709301437,null],[1709301438,null],[1709301439,null],[1709301440,null],[1709301441,null],[1709301442,null],[1709301443,null],[1709301444,null],[1709301445,null],[1709301446,null],[1709301447,null],[1709301448,null],[1709301449,null],[1709301450,null],[1709301451,null],[1709301452,null],[1709301453,null],[1709301454,null],[1709301455,null],[1709301456,null],[1709301457,null],[1709301458,null],[1709301459,null],[1709301460,null],[1709301461,null],[1709301462,null],[1709301463,null],[1709301464,null],[1709301465,null],[1709301466,null],[1709301467,null],[1709301468,null],[1709301469,null],[1709301470,null],[1709301471,null],[1709301472,null],[1709301473,null],[1709301474,null],[1709301475,null],[1709301476,null],[1709301477,null],[1709301478,null],[1709301479,null],[1709301480,null],[1709301481,null],[1709301482,null],[1709301483,null],[1709301484,null],[1709301485,null],[1709301486,null],[1709301487,null],[1709301488,null],[1709301489,null],[1709301490,null],[1709301491,null],[1709301492,null],[1709301493,null],[1709301494,null],[1709301495,null],[1709301496,null],[1709301497,null],[1709301498,null],[1709301499,null],[1709301500,null],[1709301501,null],[1709301502,null],[1709301503,null],[1709301504,null],[1709301505,null],[1709301506,null],[1709301507,null],[1709301508,null],[1709301509,null],[1709301510,null],[1709301511,null],[1709301512,null],[1709301513,null],[1709301514,null],[1709301515,null],[1709301516,null],[1709301517,null],[1709301518,null],[1709301519,null],[1709301520,null],[1709301521,null],[1709301522,null],[1709301523,null],[1709301524,null],[1709301525,null],[1709301526,null],[1709301527,null],[1709301528,null],[1709301529,null],[1709301530,null],[1709301531,null],[1709301532,null],[1709301533,null],[1709301534,null],[1709301535,null],[1709301536,null],[1709301537,null],[1709301538,null],[1709301539,null],[1709301540,null],[1709301541,null],[1709301542,null],[1709301543,null],[1709301544,null],[1709301545,null],[1709301546,null],[1709301547,null],[1709301548,null],[1709301549,null],[1709301550,null],[1709301551,null],[1709301552,null],[1709301553,null],[1709301554,null],[1709301555,null],[1709301556,null],[1709301557,null],[1709301558,null],[1709301559,null],[1709301560,null],[1709301561,null],[1709301562,null],[1709301563,null],[1709301564,null],[1709301565,null],[1709301566,null],[1709301567,null],[1709301568,null],[1709301569,null],[1709301570,null],[1709301571,null],[1709301572,null],[1709301573,null],[1709301574,null],[1709301575,null],[1709301576,null],[1709301577,null],[1709301578,null],[1709301579,null],[1709301580,null],[1709301581,null],[1709301582,null],[1709301583,null],[1709301584,null],[1709301585,null],[1709301586,null],[1709301587,null],[1709301588,null],[1709301589,null],[1709301590,null],[1709301591,null],[1709301592,null],[1709301593,null],[1709301594,null],[1709301595,null],[1709301596,null],[1709301597,null],[1709301598,null],[1709301599,null],[1709301600,null],[1709301601,null],[1709301602,null],[1709301603,null],[1709301604,null],[1709301605,null],[1709301606,null],[1709301607,null],[1709301608,null],[1709301609,null],[1709301610,null],[1709301611,null],[1709301612,null],[1709301613,null],[1709301614,null],[1709301615,null],[1709301616,null],[1709301617,null],[1709301618,null],[1709301619,null],[1709301620,null],[1709301621,null],[1709301622,null],[1709301623,null],[1709301624,null],[1709301625,null],[1709301626,null],[1709301627,null],[1709301628,null],[1709301629,null],[1709301630,null],[1709301631,null],[1709301632,null],[1709301633,null],[1709301634,null],[1709301635,null],[1709301636,null],[1709301637,null],[1709301638,null],[1709301639,null],[1709301640,null],[1709301641,null],[1709301642,null],[1709301643,null],[1709301644,null],[1709301645,null],[1709301646,null],[1709301647,null],[1709301648,null],[1709301649,null],[1709301650,null],[1709301651,null],[1709301652,null],[1709301653,null],[1709301654,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([[1709301116,[25,8,17]],[1709301117,[0,0,0]],[1709301118,[0,0,0]],[1709301119,[0,0,0]],[1709301120,[0,0,0]],[1709301121,[0,0,0]],[1709301122,[0,0,0]],[1709301123,[0,0,0]],[1709301124,[0,0,0]],[1709301125,[0,0,0]],[1709301126,[0,0,0]],[1709301127,[0,0,0]],[1709301128,[0,0,0]],[1709301129,[0,0,0]],[1709301130,[0,0,0]],[1709301131,[0,0,0]],[1709301132,[0,0,0]],[1709301133,[0,0,0]],[1709301134,[0,0,0]],[1709301135,[0,0,0]],[1709301136,[0,0,0]],[1709301137,[0,0,0]],[1709301138,[0,0,0]],[1709301139,[0,0,0]],[1709301140,[0,0,0]],[1709301141,[0,0,0]],[1709301142,[0,0,0]],[1709301143,[0,0,0]],[1709301144,[0,0,0]],[1709301145,[0,0,0]],[1709301146,[0,0,0]],[1709301147,[0,0,0]],[1709301148,[0,0,0]],[1709301149,[0,0,0]],[1709301150,[0,0,0]],[1709301151,[0,0,0]],[1709301152,[0,0,0]],[1709301153,[0,0,0]],[1709301154,[0,0,0]],[1709301155,[0,0,0]],[1709301156,[0,0,0]],[1709301157,[0,0,0]],[1709301158,[0,0,0]],[1709301159,[0,0,0]],[1709301160,[0,0,0]],[1709301161,[0,0,0]],[1709301162,[0,0,0]],[1709301163,[0,0,0]],[1709301164,[0,0,0]],[1709301165,[0,0,0]],[1709301166,[0,0,0]],[1709301167,[0,0,0]],[1709301168,[0,0,0]],[1709301169,[0,0,0]],[1709301170,[0,0,0]],[1709301171,[0,0,0]],[1709301172,[0,0,0]],[1709301173,[0,0,0]],[1709301174,[0,0,0]],[1709301175,[0,0,0]],[1709301176,[0,0,0]],[1709301177,[1,0,1]],[1709301178,[25,0,25]],[1709301179,[0,0,0]],[1709301180,[0,0,0]],[1709301181,[0,0,0]],[1709301182,[0,0,0]],[1709301183,[0,0,0]],[1709301184,[0,0,0]],[1709301185,[0,0,0]],[1709301186,[0,0,0]],[1709301187,[0,0,0]],[1709301188,[0,0,0]],[1709301189,[0,0,0]],[1709301190,[0,0,0]],[1709301191,[0,0,0]],[1709301192,[0,0,0]],[1709301193,[0,0,0]],[1709301194,[0,0,0]],[1709301195,[0,0,0]],[1709301196,[0,0,0]],[1709301197,[0,0,0]],[1709301198,[0,0,0]],[1709301199,[0,0,0]],[1709301200,[0,0,0]],[1709301201,[0,0,0]],[1709301202,[0,0,0]],[1709301203,[0,0,0]],[1709301204,[0,0,0]],[1709301205,[0,0,0]],[1709301206,[0,0,0]],[1709301207,[0,0,0]],[1709301208,[0,0,0]],[1709301209,[0,0,0]],[1709301210,[0,0,0]],[1709301211,[0,0,0]],[1709301212,[0,0,0]],[1709301213,[0,0,0]],[1709301214,[0,0,0]],[1709301215,[0,0,0]],[1709301216,[0,0,0]],[1709301217,[0,0,0]],[1709301218,[0,0,0]],[1709301219,[0,0,0]],[1709301220,[0,0,0]],[1709301221,[0,0,0]],[1709301222,[0,0,0]],[1709301223,[0,0,0]],[1709301224,[0,0,0]],[1709301225,[0,0,0]],[1709301226,[0,0,0]],[1709301227,[0,0,0]],[1709301228,[0,0,0]],[1709301229,[0,0,0]],[1709301230,[0,0,0]],[1709301231,[0,0,0]],[1709301232,[0,0,0]],[1709301233,[0,0,0]],[1709301234,[0,0,0]],[1709301235,[0,0,0]],[1709301236,[0,0,0]],[1709301237,[0,0,0]],[1709301238,[0,0,0]],[1709301239,[1,0,1]],[1709301240,[0,0,0]],[1709301241,[0,0,0]],[1709301242,[0,0,0]],[1709301243,[0,0,0]],[1709301244,[0,0,0]],[1709301245,[0,0,0]],[1709301246,[0,0,0]],[1709301247,[0,0,0]],[1709301248,[0,0,0]],[1709301249,[0,0,0]],[1709301250,[0,0,0]],[1709301251,[0,0,0]],[1709301252,[0,0,0]],[1709301253,[0,0,0]],[1709301254,[0,0,0]],[1709301255,[0,0,0]],[1709301256,[0,0,0]],[1709301257,[0,0,0]],[1709301258,[0,0,0]],[1709301259,[0,0,0]],[1709301260,[0,0,0]],[1709301261,[0,0,0]],[1709301262,[0,0,0]],[1709301263,[0,0,0]],[1709301264,[0,0,0]],[1709301265,[0,0,0]],[1709301266,[0,0,0]],[1709301267,[0,0,0]],[1709301268,[0,0,0]],[1709301269,[0,0,0]],[1709301270,[0,0,0]],[1709301271,[0,0,0]],[1709301272,[0,0,0]],[1709301273,[0,0,0]],[1709301274,[0,0,0]],[1709301275,[0,0,0]],[1709301276,[0,0,0]],[1709301277,[0,0,0]],[1709301278,[0,0,0]],[1709301279,[0,0,0]],[1709301280,[0,0,0]],[1709301281,[0,0,0]],[1709301282,[0,0,0]],[1709301283,[0,0,0]],[1709301284,[0,0,0]],[1709301285,[0,0,0]],[1709301286,[0,0,0]],[1709301287,[0,0,0]],[1709301288,[0,0,0]],[1709301289,[0,0,0]],[1709301290,[0,0,0]],[1709301291,[0,0,0]],[1709301292,[0,0,0]],[1709301293,[0,0,0]],[1709301294,[0,0,0]],[1709301295,[0,0,0]],[1709301296,[0,0,0]],[1709301297,[0,0,0]],[1709301298,[0,0,0]],[1709301299,[0,0,0]],[1709301300,[6,0,6]],[1709301301,[0,0,0]],[1709301302,[0,0,0]],[1709301303,[0,0,0]],[1709301304,[0,0,0]],[1709301305,[0,0,0]],[1709301306,[0,0,0]],[1709301307,[0,0,0]],[1709301308,[0,0,0]],[1709301309,[0,0,0]],[1709301310,[0,0,0]],[1709301311,[0,0,0]],[1709301312,[0,0,0]],[1709301313,[0,0,0]],[1709301314,[0,0,0]],[1709301315,[0,0,0]],[1709301316,[0,0,0]],[1709301317,[0,0,0]],[1709301318,[0,0,0]],[1709301319,[0,0,0]],[1709301320,[0,0,0]],[1709301321,[0,0,0]],[1709301322,[0,0,0]],[1709301323,[0,0,0]],[1709301324,[0,0,0]],[1709301325,[0,0,0]],[1709301326,[0,0,0]],[1709301327,[0,0,0]],[1709301328,[0,0,0]],[1709301329,[0,0,0]],[1709301330,[0,0,0]],[1709301331,[0,0,0]],[1709301332,[0,0,0]],[1709301333,[0,0,0]],[1709301334,[0,0,0]],[1709301335,[0,0,0]],[1709301336,[0,0,0]],[1709301337,[0,0,0]],[1709301338,[0,0,0]],[1709301339,[0,0,0]],[1709301340,[0,0,0]],[1709301341,[0,0,0]],[1709301342,[0,0,0]],[1709301343,[0,0,0]],[1709301344,[0,0,0]],[1709301345,[0,0,0]],[1709301346,[0,0,0]],[1709301347,[0,0,0]],[1709301348,[0,0,0]],[1709301349,[0,0,0]],[1709301350,[0,0,0]],[1709301351,[0,0,0]],[1709301352,[0,0,0]],[1709301353,[0,0,0]],[1709301354,[0,0,0]],[1709301355,[0,0,0]],[1709301356,[0,0,0]],[1709301357,[0,0,0]],[1709301358,[0,0,0]],[1709301359,[0,0,0]],[1709301360,[45,0,45]],[1709301361,[3,0,3]],[1709301362,[6,0,6]],[1709301363,[9,0,9]],[1709301364,[11,0,11]],[1709301365,[13,0,13]],[1709301366,[18,0,18]],[1709301367,[19,0,19]],[1709301368,[24,0,24]],[1709301369,[26,0,26]],[1709301370,[27,0,27]],[1709301371,[32,0,32]],[1709301372,[34,0,34]],[1709301373,[37,0,37]],[1709301374,[39,0,39]],[1709301375,[43,0,43]],[1709301376,[44,0,44]],[1709301377,[48,0,48]],[1709301378,[50,0,50]],[1709301379,[54,0,54]],[1709301380,[56,0,56]],[1709301381,[61,0,61]],[1709301382,[61,0,61]],[1709301383,[65,0,65]],[1709301384,[67,0,67]],[1709301385,[70,0,70]],[1709301386,[74,0,74]],[1709301387,[76,0,76]],[1709301388,[80,0,80]],[1709301389,[81,0,81]],[1709301390,[84,0,84]],[1709301391,[87,0,87]],[1709301392,[91,0,91]],[1709301393,[92,0,92]],[1709301394,[96,0,96]],[1709301395,[98,0,98]],[1709301396,[101,0,101]],[1709301397,[105,0,105]],[1709301398,[107,0,107]],[1709301399,[110,0,110]],[1709301400,[113,0,113]],[1709301401,[116,0,116]],[1709301402,[118,0,118]],[1709301403,[121,0,121]],[1709301404,[124,0,124]],[1709301405,[126,0,126]],[1709301406,[129,0,129]],[1709301407,[133,0,133]],[1709301408,[134,0,134]],[1709301409,[138,0,138]],[1709301410,[141,0,141]],[1709301411,[143,0,143]],[1709301412,[146,0,146]],[1709301413,[149,0,149]],[1709301414,[152,0,152]],[1709301415,[154,0,154]],[1709301416,[158,0,158]],[1709301417,[160,0,160]],[1709301418,[164,0,164]],[1709301419,[165,0,165]],[1709301420,[170,0,170]],[1709301421,[171,0,171]],[1709301422,[175,0,175]],[1709301423,[176,0,176]],[1709301424,[181,0,181]],[1709301425,[183,0,183]],[1709301426,[185,0,185]],[1709301427,[189,0,189]],[1709301428,[191,0,191]],[1709301429,[194,0,194]],[1709301430,[196,0,196]],[1709301431,[200,0,200]],[1709301432,[202,0,202]],[1709301433,[206,0,206]],[1709301434,[207,0,207]],[1709301435,[211,0,211]],[1709301436,[213,0,213]],[1709301437,[217,0,217]],[1709301438,[219,0,219]],[1709301439,[224,0,224]],[1709301440,[224,0,224]],[1709301441,[228,0,228]],[1709301442,[230,0,230]],[1709301443,[234,0,234]],[1709301444,[235,0,235]],[1709301445,[239,0,239]],[1709301446,[242,0,242]],[1709301447,[244,0,244]],[1709301448,[248,0,248]],[1709301449,[251,0,251]],[1709301450,[252,0,252]],[1709301451,[256,0,256]],[1709301452,[259,0,259]],[1709301453,[262,0,262]],[1709301454,[264,0,264]],[1709301455,[267,0,267]],[1709301456,[269,0,269]],[1709301457,[272,0,272]],[1709301458,[275,0,275]],[1709301459,[280,0,280]],[1709301460,[281,0,281]],[1709301461,[284,0,284]],[1709301462,[286,0,286]],[1709301463,[290,0,290]],[1709301464,[291,0,291]],[1709301465,[296,0,296]],[1709301466,[298,0,298]],[1709301467,[300,0,300]],[1709301468,[304,0,304]],[1709301469,[306,0,306]],[1709301470,[309,0,309]],[1709301471,[312,0,312]],[1709301472,[315,0,315]],[1709301473,[317,0,317]],[1709301474,[321,0,321]],[1709301475,[322,0,322]],[1709301476,[327,0,327]],[1709301477,[329,0,329]],[1709301478,[332,0,332]],[1709301479,[335,0,335]],[1709301480,[338,0,338]],[1709301481,[340,0,340]],[1709301482,[340,0,340]],[1709301483,[339,0,339]],[1709301484,[341,0,341]],[1709301485,[339,0,339]],[1709301486,[340,0,340]],[1709301487,[340,0,340]],[1709301488,[341,0,341]],[1709301489,[340,0,340]],[1709301490,[340,0,340]],[1709301491,[339,0,339]],[1709301492,[341,0,341]],[1709301493,[339,0,339]],[1709301494,[340,0,340]],[1709301495,[340,0,340]],[1709301496,[341,0,341]],[1709301497,[340,0,340]],[1709301498,[340,0,340]],[1709301499,[339,0,339]],[1709301500,[341,0,341]],[1709301501,[339,0,339]],[1709301502,[341,0,341]],[1709301503,[340,0,340]],[1709301504,[340,0,340]],[1709301505,[340,0,340]],[1709301506,[340,0,340]],[1709301507,[339,0,339]],[1709301508,[340,0,340]],[1709301509,[341,0,341]],[1709301510,[340,0,340]],[1709301511,[340,0,340]],[1709301512,[339,0,339]],[1709301513,[340,0,340]],[1709301514,[340,0,340]],[1709301515,[341,0,341]],[1709301516,[340,0,340]],[1709301517,[340,0,340]],[1709301518,[340,0,340]],[1709301519,[340,0,340]],[1709301520,[340,0,340]],[1709301521,[339,0,339]],[1709301522,[341,0,341]],[1709301523,[340,0,340]],[1709301524,[340,0,340]],[1709301525,[339,0,339]],[1709301526,[341,0,341]],[1709301527,[340,0,340]],[1709301528,[340,0,340]],[1709301529,[339,0,339]],[1709301530,[340,0,340]],[1709301531,[341,0,341]],[1709301532,[340,0,340]],[1709301533,[340,0,340]],[1709301534,[340,0,340]],[1709301535,[340,0,340]],[1709301536,[340,0,340]],[1709301537,[340,0,340]],[1709301538,[339,0,339]],[1709301539,[341,0,341]],[1709301540,[340,0,340]],[1709301541,[339,0,339]],[1709301542,[340,0,340]],[1709301543,[341,0,341]],[1709301544,[340,0,340]],[1709301545,[340,0,340]],[1709301546,[340,0,340]],[1709301547,[339,0,339]],[1709301548,[341,0,341]],[1709301549,[340,0,340]],[1709301550,[340,0,340]],[1709301551,[339,0,339]],[1709301552,[340,0,340]],[1709301553,[341,0,341]],[1709301554,[340,0,340]],[1709301555,[339,0,339]],[1709301556,[341,0,341]],[1709301557,[340,0,340]],[1709301558,[339,0,339]],[1709301559,[341,0,341]],[1709301560,[340,0,340]],[1709301561,[340,0,340]],[1709301562,[340,0,340]],[1709301563,[339,0,339]],[1709301564,[341,0,341]],[1709301565,[340,0,340]],[1709301566,[340,0,340]],[1709301567,[340,0,340]],[1709301568,[340,0,340]],[1709301569,[340,0,340]],[1709301570,[340,0,340]],[1709301571,[340,0,340]],[1709301572,[340,0,340]],[1709301573,[340,0,340]],[1709301574,[339,0,339]],[1709301575,[341,0,341]],[1709301576,[340,0,340]],[1709301577,[340,0,340]],[1709301578,[340,0,340]],[1709301579,[339,0,339]],[1709301580,[341,0,341]],[1709301581,[340,0,340]],[1709301582,[339,0,339]],[1709301583,[341,0,341]],[1709301584,[340,0,340]],[1709301585,[339,0,339]],[1709301586,[341,0,341]],[1709301587,[339,0,339]],[1709301588,[341,0,341]],[1709301589,[339,0,339]],[1709301590,[341,0,341]],[1709301591,[340,0,340]],[1709301592,[340,0,340]],[1709301593,[340,0,340]],[1709301594,[339,0,339]],[1709301595,[341,0,341]],[1709301596,[340,0,340]],[1709301597,[339,0,339]],[1709301598,[340,0,340]],[1709301599,[341,0,341]],[1709301600,[340,0,340]],[1709301601,[163,0,163]],[1709301602,[0,0,0]],[1709301603,[0,0,0]],[1709301604,[0,0,0]],[1709301605,[0,0,0]],[1709301606,[0,0,0]],[1709301607,[0,0,0]],[1709301608,[0,0,0]],[1709301609,[0,0,0]],[1709301610,[0,0,0]],[1709301611,[0,0,0]],[1709301612,[0,0,0]],[1709301613,[0,0,0]],[1709301614,[0,0,0]],[1709301615,[0,0,0]],[1709301616,[0,0,0]],[1709301617,[0,0,0]],[1709301618,[0,0,0]],[1709301619,[0,0,0]],[1709301620,[0,0,0]],[1709301621,[0,0,0]],[1709301622,[0,0,0]],[1709301623,[0,0,0]],[1709301624,[0,0,0]],[1709301625,[0,0,0]],[1709301626,[0,0,0]],[1709301627,[0,0,0]],[1709301628,[0,0,0]],[1709301629,[0,0,0]],[1709301630,[0,0,0]],[1709301631,[0,0,0]],[1709301632,[0,0,0]],[1709301633,[0,0,0]],[1709301634,[0,0,0]],[1709301635,[0,0,0]],[1709301636,[0,0,0]],[1709301637,[0,0,0]],[1709301638,[0,0,0]],[1709301639,[0,0,0]],[1709301640,[0,0,0]],[1709301641,[0,0,0]],[1709301642,[0,0,0]],[1709301643,[0,0,0]],[1709301644,[0,0,0]],[1709301645,[0,0,0]],[1709301646,[0,0,0]],[1709301647,[0,0,0]],[1709301648,[0,0,0]],[1709301649,[0,0,0]],[1709301650,[0,0,0]],[1709301651,[0,0,0]],[1709301652,[0,0,0]],[1709301653,[0,0,0]],[1709301654,[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: {