-
Notifications
You must be signed in to change notification settings - Fork 923
/
Copy pathindex.html
1200 lines (1130 loc) · 105 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-19 11:40:47 GMT</span>
</span>
<span class="simulation-information-item">
<span class="simulation-information-label">Duration: </span>
<span>4m 34s </span>
</span>
<span class="simulation-tooltip simulation-information-item description" title="Description" data-content="Rinha de Backend - 2024/Q1: Crébito - marincor">
<span class="simulation-information-label">Description: </span>
<span>Rinha de Backend - 2024/Q1: Crébito - marincor</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">Request timeout to localhost/127.0.0.1:9999 after 60000 ms<span class="value" style="display:none">0</span></td>
<td class="value error-col-2 total ko">2223</td>
<td class="value error-col-3 total ko">62.992 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">j.i.IOException: Premature close<span class="value" style="display:none">1</span></td>
<td class="value error-col-2 total ko">1306</td>
<td class="value error-col-3 total ko">37.008 %</td>
</tr>
</tbody>
</table>
</div>
<div class="schema geant">
<div id="active_users" class="geant"></div>
</div>
<div class="schema geant">
<div id="responsetimeDistributionContainer" class="geant"></div>
</div>
<div class="schema geant">
<div id="responsetimepercentilesovertimeokPercentilesContainer" class="geant"></div>
</div>
<div class="schema geant">
<div id="requests" class="geant"></div>
</div>
<div class="schema geant">
<div id="responses" class="geant"></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<script>
var pageStats = stats.stats;
$(document).ready(function() {
$('.simulation-tooltip').popover({trigger:'hover', placement:'left'});
setDetailsLinkUrl();
setGlobalMenu();
setActiveMenu();
fillStats(pageStats);
Highcharts.setOptions({
global: { useUTC: false }
});
var rangesChart = new Highcharts.Chart({
chart: {
renderTo: 'ranges',
marginRight: 100
},
credits: { enabled: false },
legend: { enabled: false },
title: { text: 'A title to let highcharts reserve the place for the title set later' },
xAxis: {
categories: [
pageStats.group1.htmlName,
pageStats.group2.htmlName,
pageStats.group3.htmlName,
pageStats.group4.htmlName
]
},
yAxis: {
title: { text: 'Number of Requests' },
reversedStacks: false
},
tooltip: {
formatter: function() {
var s;
if (this.point.name) { // the pie chart
s = ''+ this.point.name +': '+ this.y +'% requests';
} else {
s = ''+ this.y + ' requests';
}
return s;
}
},
plotOptions: {
series: {
stacking: 'normal',
shadow: true
}
},
series: [
{
type: 'column',
data: [{
color: '#68b65c',
y: pageStats.group1.count
},
{
color: '#FFDD00',
y: pageStats.group2.count
},
{
color: '#FFA900',
y: pageStats.group3.count
},
{
color: '#f15b4f',
y: pageStats.group4.count
}]
},
{
type: 'pie',
name: 'Percentages',
data: [
{
name: pageStats.group1.name,
y: pageStats.group1.percentage,
color: '#68b65c'
},
{
name: pageStats.group2.name,
y: pageStats.group2.percentage,
color: '#FFDD00'
},
{
name: pageStats.group3.name,
y: pageStats.group3.percentage,
color: '#FFA900'
},
{
name: pageStats.group4.name,
y: pageStats.group4.percentage,
color: '#f15b4f'
}
],
center: [345, 0],
size: 90,
showInLegend: false,
dataLabels: { enabled: false }
}
]
});
rangesChart.setTitle({
text: '<span class="chart_title">Response Time Ranges</span>',
useHTML: true
});
function numberOfRequestsDataForGroup(group) {
var data = {names: [], oks: [], kos: []};
$.each(group.contents, function(contentName, content) {
if (content.type == 'GROUP') {
var result = numberOfRequestsDataForGroup(content);
data.names = data.names.concat(result.names);
data.oks = data.oks.concat(result.oks);
data.kos = data.kos.concat(result.kos);
}
else if (content.type == 'REQUEST') {
data.names.push(content.path);
data.oks.push(parseInt(content.stats.numberOfRequests.ok));
data.kos.push(parseInt(content.stats.numberOfRequests.ko));
}
});
return data;
}
var numberOfRequestsData = numberOfRequestsDataForGroup(stats);
var tickInterval = Math.ceil(numberOfRequestsData.names.length / 1000);
new Highcharts.Chart({
chart: {
renderTo:'container_number_of_requests',
polar:true,
type:'column',
height:330
},
credits:{
enabled:false
},
title:{
text:'<span class="chart_title">Number of requests</span>',
useHTML: true,
widthAdjust:-20
},
xAxis:{
tickmarkPlacement:'on',
tickInterval: tickInterval,
categories:numberOfRequestsData.names,
labels:{ enabled:false }
},
yAxis:{
min:0,
reversedStacks: false
},
plotOptions:{
series:{
stacking:'normal',
groupPadding:0,
pointPlacement:'on',
shadow: true
}
},
legend: {
borderWidth: 0,
itemStyle: { fontWeight: "normal" },
symbolRadius: 0
},
series:[
{
name:'OK',
data:numberOfRequestsData.oks,
color:"#68b65c"
},
{
name:'KO',
data:numberOfRequestsData.kos,
color:"#f15b4f"
}
]
});
$('#container_exceptions').sortable('#container_exceptions');
function generateHtmlRow(request, level, index, parent, group) {
if (request.name == 'All Requests')
var url = 'index.html';
else
var url = request.pathFormatted + '.html';
if (group)
var expandButtonStyle = '';
else
var expandButtonStyle = ' hidden';
if (request.stats.numberOfRequests.total != 0)
var koPercent = (request.stats.numberOfRequests.ko * 100 / request.stats.numberOfRequests.total).toFixed(0) + '%';
else
var koPercent = '-'
return '<tr id="' + request.pathFormatted + '" data-parent=' + parent + '> \
<td class="total col-1"> \
<div class="expandable-container"> \
<span id="' + request.pathFormatted + '" style="margin-left: ' + (level * 10) + 'px;" class="expand-button' + expandButtonStyle + '"> </span> \
<a href="' + url +'" class="withTooltip">' + ellipsedLabel({ name: request.name, parentClass: "table-cell-tooltip" }) + '</a><span class="value" style="display:none;">' + index + '</span> \
</div> \
</td> \
<td class="value total col-2">' + request.stats.numberOfRequests.total + '</td> \
<td class="value ok col-3">' + request.stats.numberOfRequests.ok + '</td> \
<td class="value ko col-4">' + request.stats.numberOfRequests.ko + '</td> \
<td class="value ko col-5">' + koPercent + '</td> \
<td class="value total col-6">' + request.stats.meanNumberOfRequestsPerSecond.total + '</td> \
<td class="value total col-7">' + request.stats.minResponseTime.total + '</td> \
<td class="value total col-8">' + request.stats.percentiles1.total + '</td> \
<td class="value total col-9">' + request.stats.percentiles2.total + '</td> \
<td class="value total col-10">' + request.stats.percentiles3.total + '</td> \
<td class="value total col-11">' + request.stats.percentiles4.total + '</td> \
<td class="value total col-12">' + request.stats.maxResponseTime.total + '</td> \
<td class="value total col-13">' + request.stats.meanResponseTime.total + '</td> \
<td class="value total col-14">' + request.stats.standardDeviation.total + '</td> \
</tr>';
}
function generateHtmlRowsForGroup(group, level, index, parent) {
var buffer = '';
if (!parent)
parent = 'ROOT';
else {
buffer += generateHtmlRow(group, level - 1, index, parent, true);
index++;
parent = group.pathFormatted;
}
$.each(group.contents, function(contentName, content) {
if (content.type == 'GROUP') {
var result = generateHtmlRowsForGroup(content, level + 1, index, parent);
buffer += result.html;
index = result.index;
}
else if (content.type == 'REQUEST') {
buffer += generateHtmlRow(content, level, index, parent);
index++;
}
});
return { html: buffer, index: index };
}
$('#container_statistics_head tbody').append(generateHtmlRow(stats, 0, 0));
var lines = generateHtmlRowsForGroup(stats, 0, 0);
$('#container_statistics_body tbody').append(lines.html);
$('#container_statistics_head').sortable('#container_statistics_body');
$('.statistics').expandable();
if (lines.index < 30) {
$('#statistics_title span').attr('style', 'display: none;');
} else {
$('#statistics_title').addClass('title_collapsed');
$('#statistics_title').click(function() {
$('#toggle-stats').toggleClass("off");
$(this).toggleClass('title_collapsed').toggleClass('title_expanded');
$('#container_statistics_body').parent().toggleClass('scrollable').toggleClass('');
});
}
$('.table-cell-tooltip').popover({trigger:'hover'});
$('#container_errors').sortable('#container_errors');
allUsersData.yAxis = 0;
var allUsersChart = new Highcharts.StockChart({
chart: {
renderTo: 'active_users',
zoomType: 'x'
},
credits: { enabled: false },
legend: {
enabled: true,
floating: true,
align: 'right',
verticalAlign: 'top',
layout: 'vertical',
borderWidth: 0,
itemStyle: { fontWeight: "normal" },
symbolRadius: 0
},
title: { text: 'A title to let highcharts reserve the place for the title set later' },
navigator: {
maskInside: false
},
rangeSelector: {
buttonSpacing: 0,
buttonTheme: {
fill: '#CFC9C6',
padding: 1,
stroke: '#000000',
'stroke-width': 0.25,
style: {
color: '#000000',
fontWeight: 'bold',
},
states: {
stroke: '#000000',
'stroke-width': 0.25,
hover: {
fill: '#92918C',
style: { color: 'black' }
},
select: {
fill: '#FFA900',
style: { color: 'white' }
}
}
},
buttons : [
{
type : 'minute',
count : 1,
text : '1m'
}, {
type : 'minute',
count : 10,
text : '10m'
}, {
type : 'hour',
count : 1,
text : '1h'
}, {
type : 'all',
count : 1,
text : 'All'
}
],
selected : 3,
inputEnabled : false
},
xAxis: {
type: 'datetime',
ordinal: false,
maxZoom: 10000 // three days
},
yAxis: {
title: { text: 'Number of Active Users' },
opposite: false,
min: 0
},
series: [
{
color: '#5E7BE2',
name: 'créditos',
data: [
[1708342847000,0],[1708342848000,0],[1708342849000,0],[1708342850000,0],[1708342851000,1],[1708342852000,2],[1708342853000,2],[1708342854000,4],[1708342855000,4],[1708342856000,5],[1708342857000,6],[1708342858000,7],[1708342859000,8],[1708342860000,9],[1708342861000,10],[1708342862000,10],[1708342863000,12],[1708342864000,12],[1708342865000,14],[1708342866000,14],[1708342867000,15],[1708342868000,16],[1708342869000,17],[1708342870000,17],[1708342871000,19],[1708342872000,20],[1708342873000,20],[1708342874000,22],[1708342875000,22],[1708342876000,23],[1708342877000,25],[1708342878000,25],[1708342879000,26],[1708342880000,26],[1708342881000,28],[1708342882000,29],[1708342883000,30],[1708342884000,30],[1708342885000,32],[1708342886000,32],[1708342887000,33],[1708342888000,34],[1708342889000,35],[1708342890000,36],[1708342891000,37],[1708342892000,38],[1708342893000,39],[1708342894000,40],[1708342895000,41],[1708342896000,41],[1708342897000,43],[1708342898000,43],[1708342899000,44],[1708342900000,45],[1708342901000,46],[1708342902000,48],[1708342903000,48],[1708342904000,48],[1708342905000,50],[1708342906000,50],[1708342907000,52],[1708342908000,53],[1708342909000,53],[1708342910000,55],[1708342911000,56],[1708342912000,56],[1708342913000,58],[1708342914000,59],[1708342915000,60],[1708342916000,60],[1708342917000,62],[1708342918000,62],[1708342919000,64],[1708342920000,64],[1708342921000,65],[1708342922000,66],[1708342923000,67],[1708342924000,67],[1708342925000,68],[1708342926000,69],[1708342927000,70],[1708342928000,70],[1708342929000,72],[1708342930000,72],[1708342931000,73],[1708342932000,74],[1708342933000,75],[1708342934000,76],[1708342935000,77],[1708342936000,79],[1708342937000,80],[1708342938000,79],[1708342939000,81],[1708342940000,81],[1708342941000,82],[1708342942000,83],[1708342943000,85],[1708342944000,85],[1708342945000,86],[1708342946000,86],[1708342947000,88],[1708342948000,90],[1708342949000,89],[1708342950000,91],[1708342951000,91],[1708342952000,92],[1708342953000,94],[1708342954000,95],[1708342955000,96],[1708342956000,97],[1708342957000,97],[1708342958000,97],[1708342959000,99],[1708342960000,99],[1708342961000,101],[1708342962000,101],[1708342963000,103],[1708342964000,103],[1708342965000,104],[1708342966000,106],[1708342967000,107],[1708342968000,108],[1708342969000,108],[1708342970000,110],[1708342971000,110],[1708342972000,111],[1708342973000,111],[1708342974000,111],[1708342975000,111],[1708342976000,111],[1708342977000,111],[1708342978000,111],[1708342979000,110],[1708342980000,111],[1708342981000,111],[1708342982000,111],[1708342983000,110],[1708342984000,111],[1708342985000,112],[1708342986000,110],[1708342987000,112],[1708342988000,112],[1708342989000,111],[1708342990000,111],[1708342991000,111],[1708342992000,124],[1708342993000,111],[1708342994000,111],[1708342995000,111],[1708342996000,111],[1708342997000,128],[1708342998000,177],[1708342999000,223],[1708343000000,310],[1708343001000,367],[1708343002000,360],[1708343003000,366],[1708343004000,389],[1708343005000,416],[1708343006000,415],[1708343007000,402],[1708343008000,398],[1708343009000,410],[1708343010000,442],[1708343011000,452],[1708343012000,481],[1708343013000,517],[1708343014000,513],[1708343015000,528],[1708343016000,551],[1708343017000,584],[1708343018000,607],[1708343019000,622],[1708343020000,672],[1708343021000,713],[1708343022000,768],[1708343023000,804],[1708343024000,842],[1708343025000,873],[1708343026000,919],[1708343027000,951],[1708343028000,1004],[1708343029000,1034],[1708343030000,1049],[1708343031000,1087],[1708343032000,1128],[1708343033000,1163],[1708343034000,1199],[1708343035000,1230],[1708343036000,1289],[1708343037000,1334],[1708343038000,1369],[1708343039000,1409],[1708343040000,1439],[1708343041000,1482],[1708343042000,1541],[1708343043000,1596],[1708343044000,1662],[1708343045000,1703],[1708343046000,1745],[1708343047000,1791],[1708343048000,1835],[1708343049000,1889],[1708343050000,1936],[1708343051000,1970],[1708343052000,2026],[1708343053000,2076],[1708343054000,2128],[1708343055000,2183],[1708343056000,2240],[1708343057000,2281],[1708343058000,2313],[1708343059000,2336],[1708343060000,2377],[1708343061000,2417],[1708343062000,2469],[1708343063000,2460],[1708343064000,2448],[1708343065000,2418],[1708343066000,2385],[1708343067000,2322],[1708343068000,2301],[1708343069000,2261],[1708343070000,2242],[1708343071000,2222],[1708343072000,2202],[1708343073000,2170],[1708343074000,2172],[1708343075000,2160],[1708343076000,2127],[1708343077000,2129],[1708343078000,2109],[1708343079000,2107],[1708343080000,2081],[1708343081000,2099],[1708343082000,2099],[1708343083000,2084],[1708343084000,2075],[1708343085000,2069],[1708343086000,2001],[1708343087000,1961],[1708343088000,1895],[1708343089000,1875],[1708343090000,1854],[1708343091000,1840],[1708343092000,1707],[1708343093000,1584],[1708343094000,1469],[1708343095000,1354],[1708343096000,1241],[1708343097000,1113],[1708343098000,976],[1708343099000,869],[1708343100000,760],[1708343101000,662],[1708343102000,566],[1708343103000,464],[1708343104000,345],[1708343105000,313],[1708343106000,273],[1708343107000,252],[1708343108000,227],[1708343109000,203],[1708343110000,162],[1708343111000,135],[1708343112000,104],[1708343113000,99],[1708343114000,77],[1708343115000,51],[1708343116000,42],[1708343117000,29],[1708343118000,25],[1708343119000,14],[1708343120000,6],[1708343121000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#68b65c',
name: 'débitos',
data: [
[1708342847000,0],[1708342848000,0],[1708342849000,0],[1708342850000,0],[1708342851000,1],[1708342852000,2],[1708342853000,4],[1708342854000,6],[1708342855000,7],[1708342856000,9],[1708342857000,11],[1708342858000,13],[1708342859000,15],[1708342860000,16],[1708342861000,19],[1708342862000,20],[1708342863000,22],[1708342864000,24],[1708342865000,25],[1708342866000,28],[1708342867000,29],[1708342868000,31],[1708342869000,33],[1708342870000,35],[1708342871000,37],[1708342872000,38],[1708342873000,40],[1708342874000,42],[1708342875000,44],[1708342876000,46],[1708342877000,47],[1708342878000,50],[1708342879000,51],[1708342880000,54],[1708342881000,56],[1708342882000,56],[1708342883000,60],[1708342884000,61],[1708342885000,63],[1708342886000,65],[1708342887000,66],[1708342888000,69],[1708342889000,69],[1708342890000,71],[1708342891000,74],[1708342892000,74],[1708342893000,77],[1708342894000,80],[1708342895000,80],[1708342896000,82],[1708342897000,84],[1708342898000,86],[1708342899000,88],[1708342900000,89],[1708342901000,92],[1708342902000,94],[1708342903000,95],[1708342904000,97],[1708342905000,98],[1708342906000,101],[1708342907000,102],[1708342908000,104],[1708342909000,107],[1708342910000,109],[1708342911000,111],[1708342912000,112],[1708342913000,114],[1708342914000,116],[1708342915000,118],[1708342916000,119],[1708342917000,121],[1708342918000,123],[1708342919000,124],[1708342920000,127],[1708342921000,129],[1708342922000,129],[1708342923000,133],[1708342924000,133],[1708342925000,135],[1708342926000,138],[1708342927000,139],[1708342928000,141],[1708342929000,143],[1708342930000,144],[1708342931000,147],[1708342932000,147],[1708342933000,151],[1708342934000,152],[1708342935000,153],[1708342936000,157],[1708342937000,158],[1708342938000,160],[1708342939000,162],[1708342940000,163],[1708342941000,166],[1708342942000,167],[1708342943000,169],[1708342944000,171],[1708342945000,172],[1708342946000,175],[1708342947000,176],[1708342948000,178],[1708342949000,179],[1708342950000,182],[1708342951000,184],[1708342952000,185],[1708342953000,187],[1708342954000,189],[1708342955000,191],[1708342956000,194],[1708342957000,194],[1708342958000,196],[1708342959000,198],[1708342960000,200],[1708342961000,201],[1708342962000,202],[1708342963000,205],[1708342964000,207],[1708342965000,209],[1708342966000,212],[1708342967000,214],[1708342968000,216],[1708342969000,218],[1708342970000,219],[1708342971000,222],[1708342972000,220],[1708342973000,223],[1708342974000,220],[1708342975000,222],[1708342976000,221],[1708342977000,223],[1708342978000,221],[1708342979000,221],[1708342980000,221],[1708342981000,222],[1708342982000,221],[1708342983000,221],[1708342984000,221],[1708342985000,222],[1708342986000,221],[1708342987000,222],[1708342988000,223],[1708342989000,221],[1708342990000,222],[1708342991000,221],[1708342992000,248],[1708342993000,221],[1708342994000,221],[1708342995000,221],[1708342996000,223],[1708342997000,256],[1708342998000,340],[1708342999000,417],[1708343000000,586],[1708343001000,662],[1708343002000,645],[1708343003000,665],[1708343004000,733],[1708343005000,720],[1708343006000,702],[1708343007000,679],[1708343008000,679],[1708343009000,698],[1708343010000,774],[1708343011000,762],[1708343012000,786],[1708343013000,841],[1708343014000,854],[1708343015000,886],[1708343016000,949],[1708343017000,1000],[1708343018000,1056],[1708343019000,1097],[1708343020000,1184],[1708343021000,1282],[1708343022000,1349],[1708343023000,1453],[1708343024000,1543],[1708343025000,1622],[1708343026000,1677],[1708343027000,1776],[1708343028000,1852],[1708343029000,1908],[1708343030000,1946],[1708343031000,2008],[1708343032000,2075],[1708343033000,2161],[1708343034000,2252],[1708343035000,2295],[1708343036000,2406],[1708343037000,2489],[1708343038000,2601],[1708343039000,2679],[1708343040000,2766],[1708343041000,2832],[1708343042000,2947],[1708343043000,3046],[1708343044000,3158],[1708343045000,3232],[1708343046000,3315],[1708343047000,3387],[1708343048000,3499],[1708343049000,3576],[1708343050000,3670],[1708343051000,3758],[1708343052000,3877],[1708343053000,3973],[1708343054000,4060],[1708343055000,4181],[1708343056000,4267],[1708343057000,4350],[1708343058000,4433],[1708343059000,4491],[1708343060000,4593],[1708343061000,4660],[1708343062000,4772],[1708343063000,4727],[1708343064000,4699],[1708343065000,4616],[1708343066000,4554],[1708343067000,4457],[1708343068000,4428],[1708343069000,4357],[1708343070000,4320],[1708343071000,4283],[1708343072000,4252],[1708343073000,4196],[1708343074000,4192],[1708343075000,4157],[1708343076000,4118],[1708343077000,4104],[1708343078000,4057],[1708343079000,4087],[1708343080000,4019],[1708343081000,4036],[1708343082000,4009],[1708343083000,3983],[1708343084000,4015],[1708343085000,3972],[1708343086000,3869],[1708343087000,3767],[1708343088000,3680],[1708343089000,3605],[1708343090000,3560],[1708343091000,3517],[1708343092000,3273],[1708343093000,3011],[1708343094000,2755],[1708343095000,2514],[1708343096000,2295],[1708343097000,2091],[1708343098000,1843],[1708343099000,1586],[1708343100000,1410],[1708343101000,1257],[1708343102000,1085],[1708343103000,907],[1708343104000,690],[1708343105000,643],[1708343106000,560],[1708343107000,510],[1708343108000,446],[1708343109000,384],[1708343110000,322],[1708343111000,279],[1708343112000,232],[1708343113000,212],[1708343114000,174],[1708343115000,120],[1708343116000,100],[1708343117000,72],[1708343118000,58],[1708343119000,36],[1708343120000,16],[1708343121000,5]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#f15b4f',
name: 'extratos',
data: [
[1708342847000,0],[1708342848000,0],[1708342849000,0],[1708342850000,0],[1708342851000,1],[1708342852000,1],[1708342853000,1],[1708342854000,1],[1708342855000,1],[1708342856000,1],[1708342857000,2],[1708342858000,1],[1708342859000,2],[1708342860000,2],[1708342861000,1],[1708342862000,2],[1708342863000,2],[1708342864000,2],[1708342865000,2],[1708342866000,2],[1708342867000,2],[1708342868000,2],[1708342869000,3],[1708342870000,2],[1708342871000,3],[1708342872000,2],[1708342873000,3],[1708342874000,2],[1708342875000,3],[1708342876000,3],[1708342877000,3],[1708342878000,3],[1708342879000,3],[1708342880000,3],[1708342881000,3],[1708342882000,4],[1708342883000,3],[1708342884000,3],[1708342885000,4],[1708342886000,3],[1708342887000,4],[1708342888000,4],[1708342889000,4],[1708342890000,4],[1708342891000,4],[1708342892000,4],[1708342893000,4],[1708342894000,4],[1708342895000,4],[1708342896000,4],[1708342897000,5],[1708342898000,4],[1708342899000,5],[1708342900000,5],[1708342901000,4],[1708342902000,5],[1708342903000,5],[1708342904000,5],[1708342905000,5],[1708342906000,5],[1708342907000,5],[1708342908000,5],[1708342909000,6],[1708342910000,5],[1708342911000,6],[1708342912000,5],[1708342913000,6],[1708342914000,5],[1708342915000,6],[1708342916000,6],[1708342917000,6],[1708342918000,6],[1708342919000,6],[1708342920000,6],[1708342921000,6],[1708342922000,7],[1708342923000,6],[1708342924000,6],[1708342925000,7],[1708342926000,6],[1708342927000,7],[1708342928000,7],[1708342929000,7],[1708342930000,7],[1708342931000,7],[1708342932000,7],[1708342933000,7],[1708342934000,7],[1708342935000,7],[1708342936000,7],[1708342937000,8],[1708342938000,7],[1708342939000,8],[1708342940000,8],[1708342941000,7],[1708342942000,8],[1708342943000,8],[1708342944000,8],[1708342945000,8],[1708342946000,8],[1708342947000,8],[1708342948000,8],[1708342949000,9],[1708342950000,8],[1708342951000,9],[1708342952000,8],[1708342953000,9],[1708342954000,8],[1708342955000,9],[1708342956000,9],[1708342957000,9],[1708342958000,9],[1708342959000,9],[1708342960000,9],[1708342961000,9],[1708342962000,10],[1708342963000,9],[1708342964000,9],[1708342965000,10],[1708342966000,9],[1708342967000,10],[1708342968000,10],[1708342969000,10],[1708342970000,10],[1708342971000,10],[1708342972000,10],[1708342973000,10],[1708342974000,10],[1708342975000,10],[1708342976000,10],[1708342977000,10],[1708342978000,10],[1708342979000,10],[1708342980000,10],[1708342981000,10],[1708342982000,10],[1708342983000,10],[1708342984000,10],[1708342985000,10],[1708342986000,10],[1708342987000,10],[1708342988000,10],[1708342989000,10],[1708342990000,10],[1708342991000,10],[1708342992000,10],[1708342993000,10],[1708342994000,10],[1708342995000,10],[1708342996000,10],[1708342997000,10],[1708342998000,12],[1708342999000,17],[1708343000000,24],[1708343001000,29],[1708343002000,27],[1708343003000,27],[1708343004000,32],[1708343005000,36],[1708343006000,31],[1708343007000,31],[1708343008000,32],[1708343009000,33],[1708343010000,30],[1708343011000,37],[1708343012000,40],[1708343013000,41],[1708343014000,41],[1708343015000,45],[1708343016000,47],[1708343017000,47],[1708343018000,50],[1708343019000,51],[1708343020000,55],[1708343021000,60],[1708343022000,64],[1708343023000,68],[1708343024000,73],[1708343025000,77],[1708343026000,80],[1708343027000,84],[1708343028000,88],[1708343029000,91],[1708343030000,94],[1708343031000,94],[1708343032000,98],[1708343033000,100],[1708343034000,102],[1708343035000,104],[1708343036000,110],[1708343037000,116],[1708343038000,122],[1708343039000,124],[1708343040000,127],[1708343041000,135],[1708343042000,143],[1708343043000,151],[1708343044000,159],[1708343045000,167],[1708343046000,174],[1708343047000,179],[1708343048000,189],[1708343049000,192],[1708343050000,197],[1708343051000,202],[1708343052000,211],[1708343053000,221],[1708343054000,227],[1708343055000,234],[1708343056000,242],[1708343057000,250],[1708343058000,257],[1708343059000,265],[1708343060000,273],[1708343061000,279],[1708343062000,288],[1708343063000,295],[1708343064000,301],[1708343065000,308],[1708343066000,312],[1708343067000,312],[1708343068000,313],[1708343069000,312],[1708343070000,307],[1708343071000,303],[1708343072000,297],[1708343073000,296],[1708343074000,295],[1708343075000,292],[1708343076000,280],[1708343077000,277],[1708343078000,271],[1708343079000,267],[1708343080000,261],[1708343081000,262],[1708343082000,263],[1708343083000,261],[1708343084000,261],[1708343085000,258],[1708343086000,253],[1708343087000,246],[1708343088000,238],[1708343089000,233],[1708343090000,231],[1708343091000,227],[1708343092000,213],[1708343093000,199],[1708343094000,183],[1708343095000,172],[1708343096000,158],[1708343097000,143],[1708343098000,128],[1708343099000,113],[1708343100000,104],[1708343101000,93],[1708343102000,81],[1708343103000,72],[1708343104000,55],[1708343105000,50],[1708343106000,46],[1708343107000,41],[1708343108000,35],[1708343109000,31],[1708343110000,28],[1708343111000,22],[1708343112000,15],[1708343113000,14],[1708343114000,11],[1708343115000,8],[1708343116000,8],[1708343117000,7],[1708343118000,6],[1708343119000,5],[1708343120000,2],[1708343121000,1]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FFDD00',
name: 'validação HTTP 404',
data: [
[1708342847000,0],[1708342848000,0],[1708342849000,0],[1708342850000,1],[1708342851000,0],[1708342852000,0],[1708342853000,0],[1708342854000,0],[1708342855000,0],[1708342856000,0],[1708342857000,0],[1708342858000,0],[1708342859000,0],[1708342860000,0],[1708342861000,0],[1708342862000,0],[1708342863000,0],[1708342864000,0],[1708342865000,0],[1708342866000,0],[1708342867000,0],[1708342868000,0],[1708342869000,0],[1708342870000,0],[1708342871000,0],[1708342872000,0],[1708342873000,0],[1708342874000,0],[1708342875000,0],[1708342876000,0],[1708342877000,0],[1708342878000,0],[1708342879000,0],[1708342880000,0],[1708342881000,0],[1708342882000,0],[1708342883000,0],[1708342884000,0],[1708342885000,0],[1708342886000,0],[1708342887000,0],[1708342888000,0],[1708342889000,0],[1708342890000,0],[1708342891000,0],[1708342892000,0],[1708342893000,0],[1708342894000,0],[1708342895000,0],[1708342896000,0],[1708342897000,0],[1708342898000,0],[1708342899000,0],[1708342900000,0],[1708342901000,0],[1708342902000,0],[1708342903000,0],[1708342904000,0],[1708342905000,0],[1708342906000,0],[1708342907000,0],[1708342908000,0],[1708342909000,0],[1708342910000,0],[1708342911000,0],[1708342912000,0],[1708342913000,0],[1708342914000,0],[1708342915000,0],[1708342916000,0],[1708342917000,0],[1708342918000,0],[1708342919000,0],[1708342920000,0],[1708342921000,0],[1708342922000,0],[1708342923000,0],[1708342924000,0],[1708342925000,0],[1708342926000,0],[1708342927000,0],[1708342928000,0],[1708342929000,0],[1708342930000,0],[1708342931000,0],[1708342932000,0],[1708342933000,0],[1708342934000,0],[1708342935000,0],[1708342936000,0],[1708342937000,0],[1708342938000,0],[1708342939000,0],[1708342940000,0],[1708342941000,0],[1708342942000,0],[1708342943000,0],[1708342944000,0],[1708342945000,0],[1708342946000,0],[1708342947000,0],[1708342948000,0],[1708342949000,0],[1708342950000,0],[1708342951000,0],[1708342952000,0],[1708342953000,0],[1708342954000,0],[1708342955000,0],[1708342956000,0],[1708342957000,0],[1708342958000,0],[1708342959000,0],[1708342960000,0],[1708342961000,0],[1708342962000,0],[1708342963000,0],[1708342964000,0],[1708342965000,0],[1708342966000,0],[1708342967000,0],[1708342968000,0],[1708342969000,0],[1708342970000,0],[1708342971000,0],[1708342972000,0],[1708342973000,0],[1708342974000,0],[1708342975000,0],[1708342976000,0],[1708342977000,0],[1708342978000,0],[1708342979000,0],[1708342980000,0],[1708342981000,0],[1708342982000,0],[1708342983000,0],[1708342984000,0],[1708342985000,0],[1708342986000,0],[1708342987000,0],[1708342988000,0],[1708342989000,0],[1708342990000,0],[1708342991000,0],[1708342992000,0],[1708342993000,0],[1708342994000,0],[1708342995000,0],[1708342996000,0],[1708342997000,0],[1708342998000,0],[1708342999000,0],[1708343000000,0],[1708343001000,0],[1708343002000,0],[1708343003000,0],[1708343004000,0],[1708343005000,0],[1708343006000,0],[1708343007000,0],[1708343008000,0],[1708343009000,0],[1708343010000,0],[1708343011000,0],[1708343012000,0],[1708343013000,0],[1708343014000,0],[1708343015000,0],[1708343016000,0],[1708343017000,0],[1708343018000,0],[1708343019000,0],[1708343020000,0],[1708343021000,0],[1708343022000,0],[1708343023000,0],[1708343024000,0],[1708343025000,0],[1708343026000,0],[1708343027000,0],[1708343028000,0],[1708343029000,0],[1708343030000,0],[1708343031000,0],[1708343032000,0],[1708343033000,0],[1708343034000,0],[1708343035000,0],[1708343036000,0],[1708343037000,0],[1708343038000,0],[1708343039000,0],[1708343040000,0],[1708343041000,0],[1708343042000,0],[1708343043000,0],[1708343044000,0],[1708343045000,0],[1708343046000,0],[1708343047000,0],[1708343048000,0],[1708343049000,0],[1708343050000,0],[1708343051000,0],[1708343052000,0],[1708343053000,0],[1708343054000,0],[1708343055000,0],[1708343056000,0],[1708343057000,0],[1708343058000,0],[1708343059000,0],[1708343060000,0],[1708343061000,0],[1708343062000,0],[1708343063000,0],[1708343064000,0],[1708343065000,0],[1708343066000,0],[1708343067000,0],[1708343068000,0],[1708343069000,0],[1708343070000,0],[1708343071000,0],[1708343072000,0],[1708343073000,0],[1708343074000,0],[1708343075000,0],[1708343076000,0],[1708343077000,0],[1708343078000,0],[1708343079000,0],[1708343080000,0],[1708343081000,0],[1708343082000,0],[1708343083000,0],[1708343084000,0],[1708343085000,0],[1708343086000,0],[1708343087000,0],[1708343088000,0],[1708343089000,0],[1708343090000,0],[1708343091000,0],[1708343092000,0],[1708343093000,0],[1708343094000,0],[1708343095000,0],[1708343096000,0],[1708343097000,0],[1708343098000,0],[1708343099000,0],[1708343100000,0],[1708343101000,0],[1708343102000,0],[1708343103000,0],[1708343104000,0],[1708343105000,0],[1708343106000,0],[1708343107000,0],[1708343108000,0],[1708343109000,0],[1708343110000,0],[1708343111000,0],[1708343112000,0],[1708343113000,0],[1708343114000,0],[1708343115000,0],[1708343116000,0],[1708343117000,0],[1708343118000,0],[1708343119000,0],[1708343120000,0],[1708343121000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00D5FF',
name: 'validações',
data: [
[1708342847000,0],[1708342848000,0],[1708342849000,0],[1708342850000,5],[1708342851000,5],[1708342852000,0],[1708342853000,0],[1708342854000,0],[1708342855000,0],[1708342856000,0],[1708342857000,0],[1708342858000,0],[1708342859000,0],[1708342860000,0],[1708342861000,0],[1708342862000,0],[1708342863000,0],[1708342864000,0],[1708342865000,0],[1708342866000,0],[1708342867000,0],[1708342868000,0],[1708342869000,0],[1708342870000,0],[1708342871000,0],[1708342872000,0],[1708342873000,0],[1708342874000,0],[1708342875000,0],[1708342876000,0],[1708342877000,0],[1708342878000,0],[1708342879000,0],[1708342880000,0],[1708342881000,0],[1708342882000,0],[1708342883000,0],[1708342884000,0],[1708342885000,0],[1708342886000,0],[1708342887000,0],[1708342888000,0],[1708342889000,0],[1708342890000,0],[1708342891000,0],[1708342892000,0],[1708342893000,0],[1708342894000,0],[1708342895000,0],[1708342896000,0],[1708342897000,0],[1708342898000,0],[1708342899000,0],[1708342900000,0],[1708342901000,0],[1708342902000,0],[1708342903000,0],[1708342904000,0],[1708342905000,0],[1708342906000,0],[1708342907000,0],[1708342908000,0],[1708342909000,0],[1708342910000,0],[1708342911000,0],[1708342912000,0],[1708342913000,0],[1708342914000,0],[1708342915000,0],[1708342916000,0],[1708342917000,0],[1708342918000,0],[1708342919000,0],[1708342920000,0],[1708342921000,0],[1708342922000,0],[1708342923000,0],[1708342924000,0],[1708342925000,0],[1708342926000,0],[1708342927000,0],[1708342928000,0],[1708342929000,0],[1708342930000,0],[1708342931000,0],[1708342932000,0],[1708342933000,0],[1708342934000,0],[1708342935000,0],[1708342936000,0],[1708342937000,0],[1708342938000,0],[1708342939000,0],[1708342940000,0],[1708342941000,0],[1708342942000,0],[1708342943000,0],[1708342944000,0],[1708342945000,0],[1708342946000,0],[1708342947000,0],[1708342948000,0],[1708342949000,0],[1708342950000,0],[1708342951000,0],[1708342952000,0],[1708342953000,0],[1708342954000,0],[1708342955000,0],[1708342956000,0],[1708342957000,0],[1708342958000,0],[1708342959000,0],[1708342960000,0],[1708342961000,0],[1708342962000,0],[1708342963000,0],[1708342964000,0],[1708342965000,0],[1708342966000,0],[1708342967000,0],[1708342968000,0],[1708342969000,0],[1708342970000,0],[1708342971000,0],[1708342972000,0],[1708342973000,0],[1708342974000,0],[1708342975000,0],[1708342976000,0],[1708342977000,0],[1708342978000,0],[1708342979000,0],[1708342980000,0],[1708342981000,0],[1708342982000,0],[1708342983000,0],[1708342984000,0],[1708342985000,0],[1708342986000,0],[1708342987000,0],[1708342988000,0],[1708342989000,0],[1708342990000,0],[1708342991000,0],[1708342992000,0],[1708342993000,0],[1708342994000,0],[1708342995000,0],[1708342996000,0],[1708342997000,0],[1708342998000,0],[1708342999000,0],[1708343000000,0],[1708343001000,0],[1708343002000,0],[1708343003000,0],[1708343004000,0],[1708343005000,0],[1708343006000,0],[1708343007000,0],[1708343008000,0],[1708343009000,0],[1708343010000,0],[1708343011000,0],[1708343012000,0],[1708343013000,0],[1708343014000,0],[1708343015000,0],[1708343016000,0],[1708343017000,0],[1708343018000,0],[1708343019000,0],[1708343020000,0],[1708343021000,0],[1708343022000,0],[1708343023000,0],[1708343024000,0],[1708343025000,0],[1708343026000,0],[1708343027000,0],[1708343028000,0],[1708343029000,0],[1708343030000,0],[1708343031000,0],[1708343032000,0],[1708343033000,0],[1708343034000,0],[1708343035000,0],[1708343036000,0],[1708343037000,0],[1708343038000,0],[1708343039000,0],[1708343040000,0],[1708343041000,0],[1708343042000,0],[1708343043000,0],[1708343044000,0],[1708343045000,0],[1708343046000,0],[1708343047000,0],[1708343048000,0],[1708343049000,0],[1708343050000,0],[1708343051000,0],[1708343052000,0],[1708343053000,0],[1708343054000,0],[1708343055000,0],[1708343056000,0],[1708343057000,0],[1708343058000,0],[1708343059000,0],[1708343060000,0],[1708343061000,0],[1708343062000,0],[1708343063000,0],[1708343064000,0],[1708343065000,0],[1708343066000,0],[1708343067000,0],[1708343068000,0],[1708343069000,0],[1708343070000,0],[1708343071000,0],[1708343072000,0],[1708343073000,0],[1708343074000,0],[1708343075000,0],[1708343076000,0],[1708343077000,0],[1708343078000,0],[1708343079000,0],[1708343080000,0],[1708343081000,0],[1708343082000,0],[1708343083000,0],[1708343084000,0],[1708343085000,0],[1708343086000,0],[1708343087000,0],[1708343088000,0],[1708343089000,0],[1708343090000,0],[1708343091000,0],[1708343092000,0],[1708343093000,0],[1708343094000,0],[1708343095000,0],[1708343096000,0],[1708343097000,0],[1708343098000,0],[1708343099000,0],[1708343100000,0],[1708343101000,0],[1708343102000,0],[1708343103000,0],[1708343104000,0],[1708343105000,0],[1708343106000,0],[1708343107000,0],[1708343108000,0],[1708343109000,0],[1708343110000,0],[1708343111000,0],[1708343112000,0],[1708343113000,0],[1708343114000,0],[1708343115000,0],[1708343116000,0],[1708343117000,0],[1708343118000,0],[1708343119000,0],[1708343120000,0],[1708343121000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00FF00',
name: 'validação concorrência saldo - 0',
data: [
[1708342847000,0],[1708342848000,0],[1708342849000,1],[1708342850000,0],[1708342851000,0],[1708342852000,0],[1708342853000,0],[1708342854000,0],[1708342855000,0],[1708342856000,0],[1708342857000,0],[1708342858000,0],[1708342859000,0],[1708342860000,0],[1708342861000,0],[1708342862000,0],[1708342863000,0],[1708342864000,0],[1708342865000,0],[1708342866000,0],[1708342867000,0],[1708342868000,0],[1708342869000,0],[1708342870000,0],[1708342871000,0],[1708342872000,0],[1708342873000,0],[1708342874000,0],[1708342875000,0],[1708342876000,0],[1708342877000,0],[1708342878000,0],[1708342879000,0],[1708342880000,0],[1708342881000,0],[1708342882000,0],[1708342883000,0],[1708342884000,0],[1708342885000,0],[1708342886000,0],[1708342887000,0],[1708342888000,0],[1708342889000,0],[1708342890000,0],[1708342891000,0],[1708342892000,0],[1708342893000,0],[1708342894000,0],[1708342895000,0],[1708342896000,0],[1708342897000,0],[1708342898000,0],[1708342899000,0],[1708342900000,0],[1708342901000,0],[1708342902000,0],[1708342903000,0],[1708342904000,0],[1708342905000,0],[1708342906000,0],[1708342907000,0],[1708342908000,0],[1708342909000,0],[1708342910000,0],[1708342911000,0],[1708342912000,0],[1708342913000,0],[1708342914000,0],[1708342915000,0],[1708342916000,0],[1708342917000,0],[1708342918000,0],[1708342919000,0],[1708342920000,0],[1708342921000,0],[1708342922000,0],[1708342923000,0],[1708342924000,0],[1708342925000,0],[1708342926000,0],[1708342927000,0],[1708342928000,0],[1708342929000,0],[1708342930000,0],[1708342931000,0],[1708342932000,0],[1708342933000,0],[1708342934000,0],[1708342935000,0],[1708342936000,0],[1708342937000,0],[1708342938000,0],[1708342939000,0],[1708342940000,0],[1708342941000,0],[1708342942000,0],[1708342943000,0],[1708342944000,0],[1708342945000,0],[1708342946000,0],[1708342947000,0],[1708342948000,0],[1708342949000,0],[1708342950000,0],[1708342951000,0],[1708342952000,0],[1708342953000,0],[1708342954000,0],[1708342955000,0],[1708342956000,0],[1708342957000,0],[1708342958000,0],[1708342959000,0],[1708342960000,0],[1708342961000,0],[1708342962000,0],[1708342963000,0],[1708342964000,0],[1708342965000,0],[1708342966000,0],[1708342967000,0],[1708342968000,0],[1708342969000,0],[1708342970000,0],[1708342971000,0],[1708342972000,0],[1708342973000,0],[1708342974000,0],[1708342975000,0],[1708342976000,0],[1708342977000,0],[1708342978000,0],[1708342979000,0],[1708342980000,0],[1708342981000,0],[1708342982000,0],[1708342983000,0],[1708342984000,0],[1708342985000,0],[1708342986000,0],[1708342987000,0],[1708342988000,0],[1708342989000,0],[1708342990000,0],[1708342991000,0],[1708342992000,0],[1708342993000,0],[1708342994000,0],[1708342995000,0],[1708342996000,0],[1708342997000,0],[1708342998000,0],[1708342999000,0],[1708343000000,0],[1708343001000,0],[1708343002000,0],[1708343003000,0],[1708343004000,0],[1708343005000,0],[1708343006000,0],[1708343007000,0],[1708343008000,0],[1708343009000,0],[1708343010000,0],[1708343011000,0],[1708343012000,0],[1708343013000,0],[1708343014000,0],[1708343015000,0],[1708343016000,0],[1708343017000,0],[1708343018000,0],[1708343019000,0],[1708343020000,0],[1708343021000,0],[1708343022000,0],[1708343023000,0],[1708343024000,0],[1708343025000,0],[1708343026000,0],[1708343027000,0],[1708343028000,0],[1708343029000,0],[1708343030000,0],[1708343031000,0],[1708343032000,0],[1708343033000,0],[1708343034000,0],[1708343035000,0],[1708343036000,0],[1708343037000,0],[1708343038000,0],[1708343039000,0],[1708343040000,0],[1708343041000,0],[1708343042000,0],[1708343043000,0],[1708343044000,0],[1708343045000,0],[1708343046000,0],[1708343047000,0],[1708343048000,0],[1708343049000,0],[1708343050000,0],[1708343051000,0],[1708343052000,0],[1708343053000,0],[1708343054000,0],[1708343055000,0],[1708343056000,0],[1708343057000,0],[1708343058000,0],[1708343059000,0],[1708343060000,0],[1708343061000,0],[1708343062000,0],[1708343063000,0],[1708343064000,0],[1708343065000,0],[1708343066000,0],[1708343067000,0],[1708343068000,0],[1708343069000,0],[1708343070000,0],[1708343071000,0],[1708343072000,0],[1708343073000,0],[1708343074000,0],[1708343075000,0],[1708343076000,0],[1708343077000,0],[1708343078000,0],[1708343079000,0],[1708343080000,0],[1708343081000,0],[1708343082000,0],[1708343083000,0],[1708343084000,0],[1708343085000,0],[1708343086000,0],[1708343087000,0],[1708343088000,0],[1708343089000,0],[1708343090000,0],[1708343091000,0],[1708343092000,0],[1708343093000,0],[1708343094000,0],[1708343095000,0],[1708343096000,0],[1708343097000,0],[1708343098000,0],[1708343099000,0],[1708343100000,0],[1708343101000,0],[1708343102000,0],[1708343103000,0],[1708343104000,0],[1708343105000,0],[1708343106000,0],[1708343107000,0],[1708343108000,0],[1708343109000,0],[1708343110000,0],[1708343111000,0],[1708343112000,0],[1708343113000,0],[1708343114000,0],[1708343115000,0],[1708343116000,0],[1708343117000,0],[1708343118000,0],[1708343119000,0],[1708343120000,0],[1708343121000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#9D00FF',
name: 'validação concorrência transações - c',
data: [
[1708342847000,0],[1708342848000,25],[1708342849000,25],[1708342850000,0],[1708342851000,0],[1708342852000,0],[1708342853000,0],[1708342854000,0],[1708342855000,0],[1708342856000,0],[1708342857000,0],[1708342858000,0],[1708342859000,0],[1708342860000,0],[1708342861000,0],[1708342862000,0],[1708342863000,0],[1708342864000,0],[1708342865000,0],[1708342866000,0],[1708342867000,0],[1708342868000,0],[1708342869000,0],[1708342870000,0],[1708342871000,0],[1708342872000,0],[1708342873000,0],[1708342874000,0],[1708342875000,0],[1708342876000,0],[1708342877000,0],[1708342878000,0],[1708342879000,0],[1708342880000,0],[1708342881000,0],[1708342882000,0],[1708342883000,0],[1708342884000,0],[1708342885000,0],[1708342886000,0],[1708342887000,0],[1708342888000,0],[1708342889000,0],[1708342890000,0],[1708342891000,0],[1708342892000,0],[1708342893000,0],[1708342894000,0],[1708342895000,0],[1708342896000,0],[1708342897000,0],[1708342898000,0],[1708342899000,0],[1708342900000,0],[1708342901000,0],[1708342902000,0],[1708342903000,0],[1708342904000,0],[1708342905000,0],[1708342906000,0],[1708342907000,0],[1708342908000,0],[1708342909000,0],[1708342910000,0],[1708342911000,0],[1708342912000,0],[1708342913000,0],[1708342914000,0],[1708342915000,0],[1708342916000,0],[1708342917000,0],[1708342918000,0],[1708342919000,0],[1708342920000,0],[1708342921000,0],[1708342922000,0],[1708342923000,0],[1708342924000,0],[1708342925000,0],[1708342926000,0],[1708342927000,0],[1708342928000,0],[1708342929000,0],[1708342930000,0],[1708342931000,0],[1708342932000,0],[1708342933000,0],[1708342934000,0],[1708342935000,0],[1708342936000,0],[1708342937000,0],[1708342938000,0],[1708342939000,0],[1708342940000,0],[1708342941000,0],[1708342942000,0],[1708342943000,0],[1708342944000,0],[1708342945000,0],[1708342946000,0],[1708342947000,0],[1708342948000,0],[1708342949000,0],[1708342950000,0],[1708342951000,0],[1708342952000,0],[1708342953000,0],[1708342954000,0],[1708342955000,0],[1708342956000,0],[1708342957000,0],[1708342958000,0],[1708342959000,0],[1708342960000,0],[1708342961000,0],[1708342962000,0],[1708342963000,0],[1708342964000,0],[1708342965000,0],[1708342966000,0],[1708342967000,0],[1708342968000,0],[1708342969000,0],[1708342970000,0],[1708342971000,0],[1708342972000,0],[1708342973000,0],[1708342974000,0],[1708342975000,0],[1708342976000,0],[1708342977000,0],[1708342978000,0],[1708342979000,0],[1708342980000,0],[1708342981000,0],[1708342982000,0],[1708342983000,0],[1708342984000,0],[1708342985000,0],[1708342986000,0],[1708342987000,0],[1708342988000,0],[1708342989000,0],[1708342990000,0],[1708342991000,0],[1708342992000,0],[1708342993000,0],[1708342994000,0],[1708342995000,0],[1708342996000,0],[1708342997000,0],[1708342998000,0],[1708342999000,0],[1708343000000,0],[1708343001000,0],[1708343002000,0],[1708343003000,0],[1708343004000,0],[1708343005000,0],[1708343006000,0],[1708343007000,0],[1708343008000,0],[1708343009000,0],[1708343010000,0],[1708343011000,0],[1708343012000,0],[1708343013000,0],[1708343014000,0],[1708343015000,0],[1708343016000,0],[1708343017000,0],[1708343018000,0],[1708343019000,0],[1708343020000,0],[1708343021000,0],[1708343022000,0],[1708343023000,0],[1708343024000,0],[1708343025000,0],[1708343026000,0],[1708343027000,0],[1708343028000,0],[1708343029000,0],[1708343030000,0],[1708343031000,0],[1708343032000,0],[1708343033000,0],[1708343034000,0],[1708343035000,0],[1708343036000,0],[1708343037000,0],[1708343038000,0],[1708343039000,0],[1708343040000,0],[1708343041000,0],[1708343042000,0],[1708343043000,0],[1708343044000,0],[1708343045000,0],[1708343046000,0],[1708343047000,0],[1708343048000,0],[1708343049000,0],[1708343050000,0],[1708343051000,0],[1708343052000,0],[1708343053000,0],[1708343054000,0],[1708343055000,0],[1708343056000,0],[1708343057000,0],[1708343058000,0],[1708343059000,0],[1708343060000,0],[1708343061000,0],[1708343062000,0],[1708343063000,0],[1708343064000,0],[1708343065000,0],[1708343066000,0],[1708343067000,0],[1708343068000,0],[1708343069000,0],[1708343070000,0],[1708343071000,0],[1708343072000,0],[1708343073000,0],[1708343074000,0],[1708343075000,0],[1708343076000,0],[1708343077000,0],[1708343078000,0],[1708343079000,0],[1708343080000,0],[1708343081000,0],[1708343082000,0],[1708343083000,0],[1708343084000,0],[1708343085000,0],[1708343086000,0],[1708343087000,0],[1708343088000,0],[1708343089000,0],[1708343090000,0],[1708343091000,0],[1708343092000,0],[1708343093000,0],[1708343094000,0],[1708343095000,0],[1708343096000,0],[1708343097000,0],[1708343098000,0],[1708343099000,0],[1708343100000,0],[1708343101000,0],[1708343102000,0],[1708343103000,0],[1708343104000,0],[1708343105000,0],[1708343106000,0],[1708343107000,0],[1708343108000,0],[1708343109000,0],[1708343110000,0],[1708343111000,0],[1708343112000,0],[1708343113000,0],[1708343114000,0],[1708343115000,0],[1708343116000,0],[1708343117000,0],[1708343118000,0],[1708343119000,0],[1708343120000,0],[1708343121000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FF00E1',
name: 'validação concorrência saldo - -25',
data: [
[1708342847000,1],[1708342848000,1],[1708342849000,0],[1708342850000,0],[1708342851000,0],[1708342852000,0],[1708342853000,0],[1708342854000,0],[1708342855000,0],[1708342856000,0],[1708342857000,0],[1708342858000,0],[1708342859000,0],[1708342860000,0],[1708342861000,0],[1708342862000,0],[1708342863000,0],[1708342864000,0],[1708342865000,0],[1708342866000,0],[1708342867000,0],[1708342868000,0],[1708342869000,0],[1708342870000,0],[1708342871000,0],[1708342872000,0],[1708342873000,0],[1708342874000,0],[1708342875000,0],[1708342876000,0],[1708342877000,0],[1708342878000,0],[1708342879000,0],[1708342880000,0],[1708342881000,0],[1708342882000,0],[1708342883000,0],[1708342884000,0],[1708342885000,0],[1708342886000,0],[1708342887000,0],[1708342888000,0],[1708342889000,0],[1708342890000,0],[1708342891000,0],[1708342892000,0],[1708342893000,0],[1708342894000,0],[1708342895000,0],[1708342896000,0],[1708342897000,0],[1708342898000,0],[1708342899000,0],[1708342900000,0],[1708342901000,0],[1708342902000,0],[1708342903000,0],[1708342904000,0],[1708342905000,0],[1708342906000,0],[1708342907000,0],[1708342908000,0],[1708342909000,0],[1708342910000,0],[1708342911000,0],[1708342912000,0],[1708342913000,0],[1708342914000,0],[1708342915000,0],[1708342916000,0],[1708342917000,0],[1708342918000,0],[1708342919000,0],[1708342920000,0],[1708342921000,0],[1708342922000,0],[1708342923000,0],[1708342924000,0],[1708342925000,0],[1708342926000,0],[1708342927000,0],[1708342928000,0],[1708342929000,0],[1708342930000,0],[1708342931000,0],[1708342932000,0],[1708342933000,0],[1708342934000,0],[1708342935000,0],[1708342936000,0],[1708342937000,0],[1708342938000,0],[1708342939000,0],[1708342940000,0],[1708342941000,0],[1708342942000,0],[1708342943000,0],[1708342944000,0],[1708342945000,0],[1708342946000,0],[1708342947000,0],[1708342948000,0],[1708342949000,0],[1708342950000,0],[1708342951000,0],[1708342952000,0],[1708342953000,0],[1708342954000,0],[1708342955000,0],[1708342956000,0],[1708342957000,0],[1708342958000,0],[1708342959000,0],[1708342960000,0],[1708342961000,0],[1708342962000,0],[1708342963000,0],[1708342964000,0],[1708342965000,0],[1708342966000,0],[1708342967000,0],[1708342968000,0],[1708342969000,0],[1708342970000,0],[1708342971000,0],[1708342972000,0],[1708342973000,0],[1708342974000,0],[1708342975000,0],[1708342976000,0],[1708342977000,0],[1708342978000,0],[1708342979000,0],[1708342980000,0],[1708342981000,0],[1708342982000,0],[1708342983000,0],[1708342984000,0],[1708342985000,0],[1708342986000,0],[1708342987000,0],[1708342988000,0],[1708342989000,0],[1708342990000,0],[1708342991000,0],[1708342992000,0],[1708342993000,0],[1708342994000,0],[1708342995000,0],[1708342996000,0],[1708342997000,0],[1708342998000,0],[1708342999000,0],[1708343000000,0],[1708343001000,0],[1708343002000,0],[1708343003000,0],[1708343004000,0],[1708343005000,0],[1708343006000,0],[1708343007000,0],[1708343008000,0],[1708343009000,0],[1708343010000,0],[1708343011000,0],[1708343012000,0],[1708343013000,0],[1708343014000,0],[1708343015000,0],[1708343016000,0],[1708343017000,0],[1708343018000,0],[1708343019000,0],[1708343020000,0],[1708343021000,0],[1708343022000,0],[1708343023000,0],[1708343024000,0],[1708343025000,0],[1708343026000,0],[1708343027000,0],[1708343028000,0],[1708343029000,0],[1708343030000,0],[1708343031000,0],[1708343032000,0],[1708343033000,0],[1708343034000,0],[1708343035000,0],[1708343036000,0],[1708343037000,0],[1708343038000,0],[1708343039000,0],[1708343040000,0],[1708343041000,0],[1708343042000,0],[1708343043000,0],[1708343044000,0],[1708343045000,0],[1708343046000,0],[1708343047000,0],[1708343048000,0],[1708343049000,0],[1708343050000,0],[1708343051000,0],[1708343052000,0],[1708343053000,0],[1708343054000,0],[1708343055000,0],[1708343056000,0],[1708343057000,0],[1708343058000,0],[1708343059000,0],[1708343060000,0],[1708343061000,0],[1708343062000,0],[1708343063000,0],[1708343064000,0],[1708343065000,0],[1708343066000,0],[1708343067000,0],[1708343068000,0],[1708343069000,0],[1708343070000,0],[1708343071000,0],[1708343072000,0],[1708343073000,0],[1708343074000,0],[1708343075000,0],[1708343076000,0],[1708343077000,0],[1708343078000,0],[1708343079000,0],[1708343080000,0],[1708343081000,0],[1708343082000,0],[1708343083000,0],[1708343084000,0],[1708343085000,0],[1708343086000,0],[1708343087000,0],[1708343088000,0],[1708343089000,0],[1708343090000,0],[1708343091000,0],[1708343092000,0],[1708343093000,0],[1708343094000,0],[1708343095000,0],[1708343096000,0],[1708343097000,0],[1708343098000,0],[1708343099000,0],[1708343100000,0],[1708343101000,0],[1708343102000,0],[1708343103000,0],[1708343104000,0],[1708343105000,0],[1708343106000,0],[1708343107000,0],[1708343108000,0],[1708343109000,0],[1708343110000,0],[1708343111000,0],[1708343112000,0],[1708343113000,0],[1708343114000,0],[1708343115000,0],[1708343116000,0],[1708343117000,0],[1708343118000,0],[1708343119000,0],[1708343120000,0],[1708343121000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#AECAEB',
name: 'validação concorrência transações - d',
data: [
[1708342847000,25],[1708342848000,0],[1708342849000,0],[1708342850000,0],[1708342851000,0],[1708342852000,0],[1708342853000,0],[1708342854000,0],[1708342855000,0],[1708342856000,0],[1708342857000,0],[1708342858000,0],[1708342859000,0],[1708342860000,0],[1708342861000,0],[1708342862000,0],[1708342863000,0],[1708342864000,0],[1708342865000,0],[1708342866000,0],[1708342867000,0],[1708342868000,0],[1708342869000,0],[1708342870000,0],[1708342871000,0],[1708342872000,0],[1708342873000,0],[1708342874000,0],[1708342875000,0],[1708342876000,0],[1708342877000,0],[1708342878000,0],[1708342879000,0],[1708342880000,0],[1708342881000,0],[1708342882000,0],[1708342883000,0],[1708342884000,0],[1708342885000,0],[1708342886000,0],[1708342887000,0],[1708342888000,0],[1708342889000,0],[1708342890000,0],[1708342891000,0],[1708342892000,0],[1708342893000,0],[1708342894000,0],[1708342895000,0],[1708342896000,0],[1708342897000,0],[1708342898000,0],[1708342899000,0],[1708342900000,0],[1708342901000,0],[1708342902000,0],[1708342903000,0],[1708342904000,0],[1708342905000,0],[1708342906000,0],[1708342907000,0],[1708342908000,0],[1708342909000,0],[1708342910000,0],[1708342911000,0],[1708342912000,0],[1708342913000,0],[1708342914000,0],[1708342915000,0],[1708342916000,0],[1708342917000,0],[1708342918000,0],[1708342919000,0],[1708342920000,0],[1708342921000,0],[1708342922000,0],[1708342923000,0],[1708342924000,0],[1708342925000,0],[1708342926000,0],[1708342927000,0],[1708342928000,0],[1708342929000,0],[1708342930000,0],[1708342931000,0],[1708342932000,0],[1708342933000,0],[1708342934000,0],[1708342935000,0],[1708342936000,0],[1708342937000,0],[1708342938000,0],[1708342939000,0],[1708342940000,0],[1708342941000,0],[1708342942000,0],[1708342943000,0],[1708342944000,0],[1708342945000,0],[1708342946000,0],[1708342947000,0],[1708342948000,0],[1708342949000,0],[1708342950000,0],[1708342951000,0],[1708342952000,0],[1708342953000,0],[1708342954000,0],[1708342955000,0],[1708342956000,0],[1708342957000,0],[1708342958000,0],[1708342959000,0],[1708342960000,0],[1708342961000,0],[1708342962000,0],[1708342963000,0],[1708342964000,0],[1708342965000,0],[1708342966000,0],[1708342967000,0],[1708342968000,0],[1708342969000,0],[1708342970000,0],[1708342971000,0],[1708342972000,0],[1708342973000,0],[1708342974000,0],[1708342975000,0],[1708342976000,0],[1708342977000,0],[1708342978000,0],[1708342979000,0],[1708342980000,0],[1708342981000,0],[1708342982000,0],[1708342983000,0],[1708342984000,0],[1708342985000,0],[1708342986000,0],[1708342987000,0],[1708342988000,0],[1708342989000,0],[1708342990000,0],[1708342991000,0],[1708342992000,0],[1708342993000,0],[1708342994000,0],[1708342995000,0],[1708342996000,0],[1708342997000,0],[1708342998000,0],[1708342999000,0],[1708343000000,0],[1708343001000,0],[1708343002000,0],[1708343003000,0],[1708343004000,0],[1708343005000,0],[1708343006000,0],[1708343007000,0],[1708343008000,0],[1708343009000,0],[1708343010000,0],[1708343011000,0],[1708343012000,0],[1708343013000,0],[1708343014000,0],[1708343015000,0],[1708343016000,0],[1708343017000,0],[1708343018000,0],[1708343019000,0],[1708343020000,0],[1708343021000,0],[1708343022000,0],[1708343023000,0],[1708343024000,0],[1708343025000,0],[1708343026000,0],[1708343027000,0],[1708343028000,0],[1708343029000,0],[1708343030000,0],[1708343031000,0],[1708343032000,0],[1708343033000,0],[1708343034000,0],[1708343035000,0],[1708343036000,0],[1708343037000,0],[1708343038000,0],[1708343039000,0],[1708343040000,0],[1708343041000,0],[1708343042000,0],[1708343043000,0],[1708343044000,0],[1708343045000,0],[1708343046000,0],[1708343047000,0],[1708343048000,0],[1708343049000,0],[1708343050000,0],[1708343051000,0],[1708343052000,0],[1708343053000,0],[1708343054000,0],[1708343055000,0],[1708343056000,0],[1708343057000,0],[1708343058000,0],[1708343059000,0],[1708343060000,0],[1708343061000,0],[1708343062000,0],[1708343063000,0],[1708343064000,0],[1708343065000,0],[1708343066000,0],[1708343067000,0],[1708343068000,0],[1708343069000,0],[1708343070000,0],[1708343071000,0],[1708343072000,0],[1708343073000,0],[1708343074000,0],[1708343075000,0],[1708343076000,0],[1708343077000,0],[1708343078000,0],[1708343079000,0],[1708343080000,0],[1708343081000,0],[1708343082000,0],[1708343083000,0],[1708343084000,0],[1708343085000,0],[1708343086000,0],[1708343087000,0],[1708343088000,0],[1708343089000,0],[1708343090000,0],[1708343091000,0],[1708343092000,0],[1708343093000,0],[1708343094000,0],[1708343095000,0],[1708343096000,0],[1708343097000,0],[1708343098000,0],[1708343099000,0],[1708343100000,0],[1708343101000,0],[1708343102000,0],[1708343103000,0],[1708343104000,0],[1708343105000,0],[1708343106000,0],[1708343107000,0],[1708343108000,0],[1708343109000,0],[1708343110000,0],[1708343111000,0],[1708343112000,0],[1708343113000,0],[1708343114000,0],[1708343115000,0],[1708343116000,0],[1708343117000,0],[1708343118000,0],[1708343119000,0],[1708343120000,0],[1708343121000,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: ['300', '900', '1500', '2100', '2700', '3301', '3901', '4501', '5101', '5701', '6301', '6901', '7501', '8101', '8701', '9302', '9902', '10502', '11102', '11702', '12302', '12902', '13502', '14102', '14702', '15303', '15903', '16503', '17103', '17703', '18303', '18903', '19503', '20103', '20703', '21304', '21904', '22504', '23104', '23704', '24304', '24904', '25504', '26104', '26704', '27305', '27905', '28505', '29105', '29705', '30305', '30905', '31505', '32105', '32705', '33306', '33906', '34506', '35106', '35706', '36306', '36906', '37506', '38106', '38706', '39307', '39907', '40507', '41107', '41707', '42307', '42907', '43507', '44107', '44707', '45308', '45908', '46508', '47108', '47708', '48308', '48908', '49508', '50108', '50708', '51309', '51909', '52509', '53109', '53709', '54309', '54909', '55509', '56109', '56709', '57310', '57910', '58510', '59110', '59710'],
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: [
47.89,0.94,1.27,2.22,1.71,1.59,1.91,2.85,2.89,2.05,1.83,2.74,2.83,2.8,2.15,2.08,1.73,1.72,1.29,1.01,1.14,1.01,0.6,0.58,0.5,0.33,0.32,0.23,0.16,0.16,0.14,0.11,0.1,0.17,0.18,0.12,0.09,0.11,0.07,0.08,0.1,0.04,0.06,0.04,0.02,0.03,0.02,0.02,0.01,0.01,0.0,0.01,0.23,0.04,0.03,0.05,0.07,0.04,0.06,0.08,0.11,0.14,0.12,0.1,0.07,0.1,0.1,0.06,0.04,0.03,0.04,0.02,0.02,0.02,0.01,0.03,0.03,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.01,0.0,0.01
],
tooltip: { yDecimals: 0, ySuffix: 'ms' }
},
{
type: 'column',
color: '#f15b4f',
name: 'KO',
data: [
0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06,0.06,0.0,0.0,0.11,0.0,0.0,0.0,0.0,0.0,0.13,0.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.14,0.19,0.0,0.15,0.0,0.0,0.0,0.0,0.0,0.0,0.62,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06,0.06,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.0,0.0,0.01,0.01,0.0,0.0,0.0,0.0,0.03,0.0,0.0,3.61
],
tooltip: { yDecimals: 0, ySuffix: 'ms' }
}
]
});
responsetimeDistributionChart.setTitle({
text: '<span class="chart_title">Response Time Distribution</span>',
useHTML: true
});
var responsetimepercentilesovertimeokPercentiles = unpack([[1708342847,[31,63,78,96,97,104,115,131,139,141]],[1708342848,[4,4,4,4,4,4,4,4,4,4]],[1708342849,[23,42,54,67,69,71,81,87,94,96]],[1708342850,[3,3,3,3,3,3,3,3,3,3]],[1708342851,[0,2,5,11,13,14,17,19,22,27]],[1708342852,[3,5,7,8,8,8,8,8,8,9]],[1708342853,[3,5,7,8,8,8,8,8,8,9]],[1708342854,[2,6,6,12,12,12,12,14,15,16]],[1708342855,[2,5,6,6,7,7,7,7,7,7]],[1708342856,[3,6,6,7,7,7,7,8,11,12]],[1708342857,[3,5,6,6,6,7,7,7,8,9]],[1708342858,[2,5,6,7,8,9,11,12,17,19]],[1708342859,[3,5,5,6,6,6,6,7,7,8]],[1708342860,[3,5,6,7,8,8,9,13,16,17]],[1708342861,[2,5,5,6,6,7,7,10,16,19]],[1708342862,[2,5,5,7,8,9,10,13,16,18]],[1708342863,[1,5,5,6,7,7,7,7,7,8]],[1708342864,[1,3,5,7,7,7,8,9,13,15]],[1708342865,[2,5,5,6,7,7,7,8,9,10]],[1708342866,[1,5,5,6,6,6,7,7,10,11]],[1708342867,[1,5,5,7,7,7,8,10,13,15]],[1708342868,[1,4,5,5,6,6,6,7,9,10]],[1708342869,[1,4,5,5,5,6,7,7,9,9]],[1708342870,[1,4,4,5,6,7,8,10,12,13]],[1708342871,[1,4,4,5,5,6,6,6,8,8]],[1708342872,[1,5,5,66,117,163,215,263,309,315]],[1708342873,[1,4,4,5,6,6,6,7,15,17]],[1708342874,[1,4,5,6,6,7,7,9,13,17]],[1708342875,[1,4,5,5,6,6,6,7,7,8]],[1708342876,[1,4,5,6,6,7,7,9,12,12]],[1708342877,[1,4,5,5,6,7,7,11,30,30]],[1708342878,[1,4,5,6,6,7,7,7,9,10]],[1708342879,[1,4,5,6,6,7,7,8,11,12]],[1708342880,[1,4,4,5,5,5,6,7,15,15]],[1708342881,[1,4,4,5,6,6,6,7,12,13]],[1708342882,[1,3,4,5,5,6,7,9,14,14]],[1708342883,[1,4,4,5,5,5,6,7,15,15]],[1708342884,[1,4,4,6,6,6,7,7,10,10]],[1708342885,[1,4,5,6,6,7,7,8,11,13]],[1708342886,[1,2,5,6,6,6,7,8,14,17]],[1708342887,[1,3,4,5,5,6,6,6,7,8]],[1708342888,[1,3,4,5,6,6,6,6,10,16]],[1708342889,[1,4,4,5,5,5,5,6,7,7]],[1708342890,[1,4,4,5,5,6,7,7,9,14]],[1708342891,[1,4,5,6,6,7,7,9,11,14]],[1708342892,[1,3,5,6,6,6,7,8,13,15]],[1708342893,[1,3,4,4,4,5,5,7,10,13]],[1708342894,[1,4,4,5,6,6,7,8,21,22]],[1708342895,[1,3,4,5,5,5,6,7,9,10]],[1708342896,[1,3,4,5,6,6,6,7,14,18]],[1708342897,[1,4,5,6,7,8,9,11,12,12]],[1708342898,[1,4,4,5,5,6,6,7,11,13]],[1708342899,[1,1,4,6,6,6,7,8,14,16]],[1708342900,[1,4,4,5,6,6,7,9,14,20]],[1708342901,[1,2,4,5,5,6,6,6,8,13]],[1708342902,[1,4,5,6,7,9,12,38,77,86]],[1708342903,[1,3,4,5,5,5,6,6,7,8]],[1708342904,[1,3,4,5,5,5,7,10,15,18]],[1708342905,[0,2,4,4,5,5,5,6,8,10]],[1708342906,[0,3,4,4,5,5,6,7,13,18]],[1708342907,[1,4,4,5,6,6,8,11,48,58]],[1708342908,[0,4,4,5,6,6,7,7,12,12]],[1708342909,[1,1,4,6,6,6,6,7,10,11]],[1708342910,[1,3,5,6,6,6,7,7,8,9]],[1708342911,[1,3,4,5,6,6,7,11,15,17]],[1708342912,[1,3,4,5,5,5,6,6,7,12]],[1708342913,[1,3,4,5,5,6,6,7,13,15]],[1708342914,[1,1,4,4,5,5,5,6,7,7]],[1708342915,[0,3,4,5,5,5,6,8,16,19]],[1708342916,[0,1,4,5,5,5,6,6,7,8]],[1708342917,[0,3,3,4,4,5,5,6,12,19]],[1708342918,[0,3,4,5,5,5,6,6,21,31]],[1708342919,[0,2,4,4,5,5,5,6,7,10]],[1708342920,[0,2,4,5,5,5,6,6,10,12]],[1708342921,[1,3,5,6,6,7,7,12,19,28]],[1708342922,[0,2,3,4,5,5,6,7,7,12]],[1708342923,[0,3,4,5,6,6,7,9,18,25]],[1708342924,[1,3,4,5,6,6,7,8,10,12]],[1708342925,[0,3,4,5,5,5,6,6,13,16]],[1708342926,[1,3,4,4,5,5,5,6,6,8]],[1708342927,[0,2,3,4,5,5,6,7,10,15]],[1708342928,[0,3,3,4,4,5,6,8,10,19]],[1708342929,[1,3,4,4,5,5,6,7,11,15]],[1708342930,[0,2,4,5,5,5,6,6,16,21]],[1708342931,[1,3,5,6,7,8,9,12,18,22]],[1708342932,[0,3,4,4,4,5,5,7,10,12]],[1708342933,[0,2,4,5,5,5,6,6,8,13]],[1708342934,[0,3,4,5,5,5,6,7,11,15]],[1708342935,[0,1,4,5,5,6,6,8,20,24]],[1708342936,[1,3,4,6,9,49,130,191,232,239]],[1708342937,[1,3,4,4,5,5,5,6,13,17]],[1708342938,[1,3,4,5,5,5,5,7,14,18]],[1708342939,[0,2,4,5,5,6,8,11,17,18]],[1708342940,[0,3,3,5,5,6,6,8,15,19]],[1708342941,[0,3,4,5,6,6,7,8,18,20]],[1708342942,[0,3,4,5,5,6,6,7,12,18]],[1708342943,[0,3,4,5,6,6,7,8,14,17]],[1708342944,[0,1,3,5,5,6,6,7,12,16]],[1708342945,[0,3,4,5,6,6,7,9,15,20]],[1708342946,[1,3,4,5,5,5,7,8,13,15]],[1708342947,[0,3,4,4,5,5,7,10,16,19]],[1708342948,[0,3,4,4,5,5,6,7,12,15]],[1708342949,[1,3,4,5,5,6,7,10,16,22]],[1708342950,[1,3,4,5,5,6,7,10,16,21]],[1708342951,[1,3,4,5,5,6,6,9,14,19]],[1708342952,[0,3,4,6,6,7,7,9,13,15]],[1708342953,[0,1,4,5,6,6,7,11,22,30]],[1708342954,[0,2,4,5,6,6,7,8,10,13]],[1708342955,[1,2,4,6,6,7,7,9,15,19]],[1708342956,[1,3,5,6,6,6,7,8,15,16]],[1708342957,[0,1,4,5,5,5,6,6,11,14]],[1708342958,[0,3,4,5,5,5,6,8,28,31]],[1708342959,[0,3,4,5,5,5,6,10,17,22]],[1708342960,[0,3,4,5,5,6,6,9,17,24]],[1708342961,[1,3,4,5,5,6,8,11,15,20]],[1708342962,[1,3,4,5,5,6,6,7,15,20]],[1708342963,[0,2,4,5,6,6,7,9,15,23]],[1708342964,[1,4,6,8,9,10,13,18,28,31]],[1708342965,[1,4,6,8,9,10,11,16,31,33]],[1708342966,[1,4,6,9,9,10,11,12,18,23]],[1708342967,[1,5,8,11,12,57,100,145,187,219]],[1708342968,[1,4,6,8,9,9,9,11,13,17]],[1708342969,[1,4,6,8,9,10,10,15,35,41]],[1708342970,[1,4,5,7,8,8,8,10,16,22]],[1708342971,[1,4,5,7,7,8,8,9,13,17]],[1708342972,[1,4,6,9,9,10,12,17,24,35]],[1708342973,[0,4,7,8,9,9,10,11,16,18]],[1708342974,[0,3,4,6,7,8,10,15,18,23]],[1708342975,[0,4,6,8,8,9,9,10,11,13]],[1708342976,[0,3,5,7,8,9,9,11,16,21]],[1708342977,[1,5,7,9,9,10,10,11,14,21]],[1708342978,[1,4,5,6,7,8,8,10,14,21]],[1708342979,[1,5,7,9,9,10,11,13,27,34]],[1708342980,[0,3,5,6,6,6,7,8,10,11]],[1708342981,[1,5,7,8,9,9,10,12,17,18]],[1708342982,[1,3,4,6,6,6,6,8,18,22]],[1708342983,[1,6,7,9,9,10,10,11,12,14]],[1708342984,[1,3,5,6,6,8,9,12,16,22]],[1708342985,[1,5,7,8,9,9,10,11,14,16]],[1708342986,[0,3,4,6,6,6,7,8,14,19]],[1708342987,[0,4,7,8,9,9,10,12,15,18]],[1708342988,[0,3,5,7,7,8,10,13,20,31]],[1708342989,[1,5,8,10,11,13,39,58,89,147]],[1708342990,[1,4,5,6,6,7,8,10,17,20]],[1708342991,[1,4,7,9,9,10,11,14,63,96]],[1708342992,[1,5,37,98,112,133,158,241,441,510]],[1708342993,[1,4,7,9,9,10,12,16,22,25]],[1708342994,[1,4,5,8,9,12,19,39,63,98]],[1708342995,[1,4,7,9,9,10,12,14,27,34]],[1708342996,[1,4,5,7,7,8,9,11,14,17]],[1708342997,[1,14,124,366,494,668,988,1492,3401,4071]],[1708342998,[23,486,788,1725,2285,2719,2995,3542,4342,7111]],[1708342999,[258,1824,2173,2609,2750,2948,3234,3941,5925,7080]],[1708343000,[718,1518,1926,2325,2360,2433,2645,3260,5087,6927]],[1708343001,[730,1601,2079,2598,2755,2937,3255,3838,5014,6697]],[1708343002,[722,2010,2462,2848,2917,3067,3195,3849,4665,5217]],[1708343003,[1038,1749,2336,2969,3034,3118,3255,3443,4444,5034]],[1708343004,[930,1973,2347,2797,2912,3061,3245,3560,4934,7812]],[1708343005,[918,1881,2252,2763,2885,3014,3261,3767,4874,7679]],[1708343006,[860,1787,2122,2978,3062,3188,3397,3915,5391,6782]],[1708343007,[728,1699,2092,3334,3408,3567,3814,4353,5124,6178]],[1708343008,[803,1998,2572,3607,3718,3802,3978,4405,5044,6329]],[1708343009,[897,1765,2500,3746,3838,3950,4089,4478,5340,6349]],[1708343010,[1026,1982,3054,3835,3902,4004,4180,4439,4887,5326]],[1708343011,[1312,2795,3238,4010,4133,4247,4472,5041,6375,7072]],[1708343012,[1382,2253,3393,4202,4265,4325,4555,4855,5653,7010]],[1708343013,[1444,2443,3866,4475,4616,4850,4986,5226,8092,10605]],[1708343014,[1750,3706,4346,4681,4748,4977,5328,6293,9266,10204]],[1708343015,[2005,3840,4523,5102,5247,5457,6111,7453,8960,9379]],[1708343016,[2297,4430,5095,5735,5888,5987,6244,7125,8394,8656]],[1708343017,[2807,5283,5808,6469,6563,6782,7260,7674,9872,14178]],[1708343018,[3404,5913,6694,7145,7305,7673,9040,11086,12361,13517]],[1708343019,[3925,6307,6948,7548,7630,7717,7878,8568,11268,12511]],[1708343020,[4595,6852,7462,8152,8216,8382,8760,9486,10515,11499]],[1708343021,[5410,7482,8002,8434,8491,8585,8784,9340,10978,13186]],[1708343022,[5874,6757,8317,8850,9032,9264,9513,10123,12899,15434]],[1708343023,[6176,8193,8865,9523,9644,9866,10218,11553,16254,17658]],[1708343024,[6395,8483,9386,10306,10585,11930,12877,16874,24221,35357]],[1708343025,[6231,8610,9190,11286,12028,12657,13579,15602,40312,49856]],[1708343026,[5912,8780,9841,11514,12309,13040,15202,18399,29319,30777]],[1708343027,[6187,8689,9575,11623,12547,13037,14508,17822,19893,27863]],[1708343028,[6225,9140,10064,12599,13040,13329,14075,17204,18714,36481]],[1708343029,[6587,9165,9949,11420,13214,13522,14948,18314,41083,45164]],[1708343030,[6769,9406,9724,11225,13230,14188,15210,17103,23699,28946]],[1708343031,[7022,9833,11211,14111,14752,17330,18691,34769,41611,45449]],[1708343032,[7019,10023,11331,14343,15154,16947,18669,23793,40674,43042]],[1708343033,[7198,10271,11035,14061,14754,17128,19622,36194,51880,53882]],[1708343034,[7304,10565,11073,13403,14511,15275,24181,37284,41926,52744]],[1708343035,[7885,10794,11726,14349,15433,21238,37693,39642,42854,47083]],[1708343036,[7758,10508,11521,14855,17058,20234,35624,38678,40768,46771]],[1708343037,[7764,10705,11674,15309,16035,17139,19626,24093,33251,35760]],[1708343038,[7693,10506,11194,13005,13405,15117,17417,36633,47131,49381]],[1708343039,[7788,10475,11492,16658,17584,18902,20681,28432,39009,40352]],[1708343040,[8001,10470,12175,14525,15804,17440,20773,37334,49269,51465]],[1708343041,[7707,10127,12687,16217,17306,20573,28366,39381,45465,46809]],[1708343042,[7476,10014,12807,16152,22026,37734,40501,44213,57245,59951]],[1708343043,[7204,10327,12924,16845,17650,20063,37168,40739,45400,59466]],[1708343044,[6999,9787,13183,21644,37279,39574,48441,58683,59869,59973]],[1708343045,[7003,9682,12723,14497,15897,17648,20700,34300,39949,41149]],[1708343046,[7214,10149,12584,14000,14744,16527,19490,30304,38828,40141]],[1708343047,[7616,10545,13084,16267,18191,20471,22308,50295,58150,58220]],[1708343048,[7587,10209,12517,15147,15740,17969,21637,24042,38886,40446]],[1708343049,[7600,10282,12796,14497,14854,15481,20259,23817,37356,42057]],[1708343050,[7704,10187,12641,13900,14630,15426,20916,23396,38853,41461]],[1708343051,[7686,9998,12302,15495,20794,21849,24487,35124,38553,39636]],[1708343052,[7590,10388,12190,19111,23553,25875,33652,38890,51030,51641]],[1708343053,[7405,10024,11719,35146,36427,38180,38956,39989,48318,51248]],[1708343054,[7410,9118,10798,12700,15870,21747,25486,29213,38859,49162]],[1708343055,[7035,8510,10269,12131,14289,20215,22761,37080,39588,48557]],[1708343056,[6519,8962,11232,20216,22359,24471,32979,45471,47758,48057]],[1708343057,[6015,7774,9491,13884,16063,36478,39619,42349,45891,45962]],[1708343058,[5494,7031,8856,13109,14329,15169,20643,43804,46056,46240]],[1708343059,[5112,6931,8561,15015,22885,37011,39266,43422,46838,55527]],[1708343060,[4426,7280,8411,14729,16302,22473,37363,40067,42853,43950]],[1708343061,[4005,6013,8120,14625,20388,37014,37784,40738,41225,42446]],[1708343062,[3503,5392,7561,13851,20833,26273,37110,40578,42416,56765]],[1708343063,[3426,4697,6869,9394,10618,12190,14344,36668,39929,40415]],[1708343064,[3497,5197,6937,8828,10598,12134,14723,36100,50369,54825]],[1708343065,[3433,4643,6638,7707,8059,10184,12464,35056,38694,38866]],[1708343066,[3511,4920,6977,8335,8897,10533,17899,35335,37905,38244]],[1708343067,[3587,4786,6297,7614,7895,8546,10061,13642,35249,37244]],[1708343068,[3682,5208,7172,10168,13150,16471,33839,35243,35967,36100]],[1708343069,[3582,4918,7076,9308,10950,12596,15470,33090,34808,35142]],[1708343070,[3509,5281,7019,9149,11054,14999,31962,33666,34228,34342]],[1708343071,[3676,4885,6931,8527,9052,10813,12567,15847,32860,33359]],[1708343072,[3722,5502,7470,10161,11208,12452,14542,31558,33859,33905]],[1708343073,[3811,5220,7499,8819,9242,10029,11356,15048,27455,31522]],[1708343074,[3954,5358,7708,9034,10822,12499,23428,31453,31547,31555]],[1708343075,[4029,5374,7696,9302,10852,12463,14285,28150,31761,31899]],[1708343076,[4027,6087,8056,11211,20615,25979,31506,31577,31618,31632]],[1708343077,[4132,5586,7785,10313,11855,15223,21844,31466,31712,31873]],[1708343078,[4029,5799,7634,10076,11594,12857,20105,24465,31553,31620]],[1708343079,[3999,5509,7315,10038,11600,17005,20886,24074,31537,31618]],[1708343080,[3979,5393,7221,8183,8728,10154,13240,19939,23464,24342]],[1708343081,[3871,5174,7067,8525,10280,12491,14763,18854,22663,23135]],[1708343082,[3689,5013,6974,8749,10221,12789,16039,18785,21386,21648]],[1708343083,[3490,4725,6520,7840,8198,9391,10545,15606,20506,20957]],[1708343084,[3316,4502,6510,7930,8463,10460,12787,16278,19923,20230]],[1708343085,[3302,4713,6633,8468,9364,11131,13053,17155,19015,19248]],[1708343086,[3318,4613,6760,8045,8304,11183,12967,16359,17797,17958]],[1708343087,[3454,4699,6322,8419,8788,9297,11051,11826,15746,16042]],[1708343088,[3497,4874,7200,8644,9036,9630,11730,12569,15554,15947]],[1708343089,[3725,5214,7356,8889,9190,10114,11750,13171,14700,15064]],[1708343090,[3927,5578,7881,9103,9425,9831,10958,12240,13538,13752]],[1708343091,[4121,5754,7439,9028,9722,10163,10949,11966,12587,13123]],[1708343092,[4277,5797,6847,8786,9048,10025,10149,10469,11411,11759]],[1708343093,null],[1708343094,null],[1708343095,null],[1708343096,null],[1708343097,null],[1708343098,null],[1708343099,null],[1708343100,null],[1708343101,null],[1708343102,null],[1708343103,null],[1708343104,null],[1708343105,null],[1708343106,null],[1708343107,null],[1708343108,null],[1708343109,null],[1708343110,null],[1708343111,null],[1708343112,null],[1708343113,null],[1708343114,null],[1708343115,null],[1708343116,null],[1708343117,null],[1708343118,null],[1708343119,null],[1708343120,null],[1708343121,null]]);
var responsetimepercentilesovertimeokPercentilesChart = new Highcharts.StockChart({
chart: {
renderTo: 'responsetimepercentilesovertimeokPercentilesContainer',
zoomType: 'x',
marginBottom: 60
},
colors: ['#c4fd90', '#7ff77f', '#6ff2ad', '#61ede6', '#58c7e0', '#4ea1d4', '#487ad9', '#3f52cc', '#7335dc', '#c73905', '#FFA900'],
credits: { enabled: false },
legend: {
enabled: true,
floating: true,
y: -65,
borderWidth: 0,
itemStyle: { fontWeight: "normal" },
symbolRadius: 0
},
title: { text: 'A title to let highcharts reserve the place for the title set later' },
navigator: {
maskInside: false,
baseSeries: 9
},
rangeSelector: {
rangeSelector: { align: "left" },
buttonSpacing: 0,
buttonTheme: {
fill: '#CFC9C6',
padding: 1,
stroke: '#000000',
'stroke-width': 0.25,
style: {
color: '#000000',
fontWeight: 'bold',
},
states: {
stroke: '#92918C',
'stroke-width': 0.25,
hover: {
fill: '#92918C',
style: { color: 'black' }
},
select: {
fill: '#FFA900',
style: { color: 'white' }
}
}
},
buttons : [
{
type : 'minute',
count : 1,
text : '1m'
}, {
type : 'minute',
count : 10,
text : '10m'
}, {
type : 'hour',
count : 1,
text : '1h'
}, {
type : 'all',
count : 1,
text : 'All'
}
],
selected : 3,
inputEnabled : false
},
xAxis: {
type: 'datetime',
ordinal: false,
maxZoom: 10000 // three days
},
yAxis:[
{
min: 0,
title: { text: 'Response Time (ms)' },
opposite: false
}, {
min: 0,
title: {
text: 'Active Users',
style: { color: '#FFA900' }
},
opposite: true
}
],
plotOptions: {
arearange: { lineWidth: 1 },
series: {
dataGrouping: { enabled: false }
}
},
series: [
{
pointInterval: 1000,
name: 'min',
data: responsetimepercentilesovertimeokPercentiles[0],
tooltip: { yDecimals: 0, ySuffix: 'ms' },
type : 'area',
yAxis: 0,
zIndex: 10
},
{
pointInterval: 1000,
name: '25%',
data: responsetimepercentilesovertimeokPercentiles[1],
tooltip: { yDecimals: 0, ySuffix: 'ms' },
type : 'area',
yAxis: 0,
zIndex: 9
},
{
pointInterval: 1000,
name: '50%',
data: responsetimepercentilesovertimeokPercentiles[2],
tooltip: { yDecimals: 0, ySuffix: 'ms' },
type : 'area',
yAxis: 0,
zIndex: 8
},
{
pointInterval: 1000,
name: '75%',
data: responsetimepercentilesovertimeokPercentiles[3],
tooltip: { yDecimals: 0, ySuffix: 'ms' },
type : 'area',
yAxis: 0,
zIndex: 7
},
{
pointInterval: 1000,
name: '80%',
data: responsetimepercentilesovertimeokPercentiles[4],
tooltip: { yDecimals: 0, ySuffix: 'ms' },
type : 'area',
yAxis: 0,
zIndex: 6
},
{
pointInterval: 1000,
name: '85%',
data: responsetimepercentilesovertimeokPercentiles[5],
tooltip: { yDecimals: 0, ySuffix: 'ms' },
type : 'area',
yAxis: 0,
zIndex: 5
},
{
pointInterval: 1000,
name: '90%',
data: responsetimepercentilesovertimeokPercentiles[6],
tooltip: { yDecimals: 0, ySuffix: 'ms' },
type : 'area',
yAxis: 0,
zIndex: 4
},
{
pointInterval: 1000,
name: '95%',
data: responsetimepercentilesovertimeokPercentiles[7],
tooltip: { yDecimals: 0, ySuffix: 'ms' },
type : 'area',
yAxis: 0,
zIndex: 3
},
{
pointInterval: 1000,
name: '99%',
data: responsetimepercentilesovertimeokPercentiles[8],
tooltip: { yDecimals: 0, ySuffix: 'ms' },
type : 'area',
yAxis: 0,
zIndex: 2
},
{
pointInterval: 1000,
name: 'max',
data: responsetimepercentilesovertimeokPercentiles[9],
tooltip: { yDecimals: 0, ySuffix: 'ms' },
type : 'area',
yAxis: 0,
zIndex: 1
},
allUsersData
]
});
responsetimepercentilesovertimeokPercentilesChart.setTitle({
text: '<span class="chart_title chart_title_">Response Time Percentiles over Time (OK)</span>',
useHTML: true
});
var requests = unpack([[1708342847,[25,25,0]],[1708342848,[1,1,0]],[1708342849,[25,25,0]],[1708342850,[1,1,0]],[1708342851,[71,71,0]],[1708342852,[3,3,0]],[1708342853,[6,6,0]],[1708342854,[9,9,0]],[1708342855,[11,11,0]],[1708342856,[13,13,0]],[1708342857,[18,18,0]],[1708342858,[19,19,0]],[1708342859,[24,24,0]],[1708342860,[26,26,0]],[1708342861,[27,27,0]],[1708342862,[32,32,0]],[1708342863,[34,34,0]],[1708342864,[37,37,0]],[1708342865,[39,39,0]],[1708342866,[43,43,0]],[1708342867,[44,44,0]],[1708342868,[49,49,0]],[1708342869,[50,50,0]],[1708342870,[54,54,0]],[1708342871,[56,56,0]],[1708342872,[60,60,0]],[1708342873,[61,61,0]],[1708342874,[65,65,0]],[1708342875,[67,67,0]],[1708342876,[70,70,0]],[1708342877,[74,74,0]],[1708342878,[76,76,0]],[1708342879,[80,80,0]],[1708342880,[81,81,0]],[1708342881,[84,84,0]],[1708342882,[89,89,0]],[1708342883,[89,89,0]],[1708342884,[93,93,0]],[1708342885,[96,96,0]],[1708342886,[98,98,0]],[1708342887,[102,102,0]],[1708342888,[104,104,0]],[1708342889,[107,107,0]],[1708342890,[109,109,0]],[1708342891,[114,114,0]],[1708342892,[115,115,0]],[1708342893,[118,118,0]],[1708342894,[121,121,0]],[1708342895,[124,124,0]],[1708342896,[126,126,0]],[1708342897,[129,129,0]],[1708342898,[133,133,0]],[1708342899,[134,134,0]],[1708342900,[139,139,0]],[1708342901,[140,140,0]],[1708342902,[144,144,0]],[1708342903,[146,146,0]],[1708342904,[149,149,0]],[1708342905,[151,151,0]],[1708342906,[155,155,0]],[1708342907,[157,157,0]],[1708342908,[160,160,0]],[1708342909,[164,164,0]],[1708342910,[165,165,0]],[1708342911,[171,171,0]],[1708342912,[171,171,0]],[1708342913,[174,174,0]],[1708342914,[177,177,0]],[1708342915,[180,180,0]],[1708342916,[183,183,0]],[1708342917,[186,186,0]],[1708342918,[188,188,0]],[1708342919,[192,192,0]],[1708342920,[194,194,0]],[1708342921,[197,197,0]],[1708342922,[198,198,0]],[1708342923,[204,204,0]],[1708342924,[204,204,0]],[1708342925,[208,208,0]],[1708342926,[211,211,0]],[1708342927,[214,214,0]],[1708342928,[217,217,0]],[1708342929,[219,219,0]],[1708342930,[222,222,0]],[1708342931,[225,225,0]],[1708342932,[227,227,0]],[1708342933,[230,230,0]],[1708342934,[234,234,0]],[1708342935,[236,236,0]],[1708342936,[239,239,0]],[1708342937,[242,242,0]],[1708342938,[244,244,0]],[1708342939,[248,248,0]],[1708342940,[250,250,0]],[1708342941,[253,253,0]],[1708342942,[255,255,0]],[1708342943,[260,260,0]],[1708342944,[263,263,0]],[1708342945,[263,263,0]],[1708342946,[266,266,0]],[1708342947,[270,270,0]],[1708342948,[273,273,0]],[1708342949,[275,275,0]],[1708342950,[279,279,0]],[1708342951,[281,281,0]],[1708342952,[284,284,0]],[1708342953,[286,286,0]],[1708342954,[290,290,0]],[1708342955,[292,292,0]],[1708342956,[295,295,0]],[1708342957,[298,298,0]],[1708342958,[301,301,0]],[1708342959,[303,303,0]],[1708342960,[307,307,0]],[1708342961,[309,309,0]],[1708342962,[312,312,0]],[1708342963,[315,315,0]],[1708342964,[317,317,0]],[1708342965,[320,320,0]],[1708342966,[323,323,0]],[1708342967,[326,326,0]],[1708342968,[330,330,0]],[1708342969,[332,332,0]],[1708342970,[334,334,0]],[1708342971,[337,337,0]],[1708342972,[340,340,0]],[1708342973,[340,340,0]],[1708342974,[340,340,0]],[1708342975,[340,340,0]],[1708342976,[340,340,0]],[1708342977,[340,340,0]],[1708342978,[340,340,0]],[1708342979,[340,340,0]],[1708342980,[340,340,0]],[1708342981,[340,340,0]],[1708342982,[340,340,0]],[1708342983,[340,340,0]],[1708342984,[340,340,0]],[1708342985,[340,340,0]],[1708342986,[340,340,0]],[1708342987,[340,340,0]],[1708342988,[340,340,0]],[1708342989,[340,340,0]],[1708342990,[340,340,0]],[1708342991,[340,340,0]],[1708342992,[340,340,0]],[1708342993,[340,340,0]],[1708342994,[340,340,0]],[1708342995,[340,340,0]],[1708342996,[340,340,0]],[1708342997,[340,340,0]],[1708342998,[340,340,0]],[1708342999,[340,340,0]],[1708343000,[340,340,0]],[1708343001,[340,340,0]],[1708343002,[340,340,0]],[1708343003,[340,340,0]],[1708343004,[340,340,0]],[1708343005,[340,340,0]],[1708343006,[340,340,0]],[1708343007,[340,340,0]],[1708343008,[340,340,0]],[1708343009,[340,340,0]],[1708343010,[340,340,0]],[1708343011,[340,340,0]],[1708343012,[340,340,0]],[1708343013,[340,340,0]],[1708343014,[340,340,0]],[1708343015,[340,340,0]],[1708343016,[340,340,0]],[1708343017,[340,340,0]],[1708343018,[340,340,0]],[1708343019,[340,340,0]],[1708343020,[340,340,0]],[1708343021,[340,340,0]],[1708343022,[340,340,0]],[1708343023,[340,340,0]],[1708343024,[340,334,6]],[1708343025,[340,306,34]],[1708343026,[340,251,89]],[1708343027,[340,255,85]],[1708343028,[340,270,70]],[1708343029,[340,262,78]],[1708343030,[340,296,44]],[1708343031,[340,242,98]],[1708343032,[340,256,84]],[1708343033,[340,245,95]],[1708343034,[340,232,108]],[1708343035,[340,222,118]],[1708343036,[340,224,116]],[1708343037,[340,194,146]],[1708343038,[340,225,115]],[1708343039,[340,223,117]],[1708343040,[340,229,111]],[1708343041,[340,201,139]],[1708343042,[340,224,116]],[1708343043,[340,225,115]],[1708343044,[340,254,86]],[1708343045,[340,207,133]],[1708343046,[340,228,112]],[1708343047,[340,236,104]],[1708343048,[340,200,140]],[1708343049,[340,205,135]],[1708343050,[340,195,145]],[1708343051,[340,222,118]],[1708343052,[340,253,87]],[1708343053,[340,268,72]],[1708343054,[340,196,144]],[1708343055,[340,253,87]],[1708343056,[340,283,57]],[1708343057,[340,289,51]],[1708343058,[340,274,66]],[1708343059,[340,287,53]],[1708343060,[340,314,26]],[1708343061,[340,325,15]],[1708343062,[340,334,6]],[1708343063,[340,339,1]],[1708343064,[340,335,5]],[1708343065,[340,338,2]],[1708343066,[340,340,0]],[1708343067,[340,340,0]],[1708343068,[340,340,0]],[1708343069,[340,340,0]],[1708343070,[340,340,0]],[1708343071,[340,340,0]],[1708343072,[340,340,0]],[1708343073,[340,340,0]],[1708343074,[340,340,0]],[1708343075,[340,340,0]],[1708343076,[340,340,0]],[1708343077,[340,340,0]],[1708343078,[340,340,0]],[1708343079,[340,340,0]],[1708343080,[340,340,0]],[1708343081,[340,340,0]],[1708343082,[340,340,0]],[1708343083,[340,340,0]],[1708343084,[340,340,0]],[1708343085,[340,340,0]],[1708343086,[340,340,0]],[1708343087,[340,340,0]],[1708343088,[340,340,0]],[1708343089,[340,340,0]],[1708343090,[340,340,0]],[1708343091,[340,340,0]],[1708343092,[163,163,0]],[1708343093,[0,0,0]],[1708343094,[0,0,0]],[1708343095,[0,0,0]],[1708343096,[0,0,0]],[1708343097,[0,0,0]],[1708343098,[0,0,0]],[1708343099,[0,0,0]],[1708343100,[0,0,0]],[1708343101,[0,0,0]],[1708343102,[0,0,0]],[1708343103,[0,0,0]],[1708343104,[0,0,0]],[1708343105,[0,0,0]],[1708343106,[0,0,0]],[1708343107,[0,0,0]],[1708343108,[0,0,0]],[1708343109,[0,0,0]],[1708343110,[0,0,0]],[1708343111,[0,0,0]],[1708343112,[0,0,0]],[1708343113,[0,0,0]],[1708343114,[0,0,0]],[1708343115,[0,0,0]],[1708343116,[0,0,0]],[1708343117,[0,0,0]],[1708343118,[0,0,0]],[1708343119,[0,0,0]],[1708343120,[0,0,0]],[1708343121,[0,0,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,
text : '1m'
}, {
type : 'minute',
count : 10,
text : '10m'