-
Notifications
You must be signed in to change notification settings - Fork 923
/
Copy pathindex.html
1250 lines (1180 loc) · 111 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-07 23:04:24 GMT</span>
</span>
<span class="simulation-information-item">
<span class="simulation-information-label">Duration: </span>
<span>4m 40s </span>
</span>
<span class="simulation-tooltip simulation-information-item description" title="Description" data-content="Rinha de Backend - 2024/Q1: Crébito - sudo-victor-js">
<span class="simulation-information-label">Description: </span>
<span>Rinha de Backend - 2024/Q1: Crébito - sudo-victor-js</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.u.NoSuchElementException: No attribute named 'limite' is defined<span class="value" style="display:none">0</span></td>
<td class="value error-col-2 total ko">26904</td>
<td class="value error-col-3 total ko">88.628 %</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">1</span></td>
<td class="value error-col-2 total ko">2758</td>
<td class="value error-col-3 total ko">9.086 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">jmesPath(saldo.total).find.ConsistenciaSaldoLimite - Extrato, WTF?!<span class="value" style="display:none">2</span></td>
<td class="value error-col-2 total ko">372</td>
<td class="value error-col-3 total ko">1.225 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">j.i.IOException: Premature close<span class="value" style="display:none">3</span></td>
<td class="value error-col-2 total ko">294</td>
<td class="value error-col-3 total ko">0.969 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">jmesPath(limite).find.exists, found nothing<span class="value" style="display:none">4</span></td>
<td class="value error-col-2 total ko">9</td>
<td class="value error-col-3 total ko">0.03 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">status.find.in(422,400), but actually found 200<span class="value" style="display:none">5</span></td>
<td class="value error-col-2 total ko">5</td>
<td class="value error-col-3 total ko">0.016 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">jmesPath(ultimas_transacoes[0].valor).find.is(1), but actually found nothing<span class="value" style="display:none">6</span></td>
<td class="value error-col-2 total ko">5</td>
<td class="value error-col-3 total ko">0.016 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">jmesPath(saldo).find.exists, found nothing<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.013 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">status.find.in(200), but actually found 422<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.007 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">jmesPath(saldo.total).find.is(-25), but actually found nothing<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.003 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">jmesPath(saldo.total).find.is(0), but actually found -71111<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.003 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">jmesPath(saldo.total).find.is(0), but actually found nothing<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.003 %</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: [
[1709852665000,0],[1709852666000,0],[1709852667000,0],[1709852668000,0],[1709852669000,1],[1709852670000,2],[1709852671000,2],[1709852672000,4],[1709852673000,4],[1709852674000,5],[1709852675000,6],[1709852676000,7],[1709852677000,8],[1709852678000,8],[1709852679000,10],[1709852680000,10],[1709852681000,12],[1709852682000,12],[1709852683000,14],[1709852684000,14],[1709852685000,15],[1709852686000,16],[1709852687000,17],[1709852688000,17],[1709852689000,19],[1709852690000,20],[1709852691000,20],[1709852692000,22],[1709852693000,22],[1709852694000,23],[1709852695000,25],[1709852696000,25],[1709852697000,26],[1709852698000,26],[1709852699000,28],[1709852700000,29],[1709852701000,30],[1709852702000,30],[1709852703000,32],[1709852704000,32],[1709852705000,33],[1709852706000,34],[1709852707000,35],[1709852708000,36],[1709852709000,37],[1709852710000,38],[1709852711000,39],[1709852712000,39],[1709852713000,41],[1709852714000,41],[1709852715000,43],[1709852716000,43],[1709852717000,44],[1709852718000,45],[1709852719000,46],[1709852720000,47],[1709852721000,48],[1709852722000,48],[1709852723000,50],[1709852724000,50],[1709852725000,52],[1709852726000,52],[1709852727000,53],[1709852728000,54],[1709852729000,56],[1709852730000,55],[1709852731000,57],[1709852732000,58],[1709852733000,59],[1709852734000,60],[1709852735000,62],[1709852736000,62],[1709852737000,64],[1709852738000,64],[1709852739000,65],[1709852740000,66],[1709852741000,68],[1709852742000,73],[1709852743000,76],[1709852744000,77],[1709852745000,79],[1709852746000,78],[1709852747000,78],[1709852748000,83],[1709852749000,82],[1709852750000,82],[1709852751000,86],[1709852752000,84],[1709852753000,86],[1709852754000,82],[1709852755000,89],[1709852756000,86],[1709852757000,92],[1709852758000,97],[1709852759000,88],[1709852760000,90],[1709852761000,97],[1709852762000,109],[1709852763000,99],[1709852764000,96],[1709852765000,99],[1709852766000,108],[1709852767000,106],[1709852768000,102],[1709852769000,120],[1709852770000,109],[1709852771000,115],[1709852772000,129],[1709852773000,122],[1709852774000,121],[1709852775000,125],[1709852776000,130],[1709852777000,142],[1709852778000,144],[1709852779000,152],[1709852780000,145],[1709852781000,151],[1709852782000,155],[1709852783000,166],[1709852784000,169],[1709852785000,173],[1709852786000,173],[1709852787000,165],[1709852788000,187],[1709852789000,185],[1709852790000,167],[1709852791000,193],[1709852792000,217],[1709852793000,229],[1709852794000,235],[1709852795000,261],[1709852796000,258],[1709852797000,290],[1709852798000,294],[1709852799000,314],[1709852800000,340],[1709852801000,363],[1709852802000,361],[1709852803000,379],[1709852804000,398],[1709852805000,414],[1709852806000,430],[1709852807000,445],[1709852808000,463],[1709852809000,481],[1709852810000,510],[1709852811000,533],[1709852812000,552],[1709852813000,561],[1709852814000,571],[1709852815000,586],[1709852816000,600],[1709852817000,619],[1709852818000,646],[1709852819000,654],[1709852820000,658],[1709852821000,680],[1709852822000,700],[1709852823000,720],[1709852824000,743],[1709852825000,726],[1709852826000,755],[1709852827000,785],[1709852828000,793],[1709852829000,816],[1709852830000,837],[1709852831000,841],[1709852832000,858],[1709852833000,848],[1709852834000,872],[1709852835000,908],[1709852836000,918],[1709852837000,938],[1709852838000,939],[1709852839000,949],[1709852840000,973],[1709852841000,986],[1709852842000,1011],[1709852843000,1010],[1709852844000,1044],[1709852845000,1064],[1709852846000,1075],[1709852847000,1083],[1709852848000,1102],[1709852849000,1115],[1709852850000,1132],[1709852851000,1158],[1709852852000,1167],[1709852853000,1189],[1709852854000,1207],[1709852855000,1188],[1709852856000,1225],[1709852857000,1219],[1709852858000,1252],[1709852859000,1254],[1709852860000,1280],[1709852861000,1289],[1709852862000,1297],[1709852863000,1318],[1709852864000,1328],[1709852865000,1345],[1709852866000,1356],[1709852867000,1376],[1709852868000,1391],[1709852869000,1396],[1709852870000,1410],[1709852871000,1419],[1709852872000,1430],[1709852873000,1445],[1709852874000,1454],[1709852875000,1452],[1709852876000,1475],[1709852877000,1500],[1709852878000,1514],[1709852879000,1524],[1709852880000,1548],[1709852881000,1568],[1709852882000,1578],[1709852883000,1590],[1709852884000,1585],[1709852885000,1592],[1709852886000,1610],[1709852887000,1614],[1709852888000,1639],[1709852889000,1657],[1709852890000,1675],[1709852891000,1689],[1709852892000,1696],[1709852893000,1707],[1709852894000,1711],[1709852895000,1702],[1709852896000,1710],[1709852897000,1715],[1709852898000,1749],[1709852899000,1750],[1709852900000,1765],[1709852901000,1745],[1709852902000,1746],[1709852903000,1763],[1709852904000,1754],[1709852905000,1760],[1709852906000,1767],[1709852907000,1784],[1709852908000,1792],[1709852909000,1765],[1709852910000,1664],[1709852911000,1539],[1709852912000,1451],[1709852913000,1349],[1709852915000,1233],[1709852916000,1127],[1709852917000,1025],[1709852918000,921],[1709852919000,805],[1709852920000,698],[1709852921000,600],[1709852922000,514],[1709852923000,463],[1709852924000,420],[1709852925000,365],[1709852926000,334],[1709852927000,295],[1709852928000,273],[1709852929000,267],[1709852930000,250],[1709852931000,221],[1709852932000,213],[1709852933000,171],[1709852934000,134],[1709852935000,122],[1709852936000,97],[1709852937000,73],[1709852938000,59],[1709852939000,51],[1709852940000,42],[1709852941000,40],[1709852942000,29],[1709852943000,21],[1709852944000,19],[1709852945000,10]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#68b65c',
name: 'débitos',
data: [
[1709852665000,0],[1709852666000,0],[1709852667000,0],[1709852668000,0],[1709852669000,1],[1709852670000,2],[1709852671000,4],[1709852672000,6],[1709852673000,8],[1709852674000,9],[1709852675000,11],[1709852676000,13],[1709852677000,17],[1709852678000,16],[1709852679000,19],[1709852680000,20],[1709852681000,22],[1709852682000,24],[1709852683000,25],[1709852684000,28],[1709852685000,29],[1709852686000,31],[1709852687000,33],[1709852688000,35],[1709852689000,37],[1709852690000,38],[1709852691000,40],[1709852692000,42],[1709852693000,44],[1709852694000,46],[1709852695000,47],[1709852696000,50],[1709852697000,51],[1709852698000,53],[1709852699000,55],[1709852700000,57],[1709852701000,60],[1709852702000,61],[1709852703000,63],[1709852704000,65],[1709852705000,67],[1709852706000,68],[1709852707000,69],[1709852708000,71],[1709852709000,74],[1709852710000,74],[1709852711000,77],[1709852712000,79],[1709852713000,80],[1709852714000,83],[1709852715000,84],[1709852716000,86],[1709852717000,88],[1709852718000,89],[1709852719000,92],[1709852720000,93],[1709852721000,95],[1709852722000,97],[1709852723000,98],[1709852724000,101],[1709852725000,102],[1709852726000,104],[1709852727000,106],[1709852728000,108],[1709852729000,110],[1709852730000,111],[1709852731000,113],[1709852732000,115],[1709852733000,118],[1709852734000,119],[1709852735000,120],[1709852736000,124],[1709852737000,125],[1709852738000,127],[1709852739000,129],[1709852740000,130],[1709852741000,134],[1709852742000,144],[1709852743000,152],[1709852744000,154],[1709852745000,156],[1709852746000,151],[1709852747000,158],[1709852748000,162],[1709852749000,164],[1709852750000,159],[1709852751000,171],[1709852752000,168],[1709852753000,171],[1709852754000,163],[1709852755000,177],[1709852756000,176],[1709852757000,183],[1709852758000,193],[1709852759000,175],[1709852760000,188],[1709852761000,192],[1709852762000,211],[1709852763000,198],[1709852764000,194],[1709852765000,200],[1709852766000,214],[1709852767000,207],[1709852768000,204],[1709852769000,244],[1709852770000,219],[1709852771000,229],[1709852772000,261],[1709852773000,247],[1709852774000,238],[1709852775000,251],[1709852776000,265],[1709852777000,280],[1709852778000,288],[1709852779000,304],[1709852780000,297],[1709852781000,297],[1709852782000,304],[1709852783000,330],[1709852784000,334],[1709852785000,346],[1709852786000,354],[1709852787000,332],[1709852788000,369],[1709852789000,382],[1709852790000,343],[1709852791000,392],[1709852792000,434],[1709852793000,458],[1709852794000,470],[1709852795000,526],[1709852796000,523],[1709852797000,581],[1709852798000,606],[1709852799000,633],[1709852800000,672],[1709852801000,707],[1709852802000,718],[1709852803000,761],[1709852804000,789],[1709852805000,826],[1709852806000,863],[1709852807000,886],[1709852808000,930],[1709852809000,960],[1709852810000,1006],[1709852811000,1052],[1709852812000,1096],[1709852813000,1105],[1709852814000,1139],[1709852815000,1177],[1709852816000,1203],[1709852817000,1232],[1709852818000,1285],[1709852819000,1309],[1709852820000,1318],[1709852821000,1357],[1709852822000,1409],[1709852823000,1433],[1709852824000,1487],[1709852825000,1452],[1709852826000,1519],[1709852827000,1574],[1709852828000,1592],[1709852829000,1633],[1709852830000,1682],[1709852831000,1683],[1709852832000,1730],[1709852833000,1736],[1709852834000,1757],[1709852835000,1842],[1709852836000,1866],[1709852837000,1903],[1709852838000,1912],[1709852839000,1948],[1709852840000,1964],[1709852841000,1981],[1709852842000,2038],[1709852843000,2083],[1709852844000,2138],[1709852845000,2153],[1709852846000,2176],[1709852847000,2198],[1709852848000,2246],[1709852849000,2267],[1709852850000,2301],[1709852851000,2348],[1709852852000,2361],[1709852853000,2413],[1709852854000,2444],[1709852855000,2420],[1709852856000,2504],[1709852857000,2497],[1709852858000,2555],[1709852859000,2569],[1709852860000,2602],[1709852861000,2631],[1709852862000,2636],[1709852863000,2676],[1709852864000,2681],[1709852865000,2700],[1709852866000,2730],[1709852867000,2766],[1709852868000,2774],[1709852869000,2815],[1709852870000,2822],[1709852871000,2844],[1709852872000,2885],[1709852873000,2906],[1709852874000,2912],[1709852875000,2914],[1709852876000,2948],[1709852877000,2983],[1709852878000,3002],[1709852879000,3029],[1709852880000,3062],[1709852881000,3096],[1709852882000,3118],[1709852883000,3134],[1709852884000,3149],[1709852885000,3150],[1709852886000,3180],[1709852887000,3211],[1709852888000,3247],[1709852889000,3272],[1709852890000,3303],[1709852891000,3331],[1709852892000,3361],[1709852893000,3365],[1709852894000,3378],[1709852895000,3367],[1709852896000,3389],[1709852897000,3391],[1709852898000,3437],[1709852899000,3435],[1709852900000,3481],[1709852901000,3450],[1709852902000,3453],[1709852903000,3457],[1709852904000,3460],[1709852905000,3483],[1709852906000,3516],[1709852907000,3536],[1709852908000,3567],[1709852909000,3492],[1709852910000,3296],[1709852911000,3035],[1709852912000,2866],[1709852913000,2666],[1709852915000,2448],[1709852916000,2219],[1709852917000,2045],[1709852918000,1828],[1709852919000,1583],[1709852920000,1371],[1709852921000,1168],[1709852922000,1016],[1709852923000,912],[1709852924000,839],[1709852925000,717],[1709852926000,661],[1709852927000,577],[1709852928000,540],[1709852929000,536],[1709852930000,507],[1709852931000,450],[1709852932000,427],[1709852933000,345],[1709852934000,284],[1709852935000,246],[1709852936000,198],[1709852937000,162],[1709852938000,134],[1709852939000,115],[1709852940000,96],[1709852941000,88],[1709852942000,69],[1709852943000,47],[1709852944000,41],[1709852945000,20]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#f15b4f',
name: 'extratos',
data: [
[1709852665000,0],[1709852666000,0],[1709852667000,0],[1709852668000,0],[1709852669000,1],[1709852670000,2],[1709852671000,1],[1709852672000,1],[1709852673000,1],[1709852674000,1],[1709852675000,2],[1709852676000,1],[1709852677000,2],[1709852678000,2],[1709852679000,1],[1709852680000,2],[1709852681000,2],[1709852682000,2],[1709852683000,2],[1709852684000,2],[1709852685000,2],[1709852686000,2],[1709852687000,3],[1709852688000,2],[1709852689000,3],[1709852690000,2],[1709852691000,3],[1709852692000,2],[1709852693000,3],[1709852694000,3],[1709852695000,3],[1709852696000,3],[1709852697000,3],[1709852698000,3],[1709852699000,3],[1709852700000,4],[1709852701000,3],[1709852702000,3],[1709852703000,4],[1709852704000,3],[1709852705000,4],[1709852706000,4],[1709852707000,4],[1709852708000,4],[1709852709000,4],[1709852710000,4],[1709852711000,4],[1709852712000,4],[1709852713000,4],[1709852714000,4],[1709852715000,5],[1709852716000,4],[1709852717000,5],[1709852718000,5],[1709852719000,4],[1709852720000,5],[1709852721000,5],[1709852722000,5],[1709852723000,5],[1709852724000,5],[1709852725000,5],[1709852726000,5],[1709852727000,6],[1709852728000,5],[1709852729000,6],[1709852730000,5],[1709852731000,6],[1709852732000,5],[1709852733000,6],[1709852734000,6],[1709852735000,6],[1709852736000,6],[1709852737000,6],[1709852738000,6],[1709852739000,6],[1709852740000,7],[1709852741000,6],[1709852742000,8],[1709852743000,8],[1709852744000,7],[1709852745000,8],[1709852746000,7],[1709852747000,9],[1709852748000,8],[1709852749000,8],[1709852750000,8],[1709852751000,8],[1709852752000,8],[1709852753000,8],[1709852754000,8],[1709852755000,9],[1709852756000,8],[1709852757000,8],[1709852758000,10],[1709852759000,8],[1709852760000,9],[1709852761000,10],[1709852762000,11],[1709852763000,10],[1709852764000,9],[1709852765000,9],[1709852766000,10],[1709852767000,10],[1709852768000,9],[1709852769000,12],[1709852770000,10],[1709852771000,12],[1709852772000,11],[1709852773000,12],[1709852774000,11],[1709852775000,11],[1709852776000,12],[1709852777000,13],[1709852778000,13],[1709852779000,15],[1709852780000,16],[1709852781000,14],[1709852782000,14],[1709852783000,16],[1709852784000,15],[1709852785000,16],[1709852786000,16],[1709852787000,17],[1709852788000,18],[1709852789000,16],[1709852790000,16],[1709852791000,18],[1709852792000,20],[1709852793000,21],[1709852794000,22],[1709852795000,24],[1709852796000,24],[1709852797000,27],[1709852798000,28],[1709852799000,29],[1709852800000,29],[1709852801000,30],[1709852802000,30],[1709852803000,33],[1709852804000,33],[1709852805000,33],[1709852806000,33],[1709852807000,33],[1709852808000,34],[1709852809000,36],[1709852810000,39],[1709852811000,36],[1709852812000,38],[1709852813000,38],[1709852814000,37],[1709852815000,41],[1709852816000,44],[1709852817000,40],[1709852818000,41],[1709852819000,42],[1709852820000,44],[1709852821000,42],[1709852822000,46],[1709852823000,45],[1709852824000,49],[1709852825000,47],[1709852826000,49],[1709852827000,48],[1709852828000,49],[1709852829000,49],[1709852830000,55],[1709852831000,52],[1709852832000,53],[1709852833000,54],[1709852834000,57],[1709852835000,59],[1709852836000,60],[1709852837000,60],[1709852838000,58],[1709852839000,61],[1709852840000,60],[1709852841000,59],[1709852842000,62],[1709852843000,59],[1709852844000,60],[1709852845000,60],[1709852846000,60],[1709852847000,60],[1709852848000,62],[1709852849000,65],[1709852850000,65],[1709852851000,70],[1709852852000,71],[1709852853000,66],[1709852854000,69],[1709852855000,72],[1709852856000,74],[1709852857000,74],[1709852858000,81],[1709852859000,81],[1709852860000,80],[1709852861000,80],[1709852862000,81],[1709852863000,84],[1709852864000,85],[1709852865000,85],[1709852866000,84],[1709852867000,85],[1709852868000,84],[1709852869000,89],[1709852870000,91],[1709852871000,91],[1709852872000,93],[1709852873000,90],[1709852874000,89],[1709852875000,92],[1709852876000,94],[1709852877000,96],[1709852878000,98],[1709852879000,98],[1709852880000,98],[1709852881000,97],[1709852882000,97],[1709852883000,101],[1709852884000,98],[1709852885000,98],[1709852886000,102],[1709852887000,101],[1709852888000,105],[1709852889000,105],[1709852890000,104],[1709852891000,109],[1709852892000,105],[1709852893000,103],[1709852894000,104],[1709852895000,107],[1709852896000,106],[1709852897000,107],[1709852898000,105],[1709852899000,108],[1709852900000,107],[1709852901000,107],[1709852902000,104],[1709852903000,104],[1709852904000,103],[1709852905000,106],[1709852906000,104],[1709852907000,105],[1709852908000,103],[1709852909000,100],[1709852910000,93],[1709852911000,80],[1709852912000,73],[1709852913000,65],[1709852915000,61],[1709852916000,57],[1709852917000,51],[1709852918000,46],[1709852919000,41],[1709852920000,37],[1709852921000,34],[1709852922000,29],[1709852923000,24],[1709852924000,23],[1709852925000,21],[1709852926000,19],[1709852927000,17],[1709852928000,16],[1709852929000,16],[1709852930000,15],[1709852931000,12],[1709852932000,12],[1709852933000,10],[1709852934000,8],[1709852935000,6],[1709852936000,4],[1709852937000,2],[1709852938000,1],[1709852939000,1],[1709852940000,1],[1709852941000,1],[1709852942000,0],[1709852943000,0],[1709852944000,0],[1709852945000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FFDD00',
name: 'validação HTTP 404',
data: [
[1709852665000,0],[1709852666000,0],[1709852667000,0],[1709852668000,1],[1709852669000,0],[1709852670000,0],[1709852671000,0],[1709852672000,0],[1709852673000,0],[1709852674000,0],[1709852675000,0],[1709852676000,0],[1709852677000,0],[1709852678000,0],[1709852679000,0],[1709852680000,0],[1709852681000,0],[1709852682000,0],[1709852683000,0],[1709852684000,0],[1709852685000,0],[1709852686000,0],[1709852687000,0],[1709852688000,0],[1709852689000,0],[1709852690000,0],[1709852691000,0],[1709852692000,0],[1709852693000,0],[1709852694000,0],[1709852695000,0],[1709852696000,0],[1709852697000,0],[1709852698000,0],[1709852699000,0],[1709852700000,0],[1709852701000,0],[1709852702000,0],[1709852703000,0],[1709852704000,0],[1709852705000,0],[1709852706000,0],[1709852707000,0],[1709852708000,0],[1709852709000,0],[1709852710000,0],[1709852711000,0],[1709852712000,0],[1709852713000,0],[1709852714000,0],[1709852715000,0],[1709852716000,0],[1709852717000,0],[1709852718000,0],[1709852719000,0],[1709852720000,0],[1709852721000,0],[1709852722000,0],[1709852723000,0],[1709852724000,0],[1709852725000,0],[1709852726000,0],[1709852727000,0],[1709852728000,0],[1709852729000,0],[1709852730000,0],[1709852731000,0],[1709852732000,0],[1709852733000,0],[1709852734000,0],[1709852735000,0],[1709852736000,0],[1709852737000,0],[1709852738000,0],[1709852739000,0],[1709852740000,0],[1709852741000,0],[1709852742000,0],[1709852743000,0],[1709852744000,0],[1709852745000,0],[1709852746000,0],[1709852747000,0],[1709852748000,0],[1709852749000,0],[1709852750000,0],[1709852751000,0],[1709852752000,0],[1709852753000,0],[1709852754000,0],[1709852755000,0],[1709852756000,0],[1709852757000,0],[1709852758000,0],[1709852759000,0],[1709852760000,0],[1709852761000,0],[1709852762000,0],[1709852763000,0],[1709852764000,0],[1709852765000,0],[1709852766000,0],[1709852767000,0],[1709852768000,0],[1709852769000,0],[1709852770000,0],[1709852771000,0],[1709852772000,0],[1709852773000,0],[1709852774000,0],[1709852775000,0],[1709852776000,0],[1709852777000,0],[1709852778000,0],[1709852779000,0],[1709852780000,0],[1709852781000,0],[1709852782000,0],[1709852783000,0],[1709852784000,0],[1709852785000,0],[1709852786000,0],[1709852787000,0],[1709852788000,0],[1709852789000,0],[1709852790000,0],[1709852791000,0],[1709852792000,0],[1709852793000,0],[1709852794000,0],[1709852795000,0],[1709852796000,0],[1709852797000,0],[1709852798000,0],[1709852799000,0],[1709852800000,0],[1709852801000,0],[1709852802000,0],[1709852803000,0],[1709852804000,0],[1709852805000,0],[1709852806000,0],[1709852807000,0],[1709852808000,0],[1709852809000,0],[1709852810000,0],[1709852811000,0],[1709852812000,0],[1709852813000,0],[1709852814000,0],[1709852815000,0],[1709852816000,0],[1709852817000,0],[1709852818000,0],[1709852819000,0],[1709852820000,0],[1709852821000,0],[1709852822000,0],[1709852823000,0],[1709852824000,0],[1709852825000,0],[1709852826000,0],[1709852827000,0],[1709852828000,0],[1709852829000,0],[1709852830000,0],[1709852831000,0],[1709852832000,0],[1709852833000,0],[1709852834000,0],[1709852835000,0],[1709852836000,0],[1709852837000,0],[1709852838000,0],[1709852839000,0],[1709852840000,0],[1709852841000,0],[1709852842000,0],[1709852843000,0],[1709852844000,0],[1709852845000,0],[1709852846000,0],[1709852847000,0],[1709852848000,0],[1709852849000,0],[1709852850000,0],[1709852851000,0],[1709852852000,0],[1709852853000,0],[1709852854000,0],[1709852855000,0],[1709852856000,0],[1709852857000,0],[1709852858000,0],[1709852859000,0],[1709852860000,0],[1709852861000,0],[1709852862000,0],[1709852863000,0],[1709852864000,0],[1709852865000,0],[1709852866000,0],[1709852867000,0],[1709852868000,0],[1709852869000,0],[1709852870000,0],[1709852871000,0],[1709852872000,0],[1709852873000,0],[1709852874000,0],[1709852875000,0],[1709852876000,0],[1709852877000,0],[1709852878000,0],[1709852879000,0],[1709852880000,0],[1709852881000,0],[1709852882000,0],[1709852883000,0],[1709852884000,0],[1709852885000,0],[1709852886000,0],[1709852887000,0],[1709852888000,0],[1709852889000,0],[1709852890000,0],[1709852891000,0],[1709852892000,0],[1709852893000,0],[1709852894000,0],[1709852895000,0],[1709852896000,0],[1709852897000,0],[1709852898000,0],[1709852899000,0],[1709852900000,0],[1709852901000,0],[1709852902000,0],[1709852903000,0],[1709852904000,0],[1709852905000,0],[1709852906000,0],[1709852907000,0],[1709852908000,0],[1709852909000,0],[1709852910000,0],[1709852911000,0],[1709852912000,0],[1709852913000,0],[1709852915000,0],[1709852916000,0],[1709852917000,0],[1709852918000,0],[1709852919000,0],[1709852920000,0],[1709852921000,0],[1709852922000,0],[1709852923000,0],[1709852924000,0],[1709852925000,0],[1709852926000,0],[1709852927000,0],[1709852928000,0],[1709852929000,0],[1709852930000,0],[1709852931000,0],[1709852932000,0],[1709852933000,0],[1709852934000,0],[1709852935000,0],[1709852936000,0],[1709852937000,0],[1709852938000,0],[1709852939000,0],[1709852940000,0],[1709852941000,0],[1709852942000,0],[1709852943000,0],[1709852944000,0],[1709852945000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00D5FF',
name: 'validações',
data: [
[1709852665000,0],[1709852666000,0],[1709852667000,0],[1709852668000,5],[1709852669000,5],[1709852670000,0],[1709852671000,0],[1709852672000,0],[1709852673000,0],[1709852674000,0],[1709852675000,0],[1709852676000,0],[1709852677000,0],[1709852678000,0],[1709852679000,0],[1709852680000,0],[1709852681000,0],[1709852682000,0],[1709852683000,0],[1709852684000,0],[1709852685000,0],[1709852686000,0],[1709852687000,0],[1709852688000,0],[1709852689000,0],[1709852690000,0],[1709852691000,0],[1709852692000,0],[1709852693000,0],[1709852694000,0],[1709852695000,0],[1709852696000,0],[1709852697000,0],[1709852698000,0],[1709852699000,0],[1709852700000,0],[1709852701000,0],[1709852702000,0],[1709852703000,0],[1709852704000,0],[1709852705000,0],[1709852706000,0],[1709852707000,0],[1709852708000,0],[1709852709000,0],[1709852710000,0],[1709852711000,0],[1709852712000,0],[1709852713000,0],[1709852714000,0],[1709852715000,0],[1709852716000,0],[1709852717000,0],[1709852718000,0],[1709852719000,0],[1709852720000,0],[1709852721000,0],[1709852722000,0],[1709852723000,0],[1709852724000,0],[1709852725000,0],[1709852726000,0],[1709852727000,0],[1709852728000,0],[1709852729000,0],[1709852730000,0],[1709852731000,0],[1709852732000,0],[1709852733000,0],[1709852734000,0],[1709852735000,0],[1709852736000,0],[1709852737000,0],[1709852738000,0],[1709852739000,0],[1709852740000,0],[1709852741000,0],[1709852742000,0],[1709852743000,0],[1709852744000,0],[1709852745000,0],[1709852746000,0],[1709852747000,0],[1709852748000,0],[1709852749000,0],[1709852750000,0],[1709852751000,0],[1709852752000,0],[1709852753000,0],[1709852754000,0],[1709852755000,0],[1709852756000,0],[1709852757000,0],[1709852758000,0],[1709852759000,0],[1709852760000,0],[1709852761000,0],[1709852762000,0],[1709852763000,0],[1709852764000,0],[1709852765000,0],[1709852766000,0],[1709852767000,0],[1709852768000,0],[1709852769000,0],[1709852770000,0],[1709852771000,0],[1709852772000,0],[1709852773000,0],[1709852774000,0],[1709852775000,0],[1709852776000,0],[1709852777000,0],[1709852778000,0],[1709852779000,0],[1709852780000,0],[1709852781000,0],[1709852782000,0],[1709852783000,0],[1709852784000,0],[1709852785000,0],[1709852786000,0],[1709852787000,0],[1709852788000,0],[1709852789000,0],[1709852790000,0],[1709852791000,0],[1709852792000,0],[1709852793000,0],[1709852794000,0],[1709852795000,0],[1709852796000,0],[1709852797000,0],[1709852798000,0],[1709852799000,0],[1709852800000,0],[1709852801000,0],[1709852802000,0],[1709852803000,0],[1709852804000,0],[1709852805000,0],[1709852806000,0],[1709852807000,0],[1709852808000,0],[1709852809000,0],[1709852810000,0],[1709852811000,0],[1709852812000,0],[1709852813000,0],[1709852814000,0],[1709852815000,0],[1709852816000,0],[1709852817000,0],[1709852818000,0],[1709852819000,0],[1709852820000,0],[1709852821000,0],[1709852822000,0],[1709852823000,0],[1709852824000,0],[1709852825000,0],[1709852826000,0],[1709852827000,0],[1709852828000,0],[1709852829000,0],[1709852830000,0],[1709852831000,0],[1709852832000,0],[1709852833000,0],[1709852834000,0],[1709852835000,0],[1709852836000,0],[1709852837000,0],[1709852838000,0],[1709852839000,0],[1709852840000,0],[1709852841000,0],[1709852842000,0],[1709852843000,0],[1709852844000,0],[1709852845000,0],[1709852846000,0],[1709852847000,0],[1709852848000,0],[1709852849000,0],[1709852850000,0],[1709852851000,0],[1709852852000,0],[1709852853000,0],[1709852854000,0],[1709852855000,0],[1709852856000,0],[1709852857000,0],[1709852858000,0],[1709852859000,0],[1709852860000,0],[1709852861000,0],[1709852862000,0],[1709852863000,0],[1709852864000,0],[1709852865000,0],[1709852866000,0],[1709852867000,0],[1709852868000,0],[1709852869000,0],[1709852870000,0],[1709852871000,0],[1709852872000,0],[1709852873000,0],[1709852874000,0],[1709852875000,0],[1709852876000,0],[1709852877000,0],[1709852878000,0],[1709852879000,0],[1709852880000,0],[1709852881000,0],[1709852882000,0],[1709852883000,0],[1709852884000,0],[1709852885000,0],[1709852886000,0],[1709852887000,0],[1709852888000,0],[1709852889000,0],[1709852890000,0],[1709852891000,0],[1709852892000,0],[1709852893000,0],[1709852894000,0],[1709852895000,0],[1709852896000,0],[1709852897000,0],[1709852898000,0],[1709852899000,0],[1709852900000,0],[1709852901000,0],[1709852902000,0],[1709852903000,0],[1709852904000,0],[1709852905000,0],[1709852906000,0],[1709852907000,0],[1709852908000,0],[1709852909000,0],[1709852910000,0],[1709852911000,0],[1709852912000,0],[1709852913000,0],[1709852915000,0],[1709852916000,0],[1709852917000,0],[1709852918000,0],[1709852919000,0],[1709852920000,0],[1709852921000,0],[1709852922000,0],[1709852923000,0],[1709852924000,0],[1709852925000,0],[1709852926000,0],[1709852927000,0],[1709852928000,0],[1709852929000,0],[1709852930000,0],[1709852931000,0],[1709852932000,0],[1709852933000,0],[1709852934000,0],[1709852935000,0],[1709852936000,0],[1709852937000,0],[1709852938000,0],[1709852939000,0],[1709852940000,0],[1709852941000,0],[1709852942000,0],[1709852943000,0],[1709852944000,0],[1709852945000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00FF00',
name: 'validação concorrência saldo - 0',
data: [
[1709852665000,0],[1709852666000,0],[1709852667000,1],[1709852668000,0],[1709852669000,0],[1709852670000,0],[1709852671000,0],[1709852672000,0],[1709852673000,0],[1709852674000,0],[1709852675000,0],[1709852676000,0],[1709852677000,0],[1709852678000,0],[1709852679000,0],[1709852680000,0],[1709852681000,0],[1709852682000,0],[1709852683000,0],[1709852684000,0],[1709852685000,0],[1709852686000,0],[1709852687000,0],[1709852688000,0],[1709852689000,0],[1709852690000,0],[1709852691000,0],[1709852692000,0],[1709852693000,0],[1709852694000,0],[1709852695000,0],[1709852696000,0],[1709852697000,0],[1709852698000,0],[1709852699000,0],[1709852700000,0],[1709852701000,0],[1709852702000,0],[1709852703000,0],[1709852704000,0],[1709852705000,0],[1709852706000,0],[1709852707000,0],[1709852708000,0],[1709852709000,0],[1709852710000,0],[1709852711000,0],[1709852712000,0],[1709852713000,0],[1709852714000,0],[1709852715000,0],[1709852716000,0],[1709852717000,0],[1709852718000,0],[1709852719000,0],[1709852720000,0],[1709852721000,0],[1709852722000,0],[1709852723000,0],[1709852724000,0],[1709852725000,0],[1709852726000,0],[1709852727000,0],[1709852728000,0],[1709852729000,0],[1709852730000,0],[1709852731000,0],[1709852732000,0],[1709852733000,0],[1709852734000,0],[1709852735000,0],[1709852736000,0],[1709852737000,0],[1709852738000,0],[1709852739000,0],[1709852740000,0],[1709852741000,0],[1709852742000,0],[1709852743000,0],[1709852744000,0],[1709852745000,0],[1709852746000,0],[1709852747000,0],[1709852748000,0],[1709852749000,0],[1709852750000,0],[1709852751000,0],[1709852752000,0],[1709852753000,0],[1709852754000,0],[1709852755000,0],[1709852756000,0],[1709852757000,0],[1709852758000,0],[1709852759000,0],[1709852760000,0],[1709852761000,0],[1709852762000,0],[1709852763000,0],[1709852764000,0],[1709852765000,0],[1709852766000,0],[1709852767000,0],[1709852768000,0],[1709852769000,0],[1709852770000,0],[1709852771000,0],[1709852772000,0],[1709852773000,0],[1709852774000,0],[1709852775000,0],[1709852776000,0],[1709852777000,0],[1709852778000,0],[1709852779000,0],[1709852780000,0],[1709852781000,0],[1709852782000,0],[1709852783000,0],[1709852784000,0],[1709852785000,0],[1709852786000,0],[1709852787000,0],[1709852788000,0],[1709852789000,0],[1709852790000,0],[1709852791000,0],[1709852792000,0],[1709852793000,0],[1709852794000,0],[1709852795000,0],[1709852796000,0],[1709852797000,0],[1709852798000,0],[1709852799000,0],[1709852800000,0],[1709852801000,0],[1709852802000,0],[1709852803000,0],[1709852804000,0],[1709852805000,0],[1709852806000,0],[1709852807000,0],[1709852808000,0],[1709852809000,0],[1709852810000,0],[1709852811000,0],[1709852812000,0],[1709852813000,0],[1709852814000,0],[1709852815000,0],[1709852816000,0],[1709852817000,0],[1709852818000,0],[1709852819000,0],[1709852820000,0],[1709852821000,0],[1709852822000,0],[1709852823000,0],[1709852824000,0],[1709852825000,0],[1709852826000,0],[1709852827000,0],[1709852828000,0],[1709852829000,0],[1709852830000,0],[1709852831000,0],[1709852832000,0],[1709852833000,0],[1709852834000,0],[1709852835000,0],[1709852836000,0],[1709852837000,0],[1709852838000,0],[1709852839000,0],[1709852840000,0],[1709852841000,0],[1709852842000,0],[1709852843000,0],[1709852844000,0],[1709852845000,0],[1709852846000,0],[1709852847000,0],[1709852848000,0],[1709852849000,0],[1709852850000,0],[1709852851000,0],[1709852852000,0],[1709852853000,0],[1709852854000,0],[1709852855000,0],[1709852856000,0],[1709852857000,0],[1709852858000,0],[1709852859000,0],[1709852860000,0],[1709852861000,0],[1709852862000,0],[1709852863000,0],[1709852864000,0],[1709852865000,0],[1709852866000,0],[1709852867000,0],[1709852868000,0],[1709852869000,0],[1709852870000,0],[1709852871000,0],[1709852872000,0],[1709852873000,0],[1709852874000,0],[1709852875000,0],[1709852876000,0],[1709852877000,0],[1709852878000,0],[1709852879000,0],[1709852880000,0],[1709852881000,0],[1709852882000,0],[1709852883000,0],[1709852884000,0],[1709852885000,0],[1709852886000,0],[1709852887000,0],[1709852888000,0],[1709852889000,0],[1709852890000,0],[1709852891000,0],[1709852892000,0],[1709852893000,0],[1709852894000,0],[1709852895000,0],[1709852896000,0],[1709852897000,0],[1709852898000,0],[1709852899000,0],[1709852900000,0],[1709852901000,0],[1709852902000,0],[1709852903000,0],[1709852904000,0],[1709852905000,0],[1709852906000,0],[1709852907000,0],[1709852908000,0],[1709852909000,0],[1709852910000,0],[1709852911000,0],[1709852912000,0],[1709852913000,0],[1709852915000,0],[1709852916000,0],[1709852917000,0],[1709852918000,0],[1709852919000,0],[1709852920000,0],[1709852921000,0],[1709852922000,0],[1709852923000,0],[1709852924000,0],[1709852925000,0],[1709852926000,0],[1709852927000,0],[1709852928000,0],[1709852929000,0],[1709852930000,0],[1709852931000,0],[1709852932000,0],[1709852933000,0],[1709852934000,0],[1709852935000,0],[1709852936000,0],[1709852937000,0],[1709852938000,0],[1709852939000,0],[1709852940000,0],[1709852941000,0],[1709852942000,0],[1709852943000,0],[1709852944000,0],[1709852945000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#9D00FF',
name: 'validação concorrência transações - c',
data: [
[1709852665000,0],[1709852666000,25],[1709852667000,25],[1709852668000,0],[1709852669000,0],[1709852670000,0],[1709852671000,0],[1709852672000,0],[1709852673000,0],[1709852674000,0],[1709852675000,0],[1709852676000,0],[1709852677000,0],[1709852678000,0],[1709852679000,0],[1709852680000,0],[1709852681000,0],[1709852682000,0],[1709852683000,0],[1709852684000,0],[1709852685000,0],[1709852686000,0],[1709852687000,0],[1709852688000,0],[1709852689000,0],[1709852690000,0],[1709852691000,0],[1709852692000,0],[1709852693000,0],[1709852694000,0],[1709852695000,0],[1709852696000,0],[1709852697000,0],[1709852698000,0],[1709852699000,0],[1709852700000,0],[1709852701000,0],[1709852702000,0],[1709852703000,0],[1709852704000,0],[1709852705000,0],[1709852706000,0],[1709852707000,0],[1709852708000,0],[1709852709000,0],[1709852710000,0],[1709852711000,0],[1709852712000,0],[1709852713000,0],[1709852714000,0],[1709852715000,0],[1709852716000,0],[1709852717000,0],[1709852718000,0],[1709852719000,0],[1709852720000,0],[1709852721000,0],[1709852722000,0],[1709852723000,0],[1709852724000,0],[1709852725000,0],[1709852726000,0],[1709852727000,0],[1709852728000,0],[1709852729000,0],[1709852730000,0],[1709852731000,0],[1709852732000,0],[1709852733000,0],[1709852734000,0],[1709852735000,0],[1709852736000,0],[1709852737000,0],[1709852738000,0],[1709852739000,0],[1709852740000,0],[1709852741000,0],[1709852742000,0],[1709852743000,0],[1709852744000,0],[1709852745000,0],[1709852746000,0],[1709852747000,0],[1709852748000,0],[1709852749000,0],[1709852750000,0],[1709852751000,0],[1709852752000,0],[1709852753000,0],[1709852754000,0],[1709852755000,0],[1709852756000,0],[1709852757000,0],[1709852758000,0],[1709852759000,0],[1709852760000,0],[1709852761000,0],[1709852762000,0],[1709852763000,0],[1709852764000,0],[1709852765000,0],[1709852766000,0],[1709852767000,0],[1709852768000,0],[1709852769000,0],[1709852770000,0],[1709852771000,0],[1709852772000,0],[1709852773000,0],[1709852774000,0],[1709852775000,0],[1709852776000,0],[1709852777000,0],[1709852778000,0],[1709852779000,0],[1709852780000,0],[1709852781000,0],[1709852782000,0],[1709852783000,0],[1709852784000,0],[1709852785000,0],[1709852786000,0],[1709852787000,0],[1709852788000,0],[1709852789000,0],[1709852790000,0],[1709852791000,0],[1709852792000,0],[1709852793000,0],[1709852794000,0],[1709852795000,0],[1709852796000,0],[1709852797000,0],[1709852798000,0],[1709852799000,0],[1709852800000,0],[1709852801000,0],[1709852802000,0],[1709852803000,0],[1709852804000,0],[1709852805000,0],[1709852806000,0],[1709852807000,0],[1709852808000,0],[1709852809000,0],[1709852810000,0],[1709852811000,0],[1709852812000,0],[1709852813000,0],[1709852814000,0],[1709852815000,0],[1709852816000,0],[1709852817000,0],[1709852818000,0],[1709852819000,0],[1709852820000,0],[1709852821000,0],[1709852822000,0],[1709852823000,0],[1709852824000,0],[1709852825000,0],[1709852826000,0],[1709852827000,0],[1709852828000,0],[1709852829000,0],[1709852830000,0],[1709852831000,0],[1709852832000,0],[1709852833000,0],[1709852834000,0],[1709852835000,0],[1709852836000,0],[1709852837000,0],[1709852838000,0],[1709852839000,0],[1709852840000,0],[1709852841000,0],[1709852842000,0],[1709852843000,0],[1709852844000,0],[1709852845000,0],[1709852846000,0],[1709852847000,0],[1709852848000,0],[1709852849000,0],[1709852850000,0],[1709852851000,0],[1709852852000,0],[1709852853000,0],[1709852854000,0],[1709852855000,0],[1709852856000,0],[1709852857000,0],[1709852858000,0],[1709852859000,0],[1709852860000,0],[1709852861000,0],[1709852862000,0],[1709852863000,0],[1709852864000,0],[1709852865000,0],[1709852866000,0],[1709852867000,0],[1709852868000,0],[1709852869000,0],[1709852870000,0],[1709852871000,0],[1709852872000,0],[1709852873000,0],[1709852874000,0],[1709852875000,0],[1709852876000,0],[1709852877000,0],[1709852878000,0],[1709852879000,0],[1709852880000,0],[1709852881000,0],[1709852882000,0],[1709852883000,0],[1709852884000,0],[1709852885000,0],[1709852886000,0],[1709852887000,0],[1709852888000,0],[1709852889000,0],[1709852890000,0],[1709852891000,0],[1709852892000,0],[1709852893000,0],[1709852894000,0],[1709852895000,0],[1709852896000,0],[1709852897000,0],[1709852898000,0],[1709852899000,0],[1709852900000,0],[1709852901000,0],[1709852902000,0],[1709852903000,0],[1709852904000,0],[1709852905000,0],[1709852906000,0],[1709852907000,0],[1709852908000,0],[1709852909000,0],[1709852910000,0],[1709852911000,0],[1709852912000,0],[1709852913000,0],[1709852915000,0],[1709852916000,0],[1709852917000,0],[1709852918000,0],[1709852919000,0],[1709852920000,0],[1709852921000,0],[1709852922000,0],[1709852923000,0],[1709852924000,0],[1709852925000,0],[1709852926000,0],[1709852927000,0],[1709852928000,0],[1709852929000,0],[1709852930000,0],[1709852931000,0],[1709852932000,0],[1709852933000,0],[1709852934000,0],[1709852935000,0],[1709852936000,0],[1709852937000,0],[1709852938000,0],[1709852939000,0],[1709852940000,0],[1709852941000,0],[1709852942000,0],[1709852943000,0],[1709852944000,0],[1709852945000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FF00E1',
name: 'validação concorrência saldo - -25',
data: [
[1709852665000,1],[1709852666000,1],[1709852667000,0],[1709852668000,0],[1709852669000,0],[1709852670000,0],[1709852671000,0],[1709852672000,0],[1709852673000,0],[1709852674000,0],[1709852675000,0],[1709852676000,0],[1709852677000,0],[1709852678000,0],[1709852679000,0],[1709852680000,0],[1709852681000,0],[1709852682000,0],[1709852683000,0],[1709852684000,0],[1709852685000,0],[1709852686000,0],[1709852687000,0],[1709852688000,0],[1709852689000,0],[1709852690000,0],[1709852691000,0],[1709852692000,0],[1709852693000,0],[1709852694000,0],[1709852695000,0],[1709852696000,0],[1709852697000,0],[1709852698000,0],[1709852699000,0],[1709852700000,0],[1709852701000,0],[1709852702000,0],[1709852703000,0],[1709852704000,0],[1709852705000,0],[1709852706000,0],[1709852707000,0],[1709852708000,0],[1709852709000,0],[1709852710000,0],[1709852711000,0],[1709852712000,0],[1709852713000,0],[1709852714000,0],[1709852715000,0],[1709852716000,0],[1709852717000,0],[1709852718000,0],[1709852719000,0],[1709852720000,0],[1709852721000,0],[1709852722000,0],[1709852723000,0],[1709852724000,0],[1709852725000,0],[1709852726000,0],[1709852727000,0],[1709852728000,0],[1709852729000,0],[1709852730000,0],[1709852731000,0],[1709852732000,0],[1709852733000,0],[1709852734000,0],[1709852735000,0],[1709852736000,0],[1709852737000,0],[1709852738000,0],[1709852739000,0],[1709852740000,0],[1709852741000,0],[1709852742000,0],[1709852743000,0],[1709852744000,0],[1709852745000,0],[1709852746000,0],[1709852747000,0],[1709852748000,0],[1709852749000,0],[1709852750000,0],[1709852751000,0],[1709852752000,0],[1709852753000,0],[1709852754000,0],[1709852755000,0],[1709852756000,0],[1709852757000,0],[1709852758000,0],[1709852759000,0],[1709852760000,0],[1709852761000,0],[1709852762000,0],[1709852763000,0],[1709852764000,0],[1709852765000,0],[1709852766000,0],[1709852767000,0],[1709852768000,0],[1709852769000,0],[1709852770000,0],[1709852771000,0],[1709852772000,0],[1709852773000,0],[1709852774000,0],[1709852775000,0],[1709852776000,0],[1709852777000,0],[1709852778000,0],[1709852779000,0],[1709852780000,0],[1709852781000,0],[1709852782000,0],[1709852783000,0],[1709852784000,0],[1709852785000,0],[1709852786000,0],[1709852787000,0],[1709852788000,0],[1709852789000,0],[1709852790000,0],[1709852791000,0],[1709852792000,0],[1709852793000,0],[1709852794000,0],[1709852795000,0],[1709852796000,0],[1709852797000,0],[1709852798000,0],[1709852799000,0],[1709852800000,0],[1709852801000,0],[1709852802000,0],[1709852803000,0],[1709852804000,0],[1709852805000,0],[1709852806000,0],[1709852807000,0],[1709852808000,0],[1709852809000,0],[1709852810000,0],[1709852811000,0],[1709852812000,0],[1709852813000,0],[1709852814000,0],[1709852815000,0],[1709852816000,0],[1709852817000,0],[1709852818000,0],[1709852819000,0],[1709852820000,0],[1709852821000,0],[1709852822000,0],[1709852823000,0],[1709852824000,0],[1709852825000,0],[1709852826000,0],[1709852827000,0],[1709852828000,0],[1709852829000,0],[1709852830000,0],[1709852831000,0],[1709852832000,0],[1709852833000,0],[1709852834000,0],[1709852835000,0],[1709852836000,0],[1709852837000,0],[1709852838000,0],[1709852839000,0],[1709852840000,0],[1709852841000,0],[1709852842000,0],[1709852843000,0],[1709852844000,0],[1709852845000,0],[1709852846000,0],[1709852847000,0],[1709852848000,0],[1709852849000,0],[1709852850000,0],[1709852851000,0],[1709852852000,0],[1709852853000,0],[1709852854000,0],[1709852855000,0],[1709852856000,0],[1709852857000,0],[1709852858000,0],[1709852859000,0],[1709852860000,0],[1709852861000,0],[1709852862000,0],[1709852863000,0],[1709852864000,0],[1709852865000,0],[1709852866000,0],[1709852867000,0],[1709852868000,0],[1709852869000,0],[1709852870000,0],[1709852871000,0],[1709852872000,0],[1709852873000,0],[1709852874000,0],[1709852875000,0],[1709852876000,0],[1709852877000,0],[1709852878000,0],[1709852879000,0],[1709852880000,0],[1709852881000,0],[1709852882000,0],[1709852883000,0],[1709852884000,0],[1709852885000,0],[1709852886000,0],[1709852887000,0],[1709852888000,0],[1709852889000,0],[1709852890000,0],[1709852891000,0],[1709852892000,0],[1709852893000,0],[1709852894000,0],[1709852895000,0],[1709852896000,0],[1709852897000,0],[1709852898000,0],[1709852899000,0],[1709852900000,0],[1709852901000,0],[1709852902000,0],[1709852903000,0],[1709852904000,0],[1709852905000,0],[1709852906000,0],[1709852907000,0],[1709852908000,0],[1709852909000,0],[1709852910000,0],[1709852911000,0],[1709852912000,0],[1709852913000,0],[1709852915000,0],[1709852916000,0],[1709852917000,0],[1709852918000,0],[1709852919000,0],[1709852920000,0],[1709852921000,0],[1709852922000,0],[1709852923000,0],[1709852924000,0],[1709852925000,0],[1709852926000,0],[1709852927000,0],[1709852928000,0],[1709852929000,0],[1709852930000,0],[1709852931000,0],[1709852932000,0],[1709852933000,0],[1709852934000,0],[1709852935000,0],[1709852936000,0],[1709852937000,0],[1709852938000,0],[1709852939000,0],[1709852940000,0],[1709852941000,0],[1709852942000,0],[1709852943000,0],[1709852944000,0],[1709852945000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#AECAEB',
name: 'validação concorrência transações - d',
data: [
[1709852665000,25],[1709852666000,0],[1709852667000,0],[1709852668000,0],[1709852669000,0],[1709852670000,0],[1709852671000,0],[1709852672000,0],[1709852673000,0],[1709852674000,0],[1709852675000,0],[1709852676000,0],[1709852677000,0],[1709852678000,0],[1709852679000,0],[1709852680000,0],[1709852681000,0],[1709852682000,0],[1709852683000,0],[1709852684000,0],[1709852685000,0],[1709852686000,0],[1709852687000,0],[1709852688000,0],[1709852689000,0],[1709852690000,0],[1709852691000,0],[1709852692000,0],[1709852693000,0],[1709852694000,0],[1709852695000,0],[1709852696000,0],[1709852697000,0],[1709852698000,0],[1709852699000,0],[1709852700000,0],[1709852701000,0],[1709852702000,0],[1709852703000,0],[1709852704000,0],[1709852705000,0],[1709852706000,0],[1709852707000,0],[1709852708000,0],[1709852709000,0],[1709852710000,0],[1709852711000,0],[1709852712000,0],[1709852713000,0],[1709852714000,0],[1709852715000,0],[1709852716000,0],[1709852717000,0],[1709852718000,0],[1709852719000,0],[1709852720000,0],[1709852721000,0],[1709852722000,0],[1709852723000,0],[1709852724000,0],[1709852725000,0],[1709852726000,0],[1709852727000,0],[1709852728000,0],[1709852729000,0],[1709852730000,0],[1709852731000,0],[1709852732000,0],[1709852733000,0],[1709852734000,0],[1709852735000,0],[1709852736000,0],[1709852737000,0],[1709852738000,0],[1709852739000,0],[1709852740000,0],[1709852741000,0],[1709852742000,0],[1709852743000,0],[1709852744000,0],[1709852745000,0],[1709852746000,0],[1709852747000,0],[1709852748000,0],[1709852749000,0],[1709852750000,0],[1709852751000,0],[1709852752000,0],[1709852753000,0],[1709852754000,0],[1709852755000,0],[1709852756000,0],[1709852757000,0],[1709852758000,0],[1709852759000,0],[1709852760000,0],[1709852761000,0],[1709852762000,0],[1709852763000,0],[1709852764000,0],[1709852765000,0],[1709852766000,0],[1709852767000,0],[1709852768000,0],[1709852769000,0],[1709852770000,0],[1709852771000,0],[1709852772000,0],[1709852773000,0],[1709852774000,0],[1709852775000,0],[1709852776000,0],[1709852777000,0],[1709852778000,0],[1709852779000,0],[1709852780000,0],[1709852781000,0],[1709852782000,0],[1709852783000,0],[1709852784000,0],[1709852785000,0],[1709852786000,0],[1709852787000,0],[1709852788000,0],[1709852789000,0],[1709852790000,0],[1709852791000,0],[1709852792000,0],[1709852793000,0],[1709852794000,0],[1709852795000,0],[1709852796000,0],[1709852797000,0],[1709852798000,0],[1709852799000,0],[1709852800000,0],[1709852801000,0],[1709852802000,0],[1709852803000,0],[1709852804000,0],[1709852805000,0],[1709852806000,0],[1709852807000,0],[1709852808000,0],[1709852809000,0],[1709852810000,0],[1709852811000,0],[1709852812000,0],[1709852813000,0],[1709852814000,0],[1709852815000,0],[1709852816000,0],[1709852817000,0],[1709852818000,0],[1709852819000,0],[1709852820000,0],[1709852821000,0],[1709852822000,0],[1709852823000,0],[1709852824000,0],[1709852825000,0],[1709852826000,0],[1709852827000,0],[1709852828000,0],[1709852829000,0],[1709852830000,0],[1709852831000,0],[1709852832000,0],[1709852833000,0],[1709852834000,0],[1709852835000,0],[1709852836000,0],[1709852837000,0],[1709852838000,0],[1709852839000,0],[1709852840000,0],[1709852841000,0],[1709852842000,0],[1709852843000,0],[1709852844000,0],[1709852845000,0],[1709852846000,0],[1709852847000,0],[1709852848000,0],[1709852849000,0],[1709852850000,0],[1709852851000,0],[1709852852000,0],[1709852853000,0],[1709852854000,0],[1709852855000,0],[1709852856000,0],[1709852857000,0],[1709852858000,0],[1709852859000,0],[1709852860000,0],[1709852861000,0],[1709852862000,0],[1709852863000,0],[1709852864000,0],[1709852865000,0],[1709852866000,0],[1709852867000,0],[1709852868000,0],[1709852869000,0],[1709852870000,0],[1709852871000,0],[1709852872000,0],[1709852873000,0],[1709852874000,0],[1709852875000,0],[1709852876000,0],[1709852877000,0],[1709852878000,0],[1709852879000,0],[1709852880000,0],[1709852881000,0],[1709852882000,0],[1709852883000,0],[1709852884000,0],[1709852885000,0],[1709852886000,0],[1709852887000,0],[1709852888000,0],[1709852889000,0],[1709852890000,0],[1709852891000,0],[1709852892000,0],[1709852893000,0],[1709852894000,0],[1709852895000,0],[1709852896000,0],[1709852897000,0],[1709852898000,0],[1709852899000,0],[1709852900000,0],[1709852901000,0],[1709852902000,0],[1709852903000,0],[1709852904000,0],[1709852905000,0],[1709852906000,0],[1709852907000,0],[1709852908000,0],[1709852909000,0],[1709852910000,0],[1709852911000,0],[1709852912000,0],[1709852913000,0],[1709852915000,0],[1709852916000,0],[1709852917000,0],[1709852918000,0],[1709852919000,0],[1709852920000,0],[1709852921000,0],[1709852922000,0],[1709852923000,0],[1709852924000,0],[1709852925000,0],[1709852926000,0],[1709852927000,0],[1709852928000,0],[1709852929000,0],[1709852930000,0],[1709852931000,0],[1709852932000,0],[1709852933000,0],[1709852934000,0],[1709852935000,0],[1709852936000,0],[1709852937000,0],[1709852938000,0],[1709852939000,0],[1709852940000,0],[1709852941000,0],[1709852942000,0],[1709852943000,0],[1709852944000,0],[1709852945000,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: ['301', '901', '1501', '2102', '2702', '3302', '3902', '4502', '5102', '5703', '6303', '6903', '7503', '8103', '8703', '9303', '9904', '10504', '11104', '11704', '12304', '12904', '13505', '14105', '14705', '15305', '15905', '16505', '17106', '17706', '18306', '18906', '19506', '20106', '20707', '21307', '21907', '22507', '23107', '23707', '24307', '24908', '25508', '26108', '26708', '27308', '27908', '28509', '29109', '29709', '30309', '30909', '31509', '32110', '32710', '33310', '33910', '34510', '35110', '35711', '36311', '36911', '37511', '38111', '38711', '39311', '39912', '40512', '41112', '41712', '42312', '42912', '43513', '44113', '44713', '45313', '45913', '46513', '47114', '47714', '48314', '48914', '49514', '50114', '50715', '51315', '51915', '52515', '53115', '53715', '54315', '54916', '55516', '56116', '56716', '57316', '57916', '58517', '59117', '59717'],
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: [
15.75,2.43,2.77,10.96,2.75,3.51,0.25,0.31,3.94,0.43,0.15,0.05,0.0,0.06,0.23,2.23,0.46,0.09,0.06,0.04,0.09,0.01,0.0,0.0,0.01,0.1,0.13,0.07,0.57,0.72,0.15,0.09,0.01,0.01,0.07,0.0,0.0,0.01,0.0,0.02,0.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.02,0.02,0.41,0.01,0.05,0.52,0.36,0.1,0.08,0.01,0.0,0.03,0.0,0.0,0.0,0.0,0.01,0.01,0.0,0.01,0.0,0.0,0.0,0.0,0.01,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
],
tooltip: { yDecimals: 0, ySuffix: 'ms' }
},
{
type: 'column',
color: '#f15b4f',
name: 'KO',
data: [
14.76,2.14,2.31,8.82,2.33,3.21,0.28,0.24,3.44,0.42,0.15,0.04,0.0,0.04,0.19,1.95,0.35,0.08,0.06,0.03,0.09,0.01,0.0,0.04,0.02,0.07,0.1,0.11,0.43,0.65,0.13,0.09,0.0,0.01,0.09,0.01,0.0,0.0,0.0,0.02,0.03,0.0,0.0,0.0,0.0,0.01,0.01,0.11,0.02,0.02,0.01,0.02,0.39,0.01,0.05,0.45,0.34,0.07,0.1,0.0,0.0,0.03,0.0,0.0,0.0,0.0,0.0,0.01,0.0,0.01,0.01,0.0,0.0,0.0,0.02,0.0,0.0,0.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.01,0.0,0.02,4.49
],
tooltip: { yDecimals: 0, ySuffix: 'ms' }
}
]
});
responsetimeDistributionChart.setTitle({
text: '<span class="chart_title">Response Time Distribution</span>',
useHTML: true
});
var responsetimepercentilesovertimeokPercentiles = unpack([[1709852665,[54,182,200,286,289,292,299,302,304,305]],[1709852666,null],[1709852667,[17,25,41,92,93,95,100,104,107,108]],[1709852668,null],[1709852669,[1,2,3,5,6,7,9,21,25,25]],[1709852670,[5,5,5,5,5,5,5,5,5,5]],[1709852671,[4,4,4,4,4,4,4,4,4,4]],[1709852672,[6,6,6,6,6,6,6,6,6,6]],[1709852673,[5,5,5,5,5,5,5,5,5,5]],[1709852674,[4,4,4,4,4,4,4,4,4,4]],[1709852675,[3,3,3,5,5,5,5,5,5,5]],[1709852676,[3,3,4,4,4,4,5,5,5,6]],[1709852677,[2,3,3,4,5,5,5,5,5,5]],[1709852678,[4,4,4,4,4,4,4,4,4,4]],[1709852679,[3,3,3,3,3,3,3,3,3,4]],[1709852680,[2,2,2,3,3,3,3,3,3,3]],[1709852681,[2,3,3,3,4,6,7,7,7,8]],[1709852682,[3,3,3,3,3,4,4,4,4,5]],[1709852683,[3,3,3,3,3,3,3,3,3,3]],[1709852684,[2,2,3,3,3,3,4,4,4,4]],[1709852685,[2,2,2,3,3,3,3,4,4,4]],[1709852686,[3,3,3,3,3,3,3,3,3,3]],[1709852687,[2,3,3,3,3,3,3,3,3,4]],[1709852688,[2,2,2,2,2,2,2,2,2,3]],[1709852689,[2,2,2,2,2,2,2,2,2,3]],[1709852690,[2,2,3,3,3,3,4,4,4,4]],[1709852691,[1,2,2,2,2,2,2,2,2,2]],[1709852692,[2,2,2,2,2,2,3,3,3,3]],[1709852693,[2,2,2,2,2,2,2,2,2,3]],[1709852694,[2,2,2,2,2,2,2,2,2,2]],[1709852695,[1,2,2,2,2,2,2,2,2,3]],[1709852696,[2,2,2,2,2,2,2,2,2,3]],[1709852697,[1,2,2,2,2,2,3,3,3,3]],[1709852698,[2,2,2,2,2,3,3,3,3,3]],[1709852699,[1,2,2,2,2,2,2,2,2,2]],[1709852700,[2,2,2,2,2,2,2,2,3,3]],[1709852701,[1,2,2,2,2,2,3,3,3,3]],[1709852702,[1,2,2,2,3,3,3,3,3,4]],[1709852703,[1,2,2,2,2,2,3,3,3,3]],[1709852704,[1,2,2,2,2,3,3,3,3,4]],[1709852705,[1,1,2,2,2,2,2,2,3,4]],[1709852706,[1,1,2,2,2,2,2,2,2,2]],[1709852707,[1,2,2,2,2,2,2,2,3,3]],[1709852708,[1,1,2,2,2,2,2,3,3,3]],[1709852709,[1,2,2,2,2,2,2,2,3,3]],[1709852710,[2,2,2,2,2,2,2,2,2,3]],[1709852711,[1,1,2,2,2,2,2,2,2,3]],[1709852712,[1,1,2,2,2,2,2,2,2,3]],[1709852713,[1,1,1,2,2,2,2,2,3,3]],[1709852714,[1,1,2,2,2,2,2,2,3,4]],[1709852715,[1,2,2,2,2,2,2,3,3,3]],[1709852716,[1,2,2,2,2,2,2,2,2,4]],[1709852717,[1,2,2,2,2,2,2,2,3,3]],[1709852718,[1,2,2,2,2,2,2,2,3,3]],[1709852719,[1,1,2,2,2,2,2,2,3,3]],[1709852720,[1,1,1,2,2,2,2,2,3,4]],[1709852721,[1,1,1,1,1,1,1,2,3,5]],[1709852722,[1,1,1,1,1,1,2,2,2,2]],[1709852723,[1,1,1,2,2,2,2,2,2,2]],[1709852724,[1,1,1,2,2,2,2,2,2,2]],[1709852725,[1,1,2,2,2,2,2,2,2,3]],[1709852726,[1,1,2,2,2,2,2,2,2,4]],[1709852727,[1,1,2,2,2,2,2,2,2,3]],[1709852728,[1,1,1,2,2,2,2,2,2,5]],[1709852729,[1,1,1,2,2,2,2,2,2,2]],[1709852730,[1,1,1,2,2,2,2,2,2,5]],[1709852731,[1,1,1,1,2,2,2,2,3,3]],[1709852732,[1,1,1,2,2,2,2,2,2,2]],[1709852733,[1,1,2,2,2,2,2,2,2,3]],[1709852734,[1,1,2,2,2,2,2,2,2,2]],[1709852735,[1,1,1,2,2,2,2,2,2,2]],[1709852736,[1,1,1,1,1,1,2,2,2,2]],[1709852737,[1,1,1,1,1,1,2,2,2,2]],[1709852738,[1,1,2,2,2,2,2,2,11,20]],[1709852739,[1,1,1,2,2,2,8,18,38,47]],[1709852740,[1,1,1,2,2,2,2,2,7,11]],[1709852741,[1,1,1,2,4,14,20,52,109,121]],[1709852742,[1,45,91,160,164,176,187,216,255,293]],[1709852743,[1,103,135,172,176,186,200,235,283,290]],[1709852744,[2,113,141,174,184,201,240,282,407,430]],[1709852745,[9,109,136,170,179,187,222,257,340,357]],[1709852746,[1,31,94,142,153,162,180,253,294,303]],[1709852747,[1,60,107,187,211,238,276,326,372,377]],[1709852748,[1,105,148,175,183,201,232,279,361,380]],[1709852749,[4,122,150,182,186,197,206,252,294,367]],[1709852750,[1,53,114,168,177,187,199,236,264,291]],[1709852751,[2,56,105,149,155,168,177,204,281,283]],[1709852752,[1,71,125,172,185,204,226,257,373,377]],[1709852753,[7,110,140,173,180,187,207,269,317,328]],[1709852754,[6,90,133,168,178,188,200,264,289,292]],[1709852755,[1,63,116,159,167,182,233,264,322,346]],[1709852756,[2,108,140,175,184,192,223,252,289,326]],[1709852757,[1,136,180,233,254,271,284,325,384,454]],[1709852758,[24,131,169,250,288,322,349,450,514,534]],[1709852759,[3,101,145,202,218,241,277,304,428,581]],[1709852760,[1,58,130,176,186,190,231,279,316,365]],[1709852761,[1,109,149,184,202,222,242,259,291,405]],[1709852762,[1,135,177,222,234,254,282,381,468,483]],[1709852763,[99,158,197,257,271,291,325,352,432,480]],[1709852764,[83,168,220,268,283,308,338,366,442,488]],[1709852765,[44,138,178,246,282,299,336,374,433,444]],[1709852766,[2,177,242,287,301,326,368,431,515,533]],[1709852767,[54,146,190,281,301,318,366,419,471,482]],[1709852768,[3,139,169,200,208,223,237,269,345,399]],[1709852769,[107,220,268,372,399,421,448,489,534,592]],[1709852770,[101,175,230,287,311,334,371,393,438,495]],[1709852771,[78,225,268,334,353,372,386,410,579,600]],[1709852772,[168,277,346,412,472,509,570,619,639,824]],[1709852773,[120,231,277,343,354,374,394,445,504,666]],[1709852774,[128,222,264,334,355,377,401,454,528,743]],[1709852775,[109,207,264,361,380,409,429,462,524,727]],[1709852776,[146,291,347,436,451,471,524,592,638,671]],[1709852777,[228,333,421,477,495,524,550,569,614,646]],[1709852778,[268,384,501,580,590,603,624,656,723,752]],[1709852779,[314,444,502,595,625,662,691,740,845,902]],[1709852780,[249,393,489,545,567,603,664,730,770,803]],[1709852781,[329,450,488,536,554,574,599,647,703,727]],[1709852782,[389,490,568,662,682,712,754,797,827,860]],[1709852783,[413,512,566,622,637,661,685,756,855,893]],[1709852784,[309,532,590,684,708,726,758,792,906,952]],[1709852785,[414,576,613,674,699,730,758,838,1022,1037]],[1709852786,[410,537,606,723,748,792,831,886,975,984]],[1709852787,[425,599,694,780,800,853,878,904,1062,1134]],[1709852788,[365,591,661,755,784,813,874,930,1126,1343]],[1709852789,[388,569,703,864,910,985,1079,1141,1211,1238]],[1709852790,[556,763,821,874,887,896,927,988,1161,1270]],[1709852791,[835,923,977,1084,1109,1137,1173,1207,1350,1463]],[1709852792,[799,965,1069,1131,1159,1185,1222,1266,1362,1413]],[1709852793,[1008,1146,1221,1327,1354,1381,1396,1431,1525,1663]],[1709852794,[1211,1324,1403,1497,1513,1538,1574,1626,1672,1711]],[1709852795,[1206,1382,1457,1611,1669,1693,1759,1915,2052,2140]],[1709852796,[1489,1610,1675,1764,1805,1826,1857,1881,1958,2122]],[1709852797,[1702,1795,1867,1951,1976,2000,2036,2204,3662,5131]],[1709852798,[1800,1942,2003,2170,2245,2563,3053,4971,5311,5316]],[1709852799,[1633,1858,2046,2816,2923,2993,3181,4890,5150,5168]],[1709852800,[1622,1800,1934,2301,2971,3242,3806,5029,17369,17570]],[1709852801,[1668,1910,2237,3057,3158,4959,5136,5225,17831,20548]],[1709852802,[1805,1977,2096,3103,3273,9305,17474,33876,34371,34543]],[1709852803,[1595,1899,2152,3135,3256,5036,5341,8975,33486,35578]],[1709852804,[1666,1894,2073,3026,3113,4449,5037,8582,9152,9247]],[1709852805,[1794,1970,2203,3441,5012,5106,5322,5506,34347,34427]],[1709852806,[1781,1978,2374,3202,3289,5024,7189,9157,18882,18891]],[1709852807,[1684,1999,2150,3072,3214,4906,5024,5694,18581,18868]],[1709852808,[1801,1998,2309,4937,5051,9092,9284,16945,18472,18659]],[1709852809,[1805,2169,2995,4729,4839,5129,7190,9246,17852,19061]],[1709852810,[1792,1990,2769,5004,7311,9087,9238,9450,33476,33856]],[1709852811,[1672,1957,2718,4924,5071,5136,5437,9045,33829,33960]],[1709852812,[1662,1870,2194,4942,5223,7430,9147,9271,17791,18024]],[1709852813,[1789,2005,2824,4924,4947,5219,9066,9343,9500,33380]],[1709852814,[1787,2034,2306,4994,5115,6304,9270,17294,36159,56033]],[1709852815,[1589,1991,2906,9372,10812,33404,33673,35099,35226,44865]],[1709852816,[1763,1991,2163,4565,4906,5194,5375,9366,17688,27522]],[1709852817,[1796,2180,3023,9197,9256,9510,10942,17187,20769,23932]],[1709852818,[1680,1989,3079,5228,6042,9408,14875,17840,18266,23961]],[1709852819,[1601,2075,2940,9047,9374,14918,17973,18622,23737,35063]],[1709852820,[1703,1990,2983,4801,5642,17347,33287,33684,34358,34427]],[1709852821,[1789,2130,3060,5424,17785,18034,18374,33709,35025,35166]],[1709852822,[1596,2013,2817,5163,5329,9154,9839,10090,17393,17442]],[1709852823,[1505,1854,2890,5113,5687,9117,33338,34357,34479,34496]],[1709852824,[1593,1972,3029,3352,4714,4973,5230,5991,9094,9170]],[1709852825,[1841,2100,3002,5221,9162,9430,17454,17831,33761,33959]],[1709852826,[1789,2143,3315,9170,9515,17659,17758,17958,33461,33937]],[1709852827,[1691,2057,2906,5249,9058,9354,9719,17486,17672,17722]],[1709852828,[1628,1904,2820,4736,4951,5139,8841,18034,33433,33462]],[1709852829,[1472,1887,2211,4949,9134,9750,9926,10341,10463,11563]],[1709852830,[1778,2090,2920,5070,5147,7386,17476,21276,33401,33459]],[1709852831,[1606,1958,2916,3587,5006,9224,17270,17350,24097,24171]],[1709852832,[1683,1935,2965,5022,5096,9149,9523,31303,33432,43687]],[1709852833,[1793,2075,2299,4889,5208,6190,13330,33811,34302,34634]],[1709852834,[1789,2237,3105,5248,9136,9174,9260,9506,20423,20551]],[1709852835,[1682,2000,3369,9245,9544,9632,12211,30350,33424,33447]],[1709852836,[1480,1885,3239,6848,9093,9157,9328,12400,17795,18254]],[1709852837,[1603,2090,3166,5745,17370,17594,33372,33788,34021,34224]],[1709852838,[1794,2090,2882,5448,9179,9256,9339,17581,33534,33620]],[1709852839,[1801,2199,3148,9193,9240,9905,12343,34483,36620,36732]],[1709852840,[1706,2060,3190,5048,5314,9078,9168,33715,34928,35660]],[1709852841,[1796,2103,3168,5150,9251,9391,9758,17279,35403,35550]],[1709852842,[1888,2176,3305,9181,9279,9404,9552,17317,37394,54893]],[1709852843,[1798,2116,3149,9152,17632,18205,30721,33561,37124,42236]],[1709852844,[1683,1893,2811,4941,5097,5151,5429,9156,9369,9523]],[1709852845,[1793,1995,3087,5505,17264,33363,33445,33896,35120,35136]],[1709852846,[1695,2019,3139,9251,9293,9415,9952,17204,17340,17491]],[1709852847,[1677,2109,3109,5126,6071,9032,9227,17166,17816,18254]],[1709852848,[1791,2098,3027,5977,9574,9980,10176,34067,43457,56818]],[1709852849,[1780,2809,3060,5015,5190,6238,9031,9302,17462,17533]],[1709852850,[1680,1955,2901,5249,9218,9948,29690,33795,34212,34490]],[1709852851,[1638,1898,2769,9161,9316,9400,9911,12086,18185,33924]],[1709852852,[1771,1987,3031,5129,5288,9047,9279,33803,34711,35451]],[1709852853,[1708,2188,3003,9163,9283,9453,17381,17589,17908,17914]],[1709852854,[1680,1883,2940,5037,5116,17491,33558,34470,34735,34767]],[1709852855,[1704,1956,2976,5289,9156,17266,18943,19198,29868,29878]],[1709852856,[1686,1997,2989,4863,5060,7025,17767,33868,33982,33992]],[1709852857,[1709,1965,2163,4573,4924,5425,17125,17538,23099,59409]],[1709852858,[1742,1986,2916,5120,5144,6461,9724,18954,34732,36930]],[1709852859,[1757,1947,2797,5230,9007,9129,9504,17750,17809,19056]],[1709852860,[1691,1899,3014,5118,5222,5424,9336,9750,33559,33564]],[1709852861,[1738,2042,2993,9201,9485,9859,17463,17775,19104,19234]],[1709852862,[1897,2188,3114,9373,9578,9641,33556,33944,43867,58188]],[1709852863,[1801,2089,3084,5120,5688,8550,10965,33543,34063,34090]],[1709852864,[1801,1984,2968,9136,9617,17348,17436,17575,18099,33441]],[1709852865,[1597,1900,2812,4983,5057,5288,6613,40055,40240,40279]],[1709852866,[1591,1892,2480,5368,8842,9127,9213,33431,33742,33748]],[1709852867,[1714,2500,3041,9202,9282,9411,9577,9638,12425,33470]],[1709852868,[1607,2058,3817,17488,17570,17623,17717,28862,44090,44329]],[1709852869,[2062,2375,3185,8329,9262,9550,10855,18204,33398,33781]],[1709852870,[1693,2094,3093,5135,9227,9693,17429,17517,33822,33831]],[1709852871,[1598,1991,2886,5139,5936,17602,46229,46730,46872,46879]],[1709852872,[1691,1929,2907,4845,4929,5016,5067,5383,9857,40254]],[1709852873,[1689,2000,4989,33469,34033,40253,43420,46428,46568,46688]],[1709852874,[1780,1897,4925,9221,9379,9663,10050,12649,19233,23715]],[1709852875,[1686,2095,3498,9160,9323,9549,10069,33378,33687,33741]],[1709852876,[1796,2060,2988,5061,5207,6030,9156,9430,24598,35967]],[1709852877,[1899,2199,4826,9373,9648,17877,33524,44837,44951,44966]],[1709852878,[1788,2065,3110,5306,9343,9562,17710,35008,36761,36933]],[1709852879,[1782,2059,2935,5409,6149,9465,17327,35135,35319,35339]],[1709852880,[1785,2064,3258,9263,9680,22148,33450,34629,57311,57318]],[1709852881,[1871,2174,3134,23571,24058,33487,33684,33871,35001,35468]],[1709852882,[1661,2085,3030,15619,17570,25610,33543,33566,33757,33937]],[1709852883,[1786,2202,5242,30843,33343,33453,33855,41878,42061,42109]],[1709852884,[1890,2350,4922,9297,18297,33454,33541,33573,33689,33873]],[1709852885,[1809,2091,3305,7032,9451,17308,17609,33369,33671,33714]],[1709852886,[1993,2382,5206,33147,33249,33374,33460,33590,33671,33674]],[1709852887,[1899,2400,4866,9462,9672,12237,17563,30728,32533,41989]],[1709852888,[1878,2121,3274,10665,24279,32595,32660,32740,33044,33053]],[1709852889,[1861,2122,3036,9156,12890,17818,20675,30191,30918,32068]],[1709852890,[1698,2083,3320,18840,31457,31534,31634,31757,31941,32001]],[1709852891,[1789,2004,3231,5863,9362,31415,31545,31609,33839,33966]],[1709852892,[1790,2374,4920,31490,31527,31568,31611,31657,31738,31765]],[1709852893,[1633,2000,3137,6056,9098,14034,31427,31464,31537,31540]],[1709852894,[1844,2275,5022,9791,12297,18238,20208,29871,31527,31625]],[1709852895,[1801,2528,3221,9271,9564,11461,31485,31581,31609,31625]],[1709852896,[1784,2013,5024,10266,12578,17249,17437,19034,31760,33834]],[1709852897,[1967,2905,3516,9678,16086,17436,29550,31619,31658,31669]],[1709852898,[1802,2193,4812,9253,17383,17483,31537,31577,31650,31710]],[1709852899,[1867,2185,5030,17039,17139,17223,17289,17448,17746,17788]],[1709852900,[1776,2171,5011,17360,17443,17605,17862,31455,31564,31577]],[1709852901,[1697,1991,5114,17474,17545,17611,19134,31435,31584,31597]],[1709852902,[1768,2277,5503,16980,17192,17234,17269,18112,22414,31440]],[1709852903,[1788,2126,5093,9723,10045,16449,16495,16551,16681,16961]],[1709852904,[1600,2094,4905,9158,9247,9746,10752,16113,16270,16316]],[1709852905,[1648,2303,5007,15485,15636,15664,15739,15813,16028,16035]],[1709852906,[1798,2308,4900,9191,9269,15308,15405,15534,15782,16506]],[1709852907,[1721,2199,5036,9020,9043,9138,11558,15324,15465,15472]],[1709852908,[1715,2100,3158,8206,8843,9093,9240,13915,15443,15469]],[1709852909,[1860,2120,3271,5027,5730,9045,9210,9367,9535,9587]],[1709852910,[1927,2231,4253,8749,9020,9056,9115,9239,9351,9391]],[1709852911,null],[1709852912,null],[1709852913,null],[1709852914,null],[1709852915,null],[1709852916,null],[1709852917,null],[1709852918,null],[1709852919,null],[1709852920,null],[1709852921,null],[1709852922,null],[1709852923,null],[1709852924,null],[1709852925,null],[1709852926,null],[1709852927,null],[1709852928,null],[1709852929,null],[1709852930,null],[1709852931,null],[1709852932,null],[1709852933,null],[1709852934,null],[1709852935,null],[1709852936,null],[1709852937,null],[1709852938,null],[1709852939,null],[1709852940,null],[1709852941,null],[1709852942,null],[1709852943,null],[1709852944,null],[1709852945,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([[1709852665,[25,25,0]],[1709852666,[1,0,1]],[1709852667,[25,25,0]],[1709852668,[1,0,1]],[1709852669,[51,25,26]],[1709852670,[3,1,2]],[1709852671,[6,1,5]],[1709852672,[9,1,8]],[1709852673,[11,1,10]],[1709852674,[13,1,12]],[1709852675,[18,5,13]],[1709852676,[19,5,14]],[1709852677,[24,6,18]],[1709852678,[26,3,23]],[1709852679,[27,5,22]],[1709852680,[32,4,28]],[1709852681,[34,9,25]],[1709852682,[37,4,33]],[1709852683,[39,6,33]],[1709852684,[43,8,35]],[1709852685,[44,12,32]],[1709852686,[48,4,44]],[1709852687,[51,11,40]],[1709852688,[54,6,48]],[1709852689,[56,5,51]],[1709852690,[60,9,51]],[1709852691,[61,11,50]],[1709852692,[65,11,54]],[1709852693,[67,12,55]],[1709852694,[70,18,52]],[1709852695,[74,18,56]],[1709852696,[76,24,52]],[1709852697,[80,21,59]],[1709852698,[81,23,58]],[1709852699,[84,25,59]],[1709852700,[87,26,61]],[1709852701,[91,40,51]],[1709852702,[92,30,62]],[1709852703,[96,46,50]],[1709852704,[99,39,60]],[1709852705,[101,38,63]],[1709852706,[105,44,61]],[1709852707,[107,56,51]],[1709852708,[109,59,50]],[1709852709,[114,57,57]],[1709852710,[115,59,56]],[1709852711,[118,60,58]],[1709852712,[121,72,49]],[1709852713,[124,66,58]],[1709852714,[126,69,57]],[1709852715,[129,68,61]],[1709852716,[133,73,60]],[1709852717,[134,75,59]],[1709852718,[138,75,63]],[1709852719,[141,67,74]],[1709852720,[143,76,67]],[1709852721,[146,81,65]],[1709852722,[149,82,67]],[1709852723,[152,83,69]],[1709852724,[155,85,70]],[1709852725,[157,87,70]],[1709852726,[160,88,72]],[1709852727,[164,90,74]],[1709852728,[165,81,84]],[1709852729,[170,99,71]],[1709852730,[172,93,79]],[1709852731,[174,99,75]],[1709852732,[176,94,82]],[1709852733,[181,98,83]],[1709852734,[183,108,75]],[1709852735,[185,102,83]],[1709852736,[189,99,90]],[1709852737,[191,102,89]],[1709852738,[194,100,94]],[1709852739,[198,107,91]],[1709852740,[198,106,92]],[1709852741,[204,108,96]],[1709852742,[204,111,93]],[1709852743,[208,114,94]],[1709852744,[211,110,101]],[1709852745,[213,110,103]],[1709852746,[217,116,101]],[1709852747,[220,122,98]],[1709852748,[222,124,98]],[1709852749,[224,118,106]],[1709852750,[228,127,101]],[1709852751,[230,117,113]],[1709852752,[234,126,108]],[1709852753,[235,127,108]],[1709852754,[239,126,113]],[1709852755,[243,135,108]],[1709852756,[244,134,110]],[1709852757,[248,135,113]],[1709852758,[250,136,114]],[1709852759,[253,142,111]],[1709852760,[255,141,114]],[1709852761,[259,147,112]],[1709852762,[262,147,115]],[1709852763,[265,148,117]],[1709852764,[266,146,120]],[1709852765,[270,139,131]],[1709852766,[272,151,121]],[1709852767,[275,145,130]],[1709852768,[279,157,122]],[1709852769,[281,161,120]],[1709852770,[284,159,125]],[1709852771,[286,159,127]],[1709852772,[291,160,131]],[1709852773,[291,154,137]],[1709852774,[296,152,144]],[1709852775,[298,158,140]],[1709852776,[301,174,127]],[1709852777,[303,159,144]],[1709852778,[306,169,137]],[1709852779,[309,168,141]],[1709852780,[313,173,140]],[1709852781,[314,165,149]],[1709852782,[318,168,150]],[1709852783,[320,174,146]],[1709852784,[323,173,150]],[1709852785,[326,156,170]],[1709852786,[330,189,141]],[1709852787,[331,177,154]],[1709852788,[334,164,170]],[1709852789,[338,184,154]],[1709852790,[340,194,146]],[1709852791,[340,184,156]],[1709852792,[340,184,156]],[1709852793,[340,186,154]],[1709852794,[340,187,153]],[1709852795,[340,177,163]],[1709852796,[340,176,164]],[1709852797,[340,176,164]],[1709852798,[340,183,157]],[1709852799,[340,190,150]],[1709852800,[340,188,152]],[1709852801,[340,185,155]],[1709852802,[336,171,165]],[1709852803,[344,192,152]],[1709852804,[340,183,157]],[1709852805,[340,181,159]],[1709852806,[340,186,154]],[1709852807,[340,168,172]],[1709852808,[340,173,167]],[1709852809,[340,166,174]],[1709852810,[340,174,166]],[1709852811,[340,175,165]],[1709852812,[340,179,161]],[1709852813,[340,165,175]],[1709852814,[340,191,149]],[1709852815,[340,171,169]],[1709852816,[340,159,181]],[1709852817,[340,195,145]],[1709852818,[340,165,175]],[1709852819,[340,171,169]],[1709852820,[340,183,157]],[1709852821,[340,169,171]],[1709852822,[340,163,177]],[1709852823,[340,165,175]],[1709852824,[340,138,202]],[1709852825,[340,180,160]],[1709852826,[340,172,168]],[1709852827,[340,176,164]],[1709852828,[340,182,158]],[1709852829,[340,150,190]],[1709852830,[340,171,169]],[1709852831,[340,161,179]],[1709852832,[340,170,170]],[1709852833,[340,156,184]],[1709852834,[340,152,188]],[1709852835,[340,165,175]],[1709852836,[340,188,152]],[1709852837,[340,179,161]],[1709852838,[340,167,173]],[1709852839,[340,168,172]],[1709852840,[340,136,204]],[1709852841,[340,158,182]],[1709852842,[340,169,171]],[1709852843,[340,163,177]],[1709852844,[340,143,197]],[1709852845,[340,182,158]],[1709852846,[340,158,182]],[1709852847,[340,149,191]],[1709852848,[340,161,179]],[1709852849,[340,118,222]],[1709852850,[340,154,186]],[1709852851,[340,176,164]],[1709852852,[340,149,191]],[1709852853,[340,159,181]],[1709852854,[340,152,188]],[1709852855,[340,172,168]],[1709852856,[340,141,199]],[1709852857,[340,151,189]],[1709852858,[340,172,168]],[1709852859,[340,167,173]],[1709852860,[340,165,175]],[1709852861,[340,171,169]],[1709852862,[340,169,171]],[1709852863,[340,153,187]],[1709852864,[340,166,174]],[1709852865,[340,158,182]],[1709852866,[340,175,165]],[1709852867,[340,178,162]],[1709852868,[340,168,172]],[1709852869,[340,168,172]],[1709852870,[340,167,173]],[1709852871,[340,163,177]],[1709852872,[340,123,217]],[1709852873,[340,174,166]],[1709852874,[340,134,206]],[1709852875,[340,136,204]],[1709852876,[340,144,196]],[1709852877,[340,155,185]],[1709852878,[340,185,155]],[1709852879,[340,162,178]],[1709852880,[340,161,179]],[1709852881,[340,166,174]],[1709852882,[340,179,161]],[1709852883,[340,172,168]],[1709852884,[340,160,180]],[1709852885,[340,176,164]],[1709852886,[340,181,159]],[1709852887,[340,182,158]],[1709852888,[340,178,162]],[1709852889,[340,170,170]],[1709852890,[340,187,153]],[1709852891,[340,168,172]],[1709852892,[340,193,147]],[1709852893,[340,185,155]],[1709852894,[340,173,167]],[1709852895,[340,191,149]],[1709852896,[340,190,150]],[1709852897,[340,176,164]],[1709852898,[340,181,159]],[1709852899,[340,187,153]],[1709852900,[340,182,158]],[1709852901,[340,180,160]],[1709852902,[340,184,156]],[1709852903,[340,192,148]],[1709852904,[340,177,163]],[1709852905,[340,175,165]],[1709852906,[340,186,154]],[1709852907,[340,184,156]],[1709852908,[340,183,157]],[1709852909,[340,184,156]],[1709852910,[163,91,72]],[1709852911,[0,0,0]],[1709852912,[0,0,0]],[1709852913,[0,0,0]],[1709852914,[0,0,0]],[1709852915,[0,0,0]],[1709852916,[0,0,0]],[1709852917,[0,0,0]],[1709852918,[0,0,0]],[1709852919,[0,0,0]],[1709852920,[0,0,0]],[1709852921,[0,0,0]],[1709852922,[0,0,0]],[1709852923,[0,0,0]],[1709852924,[0,0,0]],[1709852925,[0,0,0]],[1709852926,[0,0,0]],[1709852927,[0,0,0]],[1709852928,[0,0,0]],[1709852929,[0,0,0]],[1709852930,[0,0,0]],[1709852931,[0,0,0]],[1709852932,[0,0,0]],[1709852933,[0,0,0]],[1709852934,[0,0,0]],[1709852935,[0,0,0]],[1709852936,[0,0,0]],[1709852937,[0,0,0]],[1709852938,[0,0,0]],[1709852939,[0,0,0]],[1709852940,[0,0,0]],[1709852941,[0,0,0]],[1709852942,[0,0,0]],[1709852943,[0,0,0]],[1709852944,[0,0,0]],[1709852945,[0,0,0]]]);
var requestsChart = new Highcharts.StockChart({
chart: {