-
Notifications
You must be signed in to change notification settings - Fork 923
/
Copy pathindex.html
1200 lines (1130 loc) · 94.4 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 07:32:11 GMT</span>
</span>
<span class="simulation-information-item">
<span class="simulation-information-label">Duration: </span>
<span>4m 4s </span>
</span>
<span class="simulation-tooltip simulation-information-item description" title="Description" data-content="Rinha de Backend - 2024/Q1: Crébito - gwoliveira-no-db-lock">
<span class="simulation-information-label">Description: </span>
<span>Rinha de Backend - 2024/Q1: Crébito - gwoliveira-no-db-lock</span>
</span>
</div>
</div>
</div>
</div>
<div id="statistics_table_container">
<div id="stats" class="statistics extensible-geant collapsed">
<div class="title">
<div id="statistics_title" class="title_base"><span class="title_base_stats">Stats</span><span class="expand-table">Fixed height</span><span id="toggle-stats" class="toggle-table"></span><span class="collapse-table">Full size</span></div>
<div class="right">
<button class="statistics-button expand-all-button">Expand all groups</button>
<button class="statistics-button collapse-all-button">Collapse all groups</button>
<button id="statistics_full_screen" class="statistics-button" onclick="openStatisticsTableModal()"><img alt="Fullscreen" src="style/fullscreen.svg"></button>
</div>
</div>
<div class="scrollable">
<table id="container_statistics_head" class="statistics-in extensible-geant">
<thead>
<tr>
<th rowspan="2" id="col-1" class="header sortable sorted-up"><span>Requests</span></th>
<th colspan="5" class="header"><span class="executions">Executions</span></th>
<th colspan="8" class="header"><span class="response-time">Response Time (ms)</span></th>
</tr>
<tr>
<th id="col-2" class="header sortable"><span>Total</span></th>
<th id="col-3" class="header sortable"><span>OK</span></th>
<th id="col-4" class="header sortable"><span>KO</span></th>
<th id="col-5" class="header sortable"><span>% KO</span></th>
<th id="col-6" class="header sortable"><span><abbr title="Count of events per second">Cnt/s</abbr></span></th>
<th id="col-7" class="header sortable"><span>Min</span></th>
<th id="col-8" class="header sortable"><span>50th pct</span></th>
<th id="col-9" class="header sortable"><span>75th pct</span></th>
<th id="col-10" class="header sortable"><span>95th pct</span></th>
<th id="col-11" class="header sortable"><span>99th pct</span></th>
<th id="col-12" class="header sortable"><span>Max</span></th>
<th id="col-13" class="header sortable"><span>Mean</span></th>
<th id="col-14" class="header sortable"><span><abbr title="Standard Deviation">Std Dev</abbr></span></th>
</tr>
</thead>
<tbody></tbody>
</table>
<table id="container_statistics_body" class="statistics-in extensible-geant">
<tbody></tbody>
</table>
</div>
</div>
</div>
<dialog id="statistics_table_modal" class="statistics-table-modal">
<div class="statistics-table-modal-header"><button class="button-modal" onclick="closeStatisticsTableModal()"><img alt="Close" src="style/close.svg"></button></div>
<div class="statistics-table-modal-container">
<div id="statistics_table_modal_content" class="statistics-table-modal-content"></div>
</div>
</dialog>
<script>
function openStatisticsTableModal () {
const statsTable = document.getElementById("stats");
const statsTableModal = document.getElementById("statistics_table_modal");
const fullScreenButton = document.getElementById("statistics_full_screen");
fullScreenButton.disabled = true;
if (typeof statsTableModal.showModal === "function") {
const statsTableModalContent = document.getElementById("statistics_table_modal_content");
statsTableModalContent.innerHTML = "";
statsTableModalContent.appendChild(statsTable);
statsTableModal.showModal();
statsTableModal.addEventListener("close", function () {
const container = document.getElementById("statistics_table_container");
container.appendChild(statsTable);
fullScreenButton.disabled = false;
});
} else {
const incompatibleBrowserVersionMessage = document.createElement("div");
incompatibleBrowserVersionMessage.innerText = "Sorry, the <dialog> API is not supported by this browser.";
statsTable.insertBefore(incompatibleBrowserVersionMessage, statsTable.children[0]);
}
}
function closeStatisticsTableModal () {
const statsTableModal = document.getElementById("statistics_table_modal");
statsTableModal.close();
}
</script>
<div class="statistics extensible-geant collapsed">
<div class="title">
Errors
</div>
<table id="container_errors" class="statistics-in extensible-geant">
<thead>
<tr>
<th id="error-col-1" class="header sortable"><span>Error</span></th>
<th id="error-col-2" class="header sortable"><span>Count</span></th>
<th id="error-col-3" class="header sortable"><span>Percentage</span></th>
</tr>
</thead>
<tbody>
<tr>
<td class="error-col-1 total ko">jmesPath(saldo.total).find.is(0), but actually found -3<span class="value" style="display:none">0</span></td>
<td class="value error-col-2 total ko">2</td>
<td class="value error-col-3 total ko">66.667 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">jmesPath(saldo.total).find.is(-25), but actually found -24<span class="value" style="display:none">1</span></td>
<td class="value error-col-2 total ko">1</td>
<td class="value error-col-3 total ko">33.333 %</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: [
[1708327932000,0],[1708327933000,0],[1708327934000,0],[1708327935000,0],[1708327936000,0],[1708327937000,2],[1708327938000,2],[1708327939000,4],[1708327940000,4],[1708327941000,5],[1708327942000,6],[1708327943000,7],[1708327944000,8],[1708327945000,8],[1708327946000,10],[1708327947000,10],[1708327948000,12],[1708327949000,12],[1708327950000,14],[1708327951000,14],[1708327952000,15],[1708327953000,16],[1708327954000,17],[1708327955000,17],[1708327956000,19],[1708327957000,20],[1708327958000,20],[1708327959000,22],[1708327960000,22],[1708327961000,23],[1708327962000,25],[1708327963000,25],[1708327964000,26],[1708327965000,26],[1708327966000,28],[1708327967000,29],[1708327968000,30],[1708327969000,30],[1708327970000,32],[1708327971000,32],[1708327972000,33],[1708327973000,34],[1708327974000,35],[1708327975000,36],[1708327976000,37],[1708327977000,38],[1708327978000,39],[1708327979000,39],[1708327980000,41],[1708327981000,41],[1708327982000,43],[1708327983000,43],[1708327984000,44],[1708327985000,45],[1708327986000,46],[1708327987000,47],[1708327988000,48],[1708327989000,48],[1708327990000,50],[1708327991000,50],[1708327992000,52],[1708327993000,52],[1708327994000,53],[1708327995000,54],[1708327996000,56],[1708327997000,55],[1708327998000,57],[1708327999000,58],[1708328000000,59],[1708328001000,59],[1708328002000,61],[1708328003000,61],[1708328004000,63],[1708328005000,63],[1708328006000,64],[1708328007000,65],[1708328008000,66],[1708328009000,67],[1708328010000,68],[1708328011000,68],[1708328012000,70],[1708328013000,70],[1708328014000,72],[1708328015000,72],[1708328016000,73],[1708328017000,74],[1708328018000,75],[1708328019000,76],[1708328020000,77],[1708328021000,78],[1708328022000,79],[1708328023000,79],[1708328024000,81],[1708328025000,81],[1708328026000,82],[1708328027000,83],[1708328028000,85],[1708328029000,85],[1708328030000,86],[1708328031000,86],[1708328032000,88],[1708328033000,89],[1708328034000,90],[1708328035000,92],[1708328036000,92],[1708328037000,93],[1708328038000,95],[1708328039000,95],[1708328040000,96],[1708328041000,97],[1708328042000,98],[1708328043000,100],[1708328044000,100],[1708328045000,100],[1708328046000,102],[1708328047000,102],[1708328048000,104],[1708328049000,104],[1708328050000,105],[1708328051000,106],[1708328052000,107],[1708328053000,108],[1708328054000,108],[1708328055000,110],[1708328056000,111],[1708328057000,111],[1708328058000,111],[1708328059000,111],[1708328060000,111],[1708328061000,111],[1708328062000,111],[1708328063000,111],[1708328064000,111],[1708328065000,111],[1708328066000,111],[1708328067000,111],[1708328068000,111],[1708328069000,111],[1708328070000,111],[1708328071000,112],[1708328072000,111],[1708328073000,111],[1708328074000,160],[1708328075000,168],[1708328076000,121],[1708328077000,111],[1708328078000,111],[1708328079000,111],[1708328080000,111],[1708328081000,111],[1708328082000,111],[1708328083000,111],[1708328084000,111],[1708328085000,111],[1708328086000,111],[1708328087000,111],[1708328088000,111],[1708328089000,111],[1708328090000,111],[1708328091000,111],[1708328092000,111],[1708328093000,111],[1708328094000,111],[1708328095000,111],[1708328096000,111],[1708328097000,111],[1708328098000,111],[1708328099000,111],[1708328100000,111],[1708328101000,111],[1708328102000,111],[1708328103000,111],[1708328104000,117],[1708328105000,134],[1708328106000,126],[1708328107000,111],[1708328108000,111],[1708328109000,111],[1708328110000,111],[1708328111000,111],[1708328112000,111],[1708328113000,111],[1708328114000,111],[1708328115000,111],[1708328116000,111],[1708328117000,111],[1708328118000,111],[1708328119000,111],[1708328120000,111],[1708328121000,111],[1708328122000,111],[1708328123000,111],[1708328124000,111],[1708328125000,111],[1708328126000,111],[1708328127000,111],[1708328128000,111],[1708328129000,111],[1708328130000,111],[1708328131000,111],[1708328132000,111],[1708328133000,111],[1708328134000,111],[1708328135000,139],[1708328136000,136],[1708328137000,127],[1708328138000,118],[1708328139000,111],[1708328140000,111],[1708328141000,111],[1708328142000,111],[1708328143000,111],[1708328144000,111],[1708328145000,111],[1708328146000,111],[1708328147000,111],[1708328148000,111],[1708328149000,111],[1708328150000,111],[1708328151000,111],[1708328152000,111],[1708328153000,111],[1708328154000,111],[1708328155000,111],[1708328156000,111],[1708328157000,111],[1708328158000,111],[1708328159000,111],[1708328160000,111],[1708328161000,111],[1708328162000,111],[1708328163000,111],[1708328164000,111],[1708328165000,111],[1708328166000,111],[1708328167000,117],[1708328168000,111],[1708328169000,111],[1708328170000,111],[1708328171000,111],[1708328172000,111],[1708328173000,111],[1708328174000,111],[1708328175000,111],[1708328176000,109]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#68b65c',
name: 'débitos',
data: [
[1708327932000,0],[1708327933000,0],[1708327934000,0],[1708327935000,0],[1708327936000,0],[1708327937000,2],[1708327938000,4],[1708327939000,6],[1708327940000,7],[1708327941000,9],[1708327942000,11],[1708327943000,13],[1708327944000,15],[1708327945000,16],[1708327946000,19],[1708327947000,20],[1708327948000,22],[1708327949000,24],[1708327950000,25],[1708327951000,28],[1708327952000,29],[1708327953000,31],[1708327954000,33],[1708327955000,35],[1708327956000,37],[1708327957000,38],[1708327958000,40],[1708327959000,42],[1708327960000,44],[1708327961000,46],[1708327962000,47],[1708327963000,50],[1708327964000,51],[1708327965000,53],[1708327966000,55],[1708327967000,56],[1708327968000,59],[1708327969000,60],[1708327970000,62],[1708327971000,64],[1708327972000,66],[1708327973000,68],[1708327974000,69],[1708327975000,71],[1708327976000,74],[1708327977000,74],[1708327978000,77],[1708327979000,79],[1708327980000,80],[1708327981000,82],[1708327982000,84],[1708327983000,86],[1708327984000,88],[1708327985000,90],[1708327986000,93],[1708327987000,94],[1708327988000,96],[1708327989000,98],[1708327990000,99],[1708327991000,102],[1708327992000,103],[1708327993000,105],[1708327994000,107],[1708327995000,109],[1708327996000,111],[1708327997000,112],[1708327998000,114],[1708327999000,116],[1708328000000,118],[1708328001000,120],[1708328002000,121],[1708328003000,124],[1708328004000,125],[1708328005000,126],[1708328006000,129],[1708328007000,129],[1708328008000,132],[1708328009000,133],[1708328010000,136],[1708328011000,138],[1708328012000,139],[1708328013000,143],[1708328014000,142],[1708328015000,144],[1708328016000,147],[1708328017000,147],[1708328018000,150],[1708328019000,152],[1708328020000,153],[1708328021000,155],[1708328022000,157],[1708328023000,159],[1708328024000,161],[1708328025000,162],[1708328026000,165],[1708328027000,166],[1708328028000,168],[1708328029000,170],[1708328030000,171],[1708328031000,174],[1708328032000,175],[1708328033000,177],[1708328034000,179],[1708328035000,181],[1708328036000,184],[1708328037000,185],[1708328038000,187],[1708328039000,189],[1708328040000,190],[1708328041000,192],[1708328042000,193],[1708328043000,204],[1708328044000,198],[1708328045000,200],[1708328046000,202],[1708328047000,203],[1708328048000,206],[1708328049000,207],[1708328050000,209],[1708328051000,211],[1708328052000,213],[1708328053000,215],[1708328054000,216],[1708328055000,218],[1708328056000,221],[1708328057000,221],[1708328058000,221],[1708328059000,221],[1708328060000,221],[1708328061000,221],[1708328062000,221],[1708328063000,221],[1708328064000,221],[1708328065000,221],[1708328066000,221],[1708328067000,221],[1708328068000,221],[1708328069000,221],[1708328070000,222],[1708328071000,222],[1708328072000,221],[1708328073000,221],[1708328074000,325],[1708328075000,346],[1708328076000,241],[1708328077000,221],[1708328078000,221],[1708328079000,221],[1708328080000,221],[1708328081000,221],[1708328082000,221],[1708328083000,221],[1708328084000,221],[1708328085000,221],[1708328086000,221],[1708328087000,221],[1708328088000,221],[1708328089000,221],[1708328090000,221],[1708328091000,221],[1708328092000,221],[1708328093000,221],[1708328094000,221],[1708328095000,221],[1708328096000,221],[1708328097000,221],[1708328098000,221],[1708328099000,221],[1708328100000,221],[1708328101000,221],[1708328102000,221],[1708328103000,221],[1708328104000,225],[1708328105000,263],[1708328106000,251],[1708328107000,221],[1708328108000,221],[1708328109000,221],[1708328110000,221],[1708328111000,221],[1708328112000,221],[1708328113000,221],[1708328114000,221],[1708328115000,221],[1708328116000,221],[1708328117000,221],[1708328118000,221],[1708328119000,222],[1708328120000,221],[1708328121000,222],[1708328122000,221],[1708328123000,221],[1708328124000,221],[1708328125000,221],[1708328126000,221],[1708328127000,221],[1708328128000,221],[1708328129000,221],[1708328130000,221],[1708328131000,221],[1708328132000,221],[1708328133000,221],[1708328134000,221],[1708328135000,280],[1708328136000,275],[1708328137000,261],[1708328138000,236],[1708328139000,221],[1708328140000,221],[1708328141000,221],[1708328142000,221],[1708328143000,221],[1708328144000,221],[1708328145000,221],[1708328146000,221],[1708328147000,221],[1708328148000,221],[1708328149000,221],[1708328150000,221],[1708328151000,221],[1708328152000,221],[1708328153000,221],[1708328154000,221],[1708328155000,221],[1708328156000,221],[1708328157000,221],[1708328158000,221],[1708328159000,221],[1708328160000,221],[1708328161000,221],[1708328162000,221],[1708328163000,221],[1708328164000,221],[1708328165000,221],[1708328166000,222],[1708328167000,234],[1708328168000,221],[1708328169000,221],[1708328170000,221],[1708328171000,221],[1708328172000,221],[1708328173000,221],[1708328174000,221],[1708328175000,221],[1708328176000,219]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#f15b4f',
name: 'extratos',
data: [
[1708327932000,0],[1708327933000,0],[1708327934000,0],[1708327935000,0],[1708327936000,1],[1708327937000,2],[1708327938000,1],[1708327939000,1],[1708327940000,1],[1708327941000,1],[1708327942000,2],[1708327943000,1],[1708327944000,2],[1708327945000,2],[1708327946000,1],[1708327947000,2],[1708327948000,2],[1708327949000,2],[1708327950000,2],[1708327951000,2],[1708327952000,2],[1708327953000,2],[1708327954000,3],[1708327955000,2],[1708327956000,3],[1708327957000,2],[1708327958000,3],[1708327959000,2],[1708327960000,3],[1708327961000,3],[1708327962000,3],[1708327963000,3],[1708327964000,3],[1708327965000,3],[1708327966000,3],[1708327967000,4],[1708327968000,3],[1708327969000,3],[1708327970000,4],[1708327971000,3],[1708327972000,4],[1708327973000,4],[1708327974000,4],[1708327975000,4],[1708327976000,4],[1708327977000,4],[1708327978000,4],[1708327979000,4],[1708327980000,4],[1708327981000,4],[1708327982000,5],[1708327983000,4],[1708327984000,5],[1708327985000,5],[1708327986000,4],[1708327987000,5],[1708327988000,5],[1708327989000,5],[1708327990000,5],[1708327991000,5],[1708327992000,5],[1708327993000,5],[1708327994000,6],[1708327995000,5],[1708327996000,6],[1708327997000,5],[1708327998000,6],[1708327999000,5],[1708328000000,6],[1708328001000,6],[1708328002000,6],[1708328003000,6],[1708328004000,6],[1708328005000,6],[1708328006000,6],[1708328007000,7],[1708328008000,6],[1708328009000,6],[1708328010000,7],[1708328011000,6],[1708328012000,7],[1708328013000,7],[1708328014000,7],[1708328015000,7],[1708328016000,7],[1708328017000,7],[1708328018000,7],[1708328019000,7],[1708328020000,7],[1708328021000,7],[1708328022000,8],[1708328023000,7],[1708328024000,8],[1708328025000,8],[1708328026000,7],[1708328027000,8],[1708328028000,8],[1708328029000,8],[1708328030000,8],[1708328031000,8],[1708328032000,8],[1708328033000,8],[1708328034000,9],[1708328035000,8],[1708328036000,9],[1708328037000,8],[1708328038000,9],[1708328039000,8],[1708328040000,9],[1708328041000,9],[1708328042000,9],[1708328043000,9],[1708328044000,9],[1708328045000,9],[1708328046000,9],[1708328047000,10],[1708328048000,9],[1708328049000,9],[1708328050000,10],[1708328051000,9],[1708328052000,10],[1708328053000,10],[1708328054000,10],[1708328055000,10],[1708328056000,10],[1708328057000,10],[1708328058000,10],[1708328059000,10],[1708328060000,10],[1708328061000,10],[1708328062000,10],[1708328063000,10],[1708328064000,10],[1708328065000,10],[1708328066000,10],[1708328067000,10],[1708328068000,10],[1708328069000,10],[1708328070000,10],[1708328071000,10],[1708328072000,10],[1708328073000,10],[1708328074000,16],[1708328075000,16],[1708328076000,13],[1708328077000,10],[1708328078000,10],[1708328079000,10],[1708328080000,10],[1708328081000,10],[1708328082000,10],[1708328083000,10],[1708328084000,10],[1708328085000,10],[1708328086000,10],[1708328087000,10],[1708328088000,10],[1708328089000,10],[1708328090000,10],[1708328091000,10],[1708328092000,10],[1708328093000,10],[1708328094000,10],[1708328095000,10],[1708328096000,10],[1708328097000,10],[1708328098000,10],[1708328099000,10],[1708328100000,10],[1708328101000,10],[1708328102000,10],[1708328103000,10],[1708328104000,10],[1708328105000,13],[1708328106000,11],[1708328107000,10],[1708328108000,10],[1708328109000,10],[1708328110000,10],[1708328111000,10],[1708328112000,10],[1708328113000,10],[1708328114000,10],[1708328115000,10],[1708328116000,10],[1708328117000,10],[1708328118000,10],[1708328119000,10],[1708328120000,10],[1708328121000,10],[1708328122000,10],[1708328123000,10],[1708328124000,10],[1708328125000,10],[1708328126000,10],[1708328127000,10],[1708328128000,10],[1708328129000,10],[1708328130000,10],[1708328131000,10],[1708328132000,10],[1708328133000,10],[1708328134000,10],[1708328135000,13],[1708328136000,11],[1708328137000,11],[1708328138000,11],[1708328139000,10],[1708328140000,10],[1708328141000,10],[1708328142000,10],[1708328143000,10],[1708328144000,10],[1708328145000,10],[1708328146000,10],[1708328147000,10],[1708328148000,10],[1708328149000,10],[1708328150000,10],[1708328151000,10],[1708328152000,10],[1708328153000,10],[1708328154000,10],[1708328155000,10],[1708328156000,10],[1708328157000,10],[1708328158000,10],[1708328159000,10],[1708328160000,10],[1708328161000,10],[1708328162000,10],[1708328163000,10],[1708328164000,10],[1708328165000,10],[1708328166000,10],[1708328167000,11],[1708328168000,10],[1708328169000,10],[1708328170000,10],[1708328171000,10],[1708328172000,10],[1708328173000,10],[1708328174000,10],[1708328175000,10],[1708328176000,9]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FFDD00',
name: 'validação HTTP 404',
data: [
[1708327932000,0],[1708327933000,0],[1708327934000,0],[1708327935000,1],[1708327936000,0],[1708327937000,0],[1708327938000,0],[1708327939000,0],[1708327940000,0],[1708327941000,0],[1708327942000,0],[1708327943000,0],[1708327944000,0],[1708327945000,0],[1708327946000,0],[1708327947000,0],[1708327948000,0],[1708327949000,0],[1708327950000,0],[1708327951000,0],[1708327952000,0],[1708327953000,0],[1708327954000,0],[1708327955000,0],[1708327956000,0],[1708327957000,0],[1708327958000,0],[1708327959000,0],[1708327960000,0],[1708327961000,0],[1708327962000,0],[1708327963000,0],[1708327964000,0],[1708327965000,0],[1708327966000,0],[1708327967000,0],[1708327968000,0],[1708327969000,0],[1708327970000,0],[1708327971000,0],[1708327972000,0],[1708327973000,0],[1708327974000,0],[1708327975000,0],[1708327976000,0],[1708327977000,0],[1708327978000,0],[1708327979000,0],[1708327980000,0],[1708327981000,0],[1708327982000,0],[1708327983000,0],[1708327984000,0],[1708327985000,0],[1708327986000,0],[1708327987000,0],[1708327988000,0],[1708327989000,0],[1708327990000,0],[1708327991000,0],[1708327992000,0],[1708327993000,0],[1708327994000,0],[1708327995000,0],[1708327996000,0],[1708327997000,0],[1708327998000,0],[1708327999000,0],[1708328000000,0],[1708328001000,0],[1708328002000,0],[1708328003000,0],[1708328004000,0],[1708328005000,0],[1708328006000,0],[1708328007000,0],[1708328008000,0],[1708328009000,0],[1708328010000,0],[1708328011000,0],[1708328012000,0],[1708328013000,0],[1708328014000,0],[1708328015000,0],[1708328016000,0],[1708328017000,0],[1708328018000,0],[1708328019000,0],[1708328020000,0],[1708328021000,0],[1708328022000,0],[1708328023000,0],[1708328024000,0],[1708328025000,0],[1708328026000,0],[1708328027000,0],[1708328028000,0],[1708328029000,0],[1708328030000,0],[1708328031000,0],[1708328032000,0],[1708328033000,0],[1708328034000,0],[1708328035000,0],[1708328036000,0],[1708328037000,0],[1708328038000,0],[1708328039000,0],[1708328040000,0],[1708328041000,0],[1708328042000,0],[1708328043000,0],[1708328044000,0],[1708328045000,0],[1708328046000,0],[1708328047000,0],[1708328048000,0],[1708328049000,0],[1708328050000,0],[1708328051000,0],[1708328052000,0],[1708328053000,0],[1708328054000,0],[1708328055000,0],[1708328056000,0],[1708328057000,0],[1708328058000,0],[1708328059000,0],[1708328060000,0],[1708328061000,0],[1708328062000,0],[1708328063000,0],[1708328064000,0],[1708328065000,0],[1708328066000,0],[1708328067000,0],[1708328068000,0],[1708328069000,0],[1708328070000,0],[1708328071000,0],[1708328072000,0],[1708328073000,0],[1708328074000,0],[1708328075000,0],[1708328076000,0],[1708328077000,0],[1708328078000,0],[1708328079000,0],[1708328080000,0],[1708328081000,0],[1708328082000,0],[1708328083000,0],[1708328084000,0],[1708328085000,0],[1708328086000,0],[1708328087000,0],[1708328088000,0],[1708328089000,0],[1708328090000,0],[1708328091000,0],[1708328092000,0],[1708328093000,0],[1708328094000,0],[1708328095000,0],[1708328096000,0],[1708328097000,0],[1708328098000,0],[1708328099000,0],[1708328100000,0],[1708328101000,0],[1708328102000,0],[1708328103000,0],[1708328104000,0],[1708328105000,0],[1708328106000,0],[1708328107000,0],[1708328108000,0],[1708328109000,0],[1708328110000,0],[1708328111000,0],[1708328112000,0],[1708328113000,0],[1708328114000,0],[1708328115000,0],[1708328116000,0],[1708328117000,0],[1708328118000,0],[1708328119000,0],[1708328120000,0],[1708328121000,0],[1708328122000,0],[1708328123000,0],[1708328124000,0],[1708328125000,0],[1708328126000,0],[1708328127000,0],[1708328128000,0],[1708328129000,0],[1708328130000,0],[1708328131000,0],[1708328132000,0],[1708328133000,0],[1708328134000,0],[1708328135000,0],[1708328136000,0],[1708328137000,0],[1708328138000,0],[1708328139000,0],[1708328140000,0],[1708328141000,0],[1708328142000,0],[1708328143000,0],[1708328144000,0],[1708328145000,0],[1708328146000,0],[1708328147000,0],[1708328148000,0],[1708328149000,0],[1708328150000,0],[1708328151000,0],[1708328152000,0],[1708328153000,0],[1708328154000,0],[1708328155000,0],[1708328156000,0],[1708328157000,0],[1708328158000,0],[1708328159000,0],[1708328160000,0],[1708328161000,0],[1708328162000,0],[1708328163000,0],[1708328164000,0],[1708328165000,0],[1708328166000,0],[1708328167000,0],[1708328168000,0],[1708328169000,0],[1708328170000,0],[1708328171000,0],[1708328172000,0],[1708328173000,0],[1708328174000,0],[1708328175000,0],[1708328176000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00D5FF',
name: 'validações',
data: [
[1708327932000,0],[1708327933000,0],[1708327934000,0],[1708327935000,5],[1708327936000,5],[1708327937000,0],[1708327938000,0],[1708327939000,0],[1708327940000,0],[1708327941000,0],[1708327942000,0],[1708327943000,0],[1708327944000,0],[1708327945000,0],[1708327946000,0],[1708327947000,0],[1708327948000,0],[1708327949000,0],[1708327950000,0],[1708327951000,0],[1708327952000,0],[1708327953000,0],[1708327954000,0],[1708327955000,0],[1708327956000,0],[1708327957000,0],[1708327958000,0],[1708327959000,0],[1708327960000,0],[1708327961000,0],[1708327962000,0],[1708327963000,0],[1708327964000,0],[1708327965000,0],[1708327966000,0],[1708327967000,0],[1708327968000,0],[1708327969000,0],[1708327970000,0],[1708327971000,0],[1708327972000,0],[1708327973000,0],[1708327974000,0],[1708327975000,0],[1708327976000,0],[1708327977000,0],[1708327978000,0],[1708327979000,0],[1708327980000,0],[1708327981000,0],[1708327982000,0],[1708327983000,0],[1708327984000,0],[1708327985000,0],[1708327986000,0],[1708327987000,0],[1708327988000,0],[1708327989000,0],[1708327990000,0],[1708327991000,0],[1708327992000,0],[1708327993000,0],[1708327994000,0],[1708327995000,0],[1708327996000,0],[1708327997000,0],[1708327998000,0],[1708327999000,0],[1708328000000,0],[1708328001000,0],[1708328002000,0],[1708328003000,0],[1708328004000,0],[1708328005000,0],[1708328006000,0],[1708328007000,0],[1708328008000,0],[1708328009000,0],[1708328010000,0],[1708328011000,0],[1708328012000,0],[1708328013000,0],[1708328014000,0],[1708328015000,0],[1708328016000,0],[1708328017000,0],[1708328018000,0],[1708328019000,0],[1708328020000,0],[1708328021000,0],[1708328022000,0],[1708328023000,0],[1708328024000,0],[1708328025000,0],[1708328026000,0],[1708328027000,0],[1708328028000,0],[1708328029000,0],[1708328030000,0],[1708328031000,0],[1708328032000,0],[1708328033000,0],[1708328034000,0],[1708328035000,0],[1708328036000,0],[1708328037000,0],[1708328038000,0],[1708328039000,0],[1708328040000,0],[1708328041000,0],[1708328042000,0],[1708328043000,0],[1708328044000,0],[1708328045000,0],[1708328046000,0],[1708328047000,0],[1708328048000,0],[1708328049000,0],[1708328050000,0],[1708328051000,0],[1708328052000,0],[1708328053000,0],[1708328054000,0],[1708328055000,0],[1708328056000,0],[1708328057000,0],[1708328058000,0],[1708328059000,0],[1708328060000,0],[1708328061000,0],[1708328062000,0],[1708328063000,0],[1708328064000,0],[1708328065000,0],[1708328066000,0],[1708328067000,0],[1708328068000,0],[1708328069000,0],[1708328070000,0],[1708328071000,0],[1708328072000,0],[1708328073000,0],[1708328074000,0],[1708328075000,0],[1708328076000,0],[1708328077000,0],[1708328078000,0],[1708328079000,0],[1708328080000,0],[1708328081000,0],[1708328082000,0],[1708328083000,0],[1708328084000,0],[1708328085000,0],[1708328086000,0],[1708328087000,0],[1708328088000,0],[1708328089000,0],[1708328090000,0],[1708328091000,0],[1708328092000,0],[1708328093000,0],[1708328094000,0],[1708328095000,0],[1708328096000,0],[1708328097000,0],[1708328098000,0],[1708328099000,0],[1708328100000,0],[1708328101000,0],[1708328102000,0],[1708328103000,0],[1708328104000,0],[1708328105000,0],[1708328106000,0],[1708328107000,0],[1708328108000,0],[1708328109000,0],[1708328110000,0],[1708328111000,0],[1708328112000,0],[1708328113000,0],[1708328114000,0],[1708328115000,0],[1708328116000,0],[1708328117000,0],[1708328118000,0],[1708328119000,0],[1708328120000,0],[1708328121000,0],[1708328122000,0],[1708328123000,0],[1708328124000,0],[1708328125000,0],[1708328126000,0],[1708328127000,0],[1708328128000,0],[1708328129000,0],[1708328130000,0],[1708328131000,0],[1708328132000,0],[1708328133000,0],[1708328134000,0],[1708328135000,0],[1708328136000,0],[1708328137000,0],[1708328138000,0],[1708328139000,0],[1708328140000,0],[1708328141000,0],[1708328142000,0],[1708328143000,0],[1708328144000,0],[1708328145000,0],[1708328146000,0],[1708328147000,0],[1708328148000,0],[1708328149000,0],[1708328150000,0],[1708328151000,0],[1708328152000,0],[1708328153000,0],[1708328154000,0],[1708328155000,0],[1708328156000,0],[1708328157000,0],[1708328158000,0],[1708328159000,0],[1708328160000,0],[1708328161000,0],[1708328162000,0],[1708328163000,0],[1708328164000,0],[1708328165000,0],[1708328166000,0],[1708328167000,0],[1708328168000,0],[1708328169000,0],[1708328170000,0],[1708328171000,0],[1708328172000,0],[1708328173000,0],[1708328174000,0],[1708328175000,0],[1708328176000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00FF00',
name: 'validação concorrência saldo - 0',
data: [
[1708327932000,0],[1708327933000,0],[1708327934000,1],[1708327935000,0],[1708327936000,0],[1708327937000,0],[1708327938000,0],[1708327939000,0],[1708327940000,0],[1708327941000,0],[1708327942000,0],[1708327943000,0],[1708327944000,0],[1708327945000,0],[1708327946000,0],[1708327947000,0],[1708327948000,0],[1708327949000,0],[1708327950000,0],[1708327951000,0],[1708327952000,0],[1708327953000,0],[1708327954000,0],[1708327955000,0],[1708327956000,0],[1708327957000,0],[1708327958000,0],[1708327959000,0],[1708327960000,0],[1708327961000,0],[1708327962000,0],[1708327963000,0],[1708327964000,0],[1708327965000,0],[1708327966000,0],[1708327967000,0],[1708327968000,0],[1708327969000,0],[1708327970000,0],[1708327971000,0],[1708327972000,0],[1708327973000,0],[1708327974000,0],[1708327975000,0],[1708327976000,0],[1708327977000,0],[1708327978000,0],[1708327979000,0],[1708327980000,0],[1708327981000,0],[1708327982000,0],[1708327983000,0],[1708327984000,0],[1708327985000,0],[1708327986000,0],[1708327987000,0],[1708327988000,0],[1708327989000,0],[1708327990000,0],[1708327991000,0],[1708327992000,0],[1708327993000,0],[1708327994000,0],[1708327995000,0],[1708327996000,0],[1708327997000,0],[1708327998000,0],[1708327999000,0],[1708328000000,0],[1708328001000,0],[1708328002000,0],[1708328003000,0],[1708328004000,0],[1708328005000,0],[1708328006000,0],[1708328007000,0],[1708328008000,0],[1708328009000,0],[1708328010000,0],[1708328011000,0],[1708328012000,0],[1708328013000,0],[1708328014000,0],[1708328015000,0],[1708328016000,0],[1708328017000,0],[1708328018000,0],[1708328019000,0],[1708328020000,0],[1708328021000,0],[1708328022000,0],[1708328023000,0],[1708328024000,0],[1708328025000,0],[1708328026000,0],[1708328027000,0],[1708328028000,0],[1708328029000,0],[1708328030000,0],[1708328031000,0],[1708328032000,0],[1708328033000,0],[1708328034000,0],[1708328035000,0],[1708328036000,0],[1708328037000,0],[1708328038000,0],[1708328039000,0],[1708328040000,0],[1708328041000,0],[1708328042000,0],[1708328043000,0],[1708328044000,0],[1708328045000,0],[1708328046000,0],[1708328047000,0],[1708328048000,0],[1708328049000,0],[1708328050000,0],[1708328051000,0],[1708328052000,0],[1708328053000,0],[1708328054000,0],[1708328055000,0],[1708328056000,0],[1708328057000,0],[1708328058000,0],[1708328059000,0],[1708328060000,0],[1708328061000,0],[1708328062000,0],[1708328063000,0],[1708328064000,0],[1708328065000,0],[1708328066000,0],[1708328067000,0],[1708328068000,0],[1708328069000,0],[1708328070000,0],[1708328071000,0],[1708328072000,0],[1708328073000,0],[1708328074000,0],[1708328075000,0],[1708328076000,0],[1708328077000,0],[1708328078000,0],[1708328079000,0],[1708328080000,0],[1708328081000,0],[1708328082000,0],[1708328083000,0],[1708328084000,0],[1708328085000,0],[1708328086000,0],[1708328087000,0],[1708328088000,0],[1708328089000,0],[1708328090000,0],[1708328091000,0],[1708328092000,0],[1708328093000,0],[1708328094000,0],[1708328095000,0],[1708328096000,0],[1708328097000,0],[1708328098000,0],[1708328099000,0],[1708328100000,0],[1708328101000,0],[1708328102000,0],[1708328103000,0],[1708328104000,0],[1708328105000,0],[1708328106000,0],[1708328107000,0],[1708328108000,0],[1708328109000,0],[1708328110000,0],[1708328111000,0],[1708328112000,0],[1708328113000,0],[1708328114000,0],[1708328115000,0],[1708328116000,0],[1708328117000,0],[1708328118000,0],[1708328119000,0],[1708328120000,0],[1708328121000,0],[1708328122000,0],[1708328123000,0],[1708328124000,0],[1708328125000,0],[1708328126000,0],[1708328127000,0],[1708328128000,0],[1708328129000,0],[1708328130000,0],[1708328131000,0],[1708328132000,0],[1708328133000,0],[1708328134000,0],[1708328135000,0],[1708328136000,0],[1708328137000,0],[1708328138000,0],[1708328139000,0],[1708328140000,0],[1708328141000,0],[1708328142000,0],[1708328143000,0],[1708328144000,0],[1708328145000,0],[1708328146000,0],[1708328147000,0],[1708328148000,0],[1708328149000,0],[1708328150000,0],[1708328151000,0],[1708328152000,0],[1708328153000,0],[1708328154000,0],[1708328155000,0],[1708328156000,0],[1708328157000,0],[1708328158000,0],[1708328159000,0],[1708328160000,0],[1708328161000,0],[1708328162000,0],[1708328163000,0],[1708328164000,0],[1708328165000,0],[1708328166000,0],[1708328167000,0],[1708328168000,0],[1708328169000,0],[1708328170000,0],[1708328171000,0],[1708328172000,0],[1708328173000,0],[1708328174000,0],[1708328175000,0],[1708328176000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#9D00FF',
name: 'validação concorrência transações - c',
data: [
[1708327932000,0],[1708327933000,22],[1708327934000,25],[1708327935000,0],[1708327936000,0],[1708327937000,0],[1708327938000,0],[1708327939000,0],[1708327940000,0],[1708327941000,0],[1708327942000,0],[1708327943000,0],[1708327944000,0],[1708327945000,0],[1708327946000,0],[1708327947000,0],[1708327948000,0],[1708327949000,0],[1708327950000,0],[1708327951000,0],[1708327952000,0],[1708327953000,0],[1708327954000,0],[1708327955000,0],[1708327956000,0],[1708327957000,0],[1708327958000,0],[1708327959000,0],[1708327960000,0],[1708327961000,0],[1708327962000,0],[1708327963000,0],[1708327964000,0],[1708327965000,0],[1708327966000,0],[1708327967000,0],[1708327968000,0],[1708327969000,0],[1708327970000,0],[1708327971000,0],[1708327972000,0],[1708327973000,0],[1708327974000,0],[1708327975000,0],[1708327976000,0],[1708327977000,0],[1708327978000,0],[1708327979000,0],[1708327980000,0],[1708327981000,0],[1708327982000,0],[1708327983000,0],[1708327984000,0],[1708327985000,0],[1708327986000,0],[1708327987000,0],[1708327988000,0],[1708327989000,0],[1708327990000,0],[1708327991000,0],[1708327992000,0],[1708327993000,0],[1708327994000,0],[1708327995000,0],[1708327996000,0],[1708327997000,0],[1708327998000,0],[1708327999000,0],[1708328000000,0],[1708328001000,0],[1708328002000,0],[1708328003000,0],[1708328004000,0],[1708328005000,0],[1708328006000,0],[1708328007000,0],[1708328008000,0],[1708328009000,0],[1708328010000,0],[1708328011000,0],[1708328012000,0],[1708328013000,0],[1708328014000,0],[1708328015000,0],[1708328016000,0],[1708328017000,0],[1708328018000,0],[1708328019000,0],[1708328020000,0],[1708328021000,0],[1708328022000,0],[1708328023000,0],[1708328024000,0],[1708328025000,0],[1708328026000,0],[1708328027000,0],[1708328028000,0],[1708328029000,0],[1708328030000,0],[1708328031000,0],[1708328032000,0],[1708328033000,0],[1708328034000,0],[1708328035000,0],[1708328036000,0],[1708328037000,0],[1708328038000,0],[1708328039000,0],[1708328040000,0],[1708328041000,0],[1708328042000,0],[1708328043000,0],[1708328044000,0],[1708328045000,0],[1708328046000,0],[1708328047000,0],[1708328048000,0],[1708328049000,0],[1708328050000,0],[1708328051000,0],[1708328052000,0],[1708328053000,0],[1708328054000,0],[1708328055000,0],[1708328056000,0],[1708328057000,0],[1708328058000,0],[1708328059000,0],[1708328060000,0],[1708328061000,0],[1708328062000,0],[1708328063000,0],[1708328064000,0],[1708328065000,0],[1708328066000,0],[1708328067000,0],[1708328068000,0],[1708328069000,0],[1708328070000,0],[1708328071000,0],[1708328072000,0],[1708328073000,0],[1708328074000,0],[1708328075000,0],[1708328076000,0],[1708328077000,0],[1708328078000,0],[1708328079000,0],[1708328080000,0],[1708328081000,0],[1708328082000,0],[1708328083000,0],[1708328084000,0],[1708328085000,0],[1708328086000,0],[1708328087000,0],[1708328088000,0],[1708328089000,0],[1708328090000,0],[1708328091000,0],[1708328092000,0],[1708328093000,0],[1708328094000,0],[1708328095000,0],[1708328096000,0],[1708328097000,0],[1708328098000,0],[1708328099000,0],[1708328100000,0],[1708328101000,0],[1708328102000,0],[1708328103000,0],[1708328104000,0],[1708328105000,0],[1708328106000,0],[1708328107000,0],[1708328108000,0],[1708328109000,0],[1708328110000,0],[1708328111000,0],[1708328112000,0],[1708328113000,0],[1708328114000,0],[1708328115000,0],[1708328116000,0],[1708328117000,0],[1708328118000,0],[1708328119000,0],[1708328120000,0],[1708328121000,0],[1708328122000,0],[1708328123000,0],[1708328124000,0],[1708328125000,0],[1708328126000,0],[1708328127000,0],[1708328128000,0],[1708328129000,0],[1708328130000,0],[1708328131000,0],[1708328132000,0],[1708328133000,0],[1708328134000,0],[1708328135000,0],[1708328136000,0],[1708328137000,0],[1708328138000,0],[1708328139000,0],[1708328140000,0],[1708328141000,0],[1708328142000,0],[1708328143000,0],[1708328144000,0],[1708328145000,0],[1708328146000,0],[1708328147000,0],[1708328148000,0],[1708328149000,0],[1708328150000,0],[1708328151000,0],[1708328152000,0],[1708328153000,0],[1708328154000,0],[1708328155000,0],[1708328156000,0],[1708328157000,0],[1708328158000,0],[1708328159000,0],[1708328160000,0],[1708328161000,0],[1708328162000,0],[1708328163000,0],[1708328164000,0],[1708328165000,0],[1708328166000,0],[1708328167000,0],[1708328168000,0],[1708328169000,0],[1708328170000,0],[1708328171000,0],[1708328172000,0],[1708328173000,0],[1708328174000,0],[1708328175000,0],[1708328176000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FF00E1',
name: 'validação concorrência saldo - -25',
data: [
[1708327932000,1],[1708327933000,1],[1708327934000,0],[1708327935000,0],[1708327936000,0],[1708327937000,0],[1708327938000,0],[1708327939000,0],[1708327940000,0],[1708327941000,0],[1708327942000,0],[1708327943000,0],[1708327944000,0],[1708327945000,0],[1708327946000,0],[1708327947000,0],[1708327948000,0],[1708327949000,0],[1708327950000,0],[1708327951000,0],[1708327952000,0],[1708327953000,0],[1708327954000,0],[1708327955000,0],[1708327956000,0],[1708327957000,0],[1708327958000,0],[1708327959000,0],[1708327960000,0],[1708327961000,0],[1708327962000,0],[1708327963000,0],[1708327964000,0],[1708327965000,0],[1708327966000,0],[1708327967000,0],[1708327968000,0],[1708327969000,0],[1708327970000,0],[1708327971000,0],[1708327972000,0],[1708327973000,0],[1708327974000,0],[1708327975000,0],[1708327976000,0],[1708327977000,0],[1708327978000,0],[1708327979000,0],[1708327980000,0],[1708327981000,0],[1708327982000,0],[1708327983000,0],[1708327984000,0],[1708327985000,0],[1708327986000,0],[1708327987000,0],[1708327988000,0],[1708327989000,0],[1708327990000,0],[1708327991000,0],[1708327992000,0],[1708327993000,0],[1708327994000,0],[1708327995000,0],[1708327996000,0],[1708327997000,0],[1708327998000,0],[1708327999000,0],[1708328000000,0],[1708328001000,0],[1708328002000,0],[1708328003000,0],[1708328004000,0],[1708328005000,0],[1708328006000,0],[1708328007000,0],[1708328008000,0],[1708328009000,0],[1708328010000,0],[1708328011000,0],[1708328012000,0],[1708328013000,0],[1708328014000,0],[1708328015000,0],[1708328016000,0],[1708328017000,0],[1708328018000,0],[1708328019000,0],[1708328020000,0],[1708328021000,0],[1708328022000,0],[1708328023000,0],[1708328024000,0],[1708328025000,0],[1708328026000,0],[1708328027000,0],[1708328028000,0],[1708328029000,0],[1708328030000,0],[1708328031000,0],[1708328032000,0],[1708328033000,0],[1708328034000,0],[1708328035000,0],[1708328036000,0],[1708328037000,0],[1708328038000,0],[1708328039000,0],[1708328040000,0],[1708328041000,0],[1708328042000,0],[1708328043000,0],[1708328044000,0],[1708328045000,0],[1708328046000,0],[1708328047000,0],[1708328048000,0],[1708328049000,0],[1708328050000,0],[1708328051000,0],[1708328052000,0],[1708328053000,0],[1708328054000,0],[1708328055000,0],[1708328056000,0],[1708328057000,0],[1708328058000,0],[1708328059000,0],[1708328060000,0],[1708328061000,0],[1708328062000,0],[1708328063000,0],[1708328064000,0],[1708328065000,0],[1708328066000,0],[1708328067000,0],[1708328068000,0],[1708328069000,0],[1708328070000,0],[1708328071000,0],[1708328072000,0],[1708328073000,0],[1708328074000,0],[1708328075000,0],[1708328076000,0],[1708328077000,0],[1708328078000,0],[1708328079000,0],[1708328080000,0],[1708328081000,0],[1708328082000,0],[1708328083000,0],[1708328084000,0],[1708328085000,0],[1708328086000,0],[1708328087000,0],[1708328088000,0],[1708328089000,0],[1708328090000,0],[1708328091000,0],[1708328092000,0],[1708328093000,0],[1708328094000,0],[1708328095000,0],[1708328096000,0],[1708328097000,0],[1708328098000,0],[1708328099000,0],[1708328100000,0],[1708328101000,0],[1708328102000,0],[1708328103000,0],[1708328104000,0],[1708328105000,0],[1708328106000,0],[1708328107000,0],[1708328108000,0],[1708328109000,0],[1708328110000,0],[1708328111000,0],[1708328112000,0],[1708328113000,0],[1708328114000,0],[1708328115000,0],[1708328116000,0],[1708328117000,0],[1708328118000,0],[1708328119000,0],[1708328120000,0],[1708328121000,0],[1708328122000,0],[1708328123000,0],[1708328124000,0],[1708328125000,0],[1708328126000,0],[1708328127000,0],[1708328128000,0],[1708328129000,0],[1708328130000,0],[1708328131000,0],[1708328132000,0],[1708328133000,0],[1708328134000,0],[1708328135000,0],[1708328136000,0],[1708328137000,0],[1708328138000,0],[1708328139000,0],[1708328140000,0],[1708328141000,0],[1708328142000,0],[1708328143000,0],[1708328144000,0],[1708328145000,0],[1708328146000,0],[1708328147000,0],[1708328148000,0],[1708328149000,0],[1708328150000,0],[1708328151000,0],[1708328152000,0],[1708328153000,0],[1708328154000,0],[1708328155000,0],[1708328156000,0],[1708328157000,0],[1708328158000,0],[1708328159000,0],[1708328160000,0],[1708328161000,0],[1708328162000,0],[1708328163000,0],[1708328164000,0],[1708328165000,0],[1708328166000,0],[1708328167000,0],[1708328168000,0],[1708328169000,0],[1708328170000,0],[1708328171000,0],[1708328172000,0],[1708328173000,0],[1708328174000,0],[1708328175000,0],[1708328176000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#AECAEB',
name: 'validação concorrência transações - d',
data: [
[1708327932000,25],[1708327933000,0],[1708327934000,0],[1708327935000,0],[1708327936000,0],[1708327937000,0],[1708327938000,0],[1708327939000,0],[1708327940000,0],[1708327941000,0],[1708327942000,0],[1708327943000,0],[1708327944000,0],[1708327945000,0],[1708327946000,0],[1708327947000,0],[1708327948000,0],[1708327949000,0],[1708327950000,0],[1708327951000,0],[1708327952000,0],[1708327953000,0],[1708327954000,0],[1708327955000,0],[1708327956000,0],[1708327957000,0],[1708327958000,0],[1708327959000,0],[1708327960000,0],[1708327961000,0],[1708327962000,0],[1708327963000,0],[1708327964000,0],[1708327965000,0],[1708327966000,0],[1708327967000,0],[1708327968000,0],[1708327969000,0],[1708327970000,0],[1708327971000,0],[1708327972000,0],[1708327973000,0],[1708327974000,0],[1708327975000,0],[1708327976000,0],[1708327977000,0],[1708327978000,0],[1708327979000,0],[1708327980000,0],[1708327981000,0],[1708327982000,0],[1708327983000,0],[1708327984000,0],[1708327985000,0],[1708327986000,0],[1708327987000,0],[1708327988000,0],[1708327989000,0],[1708327990000,0],[1708327991000,0],[1708327992000,0],[1708327993000,0],[1708327994000,0],[1708327995000,0],[1708327996000,0],[1708327997000,0],[1708327998000,0],[1708327999000,0],[1708328000000,0],[1708328001000,0],[1708328002000,0],[1708328003000,0],[1708328004000,0],[1708328005000,0],[1708328006000,0],[1708328007000,0],[1708328008000,0],[1708328009000,0],[1708328010000,0],[1708328011000,0],[1708328012000,0],[1708328013000,0],[1708328014000,0],[1708328015000,0],[1708328016000,0],[1708328017000,0],[1708328018000,0],[1708328019000,0],[1708328020000,0],[1708328021000,0],[1708328022000,0],[1708328023000,0],[1708328024000,0],[1708328025000,0],[1708328026000,0],[1708328027000,0],[1708328028000,0],[1708328029000,0],[1708328030000,0],[1708328031000,0],[1708328032000,0],[1708328033000,0],[1708328034000,0],[1708328035000,0],[1708328036000,0],[1708328037000,0],[1708328038000,0],[1708328039000,0],[1708328040000,0],[1708328041000,0],[1708328042000,0],[1708328043000,0],[1708328044000,0],[1708328045000,0],[1708328046000,0],[1708328047000,0],[1708328048000,0],[1708328049000,0],[1708328050000,0],[1708328051000,0],[1708328052000,0],[1708328053000,0],[1708328054000,0],[1708328055000,0],[1708328056000,0],[1708328057000,0],[1708328058000,0],[1708328059000,0],[1708328060000,0],[1708328061000,0],[1708328062000,0],[1708328063000,0],[1708328064000,0],[1708328065000,0],[1708328066000,0],[1708328067000,0],[1708328068000,0],[1708328069000,0],[1708328070000,0],[1708328071000,0],[1708328072000,0],[1708328073000,0],[1708328074000,0],[1708328075000,0],[1708328076000,0],[1708328077000,0],[1708328078000,0],[1708328079000,0],[1708328080000,0],[1708328081000,0],[1708328082000,0],[1708328083000,0],[1708328084000,0],[1708328085000,0],[1708328086000,0],[1708328087000,0],[1708328088000,0],[1708328089000,0],[1708328090000,0],[1708328091000,0],[1708328092000,0],[1708328093000,0],[1708328094000,0],[1708328095000,0],[1708328096000,0],[1708328097000,0],[1708328098000,0],[1708328099000,0],[1708328100000,0],[1708328101000,0],[1708328102000,0],[1708328103000,0],[1708328104000,0],[1708328105000,0],[1708328106000,0],[1708328107000,0],[1708328108000,0],[1708328109000,0],[1708328110000,0],[1708328111000,0],[1708328112000,0],[1708328113000,0],[1708328114000,0],[1708328115000,0],[1708328116000,0],[1708328117000,0],[1708328118000,0],[1708328119000,0],[1708328120000,0],[1708328121000,0],[1708328122000,0],[1708328123000,0],[1708328124000,0],[1708328125000,0],[1708328126000,0],[1708328127000,0],[1708328128000,0],[1708328129000,0],[1708328130000,0],[1708328131000,0],[1708328132000,0],[1708328133000,0],[1708328134000,0],[1708328135000,0],[1708328136000,0],[1708328137000,0],[1708328138000,0],[1708328139000,0],[1708328140000,0],[1708328141000,0],[1708328142000,0],[1708328143000,0],[1708328144000,0],[1708328145000,0],[1708328146000,0],[1708328147000,0],[1708328148000,0],[1708328149000,0],[1708328150000,0],[1708328151000,0],[1708328152000,0],[1708328153000,0],[1708328154000,0],[1708328155000,0],[1708328156000,0],[1708328157000,0],[1708328158000,0],[1708328159000,0],[1708328160000,0],[1708328161000,0],[1708328162000,0],[1708328163000,0],[1708328164000,0],[1708328165000,0],[1708328166000,0],[1708328167000,0],[1708328168000,0],[1708328169000,0],[1708328170000,0],[1708328171000,0],[1708328172000,0],[1708328173000,0],[1708328174000,0],[1708328175000,0],[1708328176000,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: ['13', '37', '61', '85', '109', '133', '157', '182', '206', '230', '254', '278', '302', '326', '350', '374', '398', '422', '446', '470', '494', '519', '543', '567', '591', '615', '639', '663', '687', '711', '735', '759', '783', '807', '831', '855', '880', '904', '928', '952', '976', '1000', '1024', '1048', '1072', '1096', '1120', '1144', '1168', '1192', '1217', '1241', '1265', '1289', '1313', '1337', '1361', '1385', '1409', '1433', '1457', '1481', '1505', '1529', '1554', '1578', '1602', '1626', '1650', '1674', '1698', '1722', '1746', '1770', '1794', '1818', '1842', '1866', '1890', '1915', '1939', '1963', '1987', '2011', '2035', '2059', '2083', '2107', '2131', '2155', '2179', '2203', '2227', '2252', '2276', '2300', '2324', '2348', '2372', '2396'],
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: [
95.66,0.5,0.42,0.33,0.25,0.2,0.18,0.18,0.16,0.14,0.15,0.13,0.13,0.13,0.11,0.1,0.09,0.08,0.07,0.07,0.07,0.05,0.06,0.05,0.04,0.03,0.04,0.05,0.04,0.02,0.02,0.02,0.01,0.01,0.01,0.02,0.0,0.02,0.0,0.0,0.01,0.01,0.0,0.01,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
],
tooltip: { yDecimals: 0, ySuffix: 'ms' }
},
{
type: 'column',
color: '#f15b4f',
name: 'KO',
data: [
0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
],
tooltip: { yDecimals: 0, ySuffix: 'ms' }
}
]
});
responsetimeDistributionChart.setTitle({
text: '<span class="chart_title">Response Time Distribution</span>',
useHTML: true
});
var responsetimepercentilesovertimeokPercentiles = unpack([[1708327932,[23,48,55,62,63,64,66,68,69,70]],[1708327933,null],[1708327934,[8,18,30,36,36,39,41,42,43,43]],[1708327935,null],[1708327936,[1,4,5,9,11,15,19,25,38,46]],[1708327937,[6,6,7,7,7,7,7,7,7,8]],[1708327938,[4,5,5,5,5,5,5,5,5,6]],[1708327939,[4,4,5,5,5,6,7,7,7,8]],[1708327940,[4,4,4,4,5,5,6,6,6,7]],[1708327941,[3,4,4,4,4,4,4,4,4,5]],[1708327942,[3,3,4,4,4,4,4,5,5,6]],[1708327943,[3,3,4,4,4,4,4,5,5,5]],[1708327944,[3,3,3,4,4,4,4,4,4,5]],[1708327945,[3,3,4,4,4,4,5,5,5,5]],[1708327946,[3,3,4,4,4,4,4,4,5,5]],[1708327947,[3,3,4,4,4,4,4,4,5,6]],[1708327948,[2,3,3,4,4,4,4,5,7,8]],[1708327949,[2,3,3,4,4,4,4,4,4,5]],[1708327950,[2,3,3,4,4,4,4,4,5,5]],[1708327951,[2,3,4,4,4,4,4,5,7,8]],[1708327952,[2,3,3,3,3,4,4,4,5,6]],[1708327953,[2,3,3,3,3,4,4,4,4,5]],[1708327954,[2,3,3,3,3,3,4,4,5,6]],[1708327955,[2,3,3,3,3,3,3,4,4,5]],[1708327956,[2,3,3,3,3,3,4,4,5,8]],[1708327957,[2,3,3,3,3,3,3,3,4,4]],[1708327958,[2,3,3,3,3,4,4,4,4,4]],[1708327959,[2,2,3,3,3,3,3,3,4,4]],[1708327960,[2,3,3,3,3,3,3,4,4,4]],[1708327961,[2,2,3,3,3,3,3,3,3,5]],[1708327962,[2,2,3,3,3,3,3,3,4,4]],[1708327963,[2,3,3,3,3,3,3,4,4,7]],[1708327964,[2,3,3,3,3,3,3,4,4,5]],[1708327965,[2,2,2,3,3,3,3,3,3,3]],[1708327966,[2,2,2,3,3,3,3,3,3,3]],[1708327967,[2,2,3,3,3,3,3,3,5,5]],[1708327968,[2,2,3,3,3,3,3,4,4,4]],[1708327969,[2,3,3,3,3,3,3,4,4,5]],[1708327970,[2,2,3,3,3,3,4,4,6,7]],[1708327971,[2,2,3,3,3,3,4,4,5,5]],[1708327972,[2,3,3,3,3,3,4,4,4,5]],[1708327973,[2,2,3,3,3,3,3,4,4,5]],[1708327974,[2,2,3,3,3,3,3,3,4,5]],[1708327975,[2,2,3,3,3,3,3,3,10,18]],[1708327976,[2,3,3,3,3,3,3,3,4,4]],[1708327977,[2,2,3,3,3,3,3,4,5,6]],[1708327978,[2,2,2,3,3,3,3,3,3,3]],[1708327979,[2,2,2,3,3,3,3,3,4,4]],[1708327980,[2,2,2,3,3,3,3,3,5,6]],[1708327981,[2,2,2,3,3,3,3,3,3,4]],[1708327982,[2,2,2,3,3,3,3,3,4,6]],[1708327983,[2,2,2,3,3,3,3,4,4,5]],[1708327984,[2,2,3,3,3,3,3,4,4,9]],[1708327985,[2,2,3,3,3,3,4,5,9,18]],[1708327986,[2,3,3,4,4,4,5,6,13,19]],[1708327987,[2,3,3,4,4,4,5,5,7,8]],[1708327988,[2,2,3,4,4,4,5,5,7,8]],[1708327989,[2,3,3,4,4,4,5,6,8,8]],[1708327990,[2,2,3,3,4,4,5,5,6,8]],[1708327991,[2,2,3,4,4,5,5,6,8,8]],[1708327992,[2,2,3,3,3,4,5,5,6,7]],[1708327993,[1,3,3,4,4,5,5,5,8,11]],[1708327994,[2,2,3,4,4,4,5,5,7,8]],[1708327995,[1,2,3,3,4,4,5,6,7,8]],[1708327996,[2,2,3,3,4,4,5,7,9,13]],[1708327997,[2,2,3,3,4,4,4,5,7,10]],[1708327998,[1,3,3,4,5,5,5,6,7,11]],[1708327999,[2,2,3,3,3,4,4,6,7,9]],[1708328000,[2,2,2,3,3,4,4,5,7,8]],[1708328001,[2,2,2,3,4,4,4,5,7,8]],[1708328002,[2,2,3,3,4,4,5,5,7,8]],[1708328003,[1,2,3,3,3,4,5,5,8,8]],[1708328004,[2,2,3,3,3,4,5,5,7,8]],[1708328005,[2,2,3,4,4,5,5,6,7,9]],[1708328006,[2,3,3,4,4,5,5,7,16,26]],[1708328007,[2,2,3,3,3,4,4,4,7,8]],[1708328008,[2,2,3,3,4,4,4,5,7,10]],[1708328009,[2,2,3,4,4,4,5,5,7,9]],[1708328010,[2,3,3,4,4,4,4,5,7,9]],[1708328011,[1,2,3,3,3,4,4,5,6,9]],[1708328012,[2,2,2,3,3,4,4,5,7,8]],[1708328013,[2,2,3,3,4,4,5,5,8,35]],[1708328014,[2,2,3,3,3,4,4,5,7,7]],[1708328015,[2,2,3,3,3,4,4,5,8,8]],[1708328016,[2,3,3,4,4,4,5,5,8,14]],[1708328017,[2,2,3,3,4,4,5,5,8,8]],[1708328018,[2,3,3,4,4,4,5,6,11,22]],[1708328019,[2,3,3,4,4,4,5,5,7,8]],[1708328020,[2,3,3,4,4,4,4,5,8,9]],[1708328021,[1,3,3,3,3,4,4,5,7,8]],[1708328022,[1,3,3,3,4,4,5,5,7,9]],[1708328023,[1,2,2,3,3,4,4,5,7,8]],[1708328024,[2,2,2,3,3,4,4,4,7,8]],[1708328025,[2,2,3,3,4,4,4,5,6,9]],[1708328026,[2,3,3,4,4,4,5,6,23,36]],[1708328027,[2,3,3,4,4,4,4,5,8,11]],[1708328028,[2,3,3,3,4,4,5,5,8,9]],[1708328029,[1,2,3,3,3,4,4,5,8,8]],[1708328030,[1,2,3,3,3,4,4,4,7,9]],[1708328031,[1,2,3,3,3,3,4,5,6,8]],[1708328032,[2,2,2,3,3,4,4,5,8,9]],[1708328033,[2,2,2,3,3,3,4,4,6,8]],[1708328034,[1,2,3,3,4,4,4,5,8,9]],[1708328035,[2,2,3,3,3,4,4,5,6,8]],[1708328036,[1,2,3,3,3,3,4,5,9,20]],[1708328037,[1,2,3,3,3,4,4,5,7,9]],[1708328038,[2,2,3,3,3,4,4,5,6,8]],[1708328039,[2,2,3,3,3,4,4,5,8,11]],[1708328040,[2,3,3,4,4,4,5,5,7,8]],[1708328041,[2,2,3,3,3,4,4,5,8,9]],[1708328042,[2,2,2,3,3,3,4,5,8,8]],[1708328043,[2,2,2,4,8,24,42,71,113,168]],[1708328044,[1,2,2,3,3,3,3,3,4,4]],[1708328045,[2,2,3,3,3,3,3,4,5,6]],[1708328046,[2,2,2,3,3,3,3,4,15,16]],[1708328047,[2,2,2,3,3,3,3,4,4,5]],[1708328048,[2,2,2,2,3,3,3,3,4,8]],[1708328049,[2,3,4,5,5,5,6,7,9,10]],[1708328050,[1,2,3,4,4,5,5,6,7,11]],[1708328051,[2,3,4,5,5,5,5,6,7,11]],[1708328052,[2,3,3,4,4,5,5,5,7,10]],[1708328053,[2,3,4,5,5,5,6,7,10,13]],[1708328054,[1,3,3,4,5,5,6,6,8,9]],[1708328055,[2,3,4,4,5,5,6,6,8,10]],[1708328056,[2,3,4,4,5,5,5,6,10,15]],[1708328057,[2,3,3,4,5,5,6,6,8,9]],[1708328058,[2,3,3,4,4,4,5,6,8,9]],[1708328059,[2,3,3,4,5,5,5,6,8,11]],[1708328060,[2,3,4,4,4,5,5,6,8,10]],[1708328061,[2,3,3,5,5,5,6,7,10,14]],[1708328062,[1,3,4,5,5,5,5,6,8,11]],[1708328063,[1,2,3,4,4,5,5,6,7,10]],[1708328064,[2,3,4,4,5,5,5,6,8,10]],[1708328065,[2,2,3,4,4,4,5,6,7,10]],[1708328066,[2,3,4,5,5,6,6,7,12,25]],[1708328067,[2,3,3,4,4,5,5,6,8,9]],[1708328068,[2,3,4,5,5,5,6,6,7,10]],[1708328069,[2,3,3,4,4,4,5,6,8,9]],[1708328070,[2,4,4,5,5,5,6,7,8,11]],[1708328071,[2,2,3,3,4,4,4,5,9,15]],[1708328072,[2,4,4,5,5,5,6,7,9,11]],[1708328073,[2,3,3,399,477,539,639,774,1441,2408]],[1708328074,[6,208,429,691,766,888,1045,1240,1635,1858]],[1708328075,[9,200,295,459,510,567,639,782,1018,1270]],[1708328076,[2,5,25,90,108,132,177,217,305,345]],[1708328077,[2,3,3,3,3,3,4,4,5,10]],[1708328078,[2,3,4,5,6,15,29,55,69,79]],[1708328079,[2,2,3,3,3,3,4,4,6,7]],[1708328080,[2,3,4,4,4,4,5,5,6,7]],[1708328081,[2,2,3,3,3,3,4,4,5,7]],[1708328082,[2,3,3,4,5,5,5,6,7,10]],[1708328083,[1,2,2,3,3,3,3,4,5,8]],[1708328084,[1,2,3,3,4,4,4,4,5,6]],[1708328085,[1,2,2,3,3,3,3,4,5,6]],[1708328086,[2,2,3,4,5,5,6,7,15,22]],[1708328087,[2,2,3,4,4,4,5,5,25,38]],[1708328088,[2,3,3,4,4,5,5,5,6,8]],[1708328089,[2,3,3,4,4,4,5,5,6,7]],[1708328090,[1,3,3,4,4,4,5,5,7,11]],[1708328091,[2,2,3,4,4,4,5,5,6,9]],[1708328092,[1,2,2,3,3,3,4,4,5,8]],[1708328093,[2,2,2,3,4,4,4,4,5,7]],[1708328094,[1,2,2,2,2,3,3,3,5,6]],[1708328095,[2,3,3,3,4,4,4,4,5,6]],[1708328096,[2,3,3,2,3,3,4,4,7,11]],[1708328097,[1,2,3,4,4,5,5,6,8,14]],[1708328098,[2,2,2,3,3,3,3,4,4,7]],[1708328099,[2,3,3,4,4,5,5,5,6,7]],[1708328100,[2,3,3,3,2,3,3,4,5,7]],[1708328101,[1,2,3,4,4,4,4,5,7,8]],[1708328102,[1,2,2,3,3,3,3,3,4,5]],[1708328103,[2,2,3,4,4,4,4,5,6,8]],[1708328104,[2,2,116,378,414,474,554,654,858,1086]],[1708328105,[4,82,156,309,343,385,476,598,709,945]],[1708328106,[2,5,38,86,100,122,161,233,406,561]],[1708328107,[2,3,3,4,4,4,5,5,8,16]],[1708328108,[2,2,3,3,3,3,3,4,4,5]],[1708328109,[2,2,3,3,4,4,5,5,7,11]],[1708328110,[2,2,3,3,3,3,3,4,5,6]],[1708328111,[1,3,4,4,5,5,5,6,6,7]],[1708328112,[2,3,3,4,4,4,4,5,6,8]],[1708328113,[2,3,3,4,4,4,4,5,6,10]],[1708328114,[1,2,2,4,4,4,4,5,6,7]],[1708328115,[2,4,4,4,5,5,5,6,6,6]],[1708328116,[2,2,3,3,4,4,4,5,6,7]],[1708328117,[2,3,4,4,5,5,5,7,16,28]],[1708328118,[2,2,2,3,3,4,4,4,6,7]],[1708328119,[2,3,4,4,4,5,5,6,7,15]],[1708328120,[1,2,2,3,3,3,4,5,7,11]],[1708328121,[3,4,4,5,5,5,6,6,14,27]],[1708328122,[1,2,3,3,3,3,4,4,6,13]],[1708328123,[2,3,4,4,4,5,5,6,7,9]],[1708328124,[2,2,2,3,3,3,4,4,5,6]],[1708328125,[2,3,4,5,5,5,5,6,8,13]],[1708328126,[2,2,2,3,3,4,4,5,6,9]],[1708328127,[2,3,4,4,4,5,5,6,10,14]],[1708328128,[1,2,3,3,4,4,4,5,6,10]],[1708328129,[2,3,4,4,4,5,5,6,7,8]],[1708328130,[2,2,3,4,4,4,4,5,7,12]],[1708328131,[2,3,4,4,5,5,6,6,9,13]],[1708328132,[2,3,3,4,4,4,5,5,7,13]],[1708328133,[2,3,4,4,5,5,5,6,7,9]],[1708328134,[2,3,3,4,4,4,4,5,6,9]],[1708328135,[2,35,207,395,458,544,674,932,1286,1490]],[1708328136,[2,5,103,335,416,491,591,797,1039,1171]],[1708328137,[1,3,14,126,177,207,257,346,507,643]],[1708328138,[2,3,4,15,23,34,46,62,76,92]],[1708328139,[2,2,3,4,4,4,4,5,6,8]],[1708328140,[2,3,3,4,4,5,5,5,6,6]],[1708328141,[2,3,3,4,4,4,4,5,6,7]],[1708328142,[2,3,3,4,4,5,5,5,6,8]],[1708328143,[2,2,3,3,3,4,4,5,6,9]],[1708328144,[2,2,3,4,4,4,5,5,6,7]],[1708328145,[2,2,2,3,3,3,3,4,6,7]],[1708328146,[2,3,4,4,5,5,5,5,6,8]],[1708328147,[2,2,2,3,3,3,3,4,5,13]],[1708328148,[1,2,3,4,4,4,4,4,5,6]],[1708328149,[1,2,2,2,2,3,3,3,4,7]],[1708328150,[2,3,3,4,4,5,5,5,6,7]],[1708328151,[2,2,3,3,3,2,3,4,5,7]],[1708328152,[2,3,4,4,4,4,5,5,6,7]],[1708328153,[2,2,2,3,3,3,3,4,5,5]],[1708328154,[2,3,3,4,4,5,5,5,7,8]],[1708328155,[2,2,2,3,3,3,3,4,6,7]],[1708328156,[2,3,3,4,4,5,5,5,6,7]],[1708328157,[2,2,3,3,3,3,4,4,6,18]],[1708328158,[2,3,3,4,5,5,5,6,7,10]],[1708328159,[2,2,3,3,3,3,4,4,6,10]],[1708328160,[2,2,3,4,4,4,5,6,7,8]],[1708328161,[2,2,3,3,3,3,2,4,5,18]],[1708328162,[1,2,3,3,4,4,4,4,5,5]],[1708328163,[2,2,2,3,3,3,3,4,5,6]],[1708328164,[2,3,3,4,4,5,5,6,6,7]],[1708328165,[1,3,3,3,3,3,4,4,9,357]],[1708328166,[2,4,6,46,72,109,157,214,272,361]],[1708328167,[2,3,3,13,23,45,81,125,229,254]],[1708328168,[2,2,3,3,3,3,4,4,4,11]],[1708328169,[2,2,2,3,3,3,3,4,5,6]],[1708328170,[2,2,3,3,3,3,4,4,5,6]],[1708328171,[2,2,3,3,3,4,4,5,6,8]],[1708328172,[2,2,3,3,3,3,3,4,5,10]],[1708328173,[2,2,3,3,4,4,4,5,6,6]],[1708328174,[2,4,4,5,5,5,5,6,8,15]],[1708328175,[2,2,3,4,4,4,4,5,6,7]],[1708328176,[1,3,4,4,4,4,5,5,6,8]]]);
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([[1708327932,[25,25,0]],[1708327933,[1,0,1]],[1708327934,[25,25,0]],[1708327935,[1,0,1]],[1708327936,[71,70,1]],[1708327937,[3,3,0]],[1708327938,[6,6,0]],[1708327939,[9,9,0]],[1708327940,[11,11,0]],[1708327941,[13,13,0]],[1708327942,[18,18,0]],[1708327943,[19,19,0]],[1708327944,[24,24,0]],[1708327945,[26,26,0]],[1708327946,[27,27,0]],[1708327947,[32,32,0]],[1708327948,[34,34,0]],[1708327949,[37,37,0]],[1708327950,[39,39,0]],[1708327951,[43,43,0]],[1708327952,[44,44,0]],[1708327953,[48,48,0]],[1708327954,[50,50,0]],[1708327955,[54,54,0]],[1708327956,[56,56,0]],[1708327957,[61,61,0]],[1708327958,[61,61,0]],[1708327959,[65,65,0]],[1708327960,[67,67,0]],[1708327961,[70,70,0]],[1708327962,[73,73,0]],[1708327963,[77,77,0]],[1708327964,[79,79,0]],[1708327965,[81,81,0]],[1708327966,[84,84,0]],[1708327967,[88,88,0]],[1708327968,[91,91,0]],[1708327969,[92,92,0]],[1708327970,[96,96,0]],[1708327971,[98,98,0]],[1708327972,[101,101,0]],[1708327973,[105,105,0]],[1708327974,[107,107,0]],[1708327975,[110,110,0]],[1708327976,[112,112,0]],[1708327977,[116,116,0]],[1708327978,[118,118,0]],[1708327979,[121,121,0]],[1708327980,[123,123,0]],[1708327981,[126,126,0]],[1708327982,[129,129,0]],[1708327983,[133,133,0]],[1708327984,[135,135,0]],[1708327985,[138,138,0]],[1708327986,[141,141,0]],[1708327987,[143,143,0]],[1708327988,[147,147,0]],[1708327989,[149,149,0]],[1708327990,[151,151,0]],[1708327991,[155,155,0]],[1708327992,[158,158,0]],[1708327993,[160,160,0]],[1708327994,[163,163,0]],[1708327995,[165,165,0]],[1708327996,[171,171,0]],[1708327997,[170,170,0]],[1708327998,[175,175,0]],[1708327999,[176,176,0]],[1708328000,[181,181,0]],[1708328001,[183,183,0]],[1708328002,[186,186,0]],[1708328003,[188,188,0]],[1708328004,[192,192,0]],[1708328005,[194,194,0]],[1708328006,[196,196,0]],[1708328007,[199,199,0]],[1708328008,[203,203,0]],[1708328009,[205,205,0]],[1708328010,[207,207,0]],[1708328011,[211,211,0]],[1708328012,[213,213,0]],[1708328013,[217,217,0]],[1708328014,[220,220,0]],[1708328015,[222,222,0]],[1708328016,[225,225,0]],[1708328017,[227,227,0]],[1708328018,[231,231,0]],[1708328019,[233,233,0]],[1708328020,[237,237,0]],[1708328021,[238,238,0]],[1708328022,[242,242,0]],[1708328023,[244,244,0]],[1708328024,[249,249,0]],[1708328025,[250,250,0]],[1708328026,[252,252,0]],[1708328027,[256,256,0]],[1708328028,[259,259,0]],[1708328029,[262,262,0]],[1708328030,[264,264,0]],[1708328031,[266,266,0]],[1708328032,[270,270,0]],[1708328033,[273,273,0]],[1708328034,[275,275,0]],[1708328035,[279,279,0]],[1708328036,[281,281,0]],[1708328037,[283,283,0]],[1708328038,[286,286,0]],[1708328039,[290,290,0]],[1708328040,[292,292,0]],[1708328041,[295,295,0]],[1708328042,[299,299,0]],[1708328043,[300,300,0]],[1708328044,[304,304,0]],[1708328045,[306,306,0]],[1708328046,[309,309,0]],[1708328047,[313,313,0]],[1708328048,[314,314,0]],[1708328049,[318,318,0]],[1708328050,[320,320,0]],[1708328051,[323,323,0]],[1708328052,[326,326,0]],[1708328053,[330,330,0]],[1708328054,[331,331,0]],[1708328055,[334,334,0]],[1708328056,[339,339,0]],[1708328057,[339,339,0]],[1708328058,[341,341,0]],[1708328059,[340,340,0]],[1708328060,[340,340,0]],[1708328061,[340,340,0]],[1708328062,[338,338,0]],[1708328063,[342,342,0]],[1708328064,[339,339,0]],[1708328065,[341,341,0]],[1708328066,[340,340,0]],[1708328067,[340,340,0]],[1708328068,[340,340,0]],[1708328069,[340,340,0]],[1708328070,[340,340,0]],[1708328071,[340,340,0]],[1708328072,[340,340,0]],[1708328073,[340,340,0]],[1708328074,[339,339,0]],[1708328075,[340,340,0]],[1708328076,[341,341,0]],[1708328077,[340,340,0]],[1708328078,[340,340,0]],[1708328079,[340,340,0]],[1708328080,[340,340,0]],[1708328081,[340,340,0]],[1708328082,[340,340,0]],[1708328083,[339,339,0]],[1708328084,[340,340,0]],[1708328085,[341,341,0]],[1708328086,[340,340,0]],[1708328087,[340,340,0]],[1708328088,[340,340,0]],[1708328089,[340,340,0]],[1708328090,[340,340,0]],[1708328091,[340,340,0]],[1708328092,[339,339,0]],[1708328093,[341,341,0]],[1708328094,[339,339,0]],[1708328095,[341,341,0]],[1708328096,[340,340,0]],[1708328097,[339,339,0]],[1708328098,[341,341,0]],[1708328099,[340,340,0]],[1708328100,[339,339,0]],[1708328101,[340,340,0]],[1708328102,[341,341,0]],[1708328103,[340,340,0]],[1708328104,[340,340,0]],[1708328105,[340,340,0]],[1708328106,[339,339,0]],[1708328107,[341,341,0]],[1708328108,[340,340,0]],[1708328109,[340,340,0]],[1708328110,[340,340,0]],[1708328111,[339,339,0]],[1708328112,[341,341,0]],[1708328113,[339,339,0]],[1708328114,[340,340,0]],[1708328115,[341,341,0]],[1708328116,[340,340,0]],[1708328117,[340,340,0]],[1708328118,[340,340,0]],[1708328119,[339,339,0]],[1708328120,[340,340,0]],[1708328121,[340,340,0]],[1708328122,[339,339,0]],[1708328123,[341,341,0]],[1708328124,[341,341,0]],[1708328125,[340,340,0]],[1708328126,[340,340,0]],[1708328127,[339,339,0]],[1708328128,[340,340,0]],[1708328129,[341,341,0]],[1708328130,[340,340,0]],[1708328131,[340,340,0]],[1708328132,[340,340,0]],[1708328133,[340,340,0]],[1708328134,[340,340,0]],[1708328135,[340,340,0]],[1708328136,[339,339,0]],[1708328137,[341,341,0]],[1708328138,[340,340,0]],[1708328139,[340,340,0]],[1708328140,[340,340,0]],[1708328141,[340,340,0]],[1708328142,[340,340,0]],[1708328143,[340,340,0]],[1708328144,[339,339,0]],[1708328145,[341,341,0]],[1708328146,[340,340,0]],[1708328147,[339,339,0]],[1708328148,[340,340,0]],[1708328149,[341,341,0]],[1708328150,[340,340,0]],[1708328151,[338,338,0]],[1708328152,[342,342,0]],[1708328153,[340,340,0]],[1708328154,[340,340,0]],[1708328155,[340,340,0]],[1708328156,[340,340,0]],[1708328157,[340,340,0]],[1708328158,[340,340,0]],[1708328159,[340,340,0]],[1708328160,[340,340,0]],[1708328161,[340,340,0]],[1708328162,[339,339,0]],[1708328163,[341,341,0]],[1708328164,[340,340,0]],[1708328165,[339,339,0]],[1708328166,[341,341,0]],[1708328167,[340,340,0]],[1708328168,[340,340,0]],[1708328169,[340,340,0]],[1708328170,[340,340,0]],[1708328171,[340,340,0]],[1708328172,[340,340,0]],[1708328173,[340,340,0]],[1708328174,[340,340,0]],[1708328175,[340,340,0]],[1708328176,[504,504,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'