-
Notifications
You must be signed in to change notification settings - Fork 923
/
Copy pathindex.html
1205 lines (1135 loc) · 91.5 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="shortcut icon" type="image/x-icon" href="style/favicon.ico"/>
<link href="style/style.css" rel="stylesheet" type="text/css" />
<link href="style/bootstrap.min.css" rel="stylesheet" type="text/css" />
<script src="js/jquery-3.5.1.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/gatling.js"></script>
<script src="js/menu.js"></script>
<script src="js/ellipsis.js"></script>
<script src="js/all_sessions.js"></script>
<script src="js/stats.js"></script>
<script src="js/highstock.js"></script>
<script src="js/highcharts-more.js"></script>
<script src="js/theme.js"></script>
<script src="js/unpack.js"></script>
<title>Gatling Stats - Global Information</title>
</head>
<body>
<script>
const storedTheme = localStorage.getItem('theme') || (window.matchMedia("(prefers-color-scheme: dark)").matches ? "dark" : "light");
if (storedTheme) document.documentElement.setAttribute('data-theme', storedTheme)
function toggleTheme() {
const currentTheme = document.documentElement.getAttribute("data-theme");
const targetTheme = currentTheme === "light" ? "dark" : "light";
document.documentElement.setAttribute('data-theme', targetTheme)
localStorage.setItem('theme', targetTheme);
};
</script>
<div class="app-container">
<div class="frise"></div>
<div class="head">
<div class="gatling-open-source">
<a class="gatling-logo gatling-logo-light" href="https://gatling.io" target="blank_" title="Gatling Home Page"><img alt="Gatling" src="style/logo-light.svg"/></a>
<a class="gatling-logo gatling-logo-dark" href="https://gatling.io" target="blank_" title="Gatling Home Page"><img alt="Gatling" src="style/logo-dark.svg"/></a>
<a class="gatling-documentation" href="https://gatling.io/docs/" target="_blank">Documentation</a>
</div>
<div class="nav spacer"></div>
<a class="enterprise" href="https://gatling.io/enterprise/next-step/" target="_blank"><strong>Try</strong>
<img class="logo-enterprise-light" alt="Gatling Enterprise" src="style/logo-enterprise-light.svg"/>
<img class="logo-enterprise-dark" alt="Gatling Enterprise" src="style/logo-enterprise-dark.svg"/>
</a>
<button id="theme-toggle" class="theme-toggle" type="button" onclick="toggleTheme()" aria-label="Toggle user interface mode">
<span class="toggle-dark"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-moon"><path d="M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z"></path></svg></span>
<span class="toggle-light"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-sun"><circle cx="12" cy="12" r="5"></circle><line x1="12" y1="1" x2="12" y2="3"></line><line x1="12" y1="21" x2="12" y2="23"></line><line x1="4.22" y1="4.22" x2="5.64" y2="5.64"></line><line x1="18.36" y1="18.36" x2="19.78" y2="19.78"></line><line x1="1" y1="12" x2="3" y2="12"></line><line x1="21" y1="12" x2="23" y2="12"></line><line x1="4.22" y1="19.78" x2="5.64" y2="18.36"></line><line x1="18.36" y1="5.64" x2="19.78" y2="4.22"></line></svg></span>
</button>
</div>
<div class="container details">
<div class="nav">
<ul></ul>
</div>
<div class="cadre">
<div class="content">
<div class="content-header">
<div class="onglet">
RinhaBackendCrebitosSimulation
</div>
<div class="sous-menu" id="sousMenu">
<div class="sous-menu-spacer">
<div class="item ouvert"><a href="index.html">Global</a></div>
<div class="item "><a id="details_link" href="#">Details</a></div>
</div>
</div>
</div>
<div class="content-in">
<div class="container-article">
<div class="article">
<div class="schema-container">
<div id="ranges" class="schema ranges">
</div>
<div class="schema polar">
<div id="container_number_of_requests"></div>
</div>
<div class="simulation-card">
<div class="simulation-version-information">
<span class="simulation-information-title">Gatling Version</span>
<span class="simulation-information-item">
<span class="simulation-information-label">Version: </span>
<span>3.10.3</span>
</span>
<span class="simulation-information-item">
<span class="simulation-information-label">Released: </span>
<span>2023-12-20</span>
</span>
</div>
<div id="simulation-information" class="simulation-version-information">
<span class="simulation-information-title">Run Information</span>
<div class="simulation-information-container">
<span class="simulation-information-item">
<span class="simulation-information-label">Date: </span>
<span>2024-03-06 02:05:23 GMT</span>
</span>
<span class="simulation-information-item">
<span class="simulation-information-label">Duration: </span>
<span>4m 6s </span>
</span>
<span class="simulation-tooltip simulation-information-item description" title="Description" data-content="Rinha de Backend - 2024/Q1: Crébito - lipe1994_spring">
<span class="simulation-information-label">Description: </span>
<span>Rinha de Backend - 2024/Q1: Crébito - lipe1994_spring</span>
</span>
</div>
</div>
</div>
</div>
<div id="statistics_table_container">
<div id="stats" class="statistics extensible-geant collapsed">
<div class="title">
<div id="statistics_title" class="title_base"><span class="title_base_stats">Stats</span><span class="expand-table">Fixed height</span><span id="toggle-stats" class="toggle-table"></span><span class="collapse-table">Full size</span></div>
<div class="right">
<button class="statistics-button expand-all-button">Expand all groups</button>
<button class="statistics-button collapse-all-button">Collapse all groups</button>
<button id="statistics_full_screen" class="statistics-button" onclick="openStatisticsTableModal()"><img alt="Fullscreen" src="style/fullscreen.svg"></button>
</div>
</div>
<div class="scrollable">
<table id="container_statistics_head" class="statistics-in extensible-geant">
<thead>
<tr>
<th rowspan="2" id="col-1" class="header sortable sorted-up"><span>Requests</span></th>
<th colspan="5" class="header"><span class="executions">Executions</span></th>
<th colspan="8" class="header"><span class="response-time">Response Time (ms)</span></th>
</tr>
<tr>
<th id="col-2" class="header sortable"><span>Total</span></th>
<th id="col-3" class="header sortable"><span>OK</span></th>
<th id="col-4" class="header sortable"><span>KO</span></th>
<th id="col-5" class="header sortable"><span>% KO</span></th>
<th id="col-6" class="header sortable"><span><abbr title="Count of events per second">Cnt/s</abbr></span></th>
<th id="col-7" class="header sortable"><span>Min</span></th>
<th id="col-8" class="header sortable"><span>50th pct</span></th>
<th id="col-9" class="header sortable"><span>75th pct</span></th>
<th id="col-10" class="header sortable"><span>95th pct</span></th>
<th id="col-11" class="header sortable"><span>99th pct</span></th>
<th id="col-12" class="header sortable"><span>Max</span></th>
<th id="col-13" class="header sortable"><span>Mean</span></th>
<th id="col-14" class="header sortable"><span><abbr title="Standard Deviation">Std Dev</abbr></span></th>
</tr>
</thead>
<tbody></tbody>
</table>
<table id="container_statistics_body" class="statistics-in extensible-geant">
<tbody></tbody>
</table>
</div>
</div>
</div>
<dialog id="statistics_table_modal" class="statistics-table-modal">
<div class="statistics-table-modal-header"><button class="button-modal" onclick="closeStatisticsTableModal()"><img alt="Close" src="style/close.svg"></button></div>
<div class="statistics-table-modal-container">
<div id="statistics_table_modal_content" class="statistics-table-modal-content"></div>
</div>
</dialog>
<script>
function openStatisticsTableModal () {
const statsTable = document.getElementById("stats");
const statsTableModal = document.getElementById("statistics_table_modal");
const fullScreenButton = document.getElementById("statistics_full_screen");
fullScreenButton.disabled = true;
if (typeof statsTableModal.showModal === "function") {
const statsTableModalContent = document.getElementById("statistics_table_modal_content");
statsTableModalContent.innerHTML = "";
statsTableModalContent.appendChild(statsTable);
statsTableModal.showModal();
statsTableModal.addEventListener("close", function () {
const container = document.getElementById("statistics_table_container");
container.appendChild(statsTable);
fullScreenButton.disabled = false;
});
} else {
const incompatibleBrowserVersionMessage = document.createElement("div");
incompatibleBrowserVersionMessage.innerText = "Sorry, the <dialog> API is not supported by this browser.";
statsTable.insertBefore(incompatibleBrowserVersionMessage, statsTable.children[0]);
}
}
function closeStatisticsTableModal () {
const statsTableModal = document.getElementById("statistics_table_modal");
statsTableModal.close();
}
</script>
<div class="statistics extensible-geant collapsed">
<div class="title">
Errors
</div>
<table id="container_errors" class="statistics-in extensible-geant">
<thead>
<tr>
<th id="error-col-1" class="header sortable"><span>Error</span></th>
<th id="error-col-2" class="header sortable"><span>Count</span></th>
<th id="error-col-3" class="header sortable"><span>Percentage</span></th>
</tr>
</thead>
<tbody>
<tr>
<td class="error-col-1 total ko">status.find.in(200,422), but actually found 502<span class="value" style="display:none">0</span></td>
<td class="value error-col-2 total ko">39230</td>
<td class="value error-col-3 total ko">64.642 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">status.find.in(200), but actually found 502<span class="value" style="display:none">1</span></td>
<td class="value error-col-2 total ko">19636</td>
<td class="value error-col-3 total ko">32.356 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">status.find.in([200, 209], 304), found 502<span class="value" style="display:none">2</span></td>
<td class="value error-col-2 total ko">1822</td>
<td class="value error-col-3 total ko">3.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: [
[1709690723000,0],[1709690724000,0],[1709690725000,0],[1709690726000,0],[1709690727000,0],[1709690728000,0],[1709690729000,1],[1709690730000,2],[1709690731000,3],[1709690732000,4],[1709690733000,4],[1709690734000,5],[1709690735000,6],[1709690736000,8],[1709690737000,8],[1709690738000,8],[1709690739000,10],[1709690740000,11],[1709690741000,12],[1709690742000,12],[1709690743000,14],[1709690744000,14],[1709690745000,15],[1709690746000,16],[1709690747000,17],[1709690748000,17],[1709690749000,19],[1709690750000,20],[1709690751000,20],[1709690752000,22],[1709690753000,22],[1709690754000,23],[1709690755000,25],[1709690756000,25],[1709690757000,26],[1709690758000,26],[1709690759000,28],[1709690760000,29],[1709690761000,30],[1709690762000,30],[1709690763000,32],[1709690764000,32],[1709690765000,33],[1709690766000,34],[1709690767000,35],[1709690768000,36],[1709690769000,37],[1709690770000,38],[1709690771000,39],[1709690772000,39],[1709690773000,42],[1709690774000,42],[1709690775000,44],[1709690776000,44],[1709690777000,45],[1709690778000,46],[1709690779000,47],[1709690780000,48],[1709690781000,49],[1709690782000,49],[1709690783000,51],[1709690784000,52],[1709690785000,54],[1709690786000,54],[1709690787000,55],[1709690788000,56],[1709690789000,58],[1709690790000,57],[1709690791000,59],[1709690792000,60],[1709690793000,61],[1709690794000,60],[1709690795000,62],[1709690796000,62],[1709690797000,64],[1709690798000,64],[1709690799000,65],[1709690800000,66],[1709690801000,67],[1709690802000,69],[1709690803000,69],[1709690804000,69],[1709690805000,73],[1709690806000,73],[1709690807000,75],[1709690808000,73],[1709690809000,74],[1709690810000,74],[1709690811000,75],[1709690812000,76],[1709690813000,77],[1709690814000,78],[1709690815000,79],[1709690816000,79],[1709690817000,81],[1709690818000,81],[1709690819000,82],[1709690820000,83],[1709690821000,86],[1709690822000,86],[1709690823000,87],[1709690824000,86],[1709690825000,88],[1709690826000,89],[1709690827000,89],[1709690828000,91],[1709690829000,91],[1709690830000,92],[1709690831000,94],[1709690832000,94],[1709690833000,95],[1709690834000,96],[1709690835000,97],[1709690836000,97],[1709690837000,99],[1709690838000,99],[1709690839000,101],[1709690840000,101],[1709690841000,103],[1709690842000,103],[1709690843000,104],[1709690844000,105],[1709690845000,106],[1709690846000,107],[1709690847000,107],[1709690848000,109],[1709690849000,111],[1709690850000,111],[1709690851000,111],[1709690852000,110],[1709690853000,110],[1709690854000,110],[1709690855000,110],[1709690856000,110],[1709690857000,110],[1709690858000,110],[1709690859000,110],[1709690860000,110],[1709690861000,110],[1709690862000,110],[1709690863000,110],[1709690864000,110],[1709690865000,110],[1709690866000,110],[1709690867000,110],[1709690868000,110],[1709690869000,110],[1709690870000,110],[1709690871000,110],[1709690872000,110],[1709690873000,110],[1709690874000,110],[1709690875000,110],[1709690876000,110],[1709690877000,110],[1709690878000,110],[1709690879000,110],[1709690880000,110],[1709690881000,110],[1709690882000,110],[1709690883000,110],[1709690884000,110],[1709690885000,110],[1709690886000,110],[1709690887000,110],[1709690888000,110],[1709690889000,110],[1709690890000,110],[1709690891000,111],[1709690892000,111],[1709690893000,111],[1709690894000,110],[1709690895000,110],[1709690896000,110],[1709690897000,110],[1709690898000,110],[1709690899000,110],[1709690900000,110],[1709690901000,110],[1709690902000,111],[1709690903000,111],[1709690904000,111],[1709690905000,110],[1709690906000,110],[1709690907000,110],[1709690908000,110],[1709690909000,110],[1709690910000,110],[1709690911000,110],[1709690912000,110],[1709690913000,110],[1709690914000,110],[1709690915000,110],[1709690916000,110],[1709690917000,110],[1709690918000,110],[1709690919000,110],[1709690920000,110],[1709690921000,110],[1709690922000,110],[1709690923000,110],[1709690924000,110],[1709690925000,110],[1709690926000,110],[1709690927000,110],[1709690928000,110],[1709690929000,110],[1709690930000,110],[1709690931000,110],[1709690932000,110],[1709690933000,110],[1709690934000,110],[1709690935000,110],[1709690936000,110],[1709690937000,110],[1709690938000,110],[1709690939000,110],[1709690940000,110],[1709690941000,110],[1709690942000,110],[1709690943000,110],[1709690944000,110],[1709690945000,110],[1709690946000,110],[1709690947000,110],[1709690948000,110],[1709690949000,110],[1709690950000,110],[1709690951000,110],[1709690952000,110],[1709690953000,110],[1709690954000,110],[1709690955000,110],[1709690956000,110],[1709690957000,110],[1709690958000,110],[1709690959000,110],[1709690960000,110],[1709690961000,110],[1709690962000,110],[1709690963000,110],[1709690964000,110],[1709690965000,110],[1709690966000,110],[1709690967000,110],[1709690968000,110],[1709690969000,108]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#68b65c',
name: 'débitos',
data: [
[1709690723000,0],[1709690724000,0],[1709690725000,0],[1709690726000,0],[1709690727000,0],[1709690728000,0],[1709690729000,1],[1709690730000,2],[1709690731000,4],[1709690732000,6],[1709690733000,7],[1709690734000,9],[1709690735000,11],[1709690736000,13],[1709690737000,15],[1709690738000,17],[1709690739000,19],[1709690740000,20],[1709690741000,22],[1709690742000,24],[1709690743000,25],[1709690744000,28],[1709690745000,29],[1709690746000,31],[1709690747000,33],[1709690748000,35],[1709690749000,37],[1709690750000,38],[1709690751000,40],[1709690752000,42],[1709690753000,44],[1709690754000,46],[1709690755000,47],[1709690756000,50],[1709690757000,51],[1709690758000,53],[1709690759000,55],[1709690760000,56],[1709690761000,59],[1709690762000,62],[1709690763000,64],[1709690764000,66],[1709690765000,68],[1709690766000,70],[1709690767000,72],[1709690768000,74],[1709690769000,76],[1709690770000,76],[1709690771000,79],[1709690772000,81],[1709690773000,83],[1709690774000,85],[1709690775000,87],[1709690776000,89],[1709690777000,91],[1709690778000,92],[1709690779000,95],[1709690780000,96],[1709690781000,98],[1709690782000,100],[1709690783000,101],[1709690784000,105],[1709690785000,106],[1709690786000,108],[1709690787000,110],[1709690788000,112],[1709690789000,114],[1709690790000,113],[1709690791000,115],[1709690792000,117],[1709690793000,119],[1709690794000,120],[1709690795000,121],[1709690796000,124],[1709690797000,124],[1709690798000,126],[1709690799000,128],[1709690800000,129],[1709690801000,132],[1709690802000,134],[1709690803000,135],[1709690804000,138],[1709690805000,140],[1709690806000,142],[1709690807000,143],[1709690808000,144],[1709690809000,147],[1709690810000,147],[1709690811000,150],[1709690812000,152],[1709690813000,153],[1709690814000,155],[1709690815000,157],[1709690816000,159],[1709690817000,161],[1709690818000,163],[1709690819000,166],[1709690820000,167],[1709690821000,168],[1709690822000,170],[1709690823000,171],[1709690824000,174],[1709690825000,175],[1709690826000,177],[1709690827000,179],[1709690828000,181],[1709690829000,183],[1709690830000,184],[1709690831000,186],[1709690832000,189],[1709690833000,191],[1709690834000,193],[1709690835000,194],[1709690836000,197],[1709690837000,198],[1709690838000,200],[1709690839000,202],[1709690840000,203],[1709690841000,205],[1709690842000,206],[1709690843000,209],[1709690844000,210],[1709690845000,213],[1709690846000,215],[1709690847000,216],[1709690848000,219],[1709690849000,221],[1709690850000,220],[1709690851000,220],[1709690852000,221],[1709690853000,220],[1709690854000,220],[1709690855000,220],[1709690856000,221],[1709690857000,220],[1709690858000,220],[1709690859000,220],[1709690860000,222],[1709690861000,221],[1709690862000,222],[1709690863000,221],[1709690864000,221],[1709690865000,221],[1709690866000,221],[1709690867000,220],[1709690868000,220],[1709690869000,220],[1709690870000,221],[1709690871000,220],[1709690872000,220],[1709690873000,220],[1709690874000,222],[1709690875000,221],[1709690876000,221],[1709690877000,221],[1709690878000,221],[1709690879000,221],[1709690880000,220],[1709690881000,220],[1709690882000,220],[1709690883000,220],[1709690884000,220],[1709690885000,220],[1709690886000,220],[1709690887000,220],[1709690888000,221],[1709690889000,221],[1709690890000,221],[1709690891000,220],[1709690892000,220],[1709690893000,221],[1709690894000,220],[1709690895000,221],[1709690896000,220],[1709690897000,220],[1709690898000,220],[1709690899000,221],[1709690900000,220],[1709690901000,220],[1709690902000,220],[1709690903000,220],[1709690904000,220],[1709690905000,221],[1709690906000,221],[1709690907000,222],[1709690908000,221],[1709690909000,221],[1709690910000,220],[1709690911000,221],[1709690912000,220],[1709690913000,220],[1709690914000,220],[1709690915000,221],[1709690916000,221],[1709690917000,221],[1709690918000,221],[1709690919000,222],[1709690920000,221],[1709690921000,222],[1709690922000,220],[1709690923000,221],[1709690924000,220],[1709690925000,221],[1709690926000,220],[1709690927000,220],[1709690928000,220],[1709690929000,220],[1709690930000,221],[1709690931000,221],[1709690932000,221],[1709690933000,221],[1709690934000,222],[1709690935000,221],[1709690936000,221],[1709690937000,220],[1709690938000,221],[1709690939000,220],[1709690940000,221],[1709690941000,220],[1709690942000,220],[1709690943000,220],[1709690944000,222],[1709690945000,221],[1709690946000,221],[1709690947000,221],[1709690948000,222],[1709690949000,221],[1709690950000,220],[1709690951000,220],[1709690952000,220],[1709690953000,220],[1709690954000,220],[1709690955000,220],[1709690956000,220],[1709690957000,220],[1709690958000,221],[1709690959000,221],[1709690960000,221],[1709690961000,221],[1709690962000,221],[1709690963000,221],[1709690964000,220],[1709690965000,220],[1709690966000,220],[1709690967000,220],[1709690968000,221],[1709690969000,216]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#f15b4f',
name: 'extratos',
data: [
[1709690723000,0],[1709690724000,0],[1709690725000,0],[1709690726000,0],[1709690727000,0],[1709690728000,0],[1709690729000,1],[1709690730000,2],[1709690731000,1],[1709690732000,1],[1709690733000,2],[1709690734000,1],[1709690735000,2],[1709690736000,1],[1709690737000,2],[1709690738000,2],[1709690739000,1],[1709690740000,2],[1709690741000,2],[1709690742000,2],[1709690743000,2],[1709690744000,2],[1709690745000,2],[1709690746000,2],[1709690747000,3],[1709690748000,2],[1709690749000,3],[1709690750000,2],[1709690751000,3],[1709690752000,2],[1709690753000,3],[1709690754000,3],[1709690755000,3],[1709690756000,3],[1709690757000,3],[1709690758000,3],[1709690759000,3],[1709690760000,4],[1709690761000,3],[1709690762000,3],[1709690763000,4],[1709690764000,3],[1709690765000,4],[1709690766000,4],[1709690767000,4],[1709690768000,4],[1709690769000,4],[1709690770000,4],[1709690771000,4],[1709690772000,4],[1709690773000,4],[1709690774000,4],[1709690775000,5],[1709690776000,4],[1709690777000,5],[1709690778000,5],[1709690779000,4],[1709690780000,5],[1709690781000,5],[1709690782000,5],[1709690783000,5],[1709690784000,5],[1709690785000,5],[1709690786000,5],[1709690787000,6],[1709690788000,5],[1709690789000,6],[1709690790000,5],[1709690791000,6],[1709690792000,5],[1709690793000,6],[1709690794000,6],[1709690795000,6],[1709690796000,6],[1709690797000,6],[1709690798000,6],[1709690799000,6],[1709690800000,7],[1709690801000,6],[1709690802000,6],[1709690803000,7],[1709690804000,6],[1709690805000,7],[1709690806000,7],[1709690807000,7],[1709690808000,7],[1709690809000,7],[1709690810000,7],[1709690811000,7],[1709690812000,7],[1709690813000,7],[1709690814000,7],[1709690815000,8],[1709690816000,7],[1709690817000,8],[1709690818000,8],[1709690819000,7],[1709690820000,8],[1709690821000,8],[1709690822000,8],[1709690823000,8],[1709690824000,8],[1709690825000,8],[1709690826000,8],[1709690827000,9],[1709690828000,8],[1709690829000,9],[1709690830000,8],[1709690831000,9],[1709690832000,8],[1709690833000,9],[1709690834000,9],[1709690835000,9],[1709690836000,9],[1709690837000,9],[1709690838000,9],[1709690839000,9],[1709690840000,10],[1709690841000,9],[1709690842000,9],[1709690843000,10],[1709690844000,9],[1709690845000,10],[1709690846000,10],[1709690847000,10],[1709690848000,10],[1709690849000,10],[1709690850000,10],[1709690851000,10],[1709690852000,10],[1709690853000,10],[1709690854000,10],[1709690855000,10],[1709690856000,10],[1709690857000,10],[1709690858000,10],[1709690859000,10],[1709690860000,10],[1709690861000,10],[1709690862000,10],[1709690863000,10],[1709690864000,10],[1709690865000,10],[1709690866000,10],[1709690867000,10],[1709690868000,10],[1709690869000,10],[1709690870000,10],[1709690871000,10],[1709690872000,10],[1709690873000,10],[1709690874000,10],[1709690875000,10],[1709690876000,10],[1709690877000,10],[1709690878000,10],[1709690879000,10],[1709690880000,10],[1709690881000,10],[1709690882000,10],[1709690883000,10],[1709690884000,10],[1709690885000,10],[1709690886000,10],[1709690887000,10],[1709690888000,10],[1709690889000,10],[1709690890000,10],[1709690891000,10],[1709690892000,10],[1709690893000,10],[1709690894000,10],[1709690895000,10],[1709690896000,10],[1709690897000,10],[1709690898000,10],[1709690899000,10],[1709690900000,10],[1709690901000,10],[1709690902000,10],[1709690903000,10],[1709690904000,10],[1709690905000,10],[1709690906000,10],[1709690907000,10],[1709690908000,10],[1709690909000,10],[1709690910000,10],[1709690911000,10],[1709690912000,10],[1709690913000,10],[1709690914000,10],[1709690915000,10],[1709690916000,10],[1709690917000,10],[1709690918000,10],[1709690919000,10],[1709690920000,10],[1709690921000,10],[1709690922000,10],[1709690923000,10],[1709690924000,10],[1709690925000,10],[1709690926000,10],[1709690927000,10],[1709690928000,10],[1709690929000,10],[1709690930000,10],[1709690931000,10],[1709690932000,10],[1709690933000,10],[1709690934000,10],[1709690935000,10],[1709690936000,10],[1709690937000,10],[1709690938000,10],[1709690939000,10],[1709690940000,10],[1709690941000,10],[1709690942000,10],[1709690943000,10],[1709690944000,10],[1709690945000,10],[1709690946000,10],[1709690947000,10],[1709690948000,10],[1709690949000,10],[1709690950000,10],[1709690951000,10],[1709690952000,10],[1709690953000,10],[1709690954000,10],[1709690955000,10],[1709690956000,10],[1709690957000,10],[1709690958000,10],[1709690959000,10],[1709690960000,10],[1709690961000,10],[1709690962000,10],[1709690963000,10],[1709690964000,10],[1709690965000,10],[1709690966000,10],[1709690967000,10],[1709690968000,10],[1709690969000,9]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FFDD00',
name: 'validação HTTP 404',
data: [
[1709690723000,0],[1709690724000,0],[1709690725000,0],[1709690726000,0],[1709690727000,0],[1709690728000,1],[1709690729000,1],[1709690730000,0],[1709690731000,0],[1709690732000,0],[1709690733000,0],[1709690734000,0],[1709690735000,0],[1709690736000,0],[1709690737000,0],[1709690738000,0],[1709690739000,0],[1709690740000,0],[1709690741000,0],[1709690742000,0],[1709690743000,0],[1709690744000,0],[1709690745000,0],[1709690746000,0],[1709690747000,0],[1709690748000,0],[1709690749000,0],[1709690750000,0],[1709690751000,0],[1709690752000,0],[1709690753000,0],[1709690754000,0],[1709690755000,0],[1709690756000,0],[1709690757000,0],[1709690758000,0],[1709690759000,0],[1709690760000,0],[1709690761000,0],[1709690762000,0],[1709690763000,0],[1709690764000,0],[1709690765000,0],[1709690766000,0],[1709690767000,0],[1709690768000,0],[1709690769000,0],[1709690770000,0],[1709690771000,0],[1709690772000,0],[1709690773000,0],[1709690774000,0],[1709690775000,0],[1709690776000,0],[1709690777000,0],[1709690778000,0],[1709690779000,0],[1709690780000,0],[1709690781000,0],[1709690782000,0],[1709690783000,0],[1709690784000,0],[1709690785000,0],[1709690786000,0],[1709690787000,0],[1709690788000,0],[1709690789000,0],[1709690790000,0],[1709690791000,0],[1709690792000,0],[1709690793000,0],[1709690794000,0],[1709690795000,0],[1709690796000,0],[1709690797000,0],[1709690798000,0],[1709690799000,0],[1709690800000,0],[1709690801000,0],[1709690802000,0],[1709690803000,0],[1709690804000,0],[1709690805000,0],[1709690806000,0],[1709690807000,0],[1709690808000,0],[1709690809000,0],[1709690810000,0],[1709690811000,0],[1709690812000,0],[1709690813000,0],[1709690814000,0],[1709690815000,0],[1709690816000,0],[1709690817000,0],[1709690818000,0],[1709690819000,0],[1709690820000,0],[1709690821000,0],[1709690822000,0],[1709690823000,0],[1709690824000,0],[1709690825000,0],[1709690826000,0],[1709690827000,0],[1709690828000,0],[1709690829000,0],[1709690830000,0],[1709690831000,0],[1709690832000,0],[1709690833000,0],[1709690834000,0],[1709690835000,0],[1709690836000,0],[1709690837000,0],[1709690838000,0],[1709690839000,0],[1709690840000,0],[1709690841000,0],[1709690842000,0],[1709690843000,0],[1709690844000,0],[1709690845000,0],[1709690846000,0],[1709690847000,0],[1709690848000,0],[1709690849000,0],[1709690850000,0],[1709690851000,0],[1709690852000,0],[1709690853000,0],[1709690854000,0],[1709690855000,0],[1709690856000,0],[1709690857000,0],[1709690858000,0],[1709690859000,0],[1709690860000,0],[1709690861000,0],[1709690862000,0],[1709690863000,0],[1709690864000,0],[1709690865000,0],[1709690866000,0],[1709690867000,0],[1709690868000,0],[1709690869000,0],[1709690870000,0],[1709690871000,0],[1709690872000,0],[1709690873000,0],[1709690874000,0],[1709690875000,0],[1709690876000,0],[1709690877000,0],[1709690878000,0],[1709690879000,0],[1709690880000,0],[1709690881000,0],[1709690882000,0],[1709690883000,0],[1709690884000,0],[1709690885000,0],[1709690886000,0],[1709690887000,0],[1709690888000,0],[1709690889000,0],[1709690890000,0],[1709690891000,0],[1709690892000,0],[1709690893000,0],[1709690894000,0],[1709690895000,0],[1709690896000,0],[1709690897000,0],[1709690898000,0],[1709690899000,0],[1709690900000,0],[1709690901000,0],[1709690902000,0],[1709690903000,0],[1709690904000,0],[1709690905000,0],[1709690906000,0],[1709690907000,0],[1709690908000,0],[1709690909000,0],[1709690910000,0],[1709690911000,0],[1709690912000,0],[1709690913000,0],[1709690914000,0],[1709690915000,0],[1709690916000,0],[1709690917000,0],[1709690918000,0],[1709690919000,0],[1709690920000,0],[1709690921000,0],[1709690922000,0],[1709690923000,0],[1709690924000,0],[1709690925000,0],[1709690926000,0],[1709690927000,0],[1709690928000,0],[1709690929000,0],[1709690930000,0],[1709690931000,0],[1709690932000,0],[1709690933000,0],[1709690934000,0],[1709690935000,0],[1709690936000,0],[1709690937000,0],[1709690938000,0],[1709690939000,0],[1709690940000,0],[1709690941000,0],[1709690942000,0],[1709690943000,0],[1709690944000,0],[1709690945000,0],[1709690946000,0],[1709690947000,0],[1709690948000,0],[1709690949000,0],[1709690950000,0],[1709690951000,0],[1709690952000,0],[1709690953000,0],[1709690954000,0],[1709690955000,0],[1709690956000,0],[1709690957000,0],[1709690958000,0],[1709690959000,0],[1709690960000,0],[1709690961000,0],[1709690962000,0],[1709690963000,0],[1709690964000,0],[1709690965000,0],[1709690966000,0],[1709690967000,0],[1709690968000,0],[1709690969000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00D5FF',
name: 'validações',
data: [
[1709690723000,0],[1709690724000,0],[1709690725000,0],[1709690726000,0],[1709690727000,0],[1709690728000,5],[1709690729000,5],[1709690730000,0],[1709690731000,0],[1709690732000,0],[1709690733000,0],[1709690734000,0],[1709690735000,0],[1709690736000,0],[1709690737000,0],[1709690738000,0],[1709690739000,0],[1709690740000,0],[1709690741000,0],[1709690742000,0],[1709690743000,0],[1709690744000,0],[1709690745000,0],[1709690746000,0],[1709690747000,0],[1709690748000,0],[1709690749000,0],[1709690750000,0],[1709690751000,0],[1709690752000,0],[1709690753000,0],[1709690754000,0],[1709690755000,0],[1709690756000,0],[1709690757000,0],[1709690758000,0],[1709690759000,0],[1709690760000,0],[1709690761000,0],[1709690762000,0],[1709690763000,0],[1709690764000,0],[1709690765000,0],[1709690766000,0],[1709690767000,0],[1709690768000,0],[1709690769000,0],[1709690770000,0],[1709690771000,0],[1709690772000,0],[1709690773000,0],[1709690774000,0],[1709690775000,0],[1709690776000,0],[1709690777000,0],[1709690778000,0],[1709690779000,0],[1709690780000,0],[1709690781000,0],[1709690782000,0],[1709690783000,0],[1709690784000,0],[1709690785000,0],[1709690786000,0],[1709690787000,0],[1709690788000,0],[1709690789000,0],[1709690790000,0],[1709690791000,0],[1709690792000,0],[1709690793000,0],[1709690794000,0],[1709690795000,0],[1709690796000,0],[1709690797000,0],[1709690798000,0],[1709690799000,0],[1709690800000,0],[1709690801000,0],[1709690802000,0],[1709690803000,0],[1709690804000,0],[1709690805000,0],[1709690806000,0],[1709690807000,0],[1709690808000,0],[1709690809000,0],[1709690810000,0],[1709690811000,0],[1709690812000,0],[1709690813000,0],[1709690814000,0],[1709690815000,0],[1709690816000,0],[1709690817000,0],[1709690818000,0],[1709690819000,0],[1709690820000,0],[1709690821000,0],[1709690822000,0],[1709690823000,0],[1709690824000,0],[1709690825000,0],[1709690826000,0],[1709690827000,0],[1709690828000,0],[1709690829000,0],[1709690830000,0],[1709690831000,0],[1709690832000,0],[1709690833000,0],[1709690834000,0],[1709690835000,0],[1709690836000,0],[1709690837000,0],[1709690838000,0],[1709690839000,0],[1709690840000,0],[1709690841000,0],[1709690842000,0],[1709690843000,0],[1709690844000,0],[1709690845000,0],[1709690846000,0],[1709690847000,0],[1709690848000,0],[1709690849000,0],[1709690850000,0],[1709690851000,0],[1709690852000,0],[1709690853000,0],[1709690854000,0],[1709690855000,0],[1709690856000,0],[1709690857000,0],[1709690858000,0],[1709690859000,0],[1709690860000,0],[1709690861000,0],[1709690862000,0],[1709690863000,0],[1709690864000,0],[1709690865000,0],[1709690866000,0],[1709690867000,0],[1709690868000,0],[1709690869000,0],[1709690870000,0],[1709690871000,0],[1709690872000,0],[1709690873000,0],[1709690874000,0],[1709690875000,0],[1709690876000,0],[1709690877000,0],[1709690878000,0],[1709690879000,0],[1709690880000,0],[1709690881000,0],[1709690882000,0],[1709690883000,0],[1709690884000,0],[1709690885000,0],[1709690886000,0],[1709690887000,0],[1709690888000,0],[1709690889000,0],[1709690890000,0],[1709690891000,0],[1709690892000,0],[1709690893000,0],[1709690894000,0],[1709690895000,0],[1709690896000,0],[1709690897000,0],[1709690898000,0],[1709690899000,0],[1709690900000,0],[1709690901000,0],[1709690902000,0],[1709690903000,0],[1709690904000,0],[1709690905000,0],[1709690906000,0],[1709690907000,0],[1709690908000,0],[1709690909000,0],[1709690910000,0],[1709690911000,0],[1709690912000,0],[1709690913000,0],[1709690914000,0],[1709690915000,0],[1709690916000,0],[1709690917000,0],[1709690918000,0],[1709690919000,0],[1709690920000,0],[1709690921000,0],[1709690922000,0],[1709690923000,0],[1709690924000,0],[1709690925000,0],[1709690926000,0],[1709690927000,0],[1709690928000,0],[1709690929000,0],[1709690930000,0],[1709690931000,0],[1709690932000,0],[1709690933000,0],[1709690934000,0],[1709690935000,0],[1709690936000,0],[1709690937000,0],[1709690938000,0],[1709690939000,0],[1709690940000,0],[1709690941000,0],[1709690942000,0],[1709690943000,0],[1709690944000,0],[1709690945000,0],[1709690946000,0],[1709690947000,0],[1709690948000,0],[1709690949000,0],[1709690950000,0],[1709690951000,0],[1709690952000,0],[1709690953000,0],[1709690954000,0],[1709690955000,0],[1709690956000,0],[1709690957000,0],[1709690958000,0],[1709690959000,0],[1709690960000,0],[1709690961000,0],[1709690962000,0],[1709690963000,0],[1709690964000,0],[1709690965000,0],[1709690966000,0],[1709690967000,0],[1709690968000,0],[1709690969000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00FF00',
name: 'validação concorrência saldo - 0',
data: [
[1709690723000,0],[1709690724000,0],[1709690725000,0],[1709690726000,0],[1709690727000,1],[1709690728000,0],[1709690729000,0],[1709690730000,0],[1709690731000,0],[1709690732000,0],[1709690733000,0],[1709690734000,0],[1709690735000,0],[1709690736000,0],[1709690737000,0],[1709690738000,0],[1709690739000,0],[1709690740000,0],[1709690741000,0],[1709690742000,0],[1709690743000,0],[1709690744000,0],[1709690745000,0],[1709690746000,0],[1709690747000,0],[1709690748000,0],[1709690749000,0],[1709690750000,0],[1709690751000,0],[1709690752000,0],[1709690753000,0],[1709690754000,0],[1709690755000,0],[1709690756000,0],[1709690757000,0],[1709690758000,0],[1709690759000,0],[1709690760000,0],[1709690761000,0],[1709690762000,0],[1709690763000,0],[1709690764000,0],[1709690765000,0],[1709690766000,0],[1709690767000,0],[1709690768000,0],[1709690769000,0],[1709690770000,0],[1709690771000,0],[1709690772000,0],[1709690773000,0],[1709690774000,0],[1709690775000,0],[1709690776000,0],[1709690777000,0],[1709690778000,0],[1709690779000,0],[1709690780000,0],[1709690781000,0],[1709690782000,0],[1709690783000,0],[1709690784000,0],[1709690785000,0],[1709690786000,0],[1709690787000,0],[1709690788000,0],[1709690789000,0],[1709690790000,0],[1709690791000,0],[1709690792000,0],[1709690793000,0],[1709690794000,0],[1709690795000,0],[1709690796000,0],[1709690797000,0],[1709690798000,0],[1709690799000,0],[1709690800000,0],[1709690801000,0],[1709690802000,0],[1709690803000,0],[1709690804000,0],[1709690805000,0],[1709690806000,0],[1709690807000,0],[1709690808000,0],[1709690809000,0],[1709690810000,0],[1709690811000,0],[1709690812000,0],[1709690813000,0],[1709690814000,0],[1709690815000,0],[1709690816000,0],[1709690817000,0],[1709690818000,0],[1709690819000,0],[1709690820000,0],[1709690821000,0],[1709690822000,0],[1709690823000,0],[1709690824000,0],[1709690825000,0],[1709690826000,0],[1709690827000,0],[1709690828000,0],[1709690829000,0],[1709690830000,0],[1709690831000,0],[1709690832000,0],[1709690833000,0],[1709690834000,0],[1709690835000,0],[1709690836000,0],[1709690837000,0],[1709690838000,0],[1709690839000,0],[1709690840000,0],[1709690841000,0],[1709690842000,0],[1709690843000,0],[1709690844000,0],[1709690845000,0],[1709690846000,0],[1709690847000,0],[1709690848000,0],[1709690849000,0],[1709690850000,0],[1709690851000,0],[1709690852000,0],[1709690853000,0],[1709690854000,0],[1709690855000,0],[1709690856000,0],[1709690857000,0],[1709690858000,0],[1709690859000,0],[1709690860000,0],[1709690861000,0],[1709690862000,0],[1709690863000,0],[1709690864000,0],[1709690865000,0],[1709690866000,0],[1709690867000,0],[1709690868000,0],[1709690869000,0],[1709690870000,0],[1709690871000,0],[1709690872000,0],[1709690873000,0],[1709690874000,0],[1709690875000,0],[1709690876000,0],[1709690877000,0],[1709690878000,0],[1709690879000,0],[1709690880000,0],[1709690881000,0],[1709690882000,0],[1709690883000,0],[1709690884000,0],[1709690885000,0],[1709690886000,0],[1709690887000,0],[1709690888000,0],[1709690889000,0],[1709690890000,0],[1709690891000,0],[1709690892000,0],[1709690893000,0],[1709690894000,0],[1709690895000,0],[1709690896000,0],[1709690897000,0],[1709690898000,0],[1709690899000,0],[1709690900000,0],[1709690901000,0],[1709690902000,0],[1709690903000,0],[1709690904000,0],[1709690905000,0],[1709690906000,0],[1709690907000,0],[1709690908000,0],[1709690909000,0],[1709690910000,0],[1709690911000,0],[1709690912000,0],[1709690913000,0],[1709690914000,0],[1709690915000,0],[1709690916000,0],[1709690917000,0],[1709690918000,0],[1709690919000,0],[1709690920000,0],[1709690921000,0],[1709690922000,0],[1709690923000,0],[1709690924000,0],[1709690925000,0],[1709690926000,0],[1709690927000,0],[1709690928000,0],[1709690929000,0],[1709690930000,0],[1709690931000,0],[1709690932000,0],[1709690933000,0],[1709690934000,0],[1709690935000,0],[1709690936000,0],[1709690937000,0],[1709690938000,0],[1709690939000,0],[1709690940000,0],[1709690941000,0],[1709690942000,0],[1709690943000,0],[1709690944000,0],[1709690945000,0],[1709690946000,0],[1709690947000,0],[1709690948000,0],[1709690949000,0],[1709690950000,0],[1709690951000,0],[1709690952000,0],[1709690953000,0],[1709690954000,0],[1709690955000,0],[1709690956000,0],[1709690957000,0],[1709690958000,0],[1709690959000,0],[1709690960000,0],[1709690961000,0],[1709690962000,0],[1709690963000,0],[1709690964000,0],[1709690965000,0],[1709690966000,0],[1709690967000,0],[1709690968000,0],[1709690969000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#9D00FF',
name: 'validação concorrência transações - c',
data: [
[1709690723000,0],[1709690724000,0],[1709690725000,0],[1709690726000,25],[1709690727000,25],[1709690728000,0],[1709690729000,0],[1709690730000,0],[1709690731000,0],[1709690732000,0],[1709690733000,0],[1709690734000,0],[1709690735000,0],[1709690736000,0],[1709690737000,0],[1709690738000,0],[1709690739000,0],[1709690740000,0],[1709690741000,0],[1709690742000,0],[1709690743000,0],[1709690744000,0],[1709690745000,0],[1709690746000,0],[1709690747000,0],[1709690748000,0],[1709690749000,0],[1709690750000,0],[1709690751000,0],[1709690752000,0],[1709690753000,0],[1709690754000,0],[1709690755000,0],[1709690756000,0],[1709690757000,0],[1709690758000,0],[1709690759000,0],[1709690760000,0],[1709690761000,0],[1709690762000,0],[1709690763000,0],[1709690764000,0],[1709690765000,0],[1709690766000,0],[1709690767000,0],[1709690768000,0],[1709690769000,0],[1709690770000,0],[1709690771000,0],[1709690772000,0],[1709690773000,0],[1709690774000,0],[1709690775000,0],[1709690776000,0],[1709690777000,0],[1709690778000,0],[1709690779000,0],[1709690780000,0],[1709690781000,0],[1709690782000,0],[1709690783000,0],[1709690784000,0],[1709690785000,0],[1709690786000,0],[1709690787000,0],[1709690788000,0],[1709690789000,0],[1709690790000,0],[1709690791000,0],[1709690792000,0],[1709690793000,0],[1709690794000,0],[1709690795000,0],[1709690796000,0],[1709690797000,0],[1709690798000,0],[1709690799000,0],[1709690800000,0],[1709690801000,0],[1709690802000,0],[1709690803000,0],[1709690804000,0],[1709690805000,0],[1709690806000,0],[1709690807000,0],[1709690808000,0],[1709690809000,0],[1709690810000,0],[1709690811000,0],[1709690812000,0],[1709690813000,0],[1709690814000,0],[1709690815000,0],[1709690816000,0],[1709690817000,0],[1709690818000,0],[1709690819000,0],[1709690820000,0],[1709690821000,0],[1709690822000,0],[1709690823000,0],[1709690824000,0],[1709690825000,0],[1709690826000,0],[1709690827000,0],[1709690828000,0],[1709690829000,0],[1709690830000,0],[1709690831000,0],[1709690832000,0],[1709690833000,0],[1709690834000,0],[1709690835000,0],[1709690836000,0],[1709690837000,0],[1709690838000,0],[1709690839000,0],[1709690840000,0],[1709690841000,0],[1709690842000,0],[1709690843000,0],[1709690844000,0],[1709690845000,0],[1709690846000,0],[1709690847000,0],[1709690848000,0],[1709690849000,0],[1709690850000,0],[1709690851000,0],[1709690852000,0],[1709690853000,0],[1709690854000,0],[1709690855000,0],[1709690856000,0],[1709690857000,0],[1709690858000,0],[1709690859000,0],[1709690860000,0],[1709690861000,0],[1709690862000,0],[1709690863000,0],[1709690864000,0],[1709690865000,0],[1709690866000,0],[1709690867000,0],[1709690868000,0],[1709690869000,0],[1709690870000,0],[1709690871000,0],[1709690872000,0],[1709690873000,0],[1709690874000,0],[1709690875000,0],[1709690876000,0],[1709690877000,0],[1709690878000,0],[1709690879000,0],[1709690880000,0],[1709690881000,0],[1709690882000,0],[1709690883000,0],[1709690884000,0],[1709690885000,0],[1709690886000,0],[1709690887000,0],[1709690888000,0],[1709690889000,0],[1709690890000,0],[1709690891000,0],[1709690892000,0],[1709690893000,0],[1709690894000,0],[1709690895000,0],[1709690896000,0],[1709690897000,0],[1709690898000,0],[1709690899000,0],[1709690900000,0],[1709690901000,0],[1709690902000,0],[1709690903000,0],[1709690904000,0],[1709690905000,0],[1709690906000,0],[1709690907000,0],[1709690908000,0],[1709690909000,0],[1709690910000,0],[1709690911000,0],[1709690912000,0],[1709690913000,0],[1709690914000,0],[1709690915000,0],[1709690916000,0],[1709690917000,0],[1709690918000,0],[1709690919000,0],[1709690920000,0],[1709690921000,0],[1709690922000,0],[1709690923000,0],[1709690924000,0],[1709690925000,0],[1709690926000,0],[1709690927000,0],[1709690928000,0],[1709690929000,0],[1709690930000,0],[1709690931000,0],[1709690932000,0],[1709690933000,0],[1709690934000,0],[1709690935000,0],[1709690936000,0],[1709690937000,0],[1709690938000,0],[1709690939000,0],[1709690940000,0],[1709690941000,0],[1709690942000,0],[1709690943000,0],[1709690944000,0],[1709690945000,0],[1709690946000,0],[1709690947000,0],[1709690948000,0],[1709690949000,0],[1709690950000,0],[1709690951000,0],[1709690952000,0],[1709690953000,0],[1709690954000,0],[1709690955000,0],[1709690956000,0],[1709690957000,0],[1709690958000,0],[1709690959000,0],[1709690960000,0],[1709690961000,0],[1709690962000,0],[1709690963000,0],[1709690964000,0],[1709690965000,0],[1709690966000,0],[1709690967000,0],[1709690968000,0],[1709690969000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FF00E1',
name: 'validação concorrência saldo - -25',
data: [
[1709690723000,0],[1709690724000,0],[1709690725000,1],[1709690726000,1],[1709690727000,0],[1709690728000,0],[1709690729000,0],[1709690730000,0],[1709690731000,0],[1709690732000,0],[1709690733000,0],[1709690734000,0],[1709690735000,0],[1709690736000,0],[1709690737000,0],[1709690738000,0],[1709690739000,0],[1709690740000,0],[1709690741000,0],[1709690742000,0],[1709690743000,0],[1709690744000,0],[1709690745000,0],[1709690746000,0],[1709690747000,0],[1709690748000,0],[1709690749000,0],[1709690750000,0],[1709690751000,0],[1709690752000,0],[1709690753000,0],[1709690754000,0],[1709690755000,0],[1709690756000,0],[1709690757000,0],[1709690758000,0],[1709690759000,0],[1709690760000,0],[1709690761000,0],[1709690762000,0],[1709690763000,0],[1709690764000,0],[1709690765000,0],[1709690766000,0],[1709690767000,0],[1709690768000,0],[1709690769000,0],[1709690770000,0],[1709690771000,0],[1709690772000,0],[1709690773000,0],[1709690774000,0],[1709690775000,0],[1709690776000,0],[1709690777000,0],[1709690778000,0],[1709690779000,0],[1709690780000,0],[1709690781000,0],[1709690782000,0],[1709690783000,0],[1709690784000,0],[1709690785000,0],[1709690786000,0],[1709690787000,0],[1709690788000,0],[1709690789000,0],[1709690790000,0],[1709690791000,0],[1709690792000,0],[1709690793000,0],[1709690794000,0],[1709690795000,0],[1709690796000,0],[1709690797000,0],[1709690798000,0],[1709690799000,0],[1709690800000,0],[1709690801000,0],[1709690802000,0],[1709690803000,0],[1709690804000,0],[1709690805000,0],[1709690806000,0],[1709690807000,0],[1709690808000,0],[1709690809000,0],[1709690810000,0],[1709690811000,0],[1709690812000,0],[1709690813000,0],[1709690814000,0],[1709690815000,0],[1709690816000,0],[1709690817000,0],[1709690818000,0],[1709690819000,0],[1709690820000,0],[1709690821000,0],[1709690822000,0],[1709690823000,0],[1709690824000,0],[1709690825000,0],[1709690826000,0],[1709690827000,0],[1709690828000,0],[1709690829000,0],[1709690830000,0],[1709690831000,0],[1709690832000,0],[1709690833000,0],[1709690834000,0],[1709690835000,0],[1709690836000,0],[1709690837000,0],[1709690838000,0],[1709690839000,0],[1709690840000,0],[1709690841000,0],[1709690842000,0],[1709690843000,0],[1709690844000,0],[1709690845000,0],[1709690846000,0],[1709690847000,0],[1709690848000,0],[1709690849000,0],[1709690850000,0],[1709690851000,0],[1709690852000,0],[1709690853000,0],[1709690854000,0],[1709690855000,0],[1709690856000,0],[1709690857000,0],[1709690858000,0],[1709690859000,0],[1709690860000,0],[1709690861000,0],[1709690862000,0],[1709690863000,0],[1709690864000,0],[1709690865000,0],[1709690866000,0],[1709690867000,0],[1709690868000,0],[1709690869000,0],[1709690870000,0],[1709690871000,0],[1709690872000,0],[1709690873000,0],[1709690874000,0],[1709690875000,0],[1709690876000,0],[1709690877000,0],[1709690878000,0],[1709690879000,0],[1709690880000,0],[1709690881000,0],[1709690882000,0],[1709690883000,0],[1709690884000,0],[1709690885000,0],[1709690886000,0],[1709690887000,0],[1709690888000,0],[1709690889000,0],[1709690890000,0],[1709690891000,0],[1709690892000,0],[1709690893000,0],[1709690894000,0],[1709690895000,0],[1709690896000,0],[1709690897000,0],[1709690898000,0],[1709690899000,0],[1709690900000,0],[1709690901000,0],[1709690902000,0],[1709690903000,0],[1709690904000,0],[1709690905000,0],[1709690906000,0],[1709690907000,0],[1709690908000,0],[1709690909000,0],[1709690910000,0],[1709690911000,0],[1709690912000,0],[1709690913000,0],[1709690914000,0],[1709690915000,0],[1709690916000,0],[1709690917000,0],[1709690918000,0],[1709690919000,0],[1709690920000,0],[1709690921000,0],[1709690922000,0],[1709690923000,0],[1709690924000,0],[1709690925000,0],[1709690926000,0],[1709690927000,0],[1709690928000,0],[1709690929000,0],[1709690930000,0],[1709690931000,0],[1709690932000,0],[1709690933000,0],[1709690934000,0],[1709690935000,0],[1709690936000,0],[1709690937000,0],[1709690938000,0],[1709690939000,0],[1709690940000,0],[1709690941000,0],[1709690942000,0],[1709690943000,0],[1709690944000,0],[1709690945000,0],[1709690946000,0],[1709690947000,0],[1709690948000,0],[1709690949000,0],[1709690950000,0],[1709690951000,0],[1709690952000,0],[1709690953000,0],[1709690954000,0],[1709690955000,0],[1709690956000,0],[1709690957000,0],[1709690958000,0],[1709690959000,0],[1709690960000,0],[1709690961000,0],[1709690962000,0],[1709690963000,0],[1709690964000,0],[1709690965000,0],[1709690966000,0],[1709690967000,0],[1709690968000,0],[1709690969000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#AECAEB',
name: 'validação concorrência transações - d',
data: [
[1709690723000,25],[1709690724000,12],[1709690725000,1],[1709690726000,0],[1709690727000,0],[1709690728000,0],[1709690729000,0],[1709690730000,0],[1709690731000,0],[1709690732000,0],[1709690733000,0],[1709690734000,0],[1709690735000,0],[1709690736000,0],[1709690737000,0],[1709690738000,0],[1709690739000,0],[1709690740000,0],[1709690741000,0],[1709690742000,0],[1709690743000,0],[1709690744000,0],[1709690745000,0],[1709690746000,0],[1709690747000,0],[1709690748000,0],[1709690749000,0],[1709690750000,0],[1709690751000,0],[1709690752000,0],[1709690753000,0],[1709690754000,0],[1709690755000,0],[1709690756000,0],[1709690757000,0],[1709690758000,0],[1709690759000,0],[1709690760000,0],[1709690761000,0],[1709690762000,0],[1709690763000,0],[1709690764000,0],[1709690765000,0],[1709690766000,0],[1709690767000,0],[1709690768000,0],[1709690769000,0],[1709690770000,0],[1709690771000,0],[1709690772000,0],[1709690773000,0],[1709690774000,0],[1709690775000,0],[1709690776000,0],[1709690777000,0],[1709690778000,0],[1709690779000,0],[1709690780000,0],[1709690781000,0],[1709690782000,0],[1709690783000,0],[1709690784000,0],[1709690785000,0],[1709690786000,0],[1709690787000,0],[1709690788000,0],[1709690789000,0],[1709690790000,0],[1709690791000,0],[1709690792000,0],[1709690793000,0],[1709690794000,0],[1709690795000,0],[1709690796000,0],[1709690797000,0],[1709690798000,0],[1709690799000,0],[1709690800000,0],[1709690801000,0],[1709690802000,0],[1709690803000,0],[1709690804000,0],[1709690805000,0],[1709690806000,0],[1709690807000,0],[1709690808000,0],[1709690809000,0],[1709690810000,0],[1709690811000,0],[1709690812000,0],[1709690813000,0],[1709690814000,0],[1709690815000,0],[1709690816000,0],[1709690817000,0],[1709690818000,0],[1709690819000,0],[1709690820000,0],[1709690821000,0],[1709690822000,0],[1709690823000,0],[1709690824000,0],[1709690825000,0],[1709690826000,0],[1709690827000,0],[1709690828000,0],[1709690829000,0],[1709690830000,0],[1709690831000,0],[1709690832000,0],[1709690833000,0],[1709690834000,0],[1709690835000,0],[1709690836000,0],[1709690837000,0],[1709690838000,0],[1709690839000,0],[1709690840000,0],[1709690841000,0],[1709690842000,0],[1709690843000,0],[1709690844000,0],[1709690845000,0],[1709690846000,0],[1709690847000,0],[1709690848000,0],[1709690849000,0],[1709690850000,0],[1709690851000,0],[1709690852000,0],[1709690853000,0],[1709690854000,0],[1709690855000,0],[1709690856000,0],[1709690857000,0],[1709690858000,0],[1709690859000,0],[1709690860000,0],[1709690861000,0],[1709690862000,0],[1709690863000,0],[1709690864000,0],[1709690865000,0],[1709690866000,0],[1709690867000,0],[1709690868000,0],[1709690869000,0],[1709690870000,0],[1709690871000,0],[1709690872000,0],[1709690873000,0],[1709690874000,0],[1709690875000,0],[1709690876000,0],[1709690877000,0],[1709690878000,0],[1709690879000,0],[1709690880000,0],[1709690881000,0],[1709690882000,0],[1709690883000,0],[1709690884000,0],[1709690885000,0],[1709690886000,0],[1709690887000,0],[1709690888000,0],[1709690889000,0],[1709690890000,0],[1709690891000,0],[1709690892000,0],[1709690893000,0],[1709690894000,0],[1709690895000,0],[1709690896000,0],[1709690897000,0],[1709690898000,0],[1709690899000,0],[1709690900000,0],[1709690901000,0],[1709690902000,0],[1709690903000,0],[1709690904000,0],[1709690905000,0],[1709690906000,0],[1709690907000,0],[1709690908000,0],[1709690909000,0],[1709690910000,0],[1709690911000,0],[1709690912000,0],[1709690913000,0],[1709690914000,0],[1709690915000,0],[1709690916000,0],[1709690917000,0],[1709690918000,0],[1709690919000,0],[1709690920000,0],[1709690921000,0],[1709690922000,0],[1709690923000,0],[1709690924000,0],[1709690925000,0],[1709690926000,0],[1709690927000,0],[1709690928000,0],[1709690929000,0],[1709690930000,0],[1709690931000,0],[1709690932000,0],[1709690933000,0],[1709690934000,0],[1709690935000,0],[1709690936000,0],[1709690937000,0],[1709690938000,0],[1709690939000,0],[1709690940000,0],[1709690941000,0],[1709690942000,0],[1709690943000,0],[1709690944000,0],[1709690945000,0],[1709690946000,0],[1709690947000,0],[1709690948000,0],[1709690949000,0],[1709690950000,0],[1709690951000,0],[1709690952000,0],[1709690953000,0],[1709690954000,0],[1709690955000,0],[1709690956000,0],[1709690957000,0],[1709690958000,0],[1709690959000,0],[1709690960000,0],[1709690961000,0],[1709690962000,0],[1709690963000,0],[1709690964000,0],[1709690965000,0],[1709690966000,0],[1709690967000,0],[1709690968000,0],[1709690969000,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: ['173', '520', '867', '1214', '1561', '1907', '2254', '2601', '2948', '3295', '3642', '3988', '4335', '4682', '5029', '5376', '5722', '6069', '6416', '6763', '7110', '7456', '7803', '8150', '8497', '8844', '9190', '9537', '9884', '10231', '10578', '10925', '11271', '11618', '11965', '12312', '12659', '13005', '13352', '13699', '14046', '14393', '14739', '15086', '15433', '15780', '16127', '16473', '16820', '17167', '17514', '17861', '18208', '18554', '18901', '19248', '19595', '19942', '20288', '20635', '20982', '21329', '21676', '22022', '22369', '22716', '23063', '23410', '23756', '24103', '24450', '24797', '25144', '25491', '25837', '26184', '26531', '26878', '27225', '27571', '27918', '28265', '28612', '28959', '29305', '29652', '29999', '30346', '30693', '31039', '31386', '31733', '32080', '32427', '32774', '33120', '33467', '33814', '34161', '34508'],
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: [
1.26,0.01,0.01,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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: [
98.62,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
],
tooltip: { yDecimals: 0, ySuffix: 'ms' }
}
]
});
responsetimeDistributionChart.setTitle({
text: '<span class="chart_title">Response Time Distribution</span>',
useHTML: true
});
var responsetimepercentilesovertimeokPercentiles = unpack([[1709690723,[578,793,967,1089,1095,1127,1178,1188,2478,2886]],[1709690724,null],[1709690725,null],[1709690726,[12,12,12,12,12,12,12,12,12,12]],[1709690727,[30,217,309,420,442,508,515,586,603,604]],[1709690728,[9,9,9,9,9,9,9,9,9,9]],[1709690729,[4,11,83,96,101,111,174,186,251,307]],[1709690730,[4,7,12,81,83,86,91,94,95,96]],[1709690731,[9,10,11,15,16,16,16,16,16,16]],[1709690732,[7,9,10,10,10,10,10,11,11,12]],[1709690733,[8,10,11,13,13,13,13,13,13,14]],[1709690734,[8,9,9,11,11,11,11,12,12,12]],[1709690735,[8,8,9,10,10,10,10,11,12,13]],[1709690736,[7,8,9,9,10,12,12,13,15,16]],[1709690737,[7,8,9,9,9,9,10,12,16,18]],[1709690738,[6,8,8,9,10,10,11,13,14,14]],[1709690739,[7,7,8,9,9,10,11,12,15,17]],[1709690740,[7,7,8,9,10,10,10,12,14,16]],[1709690741,[4,7,8,9,10,10,10,12,13,14]],[1709690742,[5,7,7,9,10,12,24,25,50,65]],[1709690743,[3,7,7,8,9,9,9,10,13,16]],[1709690744,[4,7,7,8,8,9,9,10,15,18]],[1709690745,[4,6,7,9,9,9,10,12,16,19]],[1709690746,[5,6,7,8,8,8,9,9,10,10]],[1709690747,[3,6,6,7,7,7,8,8,9,10]],[1709690748,[3,5,6,7,7,7,7,8,34,52]],[1709690749,[3,6,6,7,7,8,8,9,98,106]],[1709690750,[3,5,6,7,7,8,30,45,60,65]],[1709690751,[2,5,5,8,8,10,15,50,64,72]],[1709690752,null],[1709690753,null],[1709690754,null],[1709690755,null],[1709690756,null],[1709690757,null],[1709690758,null],[1709690759,null],[1709690760,null],[1709690761,null],[1709690762,null],[1709690763,null],[1709690764,null],[1709690765,null],[1709690766,null],[1709690767,null],[1709690768,null],[1709690769,null],[1709690770,null],[1709690771,null],[1709690772,null],[1709690773,null],[1709690774,null],[1709690775,null],[1709690776,null],[1709690777,null],[1709690778,null],[1709690779,null],[1709690780,null],[1709690781,null],[1709690782,null],[1709690783,null],[1709690784,null],[1709690785,null],[1709690786,null],[1709690787,null],[1709690788,null],[1709690789,null],[1709690790,null],[1709690791,null],[1709690792,null],[1709690793,null],[1709690794,null],[1709690795,null],[1709690796,null],[1709690797,null],[1709690798,null],[1709690799,null],[1709690800,null],[1709690801,null],[1709690802,null],[1709690803,null],[1709690804,null],[1709690805,null],[1709690806,null],[1709690807,null],[1709690808,null],[1709690809,null],[1709690810,null],[1709690811,null],[1709690812,null],[1709690813,null],[1709690814,null],[1709690815,null],[1709690816,null],[1709690817,null],[1709690818,null],[1709690819,null],[1709690820,null],[1709690821,null],[1709690822,null],[1709690823,null],[1709690824,null],[1709690825,null],[1709690826,null],[1709690827,null],[1709690828,null],[1709690829,null],[1709690830,null],[1709690831,null],[1709690832,null],[1709690833,null],[1709690834,null],[1709690835,null],[1709690836,null],[1709690837,null],[1709690838,null],[1709690839,null],[1709690840,null],[1709690841,null],[1709690842,null],[1709690843,null],[1709690844,null],[1709690845,null],[1709690846,null],[1709690847,null],[1709690848,null],[1709690849,null],[1709690850,null],[1709690851,null],[1709690852,null],[1709690853,null],[1709690854,null],[1709690855,null],[1709690856,null],[1709690857,null],[1709690858,null],[1709690859,null],[1709690860,null],[1709690861,null],[1709690862,null],[1709690863,null],[1709690864,null],[1709690865,null],[1709690866,null],[1709690867,null],[1709690868,null],[1709690869,null],[1709690870,null],[1709690871,null],[1709690872,null],[1709690873,null],[1709690874,null],[1709690875,null],[1709690876,null],[1709690877,null],[1709690878,null],[1709690879,null],[1709690880,null],[1709690881,null],[1709690882,null],[1709690883,null],[1709690884,null],[1709690885,null],[1709690886,null],[1709690887,null],[1709690888,null],[1709690889,null],[1709690890,null],[1709690891,null],[1709690892,null],[1709690893,null],[1709690894,null],[1709690895,null],[1709690896,null],[1709690897,null],[1709690898,null],[1709690899,null],[1709690900,null],[1709690901,null],[1709690902,null],[1709690903,null],[1709690904,null],[1709690905,null],[1709690906,null],[1709690907,null],[1709690908,null],[1709690909,null],[1709690910,null],[1709690911,null],[1709690912,null],[1709690913,null],[1709690914,null],[1709690915,null],[1709690916,null],[1709690917,null],[1709690918,null],[1709690919,null],[1709690920,null],[1709690921,null],[1709690922,null],[1709690923,null],[1709690924,null],[1709690925,null],[1709690926,null],[1709690927,null],[1709690928,null],[1709690929,null],[1709690930,null],[1709690931,null],[1709690932,null],[1709690933,null],[1709690934,null],[1709690935,null],[1709690936,null],[1709690937,null],[1709690938,null],[1709690939,null],[1709690940,null],[1709690941,null],[1709690942,null],[1709690943,null],[1709690944,null],[1709690945,null],[1709690946,null],[1709690947,null],[1709690948,null],[1709690949,null],[1709690950,null],[1709690951,null],[1709690952,null],[1709690953,null],[1709690954,null],[1709690955,null],[1709690956,null],[1709690957,null],[1709690958,null],[1709690959,null],[1709690960,null],[1709690961,null],[1709690962,null],[1709690963,null],[1709690964,null],[1709690965,null],[1709690966,null],[1709690967,null],[1709690968,null],[1709690969,null]]);
var responsetimepercentilesovertimeokPercentilesChart = new Highcharts.StockChart({
chart: {
renderTo: 'responsetimepercentilesovertimeokPercentilesContainer',
zoomType: 'x',
marginBottom: 60
},
colors: ['#c4fd90', '#7ff77f', '#6ff2ad', '#61ede6', '#58c7e0', '#4ea1d4', '#487ad9', '#3f52cc', '#7335dc', '#c73905', '#FFA900'],
credits: { enabled: false },
legend: {
enabled: true,
floating: true,
y: -65,
borderWidth: 0,
itemStyle: { fontWeight: "normal" },
symbolRadius: 0
},
title: { text: 'A title to let highcharts reserve the place for the title set later' },
navigator: {
maskInside: false,
baseSeries: 9
},
rangeSelector: {
rangeSelector: { align: "left" },
buttonSpacing: 0,
buttonTheme: {
fill: '#CFC9C6',
padding: 1,
stroke: '#000000',
'stroke-width': 0.25,
style: {
color: '#000000',
fontWeight: 'bold',
},
states: {
stroke: '#92918C',
'stroke-width': 0.25,
hover: {
fill: '#92918C',
style: { color: 'black' }
},
select: {
fill: '#FFA900',
style: { color: 'white' }
}
}
},
buttons : [
{
type : 'minute',
count : 1,
text : '1m'
}, {
type : 'minute',
count : 10,
text : '10m'
}, {
type : 'hour',
count : 1,
text : '1h'
}, {
type : 'all',
count : 1,
text : 'All'
}
],
selected : 3,
inputEnabled : false
},
xAxis: {
type: 'datetime',
ordinal: false,
maxZoom: 10000 // three days
},
yAxis:[
{
min: 0,
title: { text: 'Response Time (ms)' },
opposite: false
}, {
min: 0,
title: {
text: 'Active Users',
style: { color: '#FFA900' }
},
opposite: true
}
],
plotOptions: {
arearange: { lineWidth: 1 },
series: {
dataGrouping: { enabled: false }
}
},
series: [
{
pointInterval: 1000,
name: 'min',
data: responsetimepercentilesovertimeokPercentiles[0],
tooltip: { yDecimals: 0, ySuffix: 'ms' },
type : 'area',
yAxis: 0,
zIndex: 10
},
{
pointInterval: 1000,
name: '25%',
data: responsetimepercentilesovertimeokPercentiles[1],
tooltip: { yDecimals: 0, ySuffix: 'ms' },
type : 'area',
yAxis: 0,
zIndex: 9
},
{
pointInterval: 1000,
name: '50%',
data: responsetimepercentilesovertimeokPercentiles[2],
tooltip: { yDecimals: 0, ySuffix: 'ms' },
type : 'area',
yAxis: 0,
zIndex: 8
},
{
pointInterval: 1000,
name: '75%',
data: responsetimepercentilesovertimeokPercentiles[3],
tooltip: { yDecimals: 0, ySuffix: 'ms' },
type : 'area',
yAxis: 0,
zIndex: 7
},
{
pointInterval: 1000,
name: '80%',
data: responsetimepercentilesovertimeokPercentiles[4],
tooltip: { yDecimals: 0, ySuffix: 'ms' },
type : 'area',
yAxis: 0,
zIndex: 6
},
{
pointInterval: 1000,
name: '85%',
data: responsetimepercentilesovertimeokPercentiles[5],
tooltip: { yDecimals: 0, ySuffix: 'ms' },
type : 'area',
yAxis: 0,
zIndex: 5
},
{
pointInterval: 1000,
name: '90%',
data: responsetimepercentilesovertimeokPercentiles[6],
tooltip: { yDecimals: 0, ySuffix: 'ms' },
type : 'area',
yAxis: 0,
zIndex: 4
},
{
pointInterval: 1000,
name: '95%',
data: responsetimepercentilesovertimeokPercentiles[7],
tooltip: { yDecimals: 0, ySuffix: 'ms' },
type : 'area',
yAxis: 0,
zIndex: 3
},
{
pointInterval: 1000,
name: '99%',
data: responsetimepercentilesovertimeokPercentiles[8],
tooltip: { yDecimals: 0, ySuffix: 'ms' },
type : 'area',
yAxis: 0,
zIndex: 2
},
{
pointInterval: 1000,
name: 'max',
data: responsetimepercentilesovertimeokPercentiles[9],
tooltip: { yDecimals: 0, ySuffix: 'ms' },
type : 'area',
yAxis: 0,
zIndex: 1
},
allUsersData
]
});
responsetimepercentilesovertimeokPercentilesChart.setTitle({
text: '<span class="chart_title chart_title_">Response Time Percentiles over Time (OK)</span>',
useHTML: true
});
var requests = unpack([[1709690723,[25,25,0]],[1709690724,[0,0,0]],[1709690725,[0,0,0]],[1709690726,[1,1,0]],[1709690727,[25,25,0]],[1709690728,[1,1,0]],[1709690729,[50,50,0]],[1709690730,[24,24,0]],[1709690731,[6,6,0]],[1709690732,[9,9,0]],[1709690733,[11,11,0]],[1709690734,[13,13,0]],[1709690735,[18,18,0]],[1709690736,[19,19,0]],[1709690737,[24,24,0]],[1709690738,[26,26,0]],[1709690739,[27,27,0]],[1709690740,[32,32,0]],[1709690741,[34,34,0]],[1709690742,[37,37,0]],[1709690743,[39,39,0]],[1709690744,[43,43,0]],[1709690745,[44,44,0]],[1709690746,[48,48,0]],[1709690747,[50,50,0]],[1709690748,[54,54,0]],[1709690749,[56,56,0]],[1709690750,[61,61,0]],[1709690751,[61,38,23]],[1709690752,[65,0,65]],[1709690753,[67,0,67]],[1709690754,[70,0,70]],[1709690755,[74,0,74]],[1709690756,[76,0,76]],[1709690757,[80,0,80]],[1709690758,[81,0,81]],[1709690759,[84,0,84]],[1709690760,[87,0,87]],[1709690761,[91,0,91]],[1709690762,[92,0,92]],[1709690763,[96,0,96]],[1709690764,[98,0,98]],[1709690765,[101,0,101]],[1709690766,[105,0,105]],[1709690767,[107,0,107]],[1709690768,[110,0,110]],[1709690769,[114,0,114]],[1709690770,[115,0,115]],[1709690771,[118,0,118]],[1709690772,[121,0,121]],[1709690773,[124,0,124]],[1709690774,[126,0,126]],[1709690775,[129,0,129]],[1709690776,[133,0,133]],[1709690777,[134,0,134]],[1709690778,[138,0,138]],[1709690779,[141,0,141]],[1709690780,[143,0,143]],[1709690781,[146,0,146]],[1709690782,[149,0,149]],[1709690783,[152,0,152]],[1709690784,[154,0,154]],[1709690785,[158,0,158]],[1709690786,[160,0,160]],[1709690787,[164,0,164]],[1709690788,[165,0,165]],[1709690789,[170,0,170]],[1709690790,[172,0,172]],[1709690791,[174,0,174]],[1709690792,[176,0,176]],[1709690793,[181,0,181]],[1709690794,[183,0,183]],[1709690795,[185,0,185]],[1709690796,[189,0,189]],[1709690797,[191,0,191]],[1709690798,[194,0,194]],[1709690799,[196,0,196]],[1709690800,[200,0,200]],[1709690801,[202,0,202]],[1709690802,[206,0,206]],[1709690803,[207,0,207]],[1709690804,[211,0,211]],[1709690805,[213,0,213]],[1709690806,[217,0,217]],[1709690807,[220,0,220]],[1709690808,[222,0,222]],[1709690809,[225,0,225]],[1709690810,[228,0,228]],[1709690811,[230,0,230]],[1709690812,[233,0,233]],[1709690813,[236,0,236]],[1709690814,[239,0,239]],[1709690815,[242,0,242]],[1709690816,[244,0,244]],[1709690817,[248,0,248]],[1709690818,[251,0,251]],[1709690819,[252,0,252]],[1709690820,[256,0,256]],[1709690821,[259,0,259]],[1709690822,[262,0,262]],[1709690823,[264,0,264]],[1709690824,[267,0,267]],[1709690825,[269,0,269]],[1709690826,[272,0,272]],[1709690827,[276,0,276]],[1709690828,[279,0,279]],[1709690829,[281,0,281]],[1709690830,[284,0,284]],[1709690831,[286,0,286]],[1709690832,[290,0,290]],[1709690833,[291,0,291]],[1709690834,[296,0,296]],[1709690835,[298,0,298]],[1709690836,[300,0,300]],[1709690837,[304,0,304]],[1709690838,[306,0,306]],[1709690839,[309,0,309]],[1709690840,[312,0,312]],[1709690841,[315,0,315]],[1709690842,[317,0,317]],[1709690843,[321,0,321]],[1709690844,[322,0,322]],[1709690845,[327,0,327]],[1709690846,[329,0,329]],[1709690847,[332,0,332]],[1709690848,[335,0,335]],[1709690849,[338,0,338]],[1709690850,[340,0,340]],[1709690851,[339,0,339]],[1709690852,[340,0,340]],[1709690853,[341,0,341]],[1709690854,[340,0,340]],[1709690855,[340,0,340]],[1709690856,[340,0,340]],[1709690857,[340,0,340]],[1709690858,[340,0,340]],[1709690859,[340,0,340]],[1709690860,[340,0,340]],[1709690861,[340,0,340]],[1709690862,[340,0,340]],[1709690863,[340,0,340]],[1709690864,[340,0,340]],[1709690865,[340,0,340]],[1709690866,[339,0,339]],[1709690867,[341,0,341]],[1709690868,[340,0,340]],[1709690869,[339,0,339]],[1709690870,[341,0,341]],[1709690871,[340,0,340]],[1709690872,[340,0,340]],[1709690873,[339,0,339]],[1709690874,[341,0,341]],[1709690875,[340,0,340]],[1709690876,[340,0,340]],[1709690877,[340,0,340]],[1709690878,[340,0,340]],[1709690879,[339,0,339]],[1709690880,[341,0,341]],[1709690881,[339,0,339]],[1709690882,[341,0,341]],[1709690883,[340,0,340]],[1709690884,[340,0,340]],[1709690885,[340,0,340]],[1709690886,[340,0,340]],[1709690887,[340,0,340]],[1709690888,[340,0,340]],[1709690889,[340,0,340]],[1709690890,[340,0,340]],[1709690891,[340,0,340]],[1709690892,[340,0,340]],[1709690893,[339,0,339]],[1709690894,[341,0,341]],[1709690895,[340,0,340]],[1709690896,[340,0,340]],[1709690897,[340,0,340]],[1709690898,[340,0,340]],[1709690899,[340,0,340]],[1709690900,[339,0,339]],[1709690901,[340,0,340]],[1709690902,[341,0,341]],[1709690903,[340,0,340]],[1709690904,[340,0,340]],[1709690905,[340,0,340]],[1709690906,[340,0,340]],[1709690907,[339,0,339]],[1709690908,[340,0,340]],[1709690909,[340,0,340]],[1709690910,[341,0,341]],[1709690911,[340,0,340]],[1709690912,[339,0,339]],[1709690913,[341,0,341]],[1709690914,[339,0,339]],[1709690915,[341,0,341]],[1709690916,[340,0,340]],[1709690917,[340,0,340]],[1709690918,[340,0,340]],[1709690919,[339,0,339]],[1709690920,[341,0,341]],[1709690921,[339,0,339]],[1709690922,[341,0,341]],[1709690923,[340,0,340]],[1709690924,[340,0,340]],[1709690925,[340,0,340]],[1709690926,[340,0,340]],[1709690927,[340,0,340]],[1709690928,[340,0,340]],[1709690929,[340,0,340]],[1709690930,[340,0,340]],[1709690931,[340,0,340]],[1709690932,[340,0,340]],[1709690933,[340,0,340]],[1709690934,[340,0,340]],[1709690935,[340,0,340]],[1709690936,[340,0,340]],[1709690937,[339,0,339]],[1709690938,[340,0,340]],[1709690939,[341,0,341]],[1709690940,[340,0,340]],[1709690941,[339,0,339]],[1709690942,[341,0,341]],[1709690943,[340,0,340]],[1709690944,[340,0,340]],[1709690945,[340,0,340]],[1709690946,[340,0,340]],[1709690947,[340,0,340]],[1709690948,[339,0,339]],[1709690949,[341,0,341]],[1709690950,[340,0,340]],[1709690951,[340,0,340]],[1709690952,[339,0,339]],[1709690953,[341,0,341]],[1709690954,[340,0,340]],[1709690955,[340,0,340]],[1709690956,[340,0,340]],[1709690957,[340,0,340]],[1709690958,[340,0,340]],[1709690959,[340,0,340]],[1709690960,[340,0,340]],[1709690961,[340,0,340]],[1709690962,[340,0,340]],[1709690963,[340,0,340]],[1709690964,[340,0,340]],[1709690965,[339,0,339]],[1709690966,[340,0,340]],[1709690967,[341,0,341]],[1709690968,[340,0,340]],[1709690969,[503,0,503]]]);
var requestsChart = new Highcharts.StockChart({
chart: {
renderTo: 'requests',
zoomType: 'x',
marginBottom: 60
},
credits: { enabled: false },
legend: {
enabled: true,
floating: true,
y: -65,
borderWidth: 0,
itemStyle: { fontWeight: "normal" },
symbolRadius: 0
},
title: { text: 'A title to let highcharts reserve the place for the title set later' },
navigator: {
maskInside: false
},
rangeSelector: {
buttonSpacing: 0,
buttonTheme: {
fill: '#CFC9C6',
padding: 1,
stroke: '#000000',
'stroke-width': 0.25,
style: {
color: '#000000',
fontWeight: 'bold',
},
states: {
stroke: '#000000',
'stroke-width': 0.25,
hover: {
fill: '#92918C',
style: { color: 'black' }
},
select: {
fill: '#FFA900',
style: { color: 'white' }
}
}
},
buttons : [
{
type : 'minute',
count : 1,