-
Notifications
You must be signed in to change notification settings - Fork 928
/
index.html
1245 lines (1175 loc) · 104 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-11 00:49:25 GMT</span>
</span>
<span class="simulation-information-item">
<span class="simulation-information-label">Duration: </span>
<span>4m 9s </span>
</span>
<span class="simulation-tooltip simulation-information-item description" title="Description" data-content="Rinha de Backend - 2024/Q1: Crébito - erick-oda-rust">
<span class="simulation-information-label">Description: </span>
<span>Rinha de Backend - 2024/Q1: Crébito - erick-oda-rust</span>
</span>
</div>
</div>
</div>
</div>
<div id="statistics_table_container">
<div id="stats" class="statistics extensible-geant collapsed">
<div class="title">
<div id="statistics_title" class="title_base"><span class="title_base_stats">Stats</span><span class="expand-table">Fixed height</span><span id="toggle-stats" class="toggle-table"></span><span class="collapse-table">Full size</span></div>
<div class="right">
<button class="statistics-button expand-all-button">Expand all groups</button>
<button class="statistics-button collapse-all-button">Collapse all groups</button>
<button id="statistics_full_screen" class="statistics-button" onclick="openStatisticsTableModal()"><img alt="Fullscreen" src="style/fullscreen.svg"></button>
</div>
</div>
<div class="scrollable">
<table id="container_statistics_head" class="statistics-in extensible-geant">
<thead>
<tr>
<th rowspan="2" id="col-1" class="header sortable sorted-up"><span>Requests</span></th>
<th colspan="5" class="header"><span class="executions">Executions</span></th>
<th colspan="8" class="header"><span class="response-time">Response Time (ms)</span></th>
</tr>
<tr>
<th id="col-2" class="header sortable"><span>Total</span></th>
<th id="col-3" class="header sortable"><span>OK</span></th>
<th id="col-4" class="header sortable"><span>KO</span></th>
<th id="col-5" class="header sortable"><span>% KO</span></th>
<th id="col-6" class="header sortable"><span><abbr title="Count of events per second">Cnt/s</abbr></span></th>
<th id="col-7" class="header sortable"><span>Min</span></th>
<th id="col-8" class="header sortable"><span>50th pct</span></th>
<th id="col-9" class="header sortable"><span>75th pct</span></th>
<th id="col-10" class="header sortable"><span>95th pct</span></th>
<th id="col-11" class="header sortable"><span>99th pct</span></th>
<th id="col-12" class="header sortable"><span>Max</span></th>
<th id="col-13" class="header sortable"><span>Mean</span></th>
<th id="col-14" class="header sortable"><span><abbr title="Standard Deviation">Std Dev</abbr></span></th>
</tr>
</thead>
<tbody></tbody>
</table>
<table id="container_statistics_body" class="statistics-in extensible-geant">
<tbody></tbody>
</table>
</div>
</div>
</div>
<dialog id="statistics_table_modal" class="statistics-table-modal">
<div class="statistics-table-modal-header"><button class="button-modal" onclick="closeStatisticsTableModal()"><img alt="Close" src="style/close.svg"></button></div>
<div class="statistics-table-modal-container">
<div id="statistics_table_modal_content" class="statistics-table-modal-content"></div>
</div>
</dialog>
<script>
function openStatisticsTableModal () {
const statsTable = document.getElementById("stats");
const statsTableModal = document.getElementById("statistics_table_modal");
const fullScreenButton = document.getElementById("statistics_full_screen");
fullScreenButton.disabled = true;
if (typeof statsTableModal.showModal === "function") {
const statsTableModalContent = document.getElementById("statistics_table_modal_content");
statsTableModalContent.innerHTML = "";
statsTableModalContent.appendChild(statsTable);
statsTableModal.showModal();
statsTableModal.addEventListener("close", function () {
const container = document.getElementById("statistics_table_container");
container.appendChild(statsTable);
fullScreenButton.disabled = false;
});
} else {
const incompatibleBrowserVersionMessage = document.createElement("div");
incompatibleBrowserVersionMessage.innerText = "Sorry, the <dialog> API is not supported by this browser.";
statsTable.insertBefore(incompatibleBrowserVersionMessage, statsTable.children[0]);
}
}
function closeStatisticsTableModal () {
const statsTableModal = document.getElementById("statistics_table_modal");
statsTableModal.close();
}
</script>
<div class="statistics extensible-geant collapsed">
<div class="title">
Errors
</div>
<table id="container_errors" class="statistics-in extensible-geant">
<thead>
<tr>
<th id="error-col-1" class="header sortable"><span>Error</span></th>
<th id="error-col-2" class="header sortable"><span>Count</span></th>
<th id="error-col-3" class="header sortable"><span>Percentage</span></th>
</tr>
</thead>
<tbody>
<tr>
<td class="error-col-1 total ko">j.i.IOException: Premature close<span class="value" style="display:none">0</span></td>
<td class="value error-col-2 total ko">31832</td>
<td class="value error-col-3 total ko">80.378 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">jmesPath(saldo).find.ConsistenciaSaldoLimite - Transação, Limite ultrapassado!<span class="value" style="display:none">1</span></td>
<td class="value error-col-2 total ko">7731</td>
<td class="value error-col-3 total ko">19.521 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">jmesPath(ultimas_transacoes[0].descricao).find.is(danada), but actually found toma<span class="value" style="display:none">2</span></td>
<td class="value error-col-2 total ko">16</td>
<td class="value error-col-3 total ko">0.04 %</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">3</span></td>
<td class="value error-col-2 total ko">10</td>
<td class="value error-col-3 total ko">0.025 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">jmesPath(ultimas_transacoes[0].descricao).find.is(devolve), but actually found toma<span class="value" style="display:none">4</span></td>
<td class="value error-col-2 total ko">4</td>
<td class="value error-col-3 total ko">0.01 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">jmesPath(ultimas_transacoes[0].descricao).find.is(danada), but actually found validacao<span class="value" style="display:none">5</span></td>
<td class="value error-col-2 total ko">4</td>
<td class="value error-col-3 total ko">0.01 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">jmesPath(saldo.total).find.is(0), but actually found 50<span class="value" style="display:none">6</span></td>
<td class="value error-col-2 total ko">2</td>
<td class="value error-col-3 total ko">0.005 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">jmesPath(saldo.limite).find.is(500000), but actually found 10000000<span class="value" style="display:none">7</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(ultimas_transacoes[0].descricao).find.is(devolve), but actually found validacao<span class="value" style="display:none">8</span></td>
<td class="value error-col-2 total ko">1</td>
<td class="value error-col-3 total ko">0.003 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">jmesPath(saldo.total).find.is(-25), but actually found 25<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.limite).find.is(1000000), but actually found 80000<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>
</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: [
[1710118166000,0],[1710118167000,0],[1710118168000,0],[1710118169000,0],[1710118170000,1],[1710118171000,2],[1710118172000,2],[1710118173000,4],[1710118174000,4],[1710118175000,5],[1710118176000,6],[1710118177000,7],[1710118178000,8],[1710118179000,8],[1710118180000,10],[1710118181000,10],[1710118182000,12],[1710118183000,12],[1710118184000,14],[1710118185000,14],[1710118186000,15],[1710118187000,16],[1710118188000,17],[1710118189000,17],[1710118190000,19],[1710118191000,20],[1710118192000,20],[1710118193000,22],[1710118194000,22],[1710118195000,23],[1710118196000,25],[1710118197000,25],[1710118198000,26],[1710118199000,26],[1710118200000,28],[1710118201000,29],[1710118202000,30],[1710118203000,30],[1710118204000,32],[1710118205000,32],[1710118206000,33],[1710118207000,34],[1710118208000,35],[1710118209000,36],[1710118210000,37],[1710118211000,38],[1710118212000,39],[1710118213000,39],[1710118214000,41],[1710118215000,41],[1710118216000,43],[1710118217000,43],[1710118218000,44],[1710118219000,45],[1710118220000,46],[1710118221000,47],[1710118222000,48],[1710118223000,48],[1710118224000,50],[1710118225000,50],[1710118226000,52],[1710118227000,52],[1710118228000,53],[1710118229000,54],[1710118230000,56],[1710118231000,55],[1710118232000,70],[1710118233000,82],[1710118234000,95],[1710118235000,106],[1710118236000,122],[1710118237000,141],[1710118238000,155],[1710118239000,175],[1710118240000,197],[1710118241000,206],[1710118242000,208],[1710118243000,205],[1710118244000,198],[1710118245000,202],[1710118246000,203],[1710118247000,203],[1710118248000,206],[1710118249000,207],[1710118250000,202],[1710118251000,208],[1710118252000,208],[1710118253000,210],[1710118254000,202],[1710118255000,203],[1710118256000,206],[1710118257000,213],[1710118258000,215],[1710118259000,211],[1710118260000,207],[1710118261000,208],[1710118262000,212],[1710118263000,212],[1710118264000,215],[1710118265000,218],[1710118266000,212],[1710118267000,223],[1710118268000,222],[1710118269000,222],[1710118270000,225],[1710118271000,229],[1710118272000,225],[1710118273000,229],[1710118274000,227],[1710118275000,242],[1710118276000,245],[1710118277000,254],[1710118278000,262],[1710118279000,266],[1710118280000,275],[1710118281000,271],[1710118282000,270],[1710118283000,275],[1710118284000,278],[1710118285000,278],[1710118286000,272],[1710118287000,264],[1710118288000,258],[1710118289000,267],[1710118290000,272],[1710118291000,276],[1710118292000,279],[1710118293000,280],[1710118294000,277],[1710118295000,278],[1710118296000,274],[1710118297000,276],[1710118298000,277],[1710118299000,279],[1710118300000,278],[1710118301000,271],[1710118302000,271],[1710118303000,266],[1710118304000,267],[1710118305000,269],[1710118306000,270],[1710118307000,274],[1710118308000,265],[1710118309000,275],[1710118310000,275],[1710118311000,280],[1710118312000,271],[1710118313000,278],[1710118314000,277],[1710118315000,273],[1710118316000,277],[1710118317000,272],[1710118318000,278],[1710118319000,276],[1710118320000,274],[1710118321000,275],[1710118322000,270],[1710118323000,273],[1710118324000,274],[1710118325000,277],[1710118326000,272],[1710118327000,264],[1710118328000,260],[1710118329000,266],[1710118330000,266],[1710118331000,263],[1710118332000,262],[1710118333000,268],[1710118334000,260],[1710118335000,263],[1710118336000,264],[1710118337000,265],[1710118338000,268],[1710118339000,263],[1710118340000,260],[1710118341000,259],[1710118342000,260],[1710118343000,263],[1710118344000,260],[1710118345000,263],[1710118346000,267],[1710118347000,267],[1710118348000,265],[1710118349000,266],[1710118350000,268],[1710118351000,270],[1710118352000,266],[1710118353000,274],[1710118354000,272],[1710118355000,272],[1710118356000,283],[1710118357000,288],[1710118358000,284],[1710118359000,282],[1710118360000,284],[1710118361000,275],[1710118362000,263],[1710118363000,257],[1710118364000,259],[1710118365000,254],[1710118366000,261],[1710118367000,263],[1710118368000,263],[1710118369000,263],[1710118370000,267],[1710118371000,259],[1710118372000,259],[1710118373000,267],[1710118374000,267],[1710118375000,270],[1710118376000,274],[1710118377000,265],[1710118378000,264],[1710118379000,265],[1710118380000,266],[1710118381000,266],[1710118382000,254],[1710118383000,257],[1710118384000,248],[1710118385000,248],[1710118386000,261],[1710118387000,268],[1710118388000,272],[1710118389000,278],[1710118390000,279],[1710118391000,263],[1710118392000,262],[1710118393000,260],[1710118394000,258],[1710118395000,256],[1710118396000,245],[1710118397000,260],[1710118398000,263],[1710118399000,259],[1710118400000,266],[1710118401000,271],[1710118402000,276],[1710118403000,274],[1710118404000,275],[1710118405000,270],[1710118406000,256],[1710118407000,256],[1710118408000,246],[1710118409000,246],[1710118410000,256],[1710118411000,154],[1710118412000,124],[1710118413000,94],[1710118414000,69],[1710118415000,41]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#68b65c',
name: 'débitos',
data: [
[1710118166000,0],[1710118167000,0],[1710118168000,0],[1710118169000,0],[1710118170000,1],[1710118171000,2],[1710118172000,4],[1710118173000,6],[1710118174000,7],[1710118175000,9],[1710118176000,11],[1710118177000,13],[1710118178000,15],[1710118179000,16],[1710118180000,19],[1710118181000,20],[1710118182000,22],[1710118183000,24],[1710118184000,25],[1710118185000,28],[1710118186000,29],[1710118187000,31],[1710118188000,33],[1710118189000,35],[1710118190000,37],[1710118191000,38],[1710118192000,40],[1710118193000,42],[1710118194000,44],[1710118195000,46],[1710118196000,47],[1710118197000,50],[1710118198000,51],[1710118199000,53],[1710118200000,55],[1710118201000,57],[1710118202000,60],[1710118203000,61],[1710118204000,63],[1710118205000,64],[1710118206000,66],[1710118207000,69],[1710118208000,69],[1710118209000,71],[1710118210000,74],[1710118211000,74],[1710118212000,77],[1710118213000,79],[1710118214000,80],[1710118215000,82],[1710118216000,84],[1710118217000,86],[1710118218000,88],[1710118219000,89],[1710118220000,92],[1710118221000,93],[1710118222000,95],[1710118223000,97],[1710118224000,98],[1710118225000,101],[1710118226000,102],[1710118227000,104],[1710118228000,106],[1710118229000,108],[1710118230000,110],[1710118231000,112],[1710118232000,124],[1710118233000,165],[1710118234000,197],[1710118235000,231],[1710118236000,268],[1710118237000,310],[1710118238000,354],[1710118239000,415],[1710118240000,461],[1710118241000,486],[1710118242000,484],[1710118243000,485],[1710118244000,503],[1710118245000,499],[1710118246000,500],[1710118247000,507],[1710118248000,507],[1710118249000,509],[1710118250000,511],[1710118251000,513],[1710118252000,515],[1710118253000,519],[1710118254000,522],[1710118255000,526],[1710118256000,529],[1710118257000,526],[1710118258000,527],[1710118259000,532],[1710118260000,543],[1710118261000,544],[1710118262000,542],[1710118263000,544],[1710118264000,542],[1710118265000,547],[1710118266000,556],[1710118267000,543],[1710118268000,549],[1710118269000,539],[1710118270000,547],[1710118271000,548],[1710118272000,553],[1710118273000,552],[1710118274000,559],[1710118275000,547],[1710118276000,541],[1710118277000,534],[1710118278000,524],[1710118279000,524],[1710118280000,527],[1710118281000,519],[1710118282000,529],[1710118283000,527],[1710118284000,529],[1710118285000,529],[1710118286000,528],[1710118287000,537],[1710118288000,542],[1710118289000,536],[1710118290000,535],[1710118291000,530],[1710118292000,531],[1710118293000,529],[1710118294000,533],[1710118295000,543],[1710118296000,544],[1710118297000,551],[1710118298000,540],[1710118299000,534],[1710118300000,542],[1710118301000,547],[1710118302000,553],[1710118303000,544],[1710118304000,551],[1710118305000,544],[1710118306000,547],[1710118307000,545],[1710118308000,550],[1710118309000,541],[1710118310000,551],[1710118311000,545],[1710118312000,542],[1710118313000,547],[1710118314000,543],[1710118315000,545],[1710118316000,550],[1710118317000,541],[1710118318000,541],[1710118319000,547],[1710118320000,544],[1710118321000,552],[1710118322000,556],[1710118323000,554],[1710118324000,553],[1710118325000,550],[1710118326000,553],[1710118327000,557],[1710118328000,560],[1710118329000,557],[1710118330000,552],[1710118331000,547],[1710118332000,553],[1710118333000,542],[1710118334000,546],[1710118335000,536],[1710118336000,543],[1710118337000,538],[1710118338000,550],[1710118339000,555],[1710118340000,556],[1710118341000,549],[1710118342000,549],[1710118343000,548],[1710118344000,557],[1710118345000,556],[1710118346000,549],[1710118347000,555],[1710118348000,556],[1710118349000,554],[1710118350000,549],[1710118351000,552],[1710118352000,548],[1710118353000,547],[1710118354000,556],[1710118355000,557],[1710118356000,547],[1710118357000,539],[1710118358000,538],[1710118359000,542],[1710118360000,542],[1710118361000,550],[1710118362000,559],[1710118363000,562],[1710118364000,563],[1710118365000,559],[1710118366000,560],[1710118367000,551],[1710118368000,555],[1710118369000,551],[1710118370000,548],[1710118371000,555],[1710118372000,553],[1710118373000,547],[1710118374000,544],[1710118375000,545],[1710118376000,541],[1710118377000,541],[1710118378000,551],[1710118379000,545],[1710118380000,548],[1710118381000,548],[1710118382000,553],[1710118383000,559],[1710118384000,562],[1710118385000,568],[1710118386000,556],[1710118387000,552],[1710118388000,546],[1710118389000,546],[1710118390000,538],[1710118391000,554],[1710118392000,554],[1710118393000,560],[1710118394000,557],[1710118395000,561],[1710118396000,568],[1710118397000,553],[1710118398000,552],[1710118399000,558],[1710118400000,548],[1710118401000,547],[1710118402000,547],[1710118403000,552],[1710118404000,555],[1710118405000,561],[1710118406000,567],[1710118407000,566],[1710118408000,564],[1710118409000,571],[1710118410000,558],[1710118411000,331],[1710118412000,248],[1710118413000,180],[1710118414000,115],[1710118415000,52]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#f15b4f',
name: 'extratos',
data: [
[1710118166000,0],[1710118167000,0],[1710118168000,0],[1710118169000,0],[1710118170000,1],[1710118171000,2],[1710118172000,1],[1710118173000,1],[1710118174000,1],[1710118175000,1],[1710118176000,2],[1710118177000,1],[1710118178000,2],[1710118179000,2],[1710118180000,1],[1710118181000,2],[1710118182000,2],[1710118183000,2],[1710118184000,2],[1710118185000,2],[1710118186000,2],[1710118187000,2],[1710118188000,3],[1710118189000,2],[1710118190000,3],[1710118191000,2],[1710118192000,3],[1710118193000,2],[1710118194000,3],[1710118195000,3],[1710118196000,3],[1710118197000,3],[1710118198000,3],[1710118199000,3],[1710118200000,3],[1710118201000,4],[1710118202000,3],[1710118203000,3],[1710118204000,4],[1710118205000,3],[1710118206000,4],[1710118207000,4],[1710118208000,4],[1710118209000,4],[1710118210000,4],[1710118211000,4],[1710118212000,4],[1710118213000,4],[1710118214000,4],[1710118215000,4],[1710118216000,5],[1710118217000,4],[1710118218000,5],[1710118219000,5],[1710118220000,4],[1710118221000,5],[1710118222000,5],[1710118223000,5],[1710118224000,5],[1710118225000,5],[1710118226000,5],[1710118227000,5],[1710118228000,6],[1710118229000,5],[1710118230000,6],[1710118231000,5],[1710118232000,6],[1710118233000,7],[1710118234000,9],[1710118235000,10],[1710118236000,12],[1710118237000,13],[1710118238000,14],[1710118239000,17],[1710118240000,19],[1710118241000,20],[1710118242000,20],[1710118243000,20],[1710118244000,20],[1710118245000,19],[1710118246000,18],[1710118247000,19],[1710118248000,17],[1710118249000,17],[1710118250000,20],[1710118251000,18],[1710118252000,19],[1710118253000,17],[1710118254000,18],[1710118255000,18],[1710118256000,19],[1710118257000,17],[1710118258000,19],[1710118259000,18],[1710118260000,15],[1710118261000,17],[1710118262000,18],[1710118263000,18],[1710118264000,17],[1710118265000,14],[1710118266000,15],[1710118267000,15],[1710118268000,17],[1710118269000,17],[1710118270000,17],[1710118271000,16],[1710118272000,18],[1710118273000,19],[1710118274000,19],[1710118275000,19],[1710118276000,20],[1710118277000,22],[1710118278000,21],[1710118279000,19],[1710118280000,20],[1710118281000,22],[1710118282000,27],[1710118283000,27],[1710118284000,26],[1710118285000,27],[1710118286000,28],[1710118287000,32],[1710118288000,35],[1710118289000,40],[1710118290000,41],[1710118291000,38],[1710118292000,39],[1710118293000,33],[1710118294000,30],[1710118295000,26],[1710118296000,25],[1710118297000,23],[1710118298000,27],[1710118299000,30],[1710118300000,26],[1710118301000,27],[1710118302000,26],[1710118303000,32],[1710118304000,31],[1710118305000,37],[1710118306000,32],[1710118307000,32],[1710118308000,28],[1710118309000,25],[1710118310000,25],[1710118311000,24],[1710118312000,25],[1710118313000,26],[1710118314000,29],[1710118315000,28],[1710118316000,24],[1710118317000,29],[1710118318000,27],[1710118319000,26],[1710118320000,27],[1710118321000,24],[1710118322000,25],[1710118323000,24],[1710118324000,21],[1710118325000,22],[1710118326000,26],[1710118327000,26],[1710118328000,28],[1710118329000,28],[1710118330000,33],[1710118331000,34],[1710118332000,34],[1710118333000,41],[1710118334000,45],[1710118335000,47],[1710118336000,42],[1710118337000,40],[1710118338000,33],[1710118339000,33],[1710118340000,35],[1710118341000,39],[1710118342000,37],[1710118343000,35],[1710118344000,34],[1710118345000,30],[1710118346000,30],[1710118347000,29],[1710118348000,28],[1710118349000,29],[1710118350000,29],[1710118351000,26],[1710118352000,28],[1710118353000,25],[1710118354000,23],[1710118355000,20],[1710118356000,21],[1710118357000,24],[1710118358000,26],[1710118359000,24],[1710118360000,25],[1710118361000,26],[1710118362000,25],[1710118363000,26],[1710118364000,27],[1710118365000,30],[1710118366000,30],[1710118367000,30],[1710118368000,31],[1710118369000,32],[1710118370000,36],[1710118371000,37],[1710118372000,39],[1710118373000,34],[1710118374000,35],[1710118375000,35],[1710118376000,36],[1710118377000,36],[1710118378000,36],[1710118379000,39],[1710118380000,35],[1710118381000,34],[1710118382000,35],[1710118383000,35],[1710118384000,35],[1710118385000,35],[1710118386000,34],[1710118387000,31],[1710118388000,29],[1710118389000,27],[1710118390000,29],[1710118391000,32],[1710118392000,35],[1710118393000,31],[1710118394000,32],[1710118395000,34],[1710118396000,34],[1710118397000,34],[1710118398000,36],[1710118399000,33],[1710118400000,34],[1710118401000,33],[1710118402000,28],[1710118403000,25],[1710118404000,21],[1710118405000,20],[1710118406000,24],[1710118407000,29],[1710118408000,31],[1710118409000,34],[1710118410000,30],[1710118411000,21],[1710118412000,19],[1710118413000,14],[1710118414000,9],[1710118415000,2]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FFDD00',
name: 'validações',
data: [
[1710118166000,0],[1710118167000,0],[1710118168000,0],[1710118169000,5],[1710118170000,5],[1710118171000,0],[1710118172000,0],[1710118173000,0],[1710118174000,0],[1710118175000,0],[1710118176000,0],[1710118177000,0],[1710118178000,0],[1710118179000,0],[1710118180000,0],[1710118181000,0],[1710118182000,0],[1710118183000,0],[1710118184000,0],[1710118185000,0],[1710118186000,0],[1710118187000,0],[1710118188000,0],[1710118189000,0],[1710118190000,0],[1710118191000,0],[1710118192000,0],[1710118193000,0],[1710118194000,0],[1710118195000,0],[1710118196000,0],[1710118197000,0],[1710118198000,0],[1710118199000,0],[1710118200000,0],[1710118201000,0],[1710118202000,0],[1710118203000,0],[1710118204000,0],[1710118205000,0],[1710118206000,0],[1710118207000,0],[1710118208000,0],[1710118209000,0],[1710118210000,0],[1710118211000,0],[1710118212000,0],[1710118213000,0],[1710118214000,0],[1710118215000,0],[1710118216000,0],[1710118217000,0],[1710118218000,0],[1710118219000,0],[1710118220000,0],[1710118221000,0],[1710118222000,0],[1710118223000,0],[1710118224000,0],[1710118225000,0],[1710118226000,0],[1710118227000,0],[1710118228000,0],[1710118229000,0],[1710118230000,0],[1710118231000,0],[1710118232000,0],[1710118233000,0],[1710118234000,0],[1710118235000,0],[1710118236000,0],[1710118237000,0],[1710118238000,0],[1710118239000,0],[1710118240000,0],[1710118241000,0],[1710118242000,0],[1710118243000,0],[1710118244000,0],[1710118245000,0],[1710118246000,0],[1710118247000,0],[1710118248000,0],[1710118249000,0],[1710118250000,0],[1710118251000,0],[1710118252000,0],[1710118253000,0],[1710118254000,0],[1710118255000,0],[1710118256000,0],[1710118257000,0],[1710118258000,0],[1710118259000,0],[1710118260000,0],[1710118261000,0],[1710118262000,0],[1710118263000,0],[1710118264000,0],[1710118265000,0],[1710118266000,0],[1710118267000,0],[1710118268000,0],[1710118269000,0],[1710118270000,0],[1710118271000,0],[1710118272000,0],[1710118273000,0],[1710118274000,0],[1710118275000,0],[1710118276000,0],[1710118277000,0],[1710118278000,0],[1710118279000,0],[1710118280000,0],[1710118281000,0],[1710118282000,0],[1710118283000,0],[1710118284000,0],[1710118285000,0],[1710118286000,0],[1710118287000,0],[1710118288000,0],[1710118289000,0],[1710118290000,0],[1710118291000,0],[1710118292000,0],[1710118293000,0],[1710118294000,0],[1710118295000,0],[1710118296000,0],[1710118297000,0],[1710118298000,0],[1710118299000,0],[1710118300000,0],[1710118301000,0],[1710118302000,0],[1710118303000,0],[1710118304000,0],[1710118305000,0],[1710118306000,0],[1710118307000,0],[1710118308000,0],[1710118309000,0],[1710118310000,0],[1710118311000,0],[1710118312000,0],[1710118313000,0],[1710118314000,0],[1710118315000,0],[1710118316000,0],[1710118317000,0],[1710118318000,0],[1710118319000,0],[1710118320000,0],[1710118321000,0],[1710118322000,0],[1710118323000,0],[1710118324000,0],[1710118325000,0],[1710118326000,0],[1710118327000,0],[1710118328000,0],[1710118329000,0],[1710118330000,0],[1710118331000,0],[1710118332000,0],[1710118333000,0],[1710118334000,0],[1710118335000,0],[1710118336000,0],[1710118337000,0],[1710118338000,0],[1710118339000,0],[1710118340000,0],[1710118341000,0],[1710118342000,0],[1710118343000,0],[1710118344000,0],[1710118345000,0],[1710118346000,0],[1710118347000,0],[1710118348000,0],[1710118349000,0],[1710118350000,0],[1710118351000,0],[1710118352000,0],[1710118353000,0],[1710118354000,0],[1710118355000,0],[1710118356000,0],[1710118357000,0],[1710118358000,0],[1710118359000,0],[1710118360000,0],[1710118361000,0],[1710118362000,0],[1710118363000,0],[1710118364000,0],[1710118365000,0],[1710118366000,0],[1710118367000,0],[1710118368000,0],[1710118369000,0],[1710118370000,0],[1710118371000,0],[1710118372000,0],[1710118373000,0],[1710118374000,0],[1710118375000,0],[1710118376000,0],[1710118377000,0],[1710118378000,0],[1710118379000,0],[1710118380000,0],[1710118381000,0],[1710118382000,0],[1710118383000,0],[1710118384000,0],[1710118385000,0],[1710118386000,0],[1710118387000,0],[1710118388000,0],[1710118389000,0],[1710118390000,0],[1710118391000,0],[1710118392000,0],[1710118393000,0],[1710118394000,0],[1710118395000,0],[1710118396000,0],[1710118397000,0],[1710118398000,0],[1710118399000,0],[1710118400000,0],[1710118401000,0],[1710118402000,0],[1710118403000,0],[1710118404000,0],[1710118405000,0],[1710118406000,0],[1710118407000,0],[1710118408000,0],[1710118409000,0],[1710118410000,0],[1710118411000,0],[1710118412000,0],[1710118413000,0],[1710118414000,0],[1710118415000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00D5FF',
name: 'validação HTTP 404',
data: [
[1710118166000,0],[1710118167000,0],[1710118168000,0],[1710118169000,1],[1710118170000,0],[1710118171000,0],[1710118172000,0],[1710118173000,0],[1710118174000,0],[1710118175000,0],[1710118176000,0],[1710118177000,0],[1710118178000,0],[1710118179000,0],[1710118180000,0],[1710118181000,0],[1710118182000,0],[1710118183000,0],[1710118184000,0],[1710118185000,0],[1710118186000,0],[1710118187000,0],[1710118188000,0],[1710118189000,0],[1710118190000,0],[1710118191000,0],[1710118192000,0],[1710118193000,0],[1710118194000,0],[1710118195000,0],[1710118196000,0],[1710118197000,0],[1710118198000,0],[1710118199000,0],[1710118200000,0],[1710118201000,0],[1710118202000,0],[1710118203000,0],[1710118204000,0],[1710118205000,0],[1710118206000,0],[1710118207000,0],[1710118208000,0],[1710118209000,0],[1710118210000,0],[1710118211000,0],[1710118212000,0],[1710118213000,0],[1710118214000,0],[1710118215000,0],[1710118216000,0],[1710118217000,0],[1710118218000,0],[1710118219000,0],[1710118220000,0],[1710118221000,0],[1710118222000,0],[1710118223000,0],[1710118224000,0],[1710118225000,0],[1710118226000,0],[1710118227000,0],[1710118228000,0],[1710118229000,0],[1710118230000,0],[1710118231000,0],[1710118232000,0],[1710118233000,0],[1710118234000,0],[1710118235000,0],[1710118236000,0],[1710118237000,0],[1710118238000,0],[1710118239000,0],[1710118240000,0],[1710118241000,0],[1710118242000,0],[1710118243000,0],[1710118244000,0],[1710118245000,0],[1710118246000,0],[1710118247000,0],[1710118248000,0],[1710118249000,0],[1710118250000,0],[1710118251000,0],[1710118252000,0],[1710118253000,0],[1710118254000,0],[1710118255000,0],[1710118256000,0],[1710118257000,0],[1710118258000,0],[1710118259000,0],[1710118260000,0],[1710118261000,0],[1710118262000,0],[1710118263000,0],[1710118264000,0],[1710118265000,0],[1710118266000,0],[1710118267000,0],[1710118268000,0],[1710118269000,0],[1710118270000,0],[1710118271000,0],[1710118272000,0],[1710118273000,0],[1710118274000,0],[1710118275000,0],[1710118276000,0],[1710118277000,0],[1710118278000,0],[1710118279000,0],[1710118280000,0],[1710118281000,0],[1710118282000,0],[1710118283000,0],[1710118284000,0],[1710118285000,0],[1710118286000,0],[1710118287000,0],[1710118288000,0],[1710118289000,0],[1710118290000,0],[1710118291000,0],[1710118292000,0],[1710118293000,0],[1710118294000,0],[1710118295000,0],[1710118296000,0],[1710118297000,0],[1710118298000,0],[1710118299000,0],[1710118300000,0],[1710118301000,0],[1710118302000,0],[1710118303000,0],[1710118304000,0],[1710118305000,0],[1710118306000,0],[1710118307000,0],[1710118308000,0],[1710118309000,0],[1710118310000,0],[1710118311000,0],[1710118312000,0],[1710118313000,0],[1710118314000,0],[1710118315000,0],[1710118316000,0],[1710118317000,0],[1710118318000,0],[1710118319000,0],[1710118320000,0],[1710118321000,0],[1710118322000,0],[1710118323000,0],[1710118324000,0],[1710118325000,0],[1710118326000,0],[1710118327000,0],[1710118328000,0],[1710118329000,0],[1710118330000,0],[1710118331000,0],[1710118332000,0],[1710118333000,0],[1710118334000,0],[1710118335000,0],[1710118336000,0],[1710118337000,0],[1710118338000,0],[1710118339000,0],[1710118340000,0],[1710118341000,0],[1710118342000,0],[1710118343000,0],[1710118344000,0],[1710118345000,0],[1710118346000,0],[1710118347000,0],[1710118348000,0],[1710118349000,0],[1710118350000,0],[1710118351000,0],[1710118352000,0],[1710118353000,0],[1710118354000,0],[1710118355000,0],[1710118356000,0],[1710118357000,0],[1710118358000,0],[1710118359000,0],[1710118360000,0],[1710118361000,0],[1710118362000,0],[1710118363000,0],[1710118364000,0],[1710118365000,0],[1710118366000,0],[1710118367000,0],[1710118368000,0],[1710118369000,0],[1710118370000,0],[1710118371000,0],[1710118372000,0],[1710118373000,0],[1710118374000,0],[1710118375000,0],[1710118376000,0],[1710118377000,0],[1710118378000,0],[1710118379000,0],[1710118380000,0],[1710118381000,0],[1710118382000,0],[1710118383000,0],[1710118384000,0],[1710118385000,0],[1710118386000,0],[1710118387000,0],[1710118388000,0],[1710118389000,0],[1710118390000,0],[1710118391000,0],[1710118392000,0],[1710118393000,0],[1710118394000,0],[1710118395000,0],[1710118396000,0],[1710118397000,0],[1710118398000,0],[1710118399000,0],[1710118400000,0],[1710118401000,0],[1710118402000,0],[1710118403000,0],[1710118404000,0],[1710118405000,0],[1710118406000,0],[1710118407000,0],[1710118408000,0],[1710118409000,0],[1710118410000,0],[1710118411000,0],[1710118412000,0],[1710118413000,0],[1710118414000,0],[1710118415000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00FF00',
name: 'validação concorrência saldo - 0',
data: [
[1710118166000,0],[1710118167000,0],[1710118168000,1],[1710118169000,0],[1710118170000,0],[1710118171000,0],[1710118172000,0],[1710118173000,0],[1710118174000,0],[1710118175000,0],[1710118176000,0],[1710118177000,0],[1710118178000,0],[1710118179000,0],[1710118180000,0],[1710118181000,0],[1710118182000,0],[1710118183000,0],[1710118184000,0],[1710118185000,0],[1710118186000,0],[1710118187000,0],[1710118188000,0],[1710118189000,0],[1710118190000,0],[1710118191000,0],[1710118192000,0],[1710118193000,0],[1710118194000,0],[1710118195000,0],[1710118196000,0],[1710118197000,0],[1710118198000,0],[1710118199000,0],[1710118200000,0],[1710118201000,0],[1710118202000,0],[1710118203000,0],[1710118204000,0],[1710118205000,0],[1710118206000,0],[1710118207000,0],[1710118208000,0],[1710118209000,0],[1710118210000,0],[1710118211000,0],[1710118212000,0],[1710118213000,0],[1710118214000,0],[1710118215000,0],[1710118216000,0],[1710118217000,0],[1710118218000,0],[1710118219000,0],[1710118220000,0],[1710118221000,0],[1710118222000,0],[1710118223000,0],[1710118224000,0],[1710118225000,0],[1710118226000,0],[1710118227000,0],[1710118228000,0],[1710118229000,0],[1710118230000,0],[1710118231000,0],[1710118232000,0],[1710118233000,0],[1710118234000,0],[1710118235000,0],[1710118236000,0],[1710118237000,0],[1710118238000,0],[1710118239000,0],[1710118240000,0],[1710118241000,0],[1710118242000,0],[1710118243000,0],[1710118244000,0],[1710118245000,0],[1710118246000,0],[1710118247000,0],[1710118248000,0],[1710118249000,0],[1710118250000,0],[1710118251000,0],[1710118252000,0],[1710118253000,0],[1710118254000,0],[1710118255000,0],[1710118256000,0],[1710118257000,0],[1710118258000,0],[1710118259000,0],[1710118260000,0],[1710118261000,0],[1710118262000,0],[1710118263000,0],[1710118264000,0],[1710118265000,0],[1710118266000,0],[1710118267000,0],[1710118268000,0],[1710118269000,0],[1710118270000,0],[1710118271000,0],[1710118272000,0],[1710118273000,0],[1710118274000,0],[1710118275000,0],[1710118276000,0],[1710118277000,0],[1710118278000,0],[1710118279000,0],[1710118280000,0],[1710118281000,0],[1710118282000,0],[1710118283000,0],[1710118284000,0],[1710118285000,0],[1710118286000,0],[1710118287000,0],[1710118288000,0],[1710118289000,0],[1710118290000,0],[1710118291000,0],[1710118292000,0],[1710118293000,0],[1710118294000,0],[1710118295000,0],[1710118296000,0],[1710118297000,0],[1710118298000,0],[1710118299000,0],[1710118300000,0],[1710118301000,0],[1710118302000,0],[1710118303000,0],[1710118304000,0],[1710118305000,0],[1710118306000,0],[1710118307000,0],[1710118308000,0],[1710118309000,0],[1710118310000,0],[1710118311000,0],[1710118312000,0],[1710118313000,0],[1710118314000,0],[1710118315000,0],[1710118316000,0],[1710118317000,0],[1710118318000,0],[1710118319000,0],[1710118320000,0],[1710118321000,0],[1710118322000,0],[1710118323000,0],[1710118324000,0],[1710118325000,0],[1710118326000,0],[1710118327000,0],[1710118328000,0],[1710118329000,0],[1710118330000,0],[1710118331000,0],[1710118332000,0],[1710118333000,0],[1710118334000,0],[1710118335000,0],[1710118336000,0],[1710118337000,0],[1710118338000,0],[1710118339000,0],[1710118340000,0],[1710118341000,0],[1710118342000,0],[1710118343000,0],[1710118344000,0],[1710118345000,0],[1710118346000,0],[1710118347000,0],[1710118348000,0],[1710118349000,0],[1710118350000,0],[1710118351000,0],[1710118352000,0],[1710118353000,0],[1710118354000,0],[1710118355000,0],[1710118356000,0],[1710118357000,0],[1710118358000,0],[1710118359000,0],[1710118360000,0],[1710118361000,0],[1710118362000,0],[1710118363000,0],[1710118364000,0],[1710118365000,0],[1710118366000,0],[1710118367000,0],[1710118368000,0],[1710118369000,0],[1710118370000,0],[1710118371000,0],[1710118372000,0],[1710118373000,0],[1710118374000,0],[1710118375000,0],[1710118376000,0],[1710118377000,0],[1710118378000,0],[1710118379000,0],[1710118380000,0],[1710118381000,0],[1710118382000,0],[1710118383000,0],[1710118384000,0],[1710118385000,0],[1710118386000,0],[1710118387000,0],[1710118388000,0],[1710118389000,0],[1710118390000,0],[1710118391000,0],[1710118392000,0],[1710118393000,0],[1710118394000,0],[1710118395000,0],[1710118396000,0],[1710118397000,0],[1710118398000,0],[1710118399000,0],[1710118400000,0],[1710118401000,0],[1710118402000,0],[1710118403000,0],[1710118404000,0],[1710118405000,0],[1710118406000,0],[1710118407000,0],[1710118408000,0],[1710118409000,0],[1710118410000,0],[1710118411000,0],[1710118412000,0],[1710118413000,0],[1710118414000,0],[1710118415000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#9D00FF',
name: 'validação concorrência transações - c',
data: [
[1710118166000,0],[1710118167000,25],[1710118168000,20],[1710118169000,0],[1710118170000,0],[1710118171000,0],[1710118172000,0],[1710118173000,0],[1710118174000,0],[1710118175000,0],[1710118176000,0],[1710118177000,0],[1710118178000,0],[1710118179000,0],[1710118180000,0],[1710118181000,0],[1710118182000,0],[1710118183000,0],[1710118184000,0],[1710118185000,0],[1710118186000,0],[1710118187000,0],[1710118188000,0],[1710118189000,0],[1710118190000,0],[1710118191000,0],[1710118192000,0],[1710118193000,0],[1710118194000,0],[1710118195000,0],[1710118196000,0],[1710118197000,0],[1710118198000,0],[1710118199000,0],[1710118200000,0],[1710118201000,0],[1710118202000,0],[1710118203000,0],[1710118204000,0],[1710118205000,0],[1710118206000,0],[1710118207000,0],[1710118208000,0],[1710118209000,0],[1710118210000,0],[1710118211000,0],[1710118212000,0],[1710118213000,0],[1710118214000,0],[1710118215000,0],[1710118216000,0],[1710118217000,0],[1710118218000,0],[1710118219000,0],[1710118220000,0],[1710118221000,0],[1710118222000,0],[1710118223000,0],[1710118224000,0],[1710118225000,0],[1710118226000,0],[1710118227000,0],[1710118228000,0],[1710118229000,0],[1710118230000,0],[1710118231000,0],[1710118232000,0],[1710118233000,0],[1710118234000,0],[1710118235000,0],[1710118236000,0],[1710118237000,0],[1710118238000,0],[1710118239000,0],[1710118240000,0],[1710118241000,0],[1710118242000,0],[1710118243000,0],[1710118244000,0],[1710118245000,0],[1710118246000,0],[1710118247000,0],[1710118248000,0],[1710118249000,0],[1710118250000,0],[1710118251000,0],[1710118252000,0],[1710118253000,0],[1710118254000,0],[1710118255000,0],[1710118256000,0],[1710118257000,0],[1710118258000,0],[1710118259000,0],[1710118260000,0],[1710118261000,0],[1710118262000,0],[1710118263000,0],[1710118264000,0],[1710118265000,0],[1710118266000,0],[1710118267000,0],[1710118268000,0],[1710118269000,0],[1710118270000,0],[1710118271000,0],[1710118272000,0],[1710118273000,0],[1710118274000,0],[1710118275000,0],[1710118276000,0],[1710118277000,0],[1710118278000,0],[1710118279000,0],[1710118280000,0],[1710118281000,0],[1710118282000,0],[1710118283000,0],[1710118284000,0],[1710118285000,0],[1710118286000,0],[1710118287000,0],[1710118288000,0],[1710118289000,0],[1710118290000,0],[1710118291000,0],[1710118292000,0],[1710118293000,0],[1710118294000,0],[1710118295000,0],[1710118296000,0],[1710118297000,0],[1710118298000,0],[1710118299000,0],[1710118300000,0],[1710118301000,0],[1710118302000,0],[1710118303000,0],[1710118304000,0],[1710118305000,0],[1710118306000,0],[1710118307000,0],[1710118308000,0],[1710118309000,0],[1710118310000,0],[1710118311000,0],[1710118312000,0],[1710118313000,0],[1710118314000,0],[1710118315000,0],[1710118316000,0],[1710118317000,0],[1710118318000,0],[1710118319000,0],[1710118320000,0],[1710118321000,0],[1710118322000,0],[1710118323000,0],[1710118324000,0],[1710118325000,0],[1710118326000,0],[1710118327000,0],[1710118328000,0],[1710118329000,0],[1710118330000,0],[1710118331000,0],[1710118332000,0],[1710118333000,0],[1710118334000,0],[1710118335000,0],[1710118336000,0],[1710118337000,0],[1710118338000,0],[1710118339000,0],[1710118340000,0],[1710118341000,0],[1710118342000,0],[1710118343000,0],[1710118344000,0],[1710118345000,0],[1710118346000,0],[1710118347000,0],[1710118348000,0],[1710118349000,0],[1710118350000,0],[1710118351000,0],[1710118352000,0],[1710118353000,0],[1710118354000,0],[1710118355000,0],[1710118356000,0],[1710118357000,0],[1710118358000,0],[1710118359000,0],[1710118360000,0],[1710118361000,0],[1710118362000,0],[1710118363000,0],[1710118364000,0],[1710118365000,0],[1710118366000,0],[1710118367000,0],[1710118368000,0],[1710118369000,0],[1710118370000,0],[1710118371000,0],[1710118372000,0],[1710118373000,0],[1710118374000,0],[1710118375000,0],[1710118376000,0],[1710118377000,0],[1710118378000,0],[1710118379000,0],[1710118380000,0],[1710118381000,0],[1710118382000,0],[1710118383000,0],[1710118384000,0],[1710118385000,0],[1710118386000,0],[1710118387000,0],[1710118388000,0],[1710118389000,0],[1710118390000,0],[1710118391000,0],[1710118392000,0],[1710118393000,0],[1710118394000,0],[1710118395000,0],[1710118396000,0],[1710118397000,0],[1710118398000,0],[1710118399000,0],[1710118400000,0],[1710118401000,0],[1710118402000,0],[1710118403000,0],[1710118404000,0],[1710118405000,0],[1710118406000,0],[1710118407000,0],[1710118408000,0],[1710118409000,0],[1710118410000,0],[1710118411000,0],[1710118412000,0],[1710118413000,0],[1710118414000,0],[1710118415000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FF00E1',
name: 'validação concorrência saldo - -25',
data: [
[1710118166000,1],[1710118167000,1],[1710118168000,0],[1710118169000,0],[1710118170000,0],[1710118171000,0],[1710118172000,0],[1710118173000,0],[1710118174000,0],[1710118175000,0],[1710118176000,0],[1710118177000,0],[1710118178000,0],[1710118179000,0],[1710118180000,0],[1710118181000,0],[1710118182000,0],[1710118183000,0],[1710118184000,0],[1710118185000,0],[1710118186000,0],[1710118187000,0],[1710118188000,0],[1710118189000,0],[1710118190000,0],[1710118191000,0],[1710118192000,0],[1710118193000,0],[1710118194000,0],[1710118195000,0],[1710118196000,0],[1710118197000,0],[1710118198000,0],[1710118199000,0],[1710118200000,0],[1710118201000,0],[1710118202000,0],[1710118203000,0],[1710118204000,0],[1710118205000,0],[1710118206000,0],[1710118207000,0],[1710118208000,0],[1710118209000,0],[1710118210000,0],[1710118211000,0],[1710118212000,0],[1710118213000,0],[1710118214000,0],[1710118215000,0],[1710118216000,0],[1710118217000,0],[1710118218000,0],[1710118219000,0],[1710118220000,0],[1710118221000,0],[1710118222000,0],[1710118223000,0],[1710118224000,0],[1710118225000,0],[1710118226000,0],[1710118227000,0],[1710118228000,0],[1710118229000,0],[1710118230000,0],[1710118231000,0],[1710118232000,0],[1710118233000,0],[1710118234000,0],[1710118235000,0],[1710118236000,0],[1710118237000,0],[1710118238000,0],[1710118239000,0],[1710118240000,0],[1710118241000,0],[1710118242000,0],[1710118243000,0],[1710118244000,0],[1710118245000,0],[1710118246000,0],[1710118247000,0],[1710118248000,0],[1710118249000,0],[1710118250000,0],[1710118251000,0],[1710118252000,0],[1710118253000,0],[1710118254000,0],[1710118255000,0],[1710118256000,0],[1710118257000,0],[1710118258000,0],[1710118259000,0],[1710118260000,0],[1710118261000,0],[1710118262000,0],[1710118263000,0],[1710118264000,0],[1710118265000,0],[1710118266000,0],[1710118267000,0],[1710118268000,0],[1710118269000,0],[1710118270000,0],[1710118271000,0],[1710118272000,0],[1710118273000,0],[1710118274000,0],[1710118275000,0],[1710118276000,0],[1710118277000,0],[1710118278000,0],[1710118279000,0],[1710118280000,0],[1710118281000,0],[1710118282000,0],[1710118283000,0],[1710118284000,0],[1710118285000,0],[1710118286000,0],[1710118287000,0],[1710118288000,0],[1710118289000,0],[1710118290000,0],[1710118291000,0],[1710118292000,0],[1710118293000,0],[1710118294000,0],[1710118295000,0],[1710118296000,0],[1710118297000,0],[1710118298000,0],[1710118299000,0],[1710118300000,0],[1710118301000,0],[1710118302000,0],[1710118303000,0],[1710118304000,0],[1710118305000,0],[1710118306000,0],[1710118307000,0],[1710118308000,0],[1710118309000,0],[1710118310000,0],[1710118311000,0],[1710118312000,0],[1710118313000,0],[1710118314000,0],[1710118315000,0],[1710118316000,0],[1710118317000,0],[1710118318000,0],[1710118319000,0],[1710118320000,0],[1710118321000,0],[1710118322000,0],[1710118323000,0],[1710118324000,0],[1710118325000,0],[1710118326000,0],[1710118327000,0],[1710118328000,0],[1710118329000,0],[1710118330000,0],[1710118331000,0],[1710118332000,0],[1710118333000,0],[1710118334000,0],[1710118335000,0],[1710118336000,0],[1710118337000,0],[1710118338000,0],[1710118339000,0],[1710118340000,0],[1710118341000,0],[1710118342000,0],[1710118343000,0],[1710118344000,0],[1710118345000,0],[1710118346000,0],[1710118347000,0],[1710118348000,0],[1710118349000,0],[1710118350000,0],[1710118351000,0],[1710118352000,0],[1710118353000,0],[1710118354000,0],[1710118355000,0],[1710118356000,0],[1710118357000,0],[1710118358000,0],[1710118359000,0],[1710118360000,0],[1710118361000,0],[1710118362000,0],[1710118363000,0],[1710118364000,0],[1710118365000,0],[1710118366000,0],[1710118367000,0],[1710118368000,0],[1710118369000,0],[1710118370000,0],[1710118371000,0],[1710118372000,0],[1710118373000,0],[1710118374000,0],[1710118375000,0],[1710118376000,0],[1710118377000,0],[1710118378000,0],[1710118379000,0],[1710118380000,0],[1710118381000,0],[1710118382000,0],[1710118383000,0],[1710118384000,0],[1710118385000,0],[1710118386000,0],[1710118387000,0],[1710118388000,0],[1710118389000,0],[1710118390000,0],[1710118391000,0],[1710118392000,0],[1710118393000,0],[1710118394000,0],[1710118395000,0],[1710118396000,0],[1710118397000,0],[1710118398000,0],[1710118399000,0],[1710118400000,0],[1710118401000,0],[1710118402000,0],[1710118403000,0],[1710118404000,0],[1710118405000,0],[1710118406000,0],[1710118407000,0],[1710118408000,0],[1710118409000,0],[1710118410000,0],[1710118411000,0],[1710118412000,0],[1710118413000,0],[1710118414000,0],[1710118415000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#AECAEB',
name: 'validação concorrência transações - d',
data: [
[1710118166000,25],[1710118167000,0],[1710118168000,0],[1710118169000,0],[1710118170000,0],[1710118171000,0],[1710118172000,0],[1710118173000,0],[1710118174000,0],[1710118175000,0],[1710118176000,0],[1710118177000,0],[1710118178000,0],[1710118179000,0],[1710118180000,0],[1710118181000,0],[1710118182000,0],[1710118183000,0],[1710118184000,0],[1710118185000,0],[1710118186000,0],[1710118187000,0],[1710118188000,0],[1710118189000,0],[1710118190000,0],[1710118191000,0],[1710118192000,0],[1710118193000,0],[1710118194000,0],[1710118195000,0],[1710118196000,0],[1710118197000,0],[1710118198000,0],[1710118199000,0],[1710118200000,0],[1710118201000,0],[1710118202000,0],[1710118203000,0],[1710118204000,0],[1710118205000,0],[1710118206000,0],[1710118207000,0],[1710118208000,0],[1710118209000,0],[1710118210000,0],[1710118211000,0],[1710118212000,0],[1710118213000,0],[1710118214000,0],[1710118215000,0],[1710118216000,0],[1710118217000,0],[1710118218000,0],[1710118219000,0],[1710118220000,0],[1710118221000,0],[1710118222000,0],[1710118223000,0],[1710118224000,0],[1710118225000,0],[1710118226000,0],[1710118227000,0],[1710118228000,0],[1710118229000,0],[1710118230000,0],[1710118231000,0],[1710118232000,0],[1710118233000,0],[1710118234000,0],[1710118235000,0],[1710118236000,0],[1710118237000,0],[1710118238000,0],[1710118239000,0],[1710118240000,0],[1710118241000,0],[1710118242000,0],[1710118243000,0],[1710118244000,0],[1710118245000,0],[1710118246000,0],[1710118247000,0],[1710118248000,0],[1710118249000,0],[1710118250000,0],[1710118251000,0],[1710118252000,0],[1710118253000,0],[1710118254000,0],[1710118255000,0],[1710118256000,0],[1710118257000,0],[1710118258000,0],[1710118259000,0],[1710118260000,0],[1710118261000,0],[1710118262000,0],[1710118263000,0],[1710118264000,0],[1710118265000,0],[1710118266000,0],[1710118267000,0],[1710118268000,0],[1710118269000,0],[1710118270000,0],[1710118271000,0],[1710118272000,0],[1710118273000,0],[1710118274000,0],[1710118275000,0],[1710118276000,0],[1710118277000,0],[1710118278000,0],[1710118279000,0],[1710118280000,0],[1710118281000,0],[1710118282000,0],[1710118283000,0],[1710118284000,0],[1710118285000,0],[1710118286000,0],[1710118287000,0],[1710118288000,0],[1710118289000,0],[1710118290000,0],[1710118291000,0],[1710118292000,0],[1710118293000,0],[1710118294000,0],[1710118295000,0],[1710118296000,0],[1710118297000,0],[1710118298000,0],[1710118299000,0],[1710118300000,0],[1710118301000,0],[1710118302000,0],[1710118303000,0],[1710118304000,0],[1710118305000,0],[1710118306000,0],[1710118307000,0],[1710118308000,0],[1710118309000,0],[1710118310000,0],[1710118311000,0],[1710118312000,0],[1710118313000,0],[1710118314000,0],[1710118315000,0],[1710118316000,0],[1710118317000,0],[1710118318000,0],[1710118319000,0],[1710118320000,0],[1710118321000,0],[1710118322000,0],[1710118323000,0],[1710118324000,0],[1710118325000,0],[1710118326000,0],[1710118327000,0],[1710118328000,0],[1710118329000,0],[1710118330000,0],[1710118331000,0],[1710118332000,0],[1710118333000,0],[1710118334000,0],[1710118335000,0],[1710118336000,0],[1710118337000,0],[1710118338000,0],[1710118339000,0],[1710118340000,0],[1710118341000,0],[1710118342000,0],[1710118343000,0],[1710118344000,0],[1710118345000,0],[1710118346000,0],[1710118347000,0],[1710118348000,0],[1710118349000,0],[1710118350000,0],[1710118351000,0],[1710118352000,0],[1710118353000,0],[1710118354000,0],[1710118355000,0],[1710118356000,0],[1710118357000,0],[1710118358000,0],[1710118359000,0],[1710118360000,0],[1710118361000,0],[1710118362000,0],[1710118363000,0],[1710118364000,0],[1710118365000,0],[1710118366000,0],[1710118367000,0],[1710118368000,0],[1710118369000,0],[1710118370000,0],[1710118371000,0],[1710118372000,0],[1710118373000,0],[1710118374000,0],[1710118375000,0],[1710118376000,0],[1710118377000,0],[1710118378000,0],[1710118379000,0],[1710118380000,0],[1710118381000,0],[1710118382000,0],[1710118383000,0],[1710118384000,0],[1710118385000,0],[1710118386000,0],[1710118387000,0],[1710118388000,0],[1710118389000,0],[1710118390000,0],[1710118391000,0],[1710118392000,0],[1710118393000,0],[1710118394000,0],[1710118395000,0],[1710118396000,0],[1710118397000,0],[1710118398000,0],[1710118399000,0],[1710118400000,0],[1710118401000,0],[1710118402000,0],[1710118403000,0],[1710118404000,0],[1710118405000,0],[1710118406000,0],[1710118407000,0],[1710118408000,0],[1710118409000,0],[1710118410000,0],[1710118411000,0],[1710118412000,0],[1710118413000,0],[1710118414000,0],[1710118415000,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: ['47', '142', '237', '332', '427', '522', '616', '711', '806', '901', '996', '1091', '1185', '1280', '1375', '1470', '1565', '1660', '1754', '1849', '1944', '2039', '2134', '2229', '2323', '2418', '2513', '2608', '2703', '2797', '2892', '2987', '3082', '3177', '3272', '3366', '3461', '3556', '3651', '3746', '3841', '3935', '4030', '4125', '4220', '4315', '4410', '4504', '4599', '4694', '4789', '4884', '4979', '5073', '5168', '5263', '5358', '5453', '5548', '5642', '5737', '5832', '5927', '6022', '6117', '6211', '6306', '6401', '6496', '6591', '6686', '6780', '6875', '6970', '7065', '7160', '7254', '7349', '7444', '7539', '7634', '7729', '7823', '7918', '8013', '8108', '8203', '8298', '8392', '8487', '8582', '8677', '8772', '8867', '8961', '9056', '9151', '9246', '9341', '9436'],
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: [
7.2,0.03,0.05,0.1,0.07,0.07,0.06,0.08,0.05,0.05,0.07,0.06,0.05,0.06,0.06,0.06,0.02,0.03,0.03,0.03,0.06,0.17,0.24,0.14,0.15,0.38,0.67,0.95,0.95,0.88,1.17,1.2,1.03,1.1,1.25,1.27,1.14,1.36,1.22,1.18,0.92,0.66,0.53,0.62,0.84,0.92,0.65,0.57,0.57,0.38,0.17,0.16,0.29,0.41,0.37,0.33,0.25,0.23,0.11,0.08,0.06,0.06,0.05,0.05,0.04,0.03,0.03,0.03,0.03,0.04,0.03,0.04,0.07,0.06,0.09,0.06,0.07,0.07,0.05,0.07,0.06,0.06,0.04,0.04,0.02,0.03,0.02,0.02,0.01,0.01,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: [
53.47,0.01,0.02,0.02,0.03,0.02,0.02,0.01,0.01,0.01,0.01,0.01,0.01,0.02,0.02,0.02,0.01,0.0,0.0,0.0,0.0,0.01,0.04,0.05,0.06,0.05,0.09,0.13,0.24,0.33,0.43,0.4,0.37,0.36,0.44,0.44,0.47,0.49,0.42,0.36,0.41,0.41,0.35,0.37,0.26,0.27,0.3,0.27,0.33,0.25,0.25,0.22,0.15,0.13,0.12,0.13,0.13,0.11,0.13,0.08,0.09,0.09,0.06,0.06,0.04,0.04,0.03,0.02,0.01,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
],
tooltip: { yDecimals: 0, ySuffix: 'ms' }
}
]
});
responsetimeDistributionChart.setTitle({
text: '<span class="chart_title">Response Time Distribution</span>',
useHTML: true
});
var responsetimepercentilesovertimeokPercentiles = unpack([[1710118166,[164,358,365,375,377,381,383,387,391,393]],[1710118167,null],[1710118168,[8,72,183,283,285,286,287,287,290,291]],[1710118169,null],[1710118170,[1,1,3,4,5,6,6,6,40,56]],[1710118171,[4,7,11,12,12,13,13,13,13,14]],[1710118172,[3,5,5,5,6,6,7,7,7,8]],[1710118173,[3,5,5,5,5,5,6,7,7,8]],[1710118174,[2,3,4,5,5,5,5,5,5,5]],[1710118175,[2,4,4,4,4,5,5,6,6,6]],[1710118176,[2,4,4,4,5,6,8,9,9,10]],[1710118177,[2,3,4,4,4,4,5,5,5,5]],[1710118178,[1,3,4,4,4,4,4,5,5,6]],[1710118179,[1,2,3,4,4,4,4,4,4,4]],[1710118180,[1,2,3,3,4,4,4,4,4,4]],[1710118181,[1,2,3,4,4,4,5,5,6,7]],[1710118182,[1,2,2,2,3,4,4,4,4,5]],[1710118183,[1,1,3,3,4,4,4,7,9,10]],[1710118184,[1,1,2,3,3,3,4,4,6,7]],[1710118185,[1,2,2,4,4,4,4,4,5,5]],[1710118186,[1,1,2,3,3,3,3,4,4,5]],[1710118187,[1,1,2,3,3,3,4,4,4,5]],[1710118188,[1,1,2,3,3,3,3,4,4,4]],[1710118189,[1,1,2,3,3,3,4,4,4,5]],[1710118190,[0,1,3,3,4,4,4,5,8,10]],[1710118191,[1,1,2,3,3,3,3,3,5,7]],[1710118192,[0,1,1,3,3,3,3,4,9,14]],[1710118193,[1,1,2,3,3,3,4,4,7,10]],[1710118194,[1,1,3,3,4,4,5,5,8,10]],[1710118195,[1,1,2,4,4,4,5,5,5,5]],[1710118196,[1,1,3,3,4,4,5,7,9,11]],[1710118197,[0,1,2,3,3,3,3,4,4,4]],[1710118198,[0,1,1,3,3,3,4,6,9,9]],[1710118199,[1,1,1,3,3,3,3,4,11,21]],[1710118200,[1,1,2,3,3,3,3,4,6,7]],[1710118201,[1,1,2,3,3,3,4,4,13,16]],[1710118202,[1,1,2,3,3,4,4,4,8,15]],[1710118203,[0,1,2,3,3,3,3,4,5,7]],[1710118204,[0,1,2,3,3,3,3,3,4,6]],[1710118205,[1,1,2,3,3,3,3,3,7,7]],[1710118206,[1,1,1,3,3,3,3,4,4,7]],[1710118207,[0,1,2,2,3,3,4,7,13,13]],[1710118208,[1,1,1,3,3,3,4,4,6,11]],[1710118209,[1,1,2,3,3,3,3,4,6,7]],[1710118210,[1,1,3,3,3,3,4,5,6,11]],[1710118211,[1,1,2,3,3,4,4,5,5,6]],[1710118212,[1,1,3,3,3,3,4,4,5,9]],[1710118213,[1,1,3,3,3,3,4,4,5,5]],[1710118214,[1,1,2,3,3,3,4,4,4,5]],[1710118215,[1,1,3,3,3,4,4,5,5,6]],[1710118216,[1,1,2,3,3,4,4,5,5,11]],[1710118217,[0,1,2,3,3,3,4,4,4,5]],[1710118218,[0,1,2,3,3,4,4,5,6,7]],[1710118219,[1,1,2,3,3,4,4,5,7,9]],[1710118220,[0,1,2,3,3,3,3,3,5,10]],[1710118221,[1,1,1,3,3,3,3,4,5,11]],[1710118222,[1,1,2,3,3,3,4,4,7,10]],[1710118223,[1,1,1,3,3,3,4,5,7,10]],[1710118224,[0,1,2,3,3,3,3,5,57,69]],[1710118225,[1,1,1,3,3,3,3,4,5,9]],[1710118226,[1,1,2,3,4,4,4,5,7,9]],[1710118227,[1,1,2,3,4,4,4,5,6,12]],[1710118228,[0,1,2,3,4,4,4,5,5,7]],[1710118229,[1,2,3,4,5,5,5,6,11,15]],[1710118230,[1,1,2,4,4,4,4,6,12,14]],[1710118231,[1,1,2,3,3,4,4,4,4,5]],[1710118232,[0,3,126,360,506,621,743,903,1193,1371]],[1710118233,[152,356,419,824,935,1055,1182,1630,1854,1995]],[1710118234,[352,575,724,1290,1370,1639,1846,2079,2487,2642]],[1710118235,[640,885,1027,1969,2229,2387,2485,2700,3227,3331]],[1710118236,[953,1212,1348,3136,3294,3362,3575,3812,4069,4557]],[1710118237,[1323,1466,1937,3882,4074,4323,4574,4981,5301,5463]],[1710118238,[1527,2016,2280,4695,4942,5415,5714,5978,6134,6696]],[1710118239,[2016,2488,2805,5752,5933,6085,6495,6623,7064,7448]],[1710118240,[2494,2877,3253,6200,6442,6850,7008,7123,7727,7836]],[1710118241,[3049,3195,3357,6481,6711,6834,7025,7469,7926,8673]],[1710118242,[3134,3296,3444,6851,6902,7012,7165,7441,8244,8793]],[1710118243,[3170,3469,3578,6871,6983,7075,7167,7371,7592,7704]],[1710118244,[3086,3300,3541,6996,7179,7209,7358,7551,7696,7888]],[1710118245,[3299,3395,3557,6992,7185,7328,7469,7585,7898,8025]],[1710118246,[3220,3392,3568,7144,7238,7324,7483,7630,8075,8100]],[1710118247,[3288,3483,3654,7286,7394,7558,7591,7824,8385,8469]],[1710118248,[3385,3548,3676,7269,7376,7552,7677,7805,8170,8180]],[1710118249,[3242,3593,3783,7468,7501,7566,7695,7991,8251,8399]],[1710118250,[3364,3752,3891,7391,7606,7693,7858,8432,9131,9483]],[1710118251,[3377,3651,3804,7268,7480,7601,7683,7861,8509,8558]],[1710118252,[3485,3684,3902,7385,7726,7794,8025,8276,8899,9001]],[1710118253,[3410,3735,3968,7906,7996,8135,8289,8400,8558,8583]],[1710118254,[3505,3677,3899,7867,7901,7995,8116,8265,8557,9148]],[1710118255,[3401,3691,4166,7693,7777,7865,8070,8150,8417,8570]],[1710118256,[3470,3759,3976,7487,7719,7879,8002,8239,8496,8515]],[1710118257,[3873,4002,4187,7187,7290,7501,7623,7785,8529,8766]],[1710118258,[3706,3899,4052,6699,6870,6964,7276,7583,8115,8182]],[1710118259,[3558,3788,4090,6969,6988,7103,7261,7481,7818,7992]],[1710118260,[3089,3738,3943,6796,6902,6993,7089,7329,7518,7572]],[1710118261,[2855,2984,3555,5995,6552,6680,6878,7019,7327,7392]],[1710118262,[2803,2964,3279,5871,6090,6284,6457,6621,6852,7086]],[1710118263,[2856,3082,3199,5980,6027,6187,6354,6570,6607,6690]],[1710118264,[2899,3033,3150,5970,6000,6073,6131,6261,6774,6884]],[1710118265,[2786,2977,3099,5801,5901,5963,6146,6329,6575,7091]],[1710118266,[2687,2845,2967,5693,5787,5866,6168,6301,6580,7164]],[1710118267,[2550,2695,2794,5669,5762,5848,5952,6481,7380,7662]],[1710118268,[2503,2663,2886,3062,3163,3805,5723,6117,6563,6711]],[1710118269,[2704,2784,2858,2943,2982,2998,3085,3171,3265,3403]],[1710118270,[2749,2853,2886,2958,2971,2981,3074,3251,3697,3799]],[1710118271,[2742,2801,2888,2982,2996,3018,3053,3082,3215,3398]],[1710118272,[2798,2902,2997,3085,3095,3137,3165,3186,3256,3281]],[1710118273,[2767,2893,3068,3260,3267,3273,3280,3289,3301,3332]],[1710118274,[2644,2699,3033,3190,3196,3200,3248,3262,3289,3293]],[1710118275,[2346,2473,2760,3335,3355,3366,3375,3389,3447,3479]],[1710118276,[1983,2137,2346,3252,3261,3275,3288,3328,3396,3402]],[1710118277,[1959,2061,2883,2988,3003,3075,3096,3136,3167,3172]],[1710118278,[1945,2163,2440,2943,2952,2959,2969,2977,2996,3037]],[1710118279,[2059,2154,2855,2957,2963,2974,2994,3046,3128,3161]],[1710118280,[2097,2240,2468,3065,3082,3090,3132,3161,3192,3244]],[1710118281,[2281,2395,2536,3099,3144,3156,3172,3192,3276,3381]],[1710118282,[2445,2562,2684,3193,3218,3258,3270,3290,3386,3390]],[1710118283,[2308,2468,2580,3275,3291,3331,3366,3385,3491,3548]],[1710118284,[2253,2374,2584,3384,3387,3396,3451,3469,3482,3485]],[1710118285,[2366,2478,2779,3366,3374,3382,3393,3430,3487,3547]],[1710118286,[2571,2760,3281,3403,3448,3457,3479,3490,3566,3660]],[1710118287,[2670,2796,3079,3446,3465,3483,3497,3555,3575,3582]],[1710118288,[2754,2869,3275,3392,3401,3447,3469,3484,3578,3579]],[1710118289,[2872,2981,3188,3391,3399,3453,3474,3483,3577,3585]],[1710118290,[2882,3030,3093,3564,3568,3577,3581,3590,3690,3766]],[1710118291,[2783,2981,3140,3672,3680,3686,3694,3762,3794,3798]],[1710118292,[2743,2851,2954,3673,3683,3690,3756,3808,3875,3880]],[1710118293,[2490,2657,2784,3588,3596,3601,3665,3680,3700,3763]],[1710118294,[2468,2548,2691,3560,3565,3578,3580,3594,3664,3679]],[1710118295,[2466,2564,3400,3487,3495,3510,3551,3567,3658,3783]],[1710118296,[2398,2494,3299,3459,3467,3480,3491,3552,3574,3594]],[1710118297,[2499,2584,2685,3417,3467,3471,3476,3485,3576,3670]],[1710118298,[2489,2587,2778,3589,3655,3756,3790,3864,3888,3957]],[1710118299,[2482,2595,2783,3783,3792,3802,3853,3867,3888,3981]],[1710118300,[2489,2590,3666,3761,3767,3780,3787,3798,3944,3983]],[1710118301,[2550,2677,3663,3787,3791,3842,3857,3882,3981,4063]],[1710118302,[2589,2694,2837,3702,3752,3773,3782,3790,3983,4079]],[1710118303,[2697,2999,3693,3804,3857,3869,3882,3959,3991,4179]],[1710118304,[2891,2985,3158,3862,3871,3885,3966,3975,3991,3991]],[1710118305,[2850,2971,3094,3883,3967,3993,4071,4085,4173,4184]],[1710118306,[2573,2861,2976,3897,3961,3973,3979,3996,4050,4064]],[1710118307,[2507,2693,3323,3876,3880,3886,3899,3954,3974,3998]],[1710118308,[2585,2696,3663,3752,3765,3779,3791,3857,3883,3900]],[1710118309,[2502,2595,2784,3811,3868,3885,3941,3986,4017,4080]],[1710118310,[2288,2476,3668,3784,3793,3796,3859,3885,3965,3981]],[1710118311,[2298,2504,3765,3932,3970,3982,3994,4075,4138,4158]],[1710118312,[2494,2597,2776,3991,4044,4067,4079,4090,4172,4199]],[1710118313,[2485,2600,2888,3958,3966,3984,3991,4046,4078,4084]],[1710118314,[2571,2670,3308,3870,3881,3892,3945,3970,4083,4091]],[1710118315,[2372,2489,2594,3758,3772,3779,3789,3807,3893,3981]],[1710118316,[2453,2571,3594,3760,3767,3776,3780,3785,3793,3794]],[1710118317,[2581,2677,3563,4173,4186,4195,4247,4274,4335,4581]],[1710118318,[2854,3381,4253,4374,4382,4404,4474,4584,4683,4689]],[1710118319,[3495,3592,3725,4686,4690,4696,4767,4774,4794,4801]],[1710118320,[3649,3768,3881,4834,4852,4861,4872,4894,4992,5076]],[1710118321,[3204,3294,3592,4195,4269,4281,4299,4492,4683,4799]],[1710118322,[3179,3297,4096,4269,4280,4284,4288,4351,4373,4397]],[1710118323,[3274,3374,3492,4183,4187,4199,4264,4286,4378,4381]],[1710118324,[3174,3275,3988,4179,4188,4204,4266,4276,4497,4690]],[1710118325,[2977,3090,3270,4190,4197,4246,4276,4281,4299,4376]],[1710118326,[2980,3102,4159,4272,4279,4285,4290,4326,4498,4584]],[1710118327,[2885,3079,3727,4275,4286,4341,4367,4386,4469,4483]],[1710118328,[3100,3286,3520,4363,4375,4399,4471,4490,4569,4579]],[1710118329,[3375,3488,4038,4484,4495,4563,4574,4584,4681,4767]],[1710118330,[3496,3675,4495,4604,4659,4669,4680,4690,4787,4885]],[1710118331,[3596,3782,4499,4587,4591,4657,4672,4680,4753,4779]],[1710118332,[3587,3685,4379,4500,4557,4578,4585,4597,4710,4772]],[1710118333,[3579,3684,3833,4489,4496,4575,4588,4675,4691,4692]],[1710118334,[3579,3681,4487,4590,4598,4663,4675,4681,4816,4982]],[1710118335,[3497,3669,3791,4579,4590,4599,4667,4684,4756,4781]],[1710118336,[3403,3633,4500,4596,4662,4674,4681,4772,4963,5002]],[1710118337,[3474,3583,3768,4576,4583,4591,4596,4670,4779,4782]],[1710118338,[3279,3392,4192,4388,4430,4482,4496,4572,4605,4658]],[1710118339,[3087,3268,4076,4177,4180,4184,4185,4189,4289,4298]],[1710118340,[3470,3661,4079,4289,4297,4353,4372,4383,4462,4467]],[1710118341,[3363,3490,3679,4397,4458,4465,4479,4481,4580,4584]],[1710118342,[3302,3440,3960,4378,4380,4385,4396,4439,4564,4683]],[1710118343,[3086,3271,3470,4368,4379,4384,4391,4472,4571,4580]],[1710118344,[2999,3191,3331,4266,4280,4285,4294,4370,4399,4477]],[1710118345,[3197,3296,3783,4202,4270,4285,4290,4351,4372,4386]],[1710118346,[3100,3185,3392,4171,4181,4194,4267,4297,4358,4383]],[1710118347,[3086,3187,3476,4147,4169,4180,4193,4278,4404,4582]],[1710118348,[2906,3096,3888,4068,4074,4082,4092,4166,4190,4194]],[1710118349,[2856,2971,3099,3979,3986,3995,4046,4063,4164,4284]],[1710118350,[2888,2991,3085,3984,3991,3996,4058,4072,4089,4096]],[1710118351,[2882,2984,3973,4061,4069,4081,4089,4151,4246,4283]],[1710118352,[2876,3063,3228,4185,4190,4198,4260,4274,4292,4344]],[1710118353,[2890,2997,4094,4268,4276,4280,4285,4294,4364,4389]],[1710118354,[2790,2958,4176,4294,4300,4368,4378,4395,4476,4479]],[1710118355,[2653,2776,2880,4395,4401,4464,4473,4486,4560,4581]],[1710118356,[2675,2768,2875,4289,4298,4438,4470,4490,4578,4596]],[1710118357,[2497,2644,3558,4373,4385,4391,4437,4480,4485,4490]],[1710118358,[2703,2860,4291,4393,4397,4452,4466,4476,4491,4552]],[1710118359,[2766,2876,2985,4296,4335,4372,4387,4418,4566,4569]],[1710118360,[2771,2902,3080,4487,4496,4499,4555,4575,4586,4599]],[1710118361,[2677,2799,4285,4392,4402,4454,4480,4588,4782,4789]],[1710118362,[2467,2603,4169,4270,4281,4289,4325,4386,4563,4783]],[1710118363,[2603,2694,2885,4161,4179,4192,4245,4271,4291,4380]],[1710118364,[2566,2670,2871,4286,4293,4346,4461,4504,4577,4580]],[1710118365,[2657,2861,4387,4497,4543,4559,4581,4586,4639,4640]],[1710118366,[2761,3003,3193,4599,4649,4658,4670,4682,4768,4883]],[1710118367,[2981,3174,4670,4700,4763,4772,4784,4866,4902,5084]],[1710118368,[3175,3271,4489,4589,4593,4667,4700,4771,4804,4871]],[1710118369,[3069,3220,3501,4479,4481,4488,4499,4568,4692,4766]],[1710118370,[3105,3283,4392,4584,4593,4637,4680,4689,4781,4863]],[1710118371,[2985,3159,4170,4290,4344,4361,4384,4390,4484,4504]],[1710118372,[3066,3185,3892,4262,4268,4278,4284,4297,4393,4448]],[1710118373,[3101,3279,3995,4158,4167,4176,4187,4194,4271,4284]],[1710118374,[3096,3265,4090,4257,4275,4286,4295,4363,4399,4480]],[1710118375,[3150,3278,4172,4301,4355,4369,4377,4396,4480,4481]],[1710118376,[3180,3288,3585,4369,4378,4394,4479,4499,4580,4581]],[1710118377,[3480,3654,4492,5019,5083,5114,5172,5199,5296,5367]],[1710118378,[3695,3799,5073,5171,5179,5193,5257,5283,5393,5490]],[1710118379,[3784,4173,5099,5366,5375,5385,5394,5477,5689,5780]],[1710118380,[4093,4193,5193,5295,5302,5382,5401,5475,5494,5495]],[1710118381,[4004,4098,4381,5263,5280,5295,5374,5392,5493,5563]],[1710118382,[3696,3955,4180,5080,5090,5099,5176,5186,5273,5279]],[1710118383,[3675,3797,4989,5095,5166,5179,5193,5257,5377,5392]],[1710118384,[3495,3685,3831,4979,4990,5011,5081,5085,5178,5186]],[1710118385,[3474,3588,4579,4778,4790,4848,4883,4955,4980,4981]],[1710118386,[3574,3800,4084,4772,4790,4871,4887,4958,4990,4994]],[1710118387,[3688,3878,4798,4973,4984,4990,4994,5071,5084,5087]],[1710118388,[3592,3698,3872,5064,5067,5077,5084,5094,5190,5286]],[1710118389,[3501,3654,3842,5082,5090,5135,5179,5186,5237,5366]],[1710118390,[3654,3694,3984,5182,5194,5199,5270,5281,5300,5399]],[1710118391,[3571,3602,5077,5181,5186,5190,5266,5374,5492,5583]],[1710118392,[3482,3687,5257,5394,5468,5477,5494,5581,5707,5783]],[1710118393,[3277,3469,3672,5374,5398,5466,5483,5494,5576,5599]],[1710118394,[3195,3298,5097,5234,5267,5285,5298,5378,5478,5482]],[1710118395,[3196,3383,3781,5196,5271,5283,5362,5396,5491,5572]],[1710118396,[3476,3596,3971,5485,5553,5577,5587,5646,5709,5793]],[1710118397,[3272,3475,3664,5581,5590,5595,5669,5687,5793,5881]],[1710118398,[3180,3395,5390,5595,5654,5675,5688,5792,6071,6157]],[1710118399,[3283,3387,3479,5469,5479,5486,5494,5569,5657,5675]],[1710118400,[3383,3596,5391,5485,5486,5493,5552,5581,5614,5680]],[1710118401,[3400,3661,3786,5396,5447,5478,5481,5530,5578,5586]],[1710118402,[3378,3490,5177,5285,5309,5373,5391,5464,5550,5681]],[1710118403,[3272,3464,3682,5030,5071,5091,5165,5186,5218,5275]],[1710118404,[3200,3483,4894,5088,5100,5164,5191,5269,5386,5396]],[1710118405,[3489,3585,4972,5079,5082,5086,5095,5155,5180,5199]],[1710118406,[3396,3753,4473,5020,5070,5080,5086,5141,5181,5197]],[1710118407,[3688,3796,3973,5089,5096,5151,5177,5268,5331,5480]],[1710118408,[3580,3696,3966,5287,5294,5303,5373,5422,5557,5685]],[1710118409,[3773,3886,4168,5277,5288,5296,5369,5383,5448,5584]],[1710118410,[3781,3989,4292,5188,5201,5288,5357,5377,5393,5394]],[1710118411,[4070,4168,4269,4975,4976,4984,4988,5007,5073,5078]],[1710118412,null],[1710118413,null],[1710118414,null],[1710118415,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([[1710118166,[25,25,0]],[1710118167,[1,0,1]],[1710118168,[25,25,0]],[1710118169,[1,0,1]],[1710118170,[71,33,38]],[1710118171,[3,3,0]],[1710118172,[6,6,0]],[1710118173,[9,9,0]],[1710118174,[11,11,0]],[1710118175,[13,13,0]],[1710118176,[18,18,0]],[1710118177,[19,18,1]],[1710118178,[24,23,1]],[1710118179,[26,24,2]],[1710118180,[27,23,4]],[1710118181,[32,26,6]],[1710118182,[34,25,9]],[1710118183,[37,33,4]],[1710118184,[39,31,8]],[1710118185,[43,35,8]],[1710118186,[44,34,10]],[1710118187,[48,40,8]],[1710118188,[51,40,11]],[1710118189,[54,47,7]],[1710118190,[56,49,7]],[1710118191,[60,47,13]],[1710118192,[61,45,16]],[1710118193,[65,52,13]],[1710118194,[67,54,13]],[1710118195,[70,56,14]],[1710118196,[74,62,12]],[1710118197,[76,63,13]],[1710118198,[80,67,13]],[1710118199,[81,63,18]],[1710118200,[84,72,12]],[1710118201,[87,72,15]],[1710118202,[91,72,19]],[1710118203,[92,74,18]],[1710118204,[96,75,21]],[1710118205,[99,82,17]],[1710118206,[102,79,23]],[1710118207,[104,81,23]],[1710118208,[107,82,25]],[1710118209,[109,93,16]],[1710118210,[114,93,21]],[1710118211,[115,93,22]],[1710118212,[118,94,24]],[1710118213,[121,99,22]],[1710118214,[124,101,23]],[1710118215,[126,106,20]],[1710118216,[129,102,27]],[1710118217,[133,109,24]],[1710118218,[134,106,28]],[1710118219,[139,115,24]],[1710118220,[140,109,31]],[1710118221,[144,110,34]],[1710118222,[146,118,28]],[1710118223,[149,121,28]],[1710118224,[151,123,28]],[1710118225,[155,126,29]],[1710118226,[157,126,31]],[1710118227,[160,129,31]],[1710118228,[164,132,32]],[1710118229,[165,143,22]],[1710118230,[170,137,33]],[1710118231,[172,133,39]],[1710118232,[174,133,41]],[1710118233,[176,136,40]],[1710118234,[181,157,24]],[1710118235,[183,146,37]],[1710118236,[186,144,42]],[1710118237,[188,155,33]],[1710118238,[192,151,41]],[1710118239,[194,156,38]],[1710118240,[197,156,41]],[1710118241,[198,93,105]],[1710118242,[204,105,99]],[1710118243,[204,95,109]],[1710118244,[208,99,109]],[1710118245,[211,90,121]],[1710118246,[213,92,121]],[1710118247,[217,91,126]],[1710118248,[220,83,137]],[1710118249,[222,98,124]],[1710118250,[224,90,134]],[1710118251,[228,87,141]],[1710118252,[230,83,147]],[1710118253,[234,79,155]],[1710118254,[235,87,148]],[1710118255,[240,90,150]],[1710118256,[242,89,153]],[1710118257,[244,77,167]],[1710118258,[248,81,167]],[1710118259,[250,83,167]],[1710118260,[253,71,182]],[1710118261,[255,73,182]],[1710118262,[259,107,152]],[1710118263,[262,89,173]],[1710118264,[265,96,169]],[1710118265,[266,112,154]],[1710118266,[270,99,171]],[1710118267,[273,103,170]],[1710118268,[275,94,181]],[1710118269,[279,85,194]],[1710118270,[281,80,201]],[1710118271,[284,88,196]],[1710118272,[285,96,189]],[1710118273,[291,100,191]],[1710118274,[292,86,206]],[1710118275,[295,117,178]],[1710118276,[298,113,185]],[1710118277,[301,127,174]],[1710118278,[303,130,173]],[1710118279,[306,122,184]],[1710118280,[309,144,165]],[1710118281,[313,132,181]],[1710118282,[314,119,195]],[1710118283,[318,115,203]],[1710118284,[320,113,207]],[1710118285,[323,127,196]],[1710118286,[326,120,206]],[1710118287,[330,115,215]],[1710118288,[332,114,218]],[1710118289,[334,108,226]],[1710118290,[337,108,229]],[1710118291,[340,96,244]],[1710118292,[340,112,228]],[1710118293,[340,99,241]],[1710118294,[340,109,231]],[1710118295,[340,112,228]],[1710118296,[340,116,224]],[1710118297,[340,100,240]],[1710118298,[340,120,220]],[1710118299,[340,117,223]],[1710118300,[340,111,229]],[1710118301,[340,106,234]],[1710118302,[340,106,234]],[1710118303,[340,113,227]],[1710118304,[340,98,242]],[1710118305,[340,111,229]],[1710118306,[340,90,250]],[1710118307,[340,108,232]],[1710118308,[340,107,233]],[1710118309,[340,100,240]],[1710118310,[340,100,240]],[1710118311,[340,121,219]],[1710118312,[340,109,231]],[1710118313,[340,99,241]],[1710118314,[340,108,232]],[1710118315,[340,97,243]],[1710118316,[340,103,237]],[1710118317,[340,114,226]],[1710118318,[340,114,226]],[1710118319,[340,90,250]],[1710118320,[340,109,231]],[1710118321,[340,58,282]],[1710118322,[340,87,253]],[1710118323,[340,75,265]],[1710118324,[340,94,246]],[1710118325,[340,101,239]],[1710118326,[340,88,252]],[1710118327,[340,108,232]],[1710118328,[340,98,242]],[1710118329,[340,90,250]],[1710118330,[340,90,250]],[1710118331,[340,95,245]],[1710118332,[340,86,254]],[1710118333,[340,82,258]],[1710118334,[340,78,262]],[1710118335,[340,91,249]],[1710118336,[340,94,246]],[1710118337,[340,82,258]],[1710118338,[340,79,261]],[1710118339,[340,91,249]],[1710118340,[340,87,253]],[1710118341,[340,100,240]],[1710118342,[340,92,248]],[1710118343,[340,85,255]],[1710118344,[340,88,252]],[1710118345,[340,93,247]],[1710118346,[340,105,235]],[1710118347,[340,90,250]],[1710118348,[340,87,253]],[1710118349,[340,105,235]],[1710118350,[340,92,248]],[1710118351,[340,106,234]],[1710118352,[340,98,242]],[1710118353,[340,97,243]],[1710118354,[340,96,244]],[1710118355,[340,91,249]],[1710118356,[340,88,252]],[1710118357,[340,100,240]],[1710118358,[340,94,246]],[1710118359,[340,95,245]],[1710118360,[340,101,239]],[1710118361,[340,85,255]],[1710118362,[340,113,227]],[1710118363,[340,101,239]],[1710118364,[340,100,240]],[1710118365,[340,99,241]],[1710118366,[340,109,231]],[1710118367,[340,99,241]],[1710118368,[340,83,257]],[1710118369,[340,89,251]],[1710118370,[340,90,250]],[1710118371,[340,93,247]],[1710118372,[340,86,254]],[1710118373,[340,89,251]],[1710118374,[340,90,250]],[1710118375,[340,99,241]],[1710118376,[340,91,249]],[1710118377,[340,99,241]],[1710118378,[340,90,250]],[1710118379,[340,95,245]],[1710118380,[340,72,268]],[1710118381,[340,71,269]],[1710118382,[340,75,265]],[1710118383,[340,77,263]],[1710118384,[340,80,260]],[1710118385,[340,82,258]],[1710118386,[340,83,257]],[1710118387,[340,73,267]],[1710118388,[340,81,259]],[1710118389,[340,78,262]],[1710118390,[340,89,251]],[1710118391,[340,85,255]],[1710118392,[340,78,262]],[1710118393,[340,82,258]],[1710118394,[340,78,262]],[1710118395,[340,90,250]],[1710118396,[340,87,253]],[1710118397,[340,72,268]],[1710118398,[340,82,258]],[1710118399,[340,78,262]],[1710118400,[340,82,258]],[1710118401,[340,73,267]],[1710118402,[340,75,265]],[1710118403,[340,71,269]],[1710118404,[340,84,256]],[1710118405,[340,89,251]],[1710118406,[340,88,252]],[1710118407,[340,80,260]],[1710118408,[340,91,249]],[1710118409,[340,75,265]],[1710118410,[340,73,267]],[1710118411,[163,38,125]],[1710118412,[0,0,0]],[1710118413,[0,0,0]],[1710118414,[0,0,0]],[1710118415,[0,0,0]]]);
var requestsChart = new Highcharts.StockChart({
chart: {
renderTo: 'requests',
zoomType: 'x',
marginBottom: 60
},
credits: { enabled: false },