-
Notifications
You must be signed in to change notification settings - Fork 923
/
Copy pathindex.html
1210 lines (1140 loc) · 95.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-02-23 01:55:10 GMT</span>
</span>
<span class="simulation-information-item">
<span class="simulation-information-label">Duration: </span>
<span>4m 4s </span>
</span>
<span class="simulation-tooltip simulation-information-item description" title="Description" data-content="Rinha de Backend - 2024/Q1: Crébito - fernanduandrade">
<span class="simulation-information-label">Description: </span>
<span>Rinha de Backend - 2024/Q1: Crébito - fernanduandrade</span>
</span>
</div>
</div>
</div>
</div>
<div id="statistics_table_container">
<div id="stats" class="statistics extensible-geant collapsed">
<div class="title">
<div id="statistics_title" class="title_base"><span class="title_base_stats">Stats</span><span class="expand-table">Fixed height</span><span id="toggle-stats" class="toggle-table"></span><span class="collapse-table">Full size</span></div>
<div class="right">
<button class="statistics-button expand-all-button">Expand all groups</button>
<button class="statistics-button collapse-all-button">Collapse all groups</button>
<button id="statistics_full_screen" class="statistics-button" onclick="openStatisticsTableModal()"><img alt="Fullscreen" src="style/fullscreen.svg"></button>
</div>
</div>
<div class="scrollable">
<table id="container_statistics_head" class="statistics-in extensible-geant">
<thead>
<tr>
<th rowspan="2" id="col-1" class="header sortable sorted-up"><span>Requests</span></th>
<th colspan="5" class="header"><span class="executions">Executions</span></th>
<th colspan="8" class="header"><span class="response-time">Response Time (ms)</span></th>
</tr>
<tr>
<th id="col-2" class="header sortable"><span>Total</span></th>
<th id="col-3" class="header sortable"><span>OK</span></th>
<th id="col-4" class="header sortable"><span>KO</span></th>
<th id="col-5" class="header sortable"><span>% KO</span></th>
<th id="col-6" class="header sortable"><span><abbr title="Count of events per second">Cnt/s</abbr></span></th>
<th id="col-7" class="header sortable"><span>Min</span></th>
<th id="col-8" class="header sortable"><span>50th pct</span></th>
<th id="col-9" class="header sortable"><span>75th pct</span></th>
<th id="col-10" class="header sortable"><span>95th pct</span></th>
<th id="col-11" class="header sortable"><span>99th pct</span></th>
<th id="col-12" class="header sortable"><span>Max</span></th>
<th id="col-13" class="header sortable"><span>Mean</span></th>
<th id="col-14" class="header sortable"><span><abbr title="Standard Deviation">Std Dev</abbr></span></th>
</tr>
</thead>
<tbody></tbody>
</table>
<table id="container_statistics_body" class="statistics-in extensible-geant">
<tbody></tbody>
</table>
</div>
</div>
</div>
<dialog id="statistics_table_modal" class="statistics-table-modal">
<div class="statistics-table-modal-header"><button class="button-modal" onclick="closeStatisticsTableModal()"><img alt="Close" src="style/close.svg"></button></div>
<div class="statistics-table-modal-container">
<div id="statistics_table_modal_content" class="statistics-table-modal-content"></div>
</div>
</dialog>
<script>
function openStatisticsTableModal () {
const statsTable = document.getElementById("stats");
const statsTableModal = document.getElementById("statistics_table_modal");
const fullScreenButton = document.getElementById("statistics_full_screen");
fullScreenButton.disabled = true;
if (typeof statsTableModal.showModal === "function") {
const statsTableModalContent = document.getElementById("statistics_table_modal_content");
statsTableModalContent.innerHTML = "";
statsTableModalContent.appendChild(statsTable);
statsTableModal.showModal();
statsTableModal.addEventListener("close", function () {
const container = document.getElementById("statistics_table_container");
container.appendChild(statsTable);
fullScreenButton.disabled = false;
});
} else {
const incompatibleBrowserVersionMessage = document.createElement("div");
incompatibleBrowserVersionMessage.innerText = "Sorry, the <dialog> API is not supported by this browser.";
statsTable.insertBefore(incompatibleBrowserVersionMessage, statsTable.children[0]);
}
}
function closeStatisticsTableModal () {
const statsTableModal = document.getElementById("statistics_table_modal");
statsTableModal.close();
}
</script>
<div class="statistics extensible-geant collapsed">
<div class="title">
Errors
</div>
<table id="container_errors" class="statistics-in extensible-geant">
<thead>
<tr>
<th id="error-col-1" class="header sortable"><span>Error</span></th>
<th id="error-col-2" class="header sortable"><span>Count</span></th>
<th id="error-col-3" class="header sortable"><span>Percentage</span></th>
</tr>
</thead>
<tbody>
<tr>
<td class="error-col-1 total ko">status.find.in(200), but actually found 422<span class="value" style="display:none">0</span></td>
<td class="value error-col-2 total ko">19875</td>
<td class="value error-col-3 total ko">99.719 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">status.find.is(200), but actually found 422<span class="value" style="display:none">1</span></td>
<td class="value error-col-2 total ko">50</td>
<td class="value error-col-3 total ko">0.251 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">jmesPath(ultimas_transacoes[0].descricao).find.is(devolve), but actually found nothing<span class="value" style="display:none">2</span></td>
<td class="value error-col-2 total ko">5</td>
<td class="value error-col-3 total ko">0.025 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">jmesPath(saldo.total).find.is(-25), but actually found 0<span class="value" style="display:none">3</span></td>
<td class="value error-col-2 total ko">1</td>
<td class="value error-col-3 total ko">0.005 %</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: 'extratos',
data: [
[1708653311000,0],[1708653312000,0],[1708653313000,0],[1708653314000,0],[1708653315000,1],[1708653316000,2],[1708653317000,1],[1708653318000,1],[1708653319000,1],[1708653320000,1],[1708653321000,2],[1708653322000,1],[1708653323000,2],[1708653324000,2],[1708653325000,1],[1708653326000,2],[1708653327000,2],[1708653328000,2],[1708653329000,2],[1708653330000,2],[1708653331000,2],[1708653332000,2],[1708653333000,3],[1708653334000,2],[1708653335000,3],[1708653336000,2],[1708653337000,3],[1708653338000,2],[1708653339000,3],[1708653340000,3],[1708653341000,3],[1708653342000,3],[1708653343000,3],[1708653344000,3],[1708653345000,3],[1708653346000,4],[1708653347000,3],[1708653348000,3],[1708653349000,4],[1708653350000,3],[1708653351000,4],[1708653352000,4],[1708653353000,4],[1708653354000,4],[1708653355000,4],[1708653356000,4],[1708653357000,4],[1708653358000,4],[1708653359000,4],[1708653360000,4],[1708653361000,5],[1708653362000,4],[1708653363000,5],[1708653364000,5],[1708653365000,4],[1708653366000,5],[1708653367000,5],[1708653368000,5],[1708653369000,5],[1708653370000,5],[1708653371000,5],[1708653372000,5],[1708653373000,6],[1708653374000,5],[1708653375000,6],[1708653376000,5],[1708653377000,6],[1708653378000,5],[1708653379000,6],[1708653380000,6],[1708653381000,6],[1708653382000,6],[1708653383000,6],[1708653384000,6],[1708653385000,6],[1708653386000,7],[1708653387000,6],[1708653388000,6],[1708653389000,7],[1708653390000,6],[1708653391000,7],[1708653392000,7],[1708653393000,7],[1708653394000,7],[1708653395000,7],[1708653396000,7],[1708653397000,7],[1708653398000,7],[1708653399000,7],[1708653400000,7],[1708653401000,8],[1708653402000,7],[1708653403000,8],[1708653404000,8],[1708653405000,7],[1708653406000,8],[1708653407000,8],[1708653408000,8],[1708653409000,8],[1708653410000,8],[1708653411000,8],[1708653412000,8],[1708653413000,9],[1708653414000,8],[1708653415000,9],[1708653416000,8],[1708653417000,9],[1708653418000,8],[1708653419000,9],[1708653420000,9],[1708653421000,9],[1708653422000,9],[1708653423000,9],[1708653424000,9],[1708653425000,9],[1708653426000,10],[1708653427000,9],[1708653428000,9],[1708653429000,10],[1708653430000,9],[1708653431000,10],[1708653432000,10],[1708653433000,10],[1708653434000,10],[1708653435000,10],[1708653436000,10],[1708653437000,10],[1708653438000,10],[1708653439000,10],[1708653440000,10],[1708653441000,10],[1708653442000,10],[1708653443000,10],[1708653444000,10],[1708653445000,10],[1708653446000,10],[1708653447000,10],[1708653448000,10],[1708653449000,10],[1708653450000,10],[1708653451000,10],[1708653452000,10],[1708653453000,10],[1708653454000,10],[1708653455000,10],[1708653456000,10],[1708653457000,10],[1708653458000,10],[1708653459000,10],[1708653460000,10],[1708653461000,10],[1708653462000,10],[1708653463000,10],[1708653464000,10],[1708653465000,10],[1708653466000,10],[1708653467000,10],[1708653468000,10],[1708653469000,10],[1708653470000,10],[1708653471000,10],[1708653472000,10],[1708653473000,10],[1708653474000,10],[1708653475000,10],[1708653476000,10],[1708653477000,10],[1708653478000,10],[1708653479000,10],[1708653480000,10],[1708653481000,10],[1708653482000,10],[1708653483000,10],[1708653484000,10],[1708653485000,10],[1708653486000,10],[1708653487000,10],[1708653488000,10],[1708653489000,10],[1708653490000,10],[1708653491000,10],[1708653492000,10],[1708653493000,10],[1708653494000,10],[1708653495000,10],[1708653496000,10],[1708653497000,10],[1708653498000,10],[1708653499000,10],[1708653500000,10],[1708653501000,10],[1708653502000,10],[1708653503000,10],[1708653504000,10],[1708653505000,10],[1708653506000,10],[1708653507000,10],[1708653508000,10],[1708653509000,10],[1708653510000,10],[1708653511000,10],[1708653512000,10],[1708653513000,10],[1708653514000,10],[1708653515000,10],[1708653516000,10],[1708653517000,10],[1708653518000,10],[1708653519000,10],[1708653520000,10],[1708653521000,10],[1708653522000,10],[1708653523000,10],[1708653524000,10],[1708653525000,10],[1708653526000,10],[1708653527000,10],[1708653528000,10],[1708653529000,10],[1708653530000,10],[1708653531000,10],[1708653532000,10],[1708653533000,10],[1708653534000,10],[1708653535000,10],[1708653536000,10],[1708653537000,10],[1708653538000,10],[1708653539000,10],[1708653540000,10],[1708653541000,10],[1708653542000,10],[1708653543000,10],[1708653544000,10],[1708653545000,10],[1708653546000,10],[1708653547000,10],[1708653548000,10],[1708653549000,10],[1708653550000,10],[1708653551000,10],[1708653552000,10],[1708653553000,10],[1708653554000,10],[1708653555000,9]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#68b65c',
name: 'créditos',
data: [
[1708653311000,0],[1708653312000,0],[1708653313000,0],[1708653314000,0],[1708653315000,1],[1708653316000,2],[1708653317000,2],[1708653318000,4],[1708653319000,4],[1708653320000,5],[1708653321000,6],[1708653322000,7],[1708653323000,8],[1708653324000,8],[1708653325000,10],[1708653326000,10],[1708653327000,12],[1708653328000,12],[1708653329000,14],[1708653330000,14],[1708653331000,15],[1708653332000,16],[1708653333000,17],[1708653334000,17],[1708653335000,19],[1708653336000,20],[1708653337000,20],[1708653338000,22],[1708653339000,22],[1708653340000,23],[1708653341000,25],[1708653342000,25],[1708653343000,26],[1708653344000,26],[1708653345000,28],[1708653346000,29],[1708653347000,30],[1708653348000,30],[1708653349000,32],[1708653350000,32],[1708653351000,33],[1708653352000,34],[1708653353000,35],[1708653354000,36],[1708653355000,37],[1708653356000,38],[1708653357000,39],[1708653358000,39],[1708653359000,41],[1708653360000,41],[1708653361000,43],[1708653362000,43],[1708653363000,44],[1708653364000,45],[1708653365000,46],[1708653366000,47],[1708653367000,48],[1708653368000,48],[1708653369000,50],[1708653370000,50],[1708653371000,52],[1708653372000,52],[1708653373000,53],[1708653374000,54],[1708653375000,56],[1708653376000,55],[1708653377000,57],[1708653378000,58],[1708653379000,59],[1708653380000,59],[1708653381000,61],[1708653382000,62],[1708653383000,63],[1708653384000,64],[1708653385000,65],[1708653386000,66],[1708653387000,67],[1708653388000,67],[1708653389000,68],[1708653390000,68],[1708653391000,70],[1708653392000,71],[1708653393000,72],[1708653394000,72],[1708653395000,73],[1708653396000,74],[1708653397000,75],[1708653398000,76],[1708653399000,77],[1708653400000,78],[1708653401000,79],[1708653402000,79],[1708653403000,81],[1708653404000,81],[1708653405000,82],[1708653406000,83],[1708653407000,85],[1708653408000,85],[1708653409000,86],[1708653410000,86],[1708653411000,88],[1708653412000,89],[1708653413000,89],[1708653414000,91],[1708653415000,91],[1708653416000,92],[1708653417000,94],[1708653418000,94],[1708653419000,95],[1708653420000,96],[1708653421000,97],[1708653422000,97],[1708653423000,99],[1708653424000,99],[1708653425000,101],[1708653426000,101],[1708653427000,103],[1708653428000,103],[1708653429000,104],[1708653430000,105],[1708653431000,106],[1708653432000,107],[1708653433000,107],[1708653434000,109],[1708653435000,110],[1708653436000,110],[1708653437000,110],[1708653438000,110],[1708653439000,110],[1708653440000,110],[1708653441000,110],[1708653442000,110],[1708653443000,110],[1708653444000,110],[1708653445000,110],[1708653446000,110],[1708653447000,110],[1708653448000,110],[1708653449000,110],[1708653450000,110],[1708653451000,110],[1708653452000,110],[1708653453000,110],[1708653454000,110],[1708653455000,110],[1708653456000,110],[1708653457000,110],[1708653458000,110],[1708653459000,110],[1708653460000,110],[1708653461000,110],[1708653462000,110],[1708653463000,110],[1708653464000,110],[1708653465000,110],[1708653466000,110],[1708653467000,110],[1708653468000,110],[1708653469000,110],[1708653470000,110],[1708653471000,110],[1708653472000,110],[1708653473000,110],[1708653474000,110],[1708653475000,110],[1708653476000,110],[1708653477000,110],[1708653478000,110],[1708653479000,110],[1708653480000,110],[1708653481000,110],[1708653482000,110],[1708653483000,110],[1708653484000,110],[1708653485000,110],[1708653486000,110],[1708653487000,110],[1708653488000,110],[1708653489000,110],[1708653490000,110],[1708653491000,110],[1708653492000,110],[1708653493000,110],[1708653494000,110],[1708653495000,110],[1708653496000,110],[1708653497000,110],[1708653498000,110],[1708653499000,110],[1708653500000,110],[1708653501000,110],[1708653502000,110],[1708653503000,110],[1708653504000,110],[1708653505000,110],[1708653506000,110],[1708653507000,110],[1708653508000,110],[1708653509000,110],[1708653510000,110],[1708653511000,110],[1708653512000,110],[1708653513000,110],[1708653514000,110],[1708653515000,110],[1708653516000,110],[1708653517000,110],[1708653518000,110],[1708653519000,110],[1708653520000,110],[1708653521000,110],[1708653522000,110],[1708653523000,110],[1708653524000,110],[1708653525000,110],[1708653526000,110],[1708653527000,110],[1708653528000,110],[1708653529000,110],[1708653530000,110],[1708653531000,110],[1708653532000,110],[1708653533000,110],[1708653534000,110],[1708653535000,110],[1708653536000,110],[1708653537000,110],[1708653538000,110],[1708653539000,110],[1708653540000,110],[1708653541000,110],[1708653542000,110],[1708653543000,110],[1708653544000,110],[1708653545000,110],[1708653546000,110],[1708653547000,110],[1708653548000,110],[1708653549000,110],[1708653550000,110],[1708653551000,110],[1708653552000,110],[1708653553000,110],[1708653554000,110],[1708653555000,108]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#f15b4f',
name: 'débitos',
data: [
[1708653311000,0],[1708653312000,0],[1708653313000,0],[1708653314000,0],[1708653315000,1],[1708653316000,2],[1708653317000,4],[1708653318000,6],[1708653319000,7],[1708653320000,9],[1708653321000,11],[1708653322000,13],[1708653323000,15],[1708653324000,16],[1708653325000,19],[1708653326000,20],[1708653327000,22],[1708653328000,24],[1708653329000,25],[1708653330000,28],[1708653331000,29],[1708653332000,31],[1708653333000,33],[1708653334000,35],[1708653335000,37],[1708653336000,38],[1708653337000,40],[1708653338000,42],[1708653339000,44],[1708653340000,46],[1708653341000,47],[1708653342000,50],[1708653343000,51],[1708653344000,53],[1708653345000,55],[1708653346000,56],[1708653347000,59],[1708653348000,60],[1708653349000,63],[1708653350000,65],[1708653351000,67],[1708653352000,69],[1708653353000,70],[1708653354000,72],[1708653355000,74],[1708653356000,74],[1708653357000,77],[1708653358000,79],[1708653359000,80],[1708653360000,82],[1708653361000,84],[1708653362000,86],[1708653363000,88],[1708653364000,89],[1708653365000,92],[1708653366000,93],[1708653367000,95],[1708653368000,97],[1708653369000,98],[1708653370000,101],[1708653371000,102],[1708653372000,104],[1708653373000,106],[1708653374000,108],[1708653375000,110],[1708653376000,111],[1708653377000,113],[1708653378000,115],[1708653379000,117],[1708653380000,119],[1708653381000,120],[1708653382000,123],[1708653383000,125],[1708653384000,127],[1708653385000,129],[1708653386000,130],[1708653387000,133],[1708653388000,134],[1708653389000,135],[1708653390000,138],[1708653391000,140],[1708653392000,142],[1708653393000,142],[1708653394000,144],[1708653395000,147],[1708653396000,147],[1708653397000,150],[1708653398000,152],[1708653399000,153],[1708653400000,155],[1708653401000,157],[1708653402000,159],[1708653403000,161],[1708653404000,162],[1708653405000,165],[1708653406000,166],[1708653407000,168],[1708653408000,170],[1708653409000,171],[1708653410000,174],[1708653411000,175],[1708653412000,177],[1708653413000,179],[1708653414000,181],[1708653415000,183],[1708653416000,184],[1708653417000,187],[1708653418000,189],[1708653419000,191],[1708653420000,193],[1708653421000,194],[1708653422000,197],[1708653423000,198],[1708653424000,200],[1708653425000,201],[1708653426000,203],[1708653427000,205],[1708653428000,206],[1708653429000,209],[1708653430000,210],[1708653431000,213],[1708653432000,214],[1708653433000,215],[1708653434000,217],[1708653435000,220],[1708653436000,221],[1708653437000,220],[1708653438000,220],[1708653439000,220],[1708653440000,221],[1708653441000,220],[1708653442000,220],[1708653443000,220],[1708653444000,220],[1708653445000,220],[1708653446000,220],[1708653447000,220],[1708653448000,220],[1708653449000,220],[1708653450000,220],[1708653451000,220],[1708653452000,221],[1708653453000,220],[1708653454000,221],[1708653455000,220],[1708653456000,220],[1708653457000,220],[1708653458000,220],[1708653459000,220],[1708653460000,220],[1708653461000,220],[1708653462000,220],[1708653463000,220],[1708653464000,220],[1708653465000,220],[1708653466000,220],[1708653467000,220],[1708653468000,220],[1708653469000,220],[1708653470000,220],[1708653471000,220],[1708653472000,220],[1708653473000,220],[1708653474000,220],[1708653475000,220],[1708653476000,220],[1708653477000,220],[1708653478000,220],[1708653479000,220],[1708653480000,220],[1708653481000,220],[1708653482000,220],[1708653483000,220],[1708653484000,220],[1708653485000,220],[1708653486000,220],[1708653487000,220],[1708653488000,220],[1708653489000,220],[1708653490000,220],[1708653491000,220],[1708653492000,220],[1708653493000,220],[1708653494000,220],[1708653495000,220],[1708653496000,220],[1708653497000,220],[1708653498000,220],[1708653499000,220],[1708653500000,220],[1708653501000,221],[1708653502000,220],[1708653503000,220],[1708653504000,220],[1708653505000,220],[1708653506000,220],[1708653507000,220],[1708653508000,220],[1708653509000,221],[1708653510000,220],[1708653511000,220],[1708653512000,220],[1708653513000,221],[1708653514000,220],[1708653515000,220],[1708653516000,220],[1708653517000,220],[1708653518000,220],[1708653519000,220],[1708653520000,220],[1708653521000,220],[1708653522000,220],[1708653523000,220],[1708653524000,221],[1708653525000,220],[1708653526000,221],[1708653527000,220],[1708653528000,221],[1708653529000,220],[1708653530000,220],[1708653531000,220],[1708653532000,221],[1708653533000,220],[1708653534000,220],[1708653535000,220],[1708653536000,221],[1708653537000,220],[1708653538000,220],[1708653539000,220],[1708653540000,220],[1708653541000,220],[1708653542000,220],[1708653543000,220],[1708653544000,220],[1708653545000,220],[1708653546000,220],[1708653547000,220],[1708653548000,220],[1708653549000,220],[1708653550000,220],[1708653551000,220],[1708653552000,220],[1708653553000,220],[1708653554000,221],[1708653555000,216]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FFDD00',
name: 'validação HTTP 404',
data: [
[1708653311000,0],[1708653312000,0],[1708653313000,0],[1708653314000,1],[1708653315000,0],[1708653316000,0],[1708653317000,0],[1708653318000,0],[1708653319000,0],[1708653320000,0],[1708653321000,0],[1708653322000,0],[1708653323000,0],[1708653324000,0],[1708653325000,0],[1708653326000,0],[1708653327000,0],[1708653328000,0],[1708653329000,0],[1708653330000,0],[1708653331000,0],[1708653332000,0],[1708653333000,0],[1708653334000,0],[1708653335000,0],[1708653336000,0],[1708653337000,0],[1708653338000,0],[1708653339000,0],[1708653340000,0],[1708653341000,0],[1708653342000,0],[1708653343000,0],[1708653344000,0],[1708653345000,0],[1708653346000,0],[1708653347000,0],[1708653348000,0],[1708653349000,0],[1708653350000,0],[1708653351000,0],[1708653352000,0],[1708653353000,0],[1708653354000,0],[1708653355000,0],[1708653356000,0],[1708653357000,0],[1708653358000,0],[1708653359000,0],[1708653360000,0],[1708653361000,0],[1708653362000,0],[1708653363000,0],[1708653364000,0],[1708653365000,0],[1708653366000,0],[1708653367000,0],[1708653368000,0],[1708653369000,0],[1708653370000,0],[1708653371000,0],[1708653372000,0],[1708653373000,0],[1708653374000,0],[1708653375000,0],[1708653376000,0],[1708653377000,0],[1708653378000,0],[1708653379000,0],[1708653380000,0],[1708653381000,0],[1708653382000,0],[1708653383000,0],[1708653384000,0],[1708653385000,0],[1708653386000,0],[1708653387000,0],[1708653388000,0],[1708653389000,0],[1708653390000,0],[1708653391000,0],[1708653392000,0],[1708653393000,0],[1708653394000,0],[1708653395000,0],[1708653396000,0],[1708653397000,0],[1708653398000,0],[1708653399000,0],[1708653400000,0],[1708653401000,0],[1708653402000,0],[1708653403000,0],[1708653404000,0],[1708653405000,0],[1708653406000,0],[1708653407000,0],[1708653408000,0],[1708653409000,0],[1708653410000,0],[1708653411000,0],[1708653412000,0],[1708653413000,0],[1708653414000,0],[1708653415000,0],[1708653416000,0],[1708653417000,0],[1708653418000,0],[1708653419000,0],[1708653420000,0],[1708653421000,0],[1708653422000,0],[1708653423000,0],[1708653424000,0],[1708653425000,0],[1708653426000,0],[1708653427000,0],[1708653428000,0],[1708653429000,0],[1708653430000,0],[1708653431000,0],[1708653432000,0],[1708653433000,0],[1708653434000,0],[1708653435000,0],[1708653436000,0],[1708653437000,0],[1708653438000,0],[1708653439000,0],[1708653440000,0],[1708653441000,0],[1708653442000,0],[1708653443000,0],[1708653444000,0],[1708653445000,0],[1708653446000,0],[1708653447000,0],[1708653448000,0],[1708653449000,0],[1708653450000,0],[1708653451000,0],[1708653452000,0],[1708653453000,0],[1708653454000,0],[1708653455000,0],[1708653456000,0],[1708653457000,0],[1708653458000,0],[1708653459000,0],[1708653460000,0],[1708653461000,0],[1708653462000,0],[1708653463000,0],[1708653464000,0],[1708653465000,0],[1708653466000,0],[1708653467000,0],[1708653468000,0],[1708653469000,0],[1708653470000,0],[1708653471000,0],[1708653472000,0],[1708653473000,0],[1708653474000,0],[1708653475000,0],[1708653476000,0],[1708653477000,0],[1708653478000,0],[1708653479000,0],[1708653480000,0],[1708653481000,0],[1708653482000,0],[1708653483000,0],[1708653484000,0],[1708653485000,0],[1708653486000,0],[1708653487000,0],[1708653488000,0],[1708653489000,0],[1708653490000,0],[1708653491000,0],[1708653492000,0],[1708653493000,0],[1708653494000,0],[1708653495000,0],[1708653496000,0],[1708653497000,0],[1708653498000,0],[1708653499000,0],[1708653500000,0],[1708653501000,0],[1708653502000,0],[1708653503000,0],[1708653504000,0],[1708653505000,0],[1708653506000,0],[1708653507000,0],[1708653508000,0],[1708653509000,0],[1708653510000,0],[1708653511000,0],[1708653512000,0],[1708653513000,0],[1708653514000,0],[1708653515000,0],[1708653516000,0],[1708653517000,0],[1708653518000,0],[1708653519000,0],[1708653520000,0],[1708653521000,0],[1708653522000,0],[1708653523000,0],[1708653524000,0],[1708653525000,0],[1708653526000,0],[1708653527000,0],[1708653528000,0],[1708653529000,0],[1708653530000,0],[1708653531000,0],[1708653532000,0],[1708653533000,0],[1708653534000,0],[1708653535000,0],[1708653536000,0],[1708653537000,0],[1708653538000,0],[1708653539000,0],[1708653540000,0],[1708653541000,0],[1708653542000,0],[1708653543000,0],[1708653544000,0],[1708653545000,0],[1708653546000,0],[1708653547000,0],[1708653548000,0],[1708653549000,0],[1708653550000,0],[1708653551000,0],[1708653552000,0],[1708653553000,0],[1708653554000,0],[1708653555000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00D5FF',
name: 'validações',
data: [
[1708653311000,0],[1708653312000,0],[1708653313000,0],[1708653314000,5],[1708653315000,5],[1708653316000,0],[1708653317000,0],[1708653318000,0],[1708653319000,0],[1708653320000,0],[1708653321000,0],[1708653322000,0],[1708653323000,0],[1708653324000,0],[1708653325000,0],[1708653326000,0],[1708653327000,0],[1708653328000,0],[1708653329000,0],[1708653330000,0],[1708653331000,0],[1708653332000,0],[1708653333000,0],[1708653334000,0],[1708653335000,0],[1708653336000,0],[1708653337000,0],[1708653338000,0],[1708653339000,0],[1708653340000,0],[1708653341000,0],[1708653342000,0],[1708653343000,0],[1708653344000,0],[1708653345000,0],[1708653346000,0],[1708653347000,0],[1708653348000,0],[1708653349000,0],[1708653350000,0],[1708653351000,0],[1708653352000,0],[1708653353000,0],[1708653354000,0],[1708653355000,0],[1708653356000,0],[1708653357000,0],[1708653358000,0],[1708653359000,0],[1708653360000,0],[1708653361000,0],[1708653362000,0],[1708653363000,0],[1708653364000,0],[1708653365000,0],[1708653366000,0],[1708653367000,0],[1708653368000,0],[1708653369000,0],[1708653370000,0],[1708653371000,0],[1708653372000,0],[1708653373000,0],[1708653374000,0],[1708653375000,0],[1708653376000,0],[1708653377000,0],[1708653378000,0],[1708653379000,0],[1708653380000,0],[1708653381000,0],[1708653382000,0],[1708653383000,0],[1708653384000,0],[1708653385000,0],[1708653386000,0],[1708653387000,0],[1708653388000,0],[1708653389000,0],[1708653390000,0],[1708653391000,0],[1708653392000,0],[1708653393000,0],[1708653394000,0],[1708653395000,0],[1708653396000,0],[1708653397000,0],[1708653398000,0],[1708653399000,0],[1708653400000,0],[1708653401000,0],[1708653402000,0],[1708653403000,0],[1708653404000,0],[1708653405000,0],[1708653406000,0],[1708653407000,0],[1708653408000,0],[1708653409000,0],[1708653410000,0],[1708653411000,0],[1708653412000,0],[1708653413000,0],[1708653414000,0],[1708653415000,0],[1708653416000,0],[1708653417000,0],[1708653418000,0],[1708653419000,0],[1708653420000,0],[1708653421000,0],[1708653422000,0],[1708653423000,0],[1708653424000,0],[1708653425000,0],[1708653426000,0],[1708653427000,0],[1708653428000,0],[1708653429000,0],[1708653430000,0],[1708653431000,0],[1708653432000,0],[1708653433000,0],[1708653434000,0],[1708653435000,0],[1708653436000,0],[1708653437000,0],[1708653438000,0],[1708653439000,0],[1708653440000,0],[1708653441000,0],[1708653442000,0],[1708653443000,0],[1708653444000,0],[1708653445000,0],[1708653446000,0],[1708653447000,0],[1708653448000,0],[1708653449000,0],[1708653450000,0],[1708653451000,0],[1708653452000,0],[1708653453000,0],[1708653454000,0],[1708653455000,0],[1708653456000,0],[1708653457000,0],[1708653458000,0],[1708653459000,0],[1708653460000,0],[1708653461000,0],[1708653462000,0],[1708653463000,0],[1708653464000,0],[1708653465000,0],[1708653466000,0],[1708653467000,0],[1708653468000,0],[1708653469000,0],[1708653470000,0],[1708653471000,0],[1708653472000,0],[1708653473000,0],[1708653474000,0],[1708653475000,0],[1708653476000,0],[1708653477000,0],[1708653478000,0],[1708653479000,0],[1708653480000,0],[1708653481000,0],[1708653482000,0],[1708653483000,0],[1708653484000,0],[1708653485000,0],[1708653486000,0],[1708653487000,0],[1708653488000,0],[1708653489000,0],[1708653490000,0],[1708653491000,0],[1708653492000,0],[1708653493000,0],[1708653494000,0],[1708653495000,0],[1708653496000,0],[1708653497000,0],[1708653498000,0],[1708653499000,0],[1708653500000,0],[1708653501000,0],[1708653502000,0],[1708653503000,0],[1708653504000,0],[1708653505000,0],[1708653506000,0],[1708653507000,0],[1708653508000,0],[1708653509000,0],[1708653510000,0],[1708653511000,0],[1708653512000,0],[1708653513000,0],[1708653514000,0],[1708653515000,0],[1708653516000,0],[1708653517000,0],[1708653518000,0],[1708653519000,0],[1708653520000,0],[1708653521000,0],[1708653522000,0],[1708653523000,0],[1708653524000,0],[1708653525000,0],[1708653526000,0],[1708653527000,0],[1708653528000,0],[1708653529000,0],[1708653530000,0],[1708653531000,0],[1708653532000,0],[1708653533000,0],[1708653534000,0],[1708653535000,0],[1708653536000,0],[1708653537000,0],[1708653538000,0],[1708653539000,0],[1708653540000,0],[1708653541000,0],[1708653542000,0],[1708653543000,0],[1708653544000,0],[1708653545000,0],[1708653546000,0],[1708653547000,0],[1708653548000,0],[1708653549000,0],[1708653550000,0],[1708653551000,0],[1708653552000,0],[1708653553000,0],[1708653554000,0],[1708653555000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00FF00',
name: 'validação concorrência saldo - 0',
data: [
[1708653311000,0],[1708653312000,0],[1708653313000,1],[1708653314000,0],[1708653315000,0],[1708653316000,0],[1708653317000,0],[1708653318000,0],[1708653319000,0],[1708653320000,0],[1708653321000,0],[1708653322000,0],[1708653323000,0],[1708653324000,0],[1708653325000,0],[1708653326000,0],[1708653327000,0],[1708653328000,0],[1708653329000,0],[1708653330000,0],[1708653331000,0],[1708653332000,0],[1708653333000,0],[1708653334000,0],[1708653335000,0],[1708653336000,0],[1708653337000,0],[1708653338000,0],[1708653339000,0],[1708653340000,0],[1708653341000,0],[1708653342000,0],[1708653343000,0],[1708653344000,0],[1708653345000,0],[1708653346000,0],[1708653347000,0],[1708653348000,0],[1708653349000,0],[1708653350000,0],[1708653351000,0],[1708653352000,0],[1708653353000,0],[1708653354000,0],[1708653355000,0],[1708653356000,0],[1708653357000,0],[1708653358000,0],[1708653359000,0],[1708653360000,0],[1708653361000,0],[1708653362000,0],[1708653363000,0],[1708653364000,0],[1708653365000,0],[1708653366000,0],[1708653367000,0],[1708653368000,0],[1708653369000,0],[1708653370000,0],[1708653371000,0],[1708653372000,0],[1708653373000,0],[1708653374000,0],[1708653375000,0],[1708653376000,0],[1708653377000,0],[1708653378000,0],[1708653379000,0],[1708653380000,0],[1708653381000,0],[1708653382000,0],[1708653383000,0],[1708653384000,0],[1708653385000,0],[1708653386000,0],[1708653387000,0],[1708653388000,0],[1708653389000,0],[1708653390000,0],[1708653391000,0],[1708653392000,0],[1708653393000,0],[1708653394000,0],[1708653395000,0],[1708653396000,0],[1708653397000,0],[1708653398000,0],[1708653399000,0],[1708653400000,0],[1708653401000,0],[1708653402000,0],[1708653403000,0],[1708653404000,0],[1708653405000,0],[1708653406000,0],[1708653407000,0],[1708653408000,0],[1708653409000,0],[1708653410000,0],[1708653411000,0],[1708653412000,0],[1708653413000,0],[1708653414000,0],[1708653415000,0],[1708653416000,0],[1708653417000,0],[1708653418000,0],[1708653419000,0],[1708653420000,0],[1708653421000,0],[1708653422000,0],[1708653423000,0],[1708653424000,0],[1708653425000,0],[1708653426000,0],[1708653427000,0],[1708653428000,0],[1708653429000,0],[1708653430000,0],[1708653431000,0],[1708653432000,0],[1708653433000,0],[1708653434000,0],[1708653435000,0],[1708653436000,0],[1708653437000,0],[1708653438000,0],[1708653439000,0],[1708653440000,0],[1708653441000,0],[1708653442000,0],[1708653443000,0],[1708653444000,0],[1708653445000,0],[1708653446000,0],[1708653447000,0],[1708653448000,0],[1708653449000,0],[1708653450000,0],[1708653451000,0],[1708653452000,0],[1708653453000,0],[1708653454000,0],[1708653455000,0],[1708653456000,0],[1708653457000,0],[1708653458000,0],[1708653459000,0],[1708653460000,0],[1708653461000,0],[1708653462000,0],[1708653463000,0],[1708653464000,0],[1708653465000,0],[1708653466000,0],[1708653467000,0],[1708653468000,0],[1708653469000,0],[1708653470000,0],[1708653471000,0],[1708653472000,0],[1708653473000,0],[1708653474000,0],[1708653475000,0],[1708653476000,0],[1708653477000,0],[1708653478000,0],[1708653479000,0],[1708653480000,0],[1708653481000,0],[1708653482000,0],[1708653483000,0],[1708653484000,0],[1708653485000,0],[1708653486000,0],[1708653487000,0],[1708653488000,0],[1708653489000,0],[1708653490000,0],[1708653491000,0],[1708653492000,0],[1708653493000,0],[1708653494000,0],[1708653495000,0],[1708653496000,0],[1708653497000,0],[1708653498000,0],[1708653499000,0],[1708653500000,0],[1708653501000,0],[1708653502000,0],[1708653503000,0],[1708653504000,0],[1708653505000,0],[1708653506000,0],[1708653507000,0],[1708653508000,0],[1708653509000,0],[1708653510000,0],[1708653511000,0],[1708653512000,0],[1708653513000,0],[1708653514000,0],[1708653515000,0],[1708653516000,0],[1708653517000,0],[1708653518000,0],[1708653519000,0],[1708653520000,0],[1708653521000,0],[1708653522000,0],[1708653523000,0],[1708653524000,0],[1708653525000,0],[1708653526000,0],[1708653527000,0],[1708653528000,0],[1708653529000,0],[1708653530000,0],[1708653531000,0],[1708653532000,0],[1708653533000,0],[1708653534000,0],[1708653535000,0],[1708653536000,0],[1708653537000,0],[1708653538000,0],[1708653539000,0],[1708653540000,0],[1708653541000,0],[1708653542000,0],[1708653543000,0],[1708653544000,0],[1708653545000,0],[1708653546000,0],[1708653547000,0],[1708653548000,0],[1708653549000,0],[1708653550000,0],[1708653551000,0],[1708653552000,0],[1708653553000,0],[1708653554000,0],[1708653555000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#9D00FF',
name: 'validação concorrência transações - c',
data: [
[1708653311000,0],[1708653312000,22],[1708653313000,23],[1708653314000,0],[1708653315000,0],[1708653316000,0],[1708653317000,0],[1708653318000,0],[1708653319000,0],[1708653320000,0],[1708653321000,0],[1708653322000,0],[1708653323000,0],[1708653324000,0],[1708653325000,0],[1708653326000,0],[1708653327000,0],[1708653328000,0],[1708653329000,0],[1708653330000,0],[1708653331000,0],[1708653332000,0],[1708653333000,0],[1708653334000,0],[1708653335000,0],[1708653336000,0],[1708653337000,0],[1708653338000,0],[1708653339000,0],[1708653340000,0],[1708653341000,0],[1708653342000,0],[1708653343000,0],[1708653344000,0],[1708653345000,0],[1708653346000,0],[1708653347000,0],[1708653348000,0],[1708653349000,0],[1708653350000,0],[1708653351000,0],[1708653352000,0],[1708653353000,0],[1708653354000,0],[1708653355000,0],[1708653356000,0],[1708653357000,0],[1708653358000,0],[1708653359000,0],[1708653360000,0],[1708653361000,0],[1708653362000,0],[1708653363000,0],[1708653364000,0],[1708653365000,0],[1708653366000,0],[1708653367000,0],[1708653368000,0],[1708653369000,0],[1708653370000,0],[1708653371000,0],[1708653372000,0],[1708653373000,0],[1708653374000,0],[1708653375000,0],[1708653376000,0],[1708653377000,0],[1708653378000,0],[1708653379000,0],[1708653380000,0],[1708653381000,0],[1708653382000,0],[1708653383000,0],[1708653384000,0],[1708653385000,0],[1708653386000,0],[1708653387000,0],[1708653388000,0],[1708653389000,0],[1708653390000,0],[1708653391000,0],[1708653392000,0],[1708653393000,0],[1708653394000,0],[1708653395000,0],[1708653396000,0],[1708653397000,0],[1708653398000,0],[1708653399000,0],[1708653400000,0],[1708653401000,0],[1708653402000,0],[1708653403000,0],[1708653404000,0],[1708653405000,0],[1708653406000,0],[1708653407000,0],[1708653408000,0],[1708653409000,0],[1708653410000,0],[1708653411000,0],[1708653412000,0],[1708653413000,0],[1708653414000,0],[1708653415000,0],[1708653416000,0],[1708653417000,0],[1708653418000,0],[1708653419000,0],[1708653420000,0],[1708653421000,0],[1708653422000,0],[1708653423000,0],[1708653424000,0],[1708653425000,0],[1708653426000,0],[1708653427000,0],[1708653428000,0],[1708653429000,0],[1708653430000,0],[1708653431000,0],[1708653432000,0],[1708653433000,0],[1708653434000,0],[1708653435000,0],[1708653436000,0],[1708653437000,0],[1708653438000,0],[1708653439000,0],[1708653440000,0],[1708653441000,0],[1708653442000,0],[1708653443000,0],[1708653444000,0],[1708653445000,0],[1708653446000,0],[1708653447000,0],[1708653448000,0],[1708653449000,0],[1708653450000,0],[1708653451000,0],[1708653452000,0],[1708653453000,0],[1708653454000,0],[1708653455000,0],[1708653456000,0],[1708653457000,0],[1708653458000,0],[1708653459000,0],[1708653460000,0],[1708653461000,0],[1708653462000,0],[1708653463000,0],[1708653464000,0],[1708653465000,0],[1708653466000,0],[1708653467000,0],[1708653468000,0],[1708653469000,0],[1708653470000,0],[1708653471000,0],[1708653472000,0],[1708653473000,0],[1708653474000,0],[1708653475000,0],[1708653476000,0],[1708653477000,0],[1708653478000,0],[1708653479000,0],[1708653480000,0],[1708653481000,0],[1708653482000,0],[1708653483000,0],[1708653484000,0],[1708653485000,0],[1708653486000,0],[1708653487000,0],[1708653488000,0],[1708653489000,0],[1708653490000,0],[1708653491000,0],[1708653492000,0],[1708653493000,0],[1708653494000,0],[1708653495000,0],[1708653496000,0],[1708653497000,0],[1708653498000,0],[1708653499000,0],[1708653500000,0],[1708653501000,0],[1708653502000,0],[1708653503000,0],[1708653504000,0],[1708653505000,0],[1708653506000,0],[1708653507000,0],[1708653508000,0],[1708653509000,0],[1708653510000,0],[1708653511000,0],[1708653512000,0],[1708653513000,0],[1708653514000,0],[1708653515000,0],[1708653516000,0],[1708653517000,0],[1708653518000,0],[1708653519000,0],[1708653520000,0],[1708653521000,0],[1708653522000,0],[1708653523000,0],[1708653524000,0],[1708653525000,0],[1708653526000,0],[1708653527000,0],[1708653528000,0],[1708653529000,0],[1708653530000,0],[1708653531000,0],[1708653532000,0],[1708653533000,0],[1708653534000,0],[1708653535000,0],[1708653536000,0],[1708653537000,0],[1708653538000,0],[1708653539000,0],[1708653540000,0],[1708653541000,0],[1708653542000,0],[1708653543000,0],[1708653544000,0],[1708653545000,0],[1708653546000,0],[1708653547000,0],[1708653548000,0],[1708653549000,0],[1708653550000,0],[1708653551000,0],[1708653552000,0],[1708653553000,0],[1708653554000,0],[1708653555000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FF00E1',
name: 'validação concorrência saldo - -25',
data: [
[1708653311000,1],[1708653312000,1],[1708653313000,0],[1708653314000,0],[1708653315000,0],[1708653316000,0],[1708653317000,0],[1708653318000,0],[1708653319000,0],[1708653320000,0],[1708653321000,0],[1708653322000,0],[1708653323000,0],[1708653324000,0],[1708653325000,0],[1708653326000,0],[1708653327000,0],[1708653328000,0],[1708653329000,0],[1708653330000,0],[1708653331000,0],[1708653332000,0],[1708653333000,0],[1708653334000,0],[1708653335000,0],[1708653336000,0],[1708653337000,0],[1708653338000,0],[1708653339000,0],[1708653340000,0],[1708653341000,0],[1708653342000,0],[1708653343000,0],[1708653344000,0],[1708653345000,0],[1708653346000,0],[1708653347000,0],[1708653348000,0],[1708653349000,0],[1708653350000,0],[1708653351000,0],[1708653352000,0],[1708653353000,0],[1708653354000,0],[1708653355000,0],[1708653356000,0],[1708653357000,0],[1708653358000,0],[1708653359000,0],[1708653360000,0],[1708653361000,0],[1708653362000,0],[1708653363000,0],[1708653364000,0],[1708653365000,0],[1708653366000,0],[1708653367000,0],[1708653368000,0],[1708653369000,0],[1708653370000,0],[1708653371000,0],[1708653372000,0],[1708653373000,0],[1708653374000,0],[1708653375000,0],[1708653376000,0],[1708653377000,0],[1708653378000,0],[1708653379000,0],[1708653380000,0],[1708653381000,0],[1708653382000,0],[1708653383000,0],[1708653384000,0],[1708653385000,0],[1708653386000,0],[1708653387000,0],[1708653388000,0],[1708653389000,0],[1708653390000,0],[1708653391000,0],[1708653392000,0],[1708653393000,0],[1708653394000,0],[1708653395000,0],[1708653396000,0],[1708653397000,0],[1708653398000,0],[1708653399000,0],[1708653400000,0],[1708653401000,0],[1708653402000,0],[1708653403000,0],[1708653404000,0],[1708653405000,0],[1708653406000,0],[1708653407000,0],[1708653408000,0],[1708653409000,0],[1708653410000,0],[1708653411000,0],[1708653412000,0],[1708653413000,0],[1708653414000,0],[1708653415000,0],[1708653416000,0],[1708653417000,0],[1708653418000,0],[1708653419000,0],[1708653420000,0],[1708653421000,0],[1708653422000,0],[1708653423000,0],[1708653424000,0],[1708653425000,0],[1708653426000,0],[1708653427000,0],[1708653428000,0],[1708653429000,0],[1708653430000,0],[1708653431000,0],[1708653432000,0],[1708653433000,0],[1708653434000,0],[1708653435000,0],[1708653436000,0],[1708653437000,0],[1708653438000,0],[1708653439000,0],[1708653440000,0],[1708653441000,0],[1708653442000,0],[1708653443000,0],[1708653444000,0],[1708653445000,0],[1708653446000,0],[1708653447000,0],[1708653448000,0],[1708653449000,0],[1708653450000,0],[1708653451000,0],[1708653452000,0],[1708653453000,0],[1708653454000,0],[1708653455000,0],[1708653456000,0],[1708653457000,0],[1708653458000,0],[1708653459000,0],[1708653460000,0],[1708653461000,0],[1708653462000,0],[1708653463000,0],[1708653464000,0],[1708653465000,0],[1708653466000,0],[1708653467000,0],[1708653468000,0],[1708653469000,0],[1708653470000,0],[1708653471000,0],[1708653472000,0],[1708653473000,0],[1708653474000,0],[1708653475000,0],[1708653476000,0],[1708653477000,0],[1708653478000,0],[1708653479000,0],[1708653480000,0],[1708653481000,0],[1708653482000,0],[1708653483000,0],[1708653484000,0],[1708653485000,0],[1708653486000,0],[1708653487000,0],[1708653488000,0],[1708653489000,0],[1708653490000,0],[1708653491000,0],[1708653492000,0],[1708653493000,0],[1708653494000,0],[1708653495000,0],[1708653496000,0],[1708653497000,0],[1708653498000,0],[1708653499000,0],[1708653500000,0],[1708653501000,0],[1708653502000,0],[1708653503000,0],[1708653504000,0],[1708653505000,0],[1708653506000,0],[1708653507000,0],[1708653508000,0],[1708653509000,0],[1708653510000,0],[1708653511000,0],[1708653512000,0],[1708653513000,0],[1708653514000,0],[1708653515000,0],[1708653516000,0],[1708653517000,0],[1708653518000,0],[1708653519000,0],[1708653520000,0],[1708653521000,0],[1708653522000,0],[1708653523000,0],[1708653524000,0],[1708653525000,0],[1708653526000,0],[1708653527000,0],[1708653528000,0],[1708653529000,0],[1708653530000,0],[1708653531000,0],[1708653532000,0],[1708653533000,0],[1708653534000,0],[1708653535000,0],[1708653536000,0],[1708653537000,0],[1708653538000,0],[1708653539000,0],[1708653540000,0],[1708653541000,0],[1708653542000,0],[1708653543000,0],[1708653544000,0],[1708653545000,0],[1708653546000,0],[1708653547000,0],[1708653548000,0],[1708653549000,0],[1708653550000,0],[1708653551000,0],[1708653552000,0],[1708653553000,0],[1708653554000,0],[1708653555000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#AECAEB',
name: 'validação concorrência transações - d',
data: [
[1708653311000,25],[1708653312000,0],[1708653313000,0],[1708653314000,0],[1708653315000,0],[1708653316000,0],[1708653317000,0],[1708653318000,0],[1708653319000,0],[1708653320000,0],[1708653321000,0],[1708653322000,0],[1708653323000,0],[1708653324000,0],[1708653325000,0],[1708653326000,0],[1708653327000,0],[1708653328000,0],[1708653329000,0],[1708653330000,0],[1708653331000,0],[1708653332000,0],[1708653333000,0],[1708653334000,0],[1708653335000,0],[1708653336000,0],[1708653337000,0],[1708653338000,0],[1708653339000,0],[1708653340000,0],[1708653341000,0],[1708653342000,0],[1708653343000,0],[1708653344000,0],[1708653345000,0],[1708653346000,0],[1708653347000,0],[1708653348000,0],[1708653349000,0],[1708653350000,0],[1708653351000,0],[1708653352000,0],[1708653353000,0],[1708653354000,0],[1708653355000,0],[1708653356000,0],[1708653357000,0],[1708653358000,0],[1708653359000,0],[1708653360000,0],[1708653361000,0],[1708653362000,0],[1708653363000,0],[1708653364000,0],[1708653365000,0],[1708653366000,0],[1708653367000,0],[1708653368000,0],[1708653369000,0],[1708653370000,0],[1708653371000,0],[1708653372000,0],[1708653373000,0],[1708653374000,0],[1708653375000,0],[1708653376000,0],[1708653377000,0],[1708653378000,0],[1708653379000,0],[1708653380000,0],[1708653381000,0],[1708653382000,0],[1708653383000,0],[1708653384000,0],[1708653385000,0],[1708653386000,0],[1708653387000,0],[1708653388000,0],[1708653389000,0],[1708653390000,0],[1708653391000,0],[1708653392000,0],[1708653393000,0],[1708653394000,0],[1708653395000,0],[1708653396000,0],[1708653397000,0],[1708653398000,0],[1708653399000,0],[1708653400000,0],[1708653401000,0],[1708653402000,0],[1708653403000,0],[1708653404000,0],[1708653405000,0],[1708653406000,0],[1708653407000,0],[1708653408000,0],[1708653409000,0],[1708653410000,0],[1708653411000,0],[1708653412000,0],[1708653413000,0],[1708653414000,0],[1708653415000,0],[1708653416000,0],[1708653417000,0],[1708653418000,0],[1708653419000,0],[1708653420000,0],[1708653421000,0],[1708653422000,0],[1708653423000,0],[1708653424000,0],[1708653425000,0],[1708653426000,0],[1708653427000,0],[1708653428000,0],[1708653429000,0],[1708653430000,0],[1708653431000,0],[1708653432000,0],[1708653433000,0],[1708653434000,0],[1708653435000,0],[1708653436000,0],[1708653437000,0],[1708653438000,0],[1708653439000,0],[1708653440000,0],[1708653441000,0],[1708653442000,0],[1708653443000,0],[1708653444000,0],[1708653445000,0],[1708653446000,0],[1708653447000,0],[1708653448000,0],[1708653449000,0],[1708653450000,0],[1708653451000,0],[1708653452000,0],[1708653453000,0],[1708653454000,0],[1708653455000,0],[1708653456000,0],[1708653457000,0],[1708653458000,0],[1708653459000,0],[1708653460000,0],[1708653461000,0],[1708653462000,0],[1708653463000,0],[1708653464000,0],[1708653465000,0],[1708653466000,0],[1708653467000,0],[1708653468000,0],[1708653469000,0],[1708653470000,0],[1708653471000,0],[1708653472000,0],[1708653473000,0],[1708653474000,0],[1708653475000,0],[1708653476000,0],[1708653477000,0],[1708653478000,0],[1708653479000,0],[1708653480000,0],[1708653481000,0],[1708653482000,0],[1708653483000,0],[1708653484000,0],[1708653485000,0],[1708653486000,0],[1708653487000,0],[1708653488000,0],[1708653489000,0],[1708653490000,0],[1708653491000,0],[1708653492000,0],[1708653493000,0],[1708653494000,0],[1708653495000,0],[1708653496000,0],[1708653497000,0],[1708653498000,0],[1708653499000,0],[1708653500000,0],[1708653501000,0],[1708653502000,0],[1708653503000,0],[1708653504000,0],[1708653505000,0],[1708653506000,0],[1708653507000,0],[1708653508000,0],[1708653509000,0],[1708653510000,0],[1708653511000,0],[1708653512000,0],[1708653513000,0],[1708653514000,0],[1708653515000,0],[1708653516000,0],[1708653517000,0],[1708653518000,0],[1708653519000,0],[1708653520000,0],[1708653521000,0],[1708653522000,0],[1708653523000,0],[1708653524000,0],[1708653525000,0],[1708653526000,0],[1708653527000,0],[1708653528000,0],[1708653529000,0],[1708653530000,0],[1708653531000,0],[1708653532000,0],[1708653533000,0],[1708653534000,0],[1708653535000,0],[1708653536000,0],[1708653537000,0],[1708653538000,0],[1708653539000,0],[1708653540000,0],[1708653541000,0],[1708653542000,0],[1708653543000,0],[1708653544000,0],[1708653545000,0],[1708653546000,0],[1708653547000,0],[1708653548000,0],[1708653549000,0],[1708653550000,0],[1708653551000,0],[1708653552000,0],[1708653553000,0],[1708653554000,0],[1708653555000,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: ['1', '4', '7', '10', '13', '16', '18', '21', '24', '27', '30', '33', '36', '38', '41', '44', '47', '50', '53', '55', '58', '61', '64', '67', '70', '72', '75', '78', '81', '84', '87', '89', '92', '95', '98', '101', '104', '107', '109', '112', '115', '118', '121', '124', '126', '129', '132', '135', '138', '141', '143', '146', '149', '152', '155', '158', '160', '163', '166', '169', '172', '175', '177', '180', '183', '186', '189', '192', '195', '197', '200', '203', '206', '209', '212', '214', '217', '220', '223', '226', '229', '231', '234', '237', '240', '243', '246', '248', '251', '254', '257', '260', '263', '266', '268', '271', '274', '277', '280', '283'],
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: [
58.8,8.59,0.06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
],
tooltip: { yDecimals: 0, ySuffix: 'ms' }
},
{
type: 'column',
color: '#f15b4f',
name: 'KO',
data: [
26.11,6.13,0.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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([[1708653311,null],[1708653312,null],[1708653313,null],[1708653314,[4,4,4,4,4,4,4,4,4,4]],[1708653315,[1,1,2,4,6,6,8,27,48,49]],[1708653316,[3,3,4,4,4,4,4,4,4,5]],[1708653317,[4,4,5,17,24,31,38,45,50,52]],[1708653318,[3,3,6,10,11,17,23,29,34,36]],[1708653319,[2,3,3,3,3,4,4,4,4,5]],[1708653320,[2,3,3,3,3,3,4,4,4,5]],[1708653321,[2,2,2,3,3,3,3,4,4,5]],[1708653322,[2,2,3,3,3,3,3,18,36,41]],[1708653323,[2,2,2,3,3,3,4,5,5,5]],[1708653324,[2,3,3,3,3,4,14,42,63,69]],[1708653325,[2,2,2,3,4,14,34,53,62,65]],[1708653326,[2,2,2,3,4,11,48,52,58,60]],[1708653327,[2,2,2,3,3,3,3,3,3,3]],[1708653328,[1,2,2,3,3,3,4,15,24,27]],[1708653329,[1,2,2,3,3,5,15,22,38,43]],[1708653330,[2,2,2,2,2,2,3,3,4,4]],[1708653331,[1,2,2,9,23,26,47,63,71,74]],[1708653332,[1,1,2,6,11,17,38,48,50,51]],[1708653333,[1,1,2,2,2,2,2,3,5,6]],[1708653334,[1,1,2,2,2,2,2,3,3,3]],[1708653335,[1,1,2,2,2,2,3,15,41,52]],[1708653336,[1,1,2,2,2,2,2,2,2,2]],[1708653337,[1,2,2,2,2,2,2,2,2,2]],[1708653338,[1,1,1,2,2,2,2,2,3,3]],[1708653339,[1,1,1,2,4,23,42,49,69,71]],[1708653340,[1,1,1,2,2,2,8,35,52,65]],[1708653341,[1,1,1,2,2,2,2,2,2,3]],[1708653342,[1,1,1,2,2,2,2,14,55,63]],[1708653343,[1,1,1,1,2,2,2,2,2,3]],[1708653344,[1,1,1,2,2,2,2,2,6,7]],[1708653345,[1,1,2,2,2,2,28,49,69,74]],[1708653346,[1,1,1,2,2,2,2,2,2,3]],[1708653347,[1,1,1,1,2,2,2,2,2,2]],[1708653348,[1,1,1,2,2,2,2,2,2,2]],[1708653349,[1,1,1,1,2,2,2,2,2,2]],[1708653350,[1,1,1,2,2,2,2,2,2,3]],[1708653351,[1,2,2,2,2,2,2,2,2,2]],[1708653352,[1,1,1,2,2,2,2,2,2,3]],[1708653353,[1,1,1,1,1,1,2,2,2,2]],[1708653354,[1,1,1,2,2,2,2,2,56,67]],[1708653355,[1,1,1,2,2,2,2,2,24,35]],[1708653356,[1,1,1,2,2,2,2,2,2,2]],[1708653357,[1,1,1,1,1,1,2,2,2,2]],[1708653358,[1,1,1,1,1,1,1,1,2,2]],[1708653359,[1,1,1,1,1,1,1,2,2,2]],[1708653360,[1,1,1,2,2,2,2,2,20,31]],[1708653361,[1,1,1,2,2,2,2,2,2,2]],[1708653362,[1,1,1,2,2,2,2,2,2,2]],[1708653363,[1,1,2,2,2,2,2,2,3,3]],[1708653364,[1,1,1,1,2,2,2,2,2,2]],[1708653365,[1,1,1,1,1,1,1,2,2,3]],[1708653366,[1,1,1,2,2,2,2,2,2,3]],[1708653367,[1,1,1,2,2,2,2,2,2,3]],[1708653368,[1,1,1,1,1,1,1,1,2,2]],[1708653369,[0,1,1,1,1,1,2,2,2,3]],[1708653370,[0,1,1,2,2,2,2,2,2,2]],[1708653371,[0,1,1,2,2,2,2,2,2,2]],[1708653372,[1,1,1,1,1,2,2,2,2,2]],[1708653373,[1,1,1,1,1,1,1,1,2,2]],[1708653374,[1,1,1,1,1,1,2,2,2,3]],[1708653375,[1,1,2,2,2,2,2,2,2,3]],[1708653376,[1,1,2,2,2,2,2,2,2,2]],[1708653377,[1,1,1,2,2,2,2,2,2,2]],[1708653378,[1,1,1,1,1,1,1,1,2,2]],[1708653379,[1,1,1,1,1,1,1,1,2,2]],[1708653380,[1,1,1,1,1,1,2,2,2,3]],[1708653381,[1,1,1,1,1,2,2,2,2,4]],[1708653382,[1,1,1,2,2,2,2,2,2,3]],[1708653383,[0,1,1,2,2,2,2,2,2,2]],[1708653384,[1,1,1,2,2,2,2,2,2,2]],[1708653385,[1,1,1,1,1,1,1,1,2,2]],[1708653386,[1,1,1,1,1,1,2,2,2,3]],[1708653387,[1,1,1,2,2,2,2,2,2,2]],[1708653388,[1,1,1,2,2,2,2,2,2,2]],[1708653389,[1,1,1,1,1,1,1,1,1,2]],[1708653390,[0,1,1,1,1,1,1,1,2,2]],[1708653391,[0,1,1,1,1,1,1,1,1,2]],[1708653392,[1,1,1,1,1,1,1,1,2,2]],[1708653393,[1,1,1,1,1,1,1,2,2,2]],[1708653394,[1,1,1,2,2,2,2,2,2,3]],[1708653395,[1,1,1,2,2,2,2,2,2,2]],[1708653396,[1,1,1,2,2,2,2,2,2,2]],[1708653397,[1,1,1,1,2,2,2,2,2,3]],[1708653398,[1,1,1,1,2,2,2,2,2,2]],[1708653399,[1,1,1,1,2,2,2,2,2,2]],[1708653400,[1,1,1,1,1,1,1,2,3,5]],[1708653401,[1,1,1,1,1,1,2,2,2,2]],[1708653402,[1,1,1,2,2,2,2,2,2,2]],[1708653403,[1,1,1,2,2,2,2,2,2,3]],[1708653404,[1,1,1,2,2,2,2,2,2,2]],[1708653405,[1,1,1,1,1,1,1,1,2,2]],[1708653406,[1,1,1,1,1,2,2,2,2,3]],[1708653407,[1,1,1,1,1,2,2,2,2,3]],[1708653408,[1,1,1,2,2,2,2,2,2,2]],[1708653409,[1,1,1,2,2,2,2,2,2,3]],[1708653410,[1,1,1,2,2,2,2,2,2,2]],[1708653411,[1,1,1,1,2,2,2,2,2,2]],[1708653412,[1,1,1,1,1,1,1,2,2,2]],[1708653413,[1,1,1,1,1,1,1,1,2,2]],[1708653414,[1,1,1,1,1,1,1,1,1,2]],[1708653415,[1,1,1,1,1,1,1,1,1,1]],[1708653416,[1,1,1,2,2,2,2,2,2,2]],[1708653417,[1,1,1,2,2,2,2,2,2,3]],[1708653418,[1,1,1,1,1,1,1,2,2,2]],[1708653419,[1,1,1,1,1,1,1,2,2,2]],[1708653420,[1,1,1,1,1,1,1,1,2,2]],[1708653421,[1,1,1,1,1,1,1,1,1,2]],[1708653422,[1,1,1,2,2,2,2,2,2,2]],[1708653423,[0,1,1,1,1,1,1,1,2,2]],[1708653424,[1,1,1,1,1,1,1,1,2,2]],[1708653425,[1,1,1,1,1,1,1,1,2,2]],[1708653426,[1,1,1,1,1,1,1,1,1,2]],[1708653427,[1,1,1,2,2,2,3,3,3,4]],[1708653428,[1,1,2,2,3,3,3,3,3,3]],[1708653429,[1,2,2,3,3,3,3,4,5,6]],[1708653430,[1,1,1,2,2,3,3,3,3,4]],[1708653431,[1,1,2,2,2,2,2,3,3,4]],[1708653432,[0,1,2,2,2,2,2,2,3,4]],[1708653433,[1,1,2,2,3,3,3,3,4,5]],[1708653434,[1,1,2,3,3,3,3,3,5,7]],[1708653435,[1,1,2,3,3,3,3,4,5,6]],[1708653436,[1,1,2,3,3,3,3,4,4,6]],[1708653437,[1,1,2,2,3,3,3,3,4,4]],[1708653438,[1,1,2,3,3,3,3,4,5,8]],[1708653439,[1,1,2,3,3,3,3,4,4,7]],[1708653440,[1,1,2,3,3,3,3,4,4,4]],[1708653441,[1,1,1,2,2,2,3,3,4,7]],[1708653442,[1,2,2,3,3,3,3,4,4,7]],[1708653443,[1,1,1,2,2,2,2,3,3,5]],[1708653444,[1,2,2,2,3,3,3,3,4,4]],[1708653445,[1,1,1,2,2,2,2,3,4,5]],[1708653446,[1,2,2,3,3,3,3,4,4,4]],[1708653447,[1,1,1,1,1,1,2,2,4,6]],[1708653448,[1,2,2,3,3,3,3,4,4,4]],[1708653449,[1,1,1,1,1,1,2,2,3,4]],[1708653450,[1,2,2,3,3,3,3,4,4,6]],[1708653451,[1,1,1,1,1,1,2,2,2,3]],[1708653452,[1,2,2,3,3,3,3,4,4,5]],[1708653453,[1,1,1,2,2,2,2,2,2,3]],[1708653454,[1,2,2,3,3,3,3,3,4,5]],[1708653455,[0,1,1,1,1,1,1,1,1,2]],[1708653456,[0,1,2,3,3,3,3,4,4,5]],[1708653457,[1,1,1,1,1,2,2,2,3,3]],[1708653458,[1,1,2,3,3,3,3,4,4,4]],[1708653459,[1,1,1,1,2,2,2,3,3,5]],[1708653460,[1,1,2,3,3,3,3,4,4,5]],[1708653461,[0,1,1,2,2,2,3,3,4,4]],[1708653462,[0,1,1,3,3,3,4,4,5,7]],[1708653463,[0,1,2,2,2,3,3,3,4,4]],[1708653464,[0,1,1,2,2,3,3,4,4,5]],[1708653465,[1,1,2,2,2,2,3,3,4,4]],[1708653466,[1,1,2,2,3,3,3,4,4,5]],[1708653467,[0,1,1,2,3,3,3,4,4,4]],[1708653468,[0,1,1,1,2,2,2,2,3,5]],[1708653469,[1,1,1,2,2,2,2,2,3,3]],[1708653470,[1,1,1,2,2,2,2,2,3,4]],[1708653471,[1,1,2,2,2,2,2,3,3,4]],[1708653472,[0,1,1,2,2,2,2,2,3,4]],[1708653473,[1,1,2,2,2,3,3,3,4,5]],[1708653474,[1,1,1,2,2,2,2,2,2,2]],[1708653475,[0,1,1,3,3,3,3,4,4,5]],[1708653476,[0,1,1,1,1,1,2,2,2,4]],[1708653477,[0,1,1,2,2,2,3,3,4,4]],[1708653478,[1,1,1,1,1,1,2,2,2,3]],[1708653479,[1,1,1,2,3,3,3,3,4,4]],[1708653480,[1,1,1,1,1,1,1,2,2,2]],[1708653481,[1,1,1,2,2,3,3,3,4,5]],[1708653482,[1,1,1,1,2,2,2,2,2,2]],[1708653483,[1,1,1,2,2,3,3,3,4,4]],[1708653484,[1,1,1,1,2,2,2,2,2,3]],[1708653485,[1,1,1,2,2,2,3,3,5,6]],[1708653486,[1,1,1,1,1,2,2,2,2,2]],[1708653487,[1,1,1,2,2,2,3,3,4,5]],[1708653488,[1,1,1,1,1,2,2,2,2,2]],[1708653489,[1,1,1,2,2,2,3,3,4,5]],[1708653490,[1,1,1,2,2,2,2,3,4,5]],[1708653491,[1,2,2,3,3,3,3,3,4,4]],[1708653492,[1,1,1,2,2,2,3,3,4,4]],[1708653493,[1,2,2,3,3,3,3,4,4,5]],[1708653494,[1,1,1,2,2,2,3,3,4,5]],[1708653495,[1,2,3,3,3,3,3,4,4,5]],[1708653496,[0,1,1,1,2,2,2,2,3,4]],[1708653497,[2,2,2,2,3,3,3,3,4,5]],[1708653498,[1,1,1,1,1,1,1,1,2,2]],[1708653499,[1,2,3,3,3,3,4,4,4,5]],[1708653500,[1,1,1,2,2,2,2,2,3,5]],[1708653501,[1,2,2,2,3,3,3,3,4,5]],[1708653502,[0,1,1,1,1,1,2,2,3,4]],[1708653503,[1,2,2,3,3,3,3,3,4,6]],[1708653504,[1,1,1,1,2,2,2,3,3,4]],[1708653505,[1,2,2,3,3,3,3,4,4,5]],[1708653506,[0,1,1,2,2,2,3,3,4,5]],[1708653507,[1,1,2,3,3,3,3,4,4,5]],[1708653508,[1,1,1,2,2,2,2,3,3,4]],[1708653509,[1,1,2,3,3,3,3,4,4,4]],[1708653510,[1,1,2,3,3,3,3,3,4,4]],[1708653511,[1,1,2,3,3,3,4,4,4,5]],[1708653512,[1,1,1,3,3,3,3,4,4,5]],[1708653513,[1,1,2,3,3,3,4,4,5,5]],[1708653514,[1,1,1,2,3,3,3,3,4,5]],[1708653515,[1,1,1,2,2,3,3,3,4,4]],[1708653516,[1,1,2,2,3,3,3,3,4,4]],[1708653517,[1,1,1,2,2,3,3,3,4,6]],[1708653518,[1,1,2,3,3,3,3,4,4,4]],[1708653519,[0,1,1,2,2,2,2,3,3,4]],[1708653520,[1,1,2,2,3,3,3,3,4,4]],[1708653521,[1,1,1,2,2,2,2,3,4,5]],[1708653522,[1,2,2,3,3,3,3,4,5,8]],[1708653523,[1,1,1,1,1,2,2,2,2,4]],[1708653524,[1,2,2,2,3,3,3,3,4,5]],[1708653525,[0,1,1,2,2,2,2,2,3,5]],[1708653526,[0,2,2,3,3,3,3,3,4,5]],[1708653527,[1,1,2,2,2,2,2,2,3,3]],[1708653528,[1,1,2,3,3,3,3,4,4,5]],[1708653529,[1,1,1,1,1,1,1,1,2,4]],[1708653530,[1,1,2,3,3,3,3,4,6,7]],[1708653531,[1,1,1,1,2,2,2,2,2,3]],[1708653532,[1,2,2,3,3,3,4,4,5,5]],[1708653533,[0,1,1,2,2,2,2,2,2,3]],[1708653534,[0,1,1,2,2,2,3,3,4,4]],[1708653535,[1,1,1,1,2,2,2,2,2,3]],[1708653536,[1,1,2,3,3,3,3,4,4,4]],[1708653537,[1,1,1,2,2,2,2,2,2,3]],[1708653538,[1,1,2,3,3,3,3,4,4,5]],[1708653539,[1,1,1,2,2,2,2,2,2,5]],[1708653540,[1,1,2,3,3,3,3,4,5,5]],[1708653541,[1,1,1,2,2,2,2,2,2,3]],[1708653542,[1,1,1,2,2,3,3,3,4,5]],[1708653543,[1,1,1,2,2,2,2,2,3,3]],[1708653544,[1,1,1,2,2,2,3,3,4,5]],[1708653545,[1,1,1,1,2,2,2,3,3,5]],[1708653546,[1,1,1,1,2,2,2,3,3,5]],[1708653547,[1,1,1,1,2,2,3,3,4,4]],[1708653548,[1,1,1,1,1,1,1,2,3,5]],[1708653549,[0,1,1,1,2,2,2,3,3,4]],[1708653550,[0,1,1,1,1,1,1,1,2,2]],[1708653551,[0,1,1,1,2,2,3,3,3,4]],[1708653552,[0,1,1,2,2,2,2,2,3,4]],[1708653553,[0,1,1,2,2,2,2,2,3,4]],[1708653554,[0,2,2,3,3,3,3,4,4,4]],[1708653555,[1,1,1,2,2,2,2,3,3,5]]]);
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([[1708653311,[25,0,25]],[1708653312,[1,0,1]],[1708653313,[25,0,25]],[1708653314,[1,1,0]],[1708653315,[51,31,20]],[1708653316,[3,2,1]],[1708653317,[6,4,2]],[1708653318,[9,6,3]],[1708653319,[11,7,4]],[1708653320,[13,9,4]],[1708653321,[18,12,6]],[1708653322,[19,13,6]],[1708653323,[24,16,8]],[1708653324,[26,18,8]],[1708653325,[27,18,9]],[1708653326,[32,22,10]],[1708653327,[34,23,11]],[1708653328,[37,25,12]],[1708653329,[39,26,13]],[1708653330,[43,29,14]],[1708653331,[44,30,14]],[1708653332,[48,32,16]],[1708653333,[50,34,16]],[1708653334,[54,37,17]],[1708653335,[57,39,18]],[1708653336,[60,40,20]],[1708653337,[61,41,20]],[1708653338,[65,44,21]],[1708653339,[67,45,22]],[1708653340,[70,48,22]],[1708653341,[74,50,24]],[1708653342,[76,51,25]],[1708653343,[80,54,26]],[1708653344,[81,55,26]],[1708653345,[84,57,27]],[1708653346,[87,59,28]],[1708653347,[91,61,30]],[1708653348,[92,62,30]],[1708653349,[96,65,31]],[1708653350,[98,66,32]],[1708653351,[101,69,32]],[1708653352,[105,71,34]],[1708653353,[108,73,35]],[1708653354,[109,74,35]],[1708653355,[114,77,37]],[1708653356,[115,78,37]],[1708653357,[118,79,39]],[1708653358,[121,82,39]],[1708653359,[124,84,40]],[1708653360,[126,85,41]],[1708653361,[129,87,42]],[1708653362,[133,90,43]],[1708653363,[134,91,43]],[1708653364,[138,93,45]],[1708653365,[141,96,45]],[1708653366,[143,96,47]],[1708653367,[146,99,47]],[1708653368,[149,101,48]],[1708653369,[152,103,49]],[1708653370,[155,105,50]],[1708653371,[157,106,51]],[1708653372,[160,108,52]],[1708653373,[164,111,53]],[1708653374,[165,112,53]],[1708653375,[170,115,55]],[1708653376,[172,116,56]],[1708653377,[174,118,56]],[1708653378,[176,119,57]],[1708653379,[181,122,59]],[1708653380,[183,124,59]],[1708653381,[185,125,60]],[1708653382,[189,128,61]],[1708653383,[191,129,62]],[1708653384,[194,131,63]],[1708653385,[196,133,63]],[1708653386,[200,135,65]],[1708653387,[202,137,65]],[1708653388,[206,139,67]],[1708653389,[208,140,68]],[1708653390,[211,143,68]],[1708653391,[213,144,69]],[1708653392,[217,147,70]],[1708653393,[220,149,71]],[1708653394,[222,150,72]],[1708653395,[224,152,72]],[1708653396,[228,154,74]],[1708653397,[230,156,74]],[1708653398,[234,158,76]],[1708653399,[235,159,76]],[1708653400,[239,161,78]],[1708653401,[242,164,78]],[1708653402,[244,165,79]],[1708653403,[248,168,80]],[1708653404,[251,170,81]],[1708653405,[252,170,82]],[1708653406,[256,174,82]],[1708653407,[259,175,84]],[1708653408,[262,177,85]],[1708653409,[265,179,86]],[1708653410,[266,180,86]],[1708653411,[270,183,87]],[1708653412,[272,184,88]],[1708653413,[275,186,89]],[1708653414,[279,189,90]],[1708653415,[281,190,91]],[1708653416,[284,192,92]],[1708653417,[286,193,93]],[1708653418,[290,196,94]],[1708653419,[291,197,94]],[1708653420,[296,200,96]],[1708653421,[298,202,96]],[1708653422,[300,203,97]],[1708653423,[304,206,98]],[1708653424,[306,207,99]],[1708653425,[310,209,101]],[1708653426,[312,211,101]],[1708653427,[314,213,101]],[1708653428,[319,215,104]],[1708653429,[320,217,103]],[1708653430,[323,218,105]],[1708653431,[325,220,105]],[1708653432,[331,224,107]],[1708653433,[331,224,107]],[1708653434,[334,226,108]],[1708653435,[338,229,109]],[1708653436,[340,230,110]],[1708653437,[340,230,110]],[1708653438,[340,230,110]],[1708653439,[340,230,110]],[1708653440,[340,230,110]],[1708653441,[340,230,110]],[1708653442,[340,230,110]],[1708653443,[340,230,110]],[1708653444,[340,230,110]],[1708653445,[340,230,110]],[1708653446,[340,230,110]],[1708653447,[340,230,110]],[1708653448,[340,230,110]],[1708653449,[340,230,110]],[1708653450,[340,230,110]],[1708653451,[340,230,110]],[1708653452,[340,230,110]],[1708653453,[340,230,110]],[1708653454,[340,230,110]],[1708653455,[340,230,110]],[1708653456,[340,230,110]],[1708653457,[340,230,110]],[1708653458,[340,230,110]],[1708653459,[340,230,110]],[1708653460,[340,230,110]],[1708653461,[340,230,110]],[1708653462,[340,230,110]],[1708653463,[340,230,110]],[1708653464,[340,230,110]],[1708653465,[340,230,110]],[1708653466,[340,230,110]],[1708653467,[340,230,110]],[1708653468,[340,230,110]],[1708653469,[340,230,110]],[1708653470,[340,230,110]],[1708653471,[340,230,110]],[1708653472,[340,230,110]],[1708653473,[340,230,110]],[1708653474,[340,230,110]],[1708653475,[340,230,110]],[1708653476,[340,230,110]],[1708653477,[340,230,110]],[1708653478,[340,230,110]],[1708653479,[340,230,110]],[1708653480,[340,230,110]],[1708653481,[340,230,110]],[1708653482,[340,230,110]],[1708653483,[340,230,110]],[1708653484,[340,230,110]],[1708653485,[340,230,110]],[1708653486,[340,230,110]],[1708653487,[340,230,110]],[1708653488,[340,230,110]],[1708653489,[340,230,110]],[1708653490,[340,230,110]],[1708653491,[340,230,110]],[1708653492,[340,230,110]],[1708653493,[340,230,110]],[1708653494,[340,230,110]],[1708653495,[340,230,110]],[1708653496,[340,230,110]],[1708653497,[340,230,110]],[1708653498,[340,230,110]],[1708653499,[340,230,110]],[1708653500,[340,230,110]],[1708653501,[340,230,110]],[1708653502,[340,230,110]],[1708653503,[340,230,110]],[1708653504,[340,230,110]],[1708653505,[340,230,110]],[1708653506,[340,230,110]],[1708653507,[340,230,110]],[1708653508,[340,230,110]],[1708653509,[340,230,110]],[1708653510,[340,230,110]],[1708653511,[340,230,110]],[1708653512,[340,230,110]],[1708653513,[340,230,110]],[1708653514,[340,230,110]],[1708653515,[340,230,110]],[1708653516,[340,230,110]],[1708653517,[340,230,110]],[1708653518,[340,230,110]],[1708653519,[340,230,110]],[1708653520,[340,230,110]],[1708653521,[340,230,110]],[1708653522,[340,230,110]],[1708653523,[340,230,110]],[1708653524,[340,230,110]],[1708653525,[340,230,110]],[1708653526,[340,230,110]],[1708653527,[340,230,110]],[1708653528,[340,230,110]],[1708653529,[340,230,110]],[1708653530,[340,230,110]],[1708653531,[340,230,110]],[1708653532,[340,230,110]],[1708653533,[340,230,110]],[1708653534,[340,230,110]],[1708653535,[340,230,110]],[1708653536,[340,230,110]],[1708653537,[340,230,110]],[1708653538,[340,230,110]],[1708653539,[340,230,110]],[1708653540,[340,230,110]],[1708653541,[340,230,110]],[1708653542,[340,230,110]],[1708653543,[340,230,110]],[1708653544,[340,230,110]],[1708653545,[340,230,110]],[1708653546,[340,230,110]],[1708653547,[340,230,110]],[1708653548,[340,230,110]],[1708653549,[340,230,110]],[1708653550,[339,229,110]],[1708653551,[341,231,110]],[1708653552,[340,230,110]],[1708653553,[340,230,110]],[1708653554,[340,230,110]],[1708653555,[503,340,163]]]);
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' }
}
}