-
Notifications
You must be signed in to change notification settings - Fork 923
/
Copy pathindex.html
1255 lines (1185 loc) · 147 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="shortcut icon" type="image/x-icon" href="style/favicon.ico"/>
<link href="style/style.css" rel="stylesheet" type="text/css" />
<link href="style/bootstrap.min.css" rel="stylesheet" type="text/css" />
<script src="js/jquery-3.5.1.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/gatling.js"></script>
<script src="js/menu.js"></script>
<script src="js/ellipsis.js"></script>
<script src="js/all_sessions.js"></script>
<script src="js/stats.js"></script>
<script src="js/highstock.js"></script>
<script src="js/highcharts-more.js"></script>
<script src="js/theme.js"></script>
<script src="js/unpack.js"></script>
<title>Gatling Stats - Global Information</title>
</head>
<body>
<script>
const storedTheme = localStorage.getItem('theme') || (window.matchMedia("(prefers-color-scheme: dark)").matches ? "dark" : "light");
if (storedTheme) document.documentElement.setAttribute('data-theme', storedTheme)
function toggleTheme() {
const currentTheme = document.documentElement.getAttribute("data-theme");
const targetTheme = currentTheme === "light" ? "dark" : "light";
document.documentElement.setAttribute('data-theme', targetTheme)
localStorage.setItem('theme', targetTheme);
};
</script>
<div class="app-container">
<div class="frise"></div>
<div class="head">
<div class="gatling-open-source">
<a class="gatling-logo gatling-logo-light" href="https://gatling.io" target="blank_" title="Gatling Home Page"><img alt="Gatling" src="style/logo-light.svg"/></a>
<a class="gatling-logo gatling-logo-dark" href="https://gatling.io" target="blank_" title="Gatling Home Page"><img alt="Gatling" src="style/logo-dark.svg"/></a>
<a class="gatling-documentation" href="https://gatling.io/docs/" target="_blank">Documentation</a>
</div>
<div class="nav spacer"></div>
<a class="enterprise" href="https://gatling.io/enterprise/next-step/" target="_blank"><strong>Try</strong>
<img class="logo-enterprise-light" alt="Gatling Enterprise" src="style/logo-enterprise-light.svg"/>
<img class="logo-enterprise-dark" alt="Gatling Enterprise" src="style/logo-enterprise-dark.svg"/>
</a>
<button id="theme-toggle" class="theme-toggle" type="button" onclick="toggleTheme()" aria-label="Toggle user interface mode">
<span class="toggle-dark"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-moon"><path d="M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z"></path></svg></span>
<span class="toggle-light"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-sun"><circle cx="12" cy="12" r="5"></circle><line x1="12" y1="1" x2="12" y2="3"></line><line x1="12" y1="21" x2="12" y2="23"></line><line x1="4.22" y1="4.22" x2="5.64" y2="5.64"></line><line x1="18.36" y1="18.36" x2="19.78" y2="19.78"></line><line x1="1" y1="12" x2="3" y2="12"></line><line x1="21" y1="12" x2="23" y2="12"></line><line x1="4.22" y1="19.78" x2="5.64" y2="18.36"></line><line x1="18.36" y1="5.64" x2="19.78" y2="4.22"></line></svg></span>
</button>
</div>
<div class="container details">
<div class="nav">
<ul></ul>
</div>
<div class="cadre">
<div class="content">
<div class="content-header">
<div class="onglet">
RinhaBackendCrebitosSimulation
</div>
<div class="sous-menu" id="sousMenu">
<div class="sous-menu-spacer">
<div class="item ouvert"><a href="index.html">Global</a></div>
<div class="item "><a id="details_link" href="#">Details</a></div>
</div>
</div>
</div>
<div class="content-in">
<div class="container-article">
<div class="article">
<div class="schema-container">
<div id="ranges" class="schema ranges">
</div>
<div class="schema polar">
<div id="container_number_of_requests"></div>
</div>
<div class="simulation-card">
<div class="simulation-version-information">
<span class="simulation-information-title">Gatling Version</span>
<span class="simulation-information-item">
<span class="simulation-information-label">Version: </span>
<span>3.10.3</span>
</span>
<span class="simulation-information-item">
<span class="simulation-information-label">Released: </span>
<span>2023-12-20</span>
</span>
</div>
<div id="simulation-information" class="simulation-version-information">
<span class="simulation-information-title">Run Information</span>
<div class="simulation-information-container">
<span class="simulation-information-item">
<span class="simulation-information-label">Date: </span>
<span>2024-02-21 15:14:24 GMT</span>
</span>
<span class="simulation-information-item">
<span class="simulation-information-label">Duration: </span>
<span>8m 4s </span>
</span>
<span class="simulation-tooltip simulation-information-item description" title="Description" data-content="Rinha de Backend - 2024/Q1: Crébito - jonatasoli">
<span class="simulation-information-label">Description: </span>
<span>Rinha de Backend - 2024/Q1: Crébito - jonatasoli</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">35428</td>
<td class="value error-col-3 total ko">66.232 %</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">10860</td>
<td class="value error-col-3 total ko">20.302 %</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">5122</td>
<td class="value error-col-3 total ko">9.575 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">Request timeout to localhost/127.0.0.1:9999 after 60000 ms<span class="value" style="display:none">3</span></td>
<td class="value error-col-2 total ko">1119</td>
<td class="value error-col-3 total ko">2.092 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">status.find.in([200, 209], 304), found 502<span class="value" style="display:none">4</span></td>
<td class="value error-col-2 total ko">460</td>
<td class="value error-col-3 total ko">0.86 %</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">291</td>
<td class="value error-col-3 total ko">0.544 %</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">201</td>
<td class="value error-col-3 total ko">0.376 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">jmesPath(ultimas_transacoes[0].descricao).find.is(danada), but actually found Qxso06xMLN<span class="value" style="display:none">7</span></td>
<td class="value error-col-2 total ko">4</td>
<td class="value error-col-3 total ko">0.007 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">jmesPath(ultimas_transacoes[0].descricao).find.is(devolve), but actually found toma<span class="value" style="display:none">8</span></td>
<td class="value error-col-2 total ko">2</td>
<td class="value error-col-3 total ko">0.004 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">jmesPath(ultimas_transacoes[1].descricao).find.is(toma), but actually found EoL66vFA0O<span class="value" style="display:none">9</span></td>
<td class="value error-col-2 total ko">1</td>
<td class="value error-col-3 total ko">0.002 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">jmesPath(saldo.total).find.is(-25), but actually found -23<span class="value" style="display:none">10</span></td>
<td class="value error-col-2 total ko">1</td>
<td class="value error-col-3 total ko">0.002 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">jmesPath(saldo.total).find.is(0), but actually found -11<span class="value" style="display:none">11</span></td>
<td class="value error-col-2 total ko">1</td>
<td class="value error-col-3 total ko">0.002 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">jmesPath(ultimas_transacoes[0].descricao).find.is(devolve), but actually found uk3AGOfCLt<span class="value" style="display:none">12</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: [
[1708528465000,0],[1708528466000,0],[1708528467000,0],[1708528468000,0],[1708528469000,0],[1708528470000,0],[1708528471000,0],[1708528472000,0],[1708528473000,0],[1708528474000,0],[1708528475000,0],[1708528476000,0],[1708528477000,0],[1708528478000,0],[1708528479000,0],[1708528480000,0],[1708528481000,0],[1708528482000,0],[1708528483000,0],[1708528484000,0],[1708528485000,0],[1708528486000,0],[1708528487000,0],[1708528488000,0],[1708528489000,0],[1708528490000,0],[1708528491000,0],[1708528492000,0],[1708528493000,0],[1708528494000,0],[1708528495000,0],[1708528496000,0],[1708528497000,0],[1708528498000,0],[1708528499000,0],[1708528500000,0],[1708528501000,0],[1708528502000,0],[1708528503000,0],[1708528504000,0],[1708528505000,0],[1708528506000,0],[1708528507000,0],[1708528508000,0],[1708528509000,0],[1708528510000,0],[1708528511000,0],[1708528512000,0],[1708528513000,0],[1708528514000,0],[1708528515000,0],[1708528516000,0],[1708528517000,0],[1708528518000,0],[1708528519000,0],[1708528520000,0],[1708528521000,0],[1708528522000,0],[1708528523000,0],[1708528524000,0],[1708528525000,0],[1708528526000,0],[1708528527000,0],[1708528528000,0],[1708528529000,0],[1708528530000,0],[1708528531000,0],[1708528532000,0],[1708528533000,0],[1708528534000,0],[1708528535000,0],[1708528536000,0],[1708528537000,0],[1708528538000,0],[1708528539000,0],[1708528540000,0],[1708528541000,0],[1708528542000,0],[1708528543000,0],[1708528544000,0],[1708528545000,0],[1708528546000,0],[1708528547000,0],[1708528548000,0],[1708528549000,0],[1708528550000,0],[1708528551000,0],[1708528552000,0],[1708528553000,0],[1708528554000,0],[1708528555000,0],[1708528556000,0],[1708528557000,0],[1708528558000,0],[1708528559000,0],[1708528560000,0],[1708528561000,0],[1708528562000,0],[1708528563000,0],[1708528564000,0],[1708528565000,0],[1708528566000,0],[1708528567000,0],[1708528568000,0],[1708528569000,0],[1708528570000,0],[1708528571000,0],[1708528572000,0],[1708528573000,0],[1708528574000,0],[1708528575000,0],[1708528576000,0],[1708528577000,0],[1708528578000,0],[1708528579000,0],[1708528580000,0],[1708528581000,0],[1708528582000,0],[1708528583000,0],[1708528584000,0],[1708528585000,0],[1708528586000,0],[1708528587000,0],[1708528588000,0],[1708528589000,0],[1708528590000,0],[1708528591000,0],[1708528592000,0],[1708528593000,0],[1708528594000,0],[1708528595000,0],[1708528596000,0],[1708528597000,0],[1708528598000,0],[1708528599000,0],[1708528600000,0],[1708528601000,0],[1708528602000,0],[1708528603000,0],[1708528604000,0],[1708528605000,0],[1708528606000,0],[1708528607000,0],[1708528608000,0],[1708528609000,0],[1708528610000,0],[1708528611000,0],[1708528612000,0],[1708528613000,0],[1708528614000,0],[1708528615000,0],[1708528616000,0],[1708528617000,0],[1708528618000,0],[1708528619000,0],[1708528620000,0],[1708528621000,0],[1708528622000,0],[1708528623000,0],[1708528624000,0],[1708528625000,0],[1708528626000,0],[1708528627000,0],[1708528628000,0],[1708528629000,0],[1708528630000,0],[1708528631000,0],[1708528632000,0],[1708528633000,0],[1708528634000,0],[1708528635000,0],[1708528636000,0],[1708528637000,0],[1708528638000,0],[1708528639000,0],[1708528640000,0],[1708528641000,0],[1708528642000,0],[1708528643000,0],[1708528644000,0],[1708528645000,0],[1708528646000,0],[1708528647000,0],[1708528648000,0],[1708528649000,1],[1708528650000,2],[1708528651000,2],[1708528652000,4],[1708528653000,4],[1708528654000,5],[1708528655000,6],[1708528656000,7],[1708528657000,8],[1708528658000,8],[1708528659000,10],[1708528660000,11],[1708528661000,13],[1708528662000,13],[1708528663000,15],[1708528664000,15],[1708528665000,16],[1708528666000,17],[1708528667000,18],[1708528668000,18],[1708528669000,20],[1708528670000,22],[1708528671000,22],[1708528672000,24],[1708528673000,24],[1708528674000,25],[1708528675000,27],[1708528676000,27],[1708528677000,28],[1708528678000,28],[1708528679000,30],[1708528680000,31],[1708528681000,32],[1708528682000,32],[1708528683000,35],[1708528684000,35],[1708528685000,37],[1708528686000,38],[1708528687000,39],[1708528688000,40],[1708528689000,41],[1708528690000,42],[1708528691000,43],[1708528692000,43],[1708528693000,46],[1708528694000,46],[1708528695000,49],[1708528696000,49],[1708528697000,50],[1708528698000,51],[1708528699000,52],[1708528700000,53],[1708528701000,54],[1708528702000,54],[1708528703000,56],[1708528704000,56],[1708528705000,58],[1708528706000,59],[1708528707000,60],[1708528708000,61],[1708528709000,62],[1708528710000,62],[1708528711000,64],[1708528712000,65],[1708528713000,66],[1708528714000,66],[1708528715000,69],[1708528716000,69],[1708528717000,72],[1708528718000,72],[1708528719000,73],[1708528720000,92],[1708528721000,124],[1708528722000,158],[1708528723000,193],[1708528724000,226],[1708528725000,243],[1708528726000,243],[1708528727000,245],[1708528728000,245],[1708528729000,246],[1708528730000,246],[1708528731000,248],[1708528732000,249],[1708528733000,250],[1708528734000,251],[1708528735000,252],[1708528736000,252],[1708528737000,254],[1708528738000,254],[1708528739000,255],[1708528740000,256],[1708528741000,258],[1708528742000,258],[1708528743000,258],[1708528744000,258],[1708528745000,259],[1708528746000,260],[1708528747000,260],[1708528748000,262],[1708528749000,262],[1708528750000,263],[1708528751000,265],[1708528752000,265],[1708528753000,265],[1708528754000,267],[1708528755000,267],[1708528756000,267],[1708528757000,269],[1708528758000,269],[1708528759000,271],[1708528760000,271],[1708528761000,273],[1708528762000,273],[1708528763000,274],[1708528764000,276],[1708528765000,276],[1708528766000,277],[1708528767000,277],[1708528768000,279],[1708528769000,280],[1708528770000,280],[1708528771000,280],[1708528772000,280],[1708528773000,284],[1708528774000,283],[1708528775000,283],[1708528776000,283],[1708528777000,282],[1708528778000,282],[1708528779000,283],[1708528780000,292],[1708528781000,298],[1708528782000,288],[1708528783000,265],[1708528784000,244],[1708528785000,233],[1708528786000,232],[1708528787000,232],[1708528788000,234],[1708528789000,233],[1708528790000,236],[1708528791000,235],[1708528792000,237],[1708528793000,236],[1708528794000,236],[1708528795000,236],[1708528796000,238],[1708528797000,238],[1708528798000,238],[1708528799000,239],[1708528800000,241],[1708528801000,240],[1708528802000,241],[1708528803000,243],[1708528804000,244],[1708528805000,246],[1708528806000,247],[1708528807000,245],[1708528808000,248],[1708528809000,247],[1708528810000,247],[1708528811000,248],[1708528812000,247],[1708528813000,248],[1708528814000,248],[1708528815000,247],[1708528816000,247],[1708528817000,250],[1708528818000,249],[1708528819000,252],[1708528820000,251],[1708528821000,251],[1708528822000,251],[1708528823000,252],[1708528824000,254],[1708528825000,255],[1708528826000,257],[1708528827000,257],[1708528828000,258],[1708528829000,259],[1708528830000,260],[1708528831000,268],[1708528832000,267],[1708528833000,267],[1708528834000,266],[1708528835000,267],[1708528836000,265],[1708528837000,267],[1708528838000,266],[1708528839000,268],[1708528840000,259],[1708528841000,250],[1708528842000,200],[1708528843000,188],[1708528844000,174],[1708528845000,174],[1708528846000,174],[1708528847000,173],[1708528848000,171],[1708528849000,171],[1708528850000,170],[1708528851000,169],[1708528852000,168],[1708528853000,168],[1708528854000,168],[1708528855000,168],[1708528856000,167],[1708528857000,167],[1708528858000,167],[1708528859000,166],[1708528860000,165],[1708528861000,164],[1708528862000,165],[1708528863000,162],[1708528864000,160],[1708528865000,160],[1708528866000,159],[1708528867000,159],[1708528868000,175],[1708528869000,199],[1708528870000,218],[1708528871000,220],[1708528872000,252],[1708528873000,269],[1708528874000,297],[1708528875000,325],[1708528876000,339],[1708528877000,339],[1708528878000,339],[1708528879000,354],[1708528880000,362],[1708528881000,365],[1708528882000,389],[1708528883000,395],[1708528884000,427],[1708528885000,446],[1708528886000,442],[1708528887000,443],[1708528888000,441],[1708528889000,438],[1708528890000,328],[1708528891000,322],[1708528892000,322],[1708528893000,320],[1708528894000,320],[1708528895000,319],[1708528896000,319],[1708528897000,319],[1708528898000,318],[1708528899000,317],[1708528900000,316],[1708528901000,313],[1708528902000,297],[1708528903000,297],[1708528904000,297],[1708528905000,297],[1708528906000,297],[1708528907000,297],[1708528908000,297],[1708528909000,297],[1708528910000,297],[1708528911000,297],[1708528912000,297],[1708528913000,297],[1708528914000,297],[1708528915000,297],[1708528916000,296],[1708528917000,296],[1708528918000,296],[1708528919000,296],[1708528920000,296],[1708528921000,296],[1708528922000,296],[1708528923000,296],[1708528924000,296],[1708528925000,296],[1708528926000,296],[1708528927000,295],[1708528928000,280],[1708528929000,255],[1708528930000,235],[1708528931000,234],[1708528932000,201],[1708528933000,183],[1708528934000,156],[1708528935000,127],[1708528936000,112],[1708528937000,112],[1708528938000,110],[1708528939000,95],[1708528940000,85],[1708528941000,84],[1708528942000,59],[1708528943000,53],[1708528944000,19],[1708528945000,0],[1708528946000,0],[1708528947000,0],[1708528948000,0],[1708528949000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#68b65c',
name: 'débitos',
data: [
[1708528465000,0],[1708528466000,0],[1708528467000,0],[1708528468000,0],[1708528469000,0],[1708528470000,0],[1708528471000,0],[1708528472000,0],[1708528473000,0],[1708528474000,0],[1708528475000,0],[1708528476000,0],[1708528477000,0],[1708528478000,0],[1708528479000,0],[1708528480000,0],[1708528481000,0],[1708528482000,0],[1708528483000,0],[1708528484000,0],[1708528485000,0],[1708528486000,0],[1708528487000,0],[1708528488000,0],[1708528489000,0],[1708528490000,0],[1708528491000,0],[1708528492000,0],[1708528493000,0],[1708528494000,0],[1708528495000,0],[1708528496000,0],[1708528497000,0],[1708528498000,0],[1708528499000,0],[1708528500000,0],[1708528501000,0],[1708528502000,0],[1708528503000,0],[1708528504000,0],[1708528505000,0],[1708528506000,0],[1708528507000,0],[1708528508000,0],[1708528509000,0],[1708528510000,0],[1708528511000,0],[1708528512000,0],[1708528513000,0],[1708528514000,0],[1708528515000,0],[1708528516000,0],[1708528517000,0],[1708528518000,0],[1708528519000,0],[1708528520000,0],[1708528521000,0],[1708528522000,0],[1708528523000,0],[1708528524000,0],[1708528525000,0],[1708528526000,0],[1708528527000,0],[1708528528000,0],[1708528529000,0],[1708528530000,0],[1708528531000,0],[1708528532000,0],[1708528533000,0],[1708528534000,0],[1708528535000,0],[1708528536000,0],[1708528537000,0],[1708528538000,0],[1708528539000,0],[1708528540000,0],[1708528541000,0],[1708528542000,0],[1708528543000,0],[1708528544000,0],[1708528545000,0],[1708528546000,0],[1708528547000,0],[1708528548000,0],[1708528549000,0],[1708528550000,0],[1708528551000,0],[1708528552000,0],[1708528553000,0],[1708528554000,0],[1708528555000,0],[1708528556000,0],[1708528557000,0],[1708528558000,0],[1708528559000,0],[1708528560000,0],[1708528561000,0],[1708528562000,0],[1708528563000,0],[1708528564000,0],[1708528565000,0],[1708528566000,0],[1708528567000,0],[1708528568000,0],[1708528569000,0],[1708528570000,0],[1708528571000,0],[1708528572000,0],[1708528573000,0],[1708528574000,0],[1708528575000,0],[1708528576000,0],[1708528577000,0],[1708528578000,0],[1708528579000,0],[1708528580000,0],[1708528581000,0],[1708528582000,0],[1708528583000,0],[1708528584000,0],[1708528585000,0],[1708528586000,0],[1708528587000,0],[1708528588000,0],[1708528589000,0],[1708528590000,0],[1708528591000,0],[1708528592000,0],[1708528593000,0],[1708528594000,0],[1708528595000,0],[1708528596000,0],[1708528597000,0],[1708528598000,0],[1708528599000,0],[1708528600000,0],[1708528601000,0],[1708528602000,0],[1708528603000,0],[1708528604000,0],[1708528605000,0],[1708528606000,0],[1708528607000,0],[1708528608000,0],[1708528609000,0],[1708528610000,0],[1708528611000,0],[1708528612000,0],[1708528613000,0],[1708528614000,0],[1708528615000,0],[1708528616000,0],[1708528617000,0],[1708528618000,0],[1708528619000,0],[1708528620000,0],[1708528621000,0],[1708528622000,0],[1708528623000,0],[1708528624000,0],[1708528625000,0],[1708528626000,0],[1708528627000,0],[1708528628000,0],[1708528629000,0],[1708528630000,0],[1708528631000,0],[1708528632000,0],[1708528633000,0],[1708528634000,0],[1708528635000,0],[1708528636000,0],[1708528637000,0],[1708528638000,0],[1708528639000,0],[1708528640000,0],[1708528641000,0],[1708528642000,0],[1708528643000,0],[1708528644000,0],[1708528645000,0],[1708528646000,0],[1708528647000,0],[1708528648000,0],[1708528649000,1],[1708528650000,2],[1708528651000,4],[1708528652000,6],[1708528653000,7],[1708528654000,9],[1708528655000,11],[1708528656000,13],[1708528657000,15],[1708528658000,16],[1708528659000,19],[1708528660000,22],[1708528661000,24],[1708528662000,26],[1708528663000,27],[1708528664000,30],[1708528665000,31],[1708528666000,33],[1708528667000,35],[1708528668000,37],[1708528669000,39],[1708528670000,40],[1708528671000,43],[1708528672000,45],[1708528673000,47],[1708528674000,49],[1708528675000,50],[1708528676000,53],[1708528677000,55],[1708528678000,56],[1708528679000,59],[1708528680000,60],[1708528681000,63],[1708528682000,65],[1708528683000,67],[1708528684000,69],[1708528685000,71],[1708528686000,72],[1708528687000,73],[1708528688000,75],[1708528689000,78],[1708528690000,78],[1708528691000,81],[1708528692000,83],[1708528693000,84],[1708528694000,86],[1708528695000,88],[1708528696000,90],[1708528697000,92],[1708528698000,93],[1708528699000,96],[1708528700000,97],[1708528701000,99],[1708528702000,101],[1708528703000,102],[1708528704000,106],[1708528705000,108],[1708528706000,111],[1708528707000,112],[1708528708000,115],[1708528709000,117],[1708528710000,118],[1708528711000,120],[1708528712000,122],[1708528713000,124],[1708528714000,126],[1708528715000,127],[1708528716000,130],[1708528717000,131],[1708528718000,133],[1708528719000,135],[1708528720000,176],[1708528721000,241],[1708528722000,307],[1708528723000,374],[1708528724000,442],[1708528725000,473],[1708528726000,475],[1708528727000,476],[1708528728000,478],[1708528729000,481],[1708528730000,481],[1708528731000,483],[1708528732000,485],[1708528733000,486],[1708528734000,488],[1708528735000,491],[1708528736000,492],[1708528737000,494],[1708528738000,496],[1708528739000,498],[1708528740000,499],[1708528741000,501],[1708528742000,503],[1708528743000,504],[1708528744000,507],[1708528745000,508],[1708528746000,510],[1708528747000,512],[1708528748000,514],[1708528749000,516],[1708528750000,517],[1708528751000,519],[1708528752000,521],[1708528753000,524],[1708528754000,526],[1708528755000,527],[1708528756000,530],[1708528757000,531],[1708528758000,533],[1708528759000,535],[1708528760000,536],[1708528761000,539],[1708528762000,540],[1708528763000,542],[1708528764000,545],[1708528765000,544],[1708528766000,548],[1708528767000,547],[1708528768000,551],[1708528769000,553],[1708528770000,555],[1708528771000,554],[1708528772000,554],[1708528773000,554],[1708528774000,553],[1708528775000,556],[1708528776000,555],[1708528777000,556],[1708528778000,555],[1708528779000,554],[1708528780000,559],[1708528781000,556],[1708528782000,583],[1708528783000,610],[1708528784000,644],[1708528785000,660],[1708528786000,659],[1708528787000,658],[1708528788000,660],[1708528789000,659],[1708528790000,660],[1708528791000,660],[1708528792000,660],[1708528793000,660],[1708528794000,661],[1708528795000,659],[1708528796000,661],[1708528797000,659],[1708528798000,661],[1708528799000,661],[1708528800000,661],[1708528801000,661],[1708528802000,659],[1708528803000,661],[1708528804000,660],[1708528805000,660],[1708528806000,660],[1708528807000,660],[1708528808000,661],[1708528809000,659],[1708528810000,661],[1708528811000,659],[1708528812000,662],[1708528813000,660],[1708528814000,660],[1708528815000,660],[1708528816000,660],[1708528817000,661],[1708528818000,660],[1708528819000,660],[1708528820000,661],[1708528821000,660],[1708528822000,662],[1708528823000,661],[1708528824000,661],[1708528825000,662],[1708528826000,661],[1708528827000,661],[1708528828000,661],[1708528829000,660],[1708528830000,660],[1708528831000,662],[1708528832000,663],[1708528833000,663],[1708528834000,663],[1708528835000,663],[1708528836000,663],[1708528837000,664],[1708528838000,663],[1708528839000,664],[1708528840000,662],[1708528841000,632],[1708528842000,470],[1708528843000,380],[1708528844000,279],[1708528845000,236],[1708528846000,235],[1708528847000,234],[1708528848000,236],[1708528849000,234],[1708528850000,236],[1708528851000,233],[1708528852000,235],[1708528853000,234],[1708528854000,234],[1708528855000,234],[1708528856000,233],[1708528857000,236],[1708528858000,234],[1708528859000,235],[1708528860000,234],[1708528861000,234],[1708528862000,235],[1708528863000,234],[1708528864000,234],[1708528865000,235],[1708528866000,234],[1708528867000,234],[1708528868000,236],[1708528869000,236],[1708528870000,236],[1708528871000,237],[1708528872000,242],[1708528873000,244],[1708528874000,245],[1708528875000,244],[1708528876000,246],[1708528877000,245],[1708528878000,245],[1708528879000,247],[1708528880000,245],[1708528881000,246],[1708528882000,245],[1708528883000,246],[1708528884000,247],[1708528885000,247],[1708528886000,247],[1708528887000,246],[1708528888000,248],[1708528889000,242],[1708528890000,28],[1708528891000,26],[1708528892000,25],[1708528893000,25],[1708528894000,25],[1708528895000,24],[1708528896000,24],[1708528897000,24],[1708528898000,24],[1708528899000,24],[1708528900000,22],[1708528901000,18],[1708528902000,18],[1708528903000,18],[1708528904000,18],[1708528905000,18],[1708528906000,18],[1708528907000,18],[1708528908000,18],[1708528909000,18],[1708528910000,18],[1708528911000,18],[1708528912000,18],[1708528913000,18],[1708528914000,18],[1708528915000,18],[1708528916000,18],[1708528917000,17],[1708528918000,17],[1708528919000,17],[1708528920000,17],[1708528921000,17],[1708528922000,17],[1708528923000,17],[1708528924000,17],[1708528925000,17],[1708528926000,17],[1708528927000,17],[1708528928000,16],[1708528929000,15],[1708528930000,15],[1708528931000,15],[1708528932000,8],[1708528933000,6],[1708528934000,5],[1708528935000,5],[1708528936000,5],[1708528937000,5],[1708528938000,5],[1708528939000,4],[1708528940000,4],[1708528941000,4],[1708528942000,4],[1708528943000,4],[1708528944000,1],[1708528945000,1],[1708528946000,1],[1708528947000,1],[1708528948000,1],[1708528949000,1]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#f15b4f',
name: 'extratos',
data: [
[1708528465000,0],[1708528466000,0],[1708528467000,0],[1708528468000,0],[1708528469000,0],[1708528470000,0],[1708528471000,0],[1708528472000,0],[1708528473000,0],[1708528474000,0],[1708528475000,0],[1708528476000,0],[1708528477000,0],[1708528478000,0],[1708528479000,0],[1708528480000,0],[1708528481000,0],[1708528482000,0],[1708528483000,0],[1708528484000,0],[1708528485000,0],[1708528486000,0],[1708528487000,0],[1708528488000,0],[1708528489000,0],[1708528490000,0],[1708528491000,0],[1708528492000,0],[1708528493000,0],[1708528494000,0],[1708528495000,0],[1708528496000,0],[1708528497000,0],[1708528498000,0],[1708528499000,0],[1708528500000,0],[1708528501000,0],[1708528502000,0],[1708528503000,0],[1708528504000,0],[1708528505000,0],[1708528506000,0],[1708528507000,0],[1708528508000,0],[1708528509000,0],[1708528510000,0],[1708528511000,0],[1708528512000,0],[1708528513000,0],[1708528514000,0],[1708528515000,0],[1708528516000,0],[1708528517000,0],[1708528518000,0],[1708528519000,0],[1708528520000,0],[1708528521000,0],[1708528522000,0],[1708528523000,0],[1708528524000,0],[1708528525000,0],[1708528526000,0],[1708528527000,0],[1708528528000,0],[1708528529000,0],[1708528530000,0],[1708528531000,0],[1708528532000,0],[1708528533000,0],[1708528534000,0],[1708528535000,0],[1708528536000,0],[1708528537000,0],[1708528538000,0],[1708528539000,0],[1708528540000,0],[1708528541000,0],[1708528542000,0],[1708528543000,0],[1708528544000,0],[1708528545000,0],[1708528546000,0],[1708528547000,0],[1708528548000,0],[1708528549000,0],[1708528550000,0],[1708528551000,0],[1708528552000,0],[1708528553000,0],[1708528554000,0],[1708528555000,0],[1708528556000,0],[1708528557000,0],[1708528558000,0],[1708528559000,0],[1708528560000,0],[1708528561000,0],[1708528562000,0],[1708528563000,0],[1708528564000,0],[1708528565000,0],[1708528566000,0],[1708528567000,0],[1708528568000,0],[1708528569000,0],[1708528570000,0],[1708528571000,0],[1708528572000,0],[1708528573000,0],[1708528574000,0],[1708528575000,0],[1708528576000,0],[1708528577000,0],[1708528578000,0],[1708528579000,0],[1708528580000,0],[1708528581000,0],[1708528582000,0],[1708528583000,0],[1708528584000,0],[1708528585000,0],[1708528586000,0],[1708528587000,0],[1708528588000,0],[1708528589000,0],[1708528590000,0],[1708528591000,0],[1708528592000,0],[1708528593000,0],[1708528594000,0],[1708528595000,0],[1708528596000,0],[1708528597000,0],[1708528598000,0],[1708528599000,0],[1708528600000,0],[1708528601000,0],[1708528602000,0],[1708528603000,0],[1708528604000,0],[1708528605000,0],[1708528606000,0],[1708528607000,0],[1708528608000,0],[1708528609000,0],[1708528610000,0],[1708528611000,0],[1708528612000,0],[1708528613000,0],[1708528614000,0],[1708528615000,0],[1708528616000,0],[1708528617000,0],[1708528618000,0],[1708528619000,0],[1708528620000,0],[1708528621000,0],[1708528622000,0],[1708528623000,0],[1708528624000,0],[1708528625000,0],[1708528626000,0],[1708528627000,0],[1708528628000,0],[1708528629000,0],[1708528630000,0],[1708528631000,0],[1708528632000,0],[1708528633000,0],[1708528634000,0],[1708528635000,0],[1708528636000,0],[1708528637000,0],[1708528638000,0],[1708528639000,0],[1708528640000,0],[1708528641000,0],[1708528642000,0],[1708528643000,0],[1708528644000,0],[1708528645000,0],[1708528646000,0],[1708528647000,0],[1708528648000,0],[1708528649000,1],[1708528650000,2],[1708528651000,1],[1708528652000,1],[1708528653000,1],[1708528654000,1],[1708528655000,2],[1708528656000,2],[1708528657000,3],[1708528658000,3],[1708528659000,2],[1708528660000,4],[1708528661000,4],[1708528662000,4],[1708528663000,4],[1708528664000,4],[1708528665000,4],[1708528666000,4],[1708528667000,5],[1708528668000,4],[1708528669000,5],[1708528670000,4],[1708528671000,5],[1708528672000,5],[1708528673000,6],[1708528674000,6],[1708528675000,6],[1708528676000,6],[1708528677000,6],[1708528678000,6],[1708528679000,6],[1708528680000,7],[1708528681000,6],[1708528682000,6],[1708528683000,7],[1708528684000,6],[1708528685000,7],[1708528686000,7],[1708528687000,7],[1708528688000,7],[1708528689000,7],[1708528690000,7],[1708528691000,7],[1708528692000,7],[1708528693000,7],[1708528694000,7],[1708528695000,8],[1708528696000,7],[1708528697000,8],[1708528698000,8],[1708528699000,7],[1708528700000,8],[1708528701000,8],[1708528702000,8],[1708528703000,8],[1708528704000,8],[1708528705000,8],[1708528706000,8],[1708528707000,9],[1708528708000,8],[1708528709000,9],[1708528710000,8],[1708528711000,9],[1708528712000,8],[1708528713000,9],[1708528714000,9],[1708528715000,9],[1708528716000,8],[1708528717000,8],[1708528718000,8],[1708528719000,8],[1708528720000,10],[1708528721000,12],[1708528722000,16],[1708528723000,21],[1708528724000,26],[1708528725000,28],[1708528726000,28],[1708528727000,28],[1708528728000,28],[1708528729000,28],[1708528730000,28],[1708528731000,28],[1708528732000,27],[1708528733000,27],[1708528734000,27],[1708528735000,28],[1708528736000,27],[1708528737000,28],[1708528738000,28],[1708528739000,27],[1708528740000,28],[1708528741000,28],[1708528742000,28],[1708528743000,28],[1708528744000,28],[1708528745000,28],[1708528746000,28],[1708528747000,29],[1708528748000,28],[1708528749000,29],[1708528750000,28],[1708528751000,29],[1708528752000,28],[1708528753000,29],[1708528754000,29],[1708528755000,29],[1708528756000,29],[1708528757000,29],[1708528758000,29],[1708528759000,29],[1708528760000,30],[1708528761000,29],[1708528762000,29],[1708528763000,30],[1708528764000,29],[1708528765000,30],[1708528766000,30],[1708528767000,30],[1708528768000,30],[1708528769000,30],[1708528770000,30],[1708528771000,30],[1708528772000,30],[1708528773000,32],[1708528774000,32],[1708528775000,32],[1708528776000,32],[1708528777000,32],[1708528778000,33],[1708528779000,33],[1708528780000,34],[1708528781000,36],[1708528782000,34],[1708528783000,30],[1708528784000,29],[1708528785000,28],[1708528786000,28],[1708528787000,28],[1708528788000,28],[1708528789000,30],[1708528790000,31],[1708528791000,31],[1708528792000,32],[1708528793000,32],[1708528794000,33],[1708528795000,33],[1708528796000,33],[1708528797000,33],[1708528798000,34],[1708528799000,38],[1708528800000,38],[1708528801000,38],[1708528802000,38],[1708528803000,39],[1708528804000,43],[1708528805000,44],[1708528806000,45],[1708528807000,47],[1708528808000,47],[1708528809000,47],[1708528810000,48],[1708528811000,49],[1708528812000,49],[1708528813000,52],[1708528814000,52],[1708528815000,53],[1708528816000,54],[1708528817000,54],[1708528818000,54],[1708528819000,56],[1708528820000,56],[1708528821000,57],[1708528822000,58],[1708528823000,62],[1708528824000,64],[1708528825000,65],[1708528826000,67],[1708528827000,67],[1708528828000,67],[1708528829000,68],[1708528830000,69],[1708528831000,70],[1708528832000,71],[1708528833000,70],[1708528834000,72],[1708528835000,75],[1708528836000,76],[1708528837000,76],[1708528838000,75],[1708528839000,75],[1708528840000,73],[1708528841000,71],[1708528842000,66],[1708528843000,66],[1708528844000,61],[1708528845000,61],[1708528846000,62],[1708528847000,64],[1708528848000,64],[1708528849000,62],[1708528850000,61],[1708528851000,62],[1708528852000,61],[1708528853000,61],[1708528854000,60],[1708528855000,60],[1708528856000,60],[1708528857000,60],[1708528858000,59],[1708528859000,55],[1708528860000,55],[1708528861000,56],[1708528862000,56],[1708528863000,55],[1708528864000,51],[1708528865000,50],[1708528866000,49],[1708528867000,47],[1708528868000,50],[1708528869000,51],[1708528870000,50],[1708528871000,51],[1708528872000,51],[1708528873000,50],[1708528874000,53],[1708528875000,53],[1708528876000,60],[1708528877000,61],[1708528878000,62],[1708528879000,64],[1708528880000,67],[1708528881000,70],[1708528882000,73],[1708528883000,69],[1708528884000,72],[1708528885000,73],[1708528886000,71],[1708528887000,71],[1708528888000,71],[1708528889000,69],[1708528890000,59],[1708528891000,58],[1708528892000,57],[1708528893000,56],[1708528894000,54],[1708528895000,51],[1708528896000,50],[1708528897000,50],[1708528898000,50],[1708528899000,50],[1708528900000,50],[1708528901000,49],[1708528902000,49],[1708528903000,49],[1708528904000,49],[1708528905000,49],[1708528906000,48],[1708528907000,46],[1708528908000,46],[1708528909000,46],[1708528910000,46],[1708528911000,45],[1708528912000,45],[1708528913000,45],[1708528914000,45],[1708528915000,45],[1708528916000,45],[1708528917000,45],[1708528918000,45],[1708528919000,45],[1708528920000,45],[1708528921000,44],[1708528922000,44],[1708528923000,44],[1708528924000,44],[1708528925000,44],[1708528926000,44],[1708528927000,44],[1708528928000,41],[1708528929000,40],[1708528930000,40],[1708528931000,38],[1708528932000,38],[1708528933000,36],[1708528934000,33],[1708528935000,32],[1708528936000,24],[1708528937000,23],[1708528938000,22],[1708528939000,18],[1708528940000,15],[1708528941000,11],[1708528942000,7],[1708528943000,7],[1708528944000,2],[1708528945000,0],[1708528946000,0],[1708528947000,0],[1708528948000,0],[1708528949000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FFDD00',
name: 'validações',
data: [
[1708528465000,0],[1708528466000,0],[1708528467000,0],[1708528468000,0],[1708528469000,0],[1708528470000,0],[1708528471000,0],[1708528472000,0],[1708528473000,0],[1708528474000,0],[1708528475000,0],[1708528476000,0],[1708528477000,0],[1708528478000,0],[1708528479000,0],[1708528480000,0],[1708528481000,0],[1708528482000,0],[1708528483000,0],[1708528484000,0],[1708528485000,0],[1708528486000,0],[1708528487000,0],[1708528488000,0],[1708528489000,0],[1708528490000,0],[1708528491000,0],[1708528492000,0],[1708528493000,0],[1708528494000,0],[1708528495000,0],[1708528496000,0],[1708528497000,0],[1708528498000,0],[1708528499000,0],[1708528500000,0],[1708528501000,0],[1708528502000,0],[1708528503000,0],[1708528504000,0],[1708528505000,0],[1708528506000,0],[1708528507000,0],[1708528508000,0],[1708528509000,0],[1708528510000,0],[1708528511000,0],[1708528512000,0],[1708528513000,0],[1708528514000,0],[1708528515000,0],[1708528516000,0],[1708528517000,0],[1708528518000,0],[1708528519000,0],[1708528520000,0],[1708528521000,0],[1708528522000,0],[1708528523000,0],[1708528524000,0],[1708528525000,0],[1708528526000,0],[1708528527000,0],[1708528528000,0],[1708528529000,0],[1708528530000,0],[1708528531000,0],[1708528532000,0],[1708528533000,0],[1708528534000,0],[1708528535000,0],[1708528536000,0],[1708528537000,0],[1708528538000,0],[1708528539000,0],[1708528540000,0],[1708528541000,0],[1708528542000,0],[1708528543000,0],[1708528544000,0],[1708528545000,0],[1708528546000,0],[1708528547000,0],[1708528548000,0],[1708528549000,0],[1708528550000,0],[1708528551000,0],[1708528552000,0],[1708528553000,0],[1708528554000,0],[1708528555000,0],[1708528556000,0],[1708528557000,0],[1708528558000,0],[1708528559000,0],[1708528560000,0],[1708528561000,0],[1708528562000,0],[1708528563000,0],[1708528564000,0],[1708528565000,0],[1708528566000,0],[1708528567000,0],[1708528568000,0],[1708528569000,0],[1708528570000,0],[1708528571000,0],[1708528572000,0],[1708528573000,0],[1708528574000,0],[1708528575000,0],[1708528576000,0],[1708528577000,0],[1708528578000,0],[1708528579000,0],[1708528580000,0],[1708528581000,0],[1708528582000,0],[1708528583000,0],[1708528584000,0],[1708528585000,0],[1708528586000,0],[1708528587000,0],[1708528588000,5],[1708528589000,5],[1708528590000,5],[1708528591000,5],[1708528592000,5],[1708528593000,5],[1708528594000,5],[1708528595000,5],[1708528596000,5],[1708528597000,5],[1708528598000,5],[1708528599000,5],[1708528600000,5],[1708528601000,5],[1708528602000,5],[1708528603000,5],[1708528604000,5],[1708528605000,5],[1708528606000,5],[1708528607000,5],[1708528608000,5],[1708528609000,5],[1708528610000,5],[1708528611000,5],[1708528612000,5],[1708528613000,5],[1708528614000,5],[1708528615000,5],[1708528616000,5],[1708528617000,5],[1708528618000,5],[1708528619000,5],[1708528620000,5],[1708528621000,5],[1708528622000,5],[1708528623000,5],[1708528624000,5],[1708528625000,5],[1708528626000,5],[1708528627000,5],[1708528628000,5],[1708528629000,5],[1708528630000,5],[1708528631000,5],[1708528632000,5],[1708528633000,5],[1708528634000,5],[1708528635000,5],[1708528636000,5],[1708528637000,5],[1708528638000,5],[1708528639000,5],[1708528640000,5],[1708528641000,5],[1708528642000,5],[1708528643000,5],[1708528644000,5],[1708528645000,5],[1708528646000,5],[1708528647000,5],[1708528648000,5],[1708528649000,5],[1708528650000,2],[1708528651000,2],[1708528652000,2],[1708528653000,2],[1708528654000,2],[1708528655000,2],[1708528656000,2],[1708528657000,2],[1708528658000,2],[1708528659000,2],[1708528660000,2],[1708528661000,2],[1708528662000,2],[1708528663000,2],[1708528664000,2],[1708528665000,2],[1708528666000,2],[1708528667000,2],[1708528668000,2],[1708528669000,2],[1708528670000,2],[1708528671000,2],[1708528672000,2],[1708528673000,2],[1708528674000,2],[1708528675000,2],[1708528676000,2],[1708528677000,2],[1708528678000,2],[1708528679000,2],[1708528680000,2],[1708528681000,2],[1708528682000,2],[1708528683000,2],[1708528684000,2],[1708528685000,2],[1708528686000,2],[1708528687000,2],[1708528688000,2],[1708528689000,2],[1708528690000,2],[1708528691000,2],[1708528692000,2],[1708528693000,2],[1708528694000,2],[1708528695000,2],[1708528696000,2],[1708528697000,2],[1708528698000,2],[1708528699000,2],[1708528700000,2],[1708528701000,2],[1708528702000,2],[1708528703000,2],[1708528704000,2],[1708528705000,2],[1708528706000,2],[1708528707000,2],[1708528708000,2],[1708528709000,2],[1708528710000,0],[1708528711000,0],[1708528712000,0],[1708528713000,0],[1708528714000,0],[1708528715000,0],[1708528716000,0],[1708528717000,0],[1708528718000,0],[1708528719000,0],[1708528720000,0],[1708528721000,0],[1708528722000,0],[1708528723000,0],[1708528724000,0],[1708528725000,0],[1708528726000,0],[1708528727000,0],[1708528728000,0],[1708528729000,0],[1708528730000,0],[1708528731000,0],[1708528732000,0],[1708528733000,0],[1708528734000,0],[1708528735000,0],[1708528736000,0],[1708528737000,0],[1708528738000,0],[1708528739000,0],[1708528740000,0],[1708528741000,0],[1708528742000,0],[1708528743000,0],[1708528744000,0],[1708528745000,0],[1708528746000,0],[1708528747000,0],[1708528748000,0],[1708528749000,0],[1708528750000,0],[1708528751000,0],[1708528752000,0],[1708528753000,0],[1708528754000,0],[1708528755000,0],[1708528756000,0],[1708528757000,0],[1708528758000,0],[1708528759000,0],[1708528760000,0],[1708528761000,0],[1708528762000,0],[1708528763000,0],[1708528764000,0],[1708528765000,0],[1708528766000,0],[1708528767000,0],[1708528768000,0],[1708528769000,0],[1708528770000,0],[1708528771000,0],[1708528772000,0],[1708528773000,0],[1708528774000,0],[1708528775000,0],[1708528776000,0],[1708528777000,0],[1708528778000,0],[1708528779000,0],[1708528780000,0],[1708528781000,0],[1708528782000,0],[1708528783000,0],[1708528784000,0],[1708528785000,0],[1708528786000,0],[1708528787000,0],[1708528788000,0],[1708528789000,0],[1708528790000,0],[1708528791000,0],[1708528792000,0],[1708528793000,0],[1708528794000,0],[1708528795000,0],[1708528796000,0],[1708528797000,0],[1708528798000,0],[1708528799000,0],[1708528800000,0],[1708528801000,0],[1708528802000,0],[1708528803000,0],[1708528804000,0],[1708528805000,0],[1708528806000,0],[1708528807000,0],[1708528808000,0],[1708528809000,0],[1708528810000,0],[1708528811000,0],[1708528812000,0],[1708528813000,0],[1708528814000,0],[1708528815000,0],[1708528816000,0],[1708528817000,0],[1708528818000,0],[1708528819000,0],[1708528820000,0],[1708528821000,0],[1708528822000,0],[1708528823000,0],[1708528824000,0],[1708528825000,0],[1708528826000,0],[1708528827000,0],[1708528828000,0],[1708528829000,0],[1708528830000,0],[1708528831000,0],[1708528832000,0],[1708528833000,0],[1708528834000,0],[1708528835000,0],[1708528836000,0],[1708528837000,0],[1708528838000,0],[1708528839000,0],[1708528840000,0],[1708528841000,0],[1708528842000,0],[1708528843000,0],[1708528844000,0],[1708528845000,0],[1708528846000,0],[1708528847000,0],[1708528848000,0],[1708528849000,0],[1708528850000,0],[1708528851000,0],[1708528852000,0],[1708528853000,0],[1708528854000,0],[1708528855000,0],[1708528856000,0],[1708528857000,0],[1708528858000,0],[1708528859000,0],[1708528860000,0],[1708528861000,0],[1708528862000,0],[1708528863000,0],[1708528864000,0],[1708528865000,0],[1708528866000,0],[1708528867000,0],[1708528868000,0],[1708528869000,0],[1708528870000,0],[1708528871000,0],[1708528872000,0],[1708528873000,0],[1708528874000,0],[1708528875000,0],[1708528876000,0],[1708528877000,0],[1708528878000,0],[1708528879000,0],[1708528880000,0],[1708528881000,0],[1708528882000,0],[1708528883000,0],[1708528884000,0],[1708528885000,0],[1708528886000,0],[1708528887000,0],[1708528888000,0],[1708528889000,0],[1708528890000,0],[1708528891000,0],[1708528892000,0],[1708528893000,0],[1708528894000,0],[1708528895000,0],[1708528896000,0],[1708528897000,0],[1708528898000,0],[1708528899000,0],[1708528900000,0],[1708528901000,0],[1708528902000,0],[1708528903000,0],[1708528904000,0],[1708528905000,0],[1708528906000,0],[1708528907000,0],[1708528908000,0],[1708528909000,0],[1708528910000,0],[1708528911000,0],[1708528912000,0],[1708528913000,0],[1708528914000,0],[1708528915000,0],[1708528916000,0],[1708528917000,0],[1708528918000,0],[1708528919000,0],[1708528920000,0],[1708528921000,0],[1708528922000,0],[1708528923000,0],[1708528924000,0],[1708528925000,0],[1708528926000,0],[1708528927000,0],[1708528928000,0],[1708528929000,0],[1708528930000,0],[1708528931000,0],[1708528932000,0],[1708528933000,0],[1708528934000,0],[1708528935000,0],[1708528936000,0],[1708528937000,0],[1708528938000,0],[1708528939000,0],[1708528940000,0],[1708528941000,0],[1708528942000,0],[1708528943000,0],[1708528944000,0],[1708528945000,0],[1708528946000,0],[1708528947000,0],[1708528948000,0],[1708528949000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00D5FF',
name: 'validação HTTP 404',
data: [
[1708528465000,0],[1708528466000,0],[1708528467000,0],[1708528468000,0],[1708528469000,0],[1708528470000,0],[1708528471000,0],[1708528472000,0],[1708528473000,0],[1708528474000,0],[1708528475000,0],[1708528476000,0],[1708528477000,0],[1708528478000,0],[1708528479000,0],[1708528480000,0],[1708528481000,0],[1708528482000,0],[1708528483000,0],[1708528484000,0],[1708528485000,0],[1708528486000,0],[1708528487000,0],[1708528488000,0],[1708528489000,0],[1708528490000,0],[1708528491000,0],[1708528492000,0],[1708528493000,0],[1708528494000,0],[1708528495000,0],[1708528496000,0],[1708528497000,0],[1708528498000,0],[1708528499000,0],[1708528500000,0],[1708528501000,0],[1708528502000,0],[1708528503000,0],[1708528504000,0],[1708528505000,0],[1708528506000,0],[1708528507000,0],[1708528508000,0],[1708528509000,0],[1708528510000,0],[1708528511000,0],[1708528512000,0],[1708528513000,0],[1708528514000,0],[1708528515000,0],[1708528516000,0],[1708528517000,0],[1708528518000,0],[1708528519000,0],[1708528520000,0],[1708528521000,0],[1708528522000,0],[1708528523000,0],[1708528524000,0],[1708528525000,0],[1708528526000,0],[1708528527000,0],[1708528528000,0],[1708528529000,0],[1708528530000,0],[1708528531000,0],[1708528532000,0],[1708528533000,0],[1708528534000,0],[1708528535000,0],[1708528536000,0],[1708528537000,0],[1708528538000,0],[1708528539000,0],[1708528540000,0],[1708528541000,0],[1708528542000,0],[1708528543000,0],[1708528544000,0],[1708528545000,0],[1708528546000,0],[1708528547000,0],[1708528548000,0],[1708528549000,0],[1708528550000,0],[1708528551000,0],[1708528552000,0],[1708528553000,0],[1708528554000,0],[1708528555000,0],[1708528556000,0],[1708528557000,0],[1708528558000,0],[1708528559000,0],[1708528560000,0],[1708528561000,0],[1708528562000,0],[1708528563000,0],[1708528564000,0],[1708528565000,0],[1708528566000,0],[1708528567000,0],[1708528568000,0],[1708528569000,0],[1708528570000,0],[1708528571000,0],[1708528572000,0],[1708528573000,0],[1708528574000,0],[1708528575000,0],[1708528576000,0],[1708528577000,0],[1708528578000,0],[1708528579000,0],[1708528580000,0],[1708528581000,0],[1708528582000,0],[1708528583000,0],[1708528584000,0],[1708528585000,0],[1708528586000,0],[1708528587000,0],[1708528588000,1],[1708528589000,1],[1708528590000,1],[1708528591000,1],[1708528592000,1],[1708528593000,1],[1708528594000,1],[1708528595000,1],[1708528596000,1],[1708528597000,1],[1708528598000,1],[1708528599000,1],[1708528600000,1],[1708528601000,1],[1708528602000,1],[1708528603000,1],[1708528604000,1],[1708528605000,1],[1708528606000,1],[1708528607000,1],[1708528608000,1],[1708528609000,1],[1708528610000,1],[1708528611000,1],[1708528612000,1],[1708528613000,1],[1708528614000,1],[1708528615000,1],[1708528616000,1],[1708528617000,1],[1708528618000,1],[1708528619000,1],[1708528620000,1],[1708528621000,1],[1708528622000,1],[1708528623000,1],[1708528624000,1],[1708528625000,1],[1708528626000,1],[1708528627000,1],[1708528628000,1],[1708528629000,1],[1708528630000,1],[1708528631000,1],[1708528632000,1],[1708528633000,1],[1708528634000,1],[1708528635000,1],[1708528636000,1],[1708528637000,1],[1708528638000,1],[1708528639000,1],[1708528640000,1],[1708528641000,1],[1708528642000,1],[1708528643000,1],[1708528644000,1],[1708528645000,1],[1708528646000,1],[1708528647000,1],[1708528648000,1],[1708528649000,0],[1708528650000,0],[1708528651000,0],[1708528652000,0],[1708528653000,0],[1708528654000,0],[1708528655000,0],[1708528656000,0],[1708528657000,0],[1708528658000,0],[1708528659000,0],[1708528660000,0],[1708528661000,0],[1708528662000,0],[1708528663000,0],[1708528664000,0],[1708528665000,0],[1708528666000,0],[1708528667000,0],[1708528668000,0],[1708528669000,0],[1708528670000,0],[1708528671000,0],[1708528672000,0],[1708528673000,0],[1708528674000,0],[1708528675000,0],[1708528676000,0],[1708528677000,0],[1708528678000,0],[1708528679000,0],[1708528680000,0],[1708528681000,0],[1708528682000,0],[1708528683000,0],[1708528684000,0],[1708528685000,0],[1708528686000,0],[1708528687000,0],[1708528688000,0],[1708528689000,0],[1708528690000,0],[1708528691000,0],[1708528692000,0],[1708528693000,0],[1708528694000,0],[1708528695000,0],[1708528696000,0],[1708528697000,0],[1708528698000,0],[1708528699000,0],[1708528700000,0],[1708528701000,0],[1708528702000,0],[1708528703000,0],[1708528704000,0],[1708528705000,0],[1708528706000,0],[1708528707000,0],[1708528708000,0],[1708528709000,0],[1708528710000,0],[1708528711000,0],[1708528712000,0],[1708528713000,0],[1708528714000,0],[1708528715000,0],[1708528716000,0],[1708528717000,0],[1708528718000,0],[1708528719000,0],[1708528720000,0],[1708528721000,0],[1708528722000,0],[1708528723000,0],[1708528724000,0],[1708528725000,0],[1708528726000,0],[1708528727000,0],[1708528728000,0],[1708528729000,0],[1708528730000,0],[1708528731000,0],[1708528732000,0],[1708528733000,0],[1708528734000,0],[1708528735000,0],[1708528736000,0],[1708528737000,0],[1708528738000,0],[1708528739000,0],[1708528740000,0],[1708528741000,0],[1708528742000,0],[1708528743000,0],[1708528744000,0],[1708528745000,0],[1708528746000,0],[1708528747000,0],[1708528748000,0],[1708528749000,0],[1708528750000,0],[1708528751000,0],[1708528752000,0],[1708528753000,0],[1708528754000,0],[1708528755000,0],[1708528756000,0],[1708528757000,0],[1708528758000,0],[1708528759000,0],[1708528760000,0],[1708528761000,0],[1708528762000,0],[1708528763000,0],[1708528764000,0],[1708528765000,0],[1708528766000,0],[1708528767000,0],[1708528768000,0],[1708528769000,0],[1708528770000,0],[1708528771000,0],[1708528772000,0],[1708528773000,0],[1708528774000,0],[1708528775000,0],[1708528776000,0],[1708528777000,0],[1708528778000,0],[1708528779000,0],[1708528780000,0],[1708528781000,0],[1708528782000,0],[1708528783000,0],[1708528784000,0],[1708528785000,0],[1708528786000,0],[1708528787000,0],[1708528788000,0],[1708528789000,0],[1708528790000,0],[1708528791000,0],[1708528792000,0],[1708528793000,0],[1708528794000,0],[1708528795000,0],[1708528796000,0],[1708528797000,0],[1708528798000,0],[1708528799000,0],[1708528800000,0],[1708528801000,0],[1708528802000,0],[1708528803000,0],[1708528804000,0],[1708528805000,0],[1708528806000,0],[1708528807000,0],[1708528808000,0],[1708528809000,0],[1708528810000,0],[1708528811000,0],[1708528812000,0],[1708528813000,0],[1708528814000,0],[1708528815000,0],[1708528816000,0],[1708528817000,0],[1708528818000,0],[1708528819000,0],[1708528820000,0],[1708528821000,0],[1708528822000,0],[1708528823000,0],[1708528824000,0],[1708528825000,0],[1708528826000,0],[1708528827000,0],[1708528828000,0],[1708528829000,0],[1708528830000,0],[1708528831000,0],[1708528832000,0],[1708528833000,0],[1708528834000,0],[1708528835000,0],[1708528836000,0],[1708528837000,0],[1708528838000,0],[1708528839000,0],[1708528840000,0],[1708528841000,0],[1708528842000,0],[1708528843000,0],[1708528844000,0],[1708528845000,0],[1708528846000,0],[1708528847000,0],[1708528848000,0],[1708528849000,0],[1708528850000,0],[1708528851000,0],[1708528852000,0],[1708528853000,0],[1708528854000,0],[1708528855000,0],[1708528856000,0],[1708528857000,0],[1708528858000,0],[1708528859000,0],[1708528860000,0],[1708528861000,0],[1708528862000,0],[1708528863000,0],[1708528864000,0],[1708528865000,0],[1708528866000,0],[1708528867000,0],[1708528868000,0],[1708528869000,0],[1708528870000,0],[1708528871000,0],[1708528872000,0],[1708528873000,0],[1708528874000,0],[1708528875000,0],[1708528876000,0],[1708528877000,0],[1708528878000,0],[1708528879000,0],[1708528880000,0],[1708528881000,0],[1708528882000,0],[1708528883000,0],[1708528884000,0],[1708528885000,0],[1708528886000,0],[1708528887000,0],[1708528888000,0],[1708528889000,0],[1708528890000,0],[1708528891000,0],[1708528892000,0],[1708528893000,0],[1708528894000,0],[1708528895000,0],[1708528896000,0],[1708528897000,0],[1708528898000,0],[1708528899000,0],[1708528900000,0],[1708528901000,0],[1708528902000,0],[1708528903000,0],[1708528904000,0],[1708528905000,0],[1708528906000,0],[1708528907000,0],[1708528908000,0],[1708528909000,0],[1708528910000,0],[1708528911000,0],[1708528912000,0],[1708528913000,0],[1708528914000,0],[1708528915000,0],[1708528916000,0],[1708528917000,0],[1708528918000,0],[1708528919000,0],[1708528920000,0],[1708528921000,0],[1708528922000,0],[1708528923000,0],[1708528924000,0],[1708528925000,0],[1708528926000,0],[1708528927000,0],[1708528928000,0],[1708528929000,0],[1708528930000,0],[1708528931000,0],[1708528932000,0],[1708528933000,0],[1708528934000,0],[1708528935000,0],[1708528936000,0],[1708528937000,0],[1708528938000,0],[1708528939000,0],[1708528940000,0],[1708528941000,0],[1708528942000,0],[1708528943000,0],[1708528944000,0],[1708528945000,0],[1708528946000,0],[1708528947000,0],[1708528948000,0],[1708528949000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00FF00',
name: 'validação concorrência saldo - 0',
data: [
[1708528465000,0],[1708528466000,0],[1708528467000,0],[1708528468000,0],[1708528469000,0],[1708528470000,0],[1708528471000,0],[1708528472000,0],[1708528473000,0],[1708528474000,0],[1708528475000,0],[1708528476000,0],[1708528477000,0],[1708528478000,0],[1708528479000,0],[1708528480000,0],[1708528481000,0],[1708528482000,0],[1708528483000,0],[1708528484000,0],[1708528485000,0],[1708528486000,0],[1708528487000,0],[1708528488000,0],[1708528489000,0],[1708528490000,0],[1708528491000,0],[1708528492000,0],[1708528493000,0],[1708528494000,0],[1708528495000,0],[1708528496000,0],[1708528497000,0],[1708528498000,0],[1708528499000,0],[1708528500000,0],[1708528501000,0],[1708528502000,0],[1708528503000,0],[1708528504000,0],[1708528505000,0],[1708528506000,0],[1708528507000,0],[1708528508000,0],[1708528509000,0],[1708528510000,0],[1708528511000,0],[1708528512000,0],[1708528513000,0],[1708528514000,0],[1708528515000,0],[1708528516000,0],[1708528517000,0],[1708528518000,0],[1708528519000,0],[1708528520000,0],[1708528521000,0],[1708528522000,0],[1708528523000,0],[1708528524000,0],[1708528525000,0],[1708528526000,0],[1708528527000,0],[1708528528000,0],[1708528529000,0],[1708528530000,0],[1708528531000,0],[1708528532000,0],[1708528533000,0],[1708528534000,0],[1708528535000,0],[1708528536000,0],[1708528537000,0],[1708528538000,0],[1708528539000,0],[1708528540000,0],[1708528541000,0],[1708528542000,0],[1708528543000,0],[1708528544000,0],[1708528545000,0],[1708528546000,0],[1708528547000,0],[1708528548000,0],[1708528549000,0],[1708528550000,0],[1708528551000,0],[1708528552000,0],[1708528553000,0],[1708528554000,0],[1708528555000,0],[1708528556000,0],[1708528557000,0],[1708528558000,0],[1708528559000,0],[1708528560000,0],[1708528561000,0],[1708528562000,0],[1708528563000,0],[1708528564000,0],[1708528565000,0],[1708528566000,0],[1708528567000,0],[1708528568000,0],[1708528569000,0],[1708528570000,0],[1708528571000,0],[1708528572000,0],[1708528573000,0],[1708528574000,0],[1708528575000,0],[1708528576000,0],[1708528577000,0],[1708528578000,0],[1708528579000,0],[1708528580000,0],[1708528581000,0],[1708528582000,0],[1708528583000,0],[1708528584000,0],[1708528585000,0],[1708528586000,0],[1708528587000,1],[1708528588000,0],[1708528589000,0],[1708528590000,0],[1708528591000,0],[1708528592000,0],[1708528593000,0],[1708528594000,0],[1708528595000,0],[1708528596000,0],[1708528597000,0],[1708528598000,0],[1708528599000,0],[1708528600000,0],[1708528601000,0],[1708528602000,0],[1708528603000,0],[1708528604000,0],[1708528605000,0],[1708528606000,0],[1708528607000,0],[1708528608000,0],[1708528609000,0],[1708528610000,0],[1708528611000,0],[1708528612000,0],[1708528613000,0],[1708528614000,0],[1708528615000,0],[1708528616000,0],[1708528617000,0],[1708528618000,0],[1708528619000,0],[1708528620000,0],[1708528621000,0],[1708528622000,0],[1708528623000,0],[1708528624000,0],[1708528625000,0],[1708528626000,0],[1708528627000,0],[1708528628000,0],[1708528629000,0],[1708528630000,0],[1708528631000,0],[1708528632000,0],[1708528633000,0],[1708528634000,0],[1708528635000,0],[1708528636000,0],[1708528637000,0],[1708528638000,0],[1708528639000,0],[1708528640000,0],[1708528641000,0],[1708528642000,0],[1708528643000,0],[1708528644000,0],[1708528645000,0],[1708528646000,0],[1708528647000,0],[1708528648000,0],[1708528649000,0],[1708528650000,0],[1708528651000,0],[1708528652000,0],[1708528653000,0],[1708528654000,0],[1708528655000,0],[1708528656000,0],[1708528657000,0],[1708528658000,0],[1708528659000,0],[1708528660000,0],[1708528661000,0],[1708528662000,0],[1708528663000,0],[1708528664000,0],[1708528665000,0],[1708528666000,0],[1708528667000,0],[1708528668000,0],[1708528669000,0],[1708528670000,0],[1708528671000,0],[1708528672000,0],[1708528673000,0],[1708528674000,0],[1708528675000,0],[1708528676000,0],[1708528677000,0],[1708528678000,0],[1708528679000,0],[1708528680000,0],[1708528681000,0],[1708528682000,0],[1708528683000,0],[1708528684000,0],[1708528685000,0],[1708528686000,0],[1708528687000,0],[1708528688000,0],[1708528689000,0],[1708528690000,0],[1708528691000,0],[1708528692000,0],[1708528693000,0],[1708528694000,0],[1708528695000,0],[1708528696000,0],[1708528697000,0],[1708528698000,0],[1708528699000,0],[1708528700000,0],[1708528701000,0],[1708528702000,0],[1708528703000,0],[1708528704000,0],[1708528705000,0],[1708528706000,0],[1708528707000,0],[1708528708000,0],[1708528709000,0],[1708528710000,0],[1708528711000,0],[1708528712000,0],[1708528713000,0],[1708528714000,0],[1708528715000,0],[1708528716000,0],[1708528717000,0],[1708528718000,0],[1708528719000,0],[1708528720000,0],[1708528721000,0],[1708528722000,0],[1708528723000,0],[1708528724000,0],[1708528725000,0],[1708528726000,0],[1708528727000,0],[1708528728000,0],[1708528729000,0],[1708528730000,0],[1708528731000,0],[1708528732000,0],[1708528733000,0],[1708528734000,0],[1708528735000,0],[1708528736000,0],[1708528737000,0],[1708528738000,0],[1708528739000,0],[1708528740000,0],[1708528741000,0],[1708528742000,0],[1708528743000,0],[1708528744000,0],[1708528745000,0],[1708528746000,0],[1708528747000,0],[1708528748000,0],[1708528749000,0],[1708528750000,0],[1708528751000,0],[1708528752000,0],[1708528753000,0],[1708528754000,0],[1708528755000,0],[1708528756000,0],[1708528757000,0],[1708528758000,0],[1708528759000,0],[1708528760000,0],[1708528761000,0],[1708528762000,0],[1708528763000,0],[1708528764000,0],[1708528765000,0],[1708528766000,0],[1708528767000,0],[1708528768000,0],[1708528769000,0],[1708528770000,0],[1708528771000,0],[1708528772000,0],[1708528773000,0],[1708528774000,0],[1708528775000,0],[1708528776000,0],[1708528777000,0],[1708528778000,0],[1708528779000,0],[1708528780000,0],[1708528781000,0],[1708528782000,0],[1708528783000,0],[1708528784000,0],[1708528785000,0],[1708528786000,0],[1708528787000,0],[1708528788000,0],[1708528789000,0],[1708528790000,0],[1708528791000,0],[1708528792000,0],[1708528793000,0],[1708528794000,0],[1708528795000,0],[1708528796000,0],[1708528797000,0],[1708528798000,0],[1708528799000,0],[1708528800000,0],[1708528801000,0],[1708528802000,0],[1708528803000,0],[1708528804000,0],[1708528805000,0],[1708528806000,0],[1708528807000,0],[1708528808000,0],[1708528809000,0],[1708528810000,0],[1708528811000,0],[1708528812000,0],[1708528813000,0],[1708528814000,0],[1708528815000,0],[1708528816000,0],[1708528817000,0],[1708528818000,0],[1708528819000,0],[1708528820000,0],[1708528821000,0],[1708528822000,0],[1708528823000,0],[1708528824000,0],[1708528825000,0],[1708528826000,0],[1708528827000,0],[1708528828000,0],[1708528829000,0],[1708528830000,0],[1708528831000,0],[1708528832000,0],[1708528833000,0],[1708528834000,0],[1708528835000,0],[1708528836000,0],[1708528837000,0],[1708528838000,0],[1708528839000,0],[1708528840000,0],[1708528841000,0],[1708528842000,0],[1708528843000,0],[1708528844000,0],[1708528845000,0],[1708528846000,0],[1708528847000,0],[1708528848000,0],[1708528849000,0],[1708528850000,0],[1708528851000,0],[1708528852000,0],[1708528853000,0],[1708528854000,0],[1708528855000,0],[1708528856000,0],[1708528857000,0],[1708528858000,0],[1708528859000,0],[1708528860000,0],[1708528861000,0],[1708528862000,0],[1708528863000,0],[1708528864000,0],[1708528865000,0],[1708528866000,0],[1708528867000,0],[1708528868000,0],[1708528869000,0],[1708528870000,0],[1708528871000,0],[1708528872000,0],[1708528873000,0],[1708528874000,0],[1708528875000,0],[1708528876000,0],[1708528877000,0],[1708528878000,0],[1708528879000,0],[1708528880000,0],[1708528881000,0],[1708528882000,0],[1708528883000,0],[1708528884000,0],[1708528885000,0],[1708528886000,0],[1708528887000,0],[1708528888000,0],[1708528889000,0],[1708528890000,0],[1708528891000,0],[1708528892000,0],[1708528893000,0],[1708528894000,0],[1708528895000,0],[1708528896000,0],[1708528897000,0],[1708528898000,0],[1708528899000,0],[1708528900000,0],[1708528901000,0],[1708528902000,0],[1708528903000,0],[1708528904000,0],[1708528905000,0],[1708528906000,0],[1708528907000,0],[1708528908000,0],[1708528909000,0],[1708528910000,0],[1708528911000,0],[1708528912000,0],[1708528913000,0],[1708528914000,0],[1708528915000,0],[1708528916000,0],[1708528917000,0],[1708528918000,0],[1708528919000,0],[1708528920000,0],[1708528921000,0],[1708528922000,0],[1708528923000,0],[1708528924000,0],[1708528925000,0],[1708528926000,0],[1708528927000,0],[1708528928000,0],[1708528929000,0],[1708528930000,0],[1708528931000,0],[1708528932000,0],[1708528933000,0],[1708528934000,0],[1708528935000,0],[1708528936000,0],[1708528937000,0],[1708528938000,0],[1708528939000,0],[1708528940000,0],[1708528941000,0],[1708528942000,0],[1708528943000,0],[1708528944000,0],[1708528945000,0],[1708528946000,0],[1708528947000,0],[1708528948000,0],[1708528949000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#9D00FF',
name: 'validação concorrência transações - c',
data: [
[1708528465000,0],[1708528466000,0],[1708528467000,0],[1708528468000,0],[1708528469000,0],[1708528470000,0],[1708528471000,0],[1708528472000,0],[1708528473000,0],[1708528474000,0],[1708528475000,0],[1708528476000,0],[1708528477000,0],[1708528478000,0],[1708528479000,0],[1708528480000,0],[1708528481000,0],[1708528482000,0],[1708528483000,0],[1708528484000,0],[1708528485000,0],[1708528486000,0],[1708528487000,0],[1708528488000,0],[1708528489000,0],[1708528490000,0],[1708528491000,0],[1708528492000,0],[1708528493000,0],[1708528494000,0],[1708528495000,0],[1708528496000,0],[1708528497000,0],[1708528498000,0],[1708528499000,0],[1708528500000,0],[1708528501000,0],[1708528502000,0],[1708528503000,0],[1708528504000,0],[1708528505000,0],[1708528506000,0],[1708528507000,0],[1708528508000,0],[1708528509000,0],[1708528510000,0],[1708528511000,0],[1708528512000,0],[1708528513000,0],[1708528514000,0],[1708528515000,0],[1708528516000,0],[1708528517000,0],[1708528518000,0],[1708528519000,0],[1708528520000,0],[1708528521000,0],[1708528522000,0],[1708528523000,0],[1708528524000,0],[1708528525000,0],[1708528526000,25],[1708528527000,25],[1708528528000,13],[1708528529000,13],[1708528530000,13],[1708528531000,13],[1708528532000,13],[1708528533000,13],[1708528534000,13],[1708528535000,13],[1708528536000,13],[1708528537000,13],[1708528538000,13],[1708528539000,13],[1708528540000,13],[1708528541000,13],[1708528542000,13],[1708528543000,13],[1708528544000,13],[1708528545000,13],[1708528546000,13],[1708528547000,13],[1708528548000,13],[1708528549000,13],[1708528550000,13],[1708528551000,13],[1708528552000,13],[1708528553000,13],[1708528554000,13],[1708528555000,13],[1708528556000,13],[1708528557000,13],[1708528558000,13],[1708528559000,13],[1708528560000,13],[1708528561000,13],[1708528562000,13],[1708528563000,13],[1708528564000,13],[1708528565000,13],[1708528566000,13],[1708528567000,13],[1708528568000,13],[1708528569000,13],[1708528570000,13],[1708528571000,13],[1708528572000,13],[1708528573000,13],[1708528574000,13],[1708528575000,13],[1708528576000,13],[1708528577000,13],[1708528578000,13],[1708528579000,13],[1708528580000,13],[1708528581000,13],[1708528582000,13],[1708528583000,13],[1708528584000,13],[1708528585000,13],[1708528586000,13],[1708528587000,0],[1708528588000,0],[1708528589000,0],[1708528590000,0],[1708528591000,0],[1708528592000,0],[1708528593000,0],[1708528594000,0],[1708528595000,0],[1708528596000,0],[1708528597000,0],[1708528598000,0],[1708528599000,0],[1708528600000,0],[1708528601000,0],[1708528602000,0],[1708528603000,0],[1708528604000,0],[1708528605000,0],[1708528606000,0],[1708528607000,0],[1708528608000,0],[1708528609000,0],[1708528610000,0],[1708528611000,0],[1708528612000,0],[1708528613000,0],[1708528614000,0],[1708528615000,0],[1708528616000,0],[1708528617000,0],[1708528618000,0],[1708528619000,0],[1708528620000,0],[1708528621000,0],[1708528622000,0],[1708528623000,0],[1708528624000,0],[1708528625000,0],[1708528626000,0],[1708528627000,0],[1708528628000,0],[1708528629000,0],[1708528630000,0],[1708528631000,0],[1708528632000,0],[1708528633000,0],[1708528634000,0],[1708528635000,0],[1708528636000,0],[1708528637000,0],[1708528638000,0],[1708528639000,0],[1708528640000,0],[1708528641000,0],[1708528642000,0],[1708528643000,0],[1708528644000,0],[1708528645000,0],[1708528646000,0],[1708528647000,0],[1708528648000,0],[1708528649000,0],[1708528650000,0],[1708528651000,0],[1708528652000,0],[1708528653000,0],[1708528654000,0],[1708528655000,0],[1708528656000,0],[1708528657000,0],[1708528658000,0],[1708528659000,0],[1708528660000,0],[1708528661000,0],[1708528662000,0],[1708528663000,0],[1708528664000,0],[1708528665000,0],[1708528666000,0],[1708528667000,0],[1708528668000,0],[1708528669000,0],[1708528670000,0],[1708528671000,0],[1708528672000,0],[1708528673000,0],[1708528674000,0],[1708528675000,0],[1708528676000,0],[1708528677000,0],[1708528678000,0],[1708528679000,0],[1708528680000,0],[1708528681000,0],[1708528682000,0],[1708528683000,0],[1708528684000,0],[1708528685000,0],[1708528686000,0],[1708528687000,0],[1708528688000,0],[1708528689000,0],[1708528690000,0],[1708528691000,0],[1708528692000,0],[1708528693000,0],[1708528694000,0],[1708528695000,0],[1708528696000,0],[1708528697000,0],[1708528698000,0],[1708528699000,0],[1708528700000,0],[1708528701000,0],[1708528702000,0],[1708528703000,0],[1708528704000,0],[1708528705000,0],[1708528706000,0],[1708528707000,0],[1708528708000,0],[1708528709000,0],[1708528710000,0],[1708528711000,0],[1708528712000,0],[1708528713000,0],[1708528714000,0],[1708528715000,0],[1708528716000,0],[1708528717000,0],[1708528718000,0],[1708528719000,0],[1708528720000,0],[1708528721000,0],[1708528722000,0],[1708528723000,0],[1708528724000,0],[1708528725000,0],[1708528726000,0],[1708528727000,0],[1708528728000,0],[1708528729000,0],[1708528730000,0],[1708528731000,0],[1708528732000,0],[1708528733000,0],[1708528734000,0],[1708528735000,0],[1708528736000,0],[1708528737000,0],[1708528738000,0],[1708528739000,0],[1708528740000,0],[1708528741000,0],[1708528742000,0],[1708528743000,0],[1708528744000,0],[1708528745000,0],[1708528746000,0],[1708528747000,0],[1708528748000,0],[1708528749000,0],[1708528750000,0],[1708528751000,0],[1708528752000,0],[1708528753000,0],[1708528754000,0],[1708528755000,0],[1708528756000,0],[1708528757000,0],[1708528758000,0],[1708528759000,0],[1708528760000,0],[1708528761000,0],[1708528762000,0],[1708528763000,0],[1708528764000,0],[1708528765000,0],[1708528766000,0],[1708528767000,0],[1708528768000,0],[1708528769000,0],[1708528770000,0],[1708528771000,0],[1708528772000,0],[1708528773000,0],[1708528774000,0],[1708528775000,0],[1708528776000,0],[1708528777000,0],[1708528778000,0],[1708528779000,0],[1708528780000,0],[1708528781000,0],[1708528782000,0],[1708528783000,0],[1708528784000,0],[1708528785000,0],[1708528786000,0],[1708528787000,0],[1708528788000,0],[1708528789000,0],[1708528790000,0],[1708528791000,0],[1708528792000,0],[1708528793000,0],[1708528794000,0],[1708528795000,0],[1708528796000,0],[1708528797000,0],[1708528798000,0],[1708528799000,0],[1708528800000,0],[1708528801000,0],[1708528802000,0],[1708528803000,0],[1708528804000,0],[1708528805000,0],[1708528806000,0],[1708528807000,0],[1708528808000,0],[1708528809000,0],[1708528810000,0],[1708528811000,0],[1708528812000,0],[1708528813000,0],[1708528814000,0],[1708528815000,0],[1708528816000,0],[1708528817000,0],[1708528818000,0],[1708528819000,0],[1708528820000,0],[1708528821000,0],[1708528822000,0],[1708528823000,0],[1708528824000,0],[1708528825000,0],[1708528826000,0],[1708528827000,0],[1708528828000,0],[1708528829000,0],[1708528830000,0],[1708528831000,0],[1708528832000,0],[1708528833000,0],[1708528834000,0],[1708528835000,0],[1708528836000,0],[1708528837000,0],[1708528838000,0],[1708528839000,0],[1708528840000,0],[1708528841000,0],[1708528842000,0],[1708528843000,0],[1708528844000,0],[1708528845000,0],[1708528846000,0],[1708528847000,0],[1708528848000,0],[1708528849000,0],[1708528850000,0],[1708528851000,0],[1708528852000,0],[1708528853000,0],[1708528854000,0],[1708528855000,0],[1708528856000,0],[1708528857000,0],[1708528858000,0],[1708528859000,0],[1708528860000,0],[1708528861000,0],[1708528862000,0],[1708528863000,0],[1708528864000,0],[1708528865000,0],[1708528866000,0],[1708528867000,0],[1708528868000,0],[1708528869000,0],[1708528870000,0],[1708528871000,0],[1708528872000,0],[1708528873000,0],[1708528874000,0],[1708528875000,0],[1708528876000,0],[1708528877000,0],[1708528878000,0],[1708528879000,0],[1708528880000,0],[1708528881000,0],[1708528882000,0],[1708528883000,0],[1708528884000,0],[1708528885000,0],[1708528886000,0],[1708528887000,0],[1708528888000,0],[1708528889000,0],[1708528890000,0],[1708528891000,0],[1708528892000,0],[1708528893000,0],[1708528894000,0],[1708528895000,0],[1708528896000,0],[1708528897000,0],[1708528898000,0],[1708528899000,0],[1708528900000,0],[1708528901000,0],[1708528902000,0],[1708528903000,0],[1708528904000,0],[1708528905000,0],[1708528906000,0],[1708528907000,0],[1708528908000,0],[1708528909000,0],[1708528910000,0],[1708528911000,0],[1708528912000,0],[1708528913000,0],[1708528914000,0],[1708528915000,0],[1708528916000,0],[1708528917000,0],[1708528918000,0],[1708528919000,0],[1708528920000,0],[1708528921000,0],[1708528922000,0],[1708528923000,0],[1708528924000,0],[1708528925000,0],[1708528926000,0],[1708528927000,0],[1708528928000,0],[1708528929000,0],[1708528930000,0],[1708528931000,0],[1708528932000,0],[1708528933000,0],[1708528934000,0],[1708528935000,0],[1708528936000,0],[1708528937000,0],[1708528938000,0],[1708528939000,0],[1708528940000,0],[1708528941000,0],[1708528942000,0],[1708528943000,0],[1708528944000,0],[1708528945000,0],[1708528946000,0],[1708528947000,0],[1708528948000,0],[1708528949000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FF00E1',
name: 'validação concorrência saldo - -25',
data: [
[1708528465000,0],[1708528466000,0],[1708528467000,0],[1708528468000,0],[1708528469000,0],[1708528470000,0],[1708528471000,0],[1708528472000,0],[1708528473000,0],[1708528474000,0],[1708528475000,0],[1708528476000,0],[1708528477000,0],[1708528478000,0],[1708528479000,0],[1708528480000,0],[1708528481000,0],[1708528482000,0],[1708528483000,0],[1708528484000,0],[1708528485000,0],[1708528486000,0],[1708528487000,0],[1708528488000,0],[1708528489000,0],[1708528490000,0],[1708528491000,0],[1708528492000,0],[1708528493000,0],[1708528494000,0],[1708528495000,0],[1708528496000,0],[1708528497000,0],[1708528498000,0],[1708528499000,0],[1708528500000,0],[1708528501000,0],[1708528502000,0],[1708528503000,0],[1708528504000,0],[1708528505000,0],[1708528506000,0],[1708528507000,0],[1708528508000,0],[1708528509000,0],[1708528510000,0],[1708528511000,0],[1708528512000,0],[1708528513000,0],[1708528514000,0],[1708528515000,0],[1708528516000,0],[1708528517000,0],[1708528518000,0],[1708528519000,0],[1708528520000,0],[1708528521000,0],[1708528522000,0],[1708528523000,0],[1708528524000,0],[1708528525000,1],[1708528526000,1],[1708528527000,0],[1708528528000,0],[1708528529000,0],[1708528530000,0],[1708528531000,0],[1708528532000,0],[1708528533000,0],[1708528534000,0],[1708528535000,0],[1708528536000,0],[1708528537000,0],[1708528538000,0],[1708528539000,0],[1708528540000,0],[1708528541000,0],[1708528542000,0],[1708528543000,0],[1708528544000,0],[1708528545000,0],[1708528546000,0],[1708528547000,0],[1708528548000,0],[1708528549000,0],[1708528550000,0],[1708528551000,0],[1708528552000,0],[1708528553000,0],[1708528554000,0],[1708528555000,0],[1708528556000,0],[1708528557000,0],[1708528558000,0],[1708528559000,0],[1708528560000,0],[1708528561000,0],[1708528562000,0],[1708528563000,0],[1708528564000,0],[1708528565000,0],[1708528566000,0],[1708528567000,0],[1708528568000,0],[1708528569000,0],[1708528570000,0],[1708528571000,0],[1708528572000,0],[1708528573000,0],[1708528574000,0],[1708528575000,0],[1708528576000,0],[1708528577000,0],[1708528578000,0],[1708528579000,0],[1708528580000,0],[1708528581000,0],[1708528582000,0],[1708528583000,0],[1708528584000,0],[1708528585000,0],[1708528586000,0],[1708528587000,0],[1708528588000,0],[1708528589000,0],[1708528590000,0],[1708528591000,0],[1708528592000,0],[1708528593000,0],[1708528594000,0],[1708528595000,0],[1708528596000,0],[1708528597000,0],[1708528598000,0],[1708528599000,0],[1708528600000,0],[1708528601000,0],[1708528602000,0],[1708528603000,0],[1708528604000,0],[1708528605000,0],[1708528606000,0],[1708528607000,0],[1708528608000,0],[1708528609000,0],[1708528610000,0],[1708528611000,0],[1708528612000,0],[1708528613000,0],[1708528614000,0],[1708528615000,0],[1708528616000,0],[1708528617000,0],[1708528618000,0],[1708528619000,0],[1708528620000,0],[1708528621000,0],[1708528622000,0],[1708528623000,0],[1708528624000,0],[1708528625000,0],[1708528626000,0],[1708528627000,0],[1708528628000,0],[1708528629000,0],[1708528630000,0],[1708528631000,0],[1708528632000,0],[1708528633000,0],[1708528634000,0],[1708528635000,0],[1708528636000,0],[1708528637000,0],[1708528638000,0],[1708528639000,0],[1708528640000,0],[1708528641000,0],[1708528642000,0],[1708528643000,0],[1708528644000,0],[1708528645000,0],[1708528646000,0],[1708528647000,0],[1708528648000,0],[1708528649000,0],[1708528650000,0],[1708528651000,0],[1708528652000,0],[1708528653000,0],[1708528654000,0],[1708528655000,0],[1708528656000,0],[1708528657000,0],[1708528658000,0],[1708528659000,0],[1708528660000,0],[1708528661000,0],[1708528662000,0],[1708528663000,0],[1708528664000,0],[1708528665000,0],[1708528666000,0],[1708528667000,0],[1708528668000,0],[1708528669000,0],[1708528670000,0],[1708528671000,0],[1708528672000,0],[1708528673000,0],[1708528674000,0],[1708528675000,0],[1708528676000,0],[1708528677000,0],[1708528678000,0],[1708528679000,0],[1708528680000,0],[1708528681000,0],[1708528682000,0],[1708528683000,0],[1708528684000,0],[1708528685000,0],[1708528686000,0],[1708528687000,0],[1708528688000,0],[1708528689000,0],[1708528690000,0],[1708528691000,0],[1708528692000,0],[1708528693000,0],[1708528694000,0],[1708528695000,0],[1708528696000,0],[1708528697000,0],[1708528698000,0],[1708528699000,0],[1708528700000,0],[1708528701000,0],[1708528702000,0],[1708528703000,0],[1708528704000,0],[1708528705000,0],[1708528706000,0],[1708528707000,0],[1708528708000,0],[1708528709000,0],[1708528710000,0],[1708528711000,0],[1708528712000,0],[1708528713000,0],[1708528714000,0],[1708528715000,0],[1708528716000,0],[1708528717000,0],[1708528718000,0],[1708528719000,0],[1708528720000,0],[1708528721000,0],[1708528722000,0],[1708528723000,0],[1708528724000,0],[1708528725000,0],[1708528726000,0],[1708528727000,0],[1708528728000,0],[1708528729000,0],[1708528730000,0],[1708528731000,0],[1708528732000,0],[1708528733000,0],[1708528734000,0],[1708528735000,0],[1708528736000,0],[1708528737000,0],[1708528738000,0],[1708528739000,0],[1708528740000,0],[1708528741000,0],[1708528742000,0],[1708528743000,0],[1708528744000,0],[1708528745000,0],[1708528746000,0],[1708528747000,0],[1708528748000,0],[1708528749000,0],[1708528750000,0],[1708528751000,0],[1708528752000,0],[1708528753000,0],[1708528754000,0],[1708528755000,0],[1708528756000,0],[1708528757000,0],[1708528758000,0],[1708528759000,0],[1708528760000,0],[1708528761000,0],[1708528762000,0],[1708528763000,0],[1708528764000,0],[1708528765000,0],[1708528766000,0],[1708528767000,0],[1708528768000,0],[1708528769000,0],[1708528770000,0],[1708528771000,0],[1708528772000,0],[1708528773000,0],[1708528774000,0],[1708528775000,0],[1708528776000,0],[1708528777000,0],[1708528778000,0],[1708528779000,0],[1708528780000,0],[1708528781000,0],[1708528782000,0],[1708528783000,0],[1708528784000,0],[1708528785000,0],[1708528786000,0],[1708528787000,0],[1708528788000,0],[1708528789000,0],[1708528790000,0],[1708528791000,0],[1708528792000,0],[1708528793000,0],[1708528794000,0],[1708528795000,0],[1708528796000,0],[1708528797000,0],[1708528798000,0],[1708528799000,0],[1708528800000,0],[1708528801000,0],[1708528802000,0],[1708528803000,0],[1708528804000,0],[1708528805000,0],[1708528806000,0],[1708528807000,0],[1708528808000,0],[1708528809000,0],[1708528810000,0],[1708528811000,0],[1708528812000,0],[1708528813000,0],[1708528814000,0],[1708528815000,0],[1708528816000,0],[1708528817000,0],[1708528818000,0],[1708528819000,0],[1708528820000,0],[1708528821000,0],[1708528822000,0],[1708528823000,0],[1708528824000,0],[1708528825000,0],[1708528826000,0],[1708528827000,0],[1708528828000,0],[1708528829000,0],[1708528830000,0],[1708528831000,0],[1708528832000,0],[1708528833000,0],[1708528834000,0],[1708528835000,0],[1708528836000,0],[1708528837000,0],[1708528838000,0],[1708528839000,0],[1708528840000,0],[1708528841000,0],[1708528842000,0],[1708528843000,0],[1708528844000,0],[1708528845000,0],[1708528846000,0],[1708528847000,0],[1708528848000,0],[1708528849000,0],[1708528850000,0],[1708528851000,0],[1708528852000,0],[1708528853000,0],[1708528854000,0],[1708528855000,0],[1708528856000,0],[1708528857000,0],[1708528858000,0],[1708528859000,0],[1708528860000,0],[1708528861000,0],[1708528862000,0],[1708528863000,0],[1708528864000,0],[1708528865000,0],[1708528866000,0],[1708528867000,0],[1708528868000,0],[1708528869000,0],[1708528870000,0],[1708528871000,0],[1708528872000,0],[1708528873000,0],[1708528874000,0],[1708528875000,0],[1708528876000,0],[1708528877000,0],[1708528878000,0],[1708528879000,0],[1708528880000,0],[1708528881000,0],[1708528882000,0],[1708528883000,0],[1708528884000,0],[1708528885000,0],[1708528886000,0],[1708528887000,0],[1708528888000,0],[1708528889000,0],[1708528890000,0],[1708528891000,0],[1708528892000,0],[1708528893000,0],[1708528894000,0],[1708528895000,0],[1708528896000,0],[1708528897000,0],[1708528898000,0],[1708528899000,0],[1708528900000,0],[1708528901000,0],[1708528902000,0],[1708528903000,0],[1708528904000,0],[1708528905000,0],[1708528906000,0],[1708528907000,0],[1708528908000,0],[1708528909000,0],[1708528910000,0],[1708528911000,0],[1708528912000,0],[1708528913000,0],[1708528914000,0],[1708528915000,0],[1708528916000,0],[1708528917000,0],[1708528918000,0],[1708528919000,0],[1708528920000,0],[1708528921000,0],[1708528922000,0],[1708528923000,0],[1708528924000,0],[1708528925000,0],[1708528926000,0],[1708528927000,0],[1708528928000,0],[1708528929000,0],[1708528930000,0],[1708528931000,0],[1708528932000,0],[1708528933000,0],[1708528934000,0],[1708528935000,0],[1708528936000,0],[1708528937000,0],[1708528938000,0],[1708528939000,0],[1708528940000,0],[1708528941000,0],[1708528942000,0],[1708528943000,0],[1708528944000,0],[1708528945000,0],[1708528946000,0],[1708528947000,0],[1708528948000,0],[1708528949000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#AECAEB',
name: 'validação concorrência transações - d',
data: [
[1708528465000,25],[1708528466000,2],[1708528467000,2],[1708528468000,2],[1708528469000,2],[1708528470000,2],[1708528471000,2],[1708528472000,2],[1708528473000,2],[1708528474000,2],[1708528475000,2],[1708528476000,2],[1708528477000,2],[1708528478000,2],[1708528479000,2],[1708528480000,2],[1708528481000,2],[1708528482000,2],[1708528483000,2],[1708528484000,2],[1708528485000,2],[1708528486000,2],[1708528487000,2],[1708528488000,2],[1708528489000,2],[1708528490000,2],[1708528491000,2],[1708528492000,2],[1708528493000,2],[1708528494000,2],[1708528495000,2],[1708528496000,2],[1708528497000,2],[1708528498000,2],[1708528499000,2],[1708528500000,2],[1708528501000,2],[1708528502000,2],[1708528503000,2],[1708528504000,2],[1708528505000,2],[1708528506000,2],[1708528507000,2],[1708528508000,2],[1708528509000,2],[1708528510000,2],[1708528511000,2],[1708528512000,2],[1708528513000,2],[1708528514000,2],[1708528515000,2],[1708528516000,2],[1708528517000,2],[1708528518000,2],[1708528519000,2],[1708528520000,2],[1708528521000,2],[1708528522000,2],[1708528523000,2],[1708528524000,2],[1708528525000,2],[1708528526000,0],[1708528527000,0],[1708528528000,0],[1708528529000,0],[1708528530000,0],[1708528531000,0],[1708528532000,0],[1708528533000,0],[1708528534000,0],[1708528535000,0],[1708528536000,0],[1708528537000,0],[1708528538000,0],[1708528539000,0],[1708528540000,0],[1708528541000,0],[1708528542000,0],[1708528543000,0],[1708528544000,0],[1708528545000,0],[1708528546000,0],[1708528547000,0],[1708528548000,0],[1708528549000,0],[1708528550000,0],[1708528551000,0],[1708528552000,0],[1708528553000,0],[1708528554000,0],[1708528555000,0],[1708528556000,0],[1708528557000,0],[1708528558000,0],[1708528559000,0],[1708528560000,0],[1708528561000,0],[1708528562000,0],[1708528563000,0],[1708528564000,0],[1708528565000,0],[1708528566000,0],[1708528567000,0],[1708528568000,0],[1708528569000,0],[1708528570000,0],[1708528571000,0],[1708528572000,0],[1708528573000,0],[1708528574000,0],[1708528575000,0],[1708528576000,0],[1708528577000,0],[1708528578000,0],[1708528579000,0],[1708528580000,0],[1708528581000,0],[1708528582000,0],[1708528583000,0],[1708528584000,0],[1708528585000,0],[1708528586000,0],[1708528587000,0],[1708528588000,0],[1708528589000,0],[1708528590000,0],[1708528591000,0],[1708528592000,0],[1708528593000,0],[1708528594000,0],[1708528595000,0],[1708528596000,0],[1708528597000,0],[1708528598000,0],[1708528599000,0],[1708528600000,0],[1708528601000,0],[1708528602000,0],[1708528603000,0],[1708528604000,0],[1708528605000,0],[1708528606000,0],[1708528607000,0],[1708528608000,0],[1708528609000,0],[1708528610000,0],[1708528611000,0],[1708528612000,0],[1708528613000,0],[1708528614000,0],[1708528615000,0],[1708528616000,0],[1708528617000,0],[1708528618000,0],[1708528619000,0],[1708528620000,0],[1708528621000,0],[1708528622000,0],[1708528623000,0],[1708528624000,0],[1708528625000,0],[1708528626000,0],[1708528627000,0],[1708528628000,0],[1708528629000,0],[1708528630000,0],[1708528631000,0],[1708528632000,0],[1708528633000,0],[1708528634000,0],[1708528635000,0],[1708528636000,0],[1708528637000,0],[1708528638000,0],[1708528639000,0],[1708528640000,0],[1708528641000,0],[1708528642000,0],[1708528643000,0],[1708528644000,0],[1708528645000,0],[1708528646000,0],[1708528647000,0],[1708528648000,0],[1708528649000,0],[1708528650000,0],[1708528651000,0],[1708528652000,0],[1708528653000,0],[1708528654000,0],[1708528655000,0],[1708528656000,0],[1708528657000,0],[1708528658000,0],[1708528659000,0],[1708528660000,0],[1708528661000,0],[1708528662000,0],[1708528663000,0],[1708528664000,0],[1708528665000,0],[1708528666000,0],[1708528667000,0],[1708528668000,0],[1708528669000,0],[1708528670000,0],[1708528671000,0],[1708528672000,0],[1708528673000,0],[1708528674000,0],[1708528675000,0],[1708528676000,0],[1708528677000,0],[1708528678000,0],[1708528679000,0],[1708528680000,0],[1708528681000,0],[1708528682000,0],[1708528683000,0],[1708528684000,0],[1708528685000,0],[1708528686000,0],[1708528687000,0],[1708528688000,0],[1708528689000,0],[1708528690000,0],[1708528691000,0],[1708528692000,0],[1708528693000,0],[1708528694000,0],[1708528695000,0],[1708528696000,0],[1708528697000,0],[1708528698000,0],[1708528699000,0],[1708528700000,0],[1708528701000,0],[1708528702000,0],[1708528703000,0],[1708528704000,0],[1708528705000,0],[1708528706000,0],[1708528707000,0],[1708528708000,0],[1708528709000,0],[1708528710000,0],[1708528711000,0],[1708528712000,0],[1708528713000,0],[1708528714000,0],[1708528715000,0],[1708528716000,0],[1708528717000,0],[1708528718000,0],[1708528719000,0],[1708528720000,0],[1708528721000,0],[1708528722000,0],[1708528723000,0],[1708528724000,0],[1708528725000,0],[1708528726000,0],[1708528727000,0],[1708528728000,0],[1708528729000,0],[1708528730000,0],[1708528731000,0],[1708528732000,0],[1708528733000,0],[1708528734000,0],[1708528735000,0],[1708528736000,0],[1708528737000,0],[1708528738000,0],[1708528739000,0],[1708528740000,0],[1708528741000,0],[1708528742000,0],[1708528743000,0],[1708528744000,0],[1708528745000,0],[1708528746000,0],[1708528747000,0],[1708528748000,0],[1708528749000,0],[1708528750000,0],[1708528751000,0],[1708528752000,0],[1708528753000,0],[1708528754000,0],[1708528755000,0],[1708528756000,0],[1708528757000,0],[1708528758000,0],[1708528759000,0],[1708528760000,0],[1708528761000,0],[1708528762000,0],[1708528763000,0],[1708528764000,0],[1708528765000,0],[1708528766000,0],[1708528767000,0],[1708528768000,0],[1708528769000,0],[1708528770000,0],[1708528771000,0],[1708528772000,0],[1708528773000,0],[1708528774000,0],[1708528775000,0],[1708528776000,0],[1708528777000,0],[1708528778000,0],[1708528779000,0],[1708528780000,0],[1708528781000,0],[1708528782000,0],[1708528783000,0],[1708528784000,0],[1708528785000,0],[1708528786000,0],[1708528787000,0],[1708528788000,0],[1708528789000,0],[1708528790000,0],[1708528791000,0],[1708528792000,0],[1708528793000,0],[1708528794000,0],[1708528795000,0],[1708528796000,0],[1708528797000,0],[1708528798000,0],[1708528799000,0],[1708528800000,0],[1708528801000,0],[1708528802000,0],[1708528803000,0],[1708528804000,0],[1708528805000,0],[1708528806000,0],[1708528807000,0],[1708528808000,0],[1708528809000,0],[1708528810000,0],[1708528811000,0],[1708528812000,0],[1708528813000,0],[1708528814000,0],[1708528815000,0],[1708528816000,0],[1708528817000,0],[1708528818000,0],[1708528819000,0],[1708528820000,0],[1708528821000,0],[1708528822000,0],[1708528823000,0],[1708528824000,0],[1708528825000,0],[1708528826000,0],[1708528827000,0],[1708528828000,0],[1708528829000,0],[1708528830000,0],[1708528831000,0],[1708528832000,0],[1708528833000,0],[1708528834000,0],[1708528835000,0],[1708528836000,0],[1708528837000,0],[1708528838000,0],[1708528839000,0],[1708528840000,0],[1708528841000,0],[1708528842000,0],[1708528843000,0],[1708528844000,0],[1708528845000,0],[1708528846000,0],[1708528847000,0],[1708528848000,0],[1708528849000,0],[1708528850000,0],[1708528851000,0],[1708528852000,0],[1708528853000,0],[1708528854000,0],[1708528855000,0],[1708528856000,0],[1708528857000,0],[1708528858000,0],[1708528859000,0],[1708528860000,0],[1708528861000,0],[1708528862000,0],[1708528863000,0],[1708528864000,0],[1708528865000,0],[1708528866000,0],[1708528867000,0],[1708528868000,0],[1708528869000,0],[1708528870000,0],[1708528871000,0],[1708528872000,0],[1708528873000,0],[1708528874000,0],[1708528875000,0],[1708528876000,0],[1708528877000,0],[1708528878000,0],[1708528879000,0],[1708528880000,0],[1708528881000,0],[1708528882000,0],[1708528883000,0],[1708528884000,0],[1708528885000,0],[1708528886000,0],[1708528887000,0],[1708528888000,0],[1708528889000,0],[1708528890000,0],[1708528891000,0],[1708528892000,0],[1708528893000,0],[1708528894000,0],[1708528895000,0],[1708528896000,0],[1708528897000,0],[1708528898000,0],[1708528899000,0],[1708528900000,0],[1708528901000,0],[1708528902000,0],[1708528903000,0],[1708528904000,0],[1708528905000,0],[1708528906000,0],[1708528907000,0],[1708528908000,0],[1708528909000,0],[1708528910000,0],[1708528911000,0],[1708528912000,0],[1708528913000,0],[1708528914000,0],[1708528915000,0],[1708528916000,0],[1708528917000,0],[1708528918000,0],[1708528919000,0],[1708528920000,0],[1708528921000,0],[1708528922000,0],[1708528923000,0],[1708528924000,0],[1708528925000,0],[1708528926000,0],[1708528927000,0],[1708528928000,0],[1708528929000,0],[1708528930000,0],[1708528931000,0],[1708528932000,0],[1708528933000,0],[1708528934000,0],[1708528935000,0],[1708528936000,0],[1708528937000,0],[1708528938000,0],[1708528939000,0],[1708528940000,0],[1708528941000,0],[1708528942000,0],[1708528943000,0],[1708528944000,0],[1708528945000,0],[1708528946000,0],[1708528947000,0],[1708528948000,0],[1708528949000,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: [
12.91,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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: [
84.32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.64
],
tooltip: { yDecimals: 0, ySuffix: 'ms' }
}
]
});
responsetimeDistributionChart.setTitle({
text: '<span class="chart_title">Response Time Distribution</span>',
useHTML: true
});
var responsetimepercentilesovertimeokPercentiles = unpack([[1708528465,[64,122,132,165,191,193,195,201,204,205]],[1708528466,null],[1708528467,null],[1708528468,null],[1708528469,null],[1708528470,null],[1708528471,null],[1708528472,null],[1708528473,null],[1708528474,null],[1708528475,null],[1708528476,null],[1708528477,null],[1708528478,null],[1708528479,null],[1708528480,null],[1708528481,null],[1708528482,null],[1708528483,null],[1708528484,null],[1708528485,null],[1708528486,null],[1708528487,null],[1708528488,null],[1708528489,null],[1708528490,null],[1708528491,null],[1708528492,null],[1708528493,null],[1708528494,null],[1708528495,null],[1708528496,null],[1708528497,null],[1708528498,null],[1708528499,null],[1708528500,null],[1708528501,null],[1708528502,null],[1708528503,null],[1708528504,null],[1708528505,null],[1708528506,null],[1708528507,null],[1708528508,null],[1708528509,null],[1708528510,null],[1708528511,null],[1708528512,null],[1708528513,null],[1708528514,null],[1708528515,null],[1708528516,null],[1708528517,null],[1708528518,null],[1708528519,null],[1708528520,null],[1708528521,null],[1708528522,null],[1708528523,null],[1708528524,null],[1708528525,null],[1708528526,null],[1708528527,[18,20,24,28,28,29,29,30,30,30]],[1708528528,null],[1708528529,null],[1708528530,null],[1708528531,null],[1708528532,null],[1708528533,null],[1708528534,null],[1708528535,null],[1708528536,null],[1708528537,null],[1708528538,null],[1708528539,null],[1708528540,null],[1708528541,null],[1708528542,null],[1708528543,null],[1708528544,null],[1708528545,null],[1708528546,null],[1708528547,null],[1708528548,null],[1708528549,null],[1708528550,null],[1708528551,null],[1708528552,null],[1708528553,null],[1708528554,null],[1708528555,null],[1708528556,null],[1708528557,null],[1708528558,null],[1708528559,null],[1708528560,null],[1708528561,null],[1708528562,null],[1708528563,null],[1708528564,null],[1708528565,null],[1708528566,null],[1708528567,null],[1708528568,null],[1708528569,null],[1708528570,null],[1708528571,null],[1708528572,null],[1708528573,null],[1708528574,null],[1708528575,null],[1708528576,null],[1708528577,null],[1708528578,null],[1708528579,null],[1708528580,null],[1708528581,null],[1708528582,null],[1708528583,null],[1708528584,null],[1708528585,null],[1708528586,null],[1708528587,null],[1708528588,null],[1708528589,[5,5,5,6,6,6,6,6,6,7]],[1708528590,null],[1708528591,null],[1708528592,null],[1708528593,null],[1708528594,null],[1708528595,null],[1708528596,null],[1708528597,null],[1708528598,null],[1708528599,null],[1708528600,null],[1708528601,null],[1708528602,null],[1708528603,null],[1708528604,null],[1708528605,null],[1708528606,null],[1708528607,null],[1708528608,null],[1708528609,null],[1708528610,null],[1708528611,null],[1708528612,null],[1708528613,null],[1708528614,null],[1708528615,null],[1708528616,null],[1708528617,null],[1708528618,null],[1708528619,null],[1708528620,null],[1708528621,null],[1708528622,null],[1708528623,null],[1708528624,null],[1708528625,null],[1708528626,null],[1708528627,null],[1708528628,null],[1708528629,null],[1708528630,null],[1708528631,null],[1708528632,null],[1708528633,null],[1708528634,null],[1708528635,null],[1708528636,null],[1708528637,null],[1708528638,null],[1708528639,null],[1708528640,null],[1708528641,null],[1708528642,null],[1708528643,null],[1708528644,null],[1708528645,null],[1708528646,null],[1708528647,null],[1708528648,null],[1708528649,[1,2,6,21,24,27,65,65,67,68]],[1708528650,[9,9,10,10,10,10,10,10,10,10]],[1708528651,[5,6,6,7,7,7,8,8,8,9]],[1708528652,[4,5,7,7,8,9,10,10,10,10]],[1708528653,[4,5,5,7,8,8,8,8,8,9]],[1708528654,[4,4,5,5,6,8,8,8,8,9]],[1708528655,[4,4,5,5,6,7,7,8,9,10]],[1708528656,[3,4,4,5,5,5,5,5,5,6]],[1708528657,[4,4,5,5,5,6,6,7,9,10]],[1708528658,[3,4,4,6,6,6,8,8,9,10]],[1708528659,[3,4,4,5,6,6,7,8,10,11]],[1708528660,[3,4,4,6,6,6,7,29,30,30]],[1708528661,[3,4,4,5,5,6,6,7,8,8]],[1708528662,[3,4,4,6,6,6,7,7,8,8]],[1708528663,[3,4,5,5,5,6,6,7,8,9]],[1708528664,[2,4,4,5,5,6,7,8,9,9]],[1708528665,[3,3,4,5,5,5,5,6,8,9]],[1708528666,[2,3,3,4,4,4,4,5,7,8]],[1708528667,[2,3,3,4,4,4,5,7,10,11]],[1708528668,[2,3,4,4,4,4,4,5,6,7]],[1708528669,[2,3,4,4,4,4,4,5,6,7]],[1708528670,[2,3,3,4,4,4,4,6,6,7]],[1708528671,[2,3,3,4,4,4,5,5,8,8]],[1708528672,[2,3,3,4,4,5,5,5,6,7]],[1708528673,[2,3,3,4,5,5,5,5,7,8]],[1708528674,[2,3,4,4,5,5,5,5,7,7]],[1708528675,[2,3,4,4,4,4,5,5,7,8]],[1708528676,[2,3,3,4,4,5,5,6,9,10]],[1708528677,[2,3,3,4,4,4,4,5,7,8]],[1708528678,[2,3,3,3,4,4,4,5,7,8]],[1708528679,[2,3,3,3,4,4,4,4,6,7]],[1708528680,[2,3,3,4,4,4,5,5,7,8]],[1708528681,[2,3,3,4,4,4,5,5,6,7]],[1708528682,[2,3,3,5,5,5,5,5,7,7]],[1708528683,[2,3,4,5,5,5,5,6,7,7]],[1708528684,[2,3,4,5,5,5,6,6,9,9]],[1708528685,[2,3,4,4,5,5,5,5,6,6]],[1708528686,[2,3,3,4,4,4,5,5,7,10]],[1708528687,[2,3,3,4,4,4,4,5,6,6]],[1708528688,[1,2,3,3,3,4,4,5,6,7]],[1708528689,[1,2,3,4,4,4,4,5,6,7]],[1708528690,[2,3,3,4,4,4,4,5,7,7]],[1708528691,[2,3,3,3,4,4,4,4,6,7]],[1708528692,[2,3,3,4,4,4,4,5,6,8]],[1708528693,[2,3,3,4,4,4,4,5,6,8]],[1708528694,[2,3,3,4,4,4,5,5,6,7]],[1708528695,[1,2,3,4,4,4,4,5,6,8]],[1708528696,[2,2,3,4,4,4,5,6,6,7]],[1708528697,[2,3,4,4,4,5,5,5,7,7]],[1708528698,[2,3,3,4,4,4,4,5,6,7]],[1708528699,[2,3,3,4,4,5,5,5,6,6]],[1708528700,[2,3,3,4,4,4,5,5,6,7]],[1708528701,[1,2,3,3,3,3,4,4,6,7]],[1708528702,[1,2,3,3,3,4,4,4,6,7]],[1708528703,[2,3,3,3,4,4,4,5,6,7]],[1708528704,[1,2,3,3,3,3,4,5,6,6]],[1708528705,[1,3,3,3,4,4,4,5,6,7]],[1708528706,[2,3,3,4,4,4,5,5,5,6]],[1708528707,[2,3,4,4,5,5,5,5,6,6]],[1708528708,[1,3,3,4,4,5,5,5,6,6]],[1708528709,[1,3,3,5,7,9,17,41,62,64]],[1708528710,[1,3,3,4,4,4,4,5,6,7]],[1708528711,[1,2,3,4,4,4,5,6,7,8]],[1708528712,[1,2,3,3,3,4,4,4,6,6]],[1708528713,[1,2,2,3,3,3,3,4,6,6]],[1708528714,[1,2,2,3,3,4,4,4,5,6]],[1708528715,[1,2,2,3,3,3,4,4,5,7]],[1708528716,[1,2,3,3,4,4,4,4,7,7]],[1708528717,[2,2,3,4,4,4,4,4,6,8]],[1708528718,[2,3,3,4,4,4,4,5,6,6]],[1708528719,[1,2,3,4,4,4,4,5,7,8]],[1708528720,[1,2,3,3,3,3,3,6,28,30]],[1708528721,[2,3,3,3,3,3,3,3,4,4]],[1708528722,[2,3,3,3,3,3,3,4,5,5]],[1708528723,[1,2,3,3,3,3,4,4,9,17]],[1708528724,[1,2,2,2,3,3,3,3,3,3]],[1708528725,null],[1708528726,null],[1708528727,null],[1708528728,null],[1708528729,null],[1708528730,[3,3,3,3,3,3,3,3,3,3]],[1708528731,null],[1708528732,null],[1708528733,null],[1708528734,null],[1708528735,null],[1708528736,[4,4,4,4,4,4,4,4,4,4]],[1708528737,null],[1708528738,null],[1708528739,null],[1708528740,null],[1708528741,[4,4,4,4,4,4,4,4,4,4]],[1708528742,null],[1708528743,null],[1708528744,null],[1708528745,null],[1708528746,null],[1708528747,null],[1708528748,null],[1708528749,null],[1708528750,null],[1708528751,null],[1708528752,[4,4,4,4,4,4,4,4,4,4]],[1708528753,[4,4,4,4,4,4,4,4,4,4]],[1708528754,null],[1708528755,null],[1708528756,null],[1708528757,null],[1708528758,null],[1708528759,null],[1708528760,null],[1708528761,null],[1708528762,null],[1708528763,[4,4,4,4,4,4,4,4,4,4]],[1708528764,null],[1708528765,null],[1708528766,null],[1708528767,null],[1708528768,null],[1708528769,null],[1708528770,null],[1708528771,[5,5,5,5,5,5,5,5,5,5]],[1708528772,[4,4,4,4,4,4,4,4,4,4]],[1708528773,[4,4,4,4,4,4,4,4,4,4]],[1708528774,[4,4,4,4,4,4,4,4,4,4]],[1708528775,null],[1708528776,[5,5,5,5,5,5,5,5,5,5]],[1708528777,null],[1708528778,[4,4,4,4,4,4,4,4,4,4]],[1708528779,[1,3,4,27,29,34,38,39,42,42]],[1708528780,[2,178,245,401,458,511,706,873,1107,1206]],[1708528781,[412,517,581,673,693,706,758,856,6132,30734]],[1708528782,null],[1708528783,null],[1708528784,null],[1708528785,null],[1708528786,null],[1708528787,null],[1708528788,null],[1708528789,null],[1708528790,null],[1708528791,null],[1708528792,null],[1708528793,null],[1708528794,null],[1708528795,null],[1708528796,null],[1708528797,null],[1708528798,null],[1708528799,null],[1708528800,null],[1708528801,null],[1708528802,null],[1708528803,null],[1708528804,null],[1708528805,null],[1708528806,null],[1708528807,null],[1708528808,null],[1708528809,null],[1708528810,null],[1708528811,null],[1708528812,null],[1708528813,null],[1708528814,null],[1708528815,null],[1708528816,null],[1708528817,null],[1708528818,null],[1708528819,null],[1708528820,null],[1708528821,null],[1708528822,null],[1708528823,null],[1708528824,null],[1708528825,null],[1708528826,null],[1708528827,null],[1708528828,null],[1708528829,null],[1708528830,null],[1708528831,null],[1708528832,null],[1708528833,null],[1708528834,null],[1708528835,null],[1708528836,null],[1708528837,null],[1708528838,null],[1708528839,null],[1708528840,null],[1708528841,null],[1708528842,null],[1708528843,null],[1708528844,null],[1708528845,null],[1708528846,null],[1708528847,null],[1708528848,null],[1708528849,null],[1708528850,null],[1708528851,null],[1708528852,null],[1708528853,null],[1708528854,null],[1708528855,null],[1708528856,null],[1708528857,null],[1708528858,null],[1708528859,null],[1708528860,null],[1708528861,null],[1708528862,null],[1708528863,null],[1708528864,null],[1708528865,null],[1708528866,null],[1708528867,null],[1708528868,null],[1708528869,null],[1708528870,null],[1708528871,null],[1708528872,null],[1708528873,null],[1708528874,null],[1708528875,null],[1708528876,null],[1708528877,null],[1708528878,null],[1708528879,null],[1708528880,null],[1708528881,null],[1708528882,null],[1708528883,null],[1708528884,null],[1708528885,null],[1708528886,null],[1708528887,null],[1708528888,null],[1708528889,null],[1708528890,null],[1708528891,null],[1708528892,null],[1708528893,null],[1708528894,null],[1708528895,null],[1708528896,null],[1708528897,null],[1708528898,null],[1708528899,null],[1708528900,null],[1708528901,null],[1708528902,null],[1708528903,null],[1708528904,null],[1708528905,null],[1708528906,null],[1708528907,null],[1708528908,null],[1708528909,null],[1708528910,null],[1708528911,null],[1708528912,null],[1708528913,null],[1708528914,null],[1708528915,null],[1708528916,null],[1708528917,null],[1708528918,null],[1708528919,null],[1708528920,null],[1708528921,null],[1708528922,null],[1708528923,null],[1708528924,null],[1708528925,null],[1708528926,null],[1708528927,null],[1708528928,null],[1708528929,null],[1708528930,null],[1708528931,null],[1708528932,null],[1708528933,null],[1708528934,null],[1708528935,null],[1708528936,null],[1708528937,null],[1708528938,null],[1708528939,null],[1708528940,null],[1708528941,null],[1708528942,null],[1708528943,null],[1708528944,null],[1708528945,null],[1708528946,null],[1708528947,null],[1708528948,null],[1708528949,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
});