-
Notifications
You must be signed in to change notification settings - Fork 923
/
Copy pathindex.html
1225 lines (1155 loc) · 101 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-03 21:52:09 GMT</span>
</span>
<span class="simulation-information-item">
<span class="simulation-information-label">Duration: </span>
<span>4m 5s </span>
</span>
<span class="simulation-tooltip simulation-information-item description" title="Description" data-content="Rinha de Backend - 2024/Q1: Crébito - vinicius-julio">
<span class="simulation-information-label">Description: </span>
<span>Rinha de Backend - 2024/Q1: Crébito - vinicius-julio</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">jmesPath(limite).find.exists preparation crashed: Jackson failed to parse into a valid AST: c.f.j.d.e.MismatchedInputException: No content to map due to end-of-input at [Source: REDACTED (`StreamReadFeature.INCLUDE_SOURCE_IN_LOCATION` disabled); line: 1]<span class="value" style="display:none">0</span></td>
<td class="value error-col-2 total ko">54634</td>
<td class="value error-col-3 total ko">97.015 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">jmesPath(saldo.limite).find.exists preparation crashed: Jackson failed to parse into a valid AST: c.f.j.d.e.MismatchedInputException: No content to map due to end-of-input at [Source: REDACTED (`StreamReadFeature.INCLUDE_SOURCE_IN_LOCATION` disabled); line: 1]<span class="value" style="display:none">1</span></td>
<td class="value error-col-2 total ko">1654</td>
<td class="value error-col-3 total ko">2.937 %</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">2</span></td>
<td class="value error-col-2 total ko">15</td>
<td class="value error-col-3 total ko">0.027 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">jmesPath(saldo).find.exists preparation crashed: Jackson failed to parse into a valid AST: c.f.j.d.e.MismatchedInputException: No content to map due to end-of-input at [Source: REDACTED (`StreamReadFeature.INCLUDE_SOURCE_IN_LOCATION` disabled); line: 1]<span class="value" style="display:none">3</span></td>
<td class="value error-col-2 total ko">5</td>
<td class="value error-col-3 total ko">0.009 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">jmesPath(ultimas_transacoes[0].descricao).find.is(devolve) preparation crashed: Jackson failed to parse into a valid AST: c.f.j.d.e.MismatchedInputException: No content to map due to end-of-input at [Source: REDACTED (`StreamReadFeature.INCLUDE_SOURCE_IN_LOCATION` disabled); line: 1]<span class="value" style="display:none">4</span></td>
<td class="value error-col-2 total ko">5</td>
<td class="value error-col-3 total ko">0.009 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">jmesPath(saldo.total).find.is(0), but actually found -2<span class="value" style="display:none">5</span></td>
<td class="value error-col-2 total ko">1</td>
<td class="value error-col-3 total ko">0.002 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">jmesPath(saldo.total).find.is(-25), but actually found -2<span class="value" style="display:none">6</span></td>
<td class="value error-col-2 total ko">1</td>
<td class="value error-col-3 total ko">0.002 %</td>
</tr>
</tbody>
</table>
</div>
<div class="schema geant">
<div id="active_users" class="geant"></div>
</div>
<div class="schema geant">
<div id="responsetimeDistributionContainer" class="geant"></div>
</div>
<div class="schema geant">
<div id="responsetimepercentilesovertimeokPercentilesContainer" class="geant"></div>
</div>
<div class="schema geant">
<div id="requests" class="geant"></div>
</div>
<div class="schema geant">
<div id="responses" class="geant"></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<script>
var pageStats = stats.stats;
$(document).ready(function() {
$('.simulation-tooltip').popover({trigger:'hover', placement:'left'});
setDetailsLinkUrl();
setGlobalMenu();
setActiveMenu();
fillStats(pageStats);
Highcharts.setOptions({
global: { useUTC: false }
});
var rangesChart = new Highcharts.Chart({
chart: {
renderTo: 'ranges',
marginRight: 100
},
credits: { enabled: false },
legend: { enabled: false },
title: { text: 'A title to let highcharts reserve the place for the title set later' },
xAxis: {
categories: [
pageStats.group1.htmlName,
pageStats.group2.htmlName,
pageStats.group3.htmlName,
pageStats.group4.htmlName
]
},
yAxis: {
title: { text: 'Number of Requests' },
reversedStacks: false
},
tooltip: {
formatter: function() {
var s;
if (this.point.name) { // the pie chart
s = ''+ this.point.name +': '+ this.y +'% requests';
} else {
s = ''+ this.y + ' requests';
}
return s;
}
},
plotOptions: {
series: {
stacking: 'normal',
shadow: true
}
},
series: [
{
type: 'column',
data: [{
color: '#68b65c',
y: pageStats.group1.count
},
{
color: '#FFDD00',
y: pageStats.group2.count
},
{
color: '#FFA900',
y: pageStats.group3.count
},
{
color: '#f15b4f',
y: pageStats.group4.count
}]
},
{
type: 'pie',
name: 'Percentages',
data: [
{
name: pageStats.group1.name,
y: pageStats.group1.percentage,
color: '#68b65c'
},
{
name: pageStats.group2.name,
y: pageStats.group2.percentage,
color: '#FFDD00'
},
{
name: pageStats.group3.name,
y: pageStats.group3.percentage,
color: '#FFA900'
},
{
name: pageStats.group4.name,
y: pageStats.group4.percentage,
color: '#f15b4f'
}
],
center: [345, 0],
size: 90,
showInLegend: false,
dataLabels: { enabled: false }
}
]
});
rangesChart.setTitle({
text: '<span class="chart_title">Response Time Ranges</span>',
useHTML: true
});
function numberOfRequestsDataForGroup(group) {
var data = {names: [], oks: [], kos: []};
$.each(group.contents, function(contentName, content) {
if (content.type == 'GROUP') {
var result = numberOfRequestsDataForGroup(content);
data.names = data.names.concat(result.names);
data.oks = data.oks.concat(result.oks);
data.kos = data.kos.concat(result.kos);
}
else if (content.type == 'REQUEST') {
data.names.push(content.path);
data.oks.push(parseInt(content.stats.numberOfRequests.ok));
data.kos.push(parseInt(content.stats.numberOfRequests.ko));
}
});
return data;
}
var numberOfRequestsData = numberOfRequestsDataForGroup(stats);
var tickInterval = Math.ceil(numberOfRequestsData.names.length / 1000);
new Highcharts.Chart({
chart: {
renderTo:'container_number_of_requests',
polar:true,
type:'column',
height:330
},
credits:{
enabled:false
},
title:{
text:'<span class="chart_title">Number of requests</span>',
useHTML: true,
widthAdjust:-20
},
xAxis:{
tickmarkPlacement:'on',
tickInterval: tickInterval,
categories:numberOfRequestsData.names,
labels:{ enabled:false }
},
yAxis:{
min:0,
reversedStacks: false
},
plotOptions:{
series:{
stacking:'normal',
groupPadding:0,
pointPlacement:'on',
shadow: true
}
},
legend: {
borderWidth: 0,
itemStyle: { fontWeight: "normal" },
symbolRadius: 0
},
series:[
{
name:'OK',
data:numberOfRequestsData.oks,
color:"#68b65c"
},
{
name:'KO',
data:numberOfRequestsData.kos,
color:"#f15b4f"
}
]
});
$('#container_exceptions').sortable('#container_exceptions');
function generateHtmlRow(request, level, index, parent, group) {
if (request.name == 'All Requests')
var url = 'index.html';
else
var url = request.pathFormatted + '.html';
if (group)
var expandButtonStyle = '';
else
var expandButtonStyle = ' hidden';
if (request.stats.numberOfRequests.total != 0)
var koPercent = (request.stats.numberOfRequests.ko * 100 / request.stats.numberOfRequests.total).toFixed(0) + '%';
else
var koPercent = '-'
return '<tr id="' + request.pathFormatted + '" data-parent=' + parent + '> \
<td class="total col-1"> \
<div class="expandable-container"> \
<span id="' + request.pathFormatted + '" style="margin-left: ' + (level * 10) + 'px;" class="expand-button' + expandButtonStyle + '"> </span> \
<a href="' + url +'" class="withTooltip">' + ellipsedLabel({ name: request.name, parentClass: "table-cell-tooltip" }) + '</a><span class="value" style="display:none;">' + index + '</span> \
</div> \
</td> \
<td class="value total col-2">' + request.stats.numberOfRequests.total + '</td> \
<td class="value ok col-3">' + request.stats.numberOfRequests.ok + '</td> \
<td class="value ko col-4">' + request.stats.numberOfRequests.ko + '</td> \
<td class="value ko col-5">' + koPercent + '</td> \
<td class="value total col-6">' + request.stats.meanNumberOfRequestsPerSecond.total + '</td> \
<td class="value total col-7">' + request.stats.minResponseTime.total + '</td> \
<td class="value total col-8">' + request.stats.percentiles1.total + '</td> \
<td class="value total col-9">' + request.stats.percentiles2.total + '</td> \
<td class="value total col-10">' + request.stats.percentiles3.total + '</td> \
<td class="value total col-11">' + request.stats.percentiles4.total + '</td> \
<td class="value total col-12">' + request.stats.maxResponseTime.total + '</td> \
<td class="value total col-13">' + request.stats.meanResponseTime.total + '</td> \
<td class="value total col-14">' + request.stats.standardDeviation.total + '</td> \
</tr>';
}
function generateHtmlRowsForGroup(group, level, index, parent) {
var buffer = '';
if (!parent)
parent = 'ROOT';
else {
buffer += generateHtmlRow(group, level - 1, index, parent, true);
index++;
parent = group.pathFormatted;
}
$.each(group.contents, function(contentName, content) {
if (content.type == 'GROUP') {
var result = generateHtmlRowsForGroup(content, level + 1, index, parent);
buffer += result.html;
index = result.index;
}
else if (content.type == 'REQUEST') {
buffer += generateHtmlRow(content, level, index, parent);
index++;
}
});
return { html: buffer, index: index };
}
$('#container_statistics_head tbody').append(generateHtmlRow(stats, 0, 0));
var lines = generateHtmlRowsForGroup(stats, 0, 0);
$('#container_statistics_body tbody').append(lines.html);
$('#container_statistics_head').sortable('#container_statistics_body');
$('.statistics').expandable();
if (lines.index < 30) {
$('#statistics_title span').attr('style', 'display: none;');
} else {
$('#statistics_title').addClass('title_collapsed');
$('#statistics_title').click(function() {
$('#toggle-stats').toggleClass("off");
$(this).toggleClass('title_collapsed').toggleClass('title_expanded');
$('#container_statistics_body').parent().toggleClass('scrollable').toggleClass('');
});
}
$('.table-cell-tooltip').popover({trigger:'hover'});
$('#container_errors').sortable('#container_errors');
allUsersData.yAxis = 0;
var allUsersChart = new Highcharts.StockChart({
chart: {
renderTo: 'active_users',
zoomType: 'x'
},
credits: { enabled: false },
legend: {
enabled: true,
floating: true,
align: 'right',
verticalAlign: 'top',
layout: 'vertical',
borderWidth: 0,
itemStyle: { fontWeight: "normal" },
symbolRadius: 0
},
title: { text: 'A title to let highcharts reserve the place for the title set later' },
navigator: {
maskInside: false
},
rangeSelector: {
buttonSpacing: 0,
buttonTheme: {
fill: '#CFC9C6',
padding: 1,
stroke: '#000000',
'stroke-width': 0.25,
style: {
color: '#000000',
fontWeight: 'bold',
},
states: {
stroke: '#000000',
'stroke-width': 0.25,
hover: {
fill: '#92918C',
style: { color: 'black' }
},
select: {
fill: '#FFA900',
style: { color: 'white' }
}
}
},
buttons : [
{
type : 'minute',
count : 1,
text : '1m'
}, {
type : 'minute',
count : 10,
text : '10m'
}, {
type : 'hour',
count : 1,
text : '1h'
}, {
type : 'all',
count : 1,
text : 'All'
}
],
selected : 3,
inputEnabled : false
},
xAxis: {
type: 'datetime',
ordinal: false,
maxZoom: 10000 // three days
},
yAxis: {
title: { text: 'Number of Active Users' },
opposite: false,
min: 0
},
series: [
{
color: '#5E7BE2',
name: 'créditos',
data: [
[1709502729000,0],[1709502730000,0],[1709502731000,0],[1709502732000,0],[1709502733000,1],[1709502734000,2],[1709502735000,3],[1709502736000,5],[1709502737000,5],[1709502738000,6],[1709502739000,6],[1709502740000,8],[1709502741000,9],[1709502742000,8],[1709502743000,10],[1709502744000,11],[1709502745000,12],[1709502746000,14],[1709502747000,15],[1709502748000,14],[1709502749000,15],[1709502750000,16],[1709502751000,17],[1709502752000,17],[1709502753000,20],[1709502754000,21],[1709502755000,20],[1709502756000,22],[1709502757000,22],[1709502758000,24],[1709502759000,26],[1709502760000,26],[1709502761000,27],[1709502762000,27],[1709502763000,30],[1709502764000,29],[1709502765000,32],[1709502766000,31],[1709502767000,34],[1709502768000,32],[1709502769000,33],[1709502770000,35],[1709502771000,35],[1709502772000,37],[1709502773000,38],[1709502774000,39],[1709502775000,40],[1709502776000,40],[1709502777000,41],[1709502778000,43],[1709502779000,43],[1709502780000,44],[1709502781000,44],[1709502782000,47],[1709502783000,47],[1709502784000,47],[1709502785000,48],[1709502786000,48],[1709502787000,50],[1709502788000,51],[1709502789000,53],[1709502790000,53],[1709502791000,54],[1709502792000,57],[1709502793000,57],[1709502794000,56],[1709502795000,59],[1709502796000,59],[1709502797000,60],[1709502798000,60],[1709502799000,61],[1709502800000,62],[1709502801000,64],[1709502802000,65],[1709502803000,64],[1709502804000,68],[1709502805000,66],[1709502806000,69],[1709502807000,68],[1709502808000,70],[1709502809000,70],[1709502810000,71],[1709502811000,72],[1709502812000,72],[1709502813000,74],[1709502814000,74],[1709502815000,75],[1709502816000,77],[1709502817000,77],[1709502818000,78],[1709502819000,80],[1709502820000,79],[1709502821000,82],[1709502822000,81],[1709502823000,83],[1709502824000,85],[1709502825000,85],[1709502826000,86],[1709502827000,86],[1709502828000,88],[1709502829000,90],[1709502830000,89],[1709502831000,90],[1709502832000,93],[1709502833000,92],[1709502834000,92],[1709502835000,95],[1709502836000,95],[1709502837000,95],[1709502838000,96],[1709502839000,97],[1709502840000,97],[1709502841000,100],[1709502842000,100],[1709502843000,103],[1709502844000,102],[1709502845000,105],[1709502846000,105],[1709502847000,104],[1709502848000,106],[1709502849000,107],[1709502850000,107],[1709502851000,108],[1709502852000,110],[1709502853000,110],[1709502854000,110],[1709502855000,112],[1709502856000,110],[1709502857000,112],[1709502858000,111],[1709502859000,112],[1709502860000,112],[1709502861000,111],[1709502862000,110],[1709502863000,110],[1709502864000,111],[1709502865000,111],[1709502866000,110],[1709502867000,111],[1709502868000,111],[1709502869000,110],[1709502870000,110],[1709502871000,111],[1709502872000,112],[1709502873000,111],[1709502874000,111],[1709502875000,110],[1709502876000,110],[1709502877000,111],[1709502878000,111],[1709502879000,111],[1709502880000,110],[1709502881000,111],[1709502882000,111],[1709502883000,110],[1709502884000,110],[1709502885000,110],[1709502886000,110],[1709502887000,111],[1709502888000,111],[1709502889000,112],[1709502890000,112],[1709502891000,111],[1709502892000,113],[1709502893000,110],[1709502894000,110],[1709502895000,110],[1709502896000,111],[1709502897000,112],[1709502898000,111],[1709502899000,110],[1709502900000,111],[1709502901000,111],[1709502902000,110],[1709502903000,112],[1709502904000,110],[1709502905000,111],[1709502906000,110],[1709502907000,112],[1709502908000,112],[1709502909000,110],[1709502910000,111],[1709502911000,110],[1709502912000,111],[1709502913000,110],[1709502914000,110],[1709502915000,110],[1709502916000,110],[1709502917000,111],[1709502918000,112],[1709502919000,112],[1709502920000,111],[1709502921000,111],[1709502922000,111],[1709502923000,112],[1709502924000,110],[1709502925000,110],[1709502926000,110],[1709502927000,111],[1709502928000,110],[1709502929000,110],[1709502930000,110],[1709502931000,111],[1709502932000,111],[1709502933000,111],[1709502934000,112],[1709502935000,110],[1709502936000,110],[1709502937000,110],[1709502938000,111],[1709502939000,111],[1709502940000,112],[1709502941000,111],[1709502942000,111],[1709502943000,112],[1709502944000,112],[1709502945000,111],[1709502946000,110],[1709502947000,111],[1709502948000,111],[1709502949000,110],[1709502950000,111],[1709502951000,110],[1709502952000,111],[1709502953000,110],[1709502954000,110],[1709502955000,111],[1709502956000,111],[1709502957000,110],[1709502958000,111],[1709502959000,112],[1709502960000,112],[1709502961000,111],[1709502962000,110],[1709502963000,111],[1709502964000,111],[1709502965000,111],[1709502966000,110],[1709502967000,110],[1709502968000,111],[1709502969000,111],[1709502970000,112],[1709502971000,111],[1709502972000,112],[1709502973000,109],[1709502974000,1]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#68b65c',
name: 'débitos',
data: [
[1709502729000,0],[1709502730000,0],[1709502731000,0],[1709502732000,0],[1709502733000,1],[1709502734000,2],[1709502735000,5],[1709502736000,7],[1709502737000,8],[1709502738000,9],[1709502739000,12],[1709502740000,14],[1709502741000,16],[1709502742000,16],[1709502743000,20],[1709502744000,21],[1709502745000,22],[1709502746000,24],[1709502747000,26],[1709502748000,28],[1709502749000,29],[1709502750000,32],[1709502751000,35],[1709502752000,36],[1709502753000,38],[1709502754000,38],[1709502755000,41],[1709502756000,42],[1709502757000,45],[1709502758000,46],[1709502759000,47],[1709502760000,51],[1709502761000,52],[1709502762000,54],[1709502763000,56],[1709502764000,58],[1709502765000,59],[1709502766000,61],[1709502767000,64],[1709502768000,66],[1709502769000,67],[1709502770000,68],[1709502771000,71],[1709502772000,73],[1709502773000,75],[1709502774000,75],[1709502775000,77],[1709502776000,81],[1709502777000,81],[1709502778000,82],[1709502779000,85],[1709502780000,87],[1709502781000,90],[1709502782000,89],[1709502783000,95],[1709502784000,95],[1709502785000,97],[1709502786000,100],[1709502787000,100],[1709502788000,102],[1709502789000,103],[1709502790000,104],[1709502791000,108],[1709502792000,108],[1709502793000,111],[1709502794000,114],[1709502795000,114],[1709502796000,117],[1709502797000,119],[1709502798000,121],[1709502799000,120],[1709502800000,126],[1709502801000,126],[1709502802000,126],[1709502803000,130],[1709502804000,129],[1709502805000,132],[1709502806000,133],[1709502807000,138],[1709502808000,138],[1709502809000,140],[1709502810000,141],[1709502811000,144],[1709502812000,146],[1709502813000,148],[1709502814000,147],[1709502815000,153],[1709502816000,152],[1709502817000,155],[1709502818000,157],[1709502819000,157],[1709502820000,161],[1709502821000,163],[1709502822000,164],[1709502823000,166],[1709502824000,168],[1709502825000,171],[1709502826000,172],[1709502827000,174],[1709502828000,175],[1709502829000,176],[1709502830000,181],[1709502831000,181],[1709502832000,183],[1709502833000,185],[1709502834000,188],[1709502835000,188],[1709502836000,190],[1709502837000,191],[1709502838000,194],[1709502839000,194],[1709502840000,197],[1709502841000,200],[1709502842000,200],[1709502843000,201],[1709502844000,203],[1709502845000,205],[1709502846000,207],[1709502847000,209],[1709502848000,212],[1709502849000,213],[1709502850000,217],[1709502851000,216],[1709502852000,218],[1709502853000,221],[1709502854000,221],[1709502855000,223],[1709502856000,222],[1709502857000,222],[1709502858000,221],[1709502859000,220],[1709502860000,220],[1709502861000,221],[1709502862000,220],[1709502863000,221],[1709502864000,221],[1709502865000,221],[1709502866000,220],[1709502867000,220],[1709502868000,221],[1709502869000,222],[1709502870000,221],[1709502871000,221],[1709502872000,220],[1709502873000,222],[1709502874000,222],[1709502875000,222],[1709502876000,220],[1709502877000,221],[1709502878000,221],[1709502879000,222],[1709502880000,222],[1709502881000,221],[1709502882000,221],[1709502883000,223],[1709502884000,223],[1709502885000,221],[1709502886000,220],[1709502887000,221],[1709502888000,222],[1709502889000,220],[1709502890000,220],[1709502891000,220],[1709502892000,220],[1709502893000,221],[1709502894000,222],[1709502895000,221],[1709502896000,221],[1709502897000,221],[1709502898000,222],[1709502899000,222],[1709502900000,221],[1709502901000,221],[1709502902000,221],[1709502903000,221],[1709502904000,221],[1709502905000,222],[1709502906000,221],[1709502907000,220],[1709502908000,220],[1709502909000,221],[1709502910000,222],[1709502911000,222],[1709502912000,221],[1709502913000,220],[1709502914000,224],[1709502915000,223],[1709502916000,221],[1709502917000,222],[1709502918000,221],[1709502919000,222],[1709502920000,222],[1709502921000,221],[1709502922000,220],[1709502923000,221],[1709502924000,222],[1709502925000,221],[1709502926000,222],[1709502927000,220],[1709502928000,222],[1709502929000,221],[1709502930000,221],[1709502931000,222],[1709502932000,220],[1709502933000,222],[1709502934000,221],[1709502935000,221],[1709502936000,221],[1709502937000,222],[1709502938000,223],[1709502939000,220],[1709502940000,220],[1709502941000,222],[1709502942000,223],[1709502943000,221],[1709502944000,220],[1709502945000,221],[1709502946000,222],[1709502947000,223],[1709502948000,222],[1709502949000,221],[1709502950000,221],[1709502951000,222],[1709502952000,221],[1709502953000,221],[1709502954000,222],[1709502955000,221],[1709502956000,222],[1709502957000,223],[1709502958000,223],[1709502959000,220],[1709502960000,220],[1709502961000,221],[1709502962000,222],[1709502963000,222],[1709502964000,222],[1709502965000,220],[1709502966000,221],[1709502967000,220],[1709502968000,221],[1709502969000,222],[1709502970000,220],[1709502971000,220],[1709502972000,221],[1709502973000,216],[1709502974000,1]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#f15b4f',
name: 'extratos',
data: [
[1709502729000,0],[1709502730000,0],[1709502731000,0],[1709502732000,0],[1709502733000,1],[1709502734000,1],[1709502735000,1],[1709502736000,1],[1709502737000,1],[1709502738000,1],[1709502739000,2],[1709502740000,1],[1709502741000,2],[1709502742000,2],[1709502743000,1],[1709502744000,2],[1709502745000,2],[1709502746000,3],[1709502747000,2],[1709502748000,2],[1709502749000,2],[1709502750000,2],[1709502751000,3],[1709502752000,2],[1709502753000,4],[1709502754000,2],[1709502755000,3],[1709502756000,2],[1709502757000,3],[1709502758000,3],[1709502759000,3],[1709502760000,3],[1709502761000,3],[1709502762000,3],[1709502763000,3],[1709502764000,4],[1709502765000,3],[1709502766000,3],[1709502767000,4],[1709502768000,3],[1709502769000,4],[1709502770000,4],[1709502771000,4],[1709502772000,4],[1709502773000,4],[1709502774000,4],[1709502775000,4],[1709502776000,5],[1709502777000,4],[1709502778000,4],[1709502779000,5],[1709502780000,4],[1709502781000,5],[1709502782000,5],[1709502783000,4],[1709502784000,5],[1709502785000,5],[1709502786000,5],[1709502787000,5],[1709502788000,5],[1709502789000,5],[1709502790000,5],[1709502791000,6],[1709502792000,5],[1709502793000,6],[1709502794000,5],[1709502795000,6],[1709502796000,5],[1709502797000,6],[1709502798000,6],[1709502799000,6],[1709502800000,6],[1709502801000,6],[1709502802000,6],[1709502803000,6],[1709502804000,7],[1709502805000,6],[1709502806000,6],[1709502807000,7],[1709502808000,6],[1709502809000,7],[1709502810000,7],[1709502811000,8],[1709502812000,7],[1709502813000,7],[1709502814000,7],[1709502815000,7],[1709502816000,7],[1709502817000,7],[1709502818000,7],[1709502819000,8],[1709502820000,7],[1709502821000,8],[1709502822000,8],[1709502823000,7],[1709502824000,8],[1709502825000,8],[1709502826000,8],[1709502827000,8],[1709502828000,8],[1709502829000,8],[1709502830000,8],[1709502831000,9],[1709502832000,8],[1709502833000,9],[1709502834000,8],[1709502835000,9],[1709502836000,8],[1709502837000,9],[1709502838000,9],[1709502839000,9],[1709502840000,9],[1709502841000,9],[1709502842000,9],[1709502843000,10],[1709502844000,10],[1709502845000,9],[1709502846000,9],[1709502847000,10],[1709502848000,9],[1709502849000,10],[1709502850000,10],[1709502851000,10],[1709502852000,10],[1709502853000,10],[1709502854000,10],[1709502855000,10],[1709502856000,10],[1709502857000,10],[1709502858000,10],[1709502859000,10],[1709502860000,10],[1709502861000,10],[1709502862000,10],[1709502863000,10],[1709502864000,10],[1709502865000,10],[1709502866000,10],[1709502867000,10],[1709502868000,10],[1709502869000,10],[1709502870000,10],[1709502871000,10],[1709502872000,10],[1709502873000,10],[1709502874000,10],[1709502875000,10],[1709502876000,10],[1709502877000,10],[1709502878000,10],[1709502879000,10],[1709502880000,10],[1709502881000,10],[1709502882000,10],[1709502883000,10],[1709502884000,10],[1709502885000,10],[1709502886000,10],[1709502887000,10],[1709502888000,10],[1709502889000,10],[1709502890000,10],[1709502891000,10],[1709502892000,10],[1709502893000,10],[1709502894000,10],[1709502895000,10],[1709502896000,10],[1709502897000,10],[1709502898000,10],[1709502899000,10],[1709502900000,10],[1709502901000,10],[1709502902000,10],[1709502903000,10],[1709502904000,10],[1709502905000,10],[1709502906000,10],[1709502907000,10],[1709502908000,10],[1709502909000,10],[1709502910000,10],[1709502911000,10],[1709502912000,10],[1709502913000,11],[1709502914000,10],[1709502915000,10],[1709502916000,10],[1709502917000,10],[1709502918000,10],[1709502919000,10],[1709502920000,10],[1709502921000,10],[1709502922000,10],[1709502923000,10],[1709502924000,10],[1709502925000,10],[1709502926000,10],[1709502927000,10],[1709502928000,10],[1709502929000,10],[1709502930000,10],[1709502931000,10],[1709502932000,10],[1709502933000,10],[1709502934000,10],[1709502935000,11],[1709502936000,10],[1709502937000,10],[1709502938000,10],[1709502939000,11],[1709502940000,10],[1709502941000,10],[1709502942000,10],[1709502943000,10],[1709502944000,10],[1709502945000,10],[1709502946000,10],[1709502947000,10],[1709502948000,10],[1709502949000,10],[1709502950000,10],[1709502951000,10],[1709502952000,10],[1709502953000,10],[1709502954000,10],[1709502955000,10],[1709502956000,10],[1709502957000,10],[1709502958000,10],[1709502959000,10],[1709502960000,10],[1709502961000,10],[1709502962000,10],[1709502963000,10],[1709502964000,10],[1709502965000,10],[1709502966000,10],[1709502967000,10],[1709502968000,10],[1709502969000,10],[1709502970000,10],[1709502971000,10],[1709502972000,10],[1709502973000,9],[1709502974000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FFDD00',
name: 'validações',
data: [
[1709502729000,0],[1709502730000,0],[1709502731000,0],[1709502732000,5],[1709502733000,5],[1709502734000,0],[1709502735000,0],[1709502736000,0],[1709502737000,0],[1709502738000,0],[1709502739000,0],[1709502740000,0],[1709502741000,0],[1709502742000,0],[1709502743000,0],[1709502744000,0],[1709502745000,0],[1709502746000,0],[1709502747000,0],[1709502748000,0],[1709502749000,0],[1709502750000,0],[1709502751000,0],[1709502752000,0],[1709502753000,0],[1709502754000,0],[1709502755000,0],[1709502756000,0],[1709502757000,0],[1709502758000,0],[1709502759000,0],[1709502760000,0],[1709502761000,0],[1709502762000,0],[1709502763000,0],[1709502764000,0],[1709502765000,0],[1709502766000,0],[1709502767000,0],[1709502768000,0],[1709502769000,0],[1709502770000,0],[1709502771000,0],[1709502772000,0],[1709502773000,0],[1709502774000,0],[1709502775000,0],[1709502776000,0],[1709502777000,0],[1709502778000,0],[1709502779000,0],[1709502780000,0],[1709502781000,0],[1709502782000,0],[1709502783000,0],[1709502784000,0],[1709502785000,0],[1709502786000,0],[1709502787000,0],[1709502788000,0],[1709502789000,0],[1709502790000,0],[1709502791000,0],[1709502792000,0],[1709502793000,0],[1709502794000,0],[1709502795000,0],[1709502796000,0],[1709502797000,0],[1709502798000,0],[1709502799000,0],[1709502800000,0],[1709502801000,0],[1709502802000,0],[1709502803000,0],[1709502804000,0],[1709502805000,0],[1709502806000,0],[1709502807000,0],[1709502808000,0],[1709502809000,0],[1709502810000,0],[1709502811000,0],[1709502812000,0],[1709502813000,0],[1709502814000,0],[1709502815000,0],[1709502816000,0],[1709502817000,0],[1709502818000,0],[1709502819000,0],[1709502820000,0],[1709502821000,0],[1709502822000,0],[1709502823000,0],[1709502824000,0],[1709502825000,0],[1709502826000,0],[1709502827000,0],[1709502828000,0],[1709502829000,0],[1709502830000,0],[1709502831000,0],[1709502832000,0],[1709502833000,0],[1709502834000,0],[1709502835000,0],[1709502836000,0],[1709502837000,0],[1709502838000,0],[1709502839000,0],[1709502840000,0],[1709502841000,0],[1709502842000,0],[1709502843000,0],[1709502844000,0],[1709502845000,0],[1709502846000,0],[1709502847000,0],[1709502848000,0],[1709502849000,0],[1709502850000,0],[1709502851000,0],[1709502852000,0],[1709502853000,0],[1709502854000,0],[1709502855000,0],[1709502856000,0],[1709502857000,0],[1709502858000,0],[1709502859000,0],[1709502860000,0],[1709502861000,0],[1709502862000,0],[1709502863000,0],[1709502864000,0],[1709502865000,0],[1709502866000,0],[1709502867000,0],[1709502868000,0],[1709502869000,0],[1709502870000,0],[1709502871000,0],[1709502872000,0],[1709502873000,0],[1709502874000,0],[1709502875000,0],[1709502876000,0],[1709502877000,0],[1709502878000,0],[1709502879000,0],[1709502880000,0],[1709502881000,0],[1709502882000,0],[1709502883000,0],[1709502884000,0],[1709502885000,0],[1709502886000,0],[1709502887000,0],[1709502888000,0],[1709502889000,0],[1709502890000,0],[1709502891000,0],[1709502892000,0],[1709502893000,0],[1709502894000,0],[1709502895000,0],[1709502896000,0],[1709502897000,0],[1709502898000,0],[1709502899000,0],[1709502900000,0],[1709502901000,0],[1709502902000,0],[1709502903000,0],[1709502904000,0],[1709502905000,0],[1709502906000,0],[1709502907000,0],[1709502908000,0],[1709502909000,0],[1709502910000,0],[1709502911000,0],[1709502912000,0],[1709502913000,0],[1709502914000,0],[1709502915000,0],[1709502916000,0],[1709502917000,0],[1709502918000,0],[1709502919000,0],[1709502920000,0],[1709502921000,0],[1709502922000,0],[1709502923000,0],[1709502924000,0],[1709502925000,0],[1709502926000,0],[1709502927000,0],[1709502928000,0],[1709502929000,0],[1709502930000,0],[1709502931000,0],[1709502932000,0],[1709502933000,0],[1709502934000,0],[1709502935000,0],[1709502936000,0],[1709502937000,0],[1709502938000,0],[1709502939000,0],[1709502940000,0],[1709502941000,0],[1709502942000,0],[1709502943000,0],[1709502944000,0],[1709502945000,0],[1709502946000,0],[1709502947000,0],[1709502948000,0],[1709502949000,0],[1709502950000,0],[1709502951000,0],[1709502952000,0],[1709502953000,0],[1709502954000,0],[1709502955000,0],[1709502956000,0],[1709502957000,0],[1709502958000,0],[1709502959000,0],[1709502960000,0],[1709502961000,0],[1709502962000,0],[1709502963000,0],[1709502964000,0],[1709502965000,0],[1709502966000,0],[1709502967000,0],[1709502968000,0],[1709502969000,0],[1709502970000,0],[1709502971000,0],[1709502972000,0],[1709502973000,0],[1709502974000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00D5FF',
name: 'validação HTTP 404',
data: [
[1709502729000,0],[1709502730000,0],[1709502731000,0],[1709502732000,1],[1709502733000,0],[1709502734000,0],[1709502735000,0],[1709502736000,0],[1709502737000,0],[1709502738000,0],[1709502739000,0],[1709502740000,0],[1709502741000,0],[1709502742000,0],[1709502743000,0],[1709502744000,0],[1709502745000,0],[1709502746000,0],[1709502747000,0],[1709502748000,0],[1709502749000,0],[1709502750000,0],[1709502751000,0],[1709502752000,0],[1709502753000,0],[1709502754000,0],[1709502755000,0],[1709502756000,0],[1709502757000,0],[1709502758000,0],[1709502759000,0],[1709502760000,0],[1709502761000,0],[1709502762000,0],[1709502763000,0],[1709502764000,0],[1709502765000,0],[1709502766000,0],[1709502767000,0],[1709502768000,0],[1709502769000,0],[1709502770000,0],[1709502771000,0],[1709502772000,0],[1709502773000,0],[1709502774000,0],[1709502775000,0],[1709502776000,0],[1709502777000,0],[1709502778000,0],[1709502779000,0],[1709502780000,0],[1709502781000,0],[1709502782000,0],[1709502783000,0],[1709502784000,0],[1709502785000,0],[1709502786000,0],[1709502787000,0],[1709502788000,0],[1709502789000,0],[1709502790000,0],[1709502791000,0],[1709502792000,0],[1709502793000,0],[1709502794000,0],[1709502795000,0],[1709502796000,0],[1709502797000,0],[1709502798000,0],[1709502799000,0],[1709502800000,0],[1709502801000,0],[1709502802000,0],[1709502803000,0],[1709502804000,0],[1709502805000,0],[1709502806000,0],[1709502807000,0],[1709502808000,0],[1709502809000,0],[1709502810000,0],[1709502811000,0],[1709502812000,0],[1709502813000,0],[1709502814000,0],[1709502815000,0],[1709502816000,0],[1709502817000,0],[1709502818000,0],[1709502819000,0],[1709502820000,0],[1709502821000,0],[1709502822000,0],[1709502823000,0],[1709502824000,0],[1709502825000,0],[1709502826000,0],[1709502827000,0],[1709502828000,0],[1709502829000,0],[1709502830000,0],[1709502831000,0],[1709502832000,0],[1709502833000,0],[1709502834000,0],[1709502835000,0],[1709502836000,0],[1709502837000,0],[1709502838000,0],[1709502839000,0],[1709502840000,0],[1709502841000,0],[1709502842000,0],[1709502843000,0],[1709502844000,0],[1709502845000,0],[1709502846000,0],[1709502847000,0],[1709502848000,0],[1709502849000,0],[1709502850000,0],[1709502851000,0],[1709502852000,0],[1709502853000,0],[1709502854000,0],[1709502855000,0],[1709502856000,0],[1709502857000,0],[1709502858000,0],[1709502859000,0],[1709502860000,0],[1709502861000,0],[1709502862000,0],[1709502863000,0],[1709502864000,0],[1709502865000,0],[1709502866000,0],[1709502867000,0],[1709502868000,0],[1709502869000,0],[1709502870000,0],[1709502871000,0],[1709502872000,0],[1709502873000,0],[1709502874000,0],[1709502875000,0],[1709502876000,0],[1709502877000,0],[1709502878000,0],[1709502879000,0],[1709502880000,0],[1709502881000,0],[1709502882000,0],[1709502883000,0],[1709502884000,0],[1709502885000,0],[1709502886000,0],[1709502887000,0],[1709502888000,0],[1709502889000,0],[1709502890000,0],[1709502891000,0],[1709502892000,0],[1709502893000,0],[1709502894000,0],[1709502895000,0],[1709502896000,0],[1709502897000,0],[1709502898000,0],[1709502899000,0],[1709502900000,0],[1709502901000,0],[1709502902000,0],[1709502903000,0],[1709502904000,0],[1709502905000,0],[1709502906000,0],[1709502907000,0],[1709502908000,0],[1709502909000,0],[1709502910000,0],[1709502911000,0],[1709502912000,0],[1709502913000,0],[1709502914000,0],[1709502915000,0],[1709502916000,0],[1709502917000,0],[1709502918000,0],[1709502919000,0],[1709502920000,0],[1709502921000,0],[1709502922000,0],[1709502923000,0],[1709502924000,0],[1709502925000,0],[1709502926000,0],[1709502927000,0],[1709502928000,0],[1709502929000,0],[1709502930000,0],[1709502931000,0],[1709502932000,0],[1709502933000,0],[1709502934000,0],[1709502935000,0],[1709502936000,0],[1709502937000,0],[1709502938000,0],[1709502939000,0],[1709502940000,0],[1709502941000,0],[1709502942000,0],[1709502943000,0],[1709502944000,0],[1709502945000,0],[1709502946000,0],[1709502947000,0],[1709502948000,0],[1709502949000,0],[1709502950000,0],[1709502951000,0],[1709502952000,0],[1709502953000,0],[1709502954000,0],[1709502955000,0],[1709502956000,0],[1709502957000,0],[1709502958000,0],[1709502959000,0],[1709502960000,0],[1709502961000,0],[1709502962000,0],[1709502963000,0],[1709502964000,0],[1709502965000,0],[1709502966000,0],[1709502967000,0],[1709502968000,0],[1709502969000,0],[1709502970000,0],[1709502971000,0],[1709502972000,0],[1709502973000,0],[1709502974000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00FF00',
name: 'validação concorrência saldo - 0',
data: [
[1709502729000,0],[1709502730000,0],[1709502731000,1],[1709502732000,0],[1709502733000,0],[1709502734000,0],[1709502735000,0],[1709502736000,0],[1709502737000,0],[1709502738000,0],[1709502739000,0],[1709502740000,0],[1709502741000,0],[1709502742000,0],[1709502743000,0],[1709502744000,0],[1709502745000,0],[1709502746000,0],[1709502747000,0],[1709502748000,0],[1709502749000,0],[1709502750000,0],[1709502751000,0],[1709502752000,0],[1709502753000,0],[1709502754000,0],[1709502755000,0],[1709502756000,0],[1709502757000,0],[1709502758000,0],[1709502759000,0],[1709502760000,0],[1709502761000,0],[1709502762000,0],[1709502763000,0],[1709502764000,0],[1709502765000,0],[1709502766000,0],[1709502767000,0],[1709502768000,0],[1709502769000,0],[1709502770000,0],[1709502771000,0],[1709502772000,0],[1709502773000,0],[1709502774000,0],[1709502775000,0],[1709502776000,0],[1709502777000,0],[1709502778000,0],[1709502779000,0],[1709502780000,0],[1709502781000,0],[1709502782000,0],[1709502783000,0],[1709502784000,0],[1709502785000,0],[1709502786000,0],[1709502787000,0],[1709502788000,0],[1709502789000,0],[1709502790000,0],[1709502791000,0],[1709502792000,0],[1709502793000,0],[1709502794000,0],[1709502795000,0],[1709502796000,0],[1709502797000,0],[1709502798000,0],[1709502799000,0],[1709502800000,0],[1709502801000,0],[1709502802000,0],[1709502803000,0],[1709502804000,0],[1709502805000,0],[1709502806000,0],[1709502807000,0],[1709502808000,0],[1709502809000,0],[1709502810000,0],[1709502811000,0],[1709502812000,0],[1709502813000,0],[1709502814000,0],[1709502815000,0],[1709502816000,0],[1709502817000,0],[1709502818000,0],[1709502819000,0],[1709502820000,0],[1709502821000,0],[1709502822000,0],[1709502823000,0],[1709502824000,0],[1709502825000,0],[1709502826000,0],[1709502827000,0],[1709502828000,0],[1709502829000,0],[1709502830000,0],[1709502831000,0],[1709502832000,0],[1709502833000,0],[1709502834000,0],[1709502835000,0],[1709502836000,0],[1709502837000,0],[1709502838000,0],[1709502839000,0],[1709502840000,0],[1709502841000,0],[1709502842000,0],[1709502843000,0],[1709502844000,0],[1709502845000,0],[1709502846000,0],[1709502847000,0],[1709502848000,0],[1709502849000,0],[1709502850000,0],[1709502851000,0],[1709502852000,0],[1709502853000,0],[1709502854000,0],[1709502855000,0],[1709502856000,0],[1709502857000,0],[1709502858000,0],[1709502859000,0],[1709502860000,0],[1709502861000,0],[1709502862000,0],[1709502863000,0],[1709502864000,0],[1709502865000,0],[1709502866000,0],[1709502867000,0],[1709502868000,0],[1709502869000,0],[1709502870000,0],[1709502871000,0],[1709502872000,0],[1709502873000,0],[1709502874000,0],[1709502875000,0],[1709502876000,0],[1709502877000,0],[1709502878000,0],[1709502879000,0],[1709502880000,0],[1709502881000,0],[1709502882000,0],[1709502883000,0],[1709502884000,0],[1709502885000,0],[1709502886000,0],[1709502887000,0],[1709502888000,0],[1709502889000,0],[1709502890000,0],[1709502891000,0],[1709502892000,0],[1709502893000,0],[1709502894000,0],[1709502895000,0],[1709502896000,0],[1709502897000,0],[1709502898000,0],[1709502899000,0],[1709502900000,0],[1709502901000,0],[1709502902000,0],[1709502903000,0],[1709502904000,0],[1709502905000,0],[1709502906000,0],[1709502907000,0],[1709502908000,0],[1709502909000,0],[1709502910000,0],[1709502911000,0],[1709502912000,0],[1709502913000,0],[1709502914000,0],[1709502915000,0],[1709502916000,0],[1709502917000,0],[1709502918000,0],[1709502919000,0],[1709502920000,0],[1709502921000,0],[1709502922000,0],[1709502923000,0],[1709502924000,0],[1709502925000,0],[1709502926000,0],[1709502927000,0],[1709502928000,0],[1709502929000,0],[1709502930000,0],[1709502931000,0],[1709502932000,0],[1709502933000,0],[1709502934000,0],[1709502935000,0],[1709502936000,0],[1709502937000,0],[1709502938000,0],[1709502939000,0],[1709502940000,0],[1709502941000,0],[1709502942000,0],[1709502943000,0],[1709502944000,0],[1709502945000,0],[1709502946000,0],[1709502947000,0],[1709502948000,0],[1709502949000,0],[1709502950000,0],[1709502951000,0],[1709502952000,0],[1709502953000,0],[1709502954000,0],[1709502955000,0],[1709502956000,0],[1709502957000,0],[1709502958000,0],[1709502959000,0],[1709502960000,0],[1709502961000,0],[1709502962000,0],[1709502963000,0],[1709502964000,0],[1709502965000,0],[1709502966000,0],[1709502967000,0],[1709502968000,0],[1709502969000,0],[1709502970000,0],[1709502971000,0],[1709502972000,0],[1709502973000,0],[1709502974000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#9D00FF',
name: 'validação concorrência transações - c',
data: [
[1709502729000,0],[1709502730000,25],[1709502731000,13],[1709502732000,0],[1709502733000,0],[1709502734000,0],[1709502735000,0],[1709502736000,0],[1709502737000,0],[1709502738000,0],[1709502739000,0],[1709502740000,0],[1709502741000,0],[1709502742000,0],[1709502743000,0],[1709502744000,0],[1709502745000,0],[1709502746000,0],[1709502747000,0],[1709502748000,0],[1709502749000,0],[1709502750000,0],[1709502751000,0],[1709502752000,0],[1709502753000,0],[1709502754000,0],[1709502755000,0],[1709502756000,0],[1709502757000,0],[1709502758000,0],[1709502759000,0],[1709502760000,0],[1709502761000,0],[1709502762000,0],[1709502763000,0],[1709502764000,0],[1709502765000,0],[1709502766000,0],[1709502767000,0],[1709502768000,0],[1709502769000,0],[1709502770000,0],[1709502771000,0],[1709502772000,0],[1709502773000,0],[1709502774000,0],[1709502775000,0],[1709502776000,0],[1709502777000,0],[1709502778000,0],[1709502779000,0],[1709502780000,0],[1709502781000,0],[1709502782000,0],[1709502783000,0],[1709502784000,0],[1709502785000,0],[1709502786000,0],[1709502787000,0],[1709502788000,0],[1709502789000,0],[1709502790000,0],[1709502791000,0],[1709502792000,0],[1709502793000,0],[1709502794000,0],[1709502795000,0],[1709502796000,0],[1709502797000,0],[1709502798000,0],[1709502799000,0],[1709502800000,0],[1709502801000,0],[1709502802000,0],[1709502803000,0],[1709502804000,0],[1709502805000,0],[1709502806000,0],[1709502807000,0],[1709502808000,0],[1709502809000,0],[1709502810000,0],[1709502811000,0],[1709502812000,0],[1709502813000,0],[1709502814000,0],[1709502815000,0],[1709502816000,0],[1709502817000,0],[1709502818000,0],[1709502819000,0],[1709502820000,0],[1709502821000,0],[1709502822000,0],[1709502823000,0],[1709502824000,0],[1709502825000,0],[1709502826000,0],[1709502827000,0],[1709502828000,0],[1709502829000,0],[1709502830000,0],[1709502831000,0],[1709502832000,0],[1709502833000,0],[1709502834000,0],[1709502835000,0],[1709502836000,0],[1709502837000,0],[1709502838000,0],[1709502839000,0],[1709502840000,0],[1709502841000,0],[1709502842000,0],[1709502843000,0],[1709502844000,0],[1709502845000,0],[1709502846000,0],[1709502847000,0],[1709502848000,0],[1709502849000,0],[1709502850000,0],[1709502851000,0],[1709502852000,0],[1709502853000,0],[1709502854000,0],[1709502855000,0],[1709502856000,0],[1709502857000,0],[1709502858000,0],[1709502859000,0],[1709502860000,0],[1709502861000,0],[1709502862000,0],[1709502863000,0],[1709502864000,0],[1709502865000,0],[1709502866000,0],[1709502867000,0],[1709502868000,0],[1709502869000,0],[1709502870000,0],[1709502871000,0],[1709502872000,0],[1709502873000,0],[1709502874000,0],[1709502875000,0],[1709502876000,0],[1709502877000,0],[1709502878000,0],[1709502879000,0],[1709502880000,0],[1709502881000,0],[1709502882000,0],[1709502883000,0],[1709502884000,0],[1709502885000,0],[1709502886000,0],[1709502887000,0],[1709502888000,0],[1709502889000,0],[1709502890000,0],[1709502891000,0],[1709502892000,0],[1709502893000,0],[1709502894000,0],[1709502895000,0],[1709502896000,0],[1709502897000,0],[1709502898000,0],[1709502899000,0],[1709502900000,0],[1709502901000,0],[1709502902000,0],[1709502903000,0],[1709502904000,0],[1709502905000,0],[1709502906000,0],[1709502907000,0],[1709502908000,0],[1709502909000,0],[1709502910000,0],[1709502911000,0],[1709502912000,0],[1709502913000,0],[1709502914000,0],[1709502915000,0],[1709502916000,0],[1709502917000,0],[1709502918000,0],[1709502919000,0],[1709502920000,0],[1709502921000,0],[1709502922000,0],[1709502923000,0],[1709502924000,0],[1709502925000,0],[1709502926000,0],[1709502927000,0],[1709502928000,0],[1709502929000,0],[1709502930000,0],[1709502931000,0],[1709502932000,0],[1709502933000,0],[1709502934000,0],[1709502935000,0],[1709502936000,0],[1709502937000,0],[1709502938000,0],[1709502939000,0],[1709502940000,0],[1709502941000,0],[1709502942000,0],[1709502943000,0],[1709502944000,0],[1709502945000,0],[1709502946000,0],[1709502947000,0],[1709502948000,0],[1709502949000,0],[1709502950000,0],[1709502951000,0],[1709502952000,0],[1709502953000,0],[1709502954000,0],[1709502955000,0],[1709502956000,0],[1709502957000,0],[1709502958000,0],[1709502959000,0],[1709502960000,0],[1709502961000,0],[1709502962000,0],[1709502963000,0],[1709502964000,0],[1709502965000,0],[1709502966000,0],[1709502967000,0],[1709502968000,0],[1709502969000,0],[1709502970000,0],[1709502971000,0],[1709502972000,0],[1709502973000,0],[1709502974000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FF00E1',
name: 'validação concorrência saldo - -25',
data: [
[1709502729000,1],[1709502730000,1],[1709502731000,0],[1709502732000,0],[1709502733000,0],[1709502734000,0],[1709502735000,0],[1709502736000,0],[1709502737000,0],[1709502738000,0],[1709502739000,0],[1709502740000,0],[1709502741000,0],[1709502742000,0],[1709502743000,0],[1709502744000,0],[1709502745000,0],[1709502746000,0],[1709502747000,0],[1709502748000,0],[1709502749000,0],[1709502750000,0],[1709502751000,0],[1709502752000,0],[1709502753000,0],[1709502754000,0],[1709502755000,0],[1709502756000,0],[1709502757000,0],[1709502758000,0],[1709502759000,0],[1709502760000,0],[1709502761000,0],[1709502762000,0],[1709502763000,0],[1709502764000,0],[1709502765000,0],[1709502766000,0],[1709502767000,0],[1709502768000,0],[1709502769000,0],[1709502770000,0],[1709502771000,0],[1709502772000,0],[1709502773000,0],[1709502774000,0],[1709502775000,0],[1709502776000,0],[1709502777000,0],[1709502778000,0],[1709502779000,0],[1709502780000,0],[1709502781000,0],[1709502782000,0],[1709502783000,0],[1709502784000,0],[1709502785000,0],[1709502786000,0],[1709502787000,0],[1709502788000,0],[1709502789000,0],[1709502790000,0],[1709502791000,0],[1709502792000,0],[1709502793000,0],[1709502794000,0],[1709502795000,0],[1709502796000,0],[1709502797000,0],[1709502798000,0],[1709502799000,0],[1709502800000,0],[1709502801000,0],[1709502802000,0],[1709502803000,0],[1709502804000,0],[1709502805000,0],[1709502806000,0],[1709502807000,0],[1709502808000,0],[1709502809000,0],[1709502810000,0],[1709502811000,0],[1709502812000,0],[1709502813000,0],[1709502814000,0],[1709502815000,0],[1709502816000,0],[1709502817000,0],[1709502818000,0],[1709502819000,0],[1709502820000,0],[1709502821000,0],[1709502822000,0],[1709502823000,0],[1709502824000,0],[1709502825000,0],[1709502826000,0],[1709502827000,0],[1709502828000,0],[1709502829000,0],[1709502830000,0],[1709502831000,0],[1709502832000,0],[1709502833000,0],[1709502834000,0],[1709502835000,0],[1709502836000,0],[1709502837000,0],[1709502838000,0],[1709502839000,0],[1709502840000,0],[1709502841000,0],[1709502842000,0],[1709502843000,0],[1709502844000,0],[1709502845000,0],[1709502846000,0],[1709502847000,0],[1709502848000,0],[1709502849000,0],[1709502850000,0],[1709502851000,0],[1709502852000,0],[1709502853000,0],[1709502854000,0],[1709502855000,0],[1709502856000,0],[1709502857000,0],[1709502858000,0],[1709502859000,0],[1709502860000,0],[1709502861000,0],[1709502862000,0],[1709502863000,0],[1709502864000,0],[1709502865000,0],[1709502866000,0],[1709502867000,0],[1709502868000,0],[1709502869000,0],[1709502870000,0],[1709502871000,0],[1709502872000,0],[1709502873000,0],[1709502874000,0],[1709502875000,0],[1709502876000,0],[1709502877000,0],[1709502878000,0],[1709502879000,0],[1709502880000,0],[1709502881000,0],[1709502882000,0],[1709502883000,0],[1709502884000,0],[1709502885000,0],[1709502886000,0],[1709502887000,0],[1709502888000,0],[1709502889000,0],[1709502890000,0],[1709502891000,0],[1709502892000,0],[1709502893000,0],[1709502894000,0],[1709502895000,0],[1709502896000,0],[1709502897000,0],[1709502898000,0],[1709502899000,0],[1709502900000,0],[1709502901000,0],[1709502902000,0],[1709502903000,0],[1709502904000,0],[1709502905000,0],[1709502906000,0],[1709502907000,0],[1709502908000,0],[1709502909000,0],[1709502910000,0],[1709502911000,0],[1709502912000,0],[1709502913000,0],[1709502914000,0],[1709502915000,0],[1709502916000,0],[1709502917000,0],[1709502918000,0],[1709502919000,0],[1709502920000,0],[1709502921000,0],[1709502922000,0],[1709502923000,0],[1709502924000,0],[1709502925000,0],[1709502926000,0],[1709502927000,0],[1709502928000,0],[1709502929000,0],[1709502930000,0],[1709502931000,0],[1709502932000,0],[1709502933000,0],[1709502934000,0],[1709502935000,0],[1709502936000,0],[1709502937000,0],[1709502938000,0],[1709502939000,0],[1709502940000,0],[1709502941000,0],[1709502942000,0],[1709502943000,0],[1709502944000,0],[1709502945000,0],[1709502946000,0],[1709502947000,0],[1709502948000,0],[1709502949000,0],[1709502950000,0],[1709502951000,0],[1709502952000,0],[1709502953000,0],[1709502954000,0],[1709502955000,0],[1709502956000,0],[1709502957000,0],[1709502958000,0],[1709502959000,0],[1709502960000,0],[1709502961000,0],[1709502962000,0],[1709502963000,0],[1709502964000,0],[1709502965000,0],[1709502966000,0],[1709502967000,0],[1709502968000,0],[1709502969000,0],[1709502970000,0],[1709502971000,0],[1709502972000,0],[1709502973000,0],[1709502974000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#AECAEB',
name: 'validação concorrência transações - d',
data: [
[1709502729000,25],[1709502730000,0],[1709502731000,0],[1709502732000,0],[1709502733000,0],[1709502734000,0],[1709502735000,0],[1709502736000,0],[1709502737000,0],[1709502738000,0],[1709502739000,0],[1709502740000,0],[1709502741000,0],[1709502742000,0],[1709502743000,0],[1709502744000,0],[1709502745000,0],[1709502746000,0],[1709502747000,0],[1709502748000,0],[1709502749000,0],[1709502750000,0],[1709502751000,0],[1709502752000,0],[1709502753000,0],[1709502754000,0],[1709502755000,0],[1709502756000,0],[1709502757000,0],[1709502758000,0],[1709502759000,0],[1709502760000,0],[1709502761000,0],[1709502762000,0],[1709502763000,0],[1709502764000,0],[1709502765000,0],[1709502766000,0],[1709502767000,0],[1709502768000,0],[1709502769000,0],[1709502770000,0],[1709502771000,0],[1709502772000,0],[1709502773000,0],[1709502774000,0],[1709502775000,0],[1709502776000,0],[1709502777000,0],[1709502778000,0],[1709502779000,0],[1709502780000,0],[1709502781000,0],[1709502782000,0],[1709502783000,0],[1709502784000,0],[1709502785000,0],[1709502786000,0],[1709502787000,0],[1709502788000,0],[1709502789000,0],[1709502790000,0],[1709502791000,0],[1709502792000,0],[1709502793000,0],[1709502794000,0],[1709502795000,0],[1709502796000,0],[1709502797000,0],[1709502798000,0],[1709502799000,0],[1709502800000,0],[1709502801000,0],[1709502802000,0],[1709502803000,0],[1709502804000,0],[1709502805000,0],[1709502806000,0],[1709502807000,0],[1709502808000,0],[1709502809000,0],[1709502810000,0],[1709502811000,0],[1709502812000,0],[1709502813000,0],[1709502814000,0],[1709502815000,0],[1709502816000,0],[1709502817000,0],[1709502818000,0],[1709502819000,0],[1709502820000,0],[1709502821000,0],[1709502822000,0],[1709502823000,0],[1709502824000,0],[1709502825000,0],[1709502826000,0],[1709502827000,0],[1709502828000,0],[1709502829000,0],[1709502830000,0],[1709502831000,0],[1709502832000,0],[1709502833000,0],[1709502834000,0],[1709502835000,0],[1709502836000,0],[1709502837000,0],[1709502838000,0],[1709502839000,0],[1709502840000,0],[1709502841000,0],[1709502842000,0],[1709502843000,0],[1709502844000,0],[1709502845000,0],[1709502846000,0],[1709502847000,0],[1709502848000,0],[1709502849000,0],[1709502850000,0],[1709502851000,0],[1709502852000,0],[1709502853000,0],[1709502854000,0],[1709502855000,0],[1709502856000,0],[1709502857000,0],[1709502858000,0],[1709502859000,0],[1709502860000,0],[1709502861000,0],[1709502862000,0],[1709502863000,0],[1709502864000,0],[1709502865000,0],[1709502866000,0],[1709502867000,0],[1709502868000,0],[1709502869000,0],[1709502870000,0],[1709502871000,0],[1709502872000,0],[1709502873000,0],[1709502874000,0],[1709502875000,0],[1709502876000,0],[1709502877000,0],[1709502878000,0],[1709502879000,0],[1709502880000,0],[1709502881000,0],[1709502882000,0],[1709502883000,0],[1709502884000,0],[1709502885000,0],[1709502886000,0],[1709502887000,0],[1709502888000,0],[1709502889000,0],[1709502890000,0],[1709502891000,0],[1709502892000,0],[1709502893000,0],[1709502894000,0],[1709502895000,0],[1709502896000,0],[1709502897000,0],[1709502898000,0],[1709502899000,0],[1709502900000,0],[1709502901000,0],[1709502902000,0],[1709502903000,0],[1709502904000,0],[1709502905000,0],[1709502906000,0],[1709502907000,0],[1709502908000,0],[1709502909000,0],[1709502910000,0],[1709502911000,0],[1709502912000,0],[1709502913000,0],[1709502914000,0],[1709502915000,0],[1709502916000,0],[1709502917000,0],[1709502918000,0],[1709502919000,0],[1709502920000,0],[1709502921000,0],[1709502922000,0],[1709502923000,0],[1709502924000,0],[1709502925000,0],[1709502926000,0],[1709502927000,0],[1709502928000,0],[1709502929000,0],[1709502930000,0],[1709502931000,0],[1709502932000,0],[1709502933000,0],[1709502934000,0],[1709502935000,0],[1709502936000,0],[1709502937000,0],[1709502938000,0],[1709502939000,0],[1709502940000,0],[1709502941000,0],[1709502942000,0],[1709502943000,0],[1709502944000,0],[1709502945000,0],[1709502946000,0],[1709502947000,0],[1709502948000,0],[1709502949000,0],[1709502950000,0],[1709502951000,0],[1709502952000,0],[1709502953000,0],[1709502954000,0],[1709502955000,0],[1709502956000,0],[1709502957000,0],[1709502958000,0],[1709502959000,0],[1709502960000,0],[1709502961000,0],[1709502962000,0],[1709502963000,0],[1709502964000,0],[1709502965000,0],[1709502966000,0],[1709502967000,0],[1709502968000,0],[1709502969000,0],[1709502970000,0],[1709502971000,0],[1709502972000,0],[1709502973000,0],[1709502974000,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: ['3', '8', '14', '19', '24', '30', '35', '41', '46', '51', '57', '62', '68', '73', '78', '84', '89', '95', '100', '105', '111', '116', '122', '127', '132', '138', '143', '149', '154', '159', '165', '170', '176', '181', '186', '192', '197', '203', '208', '213', '219', '224', '230', '235', '240', '246', '251', '257', '262', '267', '273', '278', '284', '289', '294', '300', '305', '311', '316', '321', '327', '332', '338', '343', '348', '354', '359', '365', '370', '375', '381', '386', '392', '397', '402', '408', '413', '419', '424', '429', '435', '440', '446', '451', '456', '462', '467', '473', '478', '483', '489', '494', '500', '505', '510', '516', '521', '527', '532', '537'],
tickInterval: 20
},
yAxis: {
min: 0,
title: { text: 'Percentage of Requests' },
reversedStacks: false
},
tooltip: {
formatter: function() {
return '<b>'+ this.x +' ms</b><br/>'+
this.series.name +': '+ this.y +' %<br/>'+
'Total: '+ this.point.stackTotal + ' %';
}
},
plotOptions: {
series: {
groupPadding: 0,
stacking: 'normal',
shadow: true
}
},
series: [
{
type: 'column',
color: '#68b65c',
name: 'OK',
data: [
0.71,0.1,0.2,0.23,0.21,0.18,0.13,0.15,0.1,0.25,0.19,0.15,0.2,0.16,0.2,0.19,0.27,0.36,0.43,0.65,0.53,0.49,0.56,0.33,0.36,0.25,0.14,0.12,0.05,0.06,0.04,0.04,0.02,0.02,0.04,0.03,0.01,0.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
],
tooltip: { yDecimals: 0, ySuffix: 'ms' }
},
{
type: 'column',
color: '#f15b4f',
name: 'KO',
data: [
90.78,0.13,0.08,0.07,0.07,0.03,0.04,0.03,0.02,0.04,0.03,0.01,0.02,0.01,0.01,0.02,0.01,0.02,0.0,0.01,0.01,0.0,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
],
tooltip: { yDecimals: 0, ySuffix: 'ms' }
}
]
});
responsetimeDistributionChart.setTitle({
text: '<span class="chart_title">Response Time Distribution</span>',
useHTML: true
});
var responsetimepercentilesovertimeokPercentiles = unpack([[1709502729,[11,31,41,45,47,52,56,133,178,187]],[1709502730,null],[1709502731,[4,7,11,14,15,16,40,66,86,92]],[1709502732,[2,2,2,2,2,2,2,2,2,2]],[1709502733,[0,1,1,4,4,5,16,32,38,40]],[1709502734,[3,20,37,37,37,37,37,37,37,37]],[1709502735,[20,29,31,46,46,47,47,48,48,49]],[1709502736,[4,23,24,27,31,35,38,42,45,46]],[1709502737,[20,23,24,29,29,29,31,37,42,44]],[1709502738,[3,21,22,34,38,43,48,51,54,55]],[1709502739,[3,25,34,40,45,47,48,49,49,50]],[1709502740,[3,39,55,79,83,92,107,120,124,125]],[1709502741,[5,43,55,61,62,65,70,74,80,82]],[1709502742,[2,31,53,66,71,81,98,111,120,123]],[1709502743,[36,51,57,100,108,114,119,134,161,168]],[1709502744,[24,29,58,82,83,87,92,98,107,110]],[1709502745,[9,54,64,106,108,110,113,118,123,125]],[1709502746,[2,74,110,132,138,153,199,239,241,242]],[1709502747,[60,94,109,113,116,116,120,124,128,130]],[1709502748,[2,56,90,111,118,123,126,129,139,142]],[1709502749,[19,43,88,104,116,124,128,131,137,139]],[1709502750,[12,77,110,119,119,137,152,233,478,540]],[1709502751,[24,81,94,104,105,107,112,119,127,129]],[1709502752,[11,103,109,118,118,122,124,129,142,146]],[1709502753,[26,71,104,115,127,133,140,149,161,164]],[1709502754,[1,58,90,104,112,122,128,131,131,132]],[1709502755,[30,61,78,110,118,123,123,128,142,146]],[1709502756,[9,96,103,122,129,133,135,138,144,146]],[1709502757,[90,103,112,119,128,129,134,139,141,142]],[1709502758,[65,91,102,115,121,124,128,139,156,161]],[1709502759,[58,85,103,114,115,120,129,139,143,145]],[1709502760,[10,91,104,114,118,121,123,126,134,136]],[1709502761,[22,85,103,122,124,125,127,131,142,145]],[1709502762,[5,72,83,111,115,119,122,143,144,145]],[1709502763,[1,66,102,109,110,116,128,131,137,139]],[1709502764,[31,91,103,118,119,120,121,128,145,150]],[1709502765,[46,96,111,120,122,122,122,125,133,136]],[1709502766,[6,65,85,112,115,120,132,138,145,147]],[1709502767,[1,93,110,117,123,123,124,125,127,128]],[1709502768,[1,50,85,107,109,111,113,115,129,133]],[1709502769,[6,64,102,111,112,114,115,116,119,120]],[1709502770,[4,104,118,129,130,133,137,140,142,143]],[1709502771,[83,100,109,119,122,134,138,148,171,177]],[1709502772,[21,85,109,122,123,128,136,144,151,153]],[1709502773,[1,28,57,95,100,106,118,138,160,167]],[1709502774,[2,111,128,131,131,132,139,147,148,149]],[1709502775,[2,88,100,117,120,126,132,141,183,194]],[1709502776,[1,28,79,103,114,136,148,154,179,187]],[1709502777,[1,17,107,121,122,132,132,136,140,141]],[1709502778,[2,89,104,111,113,119,128,131,175,186]],[1709502779,[2,68,100,115,119,122,132,134,136,137]],[1709502780,[15,87,101,120,121,124,127,131,136,138]],[1709502781,[15,71,101,132,135,136,137,141,204,220]],[1709502782,[1,102,106,118,125,131,136,139,141,142]],[1709502783,[25,96,113,136,136,139,148,163,182,187]],[1709502784,[1,66,103,127,127,131,136,145,157,161]],[1709502785,[2,76,97,111,116,117,119,120,129,132]],[1709502786,[1,31,93,106,108,109,116,136,157,163]],[1709502787,[13,92,109,123,129,137,144,147,149,150]],[1709502788,[1,58,90,107,110,115,124,127,131,132]],[1709502789,[2,87,99,108,109,110,114,125,141,146]],[1709502790,[21,94,104,127,128,131,141,150,190,201]],[1709502791,[1,95,115,121,125,131,136,138,139,140]],[1709502792,[1,89,119,129,134,136,136,138,144,146]],[1709502793,[1,79,101,122,124,127,131,143,175,183]],[1709502794,[1,58,112,133,133,133,136,140,144,145]],[1709502795,[1,68,94,122,124,130,133,137,148,152]],[1709502796,[20,94,103,125,130,132,135,142,145,146]],[1709502797,[11,105,114,126,135,135,141,150,159,162]],[1709502798,[10,95,104,116,119,123,130,130,137,139]],[1709502799,[91,104,109,122,125,127,132,141,161,167]],[1709502800,[1,94,103,110,113,116,120,124,128,130]],[1709502801,[32,103,114,123,125,131,138,146,153,155]],[1709502802,[38,88,106,124,136,143,145,148,152,154]],[1709502803,[45,98,111,124,125,129,133,140,146,148]],[1709502804,[1,91,103,134,135,137,140,150,184,193]],[1709502805,[8,94,107,118,121,125,132,136,138,139]],[1709502806,[0,74,112,132,136,141,148,156,163,165]],[1709502807,[1,95,109,134,144,152,155,160,192,200]],[1709502808,[30,113,121,134,138,140,142,148,158,161]],[1709502809,[22,76,95,104,110,123,124,129,133,134]],[1709502810,[1,100,111,118,122,127,131,134,143,146]],[1709502811,[19,89,107,116,119,124,126,130,135,137]],[1709502812,[26,105,130,134,135,140,147,156,166,169]],[1709502813,[17,83,120,128,135,148,162,172,172,173]],[1709502814,[1,97,114,126,131,133,133,141,169,176]],[1709502815,[36,89,105,132,132,135,142,158,184,191]],[1709502816,[1,51,111,133,141,145,150,152,161,164]],[1709502817,[1,77,112,129,131,135,137,141,177,186]],[1709502818,[0,109,122,132,138,141,144,156,193,203]],[1709502819,[18,51,101,124,126,137,145,149,188,198]],[1709502820,[11,41,99,117,117,118,126,140,155,159]],[1709502821,[17,74,100,113,114,116,117,119,133,137]],[1709502822,[1,27,79,119,119,121,125,127,157,167]],[1709502823,[1,45,94,112,122,126,129,135,144,147]],[1709502824,[2,106,117,129,136,136,137,142,147,149]],[1709502825,[1,72,107,118,121,126,131,145,161,166]],[1709502826,[1,94,110,122,124,129,136,142,166,173]],[1709502827,[1,22,92,118,119,120,132,149,162,165]],[1709502828,[1,72,102,132,135,139,143,147,148,149]],[1709502829,[1,72,99,121,128,131,162,245,313,330]],[1709502830,[11,104,118,128,131,131,135,137,150,154]],[1709502831,[32,77,96,105,107,108,113,118,134,138]],[1709502832,[1,51,110,126,131,137,138,143,146,147]],[1709502833,[12,101,111,117,122,124,126,129,148,153]],[1709502834,[13,96,113,124,125,128,136,144,177,186]],[1709502835,[10,51,105,119,119,123,124,130,141,144]],[1709502836,[21,48,102,117,130,137,138,140,176,186]],[1709502837,[1,94,116,146,146,146,147,159,187,195]],[1709502838,[0,82,104,114,115,126,131,146,164,169]],[1709502839,[1,42,91,115,121,123,126,132,158,167]],[1709502840,[1,53,101,112,114,115,116,117,120,121]],[1709502841,[2,89,119,133,137,144,152,166,192,199]],[1709502842,[1,40,72,118,125,130,137,143,173,183]],[1709502843,[1,50,109,132,132,139,157,169,194,201]],[1709502844,[2,61,102,125,127,136,147,178,184,186]],[1709502845,[1,97,113,122,129,133,134,155,243,265]],[1709502846,[94,112,132,143,146,154,161,166,168,169]],[1709502847,[48,104,122,131,132,138,145,166,202,212]],[1709502848,[1,72,104,115,116,120,128,141,172,180]],[1709502849,[2,96,107,125,127,131,142,163,191,199]],[1709502850,[24,88,115,121,124,128,136,153,180,187]],[1709502851,[18,69,116,136,139,143,145,150,162,165]],[1709502852,[89,110,120,133,136,138,152,188,238,251]],[1709502853,[50,71,102,114,117,117,129,140,142,143]],[1709502854,[19,83,119,132,133,134,136,140,152,156]],[1709502855,[1,47,96,119,128,134,140,309,365,370]],[1709502856,[1,65,101,116,121,127,134,136,139,140]],[1709502857,[3,68,106,128,131,134,142,186,187,188]],[1709502858,[1,70,115,132,137,139,142,152,192,203]],[1709502859,[18,102,117,130,135,144,156,172,184,188]],[1709502860,[4,103,113,124,130,134,135,136,144,147]],[1709502861,[1,23,77,110,113,113,126,128,157,165]],[1709502862,[48,96,121,128,130,133,139,154,176,182]],[1709502863,[1,67,98,105,108,109,117,121,127,129]],[1709502864,[1,3,88,118,121,133,164,183,218,230]],[1709502865,[2,47,96,111,116,120,135,149,205,224]],[1709502866,[1,84,115,138,140,143,148,152,165,169]],[1709502867,[15,91,104,119,126,131,135,143,165,171]],[1709502868,[17,96,110,158,167,170,172,178,184,186]],[1709502869,[4,68,106,117,119,120,123,126,129,130]],[1709502870,[2,66,101,116,121,122,130,143,191,203]],[1709502871,[1,25,87,108,111,115,117,123,126,127]],[1709502872,[2,36,105,131,135,156,168,182,240,256]],[1709502873,[1,44,65,107,110,112,117,133,149,153]],[1709502874,[1,38,87,112,121,124,129,131,133,134]],[1709502875,[11,90,109,120,126,137,149,163,192,200]],[1709502876,[2,66,100,117,119,122,127,134,139,141]],[1709502877,[1,31,94,116,120,128,139,211,276,293]],[1709502878,[4,57,100,131,138,139,146,157,162,164]],[1709502879,[1,5,99,114,119,125,150,181,200,205]],[1709502880,[12,56,94,116,120,125,129,133,165,174]],[1709502881,[1,94,107,113,115,117,129,138,147,150]],[1709502882,[1,91,115,127,133,139,139,178,189,192]],[1709502883,[1,83,115,141,146,150,153,158,160,161]],[1709502884,[42,102,118,140,142,169,188,190,193,194]],[1709502885,[2,35,111,130,131,133,166,180,213,223]],[1709502886,[1,26,75,113,117,121,125,136,161,169]],[1709502887,[1,36,72,111,121,130,131,133,134,134]],[1709502888,[1,15,61,104,106,118,120,143,181,182]],[1709502889,[1,38,105,121,135,141,143,147,176,184]],[1709502890,[1,31,67,114,122,122,127,137,165,174]],[1709502891,[9,99,114,120,122,127,131,132,138,140]],[1709502892,[1,22,48,89,105,106,113,126,170,188]],[1709502893,[1,23,100,134,136,138,140,153,169,172]],[1709502894,[1,32,68,119,134,137,152,166,179,184]],[1709502895,[18,92,115,139,144,161,181,189,217,224]],[1709502896,[1,18,86,108,111,121,130,135,159,168]],[1709502897,[1,38,64,104,108,118,121,129,133,133]],[1709502898,[2,93,106,122,124,125,128,138,194,208]],[1709502899,[1,42,65,106,114,126,128,130,178,194]],[1709502900,[1,80,103,116,118,124,159,217,324,351]],[1709502901,[2,40,74,111,120,120,129,162,176,179]],[1709502902,[2,65,100,119,124,125,126,129,160,169]],[1709502903,[0,33,96,113,120,129,138,206,286,307]],[1709502904,[1,35,87,111,111,122,136,164,176,178]],[1709502905,[1,19,95,119,120,121,123,137,141,141]],[1709502906,[1,38,96,114,126,130,135,151,180,189]],[1709502907,[1,53,104,124,125,129,145,161,163,164]],[1709502908,[6,83,111,120,121,123,125,126,128,129]],[1709502909,[2,94,119,138,141,141,146,151,151,152]],[1709502910,[2,54,106,125,138,142,144,146,160,164]],[1709502911,[2,31,79,108,110,110,116,128,197,219]],[1709502912,[4,55,89,128,131,134,138,144,147,149]],[1709502913,[2,38,83,119,131,141,142,152,184,192]],[1709502914,[1,23,91,116,119,122,126,131,165,177]],[1709502915,[2,30,89,114,119,122,127,135,155,162]],[1709502916,[2,51,101,119,120,120,123,130,134,135]],[1709502917,[2,24,99,113,123,134,137,143,170,179]],[1709502918,[1,106,115,130,131,134,143,156,188,196]],[1709502919,[2,87,114,140,141,144,157,198,230,239]],[1709502920,[1,31,84,117,122,124,145,164,189,194]],[1709502921,[3,84,105,113,114,119,140,146,172,179]],[1709502922,[2,24,75,124,127,130,131,137,139,139]],[1709502923,[3,68,101,125,125,130,133,134,190,205]],[1709502924,[1,39,76,104,106,110,113,121,129,131]],[1709502925,[2,16,69,115,118,119,130,132,145,150]],[1709502926,[1,6,43,82,98,107,115,127,145,147]],[1709502927,[1,22,94,121,123,135,159,170,191,198]],[1709502928,[2,64,116,125,129,143,157,192,199,201]],[1709502929,[1,25,52,111,116,120,122,140,194,216]],[1709502930,[1,65,105,114,118,124,129,150,171,177]],[1709502931,[3,31,86,128,132,145,186,220,228,230]],[1709502932,[1,21,66,112,115,122,140,178,236,254]],[1709502933,[1,51,101,121,125,128,131,144,182,192]],[1709502934,[2,99,121,138,142,161,175,181,191,194]],[1709502935,[2,57,105,144,146,151,169,179,200,206]],[1709502936,[1,18,95,110,117,132,137,146,155,157]],[1709502937,[1,20,101,128,128,131,137,185,202,205]],[1709502938,[1,35,106,119,123,137,219,249,256,257]],[1709502939,[1,23,54,106,121,124,134,162,171,172]],[1709502940,[4,96,114,121,124,126,127,129,145,150]],[1709502941,[6,80,101,111,111,113,119,152,192,203]],[1709502942,[3,74,111,123,127,135,139,160,169,172]],[1709502943,[2,63,104,118,124,126,131,149,161,165]],[1709502944,[2,79,129,147,161,188,191,203,216,220]],[1709502945,[1,16,96,116,119,133,146,169,200,209]],[1709502946,[5,49,107,118,124,133,145,163,165,166]],[1709502947,[1,54,80,100,106,108,154,186,193,195]],[1709502948,[2,18,86,126,140,144,151,194,218,223]],[1709502949,[1,22,70,113,113,115,124,134,151,157]],[1709502950,[2,44,68,116,120,131,139,172,190,193]],[1709502951,[2,63,103,114,118,123,131,141,150,153]],[1709502952,[1,19,65,107,120,123,126,133,140,142]],[1709502953,[1,12,67,98,107,111,120,134,157,167]],[1709502954,[1,15,45,84,86,109,117,120,149,166]],[1709502955,[1,16,86,106,107,108,117,121,168,186]],[1709502956,[2,23,56,114,125,129,134,150,186,199]],[1709502957,[1,19,48,98,105,108,112,123,151,160]],[1709502958,[3,30,62,122,127,132,139,152,182,191]],[1709502959,[1,25,97,114,118,123,128,136,147,151]],[1709502960,[1,28,73,119,128,132,136,155,178,184]],[1709502961,[1,69,116,127,128,129,130,171,179,181]],[1709502962,[3,83,118,136,140,144,150,171,236,253]],[1709502963,[2,30,91,115,119,124,127,149,181,190]],[1709502964,[2,2,86,122,136,138,143,159,179,186]],[1709502965,[1,38,74,102,114,115,121,130,173,188]],[1709502966,[15,93,110,123,131,136,139,146,166,171]],[1709502967,[1,77,107,119,121,125,135,137,150,154]],[1709502968,[1,25,90,119,122,127,129,184,316,359]],[1709502969,[1,12,55,109,110,122,122,146,178,187]],[1709502970,[4,42,97,115,119,129,136,137,141,143]],[1709502971,[1,23,83,115,118,119,124,143,155,157]],[1709502972,[2,74,107,121,126,126,127,145,227,248]],[1709502973,[5,39,103,122,127,128,129,149,156,158]],[1709502974,[9,27,69,91,108,121,124,128,131,132]]]);
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([[1709502729,[25,25,0]],[1709502730,[1,0,1]],[1709502731,[25,25,0]],[1709502732,[1,1,0]],[1709502733,[51,17,34]],[1709502734,[3,3,0]],[1709502735,[6,5,1]],[1709502736,[9,9,0]],[1709502737,[11,10,1]],[1709502738,[13,12,1]],[1709502739,[18,16,2]],[1709502740,[19,18,1]],[1709502741,[24,19,5]],[1709502742,[26,18,8]],[1709502743,[27,18,9]],[1709502744,[32,17,15]],[1709502745,[34,18,16]],[1709502746,[37,16,21]],[1709502747,[39,16,23]],[1709502748,[43,18,25]],[1709502749,[44,17,27]],[1709502750,[48,17,31]],[1709502751,[51,13,38]],[1709502752,[54,17,37]],[1709502753,[56,16,40]],[1709502754,[60,18,42]],[1709502755,[61,18,43]],[1709502756,[65,17,48]],[1709502757,[67,16,51]],[1709502758,[70,17,53]],[1709502759,[74,17,57]],[1709502760,[76,18,58]],[1709502761,[80,18,62]],[1709502762,[81,20,61]],[1709502763,[84,19,65]],[1709502764,[87,17,70]],[1709502765,[91,16,75]],[1709502766,[92,19,73]],[1709502767,[97,16,81]],[1709502768,[98,20,78]],[1709502769,[102,19,83]],[1709502770,[104,17,87]],[1709502771,[107,16,91]],[1709502772,[109,18,91]],[1709502773,[114,26,88]],[1709502774,[115,17,98]],[1709502775,[118,21,97]],[1709502776,[121,23,98]],[1709502777,[124,21,103]],[1709502778,[126,21,105]],[1709502779,[129,21,108]],[1709502780,[133,18,115]],[1709502781,[134,20,114]],[1709502782,[138,18,120]],[1709502783,[141,17,124]],[1709502784,[144,20,124]],[1709502785,[146,21,125]],[1709502786,[149,26,123]],[1709502787,[151,17,134]],[1709502788,[155,24,131]],[1709502789,[157,17,140]],[1709502790,[160,19,141]],[1709502791,[164,18,146]],[1709502792,[165,17,148]],[1709502793,[170,19,151]],[1709502794,[172,17,155]],[1709502795,[174,23,151]],[1709502796,[176,18,158]],[1709502797,[181,16,165]],[1709502798,[183,19,164]],[1709502799,[185,18,167]],[1709502800,[189,21,168]],[1709502801,[191,17,174]],[1709502802,[195,17,178]],[1709502803,[197,17,180]],[1709502804,[198,19,179]],[1709502805,[204,19,185]],[1709502806,[204,16,188]],[1709502807,[208,19,189]],[1709502808,[211,17,194]],[1709502809,[213,20,193]],[1709502810,[217,18,199]],[1709502811,[220,19,201]],[1709502812,[222,19,203]],[1709502813,[224,19,205]],[1709502814,[228,18,210]],[1709502815,[230,17,213]],[1709502816,[234,23,211]],[1709502817,[235,20,215]],[1709502818,[239,19,220]],[1709502819,[243,20,223]],[1709502820,[244,23,221]],[1709502821,[248,20,228]],[1709502822,[250,25,225]],[1709502823,[253,24,229]],[1709502824,[255,20,235]],[1709502825,[259,19,240]],[1709502826,[262,19,243]],[1709502827,[265,28,237]],[1709502828,[266,17,249]],[1709502829,[270,22,248]],[1709502830,[272,21,251]],[1709502831,[276,20,256]],[1709502832,[278,22,256]],[1709502833,[282,20,262]],[1709502834,[284,19,265]],[1709502835,[285,20,265]],[1709502836,[291,22,269]],[1709502837,[292,16,276]],[1709502838,[295,21,274]],[1709502839,[298,28,270]],[1709502840,[301,21,280]],[1709502841,[303,17,286]],[1709502842,[306,25,281]],[1709502843,[309,21,288]],[1709502844,[313,20,293]],[1709502845,[314,18,296]],[1709502846,[318,16,302]],[1709502847,[320,16,304]],[1709502848,[323,19,304]],[1709502849,[326,18,308]],[1709502850,[330,19,311]],[1709502851,[332,16,316]],[1709502852,[334,15,319]],[1709502853,[337,16,321]],[1709502854,[340,18,322]],[1709502855,[340,25,315]],[1709502856,[340,22,318]],[1709502857,[340,20,320]],[1709502858,[340,19,321]],[1709502859,[340,17,323]],[1709502860,[340,18,322]],[1709502861,[340,22,318]],[1709502862,[340,15,325]],[1709502863,[340,22,318]],[1709502864,[340,25,315]],[1709502865,[340,26,314]],[1709502866,[340,19,321]],[1709502867,[340,18,322]],[1709502868,[340,17,323]],[1709502869,[340,22,318]],[1709502870,[340,21,319]],[1709502871,[340,24,316]],[1709502872,[340,23,317]],[1709502873,[340,27,313]],[1709502874,[340,23,317]],[1709502875,[340,19,321]],[1709502876,[340,21,319]],[1709502877,[340,22,318]],[1709502878,[340,25,315]],[1709502879,[340,22,318]],[1709502880,[340,23,317]],[1709502881,[340,20,320]],[1709502882,[340,21,319]],[1709502883,[340,18,322]],[1709502884,[340,17,323]],[1709502885,[340,23,317]],[1709502886,[340,26,314]],[1709502887,[340,24,316]],[1709502888,[340,36,304]],[1709502889,[340,23,317]],[1709502890,[340,26,314]],[1709502891,[340,18,322]],[1709502892,[340,36,304]],[1709502893,[340,28,312]],[1709502894,[340,26,314]],[1709502895,[340,18,322]],[1709502896,[340,28,312]],[1709502897,[340,27,313]],[1709502898,[340,19,321]],[1709502899,[340,25,315]],[1709502900,[340,20,320]],[1709502901,[340,28,312]],[1709502902,[340,22,318]],[1709502903,[340,25,315]],[1709502904,[340,25,315]],[1709502905,[340,25,315]],[1709502906,[340,27,313]],[1709502907,[340,24,316]],[1709502908,[340,21,319]],[1709502909,[340,16,324]],[1709502910,[340,20,320]],[1709502911,[340,25,315]],[1709502912,[340,27,313]],[1709502913,[340,20,320]],[1709502914,[340,26,314]],[1709502915,[340,27,313]],[1709502916,[340,24,316]],[1709502917,[340,25,315]],[1709502918,[340,19,321]],[1709502919,[340,19,321]],[1709502920,[340,29,311]],[1709502921,[340,20,320]],[1709502922,[340,27,313]],[1709502923,[340,21,319]],[1709502924,[340,26,314]],[1709502925,[340,36,304]],[1709502926,[340,38,302]],[1709502927,[340,24,316]],[1709502928,[340,21,319]],[1709502929,[340,31,309]],[1709502930,[340,23,317]],[1709502931,[340,25,315]],[1709502932,[340,30,310]],[1709502933,[340,19,321]],[1709502934,[340,17,323]],[1709502935,[340,21,319]],[1709502936,[340,28,312]],[1709502937,[340,24,316]],[1709502938,[340,27,313]],[1709502939,[340,26,314]],[1709502940,[340,20,320]],[1709502941,[340,21,319]],[1709502942,[340,20,320]],[1709502943,[340,23,317]],[1709502944,[340,20,320]],[1709502945,[340,23,317]],[1709502946,[340,23,317]],[1709502947,[340,22,318]],[1709502948,[340,25,315]],[1709502949,[340,31,309]],[1709502950,[340,26,314]],[1709502951,[340,22,318]],[1709502952,[340,28,312]],[1709502953,[340,32,308]],[1709502954,[340,36,304]],[1709502955,[340,29,311]],[1709502956,[340,30,310]],[1709502957,[340,36,304]],[1709502958,[340,25,315]],[1709502959,[340,26,314]],[1709502960,[340,27,313]],[1709502961,[340,22,318]],[1709502962,[340,19,321]],[1709502963,[340,27,313]],[1709502964,[340,28,312]],[1709502965,[340,28,312]],[1709502966,[340,17,323]],[1709502967,[340,21,319]],[1709502968,[340,31,309]],[1709502969,[340,27,313]],[1709502970,[340,23,317]],[1709502971,[340,28,312]],[1709502972,[340,19,321]],[1709502973,[340,22,318]],[1709502974,[163,13,150]]]);
var requestsChart = new Highcharts.StockChart({
chart: {
renderTo: 'requests',
zoomType: 'x',
marginBottom: 60
},
credits: { enabled: false },
legend: {
enabled: true,
floating: true,
y: -65,
borderWidth: 0,
itemStyle: { fontWeight: "normal" },
symbolRadius: 0
},
title: { text: 'A title to let highcharts reserve the place for the title set later' },
navigator: {
maskInside: false
},
rangeSelector: {
buttonSpacing: 0,
buttonTheme: {
fill: '#CFC9C6',
padding: 1,
stroke: '#000000',
'stroke-width': 0.25,
style: {