-
Notifications
You must be signed in to change notification settings - Fork 923
/
Copy pathindex.html
1205 lines (1135 loc) · 97.3 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-10 16:16:18 GMT</span>
</span>
<span class="simulation-information-item">
<span class="simulation-information-label">Duration: </span>
<span>4m 6s </span>
</span>
<span class="simulation-tooltip simulation-information-item description" title="Description" data-content="Rinha de Backend - 2024/Q1: Crébito - avelfir-java">
<span class="simulation-information-label">Description: </span>
<span>Rinha de Backend - 2024/Q1: Crébito - avelfir-java</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">4416</td>
<td class="value error-col-3 total ko">99.729 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">status.find.in(200,422), but actually found 502<span class="value" style="display:none">1</span></td>
<td class="value error-col-2 total ko">8</td>
<td class="value error-col-3 total ko">0.181 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">status.find.in(200), but actually found 502<span class="value" style="display:none">2</span></td>
<td class="value error-col-2 total ko">4</td>
<td class="value error-col-3 total ko">0.09 %</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: 'débitos',
data: [
[1710087379000,0],[1710087380000,0],[1710087381000,0],[1710087382000,0],[1710087383000,0],[1710087384000,1],[1710087385000,2],[1710087386000,5],[1710087387000,6],[1710087388000,7],[1710087389000,9],[1710087390000,11],[1710087391000,13],[1710087392000,15],[1710087393000,16],[1710087394000,19],[1710087395000,20],[1710087396000,22],[1710087397000,24],[1710087398000,25],[1710087399000,28],[1710087400000,29],[1710087401000,31],[1710087402000,33],[1710087403000,35],[1710087404000,37],[1710087405000,38],[1710087406000,40],[1710087407000,42],[1710087408000,45],[1710087409000,47],[1710087410000,48],[1710087411000,51],[1710087412000,52],[1710087413000,54],[1710087414000,56],[1710087415000,56],[1710087416000,59],[1710087417000,60],[1710087418000,62],[1710087419000,64],[1710087420000,66],[1710087421000,68],[1710087422000,69],[1710087423000,71],[1710087424000,74],[1710087425000,74],[1710087426000,77],[1710087427000,79],[1710087428000,80],[1710087429000,82],[1710087430000,84],[1710087431000,86],[1710087432000,89],[1710087433000,90],[1710087434000,93],[1710087435000,94],[1710087436000,96],[1710087437000,101],[1710087438000,99],[1710087439000,102],[1710087440000,102],[1710087441000,105],[1710087442000,106],[1710087443000,108],[1710087444000,111],[1710087445000,112],[1710087446000,114],[1710087447000,116],[1710087448000,117],[1710087449000,120],[1710087450000,120],[1710087451000,125],[1710087452000,126],[1710087453000,126],[1710087454000,128],[1710087455000,129],[1710087456000,133],[1710087457000,134],[1710087458000,136],[1710087459000,138],[1710087460000,140],[1710087461000,142],[1710087462000,143],[1710087463000,144],[1710087464000,148],[1710087465000,148],[1710087466000,151],[1710087467000,152],[1710087468000,157],[1710087469000,155],[1710087470000,157],[1710087471000,159],[1710087472000,161],[1710087473000,162],[1710087474000,165],[1710087475000,166],[1710087476000,168],[1710087477000,170],[1710087478000,172],[1710087479000,175],[1710087480000,176],[1710087481000,178],[1710087482000,180],[1710087483000,182],[1710087484000,185],[1710087485000,185],[1710087486000,187],[1710087487000,189],[1710087488000,191],[1710087489000,193],[1710087490000,193],[1710087491000,197],[1710087492000,198],[1710087493000,200],[1710087494000,202],[1710087495000,202],[1710087496000,207],[1710087497000,207],[1710087498000,208],[1710087499000,236],[1710087500000,213],[1710087501000,214],[1710087502000,215],[1710087503000,218],[1710087504000,228],[1710087505000,222],[1710087506000,220],[1710087507000,220],[1710087508000,230],[1710087509000,329],[1710087510000,331],[1710087511000,248],[1710087512000,322],[1710087513000,247],[1710087514000,226],[1710087515000,222],[1710087516000,221],[1710087517000,226],[1710087518000,248],[1710087519000,222],[1710087520000,253],[1710087521000,223],[1710087522000,221],[1710087523000,222],[1710087524000,221],[1710087525000,221],[1710087526000,220],[1710087527000,222],[1710087528000,222],[1710087529000,220],[1710087530000,237],[1710087531000,221],[1710087532000,220],[1710087533000,220],[1710087534000,222],[1710087535000,221],[1710087536000,221],[1710087537000,221],[1710087538000,221],[1710087539000,222],[1710087540000,264],[1710087541000,262],[1710087542000,242],[1710087543000,279],[1710087544000,350],[1710087545000,426],[1710087546000,494],[1710087547000,565],[1710087548000,318],[1710087549000,410],[1710087550000,475],[1710087551000,577],[1710087552000,286],[1710087553000,387],[1710087554000,439],[1710087555000,503],[1710087556000,572],[1710087557000,372],[1710087558000,421],[1710087559000,468],[1710087560000,504],[1710087561000,537],[1710087562000,293],[1710087563000,380],[1710087564000,491],[1710087565000,249],[1710087566000,353],[1710087567000,462],[1710087568000,255],[1710087569000,344],[1710087570000,382],[1710087571000,392],[1710087572000,517],[1710087573000,512],[1710087574000,515],[1710087575000,518],[1710087576000,525],[1710087577000,546],[1710087578000,570],[1710087579000,244],[1710087580000,301],[1710087581000,320],[1710087582000,306],[1710087583000,366],[1710087584000,359],[1710087585000,388],[1710087586000,493],[1710087587000,550],[1710087588000,291],[1710087589000,336],[1710087590000,349],[1710087591000,360],[1710087592000,361],[1710087593000,408],[1710087594000,414],[1710087595000,431],[1710087596000,425],[1710087597000,431],[1710087598000,429],[1710087599000,428],[1710087600000,402],[1710087601000,390],[1710087602000,302],[1710087603000,325],[1710087604000,334],[1710087605000,290],[1710087606000,282],[1710087607000,255],[1710087608000,227],[1710087609000,225],[1710087610000,224],[1710087611000,223],[1710087612000,222],[1710087613000,222],[1710087614000,261],[1710087615000,235],[1710087616000,221],[1710087617000,220],[1710087618000,221],[1710087619000,222],[1710087620000,221],[1710087621000,221],[1710087622000,221],[1710087623000,221],[1710087624000,265],[1710087625000,3]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#68b65c',
name: 'créditos',
data: [
[1710087379000,0],[1710087380000,0],[1710087381000,0],[1710087382000,0],[1710087383000,0],[1710087384000,1],[1710087385000,2],[1710087386000,3],[1710087387000,4],[1710087388000,4],[1710087389000,5],[1710087390000,6],[1710087391000,7],[1710087392000,8],[1710087393000,8],[1710087394000,10],[1710087395000,10],[1710087396000,12],[1710087397000,12],[1710087398000,14],[1710087399000,14],[1710087400000,15],[1710087401000,16],[1710087402000,17],[1710087403000,17],[1710087404000,19],[1710087405000,20],[1710087406000,20],[1710087407000,22],[1710087408000,22],[1710087409000,23],[1710087410000,25],[1710087411000,25],[1710087412000,26],[1710087413000,26],[1710087414000,28],[1710087415000,29],[1710087416000,30],[1710087417000,30],[1710087418000,32],[1710087419000,32],[1710087420000,33],[1710087421000,34],[1710087422000,35],[1710087423000,36],[1710087424000,37],[1710087425000,38],[1710087426000,39],[1710087427000,39],[1710087428000,41],[1710087429000,41],[1710087430000,43],[1710087431000,44],[1710087432000,44],[1710087433000,46],[1710087434000,47],[1710087435000,48],[1710087436000,49],[1710087437000,50],[1710087438000,51],[1710087439000,51],[1710087440000,53],[1710087441000,53],[1710087442000,53],[1710087443000,54],[1710087444000,57],[1710087445000,55],[1710087446000,57],[1710087447000,58],[1710087448000,59],[1710087449000,59],[1710087450000,61],[1710087451000,63],[1710087452000,66],[1710087453000,63],[1710087454000,64],[1710087455000,65],[1710087456000,66],[1710087457000,67],[1710087458000,68],[1710087459000,68],[1710087460000,70],[1710087461000,70],[1710087462000,72],[1710087463000,72],[1710087464000,73],[1710087465000,74],[1710087466000,75],[1710087467000,76],[1710087468000,80],[1710087469000,78],[1710087470000,79],[1710087471000,80],[1710087472000,81],[1710087473000,81],[1710087474000,82],[1710087475000,83],[1710087476000,85],[1710087477000,85],[1710087478000,86],[1710087479000,87],[1710087480000,89],[1710087481000,90],[1710087482000,90],[1710087483000,92],[1710087484000,92],[1710087485000,93],[1710087486000,95],[1710087487000,95],[1710087488000,96],[1710087489000,97],[1710087490000,98],[1710087491000,98],[1710087492000,100],[1710087493000,100],[1710087494000,102],[1710087495000,102],[1710087496000,105],[1710087497000,104],[1710087498000,105],[1710087499000,120],[1710087500000,107],[1710087501000,107],[1710087502000,107],[1710087503000,110],[1710087504000,115],[1710087505000,111],[1710087506000,110],[1710087507000,109],[1710087508000,115],[1710087509000,164],[1710087510000,167],[1710087511000,123],[1710087512000,163],[1710087513000,123],[1710087514000,113],[1710087515000,112],[1710087516000,110],[1710087517000,113],[1710087518000,123],[1710087519000,111],[1710087520000,127],[1710087521000,111],[1710087522000,110],[1710087523000,111],[1710087524000,110],[1710087525000,110],[1710087526000,110],[1710087527000,110],[1710087528000,111],[1710087529000,110],[1710087530000,119],[1710087531000,110],[1710087532000,110],[1710087533000,110],[1710087534000,110],[1710087535000,110],[1710087536000,110],[1710087537000,111],[1710087538000,111],[1710087539000,110],[1710087540000,132],[1710087541000,131],[1710087542000,121],[1710087543000,147],[1710087544000,187],[1710087545000,229],[1710087546000,258],[1710087547000,289],[1710087548000,158],[1710087549000,203],[1710087550000,235],[1710087551000,292],[1710087552000,148],[1710087553000,200],[1710087554000,227],[1710087555000,264],[1710087556000,298],[1710087557000,186],[1710087558000,216],[1710087559000,247],[1710087560000,268],[1710087561000,282],[1710087562000,146],[1710087563000,190],[1710087564000,243],[1710087565000,126],[1710087566000,176],[1710087567000,234],[1710087568000,128],[1710087569000,181],[1710087570000,204],[1710087571000,207],[1710087572000,277],[1710087573000,269],[1710087574000,262],[1710087575000,268],[1710087576000,266],[1710087577000,280],[1710087578000,281],[1710087579000,127],[1710087580000,164],[1710087581000,163],[1710087582000,164],[1710087583000,183],[1710087584000,192],[1710087585000,221],[1710087586000,282],[1710087587000,298],[1710087588000,146],[1710087589000,163],[1710087590000,179],[1710087591000,179],[1710087592000,175],[1710087593000,188],[1710087594000,197],[1710087595000,204],[1710087596000,196],[1710087597000,196],[1710087598000,204],[1710087599000,207],[1710087600000,189],[1710087601000,198],[1710087602000,145],[1710087603000,172],[1710087604000,161],[1710087605000,135],[1710087606000,141],[1710087607000,126],[1710087608000,113],[1710087609000,113],[1710087610000,112],[1710087611000,113],[1710087612000,111],[1710087613000,110],[1710087614000,130],[1710087615000,118],[1710087616000,110],[1710087617000,111],[1710087618000,110],[1710087619000,111],[1710087620000,110],[1710087621000,110],[1710087622000,110],[1710087623000,110],[1710087624000,136],[1710087625000,3]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#f15b4f',
name: 'extratos',
data: [
[1710087379000,0],[1710087380000,0],[1710087381000,0],[1710087382000,0],[1710087383000,0],[1710087384000,1],[1710087385000,2],[1710087386000,1],[1710087387000,2],[1710087388000,1],[1710087389000,1],[1710087390000,2],[1710087391000,1],[1710087392000,2],[1710087393000,2],[1710087394000,1],[1710087395000,2],[1710087396000,2],[1710087397000,2],[1710087398000,2],[1710087399000,2],[1710087400000,2],[1710087401000,2],[1710087402000,3],[1710087403000,2],[1710087404000,3],[1710087405000,2],[1710087406000,3],[1710087407000,2],[1710087408000,3],[1710087409000,3],[1710087410000,3],[1710087411000,3],[1710087412000,3],[1710087413000,3],[1710087414000,3],[1710087415000,4],[1710087416000,3],[1710087417000,3],[1710087418000,4],[1710087419000,3],[1710087420000,4],[1710087421000,4],[1710087422000,4],[1710087423000,4],[1710087424000,4],[1710087425000,4],[1710087426000,4],[1710087427000,4],[1710087428000,4],[1710087429000,4],[1710087430000,5],[1710087431000,4],[1710087432000,5],[1710087433000,5],[1710087434000,4],[1710087435000,5],[1710087436000,5],[1710087437000,5],[1710087438000,5],[1710087439000,5],[1710087440000,5],[1710087441000,5],[1710087442000,6],[1710087443000,5],[1710087444000,6],[1710087445000,5],[1710087446000,6],[1710087447000,5],[1710087448000,6],[1710087449000,6],[1710087450000,6],[1710087451000,6],[1710087452000,6],[1710087453000,6],[1710087454000,6],[1710087455000,7],[1710087456000,6],[1710087457000,6],[1710087458000,7],[1710087459000,6],[1710087460000,7],[1710087461000,7],[1710087462000,7],[1710087463000,7],[1710087464000,7],[1710087465000,7],[1710087466000,7],[1710087467000,7],[1710087468000,8],[1710087469000,7],[1710087470000,8],[1710087471000,7],[1710087472000,8],[1710087473000,8],[1710087474000,7],[1710087475000,8],[1710087476000,8],[1710087477000,8],[1710087478000,8],[1710087479000,8],[1710087480000,8],[1710087481000,8],[1710087482000,9],[1710087483000,8],[1710087484000,9],[1710087485000,8],[1710087486000,9],[1710087487000,8],[1710087488000,9],[1710087489000,9],[1710087490000,9],[1710087491000,9],[1710087492000,9],[1710087493000,9],[1710087494000,9],[1710087495000,10],[1710087496000,9],[1710087497000,9],[1710087498000,10],[1710087499000,10],[1710087500000,10],[1710087501000,10],[1710087502000,10],[1710087503000,10],[1710087504000,10],[1710087505000,10],[1710087506000,10],[1710087507000,10],[1710087508000,11],[1710087509000,15],[1710087510000,14],[1710087511000,11],[1710087512000,14],[1710087513000,11],[1710087514000,11],[1710087515000,10],[1710087516000,10],[1710087517000,11],[1710087518000,11],[1710087519000,10],[1710087520000,12],[1710087521000,10],[1710087522000,10],[1710087523000,10],[1710087524000,10],[1710087525000,10],[1710087526000,10],[1710087527000,10],[1710087528000,10],[1710087529000,10],[1710087530000,11],[1710087531000,10],[1710087532000,10],[1710087533000,10],[1710087534000,10],[1710087535000,10],[1710087536000,10],[1710087537000,10],[1710087538000,10],[1710087539000,10],[1710087540000,12],[1710087541000,12],[1710087542000,11],[1710087543000,16],[1710087544000,17],[1710087545000,20],[1710087546000,24],[1710087547000,25],[1710087548000,11],[1710087549000,16],[1710087550000,15],[1710087551000,16],[1710087552000,16],[1710087553000,17],[1710087554000,17],[1710087555000,21],[1710087556000,19],[1710087557000,18],[1710087558000,21],[1710087559000,25],[1710087560000,22],[1710087561000,18],[1710087562000,15],[1710087563000,18],[1710087564000,24],[1710087565000,12],[1710087566000,21],[1710087567000,24],[1710087568000,12],[1710087569000,18],[1710087570000,18],[1710087571000,17],[1710087572000,27],[1710087573000,24],[1710087574000,21],[1710087575000,19],[1710087576000,16],[1710087577000,17],[1710087578000,19],[1710087579000,12],[1710087580000,16],[1710087581000,16],[1710087582000,15],[1710087583000,15],[1710087584000,16],[1710087585000,18],[1710087586000,20],[1710087587000,19],[1710087588000,13],[1710087589000,11],[1710087590000,13],[1710087591000,12],[1710087592000,13],[1710087593000,16],[1710087594000,15],[1710087595000,15],[1710087596000,16],[1710087597000,13],[1710087598000,12],[1710087599000,10],[1710087600000,11],[1710087601000,12],[1710087602000,11],[1710087603000,12],[1710087604000,10],[1710087605000,14],[1710087606000,13],[1710087607000,11],[1710087608000,10],[1710087609000,10],[1710087610000,10],[1710087611000,10],[1710087612000,10],[1710087613000,10],[1710087614000,11],[1710087615000,12],[1710087616000,10],[1710087617000,10],[1710087618000,10],[1710087619000,10],[1710087620000,10],[1710087621000,10],[1710087622000,10],[1710087623000,10],[1710087624000,12],[1710087625000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FFDD00',
name: 'validações',
data: [
[1710087379000,0],[1710087380000,0],[1710087381000,0],[1710087382000,0],[1710087383000,5],[1710087384000,5],[1710087385000,0],[1710087386000,0],[1710087387000,0],[1710087388000,0],[1710087389000,0],[1710087390000,0],[1710087391000,0],[1710087392000,0],[1710087393000,0],[1710087394000,0],[1710087395000,0],[1710087396000,0],[1710087397000,0],[1710087398000,0],[1710087399000,0],[1710087400000,0],[1710087401000,0],[1710087402000,0],[1710087403000,0],[1710087404000,0],[1710087405000,0],[1710087406000,0],[1710087407000,0],[1710087408000,0],[1710087409000,0],[1710087410000,0],[1710087411000,0],[1710087412000,0],[1710087413000,0],[1710087414000,0],[1710087415000,0],[1710087416000,0],[1710087417000,0],[1710087418000,0],[1710087419000,0],[1710087420000,0],[1710087421000,0],[1710087422000,0],[1710087423000,0],[1710087424000,0],[1710087425000,0],[1710087426000,0],[1710087427000,0],[1710087428000,0],[1710087429000,0],[1710087430000,0],[1710087431000,0],[1710087432000,0],[1710087433000,0],[1710087434000,0],[1710087435000,0],[1710087436000,0],[1710087437000,0],[1710087438000,0],[1710087439000,0],[1710087440000,0],[1710087441000,0],[1710087442000,0],[1710087443000,0],[1710087444000,0],[1710087445000,0],[1710087446000,0],[1710087447000,0],[1710087448000,0],[1710087449000,0],[1710087450000,0],[1710087451000,0],[1710087452000,0],[1710087453000,0],[1710087454000,0],[1710087455000,0],[1710087456000,0],[1710087457000,0],[1710087458000,0],[1710087459000,0],[1710087460000,0],[1710087461000,0],[1710087462000,0],[1710087463000,0],[1710087464000,0],[1710087465000,0],[1710087466000,0],[1710087467000,0],[1710087468000,0],[1710087469000,0],[1710087470000,0],[1710087471000,0],[1710087472000,0],[1710087473000,0],[1710087474000,0],[1710087475000,0],[1710087476000,0],[1710087477000,0],[1710087478000,0],[1710087479000,0],[1710087480000,0],[1710087481000,0],[1710087482000,0],[1710087483000,0],[1710087484000,0],[1710087485000,0],[1710087486000,0],[1710087487000,0],[1710087488000,0],[1710087489000,0],[1710087490000,0],[1710087491000,0],[1710087492000,0],[1710087493000,0],[1710087494000,0],[1710087495000,0],[1710087496000,0],[1710087497000,0],[1710087498000,0],[1710087499000,0],[1710087500000,0],[1710087501000,0],[1710087502000,0],[1710087503000,0],[1710087504000,0],[1710087505000,0],[1710087506000,0],[1710087507000,0],[1710087508000,0],[1710087509000,0],[1710087510000,0],[1710087511000,0],[1710087512000,0],[1710087513000,0],[1710087514000,0],[1710087515000,0],[1710087516000,0],[1710087517000,0],[1710087518000,0],[1710087519000,0],[1710087520000,0],[1710087521000,0],[1710087522000,0],[1710087523000,0],[1710087524000,0],[1710087525000,0],[1710087526000,0],[1710087527000,0],[1710087528000,0],[1710087529000,0],[1710087530000,0],[1710087531000,0],[1710087532000,0],[1710087533000,0],[1710087534000,0],[1710087535000,0],[1710087536000,0],[1710087537000,0],[1710087538000,0],[1710087539000,0],[1710087540000,0],[1710087541000,0],[1710087542000,0],[1710087543000,0],[1710087544000,0],[1710087545000,0],[1710087546000,0],[1710087547000,0],[1710087548000,0],[1710087549000,0],[1710087550000,0],[1710087551000,0],[1710087552000,0],[1710087553000,0],[1710087554000,0],[1710087555000,0],[1710087556000,0],[1710087557000,0],[1710087558000,0],[1710087559000,0],[1710087560000,0],[1710087561000,0],[1710087562000,0],[1710087563000,0],[1710087564000,0],[1710087565000,0],[1710087566000,0],[1710087567000,0],[1710087568000,0],[1710087569000,0],[1710087570000,0],[1710087571000,0],[1710087572000,0],[1710087573000,0],[1710087574000,0],[1710087575000,0],[1710087576000,0],[1710087577000,0],[1710087578000,0],[1710087579000,0],[1710087580000,0],[1710087581000,0],[1710087582000,0],[1710087583000,0],[1710087584000,0],[1710087585000,0],[1710087586000,0],[1710087587000,0],[1710087588000,0],[1710087589000,0],[1710087590000,0],[1710087591000,0],[1710087592000,0],[1710087593000,0],[1710087594000,0],[1710087595000,0],[1710087596000,0],[1710087597000,0],[1710087598000,0],[1710087599000,0],[1710087600000,0],[1710087601000,0],[1710087602000,0],[1710087603000,0],[1710087604000,0],[1710087605000,0],[1710087606000,0],[1710087607000,0],[1710087608000,0],[1710087609000,0],[1710087610000,0],[1710087611000,0],[1710087612000,0],[1710087613000,0],[1710087614000,0],[1710087615000,0],[1710087616000,0],[1710087617000,0],[1710087618000,0],[1710087619000,0],[1710087620000,0],[1710087621000,0],[1710087622000,0],[1710087623000,0],[1710087624000,0],[1710087625000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00D5FF',
name: 'validação HTTP 404',
data: [
[1710087379000,0],[1710087380000,0],[1710087381000,0],[1710087382000,0],[1710087383000,1],[1710087384000,1],[1710087385000,0],[1710087386000,0],[1710087387000,0],[1710087388000,0],[1710087389000,0],[1710087390000,0],[1710087391000,0],[1710087392000,0],[1710087393000,0],[1710087394000,0],[1710087395000,0],[1710087396000,0],[1710087397000,0],[1710087398000,0],[1710087399000,0],[1710087400000,0],[1710087401000,0],[1710087402000,0],[1710087403000,0],[1710087404000,0],[1710087405000,0],[1710087406000,0],[1710087407000,0],[1710087408000,0],[1710087409000,0],[1710087410000,0],[1710087411000,0],[1710087412000,0],[1710087413000,0],[1710087414000,0],[1710087415000,0],[1710087416000,0],[1710087417000,0],[1710087418000,0],[1710087419000,0],[1710087420000,0],[1710087421000,0],[1710087422000,0],[1710087423000,0],[1710087424000,0],[1710087425000,0],[1710087426000,0],[1710087427000,0],[1710087428000,0],[1710087429000,0],[1710087430000,0],[1710087431000,0],[1710087432000,0],[1710087433000,0],[1710087434000,0],[1710087435000,0],[1710087436000,0],[1710087437000,0],[1710087438000,0],[1710087439000,0],[1710087440000,0],[1710087441000,0],[1710087442000,0],[1710087443000,0],[1710087444000,0],[1710087445000,0],[1710087446000,0],[1710087447000,0],[1710087448000,0],[1710087449000,0],[1710087450000,0],[1710087451000,0],[1710087452000,0],[1710087453000,0],[1710087454000,0],[1710087455000,0],[1710087456000,0],[1710087457000,0],[1710087458000,0],[1710087459000,0],[1710087460000,0],[1710087461000,0],[1710087462000,0],[1710087463000,0],[1710087464000,0],[1710087465000,0],[1710087466000,0],[1710087467000,0],[1710087468000,0],[1710087469000,0],[1710087470000,0],[1710087471000,0],[1710087472000,0],[1710087473000,0],[1710087474000,0],[1710087475000,0],[1710087476000,0],[1710087477000,0],[1710087478000,0],[1710087479000,0],[1710087480000,0],[1710087481000,0],[1710087482000,0],[1710087483000,0],[1710087484000,0],[1710087485000,0],[1710087486000,0],[1710087487000,0],[1710087488000,0],[1710087489000,0],[1710087490000,0],[1710087491000,0],[1710087492000,0],[1710087493000,0],[1710087494000,0],[1710087495000,0],[1710087496000,0],[1710087497000,0],[1710087498000,0],[1710087499000,0],[1710087500000,0],[1710087501000,0],[1710087502000,0],[1710087503000,0],[1710087504000,0],[1710087505000,0],[1710087506000,0],[1710087507000,0],[1710087508000,0],[1710087509000,0],[1710087510000,0],[1710087511000,0],[1710087512000,0],[1710087513000,0],[1710087514000,0],[1710087515000,0],[1710087516000,0],[1710087517000,0],[1710087518000,0],[1710087519000,0],[1710087520000,0],[1710087521000,0],[1710087522000,0],[1710087523000,0],[1710087524000,0],[1710087525000,0],[1710087526000,0],[1710087527000,0],[1710087528000,0],[1710087529000,0],[1710087530000,0],[1710087531000,0],[1710087532000,0],[1710087533000,0],[1710087534000,0],[1710087535000,0],[1710087536000,0],[1710087537000,0],[1710087538000,0],[1710087539000,0],[1710087540000,0],[1710087541000,0],[1710087542000,0],[1710087543000,0],[1710087544000,0],[1710087545000,0],[1710087546000,0],[1710087547000,0],[1710087548000,0],[1710087549000,0],[1710087550000,0],[1710087551000,0],[1710087552000,0],[1710087553000,0],[1710087554000,0],[1710087555000,0],[1710087556000,0],[1710087557000,0],[1710087558000,0],[1710087559000,0],[1710087560000,0],[1710087561000,0],[1710087562000,0],[1710087563000,0],[1710087564000,0],[1710087565000,0],[1710087566000,0],[1710087567000,0],[1710087568000,0],[1710087569000,0],[1710087570000,0],[1710087571000,0],[1710087572000,0],[1710087573000,0],[1710087574000,0],[1710087575000,0],[1710087576000,0],[1710087577000,0],[1710087578000,0],[1710087579000,0],[1710087580000,0],[1710087581000,0],[1710087582000,0],[1710087583000,0],[1710087584000,0],[1710087585000,0],[1710087586000,0],[1710087587000,0],[1710087588000,0],[1710087589000,0],[1710087590000,0],[1710087591000,0],[1710087592000,0],[1710087593000,0],[1710087594000,0],[1710087595000,0],[1710087596000,0],[1710087597000,0],[1710087598000,0],[1710087599000,0],[1710087600000,0],[1710087601000,0],[1710087602000,0],[1710087603000,0],[1710087604000,0],[1710087605000,0],[1710087606000,0],[1710087607000,0],[1710087608000,0],[1710087609000,0],[1710087610000,0],[1710087611000,0],[1710087612000,0],[1710087613000,0],[1710087614000,0],[1710087615000,0],[1710087616000,0],[1710087617000,0],[1710087618000,0],[1710087619000,0],[1710087620000,0],[1710087621000,0],[1710087622000,0],[1710087623000,0],[1710087624000,0],[1710087625000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00FF00',
name: 'validação concorrência saldo - 0',
data: [
[1710087379000,0],[1710087380000,0],[1710087381000,0],[1710087382000,1],[1710087383000,0],[1710087384000,0],[1710087385000,0],[1710087386000,0],[1710087387000,0],[1710087388000,0],[1710087389000,0],[1710087390000,0],[1710087391000,0],[1710087392000,0],[1710087393000,0],[1710087394000,0],[1710087395000,0],[1710087396000,0],[1710087397000,0],[1710087398000,0],[1710087399000,0],[1710087400000,0],[1710087401000,0],[1710087402000,0],[1710087403000,0],[1710087404000,0],[1710087405000,0],[1710087406000,0],[1710087407000,0],[1710087408000,0],[1710087409000,0],[1710087410000,0],[1710087411000,0],[1710087412000,0],[1710087413000,0],[1710087414000,0],[1710087415000,0],[1710087416000,0],[1710087417000,0],[1710087418000,0],[1710087419000,0],[1710087420000,0],[1710087421000,0],[1710087422000,0],[1710087423000,0],[1710087424000,0],[1710087425000,0],[1710087426000,0],[1710087427000,0],[1710087428000,0],[1710087429000,0],[1710087430000,0],[1710087431000,0],[1710087432000,0],[1710087433000,0],[1710087434000,0],[1710087435000,0],[1710087436000,0],[1710087437000,0],[1710087438000,0],[1710087439000,0],[1710087440000,0],[1710087441000,0],[1710087442000,0],[1710087443000,0],[1710087444000,0],[1710087445000,0],[1710087446000,0],[1710087447000,0],[1710087448000,0],[1710087449000,0],[1710087450000,0],[1710087451000,0],[1710087452000,0],[1710087453000,0],[1710087454000,0],[1710087455000,0],[1710087456000,0],[1710087457000,0],[1710087458000,0],[1710087459000,0],[1710087460000,0],[1710087461000,0],[1710087462000,0],[1710087463000,0],[1710087464000,0],[1710087465000,0],[1710087466000,0],[1710087467000,0],[1710087468000,0],[1710087469000,0],[1710087470000,0],[1710087471000,0],[1710087472000,0],[1710087473000,0],[1710087474000,0],[1710087475000,0],[1710087476000,0],[1710087477000,0],[1710087478000,0],[1710087479000,0],[1710087480000,0],[1710087481000,0],[1710087482000,0],[1710087483000,0],[1710087484000,0],[1710087485000,0],[1710087486000,0],[1710087487000,0],[1710087488000,0],[1710087489000,0],[1710087490000,0],[1710087491000,0],[1710087492000,0],[1710087493000,0],[1710087494000,0],[1710087495000,0],[1710087496000,0],[1710087497000,0],[1710087498000,0],[1710087499000,0],[1710087500000,0],[1710087501000,0],[1710087502000,0],[1710087503000,0],[1710087504000,0],[1710087505000,0],[1710087506000,0],[1710087507000,0],[1710087508000,0],[1710087509000,0],[1710087510000,0],[1710087511000,0],[1710087512000,0],[1710087513000,0],[1710087514000,0],[1710087515000,0],[1710087516000,0],[1710087517000,0],[1710087518000,0],[1710087519000,0],[1710087520000,0],[1710087521000,0],[1710087522000,0],[1710087523000,0],[1710087524000,0],[1710087525000,0],[1710087526000,0],[1710087527000,0],[1710087528000,0],[1710087529000,0],[1710087530000,0],[1710087531000,0],[1710087532000,0],[1710087533000,0],[1710087534000,0],[1710087535000,0],[1710087536000,0],[1710087537000,0],[1710087538000,0],[1710087539000,0],[1710087540000,0],[1710087541000,0],[1710087542000,0],[1710087543000,0],[1710087544000,0],[1710087545000,0],[1710087546000,0],[1710087547000,0],[1710087548000,0],[1710087549000,0],[1710087550000,0],[1710087551000,0],[1710087552000,0],[1710087553000,0],[1710087554000,0],[1710087555000,0],[1710087556000,0],[1710087557000,0],[1710087558000,0],[1710087559000,0],[1710087560000,0],[1710087561000,0],[1710087562000,0],[1710087563000,0],[1710087564000,0],[1710087565000,0],[1710087566000,0],[1710087567000,0],[1710087568000,0],[1710087569000,0],[1710087570000,0],[1710087571000,0],[1710087572000,0],[1710087573000,0],[1710087574000,0],[1710087575000,0],[1710087576000,0],[1710087577000,0],[1710087578000,0],[1710087579000,0],[1710087580000,0],[1710087581000,0],[1710087582000,0],[1710087583000,0],[1710087584000,0],[1710087585000,0],[1710087586000,0],[1710087587000,0],[1710087588000,0],[1710087589000,0],[1710087590000,0],[1710087591000,0],[1710087592000,0],[1710087593000,0],[1710087594000,0],[1710087595000,0],[1710087596000,0],[1710087597000,0],[1710087598000,0],[1710087599000,0],[1710087600000,0],[1710087601000,0],[1710087602000,0],[1710087603000,0],[1710087604000,0],[1710087605000,0],[1710087606000,0],[1710087607000,0],[1710087608000,0],[1710087609000,0],[1710087610000,0],[1710087611000,0],[1710087612000,0],[1710087613000,0],[1710087614000,0],[1710087615000,0],[1710087616000,0],[1710087617000,0],[1710087618000,0],[1710087619000,0],[1710087620000,0],[1710087621000,0],[1710087622000,0],[1710087623000,0],[1710087624000,0],[1710087625000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#9D00FF',
name: 'validação concorrência transações - c',
data: [
[1710087379000,0],[1710087380000,0],[1710087381000,25],[1710087382000,25],[1710087383000,0],[1710087384000,0],[1710087385000,0],[1710087386000,0],[1710087387000,0],[1710087388000,0],[1710087389000,0],[1710087390000,0],[1710087391000,0],[1710087392000,0],[1710087393000,0],[1710087394000,0],[1710087395000,0],[1710087396000,0],[1710087397000,0],[1710087398000,0],[1710087399000,0],[1710087400000,0],[1710087401000,0],[1710087402000,0],[1710087403000,0],[1710087404000,0],[1710087405000,0],[1710087406000,0],[1710087407000,0],[1710087408000,0],[1710087409000,0],[1710087410000,0],[1710087411000,0],[1710087412000,0],[1710087413000,0],[1710087414000,0],[1710087415000,0],[1710087416000,0],[1710087417000,0],[1710087418000,0],[1710087419000,0],[1710087420000,0],[1710087421000,0],[1710087422000,0],[1710087423000,0],[1710087424000,0],[1710087425000,0],[1710087426000,0],[1710087427000,0],[1710087428000,0],[1710087429000,0],[1710087430000,0],[1710087431000,0],[1710087432000,0],[1710087433000,0],[1710087434000,0],[1710087435000,0],[1710087436000,0],[1710087437000,0],[1710087438000,0],[1710087439000,0],[1710087440000,0],[1710087441000,0],[1710087442000,0],[1710087443000,0],[1710087444000,0],[1710087445000,0],[1710087446000,0],[1710087447000,0],[1710087448000,0],[1710087449000,0],[1710087450000,0],[1710087451000,0],[1710087452000,0],[1710087453000,0],[1710087454000,0],[1710087455000,0],[1710087456000,0],[1710087457000,0],[1710087458000,0],[1710087459000,0],[1710087460000,0],[1710087461000,0],[1710087462000,0],[1710087463000,0],[1710087464000,0],[1710087465000,0],[1710087466000,0],[1710087467000,0],[1710087468000,0],[1710087469000,0],[1710087470000,0],[1710087471000,0],[1710087472000,0],[1710087473000,0],[1710087474000,0],[1710087475000,0],[1710087476000,0],[1710087477000,0],[1710087478000,0],[1710087479000,0],[1710087480000,0],[1710087481000,0],[1710087482000,0],[1710087483000,0],[1710087484000,0],[1710087485000,0],[1710087486000,0],[1710087487000,0],[1710087488000,0],[1710087489000,0],[1710087490000,0],[1710087491000,0],[1710087492000,0],[1710087493000,0],[1710087494000,0],[1710087495000,0],[1710087496000,0],[1710087497000,0],[1710087498000,0],[1710087499000,0],[1710087500000,0],[1710087501000,0],[1710087502000,0],[1710087503000,0],[1710087504000,0],[1710087505000,0],[1710087506000,0],[1710087507000,0],[1710087508000,0],[1710087509000,0],[1710087510000,0],[1710087511000,0],[1710087512000,0],[1710087513000,0],[1710087514000,0],[1710087515000,0],[1710087516000,0],[1710087517000,0],[1710087518000,0],[1710087519000,0],[1710087520000,0],[1710087521000,0],[1710087522000,0],[1710087523000,0],[1710087524000,0],[1710087525000,0],[1710087526000,0],[1710087527000,0],[1710087528000,0],[1710087529000,0],[1710087530000,0],[1710087531000,0],[1710087532000,0],[1710087533000,0],[1710087534000,0],[1710087535000,0],[1710087536000,0],[1710087537000,0],[1710087538000,0],[1710087539000,0],[1710087540000,0],[1710087541000,0],[1710087542000,0],[1710087543000,0],[1710087544000,0],[1710087545000,0],[1710087546000,0],[1710087547000,0],[1710087548000,0],[1710087549000,0],[1710087550000,0],[1710087551000,0],[1710087552000,0],[1710087553000,0],[1710087554000,0],[1710087555000,0],[1710087556000,0],[1710087557000,0],[1710087558000,0],[1710087559000,0],[1710087560000,0],[1710087561000,0],[1710087562000,0],[1710087563000,0],[1710087564000,0],[1710087565000,0],[1710087566000,0],[1710087567000,0],[1710087568000,0],[1710087569000,0],[1710087570000,0],[1710087571000,0],[1710087572000,0],[1710087573000,0],[1710087574000,0],[1710087575000,0],[1710087576000,0],[1710087577000,0],[1710087578000,0],[1710087579000,0],[1710087580000,0],[1710087581000,0],[1710087582000,0],[1710087583000,0],[1710087584000,0],[1710087585000,0],[1710087586000,0],[1710087587000,0],[1710087588000,0],[1710087589000,0],[1710087590000,0],[1710087591000,0],[1710087592000,0],[1710087593000,0],[1710087594000,0],[1710087595000,0],[1710087596000,0],[1710087597000,0],[1710087598000,0],[1710087599000,0],[1710087600000,0],[1710087601000,0],[1710087602000,0],[1710087603000,0],[1710087604000,0],[1710087605000,0],[1710087606000,0],[1710087607000,0],[1710087608000,0],[1710087609000,0],[1710087610000,0],[1710087611000,0],[1710087612000,0],[1710087613000,0],[1710087614000,0],[1710087615000,0],[1710087616000,0],[1710087617000,0],[1710087618000,0],[1710087619000,0],[1710087620000,0],[1710087621000,0],[1710087622000,0],[1710087623000,0],[1710087624000,0],[1710087625000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FF00E1',
name: 'validação concorrência saldo - -25',
data: [
[1710087379000,0],[1710087380000,1],[1710087381000,1],[1710087382000,0],[1710087383000,0],[1710087384000,0],[1710087385000,0],[1710087386000,0],[1710087387000,0],[1710087388000,0],[1710087389000,0],[1710087390000,0],[1710087391000,0],[1710087392000,0],[1710087393000,0],[1710087394000,0],[1710087395000,0],[1710087396000,0],[1710087397000,0],[1710087398000,0],[1710087399000,0],[1710087400000,0],[1710087401000,0],[1710087402000,0],[1710087403000,0],[1710087404000,0],[1710087405000,0],[1710087406000,0],[1710087407000,0],[1710087408000,0],[1710087409000,0],[1710087410000,0],[1710087411000,0],[1710087412000,0],[1710087413000,0],[1710087414000,0],[1710087415000,0],[1710087416000,0],[1710087417000,0],[1710087418000,0],[1710087419000,0],[1710087420000,0],[1710087421000,0],[1710087422000,0],[1710087423000,0],[1710087424000,0],[1710087425000,0],[1710087426000,0],[1710087427000,0],[1710087428000,0],[1710087429000,0],[1710087430000,0],[1710087431000,0],[1710087432000,0],[1710087433000,0],[1710087434000,0],[1710087435000,0],[1710087436000,0],[1710087437000,0],[1710087438000,0],[1710087439000,0],[1710087440000,0],[1710087441000,0],[1710087442000,0],[1710087443000,0],[1710087444000,0],[1710087445000,0],[1710087446000,0],[1710087447000,0],[1710087448000,0],[1710087449000,0],[1710087450000,0],[1710087451000,0],[1710087452000,0],[1710087453000,0],[1710087454000,0],[1710087455000,0],[1710087456000,0],[1710087457000,0],[1710087458000,0],[1710087459000,0],[1710087460000,0],[1710087461000,0],[1710087462000,0],[1710087463000,0],[1710087464000,0],[1710087465000,0],[1710087466000,0],[1710087467000,0],[1710087468000,0],[1710087469000,0],[1710087470000,0],[1710087471000,0],[1710087472000,0],[1710087473000,0],[1710087474000,0],[1710087475000,0],[1710087476000,0],[1710087477000,0],[1710087478000,0],[1710087479000,0],[1710087480000,0],[1710087481000,0],[1710087482000,0],[1710087483000,0],[1710087484000,0],[1710087485000,0],[1710087486000,0],[1710087487000,0],[1710087488000,0],[1710087489000,0],[1710087490000,0],[1710087491000,0],[1710087492000,0],[1710087493000,0],[1710087494000,0],[1710087495000,0],[1710087496000,0],[1710087497000,0],[1710087498000,0],[1710087499000,0],[1710087500000,0],[1710087501000,0],[1710087502000,0],[1710087503000,0],[1710087504000,0],[1710087505000,0],[1710087506000,0],[1710087507000,0],[1710087508000,0],[1710087509000,0],[1710087510000,0],[1710087511000,0],[1710087512000,0],[1710087513000,0],[1710087514000,0],[1710087515000,0],[1710087516000,0],[1710087517000,0],[1710087518000,0],[1710087519000,0],[1710087520000,0],[1710087521000,0],[1710087522000,0],[1710087523000,0],[1710087524000,0],[1710087525000,0],[1710087526000,0],[1710087527000,0],[1710087528000,0],[1710087529000,0],[1710087530000,0],[1710087531000,0],[1710087532000,0],[1710087533000,0],[1710087534000,0],[1710087535000,0],[1710087536000,0],[1710087537000,0],[1710087538000,0],[1710087539000,0],[1710087540000,0],[1710087541000,0],[1710087542000,0],[1710087543000,0],[1710087544000,0],[1710087545000,0],[1710087546000,0],[1710087547000,0],[1710087548000,0],[1710087549000,0],[1710087550000,0],[1710087551000,0],[1710087552000,0],[1710087553000,0],[1710087554000,0],[1710087555000,0],[1710087556000,0],[1710087557000,0],[1710087558000,0],[1710087559000,0],[1710087560000,0],[1710087561000,0],[1710087562000,0],[1710087563000,0],[1710087564000,0],[1710087565000,0],[1710087566000,0],[1710087567000,0],[1710087568000,0],[1710087569000,0],[1710087570000,0],[1710087571000,0],[1710087572000,0],[1710087573000,0],[1710087574000,0],[1710087575000,0],[1710087576000,0],[1710087577000,0],[1710087578000,0],[1710087579000,0],[1710087580000,0],[1710087581000,0],[1710087582000,0],[1710087583000,0],[1710087584000,0],[1710087585000,0],[1710087586000,0],[1710087587000,0],[1710087588000,0],[1710087589000,0],[1710087590000,0],[1710087591000,0],[1710087592000,0],[1710087593000,0],[1710087594000,0],[1710087595000,0],[1710087596000,0],[1710087597000,0],[1710087598000,0],[1710087599000,0],[1710087600000,0],[1710087601000,0],[1710087602000,0],[1710087603000,0],[1710087604000,0],[1710087605000,0],[1710087606000,0],[1710087607000,0],[1710087608000,0],[1710087609000,0],[1710087610000,0],[1710087611000,0],[1710087612000,0],[1710087613000,0],[1710087614000,0],[1710087615000,0],[1710087616000,0],[1710087617000,0],[1710087618000,0],[1710087619000,0],[1710087620000,0],[1710087621000,0],[1710087622000,0],[1710087623000,0],[1710087624000,0],[1710087625000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#AECAEB',
name: 'validação concorrência transações - d',
data: [
[1710087379000,25],[1710087380000,9],[1710087381000,0],[1710087382000,0],[1710087383000,0],[1710087384000,0],[1710087385000,0],[1710087386000,0],[1710087387000,0],[1710087388000,0],[1710087389000,0],[1710087390000,0],[1710087391000,0],[1710087392000,0],[1710087393000,0],[1710087394000,0],[1710087395000,0],[1710087396000,0],[1710087397000,0],[1710087398000,0],[1710087399000,0],[1710087400000,0],[1710087401000,0],[1710087402000,0],[1710087403000,0],[1710087404000,0],[1710087405000,0],[1710087406000,0],[1710087407000,0],[1710087408000,0],[1710087409000,0],[1710087410000,0],[1710087411000,0],[1710087412000,0],[1710087413000,0],[1710087414000,0],[1710087415000,0],[1710087416000,0],[1710087417000,0],[1710087418000,0],[1710087419000,0],[1710087420000,0],[1710087421000,0],[1710087422000,0],[1710087423000,0],[1710087424000,0],[1710087425000,0],[1710087426000,0],[1710087427000,0],[1710087428000,0],[1710087429000,0],[1710087430000,0],[1710087431000,0],[1710087432000,0],[1710087433000,0],[1710087434000,0],[1710087435000,0],[1710087436000,0],[1710087437000,0],[1710087438000,0],[1710087439000,0],[1710087440000,0],[1710087441000,0],[1710087442000,0],[1710087443000,0],[1710087444000,0],[1710087445000,0],[1710087446000,0],[1710087447000,0],[1710087448000,0],[1710087449000,0],[1710087450000,0],[1710087451000,0],[1710087452000,0],[1710087453000,0],[1710087454000,0],[1710087455000,0],[1710087456000,0],[1710087457000,0],[1710087458000,0],[1710087459000,0],[1710087460000,0],[1710087461000,0],[1710087462000,0],[1710087463000,0],[1710087464000,0],[1710087465000,0],[1710087466000,0],[1710087467000,0],[1710087468000,0],[1710087469000,0],[1710087470000,0],[1710087471000,0],[1710087472000,0],[1710087473000,0],[1710087474000,0],[1710087475000,0],[1710087476000,0],[1710087477000,0],[1710087478000,0],[1710087479000,0],[1710087480000,0],[1710087481000,0],[1710087482000,0],[1710087483000,0],[1710087484000,0],[1710087485000,0],[1710087486000,0],[1710087487000,0],[1710087488000,0],[1710087489000,0],[1710087490000,0],[1710087491000,0],[1710087492000,0],[1710087493000,0],[1710087494000,0],[1710087495000,0],[1710087496000,0],[1710087497000,0],[1710087498000,0],[1710087499000,0],[1710087500000,0],[1710087501000,0],[1710087502000,0],[1710087503000,0],[1710087504000,0],[1710087505000,0],[1710087506000,0],[1710087507000,0],[1710087508000,0],[1710087509000,0],[1710087510000,0],[1710087511000,0],[1710087512000,0],[1710087513000,0],[1710087514000,0],[1710087515000,0],[1710087516000,0],[1710087517000,0],[1710087518000,0],[1710087519000,0],[1710087520000,0],[1710087521000,0],[1710087522000,0],[1710087523000,0],[1710087524000,0],[1710087525000,0],[1710087526000,0],[1710087527000,0],[1710087528000,0],[1710087529000,0],[1710087530000,0],[1710087531000,0],[1710087532000,0],[1710087533000,0],[1710087534000,0],[1710087535000,0],[1710087536000,0],[1710087537000,0],[1710087538000,0],[1710087539000,0],[1710087540000,0],[1710087541000,0],[1710087542000,0],[1710087543000,0],[1710087544000,0],[1710087545000,0],[1710087546000,0],[1710087547000,0],[1710087548000,0],[1710087549000,0],[1710087550000,0],[1710087551000,0],[1710087552000,0],[1710087553000,0],[1710087554000,0],[1710087555000,0],[1710087556000,0],[1710087557000,0],[1710087558000,0],[1710087559000,0],[1710087560000,0],[1710087561000,0],[1710087562000,0],[1710087563000,0],[1710087564000,0],[1710087565000,0],[1710087566000,0],[1710087567000,0],[1710087568000,0],[1710087569000,0],[1710087570000,0],[1710087571000,0],[1710087572000,0],[1710087573000,0],[1710087574000,0],[1710087575000,0],[1710087576000,0],[1710087577000,0],[1710087578000,0],[1710087579000,0],[1710087580000,0],[1710087581000,0],[1710087582000,0],[1710087583000,0],[1710087584000,0],[1710087585000,0],[1710087586000,0],[1710087587000,0],[1710087588000,0],[1710087589000,0],[1710087590000,0],[1710087591000,0],[1710087592000,0],[1710087593000,0],[1710087594000,0],[1710087595000,0],[1710087596000,0],[1710087597000,0],[1710087598000,0],[1710087599000,0],[1710087600000,0],[1710087601000,0],[1710087602000,0],[1710087603000,0],[1710087604000,0],[1710087605000,0],[1710087606000,0],[1710087607000,0],[1710087608000,0],[1710087609000,0],[1710087610000,0],[1710087611000,0],[1710087612000,0],[1710087613000,0],[1710087614000,0],[1710087615000,0],[1710087616000,0],[1710087617000,0],[1710087618000,0],[1710087619000,0],[1710087620000,0],[1710087621000,0],[1710087622000,0],[1710087623000,0],[1710087624000,0],[1710087625000,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: ['79', '238', '397', '555', '714', '873', '1032', '1190', '1349', '1508', '1666', '1825', '1984', '2142', '2301', '2460', '2619', '2777', '2936', '3095', '3253', '3412', '3571', '3729', '3888', '4047', '4206', '4364', '4523', '4682', '4840', '4999', '5158', '5316', '5475', '5634', '5793', '5951', '6110', '6269', '6427', '6586', '6745', '6903', '7062', '7221', '7380', '7538', '7697', '7856', '8014', '8173', '8332', '8490', '8649', '8808', '8967', '9125', '9284', '9443', '9601', '9760', '9919', '10077', '10236', '10395', '10554', '10712', '10871', '11030', '11188', '11347', '11506', '11664', '11823', '11982', '12141', '12299', '12458', '12617', '12775', '12934', '13093', '13251', '13410', '13569', '13728', '13886', '14045', '14204', '14362', '14521', '14680', '14838', '14997', '15156', '15315', '15473', '15632', '15791', '15949'],
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: [
76.97,4.0,1.87,2.63,1.81,0.57,0.62,0.56,0.38,0.38,0.8,0.36,0.2,0.11,0.19,0.11,0.03,0.05,0.01,0.01,0.09,0.06,0.17,0.13,0.21,0.04,0.02,0.0,0.0,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.02,0.03,0.04,0.02,0.0,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.0,0.0,0.0
],
tooltip: { yDecimals: 0, ySuffix: 'ms' }
},
{
type: 'column',
color: '#f15b4f',
name: 'KO',
data: [
0.3,0.39,0.36,0.34,0.34,0.31,0.3,0.3,0.31,0.3,0.25,0.27,0.23,0.26,0.26,0.25,0.24,0.21,0.21,0.19,0.13,0.14,0.09,0.11,0.11,0.11,0.06,0.05,0.05,0.03,0.07,0.04,0.05,0.05,0.0,0.0,0.01,0.01,0.01,0.01,0.0,0.0,0.01,0.01,0.0,0.01,0.01,0.01,0.0,0.0,0.0,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.0,0.03,0.04,0.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
],
tooltip: { yDecimals: 0, ySuffix: 'ms' }
}
]
});
responsetimeDistributionChart.setTitle({
text: '<span class="chart_title">Response Time Distribution</span>',
useHTML: true
});
var responsetimepercentilesovertimeokPercentiles = unpack([[1710087379,[582,690,888,1006,1075,1086,1099,1101,1622,1787]],[1710087380,null],[1710087381,[14,14,14,14,14,14,14,14,14,14]],[1710087382,[23,102,224,321,333,344,377,396,399,400]],[1710087383,[10,10,10,10,10,10,10,10,10,10]],[1710087384,[2,13,72,106,115,166,181,183,191,197]],[1710087385,[3,4,11,15,17,18,62,78,81,82]],[1710087386,[10,11,12,76,98,99,100,101,101,102]],[1710087387,[10,11,11,14,14,14,16,19,21,22]],[1710087388,[10,10,10,12,12,12,13,13,13,14]],[1710087389,[9,10,10,12,12,12,15,16,17,18]],[1710087390,[9,9,10,12,13,13,14,16,23,25]],[1710087391,[8,9,10,13,13,13,16,20,44,51]],[1710087392,[8,9,9,10,10,10,10,11,11,11]],[1710087393,[8,9,9,11,11,11,11,13,14,15]],[1710087394,[5,8,9,10,11,11,11,12,13,14]],[1710087395,[5,8,9,10,10,12,12,14,39,50]],[1710087396,[4,8,9,11,12,13,14,22,47,54]],[1710087397,[5,8,8,10,10,10,11,12,14,14]],[1710087398,[4,8,8,9,9,10,10,12,13,14]],[1710087399,[4,8,8,9,10,10,11,12,13,15]],[1710087400,[4,7,8,8,9,9,10,11,13,15]],[1710087401,[4,7,8,9,9,9,9,11,13,14]],[1710087402,[4,7,8,8,8,8,9,9,12,13]],[1710087403,[3,6,7,8,8,8,8,9,14,16]],[1710087404,[3,7,7,9,9,11,19,30,45,55]],[1710087405,[4,7,7,9,9,10,11,28,55,61]],[1710087406,[4,7,8,9,10,11,18,51,64,81]],[1710087407,[4,6,7,8,9,9,10,10,15,17]],[1710087408,[3,6,7,8,8,8,9,12,22,39]],[1710087409,[3,6,7,8,9,9,10,11,13,13]],[1710087410,[4,6,6,8,8,8,9,11,39,41]],[1710087411,[3,5,6,7,7,8,8,9,13,13]],[1710087412,[3,5,6,7,7,7,8,11,14,16]],[1710087413,[3,6,6,8,8,9,11,26,53,76]],[1710087414,[3,5,6,6,6,7,7,9,15,38]],[1710087415,[2,5,5,6,6,7,8,9,19,38]],[1710087416,[2,5,6,8,9,11,32,42,50,67]],[1710087417,[3,5,6,9,10,16,33,49,67,69]],[1710087418,[2,5,6,8,9,11,26,49,68,83]],[1710087419,[2,5,6,9,9,16,27,48,61,78]],[1710087420,[2,5,5,8,9,18,26,46,63,69]],[1710087421,[2,5,5,7,7,8,8,10,54,63]],[1710087422,[2,5,5,6,6,6,7,8,16,29]],[1710087423,[2,4,5,5,6,6,6,7,8,14]],[1710087424,[2,4,5,6,6,6,7,8,11,13]],[1710087425,[2,4,5,6,7,7,19,43,60,63]],[1710087426,[2,4,4,5,5,6,7,26,47,53]],[1710087427,[2,4,5,8,16,28,34,48,58,64]],[1710087428,[2,4,5,6,7,13,27,46,57,62]],[1710087429,[2,3,4,6,6,6,7,8,16,25]],[1710087430,[2,4,5,5,6,7,7,22,48,57]],[1710087431,[2,4,4,5,6,7,8,19,47,57]],[1710087432,[1,3,4,5,5,6,6,7,9,10]],[1710087433,[1,3,4,5,5,6,6,17,49,61]],[1710087434,[2,4,5,12,18,26,34,50,65,71]],[1710087435,[1,4,4,5,6,6,6,8,27,37]],[1710087436,[2,4,6,26,34,42,47,56,65,70]],[1710087437,[2,4,4,6,9,31,48,68,101,108]],[1710087438,[1,3,4,4,4,5,5,6,25,39]],[1710087439,[1,3,4,4,5,5,5,6,9,12]],[1710087440,[1,3,4,4,5,5,5,7,11,16]],[1710087441,[1,3,4,5,5,6,6,7,10,25]],[1710087442,[2,3,4,5,5,6,6,7,11,14]],[1710087443,[1,3,4,5,5,6,8,27,57,59]],[1710087444,[1,3,4,6,11,18,31,47,60,66]],[1710087445,[1,4,5,20,29,36,48,62,74,78]],[1710087446,[1,4,5,21,25,36,43,56,62,69]],[1710087447,[1,3,5,25,31,38,49,61,87,97]],[1710087448,[1,3,4,4,5,6,7,10,42,49]],[1710087449,[1,4,4,17,22,33,41,52,64,65]],[1710087450,[1,4,9,34,41,47,53,58,62,66]],[1710087451,[1,3,6,36,40,49,54,64,82,118]],[1710087452,[1,4,9,31,38,46,50,56,78,79]],[1710087453,[1,3,5,32,40,50,53,67,93,146]],[1710087454,[1,4,5,30,35,44,53,58,66,76]],[1710087455,[2,4,4,21,30,37,46,56,63,69]],[1710087456,[1,4,5,27,32,39,47,55,65,70]],[1710087457,[1,3,4,5,6,9,18,38,49,65]],[1710087458,[1,3,4,30,41,53,65,83,112,151]],[1710087459,[1,3,4,6,10,20,30,47,56,59]],[1710087460,[1,3,3,4,5,8,19,36,53,58]],[1710087461,[1,3,4,6,10,19,31,46,62,67]],[1710087462,[1,3,4,5,5,6,10,26,52,61]],[1710087463,[1,3,3,4,4,5,5,7,23,30]],[1710087464,[1,2,3,4,4,4,4,5,29,39]],[1710087465,[1,3,3,4,4,5,5,7,21,47]],[1710087466,[1,3,4,4,4,5,5,7,37,58]],[1710087467,[1,3,4,6,11,19,34,47,62,72]],[1710087468,[1,4,13,54,70,83,97,124,161,199]],[1710087469,[1,3,4,6,8,13,26,39,59,67]],[1710087470,[1,3,4,5,6,8,22,41,56,62]],[1710087471,[1,3,9,32,40,45,50,56,72,79]],[1710087472,[1,3,4,20,24,32,39,46,58,60]],[1710087473,[1,4,9,31,37,43,48,54,62,69]],[1710087474,[1,3,4,5,6,9,18,39,55,68]],[1710087475,[1,3,3,5,5,5,6,25,51,59]],[1710087476,[1,2,3,4,4,5,6,10,15,19]],[1710087477,[1,2,3,4,4,5,5,7,13,15]],[1710087478,[1,3,4,34,52,75,95,121,164,234]],[1710087479,[1,3,4,6,10,20,28,41,52,59]],[1710087480,[1,3,3,5,9,18,28,42,52,68]],[1710087481,[1,3,4,23,30,35,41,50,61,70]],[1710087482,[1,3,3,4,5,9,19,35,52,60]],[1710087483,[1,3,3,4,8,18,28,41,58,63]],[1710087484,[1,3,4,19,29,38,46,56,64,66]],[1710087485,[1,3,4,18,28,35,43,52,62,68]],[1710087486,[1,2,3,4,4,5,5,8,25,34]],[1710087487,[1,3,5,23,31,38,46,53,62,67]],[1710087488,[1,3,6,35,43,50,60,128,208,250]],[1710087489,[1,3,32,113,129,143,158,179,210,243]],[1710087490,[1,2,3,4,4,4,5,8,40,56]],[1710087491,[1,2,3,3,4,4,4,5,10,13]],[1710087492,[1,2,3,4,5,10,25,36,53,62]],[1710087493,[1,3,3,4,4,5,5,10,35,47]],[1710087494,[1,3,3,9,17,26,35,46,61,67]],[1710087495,[1,3,9,35,38,42,48,55,62,69]],[1710087496,[1,3,3,4,4,5,6,14,36,55]],[1710087497,[1,3,4,5,5,5,5,6,7,9]],[1710087498,[1,3,4,5,6,6,6,7,27,38]],[1710087499,[1,6,76,141,153,163,173,191,219,237]],[1710087500,[1,3,4,5,6,6,8,19,42,59]],[1710087501,[1,3,5,7,11,19,31,41,59,72]],[1710087502,[1,4,10,33,39,43,49,55,63,65]],[1710087503,[1,3,5,16,24,31,38,50,58,62]],[1710087504,[1,2,3,4,5,5,6,8,31,42]],[1710087505,[1,3,4,5,6,6,6,8,9,12]],[1710087506,[1,3,3,5,5,5,7,8,10,13]],[1710087507,[1,3,4,5,6,6,7,8,28,45]],[1710087508,[1,16,38,55,62,66,72,83,96,502]],[1710087509,[201,453,599,1170,1178,1188,1198,1213,1227,1240]],[1710087510,[88,151,171,185,190,193,198,211,221,236]],[1710087511,[75,130,321,395,401,412,1117,1142,1160,1175]],[1710087512,[94,140,240,355,364,376,1030,1080,1133,1148]],[1710087513,[1,6,43,89,96,101,108,116,124,134]],[1710087514,[1,4,51,99,106,113,120,131,154,165]],[1710087515,[1,4,5,13,17,28,43,59,82,90]],[1710087516,[1,2,3,3,4,4,5,7,14,16]],[1710087517,[1,4,43,312,344,379,419,1024,1042,1045]],[1710087518,[1,3,5,54,67,86,108,142,1029,1059]],[1710087519,[1,3,5,7,8,9,12,17,27,83]],[1710087520,[1,30,80,150,163,178,191,204,220,231]],[1710087521,[1,3,4,5,6,7,8,11,14,19]],[1710087522,[1,2,3,4,5,5,5,7,9,13]],[1710087523,[1,3,4,6,7,7,8,9,13,17]],[1710087524,[1,3,4,8,12,22,32,44,62,74]],[1710087525,[1,3,4,5,5,6,7,8,11,16]],[1710087526,[0,2,3,4,5,5,6,8,11,14]],[1710087527,[1,2,3,4,4,5,5,7,8,11]],[1710087528,[1,3,3,4,5,6,7,16,41,47]],[1710087529,[1,3,3,5,5,6,7,9,11,15]],[1710087530,[2,6,100,162,176,188,198,211,228,235]],[1710087531,[0,3,4,11,19,34,49,65,80,89]],[1710087532,[1,3,4,5,5,5,6,7,9,12]],[1710087533,[0,2,3,4,5,5,6,7,12,14]],[1710087534,[0,2,3,4,5,6,7,12,29,38]],[1710087535,[0,2,2,3,3,4,4,4,6,8]],[1710087536,[1,2,3,4,4,5,5,6,8,9]],[1710087537,[1,2,3,3,4,4,4,5,6,9]],[1710087538,[1,3,3,4,5,5,5,6,7,10]],[1710087539,[0,2,3,3,4,4,5,6,10,12]],[1710087540,[1,5,144,237,268,285,299,322,349,1726]],[1710087541,[1,6,90,165,189,207,241,271,1034,1046]],[1710087542,[1,4,20,126,160,184,357,575,805,880]],[1710087543,[1,10,70,1372,1558,1702,1781,1845,3035,3213]],[1710087544,[1,4,16,1700,1712,1785,1800,2689,2924,3115]],[1710087545,[1,3,31,107,155,1615,1689,1700,1773,1799]],[1710087546,[1,4,21,49,59,72,78,94,129,176]],[1710087547,[1,3,27,91,103,132,1323,2316,2743,3469]],[1710087548,[1,3,25,1285,1291,1298,2220,2352,2513,2539]],[1710087549,[1,3,36,1208,1283,1303,1387,2419,2437,2512]],[1710087550,[1,3,8,55,71,89,132,1408,1475,1486]],[1710087551,[33,193,246,287,297,303,322,2113,4315,4334]],[1710087552,[1,16,63,1185,1198,1261,2102,2140,2329,3122]],[1710087553,[0,2,7,1087,1096,1102,2322,2519,2734,3027]],[1710087554,[0,2,3,78,1374,1484,1495,1502,1554,2454]],[1710087555,[1,2,3,4,4,5,8,24,81,1429]],[1710087556,[1,3,123,597,640,687,1702,2003,3604,4051]],[1710087557,[1,185,434,1073,1904,2045,2226,3821,4072,4140]],[1710087558,[1,3,5,1002,1012,1072,1839,2013,2202,3467]],[1710087559,[1,3,5,854,881,888,984,1808,1822,1866]],[1710087560,[0,2,3,773,786,798,802,852,877,900]],[1710087561,[1,3,28,82,100,112,125,148,1017,1044]],[1710087562,[1,3,9,47,69,89,859,889,905,960]],[1710087563,[0,1,2,3,3,4,4,6,29,75]],[1710087564,[1,2,2,3,3,4,4,6,10,13]],[1710087565,[1,2,3,9,30,79,116,162,196,206]],[1710087566,[0,1,3,3,3,3,4,4,5,5]],[1710087567,[1,2,2,3,3,3,4,4,7,12]],[1710087568,[1,3,260,468,498,710,1774,7726,8374,8847]],[1710087569,[1,4,110,712,738,776,1653,2746,7860,7888]],[1710087570,[1,3,59,669,693,758,2392,3812,7927,8103]],[1710087571,[1,9,411,1427,1802,1895,3574,3736,3922,4036]],[1710087572,[129,230,460,1623,1725,2022,3632,3772,3992,4747]],[1710087573,[1,63,157,719,1531,1616,1708,3463,4527,4638]],[1710087574,[1,6,66,661,678,1556,1618,1832,3944,3969]],[1710087575,[1,7,60,597,604,673,1837,3640,3932,3955]],[1710087576,[1,4,41,771,796,808,1667,1720,1939,2489]],[1710087577,[0,3,10,690,698,708,758,1611,1925,1943]],[1710087578,[1,3,5,45,598,618,662,680,695,706]],[1710087579,[1,5,77,584,623,1374,1714,1783,2015,3920]],[1710087580,[1,3,271,639,679,696,1510,2127,3842,4032]],[1710087581,[0,3,241,526,550,583,619,2021,5474,5826]],[1710087582,[0,4,176,1014,1032,1050,1591,1628,1816,2005]],[1710087583,[1,5,79,591,599,612,1608,3265,3669,3833]],[1710087584,[1,3,9,598,615,2214,2266,2289,3328,3402]],[1710087585,[1,2,4,6,6,251,2261,2317,2381,2385]],[1710087586,[1,2,3,5,6,13,613,1649,1701,1723]],[1710087587,[1,3,5,91,114,629,704,2233,3289,3305]],[1710087588,[0,3,286,625,649,1672,1806,2484,3828,4127]],[1710087589,[0,3,306,730,772,1604,1734,4009,15506,15744]],[1710087590,[0,3,248,643,689,722,1680,4977,13745,15870]],[1710087591,[1,4,282,616,686,1686,2297,3969,7912,15568]],[1710087592,[1,3,359,918,943,989,1700,3837,8496,15364]],[1710087593,[1,19,382,1612,1733,1934,2695,3843,7926,15433]],[1710087594,[1,3,335,1469,1624,2337,3689,7250,7454,7475]],[1710087595,[1,4,235,644,1553,1648,1848,3818,7994,8010]],[1710087596,[1,3,252,650,675,1702,3479,3631,15385,15460]],[1710087597,[1,4,287,656,702,1612,1825,3684,7492,7748]],[1710087598,[0,3,197,706,1412,1561,1629,3213,6036,7674]],[1710087599,[0,4,212,601,620,1438,1741,3450,3835,3877]],[1710087600,[0,2,181,649,700,724,1177,1217,3862,4035]],[1710087601,[0,4,105,221,248,359,436,1156,1202,1221]],[1710087602,[1,3,77,189,389,405,418,431,709,797]],[1710087603,[1,7,225,792,829,1278,1424,1472,3360,3379]],[1710087604,[1,3,108,408,419,440,457,478,1516,1536]],[1710087605,[1,5,116,420,440,453,470,492,508,524]],[1710087606,[1,26,197,326,337,351,370,399,441,465]],[1710087607,[1,21,111,196,211,227,245,271,300,328]],[1710087608,[1,3,5,36,52,65,80,103,133,165]],[1710087609,[1,4,8,27,35,44,50,54,65,71]],[1710087610,[1,3,4,6,9,18,30,44,60,66]],[1710087611,[1,3,5,7,8,10,26,43,60,70]],[1710087612,[0,2,3,5,6,8,15,37,57,65]],[1710087613,[0,3,5,207,227,248,263,286,306,319]],[1710087614,[20,122,185,260,270,281,293,311,325,342]],[1710087615,[1,46,89,137,148,169,188,209,243,271]],[1710087616,[0,3,6,44,57,67,79,100,112,135]],[1710087617,[1,3,5,24,31,39,44,56,62,67]],[1710087618,[0,2,4,10,17,26,34,50,64,78]],[1710087619,[0,2,4,6,6,7,9,17,47,54]],[1710087620,[1,4,8,32,38,45,54,60,67,87]],[1710087621,[1,2,3,4,4,5,5,9,42,57]],[1710087622,[1,3,5,8,12,19,32,46,57,67]],[1710087623,[1,3,4,6,8,13,30,44,59,63]],[1710087624,[4,153,208,250,258,269,281,298,333,364]],[1710087625,[1,58,100,148,154,169,178,186,203,212]]]);
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([[1710087379,[25,25,0]],[1710087380,[0,0,0]],[1710087381,[1,1,0]],[1710087382,[25,25,0]],[1710087383,[1,1,0]],[1710087384,[51,51,0]],[1710087385,[23,23,0]],[1710087386,[6,6,0]],[1710087387,[9,9,0]],[1710087388,[11,11,0]],[1710087389,[13,13,0]],[1710087390,[18,18,0]],[1710087391,[19,19,0]],[1710087392,[24,24,0]],[1710087393,[26,26,0]],[1710087394,[27,27,0]],[1710087395,[32,32,0]],[1710087396,[34,34,0]],[1710087397,[37,37,0]],[1710087398,[40,40,0]],[1710087399,[42,42,0]],[1710087400,[45,45,0]],[1710087401,[48,48,0]],[1710087402,[50,50,0]],[1710087403,[54,54,0]],[1710087404,[56,56,0]],[1710087405,[60,60,0]],[1710087406,[61,61,0]],[1710087407,[65,65,0]],[1710087408,[67,67,0]],[1710087409,[70,70,0]],[1710087410,[75,75,0]],[1710087411,[77,77,0]],[1710087412,[78,78,0]],[1710087413,[81,81,0]],[1710087414,[84,84,0]],[1710087415,[89,89,0]],[1710087416,[89,89,0]],[1710087417,[93,93,0]],[1710087418,[96,96,0]],[1710087419,[98,98,0]],[1710087420,[102,102,0]],[1710087421,[104,104,0]],[1710087422,[108,108,0]],[1710087423,[108,108,0]],[1710087424,[114,114,0]],[1710087425,[115,115,0]],[1710087426,[119,119,0]],[1710087427,[121,121,0]],[1710087428,[123,123,0]],[1710087429,[126,126,0]],[1710087430,[129,129,0]],[1710087431,[133,133,0]],[1710087432,[134,134,0]],[1710087433,[139,139,0]],[1710087434,[142,142,0]],[1710087435,[142,142,0]],[1710087436,[147,147,0]],[1710087437,[149,149,0]],[1710087438,[152,152,0]],[1710087439,[154,154,0]],[1710087440,[158,158,0]],[1710087441,[160,160,0]],[1710087442,[163,163,0]],[1710087443,[166,166,0]],[1710087444,[170,170,0]],[1710087445,[170,170,0]],[1710087446,[174,174,0]],[1710087447,[177,177,0]],[1710087448,[181,181,0]],[1710087449,[183,183,0]],[1710087450,[185,185,0]],[1710087451,[189,189,0]],[1710087452,[191,191,0]],[1710087453,[194,194,0]],[1710087454,[197,197,0]],[1710087455,[199,199,0]],[1710087456,[203,203,0]],[1710087457,[205,205,0]],[1710087458,[208,208,0]],[1710087459,[211,211,0]],[1710087460,[213,213,0]],[1710087461,[217,217,0]],[1710087462,[220,220,0]],[1710087463,[222,222,0]],[1710087464,[225,225,0]],[1710087465,[227,227,0]],[1710087466,[231,231,0]],[1710087467,[233,233,0]],[1710087468,[236,236,0]],[1710087469,[238,238,0]],[1710087470,[243,243,0]],[1710087471,[244,244,0]],[1710087472,[249,249,0]],[1710087473,[250,250,0]],[1710087474,[252,252,0]],[1710087475,[256,256,0]],[1710087476,[259,259,0]],[1710087477,[262,262,0]],[1710087478,[264,264,0]],[1710087479,[266,266,0]],[1710087480,[270,270,0]],[1710087481,[273,273,0]],[1710087482,[275,275,0]],[1710087483,[279,279,0]],[1710087484,[281,281,0]],[1710087485,[285,285,0]],[1710087486,[285,285,0]],[1710087487,[291,291,0]],[1710087488,[290,290,0]],[1710087489,[297,297,0]],[1710087490,[297,297,0]],[1710087491,[301,301,0]],[1710087492,[303,303,0]],[1710087493,[306,306,0]],[1710087494,[309,309,0]],[1710087495,[313,313,0]],[1710087496,[315,315,0]],[1710087497,[317,317,0]],[1710087498,[321,321,0]],[1710087499,[322,322,0]],[1710087500,[327,327,0]],[1710087501,[329,329,0]],[1710087502,[332,332,0]],[1710087503,[334,334,0]],[1710087504,[338,338,0]],[1710087505,[340,340,0]],[1710087506,[340,340,0]],[1710087507,[340,340,0]],[1710087508,[340,328,12]],[1710087509,[340,340,0]],[1710087510,[340,340,0]],[1710087511,[339,339,0]],[1710087512,[341,341,0]],[1710087513,[340,340,0]],[1710087514,[340,340,0]],[1710087515,[340,340,0]],[1710087516,[340,340,0]],[1710087517,[340,340,0]],[1710087518,[340,340,0]],[1710087519,[340,340,0]],[1710087520,[340,340,0]],[1710087521,[340,340,0]],[1710087522,[340,340,0]],[1710087523,[340,340,0]],[1710087524,[340,340,0]],[1710087525,[340,340,0]],[1710087526,[340,340,0]],[1710087527,[340,340,0]],[1710087528,[340,340,0]],[1710087529,[340,340,0]],[1710087530,[340,340,0]],[1710087531,[340,340,0]],[1710087532,[340,340,0]],[1710087533,[340,340,0]],[1710087534,[340,340,0]],[1710087535,[340,340,0]],[1710087536,[340,340,0]],[1710087537,[340,340,0]],[1710087538,[340,340,0]],[1710087539,[340,340,0]],[1710087540,[340,340,0]],[1710087541,[340,340,0]],[1710087542,[340,340,0]],[1710087543,[340,301,39]],[1710087544,[340,233,107]],[1710087545,[340,209,131]],[1710087546,[340,170,170]],[1710087547,[340,189,151]],[1710087548,[340,258,82]],[1710087549,[340,231,109]],[1710087550,[340,187,153]],[1710087551,[340,131,209]],[1710087552,[340,267,73]],[1710087553,[340,251,89]],[1710087554,[340,226,114]],[1710087555,[340,171,169]],[1710087556,[340,190,150]],[1710087557,[340,265,75]],[1710087558,[340,262,78]],[1710087559,[340,257,83]],[1710087560,[340,239,101]],[1710087561,[340,154,186]],[1710087562,[340,199,141]],[1710087563,[340,170,170]],[1710087564,[340,170,170]],[1710087565,[340,169,171]],[1710087566,[340,170,170]],[1710087567,[340,170,170]],[1710087568,[340,203,137]],[1710087569,[340,336,4]],[1710087570,[340,333,7]],[1710087571,[340,318,22]],[1710087572,[340,297,43]],[1710087573,[340,303,37]],[1710087574,[340,312,28]],[1710087575,[340,304,36]],[1710087576,[340,282,58]],[1710087577,[340,275,65]],[1710087578,[340,215,125]],[1710087579,[340,276,64]],[1710087580,[340,340,0]],[1710087581,[340,340,0]],[1710087582,[340,306,34]],[1710087583,[340,308,32]],[1710087584,[340,298,42]],[1710087585,[340,200,140]],[1710087586,[340,197,143]],[1710087587,[340,202,138]],[1710087588,[340,340,0]],[1710087589,[340,340,0]],[1710087590,[340,340,0]],[1710087591,[340,340,0]],[1710087592,[340,340,0]],[1710087593,[340,340,0]],[1710087594,[340,340,0]],[1710087595,[340,340,0]],[1710087596,[340,340,0]],[1710087597,[340,340,0]],[1710087598,[340,340,0]],[1710087599,[340,340,0]],[1710087600,[340,340,0]],[1710087601,[340,340,0]],[1710087602,[340,340,0]],[1710087603,[340,340,0]],[1710087604,[340,340,0]],[1710087605,[340,340,0]],[1710087606,[340,340,0]],[1710087607,[340,340,0]],[1710087608,[340,340,0]],[1710087609,[340,340,0]],[1710087610,[340,340,0]],[1710087611,[340,340,0]],[1710087612,[340,340,0]],[1710087613,[340,340,0]],[1710087614,[340,340,0]],[1710087615,[340,340,0]],[1710087616,[340,340,0]],[1710087617,[340,340,0]],[1710087618,[340,340,0]],[1710087619,[340,340,0]],[1710087620,[340,340,0]],[1710087621,[340,340,0]],[1710087622,[340,340,0]],[1710087623,[340,340,0]],[1710087624,[340,340,0]],[1710087625,[161,161,0]]]);
var requestsChart = new Highcharts.StockChart({
chart: {
renderTo: 'requests',
zoomType: 'x',
marginBottom: 60
},
credits: { enabled: false },
legend: {
enabled: true,
floating: true,
y: -65,
borderWidth: 0,
itemStyle: { fontWeight: "normal" },
symbolRadius: 0
},
title: { text: 'A title to let highcharts reserve the place for the title set later' },
navigator: {
maskInside: false
},
rangeSelector: {
buttonSpacing: 0,
buttonTheme: {
fill: '#CFC9C6',
padding: 1,
stroke: '#000000',
'stroke-width': 0.25,
style: {
color: '#000000',
fontWeight: 'bold',
},
states: {
stroke: '#000000',
'stroke-width': 0.25,
hover: {
fill: '#92918C',
style: { color: 'black' }
},
select: {
fill: '#FFA900',
style: { color: 'white' }
}
}
},
buttons : [
{
type : 'minute',
count : 1,